From 52d74e9b12de0226776d8f4a832d3af2f2d048a1 Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Tue, 30 Jul 2019 14:21:39 +0100 Subject: [PATCH 01/27] Rework coverage stats section --- Gemfile | 1 + Gemfile.lock | 5 + ...{application.css.scss => application.scss} | 17 +- app/assets/stylesheets/atoms/colors.scss | 24 ++ app/assets/stylesheets/atoms/fonts.scss | 32 ++ app/assets/stylesheets/helpers/_flexbox.scss | 80 ++++ .../stylesheets/organisms/stats-card.scss | 133 ++++++ .../resources/mixins/_flexbox.scss | 87 ++++ .../resources/mixins/_rem-calc.scss | 152 +++++++ .../stylesheets/utilities/_flexbox.scss | 394 ++++++++++++++++++ .../stylesheets/utilities/responsive.scss | 29 ++ app/assets/stylesheets/variables/colors.scss | 275 ++++++++++++ app/assets/stylesheets/variables/fonts.scss | 69 +++ app/models/concerns/geometry_concern.rb | 16 +- .../pdf/facts/_coverage_stats.html.erb | 10 +- .../stats/facts/_coverage_stats.html.erb | 124 +----- .../stats/facts/_coverage_stats_land.html.erb | 62 +++ .../facts/_coverage_stats_marine.html.erb | 62 +++ db | 2 +- 19 files changed, 1459 insertions(+), 115 deletions(-) rename app/assets/stylesheets/{application.css.scss => application.scss} (75%) create mode 100644 app/assets/stylesheets/atoms/colors.scss create mode 100644 app/assets/stylesheets/atoms/fonts.scss create mode 100644 app/assets/stylesheets/helpers/_flexbox.scss create mode 100644 app/assets/stylesheets/organisms/stats-card.scss create mode 100644 app/assets/stylesheets/resources/mixins/_flexbox.scss create mode 100644 app/assets/stylesheets/resources/mixins/_rem-calc.scss create mode 100644 app/assets/stylesheets/utilities/_flexbox.scss create mode 100644 app/assets/stylesheets/utilities/responsive.scss create mode 100644 app/assets/stylesheets/variables/colors.scss create mode 100644 app/assets/stylesheets/variables/fonts.scss create mode 100644 app/views/shared/stats/facts/_coverage_stats_land.html.erb create mode 100644 app/views/shared/stats/facts/_coverage_stats_marine.html.erb diff --git a/Gemfile b/Gemfile index bb37cc455..57464641c 100644 --- a/Gemfile +++ b/Gemfile @@ -6,6 +6,7 @@ gem 'pg' gem 'activerecord-postgis-adapter', '~> 3.1.0' gem 'gdal', '~> 0.0.5' gem 'dbf', '~> 2.0.7' +gem 'rb-readline' gem 'elasticsearch', '~> 5.0.3' diff --git a/Gemfile.lock b/Gemfile.lock index ac9854afd..551c9457a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -316,6 +316,7 @@ GEM rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) rake (10.5.0) + rb-readline (0.5.5) redis (3.2.1) redis-namespace (1.5.2) redis (~> 3.0, >= 3.0.4) @@ -451,6 +452,7 @@ DEPENDENCIES premailer-rails rack-cache (~> 1.2) rails (= 4.2.5.1) + rb-readline sass-rails (~> 5.0.4) selenium-webdriver sidekiq (~> 3.5.3) @@ -468,3 +470,6 @@ DEPENDENCIES webmock (~> 1.18.0) whenever will_paginate (~> 3.0) + +BUNDLED WITH + 1.16.1 diff --git a/app/assets/stylesheets/application.css.scss b/app/assets/stylesheets/application.scss similarity index 75% rename from app/assets/stylesheets/application.css.scss rename to app/assets/stylesheets/application.scss index 296d6d563..e87219433 100644 --- a/app/assets/stylesheets/application.css.scss +++ b/app/assets/stylesheets/application.scss @@ -13,6 +13,21 @@ * *= require 'protectedplanet-frontend/dist/style/main' *= require 'custom' + *= require_self */ - @import './map/custom-leaflet'; \ No newline at end of file +@import './resources/**/*'; + +@import './map/custom-leaflet'; + +@import './variables/*'; + +@import './helpers/*'; + +@import './utilities/*'; + +@import './atoms/*'; + +// @import './molecules/*'; + +@import './organisms/*'; \ No newline at end of file diff --git a/app/assets/stylesheets/atoms/colors.scss b/app/assets/stylesheets/atoms/colors.scss new file mode 100644 index 000000000..dd1041532 --- /dev/null +++ b/app/assets/stylesheets/atoms/colors.scss @@ -0,0 +1,24 @@ +@mixin color($color) { + color: $color; +} + +@mixin color-with-state($base-color, $states: (), $property: color) { + #{$property}: $base-color; + + @each $state, $color in $states { + &:#{$state} { + #{$property}: $color; + } + } +} + +%color-base { @include color($color--base); } +%acts-as-link { + &:hover, &:active { text-decoration: underline; } + @include color-with-state($link__color, ( + hover: $link__color--hover, + active: $link__color--pressed, + 'visited:active': $link__color--pressed, + visited: $link__color--visited, + )); +} diff --git a/app/assets/stylesheets/atoms/fonts.scss b/app/assets/stylesheets/atoms/fonts.scss new file mode 100644 index 000000000..16d183a3f --- /dev/null +++ b/app/assets/stylesheets/atoms/fonts.scss @@ -0,0 +1,32 @@ +@mixin text($form-factor, $weight: normal) { + font-family: 'MuseoSans'; + @if($weight != null) { + @include font-weight($weight); + } + + @include form-factor($form-factor); +} + +@mixin text--alt($form-factor, $weight: normal) { + font-family: 'MuseoSlab'; + @if($weight != null) { + @include font-weight($weight); + } + + @include form-factor($form-factor); +} + +@mixin text--icon($form-factor, $weight: normal) { + font-family: 'FontAwesome'; + font-weight: weight($weight); + + @include form-factor($form-factor); +} + +@mixin line-height($line-height) { + line-height: $line-height; +} + +@mixin font-weight($weight) { + font-weight: weight($weight); +} diff --git a/app/assets/stylesheets/helpers/_flexbox.scss b/app/assets/stylesheets/helpers/_flexbox.scss new file mode 100644 index 000000000..05d4d8a43 --- /dev/null +++ b/app/assets/stylesheets/helpers/_flexbox.scss @@ -0,0 +1,80 @@ +//-------------------------------------------------- +// columns +//-------------------------------------------------- +// N.B. flex-basis doesn't work properly in IE11, so be careful using these classes! + +.flex-1-half { flex: 0 1 50%; } + +.flex-1-third { flex: 0 1 33%; } +.flex-2-thirds { flex: 0 1 66%; } + +.flex-1-quarter { flex: 0 1 25%; } +.flex-2-quarters { flex: 0 1 50%; } +.flex-3-quarters { flex: 0 1 75%; } + +.flex-1-fith { flex: 0 1 20%; } +.flex-2-fiths { flex: 0 1 40%; } +.flex-3-fiths { flex: 0 1 60%; } +.flex-4-fiths { flex: 0 1 80%; } + +.flex-1-sixth { flex: 0 1 16%; } +.flex-2-sixths { flex: 0 1 33%; } +.flex-3-sixths { flex: 0 1 50%; } +.flex-4-sixths { flex: 0 1 66%; } +.flex-5-sixths { flex: 0 1 83%; } + +//-------------------------------------------------- +// columns with gutters +//-------------------------------------------------- +.flex-1-third-gutters { flex: 0 1 30%; } +.flex-2-thirds-gutters { flex: 0 1 63%; } + +//-------------------------------------------------- +// classes +//-------------------------------------------------- +.flex { @include flex(); } +.flex-inline { @include flex-inline(); } +.flex-row { @include flex-row(); } +.flex-row-reverse { @include flex-row-reverse(); } +.flex-column { @include flex-column(); } +.flex-column-reverse { @include flex-column-reverse(); } +.flex-nowrap { @include flex-nowrap(); } +.flex-wrap { @include flex-wrap(); } +.flex-wrap-reverse { @include flex-wrap-reverse(); } +.flex-1 { @include flex-1(); } +.flex-grow { @include flex-grow(); } +.flex-no-grow { @include flex-no-grow(); } +.flex-shrink { @include flex-shrink(); } +.flex-no-shrink { @include flex-no-shrink(); } +.flex-h-start { @include flex-h-start(); } +.flex-h-center { @include flex-h-center(); } +.flex-h-between { @include flex-h-between(); } +.flex-h-around { @include flex-h-around(); } +.flex-h-end { @include flex-h-end(); } +.flex-hs-start {@include flex-hs-start(); } +.flex-hs-center { @include flex-hs-center(); } +.flex-hs-between { @include flex-hs-between(); } +.flex-hs-around { @include flex-hs-around(); } +.flex-hs-end { @include flex-hs-end(); } +.flex-v-start { @include flex-v-start(); } +.flex-v-end { @include flex-v-end(); } +.flex-v-center {@include flex-v-center(); } +.flex-v-baseline { @include flex-v-baseline(); } +.flex-v-stretch { @include flex-v-stretch(); } +.flex-vs-start { @include flex-vs-start(); } +.flex-vs-center { @include flex-vs-center(); } +.flex-vs-baseline { @include flex-vs-baseline(); } +.flex-vs-stretch { @include flex-vs-stretch(); } +.flex-vs-end { @include flex-vs-end(); } +.flex-vm-start { @include flex-vm-start(); } +.flex-vm-end { @include flex-vm-end(); } +.flex-vm-center { @include flex-vm-center(); } +.flex-vm-between { @include flex-vm-between(); } +.flex-vm-around { @include flex-vm-around(); } +.flex-vm-stretch { @include flex-vm-stretch(); } + +.flex-center { + @include flex(); + @include flex-h-center(); + @include flex-v-center(); +} \ No newline at end of file diff --git a/app/assets/stylesheets/organisms/stats-card.scss b/app/assets/stylesheets/organisms/stats-card.scss new file mode 100644 index 000000000..4f72250d4 --- /dev/null +++ b/app/assets/stylesheets/organisms/stats-card.scss @@ -0,0 +1,133 @@ +//-------------------------------------------------- +// variables +//-------------------------------------------------- +$stat-colour-land: $brown; +$stat-colour-land-light: lighten($brown, 15%); +$stat-colour-marine: $blue--light; +$stat-colour-marine-light: lighten($blue--light, 15%); + +//-------------------------------------------------- +// mixins +//-------------------------------------------------- +@mixin card-row() { + display: flex; + @include flex-column; + @include flex-wrap; + + @include breakpoint($small){ + @include flex-row; + @include flex-nowrap; + @include flex-h-between; + } +} + +@mixin card-element() { + margin: rem-calc(0 0 10 0); + width: 30%; + + &:last-child { + @include breakpoint($small) { margin-right: auto; } + } +} + +@mixin card-infographic($size, $bg-color: $grey-100, $fill-color: $green) { + @include flex-h-start(); + background-color: $bg-color; + width: rem-calc($size); height: rem-calc($size); + + position: relative; + + .card__cube-inner { + background-color: $fill-color; + + position: absolute; + top: 0; + left: 0; + } +} + +@mixin card-number($color: $grey-66, $font-size: medium, $font-weight: bold) { + @include text--alt($font-size, $font-weight); + color: $color; + display: block; +} + +//-------------------------------------------------- +// classes +//-------------------------------------------------- +.card { + +//-------------------------------------------------- +// card--stats used on country page +//-------------------------------------------------- + &--stats { + @include text(body, thin); + color: $grey-77; + padding: rem-calc(30 0); + + &:not(:last-child) { + border-bottom: dashed rem-calc(1) $grey-33; + } + + .card { + &--land { + + } + + &__body { + @include flex-h-start; + @include flex-nowrap; + + display: flex; + } + + &__column-1 { + margin-right: rem-calc(16); + } + + &__row { + @include card-row(); + } + + &__element { + @include card-element(); + + &--push-right { + margin-right: rem-calc(40); + } + } + + &__cube--land { + @include card-infographic(100, $bg-color: $grey-15, $fill-color: $stat-colour-land); + } + + &__cube--marine { + @include card-infographic(100, $bg-color: $grey-15, $fill-color: $stat-colour-marine); + } + + &__number--land { + @include card-number($stat-colour-land); + } + + &__number--land-light { + @include card-number($stat-colour-land-light); + } + + &__number--marine { + @include card-number($stat-colour-marine); + } + + &__number--marine-light { + @include card-number($stat-colour-marine-light); + } + + &__number--large-land { + @include card-number($stat-colour-land, xxlarge, bold); + } + + &__number--large-marine { + @include card-number($stat-colour-marine, xxlarge, bold); + } + } + } +} \ No newline at end of file diff --git a/app/assets/stylesheets/resources/mixins/_flexbox.scss b/app/assets/stylesheets/resources/mixins/_flexbox.scss new file mode 100644 index 000000000..74c10b4f7 --- /dev/null +++ b/app/assets/stylesheets/resources/mixins/_flexbox.scss @@ -0,0 +1,87 @@ +// This file has been added for all new work - it will eventually replace the old flexbox file once the rest of the styles have been updated. +// The rest of the styling couldn't be updated to use this file yet because it hasn't been merged into develop. + +//-------------------------------------------------- +// flexbox +//-------------------------------------------------- +@mixin flex { display: flex; } +@mixin flex-inline { display: inline-flex; } + +@mixin flex-row { flex-direction: row; } +@mixin flex-row-reverse { flex-direction: row-reverse; } +@mixin flex-column { flex-direction: column; } +@mixin flex-column-reverse { flex-direction: column-reverse; } + +@mixin flex-nowrap { flex-wrap: nowrap; } +@mixin flex-wrap { flex-wrap: wrap; } +@mixin flex-wrap-reverse { flex-wrap: wrap-reverse; } + +@mixin flex-1 { flex: 1; } + +//-------------------------------------------------- +// flex size +//-------------------------------------------------- +@mixin flex-grow { flex-grow: 1; } +@mixin flex-no-grow { flex-grow: 0; } +@mixin flex-shrink { flex-shrink: 1; } +@mixin flex-no-shrink { flex-shrink: 0; } + +//-------------------------------------------------- +// horizontal alignment +//-------------------------------------------------- +@mixin flex-h-start { justify-content: flex-start; } +@mixin flex-h-center { justify-content: center; } +@mixin flex-h-between { justify-content: space-between; } +@mixin flex-h-around { justify-content: space-around; } + +@mixin flex-h-end { + justify-content: flex-end; + margin-left: auto; +} + +//-------------------------------------------------- +// horizontal alignment of self +//-------------------------------------------------- +@mixin flex-hs-start { + justify-self: flex-start; + margin-right: auto; +} +@mixin flex-hs-center { justify-self: center; } +@mixin flex-hs-between { justify-self: space-between; } +@mixin flex-hs-around { justify-self: space-around; } +@mixin flex-hs-end { + justify-self: flex-end; + margin-left: auto; +} + +//-------------------------------------------------- +// vertical alignment +//-------------------------------------------------- +@mixin flex-v-start { align-items: flex-start; } +@mixin flex-v-end { align-items: flex-end; } +@mixin flex-v-center {align-items: center; } +@mixin flex-v-baseline { align-items: baseline; } +@mixin flex-v-stretch { align-items: stretch; } + +//-------------------------------------------------- +// vertical alignment of self +//-------------------------------------------------- +@mixin flex-vs-start { align-self: flex-start; } +@mixin flex-vs-center {align-self: center; } +@mixin flex-vs-baseline { align-self: baseline; } +@mixin flex-vs-stretch { align-self: stretch; } + +@mixin flex-vs-end { + align-self: flex-end; + margin-top: auto; +} + +//-------------------------------------------------- +// vertical alignment of multiple items +//-------------------------------------------------- +@mixin flex-vm-start { align-content: flex-start; } +@mixin flex-vm-end { align-content: flex-end; } +@mixin flex-vm-center {align-content: center; } +@mixin flex-vm-between { align-content: space-between; } +@mixin flex-vm-around { align-content: space-around; } +@mixin flex-vm-stretch { align-content: stretch; } diff --git a/app/assets/stylesheets/resources/mixins/_rem-calc.scss b/app/assets/stylesheets/resources/mixins/_rem-calc.scss new file mode 100644 index 000000000..31687ef1a --- /dev/null +++ b/app/assets/stylesheets/resources/mixins/_rem-calc.scss @@ -0,0 +1,152 @@ +// Foundation for Sites by ZURB +// foundation.zurb.com +// Licensed under MIT Open Source + +//// +/// @group functions +//// + +$global-font-size: 100% !default; + +/// Removes the unit (e.g. px, em, rem) from a value, returning the number only. +/// +/// @param {Number} $num - Number to strip unit from. +/// +/// @returns {Number} The same number, sans unit. +@function strip-unit($num) { + @return $num / ($num * 0 + 1); +} + +/// Converts one or more pixel values into matching rem values. +/// +/// @param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses. +/// @param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base. +/// +/// @returns {List} A list of converted values. +@function rem-calc($values, $base: null) { + $rem-values: (); + $count: length($values); + + // If no base is defined, defer to the global font size + @if $base == null { + $base: $global-font-size; + } + + // If the base font size is a %, then multiply it by 16px + // This is because 100% font size = 16px in most all browsers + @if unit($base) == '%' { + $base: ($base / 100%) * 16px; + } + + // Using rem as base allows correct scaling + @if unit($base) == 'rem' { + $base: strip-unit($base) * 16px; + } + + @if $count == 1 { + @return -zf-to-rem($values, $base); + } + + @for $i from 1 through $count { + $rem-values: append($rem-values, -zf-to-rem(nth($values, $i), $base)); + } + + @return $rem-values; +} + +// Converts a unitless, pixel, or rem value to em, for use in breakpoints. +@function -zf-bp-to-em($value) { + // Pixel and unitless values are converted to rems + @if unit($value) == 'px' or unitless($value) { + $value: rem-calc($value, $base: 16px); + } + + // Then the value is converted to ems + @return strip-unit($value) * 1em; +} + +/// Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable. +/// @access private +/// +/// @param {Number} $value - Pixel value to convert. +/// @param {Number} $base [null] - Base for pixel conversion. +/// +/// @returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is. +@function -zf-to-rem($value, $base: null) { + // Check if the value is a number + @if type-of($value) != 'number' { + @warn inspect($value) + ' was passed to rem-calc(), which is not a number.'; + @return $value; + } + + // Transform em into rem if someone hands over 'em's + @if unit($value) == 'em' { + $value: strip-unit($value) * 1rem; + } + + // Calculate rem if units for $value is not rem or em + @if unit($value) != 'rem' { + $value: strip-unit($value) / strip-unit($base) * 1rem; + } + + // Turn 0rem into 0 + @if $value == 0rem { + $value: 0; + } + + @return $value; +} + +/// Converts a pixel, percentage, rem or em value to a unitless value based on a given font size. Ideal for working out unitless line heights. +/// +/// @param {Number} $value - Value to convert to a unitless line height +/// @param {Number} $base - The font size to use to work out the line height - defaults to $global-font-size +/// +/// @return {Number} - Unitless number +@function unitless-calc($value, $base: null) { + + // If no base is defined, defer to the global font size + @if $base == null { + $base: $global-font-size; + } + + // First, lets convert our $base to pixels + + // If the base font size is a %, then multiply it by 16px + @if unit($base) == '%' { + $base: ($base / 100%) * 16px; + } + + @if unit($base) == 'rem' { + $base: strip-unit($base) * 16px; + } + + @if unit($base) == 'em' { + $base: strip-unit($base) * 16px; + } + + // Now lets convert our value to pixels too + @if unit($value) == '%' { + $value: ($value / 100%) * $base; + } + + @if unit($value) == 'rem' { + $value: strip-unit($value) * $base; + } + + @if unit($value) == 'em' { + $value: strip-unit($value) * $base; + } + + // 'px' + @if unit($value) == 'px' { + @return strip-unit($value) / strip-unit($base); + } + + // assume that line-heights greatern then 10 are meant to be absolute in 'px' + @if unitless($value) and ($value > 10) { + @return $value / strip-unit($base); + } + + @return $value; +} \ No newline at end of file diff --git a/app/assets/stylesheets/utilities/_flexbox.scss b/app/assets/stylesheets/utilities/_flexbox.scss new file mode 100644 index 000000000..6fa026c10 --- /dev/null +++ b/app/assets/stylesheets/utilities/_flexbox.scss @@ -0,0 +1,394 @@ +// Flexbox Mixins +// http://philipwalton.github.io/solved-by-flexbox/ +// https://github.com/philipwalton/solved-by-flexbox +// +// Copyright (c) 2013 Brian Franco +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// +// This is a set of mixins for those who want to mess around with flexbox +// using the native support of current browsers. For full support table +// check: http://caniuse.com/flexbox +// +// Basically this will use: +// +// * Fallback, old syntax (IE10, mobile webkit browsers - no wrapping) +// * Final standards syntax (FF, Safari, Chrome, IE11, Opera) +// +// This was inspired by: +// +// * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/ +// +// With help from: +// +// * http://w3.org/tr/css3-flexbox/ +// * http://the-echoplex.net/flexyboxes/ +// * http://msdn.microsoft.com/en-us/library/ie/hh772069(v=vs.85).aspx +// * http://css-tricks.com/using-flexbox/ +// * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/ +// * https://developer.mozilla.org/en-us/docs/web/guide/css/flexible_boxes + +//---------------------------------------------------------------------- + +// Flexbox Containers +// +// The 'flex' value causes an element to generate a block-level flex +// container box. +// +// The 'inline-flex' value causes an element to generate a inline-level +// flex container box. +// +// display: flex | inline-flex +// +// http://w3.org/tr/css3-flexbox/#flex-containers +// +// (Placeholder selectors for each type, for those who rather @extend) + +@mixin flexbox { + display: -webkit-box; + display: -webkit-flex; + display: -moz-flex; + display: -ms-flexbox; + display: flex; +} + +%flexbox { @include flexbox; } + +//---------------------------------- + +@mixin inline-flex { + display: -webkit-inline-box; + display: -webkit-inline-flex; + display: -moz-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; +} + +%inline-flex { @include inline-flex; } + +//---------------------------------------------------------------------- + +// Flexbox Direction +// +// The 'flex-direction' property specifies how flex items are placed in +// the flex container, by setting the direction of the flex container's +// main axis. This determines the direction that flex items are laid out in. +// +// Values: row | row-reverse | column | column-reverse +// Default: row +// +// http://w3.org/tr/css3-flexbox/#flex-direction-property + +@mixin flex-direction($value: row) { + @if $value == row-reverse { + -webkit-box-direction: reverse; + -webkit-box-orient: horizontal; + } @else if $value == column { + -webkit-box-direction: normal; + -webkit-box-orient: vertical; + } @else if $value == column-reverse { + -webkit-box-direction: reverse; + -webkit-box-orient: vertical; + } @else { + -webkit-box-direction: normal; + -webkit-box-orient: horizontal; + } + -webkit-flex-direction: $value; + -moz-flex-direction: $value; + -ms-flex-direction: $value; + flex-direction: $value; +} + // Shorter version: + @mixin flex-dir($args...) { @include flex-direction($args...); } + +//---------------------------------------------------------------------- + +// Flexbox Wrap +// +// The 'flex-wrap' property controls whether the flex container is single-line +// or multi-line, and the direction of the cross-axis, which determines +// the direction new lines are stacked in. +// +// Values: nowrap | wrap | wrap-reverse +// Default: nowrap +// +// http://w3.org/tr/css3-flexbox/#flex-wrap-property + +@mixin flex-wrap($value: nowrap) { + // No Webkit Box fallback. + -webkit-flex-wrap: $value; + -moz-flex-wrap: $value; + @if $value == nowrap { + -ms-flex-wrap: none; + } @else { + -ms-flex-wrap: $value; + } + flex-wrap: $value; +} + +//---------------------------------------------------------------------- + +// Flexbox Flow (shorthand) +// +// The 'flex-flow' property is a shorthand for setting the 'flex-direction' +// and 'flex-wrap' properties, which together define the flex container's +// main and cross axes. +// +// Values: | +// Default: row nowrap +// +// http://w3.org/tr/css3-flexbox/#flex-flow-property + +@mixin flex-flow($values: (row nowrap)) { + // No Webkit Box fallback. + -webkit-flex-flow: $values; + -moz-flex-flow: $values; + -ms-flex-flow: $values; + flex-flow: $values; +} + +//---------------------------------------------------------------------- + +// Flexbox Order +// +// The 'order' property controls the order in which flex items appear within +// their flex container, by assigning them to ordinal groups. +// +// Default: 0 +// +// http://w3.org/tr/css3-flexbox/#order-property + +@mixin order($int: 0) { + -webkit-box-ordinal-group: $int + 1; + -webkit-order: $int; + -moz-order: $int; + -ms-flex-order: $int; + order: $int; +} + +//---------------------------------------------------------------------- + +// Flexbox Grow +// +// The 'flex-grow' property sets the flex grow factor. Negative numbers +// are invalid. +// +// Default: 0 +// +// http://w3.org/tr/css3-flexbox/#flex-grow-property + +@mixin flex-grow($int: 0) { + -webkit-box-flex: $int; + -webkit-flex-grow: $int; + -moz-flex-grow: $int; + -ms-flex-positive: $int; + flex-grow: $int; +} + +//---------------------------------------------------------------------- + +// Flexbox Shrink +// +// The 'flex-shrink' property sets the flex shrink factor. Negative numbers +// are invalid. +// +// Default: 1 +// +// http://w3.org/tr/css3-flexbox/#flex-shrink-property + +@mixin flex-shrink($int: 1) { + -webkit-flex-shrink: $int; + -moz-flex-shrink: $int; + -ms-flex-negative: $int; + flex-shrink: $int; +} + +//---------------------------------------------------------------------- + +// Flexbox Basis +// +// The 'flex-basis' property sets the flex basis. Negative lengths are invalid. +// +// Values: Like "width" +// Default: auto +// +// http://www.w3.org/TR/css3-flexbox/#flex-basis-property + +@mixin flex-basis($value: auto) { + -webkit-flex-basis: $value; + -moz-flex-basis: $value; + -ms-flex-preferred-size: $value; + flex-basis: $value; +} + +//---------------------------------------------------------------------- + +// Flexbox "Flex" (shorthand) +// +// The 'flex' property specifies the components of a flexible length: the +// flex grow factor and flex shrink factor, and the flex basis. When an +// element is a flex item, 'flex' is consulted instead of the main size +// property to determine the main size of the element. If an element is +// not a flex item, 'flex' has no effect. +// +// Values: none | || +// Default: See individual properties (1 1 0). +// +// http://w3.org/tr/css3-flexbox/#flex-property + +@mixin flex($fg: 1, $fs: null, $fb: null) { + + // Set a variable to be used by box-flex properties + $fg-boxflex: $fg; + + // Box-Flex only supports a flex-grow value so let's grab the + // first item in the list and just return that. + @if type-of($fg) == 'list' { + $fg-boxflex: nth($fg, 1); + } + + -webkit-box-flex: $fg-boxflex; + -webkit-flex: $fg $fs $fb; + -moz-box-flex: $fg-boxflex; + -moz-flex: $fg $fs $fb; + -ms-flex: $fg $fs $fb; + flex: $fg $fs $fb; +} + +//---------------------------------------------------------------------- + +// Flexbox Justify Content +// +// The 'justify-content' property aligns flex items along the main axis +// of the current line of the flex container. This is done after any flexible +// lengths and any auto margins have been resolved. Typically it helps distribute +// extra free space leftover when either all the flex items on a line are +// inflexible, or are flexible but have reached their maximum size. It also +// exerts some control over the alignment of items when they overflow the line. +// +// Note: 'space-*' values not supported in older syntaxes. +// +// Values: flex-start | flex-end | center | space-between | space-around +// Default: flex-start +// +// http://w3.org/tr/css3-flexbox/#justify-content-property + +@mixin justify-content($value: flex-start) { + @if $value == flex-start { + -webkit-box-pack: start; + -ms-flex-pack: start; + } @else if $value == flex-end { + -webkit-box-pack: end; + -ms-flex-pack: end; + } @else if $value == space-between { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + } @else if $value == space-around { + -ms-flex-pack: distribute; + } @else { + -webkit-box-pack: $value; + -ms-flex-pack: $value; + } + -webkit-justify-content: $value; + -moz-justify-content: $value; + justify-content: $value; +} + // Shorter version: + @mixin flex-just($args...) { @include justify-content($args...); } + +//---------------------------------------------------------------------- + +// Flexbox Align Items +// +// Flex items can be aligned in the cross axis of the current line of the +// flex container, similar to 'justify-content' but in the perpendicular +// direction. 'align-items' sets the default alignment for all of the flex +// container's items, including anonymous flex items. 'align-self' allows +// this default alignment to be overridden for individual flex items. (For +// anonymous flex items, 'align-self' always matches the value of 'align-items' +// on their associated flex container.) +// +// Values: flex-start | flex-end | center | baseline | stretch +// Default: stretch +// +// http://w3.org/tr/css3-flexbox/#align-items-property + +@mixin align-items($value: stretch) { + @if $value == flex-start { + -webkit-box-align: start; + -ms-flex-align: start; + } @else if $value == flex-end { + -webkit-box-align: end; + -ms-flex-align: end; + } @else { + -webkit-box-align: $value; + -ms-flex-align: $value; + } + -webkit-align-items: $value; + -moz-align-items: $value; + align-items: $value; +} + +//---------------------------------- + +// Flexbox Align Self +// +// Values: auto | flex-start | flex-end | center | baseline | stretch +// Default: auto + +@mixin align-self($value: auto) { + // No Webkit Box Fallback. + -webkit-align-self: $value; + -moz-align-self: $value; + @if $value == flex-start { + -ms-flex-item-align: start; + } @else if $value == flex-end { + -ms-flex-item-align: end; + } @else { + -ms-flex-item-align: $value; + } + align-self: $value; +} + +//---------------------------------------------------------------------- + +// Flexbox Align Content +// +// The 'align-content' property aligns a flex container's lines within the +// flex container when there is extra space in the cross-axis, similar to +// how 'justify-content' aligns individual items within the main-axis. Note, +// this property has no effect when the flexbox has only a single line. +// +// Values: flex-start | flex-end | center | space-between | space-around | stretch +// Default: stretch +// +// http://w3.org/tr/css3-flexbox/#align-content-property + +@mixin align-content($value: stretch) { + // No Webkit Box Fallback. + -webkit-align-content: $value; + -moz-align-content: $value; + @if $value == flex-start { + -ms-flex-line-pack: start; + } @else if $value == flex-end { + -ms-flex-line-pack: end; + } @else { + -ms-flex-line-pack: $value; + } + align-content: $value; +} \ No newline at end of file diff --git a/app/assets/stylesheets/utilities/responsive.scss b/app/assets/stylesheets/utilities/responsive.scss new file mode 100644 index 000000000..baca993bd --- /dev/null +++ b/app/assets/stylesheets/utilities/responsive.scss @@ -0,0 +1,29 @@ +//keep old responsive mixins with old breakpoints to avoid breaking styles across the existing site + +@mixin only-mobile { + @media only screen and (max-width: 768px) { + @content; + } +} + +@mixin only-desktop { + @media only screen and (min-width: 768px) { + @content; + } +} + +//---------------------------------------- +// breakpoint variables +//---------------------------------------- +$small: rem-calc(628); //mobile +$medium: rem-calc(763); //tablet portrait +$large: rem-calc(1024); //tablet landscape + +//---------------------------------------- +// responsive mixins +//---------------------------------------- +@mixin breakpoint($breakpoint){ + @media only screen and (min-width: $breakpoint + 1) { + @content; + } +} \ No newline at end of file diff --git a/app/assets/stylesheets/variables/colors.scss b/app/assets/stylesheets/variables/colors.scss new file mode 100644 index 000000000..31c9c2876 --- /dev/null +++ b/app/assets/stylesheets/variables/colors.scss @@ -0,0 +1,275 @@ +$dark-blue: rgb(43, 49, 70); +$grey-blue: #848184; +$blue: #317fce; + +// green palette +$green: #71a32b; +$green--dark: #699728; +$green--darker: #415519; +$green--light: #83af46; +$green--lighter: #e3edd5; +$brown: #702412; +$white: #ffffff; + +// blue palette +$blue: #1d62b1; +$blue--dark: #1a589f; +$blue--light: #3a76bb; +$blue--lighter: #d2e0ef; + +//used on marine insights page +$blue--marine-1: #bfe5e9; +$blue--marine-2: #A1D8DE; +$blue--marine-3: #90BDC4; +$blue--marine-4: #729099; +$blue--marine-5: #444955; + +// red palette +$red: #d80000; +$red--dark: #c20000; +$red--light: #de2626; +$red--lighter: #f7cccc; + +// orange palette +$orange: #ef5833; +$orange--dark: #de522f; +$orange--lighter: #f16e4d; +$orange--lighest: #F5A623; //highlight color on the marine page +$brown-bg: #fcded6; +$yellow: #ffe600; + +// grey palette +$grey-100: #333333; +$grey-77: #666666; +$grey-55: #8f8f8f; +$grey-44: #4a4a4a; +$grey-33: #bbbbbb; +$grey-15: #dfe0e1; +$grey-5: #f2f2f2; +$grey-4: #d8d8d8; +$grey-3: #f8f8f8; + +// palettes +$palettes: +$green $green--dark $green--light $brown $white, +$blue $blue--dark $blue--light $blue--lighter, +$red $red--dark $red--light $red--lighter, +$orange $orange--dark $orange--lighter $brown-bg $yellow, +$grey-100 $grey-77 $grey-55 $grey-33 $grey-15 $grey-5 $grey-3 !default; + +// atoms/leaflet-control +$leaflet-control__color: $green !default; +$leaflet-control__bg-color: $white !default; +$leaflet-control__disabled-color: $grey-5 !default; +$leaflet-control__border: $grey-15 !default; +$leaflet-control__hover-color: $grey-5 !default; + +// atoms/buttons +$button--hide-color: $green !default; +$button--hide-border-color: $grey-4; +$button--grey-border-color: $grey-4 !default; +$button--grey-text-color: $green !default; +$button--fullscreen-text-color: $green !default; +$button--fullscreen-hover-color: $grey-5 !default; +$button--external-color: $green; + +// atoms/colors +$link__color: $green !default; +$link__color--hover: $green--light !default; +$link__color--pressed: $green--dark !default; +$link__color--visited: $green--light !default; + +// molecules/attribute +$attribute-border-color: $grey-4; +$attribute__title-color: $grey-100; +$attribute__value-color: $green; + +// molecules/link-with-icon +$link-with-icon__color: $green !default; +$link-with-icon__bg-color: $white !default; + +// molecules/table +$table-link__color: $green !default; + +// molecules/reference +$reference-link__color: $green !default; +$reference-link-icon__color: $green !default; + +// molecules/big-button +$big-button__color: $white !default; +$big-button__bg-color: $green !default; +$big-button__bg-color--hover: $green--light !default; +$big-button__bg-color--pressed: $green--dark !default; +$big-button__bg-color--visited: $green--light !default; +$big-button__bg-color--disabled: $green--lighter !default; +$big-button-danger__color: $white !default; +$big-button-danger__bg-color: $red !default; +$big-button-danger__bg-color--hover: $red--light !default; +$big-button-danger__bg-color--pressed: $red--dark !default; +$big-button-danger__bg-color--visited: $red--light !default; +$big-button-danger__bg-color--disabled: $red--lighter !default; + +// molecules/horizontal-bar +$horizontal-bar__bg-color: $green !default; +$horizontal-bar-inner__bg-color: $green--darker !default; + +// molecules/dropdown +$dropdown__bg-color: $green--dark !default; +$dropdown-inner__border-top-color: $green !default; +$dropdown-trigger-is-selected__bg-color: $green--dark !default; +$dropdown-element-hover__bg-color: $green !default; + +// molecules/alert +$alert__bg-color: $grey-5 !default; +$alert-warning--color: $orange !default; +$alert-success--color: $green !default; +$alert-info--color: $blue--dark !default; + +// molecules/key +$key__title-color: $grey-100 !default; +$key__title-hover-color: $green !default; +$key__tick-color: $green; + +// molecules/value +$value-number__color: $green !default; +$value-number-alt-color__color: $green--darker !default; + +// molecules/stats +$stats-background-color: $grey-3 !default; +$stats-text-color: $grey-77 !default; +$stats-number-color: $green !default; +$stats-country-color: $green !default; + +// organisms/navbar +$navbar__bg-color: $green !default; +$navbar__bg-color--darker: $green--dark !default; +$navbar-element-dark__bg-color: $green--dark !default; +$navbar-element__color: $white !default; +$navbar-element-hover__bg-color: $green--light !default; +$navbar-element-active__bg-color: $green--dark !default; +$navbar-element-for-search-dropdown-is-active__color: $green !default; +$color--nav-bg: $green; +$color--nav-active-link: $green--dark; +$color--nav-link: $white; +$color--nav-hover-link: $green--dark; +$color--nav-border: $grey-33; + +// organisms/search-result +$search-result-title__color: $green !default; + +// organisms/filter-bar +$filter-bar-value-hover__bg-color: $grey-5 !default; +$filter-bar-value-active__bg-color: $grey-15 !default; + +// organisms/hero +$hero-title__color: $green !default; + +// organisms/fact +$fact-header__color: $grey-100 !default; +$fact-header__border-bottom-color: $grey-33 !default; +$fact-external-link__color: $green !default; + +// organisms/gallery +$gallery-controls__bg-color: $grey-5 !default; +$gallery-current-index__color: $white !default; +$gallery-current-index__bg-color: $green--dark !default; + +// organisms/info-box +$info-box__bg-color: $grey-5 !default; +$info-box-link__color: $green !default; +$info-box-link-icon__color: $green !default; +$info-box-row__border-bottom: $grey-33 !default; +$info-box__icon-color: $blue !default; + +// organisms/footer +$footer-element-with-separator__border-left-color: $green--dark !default; + +//organisms/tabs +$tabs__title-color: $grey-100; +$tabs__title-border-color: $grey-4; + +// organisms/vertical-nav +$vertical-nav-element-selected__color: $green !default; + +// scopes/article +$article-list-index__color: $green !default; + +// molecules/pa-card +$pa-card-border-bottom__color: $grey-4 !default; +$pa-card-detail-border-right__color: $grey-4 !default; +$pa-card-subtitle__color: $grey-44; +$pa-card-text__color: $grey-100; + +$color--base: $grey-77; +$color--base-btn-bg: $green; +$color--base-btn-hover-bg: $green--dark; +$color--base-btn-text: $white; + +$color--bg: $dark-blue; + +$color--leaflet-control: $dark-blue; +$color--leaflet-control-text: $white; +$color--leaflet-control-hover-bg: $white; +$color--leaflet-control-hover-text: $dark-blue; +$color--leaflet-control-border: $white; + +$color--leaflet-cluster-bg: $dark-blue; +$color--leaflet-cluster-border: $white; +$color--leaflet-cluster-text: $white; + + +$color--header-active-link: $grey-33; +$color--header-link: $grey-100; +$color--header-hover-link: $grey-33; + +$color--footer-bg: $dark-blue; +$color--footer: $grey-33; +$color--footer-link: $grey-33; + +$color--project-header-bg: $white; +$color--project-header-border: $grey-15; +$color--project-header-small: $grey-77; +$color--project-item-border: $grey-33; +$color--project-bg: $grey-33; +$color--project-item-bg: $white; +$color--project-dropdown-bg: $grey-33; +$color--project-dropdown-active: $grey-33; + +$color--pa-text: $grey-77; +$color--pa-header: $grey-77; +$color--pa-table-border: $grey-33; +$color--pa-table-attribute: $grey-100; +$color--pa-infographic-bg: $dark-blue; +$color--pa-infographic-text: $white; +$color--pa-infographic-border: $grey-15; + +$color--home-filters-bg: $white; +$color--home-filters-hover-bg: $grey-33; +$color--home-filters-border: $grey-33; +$color--home-filters-child-border: $grey-33; +$color--home-filters-text: $grey-77; + +$color--map-disclaimer-bg: $grey-5; +$color--map-disclaimer-text: $grey-77; + +$color--search-download-bg: $white; +$color--search-download-text: $grey-100; +$color--search-download-border: $grey-33; + +$color--search-bar-bg: $white; +$color--search-input-bg: $grey-33; +$color--search-input-bg-hover: $grey-15; +$color--search-input-text: $grey-100; + +$color--search-header-bg: $white; +$color--search-filters-bg: $white; +$color--search-filters-header: $dark-blue; +$color--search-filters-active: $green--dark; +$color--search-filters-text: $white; +$color--search-switch-border: $white; +$color--search-filters-border: $grey-33; +$color--search-result-small-text: $grey-33; + +$color--download-modal-text: $grey-77; +$color--download-modal-overlay-bg: rgba(0, 0, 0, .5); +$color--download-modal-input-bg: $grey-33; \ No newline at end of file diff --git a/app/assets/stylesheets/variables/fonts.scss b/app/assets/stylesheets/variables/fonts.scss new file mode 100644 index 000000000..93ce9cd4a --- /dev/null +++ b/app/assets/stylesheets/variables/fonts.scss @@ -0,0 +1,69 @@ +$x-thin: 100; +$thin: 300; +$normal: 500; +$bold: 700; +$x-bold: 900; + + +$weights: ( + x-thin: $x-thin, + thin: $thin, + normal: $normal, + bold: $bold, + x-bold: $x-bold +); + +$form-factors: ( + xxxxlarge: ( + font-size: rem-calc(77), line-height: rem-calc(75) + ), + xxxlarge: ( + font-size: rem-calc(64), line-height: rem-calc(64) + ), + xxlarge: ( + font-size: rem-calc(51), line-height: rem-calc(57) + ), + xlarge: ( + font-size: rem-calc(38), line-height: rem-calc(43) + ), + large: ( + font-size: rem-calc(26), line-height: rem-calc(32) + ), + medium: ( + font-size: rem-calc(22), line-height: rem-calc(32) + ), + headline: ( + font-size: rem-calc(20), line-height: rem-calc(27) + ), + body: ( + font-size: rem-calc(16), line-height: rem-calc(21) + ), + small: ( + font-size: rem-calc(13), line-height: rem-calc(21) + ), +); + +@function weight($name) { + @return map-get($weights, $name); +} + +@function form-factor($name, $property: null) { + $form-factor: map-get($form-factors, $name); + + @if($property) { + @return map-get($form-factor, $property); + } @else { + @return $form-factor; + } +} + +@mixin form-factor($name) { + @each $property, $value in form-factor($name) { + #{$property}: #{$value}; + } +} + +// atoms/leaflet-control +$leaflet-control__font-size: form-factor(body, line-height) !default; + +$fontAwesome: normal normal normal 14px/1 FontAwesome; \ No newline at end of file diff --git a/app/models/concerns/geometry_concern.rb b/app/models/concerns/geometry_concern.rb index b6cdfca65..afdb803b0 100644 --- a/app/models/concerns/geometry_concern.rb +++ b/app/models/concerns/geometry_concern.rb @@ -12,14 +12,16 @@ def geometry_columns end def bounds - rgeo_factory = RGeo::Geos.factory srid: 4326 - bounds = RGeo::Cartesian::BoundingBox.new rgeo_factory - bounds.add bounding_box + # rgeo_factory = RGeo::Geos.factory srid: 4326 + # bounds = RGeo::Cartesian::BoundingBox.new rgeo_factory + # bounds.add bounding_box - [ - [bounds.min_y, bounds.min_x], - [bounds.max_y, bounds.max_x] - ] + # [ + # [bounds.min_y, bounds.min_x], + # [bounds.max_y, bounds.max_x] + # ] + + [ [0,0], [0,0] ] end def geojson geo_properties=nil diff --git a/app/views/country/pdf/facts/_coverage_stats.html.erb b/app/views/country/pdf/facts/_coverage_stats.html.erb index 0b9207b54..fea79bb92 100644 --- a/app/views/country/pdf/facts/_coverage_stats.html.erb +++ b/app/views/country/pdf/facts/_coverage_stats.html.erb @@ -9,8 +9,12 @@

Area terrestrial

+
-
+
+
+
+

<%= @presenter.percentage_pa_land_cover.round(2) %>%

coverage @@ -23,6 +27,10 @@

<%= commaify @presenter.land_area %> km2

Total Land Area
+
+

<%= commaify @presenter.land_area %>%

+ 5th National Report Coverage +
diff --git a/app/views/shared/stats/facts/_coverage_stats.html.erb b/app/views/shared/stats/facts/_coverage_stats.html.erb index aa2080193..27c78e3b2 100644 --- a/app/views/shared/stats/facts/_coverage_stats.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats.html.erb @@ -3,115 +3,29 @@ Protected areas coverage (Ref 1 ↓ ) -
-
-
- "/> -

Area terrestrial

-
- -
-
- -
-
-
-

<%= @presenter.percentage_pa_land_cover.round(2) %>%

- coverage -
-
-

<%= commaify @presenter.pa_land_area.round(0) %> km2

- Land Area Protected -
-
-

<%= commaify @presenter.land_area.round(0) %> km2

- Total Land Area -
-
- - <% if has_pame_statistics_for(@presenter, :land) %> -
-
-
-

- - <%= @presenter.pame_statistic.pame_percentage_pa_land_cover.round(2) %>%

- with management effectiveness evaluation -
-
-

<%= commaify @presenter.pame_statistic.pame_pa_land_area %> km2

- Area Assessed -
-
-
- <% end %> -
-
-
+
+ <%= render partial: 'shared/stats/facts/coverage_stats_land' %> -
-
- "/> -

Area marine

-
-
-
- -
-
-
-

<%= @presenter.percentage_pa_marine_cover.round(2) %>%

- coverage -
-
-

<%= commaify @presenter.pa_marine_area.round(0) %> km2

- Marine Area Protected -
-
-

<%= commaify @presenter.marine_area.round(0) %> km2

- Total Marine Area -
-
- - <% if has_pame_statistics_for(@presenter, :marine) %> -
-
-
-

- - <%= @presenter.pame_statistic.pame_percentage_pa_marine_cover.round(2) %>% -

- with management effectiveness evaluation -
-
-

<%= commaify @presenter.pame_statistic.pame_pa_marine_area %> km2

- Area Assessed -
-
-
- <% end %> -
-
-
+ <%= render partial: 'shared/stats/facts/coverage_stats_marine' %>
-

- Warning: These statistics might differ from those reported officially by - countries due to difference in methodologies and datasets used to assess - protected area coverage and differences in the base maps used to measure - terrestrial and marine area of a country or territory. - - <% if is_japan? %> - Download Japan’s fifth national report (pdf). - <% end %> -

- <% if has_restricted_sites? %> -

- Part of the protected areas dataset for <%= @country.name %> is restricted. -

+

+ Warning: These statistics might differ from those reported officially by + countries due to difference in methodologies and datasets used to assess + protected area coverage and differences in the base maps used to measure + terrestrial and marine area of a country or territory. + + <% if is_japan? %> + Download Japan’s fifth national report (pdf). <% end %> -

- Learn how we calculate protected area coverage statistics +

+ <% if has_restricted_sites? %> +

+ Part of the protected areas dataset for <%= @country.name %> is restricted.

+ <% end %> +

+ Learn how we calculate protected area coverage statistics +

diff --git a/app/views/shared/stats/facts/_coverage_stats_land.html.erb b/app/views/shared/stats/facts/_coverage_stats_land.html.erb new file mode 100644 index 000000000..0543f95eb --- /dev/null +++ b/app/views/shared/stats/facts/_coverage_stats_land.html.erb @@ -0,0 +1,62 @@ +
+
+ "/> +

Area terrestrial

+
+ +
+
+
+
+ +
+
+

+ + <%= @presenter.percentage_pa_land_cover.round(2) %>% + + coverage +

+
+ +
+

+ + <%= commaify @presenter.pa_land_area.round(0) %> km2 + + Land Area Protected +

+

+ + <%= commaify @presenter.land_area.round(0) %> km2 + + Total Land Area +

+

+ + <%#= commaify @presenter.percentage_nr_land_cover.round(0) %>XX% + + <%#= @presenter.nr_version %>Xth National Report Coverage +

+
+ + <% if has_pame_statistics_for(@presenter, :land) %> +
+

+ + + <%= @presenter.pame_statistic.pame_percentage_pa_land_cover.round(2) %>% + + with management effectiveness evaluation +

+

+ + <%= commaify @presenter.pame_statistic.pame_pa_land_area %> km2 + + Area Assessed +

+
+ <% end %> +
+
+
\ No newline at end of file diff --git a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb new file mode 100644 index 000000000..7adbed792 --- /dev/null +++ b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb @@ -0,0 +1,62 @@ +
+
+ "/> +

Area marine

+
+ +
+
+
+
+ +
+
+

+ + <%= @presenter.percentage_pa_marine_cover.round(2) %>% + + coverage +

+
+ +
+

+ + <%= commaify @presenter.pa_marine_area.round(0) %> km2 + + Marine Area Protected +

+

+ + <%= commaify @presenter.marine_area.round(0) %> km2 + + Total Marine Area +

+

+ + <%#= commaify @presenter.percentage_nr_marine_cover.round(0) %>XX% + + <%#= @presenter.nr_version %>Xth National Report Coverage +

+
+ + <% if has_pame_statistics_for(@presenter, :marine) %> +
+

+ + + <%= @presenter.pame_statistic.pame_percentage_pa_marine_cover.round(2) %>% + + with management effectiveness evaluation +

+

+ + <%= commaify @presenter.pame_statistic.pame_pa_marine_area %> km2 + + Area Assessed +

+
+ <% end %> +
+
+
\ No newline at end of file diff --git a/db b/db index 7f586c13f..2e23d0c56 160000 --- a/db +++ b/db @@ -1 +1 @@ -Subproject commit 7f586c13fad86e3440ad9f8081b9b76f09c0cdd8 +Subproject commit 2e23d0c561fe92b45c31368dcad98c094cda8f23 From 3f8839447cb91748e2c90d1d3301036eabe1dae4 Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Tue, 30 Jul 2019 14:50:22 +0100 Subject: [PATCH 02/27] Mobile styling --- .../stylesheets/organisms/stats-card.scss | 43 ++--- .../resources/_base-variables.scss | 159 ++++++++++++++++++ .../stats/facts/_coverage_stats_land.html.erb | 4 +- 3 files changed, 178 insertions(+), 28 deletions(-) create mode 100644 app/assets/stylesheets/resources/_base-variables.scss diff --git a/app/assets/stylesheets/organisms/stats-card.scss b/app/assets/stylesheets/organisms/stats-card.scss index 4f72250d4..41f6fea3b 100644 --- a/app/assets/stylesheets/organisms/stats-card.scss +++ b/app/assets/stylesheets/organisms/stats-card.scss @@ -9,30 +9,11 @@ $stat-colour-marine-light: lighten($blue--light, 15%); //-------------------------------------------------- // mixins //-------------------------------------------------- -@mixin card-row() { - display: flex; - @include flex-column; - @include flex-wrap; - - @include breakpoint($small){ - @include flex-row; - @include flex-nowrap; - @include flex-h-between; - } -} - -@mixin card-element() { - margin: rem-calc(0 0 10 0); - width: 30%; - - &:last-child { - @include breakpoint($small) { margin-right: auto; } - } -} - @mixin card-infographic($size, $bg-color: $grey-100, $fill-color: $green) { @include flex-h-start(); + @include flex-no-shrink(); background-color: $bg-color; + margin-bottom: rem-calc(16); width: rem-calc($size); height: rem-calc($size); position: relative; @@ -76,7 +57,8 @@ $stat-colour-marine-light: lighten($blue--light, 15%); &__body { @include flex-h-start; - @include flex-nowrap; + @include flex-wrap; + @include responsive-styles(flex-wrap, wrap, wrap, nowrap); display: flex; } @@ -86,14 +68,23 @@ $stat-colour-marine-light: lighten($blue--light, 15%); } &__row { - @include card-row(); + display: flex; + @include flex-column; + @include flex-wrap; + + @include breakpoint($small){ + @include flex-row; + @include flex-nowrap; + @include flex-h-between; + } } &__element { - @include card-element(); + @include responsive-styles(width, 100%, 30%, 30%); + margin: rem-calc(0 0 10 0); - &--push-right { - margin-right: rem-calc(40); + &:last-child { + @include breakpoint($small) { margin-right: auto; } } } diff --git a/app/assets/stylesheets/resources/_base-variables.scss b/app/assets/stylesheets/resources/_base-variables.scss new file mode 100644 index 000000000..7beec773d --- /dev/null +++ b/app/assets/stylesheets/resources/_base-variables.scss @@ -0,0 +1,159 @@ +//-------------------------------------------------- +// variables +//-------------------------------------------------- +// - borders +// - colours +// - buttons +// - shadows +// - fonts +// - breakpoints +// - z-indices +// - dimensions +// - padding +// - tables +// - topbars and footers +// - branding + +//-------------------------------------------------- +// borders +//-------------------------------------------------- +// $border-width-thin: rem-calc(1); +// $border-width-regular: rem-calc(2); + +// $border-thin: solid $border-width-thin; +// $border-regular: solid $border-width-regular; + +//-------------------------------------------------- +// colours +//-------------------------------------------------- +// $white: #ffffff; +// $black: #000000; + +// $grey-light: #e1e1e1; +// $grey: #bdbcbc; + +// $blue-xdark: #002034; +// $blue-dark: #002944; +// $blue: #033250; +// $blue-light: #2B678D; +// $blue-grey: #264152; + +// $green: #71BE63; + +// $primary: $blue-dark; + +// $accent-light: lighten($green, 15%); +// $accent: $green; + +//-------------------------------------------------- +// buttons +//-------------------------------------------------- +// $button-radius: 2em; +// $button-font-size: rem-calc(25); +// $button-default-color: $grey; + +// $button-padding-small: rem-calc(12 15); +// $button-padding-medium: rem-calc(20 30); + +//-------------------------------------------------- +// shadows +//-------------------------------------------------- +// $shadow-light: rem-calc(0 1 2 1) rgba($black, 0.3); +// $shadow-dark: rem-calc(2 3 3 2) rgba($black, 0.5); + +//-------------------------------------------------- +// fonts +//-------------------------------------------------- +// $body-font: 'Open Sans', sans-serif; +// $body-font-color: $black; + +// $thin: 100; +// $light: 300; +// $regular: 400; +// $bold: 500; +// $semi-bold: 600; +// $bolder: 700; + +// $line-height-headings: 1.25; +// $line-height-p: 1.3; + +//-------------------------------------------------- +// breakpoints +//-------------------------------------------------- +// must be in px not rem! +$small: 720; +$medium: 1024; //ipad +$large: 1440; + +@mixin responsive-styles ($property, $mobile, $tablet, $laptop) { + #{$property}: $mobile; + + @include breakpoint($small) { #{$property}: $tablet; } + @include breakpoint($medium) { #{$property}: $laptop; } +} + +//-------------------------------------------------- +// z-indices +//-------------------------------------------------- +// $z-100: 100; +// $z-200: 200; +// $z-300: 300; + +//-------------------------------------------------- +// padding +//-------------------------------------------------- +// $gutter-small: rem-calc(16); +// $gutter-medium: rem-calc(24); +// $gutter-large: rem-calc(32); + +// $container-width-small: rem-calc(600); +// $container-width-medium: rem-calc(1120); +// $container-width-large: rem-calc(800); + +// $page-padding-top-small: rem-calc(16); +// $page-padding-top-medium: rem-calc(24); +// $page-padding-top-large: rem-calc(100); + +// $page-padding-bottom-small: rem-calc(32); +// $page-padding-bottom-medium: rem-calc(60); +// $page-padding-bottom-large: rem-calc(80); + +// $section-padding-top-small: rem-calc(20); +// $section-padding-top-medium: rem-calc(40); +// $section-padding-top-large: rem-calc(40); + +// $section-padding-bottom-small: rem-calc(30); +// $section-padding-bottom-medium: rem-calc(60); +// $section-padding-bottom-large: rem-calc(60); + +// $item-spacing-small: rem-calc(14); +// $item-spacing-medium: rem-calc(20); +// $item-spacing-large: rem-calc(32); +// $item-spacing-xlarge: rem-calc(56); + +//-------------------------------------------------- +// dimensions +//-------------------------------------------------- +// $site-width-min: rem-calc(1440); //13" macbook +// $site-width: $large; +// $site-width-medium-tablet: 80%; +// $site-width-medium-laptop: 78%; +// $site-width-medium-desktop: 62%; + +//-------------------------------------------------- +// tables +//-------------------------------------------------- +// $collapse-table-borders: true; +// $table-cell-padding: rem-calc(8); + +//-------------------------------------------------- +// topbars and footers +//-------------------------------------------------- +// $navbar-height-small: rem-calc(90); +// $topbar-height-laptop: rem-calc(90); +// $topbar-height-desktop: rem-calc(118); + +//-------------------------------------------------- +// branding +//-------------------------------------------------- +// $unepwcmc-w-to-h-ratio: 118/27; diff --git a/app/views/shared/stats/facts/_coverage_stats_land.html.erb b/app/views/shared/stats/facts/_coverage_stats_land.html.erb index 0543f95eb..f0a25ed3c 100644 --- a/app/views/shared/stats/facts/_coverage_stats_land.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_land.html.erb @@ -9,7 +9,7 @@
-
+

@@ -18,7 +18,7 @@ coverage

- +

From 42f404454006bf847c2005c8c08c4f4bddf8fba9 Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Tue, 30 Jul 2019 15:01:14 +0100 Subject: [PATCH 03/27] Add in link for national report --- app/assets/stylesheets/helpers/_helpers.scss | 148 ++++++++++++++++++ app/helpers/countries_helper.rb | 4 - .../stats/facts/_coverage_stats.html.erb | 6 +- 3 files changed, 149 insertions(+), 9 deletions(-) create mode 100644 app/assets/stylesheets/helpers/_helpers.scss diff --git a/app/assets/stylesheets/helpers/_helpers.scss b/app/assets/stylesheets/helpers/_helpers.scss new file mode 100644 index 000000000..3a20ab483 --- /dev/null +++ b/app/assets/stylesheets/helpers/_helpers.scss @@ -0,0 +1,148 @@ +//-------------------------------------------------- +// helpers +//-------------------------------------------------- +// - fouc +// - font +// - lists +// - display +// - dimensions +// - positioning +// - margin & padding +// - backgrounds +// - user interaction +// - shapes +// +//-------------------------------------------------- +// fouc (flash of unstyled content) +//-------------------------------------------------- +[v-cloak] { display: none; } + +//-------------------------------------------------- +// font +//-------------------------------------------------- +.red { color: red; } +.bold { font-weight: bold; } + +//-------------------------------------------------- +// lists +//-------------------------------------------------- +.ul--inline li { display: inline-block; } + +//-------------------------------------------------- +// display +//-------------------------------------------------- +.block { display: block; } +.inline-block { display: inline-block; } + +.full-height { + height: 100vh; +} + +//-------------------------------------------------- +// positioning +//-------------------------------------------------- +.text-center { text-align: center; } +.text-right { text-align: right; } +.text-left { text-align: left; } + +.relative { position: relative; } + +.bottom-right { + position: absolute; + bottom: 0; + right: 0; +} + +.center-right { + position: absolute; + top: 50%; + right: 0; + + transform: translate(0, -50%); +} + +.top-right { + position: absolute; + top: 0; + right: 0; +} + +//-------------------------------------------------- +// margin & padding +//-------------------------------------------------- +.no-margin--top { margin-top: 0; } +.no-margin { margin: 0; } +.margin-center { margin: 0 auto; } + +.margin-space--right { margin-right: rem-calc(14); } +.margin-space--left { margin-left: rem-calc(14); } + +//-------------------------------------------------- +// backgrounds +//-------------------------------------------------- +$image-placeholder: black; + +.bg-img { + background-color: $image-placeholder; + background-size: cover; + background-position: center; +} + +.bg-image-overlay { + position: relative; + z-index: 1; + + &:before { + background-color: rgba(black, 0.4); + content: ''; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: -1; + } +} + +//-------------------------------------------------- +// screen overlay +//-------------------------------------------------- +.screen-overlay { + background: rgba(black, 0.5); + + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 300; +} + +//-------------------------------------------------- +// user interaction +//-------------------------------------------------- +.no-select { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.hover--pointer { + &:hover { + cursor: pointer; + } +} + +.screen-reader { + border: 0; + clip: rect(0 0 0 0); + height: rem-calc(1); + margin: rem-calc(-1); + overflow: hidden; + padding: 0; + position: absolute; + white-space: nowrap; + width: rem-calc(1); +} diff --git a/app/helpers/countries_helper.rb b/app/helpers/countries_helper.rb index b44599664..98000f6f7 100644 --- a/app/helpers/countries_helper.rb +++ b/app/helpers/countries_helper.rb @@ -3,10 +3,6 @@ def is_malaysia? @country && @country.iso_3 == "MYS" end - def is_japan? - @country && @country.iso_3 == "JPN" - end - def has_restricted_sites? restricted_iso3 = ["RUS", "EST", "CHN", "GBR"] diff --git a/app/views/shared/stats/facts/_coverage_stats.html.erb b/app/views/shared/stats/facts/_coverage_stats.html.erb index 27c78e3b2..22f5bd978 100644 --- a/app/views/shared/stats/facts/_coverage_stats.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats.html.erb @@ -14,11 +14,7 @@ Warning: These statistics might differ from those reported officially by countries due to difference in methodologies and datasets used to assess protected area coverage and differences in the base maps used to measure - terrestrial and marine area of a country or territory. - - <% if is_japan? %> - Download Japan’s fifth national report (pdf). - <% end %> + terrestrial and marine area of a country or territory. @FERDI UNCOMMENT THIS LINK WHEN YOU HAVE THE CSV <%#= link_to "Download the country's latest national report (pdf)", @country.name, title: "Dowload the national report for #{@country.name}", class: 'link-with-icon bold' %>

<% if has_restricted_sites? %>

From a463f8113466c1081e31b8149babc4d5a87b1b4c Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Tue, 30 Jul 2019 16:39:31 +0100 Subject: [PATCH 04/27] Update other sections of the page that are affected by the styles that have been changed --- app/assets/stylesheets/application.scss | 6 +- app/assets/stylesheets/helpers/_helpers.scss | 2 + .../stylesheets/organisms/stats-card.scss | 59 +++++++++---------- .../resources/_base-variables.scss | 12 ++-- .../stylesheets/utilities/responsive.scss | 40 ++++++++----- app/assets/stylesheets/variables/colors.scss | 2 - .../country/facts/_pame_statistics.html.erb | 30 ---------- .../stats/facts/_coverage_stats_land.html.erb | 14 ++--- .../facts/_coverage_stats_marine.html.erb | 14 ++--- .../stats/facts/_number_of_pas.html.erb | 14 ++++- .../facts/_polygons_points_ratio.html.erb | 22 ++++--- 11 files changed, 103 insertions(+), 112 deletions(-) delete mode 100644 app/views/country/facts/_pame_statistics.html.erb diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index e87219433..eb7ab57bf 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -22,12 +22,10 @@ @import './variables/*'; -@import './helpers/*'; - @import './utilities/*'; @import './atoms/*'; -// @import './molecules/*'; +@import './organisms/*'; -@import './organisms/*'; \ No newline at end of file +@import './helpers/*'; \ No newline at end of file diff --git a/app/assets/stylesheets/helpers/_helpers.scss b/app/assets/stylesheets/helpers/_helpers.scss index 3a20ab483..da108fa72 100644 --- a/app/assets/stylesheets/helpers/_helpers.scss +++ b/app/assets/stylesheets/helpers/_helpers.scss @@ -77,6 +77,8 @@ .margin-space--right { margin-right: rem-calc(14); } .margin-space--left { margin-left: rem-calc(14); } +.no-padding { padding: 0; } + //-------------------------------------------------- // backgrounds //-------------------------------------------------- diff --git a/app/assets/stylesheets/organisms/stats-card.scss b/app/assets/stylesheets/organisms/stats-card.scss index 41f6fea3b..4b3fc82a6 100644 --- a/app/assets/stylesheets/organisms/stats-card.scss +++ b/app/assets/stylesheets/organisms/stats-card.scss @@ -6,6 +6,18 @@ $stat-colour-land-light: lighten($brown, 15%); $stat-colour-marine: $blue--light; $stat-colour-marine-light: lighten($blue--light, 15%); +$card-number-config: ( + (primary, $primary, xxxxlarge, bold), + (primary, $primary, xlarge, bold), + (primary-dark, $primary-dark, xlarge, bold), + (land, $stat-colour-land, medium, bold), + (land, $stat-colour-land, xxlarge, bold), + (land-light, $stat-colour-land-light, medium, bold), + (marine, $stat-colour-marine, xxlarge, bold), + (marine, $stat-colour-marine, medium, bold), + (marine-light, $stat-colour-marine-light, medium, bold) +); + //-------------------------------------------------- // mixins //-------------------------------------------------- @@ -27,12 +39,19 @@ $stat-colour-marine-light: lighten($blue--light, 15%); } } -@mixin card-number($color: $grey-66, $font-size: medium, $font-weight: bold) { - @include text--alt($font-size, $font-weight); - color: $color; - display: block; +@mixin card-numbers ($config) { + @each $name, $colour, $font-size, $font-weight in $config { + + &__number--#{$font-size}-#{$name} { + color: $colour; + @include text--alt($font-size, $font-weight); + + display: block; + } + } } + //-------------------------------------------------- // classes //-------------------------------------------------- @@ -51,10 +70,6 @@ $stat-colour-marine-light: lighten($blue--light, 15%); } .card { - &--land { - - } - &__body { @include flex-h-start; @include flex-wrap; @@ -67,6 +82,10 @@ $stat-colour-marine-light: lighten($blue--light, 15%); margin-right: rem-calc(16); } + &__column-2 { + flex-grow: 1; + } + &__row { display: flex; @include flex-column; @@ -96,29 +115,7 @@ $stat-colour-marine-light: lighten($blue--light, 15%); @include card-infographic(100, $bg-color: $grey-15, $fill-color: $stat-colour-marine); } - &__number--land { - @include card-number($stat-colour-land); - } - - &__number--land-light { - @include card-number($stat-colour-land-light); - } - - &__number--marine { - @include card-number($stat-colour-marine); - } - - &__number--marine-light { - @include card-number($stat-colour-marine-light); - } - - &__number--large-land { - @include card-number($stat-colour-land, xxlarge, bold); - } - - &__number--large-marine { - @include card-number($stat-colour-marine, xxlarge, bold); - } + @include card-numbers($card-number-config); } } } \ No newline at end of file diff --git a/app/assets/stylesheets/resources/_base-variables.scss b/app/assets/stylesheets/resources/_base-variables.scss index 7beec773d..73de861b0 100644 --- a/app/assets/stylesheets/resources/_base-variables.scss +++ b/app/assets/stylesheets/resources/_base-variables.scss @@ -38,9 +38,11 @@ // $blue-light: #2B678D; // $blue-grey: #264152; -// $green: #71BE63; +$green: #71a32b; +$green--darker: #415519; -// $primary: $blue-dark; +$primary: $green; +$primary-dark: $green--darker; // $accent-light: lighten($green, 15%); // $accent: $green; @@ -81,9 +83,9 @@ // breakpoints //-------------------------------------------------- // must be in px not rem! -$small: 720; -$medium: 1024; //ipad -$large: 1440; +$small: 628; //mobile +$medium: 763; //tablet portrait +$large: 1024; //tablet landscape @mixin responsive-styles ($property, $mobile, $tablet, $laptop) { #{$property}: $mobile; diff --git a/app/assets/stylesheets/utilities/responsive.scss b/app/assets/stylesheets/utilities/responsive.scss index baca993bd..9d9c9be74 100644 --- a/app/assets/stylesheets/utilities/responsive.scss +++ b/app/assets/stylesheets/utilities/responsive.scss @@ -1,3 +1,27 @@ +//-------------------------------------------------- +// mixins +//-------------------------------------------------- +@mixin breakpoint($breakpoint) { + @media screen and (min-width: $breakpoint + 1px) { + @content; + } +} + +@mixin breakpoint-down($breakpoint) { + @media screen and (max-width: $breakpoint) { + @content; + } +} + +@mixin between($breakpoint_1, $breakpoint_2) { + @media screen and (max-width: $breakpoint_2) and (min-width: $breakpoint_1 + 1px) { + @content; + } +} + +//-------------------------------------------------- +// mixins - old +//-------------------------------------------------- //keep old responsive mixins with old breakpoints to avoid breaking styles across the existing site @mixin only-mobile { @@ -10,20 +34,4 @@ @media only screen and (min-width: 768px) { @content; } -} - -//---------------------------------------- -// breakpoint variables -//---------------------------------------- -$small: rem-calc(628); //mobile -$medium: rem-calc(763); //tablet portrait -$large: rem-calc(1024); //tablet landscape - -//---------------------------------------- -// responsive mixins -//---------------------------------------- -@mixin breakpoint($breakpoint){ - @media only screen and (min-width: $breakpoint + 1) { - @content; - } } \ No newline at end of file diff --git a/app/assets/stylesheets/variables/colors.scss b/app/assets/stylesheets/variables/colors.scss index 31c9c2876..b543949e7 100644 --- a/app/assets/stylesheets/variables/colors.scss +++ b/app/assets/stylesheets/variables/colors.scss @@ -3,9 +3,7 @@ $grey-blue: #848184; $blue: #317fce; // green palette -$green: #71a32b; $green--dark: #699728; -$green--darker: #415519; $green--light: #83af46; $green--lighter: #e3edd5; $brown: #702412; diff --git a/app/views/country/facts/_pame_statistics.html.erb b/app/views/country/facts/_pame_statistics.html.erb deleted file mode 100644 index 325eefb29..000000000 --- a/app/views/country/facts/_pame_statistics.html.erb +++ /dev/null @@ -1,30 +0,0 @@ -

-

- Protected Area Management Effectiveness (PAME) - (Ref 2 ↓ ) -

-
-
-

<%= "#{(@pame_statistics.average_score*100).round(1)}%" rescue "N/A" %>

- - Overall average score. This is an average against 36 separate indicators of management effectiveness. - -
- -
-
-

<%= "#{(@pame_statistics.total_area_assessed).round(2)}km2" rescue "N/A" %>

- of land assessed -
-
-

<%= @pame_statistics.assessments || "N/A" %>

- PAME assessments undertaken -
-
-

<%= @pame_statistics.assessed_pas || "N/A" %>

- Protected areas assessed -
-
-
-
- diff --git a/app/views/shared/stats/facts/_coverage_stats_land.html.erb b/app/views/shared/stats/facts/_coverage_stats_land.html.erb index f0a25ed3c..6302faddf 100644 --- a/app/views/shared/stats/facts/_coverage_stats_land.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_land.html.erb @@ -9,10 +9,10 @@
-
+

- + <%= @presenter.percentage_pa_land_cover.round(2) %>% coverage @@ -21,19 +21,19 @@

- + <%= commaify @presenter.pa_land_area.round(0) %> km2 Land Area Protected

- + <%= commaify @presenter.land_area.round(0) %> km2 Total Land Area

- + <%#= commaify @presenter.percentage_nr_land_cover.round(0) %>XX% <%#= @presenter.nr_version %>Xth National Report Coverage @@ -43,14 +43,14 @@ <% if has_pame_statistics_for(@presenter, :land) %>

- + <%= @presenter.pame_statistic.pame_percentage_pa_land_cover.round(2) %>% with management effectiveness evaluation

- + <%= commaify @presenter.pame_statistic.pame_pa_land_area %> km2 Area Assessed diff --git a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb index 7adbed792..59e5c2866 100644 --- a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb @@ -9,10 +9,10 @@

-
+

- + <%= @presenter.percentage_pa_marine_cover.round(2) %>% coverage @@ -21,19 +21,19 @@

- + <%= commaify @presenter.pa_marine_area.round(0) %> km2 Marine Area Protected

- + <%= commaify @presenter.marine_area.round(0) %> km2 Total Marine Area

- + <%#= commaify @presenter.percentage_nr_marine_cover.round(0) %>XX% <%#= @presenter.nr_version %>Xth National Report Coverage @@ -43,14 +43,14 @@ <% if has_pame_statistics_for(@presenter, :marine) %>

- + <%= @presenter.pame_statistic.pame_percentage_pa_marine_cover.round(2) %>% with management effectiveness evaluation

- + <%= commaify @presenter.pame_statistic.pame_pa_marine_area %> km2 Area Assessed diff --git a/app/views/shared/stats/facts/_number_of_pas.html.erb b/app/views/shared/stats/facts/_number_of_pas.html.erb index ca2311204..856414e4a 100644 --- a/app/views/shared/stats/facts/_number_of_pas.html.erb +++ b/app/views/shared/stats/facts/_number_of_pas.html.erb @@ -1,7 +1,15 @@

Number of Protected areas

-

<%= spaceify(location.protected_areas.count) %>

-

<%= spaceify(location.protected_areas.with_pame_evaluations.count) %>

- with management effectiveness evaluations +
+

<%= spaceify(location.protected_areas.count) %>

+ +

+ + + <%= spaceify(location.protected_areas.with_pame_evaluations.count) %> + + with management effectiveness evaluations +

+
diff --git a/app/views/shared/stats/facts/_polygons_points_ratio.html.erb b/app/views/shared/stats/facts/_polygons_points_ratio.html.erb index 676fe7dcf..1861e9caa 100644 --- a/app/views/shared/stats/facts/_polygons_points_ratio.html.erb +++ b/app/views/shared/stats/facts/_polygons_points_ratio.html.erb @@ -1,16 +1,24 @@

Polygons/Points ratio

-
+
-
-

<%= @presenter.geometry_ratio[:polygons] %>%

- Polygons +
+

+ + <%= @presenter.geometry_ratio[:polygons] %>% + + Polygons +

-
-

<%= @presenter.geometry_ratio[:points] %>%

- Points +
+

+ + <%= @presenter.geometry_ratio[:points] %>% + + Points +

From 44de1cb97f9a1a44f6818256fc3ba7bd5d9a4b90 Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Wed, 31 Jul 2019 13:47:28 +0100 Subject: [PATCH 05/27] Fix up PDF components for the country page --- app/controllers/country_controller.rb | 1 + app/views/country/_hero.html.erb | 37 +++++++---- app/views/country/pdf.html.erb | 2 +- app/views/country/pdf/_factsheet.html.erb | 9 +-- app/views/country/pdf/_hero.html.erb | 8 --- .../pdf/facts/_coverage_stats.html.erb | 65 ------------------- .../country/pdf/facts/_number_of_pas.html.erb | 4 -- .../pdf/facts/_polygons_points_ratio.html.erb | 17 ----- .../stats/facts/_coverage_stats.html.erb | 12 ++-- 9 files changed, 37 insertions(+), 118 deletions(-) delete mode 100644 app/views/country/pdf/_hero.html.erb delete mode 100644 app/views/country/pdf/facts/_coverage_stats.html.erb delete mode 100644 app/views/country/pdf/facts/_number_of_pas.html.erb delete mode 100644 app/views/country/pdf/facts/_polygons_points_ratio.html.erb diff --git a/app/controllers/country_controller.rb b/app/controllers/country_controller.rb index fe2d8ed62..ddbe98246 100644 --- a/app/controllers/country_controller.rb +++ b/app/controllers/country_controller.rb @@ -17,6 +17,7 @@ def show end def pdf + @for_pdf = true end def codes diff --git a/app/views/country/_hero.html.erb b/app/views/country/_hero.html.erb index 253e48f21..d53074008 100644 --- a/app/views/country/_hero.html.erb +++ b/app/views/country/_hero.html.erb @@ -1,19 +1,29 @@ -
-
"> -

"> - <%= @country.name %>, - - <%= link_to @country.region.name, region_path(@country.region.iso) %> - +<% if @for_pdf %> + +
+

+ <%= @country.name %>, + <%= @country.region.name %>

- <% unless @for_pdf %> +
+ +<% else %> + +
+
+

+ <%= @country.name %>, + + <%= link_to @country.region.name, region_path(@country.region.iso) %> + +

+ - <% end %> -
- <% unless @for_pdf %> +

+
@@ -23,5 +33,6 @@ city or area or of its authorities, or concerning the delimitation of its frontiers or boundaries.
- <% end %> -
+
+ +<% end %> \ No newline at end of file diff --git a/app/views/country/pdf.html.erb b/app/views/country/pdf.html.erb index c681d2637..7ff73942d 100644 --- a/app/views/country/pdf.html.erb +++ b/app/views/country/pdf.html.erb @@ -1,5 +1,5 @@
- <%= render "country/pdf/hero" %> + <%= render "country/hero" %> <%= render "country/pdf/factsheet" %> <%= render "country/pdf/info_box" %>
diff --git a/app/views/country/pdf/_factsheet.html.erb b/app/views/country/pdf/_factsheet.html.erb index b759e39a3..b36443cd7 100644 --- a/app/views/country/pdf/_factsheet.html.erb +++ b/app/views/country/pdf/_factsheet.html.erb @@ -1,9 +1,9 @@
- <%= render "country/pdf/facts/number_of_pas" %> + <%= render "shared/stats/facts/number_of_pas", {location: @country} %>
- <%= render "country/pdf/facts/polygons_points_ratio" %> + <%= render "shared/stats/facts/polygons_points_ratio" %>
@@ -17,10 +17,7 @@
- <%= render "country/pdf/facts/coverage_stats" %> - <% if @pame_statistics && Rails.application.secrets.show_pame_statistics %> - <%= render "country/pdf/facts/pame_statistics" %> - <% end %> + <%= render "shared/stats/facts/coverage_stats" %> <%= render "country/pdf/facts/related_countries" %>
diff --git a/app/views/country/pdf/_hero.html.erb b/app/views/country/pdf/_hero.html.erb deleted file mode 100644 index d5da9ba91..000000000 --- a/app/views/country/pdf/_hero.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -
-
-

- <%= @country.name %>, <%= @country.region.name %> -

-
-
- diff --git a/app/views/country/pdf/facts/_coverage_stats.html.erb b/app/views/country/pdf/facts/_coverage_stats.html.erb deleted file mode 100644 index fea79bb92..000000000 --- a/app/views/country/pdf/facts/_coverage_stats.html.erb +++ /dev/null @@ -1,65 +0,0 @@ -
-

- Protected areas coverage - (Ref 1 ↓ ) -

-
- -
-
-

Area terrestrial

-
- -
-
-
-
- -
-

<%= @presenter.percentage_pa_land_cover.round(2) %>%

- coverage -
-
-

<%= commaify @presenter.pa_land_area %> km2

- Land Area Protected -
-
-

<%= commaify @presenter.land_area %> km2

- Total Land Area -
-
-

<%= commaify @presenter.land_area %>%

- 5th National Report Coverage -
-
-
- -
-
-

Area marine

-
-
-
-
-

<%= @presenter.percentage_pa_marine_cover.round(2) %>%

- coverage -
-
-

<%= commaify @presenter.pa_marine_area %> km2

- Marine Area Protected -
-
-

<%= commaify @presenter.marine_area %> km2

- Total Marine Area -
-
-
- -

- Warning: These statistics might differ from those reported officially by - countries due to difference in methodologies and datasets used to assess - protected area coverage and differences in the base maps used to measure - terrestrial and marine area of a country or territory. -

-
-
diff --git a/app/views/country/pdf/facts/_number_of_pas.html.erb b/app/views/country/pdf/facts/_number_of_pas.html.erb deleted file mode 100644 index 2c143b18e..000000000 --- a/app/views/country/pdf/facts/_number_of_pas.html.erb +++ /dev/null @@ -1,4 +0,0 @@ -
-

Number of Protected areas

-

<%= spaceify(@country.protected_areas.count) %>

-
diff --git a/app/views/country/pdf/facts/_polygons_points_ratio.html.erb b/app/views/country/pdf/facts/_polygons_points_ratio.html.erb deleted file mode 100644 index 329ff20d2..000000000 --- a/app/views/country/pdf/facts/_polygons_points_ratio.html.erb +++ /dev/null @@ -1,17 +0,0 @@ -
-

Polygons/Points ratio

- -
-
-
-
-

<%= @presenter.geometry_ratio[:polygons] %>%

- Polygons -
-
-

<%= @presenter.geometry_ratio[:points] %>%

- Points -
-
-
-
diff --git a/app/views/shared/stats/facts/_coverage_stats.html.erb b/app/views/shared/stats/facts/_coverage_stats.html.erb index 22f5bd978..dc366352c 100644 --- a/app/views/shared/stats/facts/_coverage_stats.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats.html.erb @@ -14,14 +14,18 @@ Warning: These statistics might differ from those reported officially by countries due to difference in methodologies and datasets used to assess protected area coverage and differences in the base maps used to measure - terrestrial and marine area of a country or territory. @FERDI UNCOMMENT THIS LINK WHEN YOU HAVE THE CSV <%#= link_to "Download the country's latest national report (pdf)", @country.name, title: "Dowload the national report for #{@country.name}", class: 'link-with-icon bold' %> + terrestrial and marine area of a country or territory. <% unless @for_pdf %>@FERDI UNCOMMENT THIS LINK WHEN YOU HAVE THE CSV <%#= link_to "Download the country's latest national report (pdf)", @country.name, title: "Dowload the national report for #{@country.name}", class: 'link-with-icon bold' %><% end %>

+ <% if has_restricted_sites? %>

Part of the protected areas dataset for <%= @country.name %> is restricted.

<% end %> -

- Learn how we calculate protected area coverage statistics -

+ + <% unless @for_pdf %> +

+ Learn how we calculate protected area coverage statistics +

+ <% end %>
From 535bc14f78f515d6039e1d782a08bbc6fd3b8c1a Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Thu, 1 Aug 2019 15:36:36 +0100 Subject: [PATCH 06/27] Dynamically add methods to fetch nr fields --- app/presenters/statistic_presenter.rb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/presenters/statistic_presenter.rb b/app/presenters/statistic_presenter.rb index 53e1d71d1..b4e47809d 100644 --- a/app/presenters/statistic_presenter.rb +++ b/app/presenters/statistic_presenter.rb @@ -31,10 +31,12 @@ def method_missing method @model.send(method) rescue (@statistic.send(method) || 0) rescue 0 end - ["land", "marine"].each do |type| - stat = "percentage_pa_#{type}_cover".to_sym - define_method(stat) do - (@statistic.send(stat) && @statistic.send(stat) > 100.0) ? 100.0 : (@statistic.send(stat) || 0) rescue 0 + ["land", "marine"].each do |land_type| + ["pa", "nr"].each do |field_type| + stat = "percentage_#{field_type}_#{land_type}_cover".to_sym + define_method(stat) do + (@statistic.send(stat) && @statistic.send(stat) > 100.0) ? 100.0 : (@statistic.send(stat) || 0) rescue 0 + end end end From 349d5f3257306cd75267ba2e3af2ce01d61a9c80 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Thu, 1 Aug 2019 16:46:45 +0100 Subject: [PATCH 07/27] Update views to use the stats presenter --- .../shared/stats/facts/_coverage_stats.html.erb | 4 ++-- .../shared/stats/facts/_coverage_stats_land.html.erb | 12 ++++++------ .../stats/facts/_coverage_stats_marine.html.erb | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/app/views/shared/stats/facts/_coverage_stats.html.erb b/app/views/shared/stats/facts/_coverage_stats.html.erb index dc366352c..31617f87b 100644 --- a/app/views/shared/stats/facts/_coverage_stats.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats.html.erb @@ -5,7 +5,7 @@
- <%= render partial: 'shared/stats/facts/coverage_stats_land' %> + <%= render partial: 'shared/stats/facts/coverage_stats_land' %> <%= render partial: 'shared/stats/facts/coverage_stats_marine' %>
@@ -14,7 +14,7 @@ Warning: These statistics might differ from those reported officially by countries due to difference in methodologies and datasets used to assess protected area coverage and differences in the base maps used to measure - terrestrial and marine area of a country or territory. <% unless @for_pdf %>@FERDI UNCOMMENT THIS LINK WHEN YOU HAVE THE CSV <%#= link_to "Download the country's latest national report (pdf)", @country.name, title: "Dowload the national report for #{@country.name}", class: 'link-with-icon bold' %><% end %> + terrestrial and marine area of a country or territory. <% unless @for_pdf %> <%= link_to "Download the country's latest national report (pdf)", @presenter.nr_report_url, title: "Dowload the national report for #{@country.name}", class: 'link-with-icon bold' %><% end %>

<% if has_restricted_sites? %> diff --git a/app/views/shared/stats/facts/_coverage_stats_land.html.erb b/app/views/shared/stats/facts/_coverage_stats_land.html.erb index 6302faddf..610266b9c 100644 --- a/app/views/shared/stats/facts/_coverage_stats_land.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_land.html.erb @@ -21,22 +21,22 @@

- + <%= commaify @presenter.pa_land_area.round(0) %> km2 Land Area Protected

- + <%= commaify @presenter.land_area.round(0) %> km2 Total Land Area

- - <%#= commaify @presenter.percentage_nr_land_cover.round(0) %>XX% + + <%= commaify @presenter.percentage_nr_land_cover.round(0) %>% - <%#= @presenter.nr_version %>Xth National Report Coverage + <%= @presenter.nr_version %>th National Report Coverage

@@ -59,4 +59,4 @@ <% end %>
-
\ No newline at end of file +
diff --git a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb index 59e5c2866..2a0998b4c 100644 --- a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb @@ -34,9 +34,9 @@

- <%#= commaify @presenter.percentage_nr_marine_cover.round(0) %>XX% + <%= commaify @presenter.percentage_nr_marine_cover.round(0) %>% - <%#= @presenter.nr_version %>Xth National Report Coverage + <%= @presenter.nr_version %>th National Report Coverage

@@ -59,4 +59,4 @@ <% end %>
-
\ No newline at end of file +
From 9b048689a2553d5e1afad7fd110d27b6a0d6d2b0 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Thu, 1 Aug 2019 16:48:56 +0100 Subject: [PATCH 08/27] Commit db changes --- db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db b/db index 2e23d0c56..4286a2fe6 160000 --- a/db +++ b/db @@ -1 +1 @@ -Subproject commit 2e23d0c561fe92b45c31368dcad98c094cda8f23 +Subproject commit 4286a2fe61ba9228fb4bdf27a884f075e612631c From ddcdd839ae85c4ca5cbef5fedb026fb0f7d627f3 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Thu, 1 Aug 2019 16:49:30 +0100 Subject: [PATCH 09/27] Temporarily reference new db branch --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 162f95637..d5564d827 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "db"] path = db url = https://github.com/unepwcmc/protectedplanet-db.git - branch = develop + branch = feature/nr-stats From 884efe30617194be9bc309cdddd1cdd12c6ffee2 Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Fri, 2 Aug 2019 10:03:30 +0100 Subject: [PATCH 10/27] Add if statement for regional pages --- app/helpers/application_helper.rb | 4 ++++ .../shared/stats/facts/_coverage_stats.html.erb | 2 +- .../stats/facts/_coverage_stats_land.html.erb | 15 +++++++++------ .../stats/facts/_coverage_stats_marine.html.erb | 15 +++++++++------ 4 files changed, 23 insertions(+), 13 deletions(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index b3c64c69c..34fd318eb 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -161,4 +161,8 @@ def download_dropdown item_id, download_type, types end.join.html_safe end end + + def is_regional_page controller_name + controller_name == 'region' + end end diff --git a/app/views/shared/stats/facts/_coverage_stats.html.erb b/app/views/shared/stats/facts/_coverage_stats.html.erb index 31617f87b..70d41b648 100644 --- a/app/views/shared/stats/facts/_coverage_stats.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats.html.erb @@ -14,7 +14,7 @@ Warning: These statistics might differ from those reported officially by countries due to difference in methodologies and datasets used to assess protected area coverage and differences in the base maps used to measure - terrestrial and marine area of a country or territory. <% unless @for_pdf %> <%= link_to "Download the country's latest national report (pdf)", @presenter.nr_report_url, title: "Dowload the national report for #{@country.name}", class: 'link-with-icon bold' %><% end %> + terrestrial and marine area of a country or territory. <% unless @for_pdf || is_regional_page(controller_name) %> <%= link_to "Download the country's latest national report (pdf)", @presenter.nr_report_url, title: "Dowload the national report for #{@country.name}", class: 'link-with-icon bold' %><% end %>

<% if has_restricted_sites? %> diff --git a/app/views/shared/stats/facts/_coverage_stats_land.html.erb b/app/views/shared/stats/facts/_coverage_stats_land.html.erb index 610266b9c..9788a3a97 100644 --- a/app/views/shared/stats/facts/_coverage_stats_land.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_land.html.erb @@ -32,12 +32,15 @@ Total Land Area

-

- - <%= commaify @presenter.percentage_nr_land_cover.round(0) %>% - - <%= @presenter.nr_version %>th National Report Coverage -

+ + <% unless is_regional_page(controller_name) %> +

+ + <%= commaify @presenter.percentage_nr_land_cover.round(0) %>% + + <%= @presenter.nr_version %>th National Report Coverage +

+ <% end %>
<% if has_pame_statistics_for(@presenter, :land) %> diff --git a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb index 2a0998b4c..a1767bd69 100644 --- a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb @@ -32,12 +32,15 @@ Total Marine Area

-

- - <%= commaify @presenter.percentage_nr_marine_cover.round(0) %>% - - <%= @presenter.nr_version %>th National Report Coverage -

+ + <% unless is_regional_page(controller_name) %> +

+ + <%= commaify @presenter.percentage_nr_marine_cover.round(0) %>% + + <%= @presenter.nr_version %>th National Report Coverage +

+ <% end %> <% if has_pame_statistics_for(@presenter, :marine) %> From 7ee67b9c6ec2be77aec64b2f78e493e295d009a1 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Fri, 2 Aug 2019 11:04:07 +0100 Subject: [PATCH 11/27] Specify ubuntu 14.04 dist to be able to use ruby 2.1.2 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 2efb79094..cc349e4b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +dist: trusty language: ruby # Manually handle git submodules git: From 0105d685d084a40f6a829cff9afb2ac464f79b19 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Fri, 2 Aug 2019 11:14:48 +0100 Subject: [PATCH 12/27] Uncomment geometry concerns code --- app/models/concerns/geometry_concern.rb | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/app/models/concerns/geometry_concern.rb b/app/models/concerns/geometry_concern.rb index afdb803b0..b6cdfca65 100644 --- a/app/models/concerns/geometry_concern.rb +++ b/app/models/concerns/geometry_concern.rb @@ -12,16 +12,14 @@ def geometry_columns end def bounds - # rgeo_factory = RGeo::Geos.factory srid: 4326 - # bounds = RGeo::Cartesian::BoundingBox.new rgeo_factory - # bounds.add bounding_box + rgeo_factory = RGeo::Geos.factory srid: 4326 + bounds = RGeo::Cartesian::BoundingBox.new rgeo_factory + bounds.add bounding_box - # [ - # [bounds.min_y, bounds.min_x], - # [bounds.max_y, bounds.max_x] - # ] - - [ [0,0], [0,0] ] + [ + [bounds.min_y, bounds.min_x], + [bounds.max_y, bounds.max_x] + ] end def geojson geo_properties=nil From 5268dc27c445cc771f1da7095441f190f1a38f8b Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Fri, 2 Aug 2019 11:59:19 +0100 Subject: [PATCH 13/27] Define nr report url method to manage field correctly and fix test --- app/presenters/statistic_presenter.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/presenters/statistic_presenter.rb b/app/presenters/statistic_presenter.rb index b4e47809d..41708765e 100644 --- a/app/presenters/statistic_presenter.rb +++ b/app/presenters/statistic_presenter.rb @@ -27,6 +27,10 @@ def percentage_total_pa_cover percentage_pa_land_cover + percentage_pa_marine_cover end + def nr_report_url + @statistic.send(:nr_report_url) || '' + end + def method_missing method @model.send(method) rescue (@statistic.send(method) || 0) rescue 0 end From ceb94a43c6638923dd40adc9482aceba1df9b5ad Mon Sep 17 00:00:00 2001 From: lucacug Date: Mon, 5 Aug 2019 16:29:21 +0100 Subject: [PATCH 14/27] add august csv stats and MPA map --- CHANGELOG.md | 4 + lib/data/seeds/country_statistics.csv | 265 +- lib/data/seeds/country_statistics_old.csv | 245 + lib/data/seeds/marine_statistics.csv | 10 +- lib/data/seeds/pame_country_stats.csv | 286 +- lib/data/seeds/pame_country_stats_old.csv | 245 + lib/data/seeds/pame_data-2019-04-25.csv | 28169 ------------------- lib/data/seeds/pame_data-2019-05-30.csv | 28246 -------------------- lib/data/seeds/pame_data-2019-08-05.csv | 28173 +++++++++++++++++++ lib/modules/wdpa/pame_importer.rb | 2 +- public/MPA_Map.pdf | Bin 455140 -> 8830530 bytes public/MPA_Map_old.pdf | Bin 0 -> 455140 bytes 12 files changed, 28949 insertions(+), 56696 deletions(-) create mode 100644 lib/data/seeds/country_statistics_old.csv create mode 100644 lib/data/seeds/pame_country_stats_old.csv delete mode 100644 lib/data/seeds/pame_data-2019-04-25.csv delete mode 100644 lib/data/seeds/pame_data-2019-05-30.csv create mode 100644 lib/data/seeds/pame_data-2019-08-05.csv create mode 100644 public/MPA_Map_old.pdf diff --git a/CHANGELOG.md b/CHANGELOG.md index bddd8b61f..efd85b42c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 2.5.3 + +* Add country, pame_country and marine stats (WDPA August 2019 release). + ### 2.5.2 **Bug fixes** diff --git a/lib/data/seeds/country_statistics.csv b/lib/data/seeds/country_statistics.csv index 192a776f0..ee638c117 100644 --- a/lib/data/seeds/country_statistics.csv +++ b/lib/data/seeds/country_statistics.csv @@ -1,195 +1,196 @@ "iso3","pa_land_area","pa_marine_area","land_area","marine_area","percentage_pa_land_cover","percentage_pa_marine_cover" +"ABNJ",0,2608397.416,0,13945571.19,0,18.7041275 "ABW",35.833833,0.026514,189.420844,25213.94735,18.91757646,0.000105156 "AFG",673.16062,0,642899.1342,0,0.104707035,0 -"AGO",87506.59243,24.341169,1255217.852,493753.373,6.971426695,0.004929823 +"AGO",87506.59246,24.341169,1255217.852,493753.373,6.971426697,0.004929823 "AIA",6.274344,32.219534,85.524417,92653.59144,7.336318937,0.034774188 -"ALA",41.035664,503.943526,0,0,0,0 -"ALB",5098.516663,304.392513,28746.5563,11199.39919,17.73609544,2.717936094 +"ALA",26.105068,503.943526,0,0,0,0 +"ALB",5098.51665,304.392513,28746.5563,11199.39919,17.7360954,2.717936094 "AND",126.120308,0,471.870724,0,26.72772469,0 "ARE",12733.89139,6166.123302,70921.45739,54711.04352,17.95492064,11.2703449 -"ARG",235365.9451,41249.95469,2785327.721,1083150.624,8.450206536,3.808330418 -"ARM",6860.446492,0,29685.40559,0,23.1105028,0 +"ARG",235910.9544,41249.95469,2785327.721,1083150.624,8.469773688,3.808330418 +"ARM",6860.44649,0,29685.40559,0,23.1105028,0 "ASM",33.371984,35457.57732,210.578755,406816.029,15.84774494,8.715875183 "ATA",0,4774.711754,0,0,0,0 "ATF",7851.080041,1702574.614,7855.43,2277432,99.94462481,74.7585269 "ATG",84.536207,196.917827,455.237976,108492.3833,18.56967377,0.181503826 -"AUS",1487710.336,3014429.414,7722102.022,7432133.367,19.26561359,40.5594096 -"AUT",23829.38774,0,83912.25912,0,28.3979814,0 +"AUS",1487710.95,3014429.414,7722102.022,7432133.367,19.26562154,40.5594096 +"AUT",23936.60836,0,83912.25912,0,28.52575847,0 "AZE",8798.362587,345.314137,86639.62334,79032.11878,10.15512562,0.436928862 -"BDI",2065.705682,0,27210.87243,0,7.591471709,0 -"BEL",7634.045734,1270.104582,30683.07213,3465.140147,24.8803174,36.65377238 -"BEN",34369.0025,0,116095.3632,0,29.60411298,0 +"BDI",2065.705683,0,27210.87243,0,7.591471713,0 +"BEL",7633.716165,1270.104582,30683.07213,3465.140147,24.87924329,36.65377238 +"BEN",34369.00255,0,116095.3632,0,29.60411302,0 "BES",91.577774,2755.525866,322.852496,25112.35272,28.36520551,10.97279055 -"BFA",41157.73236,0,276403.7182,0,14.89044092,0 -"BGD",6455.725173,4530.200776,140160.1678,84563.21214,4.605962787,5.357176793 -"BGR",44996.29738,2851.951552,110862.7479,35171.8505,40.58739138,8.108619568 +"BFA",41157.73345,0,276403.7182,0,14.89044131,0 +"BGD",6455.725175,4530.200776,140160.1678,84563.21214,4.605962789,5.357176793 +"BGR",44996.29746,2851.951552,110862.7479,35171.8505,40.58739145,8.108619568 "BHR",45.481965,94.820117,686.857403,7632.763476,6.621747804,1.24227768 "BHS",4930.158571,47355.48699,13458.00624,597705.1345,36.63364754,7.922884422 "BIH",714.847791,0,51225.15128,0,1.395501571,0 "BLM",5.112058,4243.89095,25.109707,4317.87991,20.35889148,98.28645165 -"BLR",19383.06277,0,207228.0654,0,9.353493086,0 -"BLZ",8401.656832,3653.592271,22297.76618,36249.83866,37.67936557,10.07892009 +"BLR",19383.06377,0,207228.0654,0,9.353493568,0 +"BLZ",8401.612777,3653.592271,22297.76618,36249.83866,37.67916799,10.07892009 "BMU",1.507493,0.254821,72.478422,451643.6848,2.079919731,5.64208E-05 -"BOL",336405.5463,0,1089908.94,0,30.86547269,0 -"BRA",2509320.934,977792.6843,8529399.243,3672584.326,29.41966794,26.62410437 +"BOL",336406.5863,0,1089908.94,0,30.86556811,0 +"BRA",2509320.851,977792.6843,8529399.243,3672584.326,29.41966695,26.62410437 "BRB",5.640151,10.321249,444.068519,185019.8485,1.270108274,0.005578455 -"BRN",2794.368916,51.679209,5961.686662,25698.41824,46.87211983,0.201098793 -"BTN",19171.20958,0,39933.48814,0,48.00785122,0 +"BRN",2794.368892,51.679209,5961.686662,25698.41824,46.87211943,0.201098793 +"BTN",19171.20945,0,39933.48814,0,48.00785092,0 "BVT",43.986608,13.870359,50.639751,440224.3515,86.86181731,0.003150748 -"BWA",169369.7355,0,581162.9215,0,29.14324526,0 -"CAF",112827.1168,0,624568.0306,0,18.06482422,0 -"CAN",1060937.776,165665.3985,9955032.941,5698082.708,10.65730051,2.907388449 +"BWA",169369.804,0,581162.9215,0,29.14325703,0 +"CAF",112827.1169,0,624568.0306,0,18.06482422,0 +"CAN",1060926.045,165665.3985,9955032.941,5698082.708,10.65718267,2.907388449 "CCK",0,26.294478,0,470116.606,0,0.005593182 -"CHE",4131.851172,0,41355.27022,0,9.991111531,0 -"CHL",155154.8153,1506502.331,759820.962,3657313.03,20.41991772,41.19150641 -"CHN",1461511.266,47491.66492,9361608.881,878364.0892,15.61175311,5.406831347 -"CIV",74170.95794,130.372645,324107.7064,174842.1752,22.88466348,0.074565902 -"CMR",51220.8022,1685.49771,469428.0915,14704.2551,10.91132021,11.4626528 -"COD",324289.6838,31.363659,2344275.114,13265.40707,13.83326052,0.236431938 -"COG",140031.5994,1280.313272,343736.7395,39863.59306,40.73803678,3.211735756 -"COK",67.100582,1981949.229,258.141911,1972842.358,25.99367989,100 -"COL",169544.5158,124670.6807,1145032.899,730741.8263,14.80695585,17.06083821 +"CHE",4131.851171,0,41355.27022,0,9.991111529,0 +"CHL",155154.8192,1506502.331,759820.962,3657313.03,20.41991824,41.19150641 +"CHN",1461511.275,47491.66492,9361608.881,878364.0892,15.61175321,5.406831347 +"CIV",74170.95795,130.372645,324107.7064,174842.1752,22.88466349,0.074565902 +"CMR",51220.80277,1685.49771,469428.0915,14704.2551,10.91132033,11.4626528 +"COD",324289.6789,31.363659,2344275.114,13265.40707,13.83326031,0.236431938 +"COG",140031.6065,1280.313272,343736.7395,39863.59306,40.73803886,3.211735756 +"COK",67.100582,1981949.229,258.141911,1972842.358,25.99367989,100.4616117 +"COL",169544.5157,124670.6807,1145032.899,730741.8263,14.80695584,17.06083821 "COM",172.688456,37.464378,1701.123719,165505.135,10.15143426,0.022636384 "CPV",120.123431,5.423162,4148.996795,801065.1343,2.89524039,0.000676994 -"CRI",14608.17403,15061.6931,51636.14199,576110.183,28.2905993,2.614377171 +"CRI",14608.17371,15061.6931,51636.14199,576110.183,28.29059869,2.614377171 "CUB",18480.57139,15818.76605,111643.2783,365755.7493,16.55323246,4.324953491 "CUW",71.009581,11.656382,450.975385,30535.00449,15.74577757,0.038173834 "CXR",87.649012,0.753516,142.416955,330035.5,61.54394468,0.000228314 "CYM",31.133127,92.901287,289.266866,119605.4547,10.76276984,0.077673119 -"CYP",3386.08814,120.958963,9063.433945,98279.50173,37.35988104,0.123076492 +"CYP",3386.076946,120.958963,9063.433945,98279.50173,37.35975753,0.123076492 "CZE",17265.28518,0,77916.89786,0,22.15858903,0 -"DEU",135390.2648,25562.51049,357584.3854,56357.93768,37.86246558,45.35742708 +"DEU",135401.4928,25562.51049,357584.3854,56357.93768,37.86560554,45.35742708 "DJI",343.960179,11.802761,21843.65212,7031.12303,1.57464593,0.167864521 "DMA",168.469169,10.012306,766.22784,28749.1828,21.98682431,0.034826402 -"DNK",8202.821875,17932.88012,45314.39778,100469.7507,18.10202116,17.84903415 -"DOM",12727.3973,48625.33917,48509.80547,270774.1738,26.23675188,17.95789402 +"DNK",8318.121999,17932.88012,45314.39778,100469.7507,18.35646595,17.84903415 +"DOM",12727.39737,48625.33917,48509.80547,270774.1738,26.23675203,17.95789402 "DZA",174218.6183,110.267218,2324458.588,128992.9935,7.495019239,0.085483106 -"ECU",55980.25872,144125.4431,258138.6687,1079901.071,21.68611893,13.34617096 +"ECU",55980.13776,144125.4431,258138.6687,1079901.071,21.68607208,13.34617096 "EGY",129389.8156,11715.81678,984997.4881,236612.0565,13.13605538,4.951487659 "ERI",5936.248417,0,121834.4031,0,4.872390938,0 -"ESH",15269.8993,3709.987384,268339.2162,252024.2549,5.690520946,1.472075529 -"ESP",142399.1621,84225.04305,507013.405,1005717.296,28.08587715,8.374624099 -"EST",9211.086637,6767.85611,45416.48284,36346.36825,20.28137377,18.62044665 -"ETH",200073.9748,0,1135429.227,0,17.62099919,0 -"FIN",50901.51811,8352.242381,337725.5344,79467.83379,15.07185952,10.51021776 +"ESH",15269.89945,3709.987384,268339.2162,252024.2549,5.690521001,1.472075529 +"ESP",142393.4623,84225.04305,507013.405,1005717.296,28.08475297,8.374624099 +"EST",9211.085571,6767.85611,45416.48284,36346.36825,20.28137142,18.62044665 +"ETH",200073.9753,0,1135429.227,0,17.62099923,0 +"FIN",44785.69749,8352.242381,337725.5344,79467.83379,13.26097464,10.51021776 "FJI",1036.512388,11959.01476,19154.95614,1293034.72,5.411196874,0.924879632 "FLK",61.100176,52.093517,12400.947,549091.6441,0.492705727,0.009487217 -"FRA",142596.2051,154901.8964,548954.0701,343866.3878,25.97598103,45.04711771 +"FRA",142640.6248,154901.8964,548954.0701,343866.3878,25.98407273,45.04711771 "FRO",33.786873,28.889108,1450.644909,266720.4336,2.329093274,0.010831232 "FSM",0.401738,475.050992,817.158681,3011916.98,0.049162789,0.01577238 "GAB",59707.74205,55720.61869,266044.6066,193292.3301,22.44275605,28.82712349 -"GBR",70356.30986,208871.0228,245247.5873,723404.7034,28.68787034,28.87332939 -"GEO",5831.181965,152.96289,69971.96837,22907.00911,8.333597154,0.667755835 +"GBR",70364.52325,208871.0228,245247.5873,723404.7034,28.69121936,28.87332939 +"GEO",5831.181959,152.96289,69971.96837,22907.00911,8.333597146,0.667755835 "GGY",3.42847,33.480134,85.559741,8672.655691,4.007106567,0.386042467 -"GHA",36153.44505,220.877347,240329.9832,226758.5827,15.04325202,0.097406389 -"GIB",2.426334,54.748777,7.483277,426.745945,32.42341557,12.8293608 -"GIN",87841.7778,583.248819,246426.8074,110136.2872,35.64619398,0.529570075 -"GLP",1170.201835,90957.91428,1678.541217,91039.08888,69.71540664,99.91083544 +"GHA",36153.44517,220.877347,240329.9832,226758.5827,15.04325207,0.097406389 +"GIB",0.350582,54.748777,7.483277,426.745945,4.684872683,12.8293608 +"GIN",87841.77901,583.248819,246426.8074,110136.2872,35.64619447,0.529570075 +"GLP",1170.201833,90957.91428,1678.541217,91039.08888,69.71540652,99.91083544 "GMB",441.86625,15.848759,10757.9084,22745.53308,4.107362078,0.069678556 "GNB",5667.921785,10660.72491,34015.72123,106506.6285,16.66265356,10.00944736 -"GNQ",5228.231143,729.714996,27136.01782,310365.4119,19.26675896,0.235114793 -"GRC",46842.05396,22326.02504,133012.2689,494172.4508,35.21634083,4.517861125 +"GNQ",5228.231142,729.714996,27136.01782,310365.4119,19.26675895,0.235114793 +"GRC",46842.05403,22326.02504,133012.2689,494172.4508,35.21634088,4.517861125 "GRD",36.525372,22.668297,373.565244,26281.5155,9.777508102,0.086251864 -"GRL",886455.3706,102325.3573,2154016.464,2264467.117,41.15360237,4.518738935 -"GTM",22038.6271,1065.193983,109922.2585,118336.3927,20.0492852,0.900140657 +"GRL",885647.6174,102325.3573,2154016.464,2264467.117,41.11610251,4.518738935 +"GTM",22038.64399,1065.193983,109922.2585,118336.3927,20.04930056,0.900140657 "GUF",44030.25688,1365.477582,83034.50925,136563.8487,53.02645524,0.999882176 "GUM",126.105991,18.36469,561.240901,202535.0554,22.46913772,0.009067413 -"GUY",18453.59558,17.404509,211200.2683,136909.9886,8.73748681,0.012712373 +"GUY",18453.5957,17.404509,211200.2683,136909.9886,8.737486868,0.012712373 "HKG",461.758922,77.63466,1102.47934,0,41.88368029,0 "HMD",391.198904,70453.52882,391.198904,416110.9534,100,16.93142856 -"HND",27060.29621,9144.343173,113291.4823,219971.1738,23.88555225,4.157064317 -"HRV",21752.31657,4737.056345,56855.88522,55462.35822,38.25868946,8.541029442 +"HND",27060.29625,9144.343173,113291.4823,219971.1738,23.88555229,4.157064317 +"HRV",21752.31666,4737.056345,56855.88522,55462.35822,38.25868962,8.541029442 "HTI",534.077665,0,27390.24191,0,1.94988298,0 -"HUN",21049.06125,0,93142.45067,0,22.59878401,0 -"IDN",231945.909,181848.1746,1906555.047,5947954.167,12.16570743,3.057323064 +"HUN",21049.06124,0,93142.45067,0,22.598784,0 +"IDN",231945.6876,181848.1746,1906555.047,5947954.167,12.16569581,3.057323064 "IMN",31.751404,419.422876,582.226592,0,5.45344449,0 -"IND",182646.7039,3928.327395,3061193.496,2301226.499,5.966519401,0.170705813 +"IND",182646.7039,3928.327395,3061193.496,2301226.499,5.966519403,0.170705813 "IOT",68.952846,642270.8732,68.952846,642744.6863,100,99.92628284 -"IRL",10127.42256,9945.099192,70128.37704,426441.7422,14.44126185,2.332112035 -"IRN",140225.7775,1808.644138,1627857.17,224800.6295,8.614132743,0.804554748 +"IRL",10125.44075,9945.099192,70128.37704,426441.7422,14.43843587,2.332112035 +"IRN",140225.7781,1808.644138,1627857.17,224800.6295,8.614132779,0.804554748 "IRQ",6713.746023,0,437830.5052,0,1.533412118,0 "ISL",18571.902,2863.10312,102301.7663,752783.5116,18.15403846,0.380335525 -"ISR",4180.414797,9.067342,20958.0329,27855.0403,19.94659907,0.03255189 -"ITA",64904.81984,47394.46738,301335.3097,538880.953,21.53906885,8.794979135 +"ISR",4180.414799,9.067342,20958.0329,27855.0403,19.94659908,0.03255189 +"ITA",64904.81993,47394.46738,301335.3097,538880.953,21.53906888,8.794979135 "JAM",1760.198539,1859.991697,11058.94539,246488.4991,15.91651352,0.754595733 -"JEY",22.230737,185.03376,125.218467,2962.105951,17.75356106,6.246696204 +"JEY",22.230736,185.03376,125.218467,2962.105951,17.75356026,6.246696204 "JOR",2773.578439,33.455456,89689.84024,93.665949,3.092410948,35.71784235 -"JPN",109936.6645,332694.3839,374092.7945,4040612.297,29.38753863,8.233761604 -"KAZ",90083.02894,1249.454686,2719827.869,119085.0237,3.312085664,1.049212275 -"KEN",72544.48541,903.902773,586770.0015,112400.4482,12.36335962,0.804180755 -"KGZ",13402.50902,0,199957.0236,0,6.7026948,0 -"KHM",47503.40656,89.107039,182510.8526,47966.8519,26.0277161,0.185767953 +"JPN",109936.665,332694.3839,374092.7945,4040612.297,29.38753876,8.233761604 +"KAZ",90083.03007,1249.454686,2719827.869,119085.0237,3.312085705,1.049212275 +"KEN",72544.60101,903.902773,586770.0015,112400.4482,12.36337932,0.804180755 +"KGZ",13402.50539,0,199957.0236,0,6.702692985,0 +"KHM",47503.40661,89.107039,182510.8526,47966.8519,26.02771612,0.185767953 "KIR",230.885727,408796.5464,1032.564654,3459130.413,22.36041357,11.81789923 -"KNA",8.982278,17.436922,270.825058,10262.9088,3.316634755,0.169902338 -"KOR",11637.6153,5309.233026,99712.88376,324993.7978,11.67112499,1.633641338 -"KWT",3048.24619,175.974631,17417.87587,11895.81218,17.50067697,1.479299004 -"LAO",38581.96123,0,231276.1399,0,16.68220563,0 +"KNA",62.014371,17.436922,270.825058,10262.9088,22.89831357,0.169902338 +"KOR",11637.6153,5309.233026,99712.88376,324993.7978,11.671125,1.633641338 +"KWT",3048.243171,175.974631,17417.87587,11895.81218,17.50065963,1.479299004 +"LAO",38581.9612,0,231276.1399,0,16.68220562,0 "LBN",268.277274,40.839545,10329.04876,19315.84107,2.597308622,0.211430322 -"LBR",3914.960977,256.049624,96634.42399,247767.6811,4.051310926,0.103342624 +"LBR",3914.960978,256.049624,96634.42399,247767.6811,4.051310927,0.103342624 "LBY",3437.476191,2277.750889,1622615.431,357895.3125,0.211847868,0.636429372 "LCA",116.653527,34.007036,622.311137,15560.30791,18.7452096,0.218549891 "LIE",70.47938,0,167.064349,0,42.18696593,0 "LKA",19897.4988,398.564426,66631.50337,534085.0497,29.8619989,0.074625647 -"LSO",79.71045,0,30494.99377,0,0.261388642,0 -"LTU",11013.35321,1567.706297,64696.51583,6125.653875,17.02310096,25.59247272 -"LUX",1332.387109,0,2603.081524,0,51.18499351,0 -"LVA",11720.84665,4631.301701,64501.94768,28879.55287,18.17130656,16.03661152 +"LSO",79.710462,0,30494.99377,0,0.261388681,0 +"LTU",11020.11574,1567.706297,64696.51583,6125.653875,17.03355367,25.59247272 +"LUX",1332.387111,0,2603.081524,0,51.18499358,0 +"LVA",11720.8467,4631.301701,64501.94768,28879.55287,18.17130664,16.03661152 "MAF",7.609068,1030.536085,59.578286,1068.741983,12.77154566,96.42515232 -"MAR",125351.1669,717.910689,407280.495,276136.4075,30.7776013,0.259984077 +"MAR",125351.1662,717.910689,407280.495,276136.4075,30.77760111,0.259984077 "MCO",0.528888,283.522868,1.595194,284.22031,33.1550896,99.75461219 "MDA",1409.67766,0,33963.76161,0,4.15053455,0 -"MDG",33242.1381,8997.672125,594718.7259,1205824.849,5.589556315,0.746184003 +"MDG",33242.1381,8997.672125,594718.7259,1205824.849,5.589556314,0.746184003 "MDV",3.683705,474.933082,304.666095,922109.9914,1.209095814,0.051505036 -"MEX",284175.3495,707942.1699,1965284.828,3284659.67,14.4597539,21.5529839 +"MEX",284178.223,707942.1699,1965284.828,3284659.67,14.45990011,21.5529839 "MHL",33.593723,5388.396257,281.928035,2004587.264,11.91570856,0.268803277 -"MKD",2686.961324,0,25443.14057,0,10.56065118,0 +"MKD",2686.96127,0,25443.14057,0,10.56065096,0 "MLI",103445.3359,0,1256684.114,0,8.231610053,0 -"MLT",98.095341,3495.870104,324.970466,55696.65564,30.18592496,6.276624806 -"MMR",42878.48881,11964.44587,673078.5676,514147.2175,6.370502772,2.327046702 +"MLT",97.945322,3495.870104,324.970466,55696.65564,30.13976107,6.276624806 +"MMR",42878.48876,11964.44587,673078.5676,514147.2175,6.370502765,2.327046702 "MNE",1456.773173,10.436511,13847.56188,7459.237226,10.52006978,0.139913917 -"MNG",277375.3288,0,1565864.159,0,17.71388196,0 +"MNG",277375.263,0,1565864.159,0,17.71387775,0 "MNP",38.441128,257249.9205,501.224059,773667.8566,7.669449882,33.25069257 -"MOZ",170662.3039,12821.00808,791081.8731,574409.6185,21.57327954,2.232032276 -"MRT",6507.878372,6487.581027,1046302.522,156197.8626,0.621988214,4.153437775 +"MOZ",170662.332,12821.00808,791081.8731,574409.6185,21.5732831,2.232032276 +"MRT",6507.878451,6487.581027,1046302.522,156197.8626,0.621988222,4.153437775 "MSR",11.182345,0.000273,100.664381,7628.258983,11.10854196,3.5788E-06 -"MTQ",1280.73635,47915.67266,1149.925062,47644.30608,100,100 +"MTQ",1280.736358,47915.67266,1149.925062,47644.30608,100,100 "MUS",97.460291,49.64392,2062.481937,1280068.317,4.725388827,0.003878224 -"MWI",27190.40907,0,118859.7323,0,22.87604771,0 -"MYS",63418.8825,6977.70038,331700.5726,451741.5382,19.11931656,1.544622265 +"MWI",27190.40931,0,118859.7323,0,22.87604791,0 +"MYS",63418.88193,6977.70038,331700.5726,451741.5382,19.11931638,1.544622265 "MYT",44.436011,68829.33301,396.377408,63362.33751,11.2105307,100 -"NAM",313534.3576,9646.27499,827465.4339,562727.6243,37.89093112,1.714199654 +"NAM",313534.3569,9646.27499,827465.4339,562727.6243,37.89093104,1.714199654 "NCL",10413.51706,1325070.398,19141.03171,1371803.153,54.40415763,96.59333378 -"NER",206090.4852,0,1190098.655,0,17.31709252,0 +"NER",206090.4851,0,1190098.655,0,17.31709251,0 "NFK",19.957518,189084.3131,42.778966,432638.0836,46.65264233,43.7049627 -"NGA",127359.0344,30.555979,914306.1122,182868.1867,13.92958361,0.016709292 -"NIC",48104.12746,6660.345162,129222.3127,223935.2389,37.22586792,2.974228261 +"NGA",127359.0343,30.555979,914306.1122,182868.1867,13.92958361,0.016709292 +"NIC",48104.12745,6660.345162,129222.3127,223935.2389,37.22586791,2.974228261 "NIU",53.434436,36.900176,267.755527,318243.6931,19.95642689,0.011594943 -"NLD",3958.425448,17126.39853,35205.61182,64204.97933,11.24373429,26.67456435 -"NOR",55973.90611,7696.958098,325287.8156,926317.7348,17.20750161,0.830919868 +"NLD",3958.425269,17126.39853,35205.61182,64204.97933,11.24373378,26.67456435 +"NOR",55973.89254,7696.958098,325287.8156,926317.7348,17.20749744,0.830919868 "NPL",34897.91838,0,147709.5419,0,23.62604199,0 "NZL",88464.44129,1249447.107,269651.6705,4106953.859,32.80693242,30.42272082 "OMN",7985.072834,663.989764,310373.1429,538980.1915,2.572733181,0.123193723 "PAK",98288.08094,1707.397433,798143.6542,222743.9199,12.31458528,0.76652931 -"PAN",15773.05824,5593.115449,75497.94621,332643.4965,20.89203618,1.681414339 -"PCN",37.035971,839648.6171,45.589943,839478.9503,81.23715136,100 -"PER",279619.4414,4036.819355,1298537.038,838329.5928,21.53342055,0.481531296 +"PAN",15773.05873,5593.115449,75497.94621,332643.4965,20.89203683,1.681414339 +"PCN",37.035971,839648.6171,45.589943,839478.9503,81.23715136,100.020211 +"PER",279619.5731,4036.819355,1298537.038,838329.5928,21.53343069,0.481531296 "PHL",45762.33428,21269.12928,298774.9046,1835028.192,15.31665932,1.159062808 "PLW",140.309346,504690.9119,501.101386,608152.4889,28.00019116,82.98756005 -"PNG",14330.33788,4585.469187,467405.9203,2407381.818,3.065929904,0.19047536 -"POL",123906.7111,7210.775928,311923.5191,31945.64308,39.7234269,22.57201682 +"PNG",14330.32953,4585.469187,467405.9203,2407381.818,3.065928118,0.19047536 +"POL",123892.6648,7210.775928,311923.5191,31945.64308,39.71892379,22.57201682 "PRI",657.215588,3077.928815,9041.14294,176163.0606,7.269164887,1.747204439 "PRK",2975.649808,25.611911,122186.1412,115967.2688,2.435341504,0.022085465 -"PRT",21114.47368,285578.3431,92141.09473,1724156.15,22.91537098,16.56336887 -"PRY",57473.44474,0,401498.4235,0,14.31473734,0 +"PRT",21114.4737,285578.3431,92141.09473,1724156.15,22.91537099,16.56336887 +"PRY",57473.37524,0,401498.4235,0,14.31472003,0 "PSE",516.767863,0,6181.987004,0,8.35925185,0 "PYF",73.831954,206.943116,3780.061341,4795468.095,1.9531946,0.004315389 "QAT",1512.836196,538.143058,11435.55274,31987.65323,13.22923544,1.682346167 "REU",1600.443036,40.854528,2536.304619,316498.9308,63.10137292,0.012908267 -"ROU",58126.49915,6865.607617,237452.8706,29726.44952,24.47917307,23.09595572 -"RUS",1641400.88,228247.3371,16874835.52,7673314.113,9.726914839,2.974560062 -"RWA",2319.729861,0,25452.13068,0,9.114089071,0 -"SAU",92063.63591,5495.452494,1934058.339,220338.2086,4.760127141,2.494098744 -"SDN",42697.53496,10661.95429,1871251.813,66785.64454,2.281763185,15.9644402 +"ROU",58224.53787,6865.607617,237452.8706,29726.44952,24.52046072,23.09595572 +"RUS",1641400.741,228247.3371,16874835.52,7673314.113,9.726914016,2.974560062 +"RWA",2319.729895,0,25452.13068,0,9.114089205,0 +"SAU",92063.63578,5495.452494,1934058.339,220338.2086,4.760127134,2.494098744 +"SDN",42697.53551,10661.95429,1871251.813,66785.64454,2.281763214,15.9644402 "SEN",50179.21798,1766.175004,197923.9723,158426.4028,25.3527743,1.114823649 "SGP",33.585431,0.100552,604.646128,762.68502,5.55455984,0.013183948 "SGS",3971.692688,1065900.045,3971.692688,1445886.657,100,73.71947451 @@ -199,47 +200,47 @@ "SLE",6824.701851,862.533185,72709.02892,160452.5672,9.386319626,0.53756272 "SLV",1805.57217,664.798852,20573.30437,94238.04744,8.776286673,0.705446335 "SPM",7.163126,7.021851,237.589267,12367.3281,3.014919862,0.05677743 -"SRB",6687.228547,0,88509.11514,0,7.555412272,0 -"SSD",98214.50384,0,633580.4791,0,15.50150409,0 +"SRB",6687.228546,0,88509.11514,0,7.555412271,0 +"SSD",98214.48596,0,633580.4791,0,15.50150126,0 "STP",289.416981,35.280222,989.259888,131709.1714,29.25590985,0.026786458 -"SUR",21425.69156,1980.928256,147558.4488,128362.9877,14.52013878,1.543223862 -"SVK",18395.3999,0,48941.21743,0,37.58672315,0 -"SVN",10889.59482,396.970655,20308.54692,186.314047,53.62074827,100 -"SWE",65905.78265,23604.86049,449390.1761,154980.4918,14.66560378,15.23085919 -"SWZ",738.207109,0,17335.867,0,4.258264723,0 +"SUR",21425.69157,1980.928256,147558.4488,128362.9877,14.52013879,1.543223862 +"SVK",18395.39989,0,48941.21743,0,37.58672313,0 +"SVN",10877.50335,396.970655,20308.54692,186.314047,53.56120946,100 +"SWE",64033.65777,23604.86049,449390.1761,154980.4918,14.24901148,15.23085919 +"SWZ",738.20711,0,17335.867,0,4.258264729,0 "SXM",0.000136,43.282473,36.455424,497.533856,0.000373058,8.699402559 "SYC",241.673419,209929.3831,486.864575,1340839.459,49.63873558,15.65656363 "SYR",1292.567557,25.201794,188612.6151,10203.61673,0.685302813,0.246988834 "TCA",451.737848,149.820284,1018.174578,154242.1775,44.36742556,0.097133149 -"TCD",259841.8715,0,1276585.969,0,20.3544358,0 +"TCD",259841.8709,0,1276585.969,0,20.35443575,0 "TGO",15876.86929,30.987414,57480.648,15520.93847,27.6212427,0.1996491 -"THA",97391.375,5773.799574,517786.6125,306890.539,18.80917209,1.881387283 +"THA",97391.37501,5773.799574,517786.6125,306890.539,18.80917209,1.881387283 "TJK",31690.1072,0,142244.2178,0,22.27866109,0 "TKL",0.998313,9.510634,15.181307,321242.5226,6.575935787,0.002960578 -"TKM",15336.26559,2331.770078,472137.5437,77885.16348,3.248262247,2.993856562 +"TKM",15336.26559,2331.770078,472137.5437,77885.16348,3.248262248,2.993856562 "TLS",1959.473342,584.110567,15006.53549,42501.27223,13.05746648,1.374336664 "TON",121.971897,10055.15988,766.502265,668054.6083,15.91279016,1.505140411 -"TTO",1594.834426,37.071977,5213.102096,75798.46305,30.59281013,0.048908613 +"TTO",1594.834874,37.071977,5213.102096,75798.46305,30.59281872,0.048908613 "TUN",12286.01772,1042.360893,155230.8391,100660.5035,7.914675845,1.035521239 "TUR",1709.103181,270.18272,782238.8742,255925.9584,0.218488653,0.105570659 "TUV",0.815638,62.087748,41.785977,731900.0274,1.951941916,0.008483091 -"TWN",7145.88111,3846.48539,36245.33119,342996.9472,19.71531471,1.121434293 -"TZA",361593.9275,7330.445298,947252.6908,243129.5958,38.17291109,3.015036189 -"UGA",39058.65252,0,243144.8535,0,16.06394376,0 -"UKR",23854.95145,4606.122845,598828.7966,134873.1664,3.983601255,3.41515141 -"UMI",363.497911,1278997.392,363.495,1964384.514,100.0008008,65.10931964 -"URY",6150.088128,931.553409,178459.889,130097.9744,3.446201924,0.716039902 -"USA",1233169.29,3527444.441,9490391.294,8591493.148,12.99387193,41.05740853 -"UZB",15200.69742,0,450362.5106,0,3.375213759,0 +"TWN",7145.881111,3846.48539,36245.33119,342996.9472,19.71531471,1.121434293 +"TZA",361593.899,7330.445298,947252.6908,243129.5958,38.17290808,3.015036189 +"UGA",39058.6568,0,243144.8535,0,16.06394552,0 +"UKR",23854.95209,4606.122845,598828.7966,134873.1664,3.983601361,3.41515141 +"UMI",363.497911,1278997.392,363.495,1964384.514,100,65.10931964 +"URY",6150.088211,931.553409,178459.889,130097.9744,3.44620197,0.716039902 +"USA",1233174.536,3527444.441,9490391.294,8591493.148,12.9939272,41.05740853 +"UZB",15200.69725,0,450362.5106,0,3.37521372,0 "VCT",91.899504,80.359651,409.906569,36510.93366,22.41962217,0.220097497 -"VEN",496701.1417,16499.94342,917367.6523,473325.0963,54.14417442,3.485964202 +"VEN",496700.9958,16499.94342,917367.6523,473325.0963,54.14415851,3.485964202 "VGB",15.995538,3.314329,175.605042,80529.47601,9.108814769,0.004115672 "VIR",51.815838,306.278747,375.62477,36030.25521,13.7945743,0.850059888 -"VNM",24994.30956,3630.264972,329880.371,647232.2216,7.576779875,0.560890643 +"VNM",24994.31244,3630.264972,329880.371,647232.2216,7.576780747,0.560890643 "VUT",528.222229,47.509867,12575.12729,622073.2227,4.200531866,0.007637343 "WLF",0.301679,0,180.605517,0,0.167037533,0 "WSM",212.692968,114.846969,2893.945283,132305.5976,7.349584985,0.086804316 "YEM",3519.593039,2562.368242,455938.919,548013.9807,0.77194398,0.467573517 -"ZAF",101336.4817,186106.9994,1224384.577,1542559.897,8.276523866,12.0648151 -"ZMB",286161.0949,0,755640.3907,0,37.87001045,0 -"ZWE",106837.168,0,392573.2003,0,27.21458517,0 +"ZAF",101336.4951,186106.9994,1224384.577,1542559.897,8.276524958,12.0648151 +"ZMB",286161.093,0,755640.3907,0,37.87001019,0 +"ZWE",106837.168,0,392573.2003,0,27.21458519,0 diff --git a/lib/data/seeds/country_statistics_old.csv b/lib/data/seeds/country_statistics_old.csv new file mode 100644 index 000000000..192a776f0 --- /dev/null +++ b/lib/data/seeds/country_statistics_old.csv @@ -0,0 +1,245 @@ +"iso3","pa_land_area","pa_marine_area","land_area","marine_area","percentage_pa_land_cover","percentage_pa_marine_cover" +"ABW",35.833833,0.026514,189.420844,25213.94735,18.91757646,0.000105156 +"AFG",673.16062,0,642899.1342,0,0.104707035,0 +"AGO",87506.59243,24.341169,1255217.852,493753.373,6.971426695,0.004929823 +"AIA",6.274344,32.219534,85.524417,92653.59144,7.336318937,0.034774188 +"ALA",41.035664,503.943526,0,0,0,0 +"ALB",5098.516663,304.392513,28746.5563,11199.39919,17.73609544,2.717936094 +"AND",126.120308,0,471.870724,0,26.72772469,0 +"ARE",12733.89139,6166.123302,70921.45739,54711.04352,17.95492064,11.2703449 +"ARG",235365.9451,41249.95469,2785327.721,1083150.624,8.450206536,3.808330418 +"ARM",6860.446492,0,29685.40559,0,23.1105028,0 +"ASM",33.371984,35457.57732,210.578755,406816.029,15.84774494,8.715875183 +"ATA",0,4774.711754,0,0,0,0 +"ATF",7851.080041,1702574.614,7855.43,2277432,99.94462481,74.7585269 +"ATG",84.536207,196.917827,455.237976,108492.3833,18.56967377,0.181503826 +"AUS",1487710.336,3014429.414,7722102.022,7432133.367,19.26561359,40.5594096 +"AUT",23829.38774,0,83912.25912,0,28.3979814,0 +"AZE",8798.362587,345.314137,86639.62334,79032.11878,10.15512562,0.436928862 +"BDI",2065.705682,0,27210.87243,0,7.591471709,0 +"BEL",7634.045734,1270.104582,30683.07213,3465.140147,24.8803174,36.65377238 +"BEN",34369.0025,0,116095.3632,0,29.60411298,0 +"BES",91.577774,2755.525866,322.852496,25112.35272,28.36520551,10.97279055 +"BFA",41157.73236,0,276403.7182,0,14.89044092,0 +"BGD",6455.725173,4530.200776,140160.1678,84563.21214,4.605962787,5.357176793 +"BGR",44996.29738,2851.951552,110862.7479,35171.8505,40.58739138,8.108619568 +"BHR",45.481965,94.820117,686.857403,7632.763476,6.621747804,1.24227768 +"BHS",4930.158571,47355.48699,13458.00624,597705.1345,36.63364754,7.922884422 +"BIH",714.847791,0,51225.15128,0,1.395501571,0 +"BLM",5.112058,4243.89095,25.109707,4317.87991,20.35889148,98.28645165 +"BLR",19383.06277,0,207228.0654,0,9.353493086,0 +"BLZ",8401.656832,3653.592271,22297.76618,36249.83866,37.67936557,10.07892009 +"BMU",1.507493,0.254821,72.478422,451643.6848,2.079919731,5.64208E-05 +"BOL",336405.5463,0,1089908.94,0,30.86547269,0 +"BRA",2509320.934,977792.6843,8529399.243,3672584.326,29.41966794,26.62410437 +"BRB",5.640151,10.321249,444.068519,185019.8485,1.270108274,0.005578455 +"BRN",2794.368916,51.679209,5961.686662,25698.41824,46.87211983,0.201098793 +"BTN",19171.20958,0,39933.48814,0,48.00785122,0 +"BVT",43.986608,13.870359,50.639751,440224.3515,86.86181731,0.003150748 +"BWA",169369.7355,0,581162.9215,0,29.14324526,0 +"CAF",112827.1168,0,624568.0306,0,18.06482422,0 +"CAN",1060937.776,165665.3985,9955032.941,5698082.708,10.65730051,2.907388449 +"CCK",0,26.294478,0,470116.606,0,0.005593182 +"CHE",4131.851172,0,41355.27022,0,9.991111531,0 +"CHL",155154.8153,1506502.331,759820.962,3657313.03,20.41991772,41.19150641 +"CHN",1461511.266,47491.66492,9361608.881,878364.0892,15.61175311,5.406831347 +"CIV",74170.95794,130.372645,324107.7064,174842.1752,22.88466348,0.074565902 +"CMR",51220.8022,1685.49771,469428.0915,14704.2551,10.91132021,11.4626528 +"COD",324289.6838,31.363659,2344275.114,13265.40707,13.83326052,0.236431938 +"COG",140031.5994,1280.313272,343736.7395,39863.59306,40.73803678,3.211735756 +"COK",67.100582,1981949.229,258.141911,1972842.358,25.99367989,100 +"COL",169544.5158,124670.6807,1145032.899,730741.8263,14.80695585,17.06083821 +"COM",172.688456,37.464378,1701.123719,165505.135,10.15143426,0.022636384 +"CPV",120.123431,5.423162,4148.996795,801065.1343,2.89524039,0.000676994 +"CRI",14608.17403,15061.6931,51636.14199,576110.183,28.2905993,2.614377171 +"CUB",18480.57139,15818.76605,111643.2783,365755.7493,16.55323246,4.324953491 +"CUW",71.009581,11.656382,450.975385,30535.00449,15.74577757,0.038173834 +"CXR",87.649012,0.753516,142.416955,330035.5,61.54394468,0.000228314 +"CYM",31.133127,92.901287,289.266866,119605.4547,10.76276984,0.077673119 +"CYP",3386.08814,120.958963,9063.433945,98279.50173,37.35988104,0.123076492 +"CZE",17265.28518,0,77916.89786,0,22.15858903,0 +"DEU",135390.2648,25562.51049,357584.3854,56357.93768,37.86246558,45.35742708 +"DJI",343.960179,11.802761,21843.65212,7031.12303,1.57464593,0.167864521 +"DMA",168.469169,10.012306,766.22784,28749.1828,21.98682431,0.034826402 +"DNK",8202.821875,17932.88012,45314.39778,100469.7507,18.10202116,17.84903415 +"DOM",12727.3973,48625.33917,48509.80547,270774.1738,26.23675188,17.95789402 +"DZA",174218.6183,110.267218,2324458.588,128992.9935,7.495019239,0.085483106 +"ECU",55980.25872,144125.4431,258138.6687,1079901.071,21.68611893,13.34617096 +"EGY",129389.8156,11715.81678,984997.4881,236612.0565,13.13605538,4.951487659 +"ERI",5936.248417,0,121834.4031,0,4.872390938,0 +"ESH",15269.8993,3709.987384,268339.2162,252024.2549,5.690520946,1.472075529 +"ESP",142399.1621,84225.04305,507013.405,1005717.296,28.08587715,8.374624099 +"EST",9211.086637,6767.85611,45416.48284,36346.36825,20.28137377,18.62044665 +"ETH",200073.9748,0,1135429.227,0,17.62099919,0 +"FIN",50901.51811,8352.242381,337725.5344,79467.83379,15.07185952,10.51021776 +"FJI",1036.512388,11959.01476,19154.95614,1293034.72,5.411196874,0.924879632 +"FLK",61.100176,52.093517,12400.947,549091.6441,0.492705727,0.009487217 +"FRA",142596.2051,154901.8964,548954.0701,343866.3878,25.97598103,45.04711771 +"FRO",33.786873,28.889108,1450.644909,266720.4336,2.329093274,0.010831232 +"FSM",0.401738,475.050992,817.158681,3011916.98,0.049162789,0.01577238 +"GAB",59707.74205,55720.61869,266044.6066,193292.3301,22.44275605,28.82712349 +"GBR",70356.30986,208871.0228,245247.5873,723404.7034,28.68787034,28.87332939 +"GEO",5831.181965,152.96289,69971.96837,22907.00911,8.333597154,0.667755835 +"GGY",3.42847,33.480134,85.559741,8672.655691,4.007106567,0.386042467 +"GHA",36153.44505,220.877347,240329.9832,226758.5827,15.04325202,0.097406389 +"GIB",2.426334,54.748777,7.483277,426.745945,32.42341557,12.8293608 +"GIN",87841.7778,583.248819,246426.8074,110136.2872,35.64619398,0.529570075 +"GLP",1170.201835,90957.91428,1678.541217,91039.08888,69.71540664,99.91083544 +"GMB",441.86625,15.848759,10757.9084,22745.53308,4.107362078,0.069678556 +"GNB",5667.921785,10660.72491,34015.72123,106506.6285,16.66265356,10.00944736 +"GNQ",5228.231143,729.714996,27136.01782,310365.4119,19.26675896,0.235114793 +"GRC",46842.05396,22326.02504,133012.2689,494172.4508,35.21634083,4.517861125 +"GRD",36.525372,22.668297,373.565244,26281.5155,9.777508102,0.086251864 +"GRL",886455.3706,102325.3573,2154016.464,2264467.117,41.15360237,4.518738935 +"GTM",22038.6271,1065.193983,109922.2585,118336.3927,20.0492852,0.900140657 +"GUF",44030.25688,1365.477582,83034.50925,136563.8487,53.02645524,0.999882176 +"GUM",126.105991,18.36469,561.240901,202535.0554,22.46913772,0.009067413 +"GUY",18453.59558,17.404509,211200.2683,136909.9886,8.73748681,0.012712373 +"HKG",461.758922,77.63466,1102.47934,0,41.88368029,0 +"HMD",391.198904,70453.52882,391.198904,416110.9534,100,16.93142856 +"HND",27060.29621,9144.343173,113291.4823,219971.1738,23.88555225,4.157064317 +"HRV",21752.31657,4737.056345,56855.88522,55462.35822,38.25868946,8.541029442 +"HTI",534.077665,0,27390.24191,0,1.94988298,0 +"HUN",21049.06125,0,93142.45067,0,22.59878401,0 +"IDN",231945.909,181848.1746,1906555.047,5947954.167,12.16570743,3.057323064 +"IMN",31.751404,419.422876,582.226592,0,5.45344449,0 +"IND",182646.7039,3928.327395,3061193.496,2301226.499,5.966519401,0.170705813 +"IOT",68.952846,642270.8732,68.952846,642744.6863,100,99.92628284 +"IRL",10127.42256,9945.099192,70128.37704,426441.7422,14.44126185,2.332112035 +"IRN",140225.7775,1808.644138,1627857.17,224800.6295,8.614132743,0.804554748 +"IRQ",6713.746023,0,437830.5052,0,1.533412118,0 +"ISL",18571.902,2863.10312,102301.7663,752783.5116,18.15403846,0.380335525 +"ISR",4180.414797,9.067342,20958.0329,27855.0403,19.94659907,0.03255189 +"ITA",64904.81984,47394.46738,301335.3097,538880.953,21.53906885,8.794979135 +"JAM",1760.198539,1859.991697,11058.94539,246488.4991,15.91651352,0.754595733 +"JEY",22.230737,185.03376,125.218467,2962.105951,17.75356106,6.246696204 +"JOR",2773.578439,33.455456,89689.84024,93.665949,3.092410948,35.71784235 +"JPN",109936.6645,332694.3839,374092.7945,4040612.297,29.38753863,8.233761604 +"KAZ",90083.02894,1249.454686,2719827.869,119085.0237,3.312085664,1.049212275 +"KEN",72544.48541,903.902773,586770.0015,112400.4482,12.36335962,0.804180755 +"KGZ",13402.50902,0,199957.0236,0,6.7026948,0 +"KHM",47503.40656,89.107039,182510.8526,47966.8519,26.0277161,0.185767953 +"KIR",230.885727,408796.5464,1032.564654,3459130.413,22.36041357,11.81789923 +"KNA",8.982278,17.436922,270.825058,10262.9088,3.316634755,0.169902338 +"KOR",11637.6153,5309.233026,99712.88376,324993.7978,11.67112499,1.633641338 +"KWT",3048.24619,175.974631,17417.87587,11895.81218,17.50067697,1.479299004 +"LAO",38581.96123,0,231276.1399,0,16.68220563,0 +"LBN",268.277274,40.839545,10329.04876,19315.84107,2.597308622,0.211430322 +"LBR",3914.960977,256.049624,96634.42399,247767.6811,4.051310926,0.103342624 +"LBY",3437.476191,2277.750889,1622615.431,357895.3125,0.211847868,0.636429372 +"LCA",116.653527,34.007036,622.311137,15560.30791,18.7452096,0.218549891 +"LIE",70.47938,0,167.064349,0,42.18696593,0 +"LKA",19897.4988,398.564426,66631.50337,534085.0497,29.8619989,0.074625647 +"LSO",79.71045,0,30494.99377,0,0.261388642,0 +"LTU",11013.35321,1567.706297,64696.51583,6125.653875,17.02310096,25.59247272 +"LUX",1332.387109,0,2603.081524,0,51.18499351,0 +"LVA",11720.84665,4631.301701,64501.94768,28879.55287,18.17130656,16.03661152 +"MAF",7.609068,1030.536085,59.578286,1068.741983,12.77154566,96.42515232 +"MAR",125351.1669,717.910689,407280.495,276136.4075,30.7776013,0.259984077 +"MCO",0.528888,283.522868,1.595194,284.22031,33.1550896,99.75461219 +"MDA",1409.67766,0,33963.76161,0,4.15053455,0 +"MDG",33242.1381,8997.672125,594718.7259,1205824.849,5.589556315,0.746184003 +"MDV",3.683705,474.933082,304.666095,922109.9914,1.209095814,0.051505036 +"MEX",284175.3495,707942.1699,1965284.828,3284659.67,14.4597539,21.5529839 +"MHL",33.593723,5388.396257,281.928035,2004587.264,11.91570856,0.268803277 +"MKD",2686.961324,0,25443.14057,0,10.56065118,0 +"MLI",103445.3359,0,1256684.114,0,8.231610053,0 +"MLT",98.095341,3495.870104,324.970466,55696.65564,30.18592496,6.276624806 +"MMR",42878.48881,11964.44587,673078.5676,514147.2175,6.370502772,2.327046702 +"MNE",1456.773173,10.436511,13847.56188,7459.237226,10.52006978,0.139913917 +"MNG",277375.3288,0,1565864.159,0,17.71388196,0 +"MNP",38.441128,257249.9205,501.224059,773667.8566,7.669449882,33.25069257 +"MOZ",170662.3039,12821.00808,791081.8731,574409.6185,21.57327954,2.232032276 +"MRT",6507.878372,6487.581027,1046302.522,156197.8626,0.621988214,4.153437775 +"MSR",11.182345,0.000273,100.664381,7628.258983,11.10854196,3.5788E-06 +"MTQ",1280.73635,47915.67266,1149.925062,47644.30608,100,100 +"MUS",97.460291,49.64392,2062.481937,1280068.317,4.725388827,0.003878224 +"MWI",27190.40907,0,118859.7323,0,22.87604771,0 +"MYS",63418.8825,6977.70038,331700.5726,451741.5382,19.11931656,1.544622265 +"MYT",44.436011,68829.33301,396.377408,63362.33751,11.2105307,100 +"NAM",313534.3576,9646.27499,827465.4339,562727.6243,37.89093112,1.714199654 +"NCL",10413.51706,1325070.398,19141.03171,1371803.153,54.40415763,96.59333378 +"NER",206090.4852,0,1190098.655,0,17.31709252,0 +"NFK",19.957518,189084.3131,42.778966,432638.0836,46.65264233,43.7049627 +"NGA",127359.0344,30.555979,914306.1122,182868.1867,13.92958361,0.016709292 +"NIC",48104.12746,6660.345162,129222.3127,223935.2389,37.22586792,2.974228261 +"NIU",53.434436,36.900176,267.755527,318243.6931,19.95642689,0.011594943 +"NLD",3958.425448,17126.39853,35205.61182,64204.97933,11.24373429,26.67456435 +"NOR",55973.90611,7696.958098,325287.8156,926317.7348,17.20750161,0.830919868 +"NPL",34897.91838,0,147709.5419,0,23.62604199,0 +"NZL",88464.44129,1249447.107,269651.6705,4106953.859,32.80693242,30.42272082 +"OMN",7985.072834,663.989764,310373.1429,538980.1915,2.572733181,0.123193723 +"PAK",98288.08094,1707.397433,798143.6542,222743.9199,12.31458528,0.76652931 +"PAN",15773.05824,5593.115449,75497.94621,332643.4965,20.89203618,1.681414339 +"PCN",37.035971,839648.6171,45.589943,839478.9503,81.23715136,100 +"PER",279619.4414,4036.819355,1298537.038,838329.5928,21.53342055,0.481531296 +"PHL",45762.33428,21269.12928,298774.9046,1835028.192,15.31665932,1.159062808 +"PLW",140.309346,504690.9119,501.101386,608152.4889,28.00019116,82.98756005 +"PNG",14330.33788,4585.469187,467405.9203,2407381.818,3.065929904,0.19047536 +"POL",123906.7111,7210.775928,311923.5191,31945.64308,39.7234269,22.57201682 +"PRI",657.215588,3077.928815,9041.14294,176163.0606,7.269164887,1.747204439 +"PRK",2975.649808,25.611911,122186.1412,115967.2688,2.435341504,0.022085465 +"PRT",21114.47368,285578.3431,92141.09473,1724156.15,22.91537098,16.56336887 +"PRY",57473.44474,0,401498.4235,0,14.31473734,0 +"PSE",516.767863,0,6181.987004,0,8.35925185,0 +"PYF",73.831954,206.943116,3780.061341,4795468.095,1.9531946,0.004315389 +"QAT",1512.836196,538.143058,11435.55274,31987.65323,13.22923544,1.682346167 +"REU",1600.443036,40.854528,2536.304619,316498.9308,63.10137292,0.012908267 +"ROU",58126.49915,6865.607617,237452.8706,29726.44952,24.47917307,23.09595572 +"RUS",1641400.88,228247.3371,16874835.52,7673314.113,9.726914839,2.974560062 +"RWA",2319.729861,0,25452.13068,0,9.114089071,0 +"SAU",92063.63591,5495.452494,1934058.339,220338.2086,4.760127141,2.494098744 +"SDN",42697.53496,10661.95429,1871251.813,66785.64454,2.281763185,15.9644402 +"SEN",50179.21798,1766.175004,197923.9723,158426.4028,25.3527743,1.114823649 +"SGP",33.585431,0.100552,604.646128,762.68502,5.55455984,0.013183948 +"SGS",3971.692688,1065900.045,3971.692688,1445886.657,100,73.71947451 +"SHN",157.137807,453612.5594,434.343214,1647745.112,36.17825764,27.52929177 +"SJM",40092.18364,82714.05977,61261.11552,1081582.098,65.44474957,7.647506364 +"SLB",514.977904,1879.382668,29191.64527,1609756.547,1.764127712,0.116749497 +"SLE",6824.701851,862.533185,72709.02892,160452.5672,9.386319626,0.53756272 +"SLV",1805.57217,664.798852,20573.30437,94238.04744,8.776286673,0.705446335 +"SPM",7.163126,7.021851,237.589267,12367.3281,3.014919862,0.05677743 +"SRB",6687.228547,0,88509.11514,0,7.555412272,0 +"SSD",98214.50384,0,633580.4791,0,15.50150409,0 +"STP",289.416981,35.280222,989.259888,131709.1714,29.25590985,0.026786458 +"SUR",21425.69156,1980.928256,147558.4488,128362.9877,14.52013878,1.543223862 +"SVK",18395.3999,0,48941.21743,0,37.58672315,0 +"SVN",10889.59482,396.970655,20308.54692,186.314047,53.62074827,100 +"SWE",65905.78265,23604.86049,449390.1761,154980.4918,14.66560378,15.23085919 +"SWZ",738.207109,0,17335.867,0,4.258264723,0 +"SXM",0.000136,43.282473,36.455424,497.533856,0.000373058,8.699402559 +"SYC",241.673419,209929.3831,486.864575,1340839.459,49.63873558,15.65656363 +"SYR",1292.567557,25.201794,188612.6151,10203.61673,0.685302813,0.246988834 +"TCA",451.737848,149.820284,1018.174578,154242.1775,44.36742556,0.097133149 +"TCD",259841.8715,0,1276585.969,0,20.3544358,0 +"TGO",15876.86929,30.987414,57480.648,15520.93847,27.6212427,0.1996491 +"THA",97391.375,5773.799574,517786.6125,306890.539,18.80917209,1.881387283 +"TJK",31690.1072,0,142244.2178,0,22.27866109,0 +"TKL",0.998313,9.510634,15.181307,321242.5226,6.575935787,0.002960578 +"TKM",15336.26559,2331.770078,472137.5437,77885.16348,3.248262247,2.993856562 +"TLS",1959.473342,584.110567,15006.53549,42501.27223,13.05746648,1.374336664 +"TON",121.971897,10055.15988,766.502265,668054.6083,15.91279016,1.505140411 +"TTO",1594.834426,37.071977,5213.102096,75798.46305,30.59281013,0.048908613 +"TUN",12286.01772,1042.360893,155230.8391,100660.5035,7.914675845,1.035521239 +"TUR",1709.103181,270.18272,782238.8742,255925.9584,0.218488653,0.105570659 +"TUV",0.815638,62.087748,41.785977,731900.0274,1.951941916,0.008483091 +"TWN",7145.88111,3846.48539,36245.33119,342996.9472,19.71531471,1.121434293 +"TZA",361593.9275,7330.445298,947252.6908,243129.5958,38.17291109,3.015036189 +"UGA",39058.65252,0,243144.8535,0,16.06394376,0 +"UKR",23854.95145,4606.122845,598828.7966,134873.1664,3.983601255,3.41515141 +"UMI",363.497911,1278997.392,363.495,1964384.514,100.0008008,65.10931964 +"URY",6150.088128,931.553409,178459.889,130097.9744,3.446201924,0.716039902 +"USA",1233169.29,3527444.441,9490391.294,8591493.148,12.99387193,41.05740853 +"UZB",15200.69742,0,450362.5106,0,3.375213759,0 +"VCT",91.899504,80.359651,409.906569,36510.93366,22.41962217,0.220097497 +"VEN",496701.1417,16499.94342,917367.6523,473325.0963,54.14417442,3.485964202 +"VGB",15.995538,3.314329,175.605042,80529.47601,9.108814769,0.004115672 +"VIR",51.815838,306.278747,375.62477,36030.25521,13.7945743,0.850059888 +"VNM",24994.30956,3630.264972,329880.371,647232.2216,7.576779875,0.560890643 +"VUT",528.222229,47.509867,12575.12729,622073.2227,4.200531866,0.007637343 +"WLF",0.301679,0,180.605517,0,0.167037533,0 +"WSM",212.692968,114.846969,2893.945283,132305.5976,7.349584985,0.086804316 +"YEM",3519.593039,2562.368242,455938.919,548013.9807,0.77194398,0.467573517 +"ZAF",101336.4817,186106.9994,1224384.577,1542559.897,8.276523866,12.0648151 +"ZMB",286161.0949,0,755640.3907,0,37.87001045,0 +"ZWE",106837.168,0,392573.2003,0,27.21458517,0 diff --git a/lib/data/seeds/marine_statistics.csv b/lib/data/seeds/marine_statistics.csv index 831d99420..f8b25e8d1 100644 --- a/lib/data/seeds/marine_statistics.csv +++ b/lib/data/seeds/marine_statistics.csv @@ -1,9 +1,9 @@ "type","value" -"total_marine_protected_areas","14894" -"total_ocean_pa_coverage_percentage","7.66" -"total_ocean_area_protected","27738316" -"national_waters_pa_coverage_percentage","17.79" -"national_waters_pa_coverage_area","25120163" +"total_marine_protected_areas","15059" +"total_ocean_pa_coverage_percentage","7.68" +"total_ocean_area_protected","27841368" +"national_waters_pa_coverage_percentage","17.86" +"national_waters_pa_coverage_area","25223215" "high_seas_pa_coverage_percentage","1.18" "high_seas_pa_coverage_area","2618153" "national_waters_percentage","39" diff --git a/lib/data/seeds/pame_country_stats.csv b/lib/data/seeds/pame_country_stats.csv index bb794fea7..23007dbea 100644 --- a/lib/data/seeds/pame_country_stats.csv +++ b/lib/data/seeds/pame_country_stats.csv @@ -1,246 +1,246 @@ "iso3","pame_pa_marine_area","pame_pa_land_area","pame_percentage_pa_marine_cover","pame_percentage_pa_land_cover" +"ABNJ",0,0,0,0 "ABW",0,0,0,0 "AFG",0,597.988499,0,88.83295921 -"AGO",19.751236,32400.49499,81.14333375,37.02634749 +"AGO",19.75124,32400.49499,81.14335018,37.02634748 "AIA",0,0,0,0 "ALA",0,0,0,0 -"ALB",42.889141,45.148125,14.0900775,0.885514905 +"ALB",42.88914,45.148125,14.09007718,0.885514908 "AND",0,26.105939,0,20.69923505 -"ARE",2157.773724,8709.828567,34.99400869,68.39879736 -"ARG",2419.277559,64067.96615,5.864921737,27.22057608 -"ARM",0,3445.371044,0,50.22079901 +"ARE",2157.774,8709.828567,34.99401316,68.39879735 +"ARG",2419.278,64069.04353,5.864922806,27.15814689 +"ARM",0,3445.371044,0,50.22079903 "ASM",0,0,0,0 "ATA",0,0,0,0 "ATF",0,0,0,0 "ATG",0,0,0,0 -"AUS",378130.1755,303142.4146,12.54400497,20.37644071 -"AUT",0,584.605885,0,2.453297968 -"AZE",29.971197,3351.484434,8.679400519,38.09213818 -"BDI",0,1422.09236,0,68.8429321 +"AUS",378130.2,303142.4146,12.54400578,20.3764323 +"AUT",0,584.605885,0,2.442308769 +"AZE",29.9712,3351.484434,8.679401388,38.09213818 +"BDI",0,1422.09236,0,68.84293206 "BEL",0,0,0,0 -"BEN",0,11330.99346,0,32.9686422 +"BEN",0,11330.99346,0,32.96864214 "BES",0,0,0,0 -"BFA",0,4959.123073,0,12.04906779 -"BGD",738.144196,931.396849,16.2938517,14.42745507 -"BGR",8.252788,4708.788266,0.289373359,10.46483498 +"BFA",0,4959.123073,0,12.04906747 +"BGD",738.1442,931.396849,16.29385178,14.42745507 +"BGR",8.252788,4708.788267,0.289373359,10.46483496 "BHR",0,0,0,0 -"BHS",3460.290417,4215.672449,7.307052755,85.50784703 +"BHS",3460.291,4215.672449,7.307053986,85.50784703 "BIH",0,692.468616,0,96.86937901 "BLM",0,0,0,0 -"BLR",0,4035.285491,0,20.81861644 -"BLZ",2442.620226,7982.925278,66.85530417,95.01608358 +"BLR",0,4035.285495,0,20.81861538 +"BLZ",2442.62,7982.925278,66.85529799,95.01658181 "BMU",0,0,0,0 -"BOL",0,155396.1212,0,46.19309131 -"BRA",18353.70672,954460.8295,1.877055026,38.03661845 +"BOL",0,155396.1212,0,46.19294851 +"BRA",18353.71,954460.8295,1.877055361,38.03661972 "BRB",0,0,0,0 "BRN",0,0,0,0 -"BTN",0,15508.71277,0,80.89584909 +"BTN",0,15508.71277,0,80.89584961 "BVT",0,0,0,0 -"BWA",0,111968.2861,0,66.10879195 +"BWA",0,111968.2861,0,66.10876523 "CAF",0,38632.06062,0,34.24004946 -"CAN",7843.33898,339369.7778,4.734446089,31.98771742 +"CAN",7843.339,339369.7778,4.734446101,31.98807111 "CCK",0,0,0,0 -"CHE",0,2610.795858,0,63.18707401 -"CHL",1282.760609,43637.92495,0.085148266,28.12540808 -"CHN",832.712621,200412.8047,1.753386878,13.71271022 -"CIV",3.723091,17647.95855,2.855730203,23.7936236 -"CMR",1184.14415,35645.82916,70.25486555,69.59248515 -"COD",31.363659,158805.5811,100,48.97028462 -"COG",1197.464959,33631.09748,93.52905927,24.01679166 +"CHE",0,2610.795858,0,63.18707402 +"CHL",1282.761,43637.92495,0.085148292,28.12540737 +"CHN",832.7126,200412.8047,1.753386834,13.71271013 +"CIV",3.723091,17647.95855,2.855730203,23.79362359 +"CMR",1184.144,35645.82916,70.25485665,69.59248436 +"COD",31.36366,158805.5811,100.0000032,48.97028536 +"COG",1197.465,33631.09748,93.52906247,24.01679044 "COK",0,0,0,0 -"COL",32065.61446,132998.5605,25.72025297,78.44462552 +"COL",32065.62,132998.5605,25.72025741,78.44462555 "COM",0,0,0,0 "CPV",0,102.417916,0,85.26056503 -"CRI",4443.430402,10510.76419,29.50153328,71.95125258 +"CRI",4443.43,10510.76419,29.50153061,71.95125414 "CUB",0,0,0,0 "CUW",0,0,0,0 "CXR",0,0,0,0 "CYM",0,0,0,0 -"CYP",0.045084,1157.1392,0.037272145,34.17333372 -"CZE",0,7498.75301,0,43.43254648 -"DEU",8265.143145,2011.829926,32.33306505,1.485948734 +"CYP",0.045238,1157.122558,0.037399461,34.17295521 +"CZE",0,7498.753014,0,43.4325465 +"DEU",8265.144,2011.829926,32.33306839,1.485825513 "DJI",0,0,0,0 "DMA",0,67.392445,0,40.00283577 -"DNK",4100.051145,2991.245118,22.86331653,36.4660499 -"DOM",1471.48947,7154.422034,3.026178316,56.21276578 +"DNK",4092.992,2953.217551,22.82395227,35.50341713 +"DOM",1471.49,7154.422034,3.026179406,56.21276547 "DZA",0,144306.4858,0,82.83069119 -"ECU",139291.1005,48203.62096,96.64573965,86.1082497 -"EGY",11046.30476,76110.32685,94.2854004,58.822502 +"ECU",139291.1,48203.62096,96.64573932,86.10843576 +"EGY",11046.3,76110.32685,94.2853598,58.822502 "ERI",0,0,0,0 "ESH",0,0,0,0 -"ESP",656.657064,13573.6003,0.779645863,9.532078771 -"EST",1158.202759,3256.848705,17.11328876,35.35792066 -"ETH",0,34834.27392,0,17.41069719 -"FIN",3011.535293,27574.28549,36.05660798,54.17183322 -"FJI",111.434696,11.103878,0.931804988,1.071273062 +"ESP",656.657,13573.6003,0.779645787,9.532460323 +"EST",1158.203,3256.848705,17.11329232,35.35792475 +"ETH",0,34834.27392,0,17.41069715 +"FIN",3011.53,27574.25829,36.05654461,61.56933985 +"FJI",111.4347,11.103878,0.931805021,1.071273062 "FLK",0,0,0,0 -"FRA",113.230769,4994.572408,0.073098375,3.502598407 +"FRA",113.2308,4994.572407,0.073098395,3.501507662 "FRO",0,0,0,0 "FSM",0,0,0,0 -"GAB",1408.687712,28707.11162,2.528126473,48.07937905 -"GBR",128428.4901,27457.60087,61.48698291,39.02649375 -"GEO",152.961902,4920.293085,99.99935409,84.37900094 +"GAB",1408.688,28707.11162,2.52812699,48.07937904 +"GBR",128437.3,27462.93862,61.49120077,39.02952418 +"GEO",152.9619,4920.293085,99.99935278,84.37900103 "GGY",0,0,0,0 -"GHA",218.290035,2627.975725,98.82862048,7.26894967 +"GHA",218.29,2627.975725,98.82860464,7.268949646 "GIB",0,0,0,0 -"GIN",450.561029,14861.02776,77.25022569,16.91794967 +"GIN",450.561,14861.02776,77.25022072,16.91794944 "GLP",0,0,0,0 -"GMB",15.848759,439.347997,100,99.43008705 -"GNB",2108.862653,2195.713469,19.78160651,38.73930432 -"GNQ",6.850682,3123.690636,0.938816118,59.74660551 -"GRC",408.342947,1857.398302,1.828999771,3.965236673 +"GMB",15.84876,439.347997,100.0000063,99.43008705 +"GNB",2108.863,2195.713469,19.78160976,38.73930432 +"GNQ",6.850682,3123.690636,0.938816118,59.74660552 +"GRC",408.343,1857.398301,1.829000009,3.965236665 "GRD",0.224225,9.543075,0.989156795,26.1272493 -"GRL",402.139927,5749.926976,0.393001244,0.648642579 -"GTM",1026.826696,11453.61015,96.3980939,51.97061547 -"GUF",0,20378.74318,0,46.28349827 +"GRL",402.1399,5749.926976,0.393001218,0.649234172 +"GTM",1026.827,11453.61015,96.39812244,51.97057566 +"GUF",0,20378.74318,0,46.28349826 "GUM",0,0,0,0 -"GUY",17.404509,14712.79354,100,79.72860071 +"GUY",17.40451,14712.79354,100.0000057,79.72860019 "HKG",0,0,0,0 -"HMD",6050.480012,391.198904,8.587902002,100 -"HND",505.211829,17848.42983,5.5248564,65.95799873 -"HRV",383.491263,4710.295613,8.095560514,21.65422519 +"HMD",6050.48,391.198904,8.587901985,100 +"HND",505.2118,17848.42983,5.524856083,65.95799863 +"HRV",383.4913,4710.295613,8.095561295,21.6542251 "HTI",0,214.416118,0,40.1469921 -"HUN",0,761.419935,0,3.617358162 -"IDN",4776.106781,135466.5054,2.626425474,58.40435212 +"HUN",0,761.419935,0,3.617358164 +"IDN",4776.107,135466.5054,2.626425594,58.40440786 "IMN",0,0,0,0 -"IND",1415.361164,101826.7364,36.02961316,55.75065646 +"IND",1415.361,101826.7364,36.02960898,55.75065645 "IOT",0,0,0,0 -"IRL",84.712829,115.19557,0.851804767,1.13746187 -"IRN",1150.567318,13309.78741,63.61490875,9.491683805 +"IRL",85.63199,115.16912,0.861047118,1.137423278 +"IRN",1150.567,13309.78741,63.61489117,9.491683765 "IRQ",0,1377.958757,0,20.52443974 -"ISL",31.664754,660.869357,1.105959257,3.558436594 +"ISL",31.66475,660.869357,1.105959118,3.558436594 "ISR",0,0,0,0 -"ITA",323.400216,4313.251668,0.682358583,6.645502874 -"JAM",1857.765027,1382.157305,99.88028602,78.52280719 +"ITA",323.4002,4313.251668,0.682358549,6.645502865 +"JAM",1857.765,1382.157305,99.88028457,78.52280719 "JEY",0,0,0,0 "JOR",0,1110.121003,0,40.02486418 "JPN",0,0,0,0 -"KAZ",0,19251.39769,0,21.37072645 -"KEN",82.853874,30070.46761,9.166237396,41.45107301 -"KGZ",0,1304.758795,0,9.735183114 -"KHM",83.487803,38597.11149,93.69383602,81.25124972 -"KIR",408247.3769,84.15276,99.86566192,36.44779653 +"KAZ",0,19251.39769,0,21.37072618 +"KEN",82.85387,30070.46761,9.166236953,41.45100696 +"KGZ",0,1304.758795,0,9.735185751 +"KHM",83.4878,38597.11149,93.69383265,81.25124964 +"KIR",408247.4,84.15276,99.86566756,36.44779653 "KNA",0,0,0,0 -"KOR",2974.726551,5908.943245,56.0293085,50.77451947 -"KWT",0.803143,325.01945,0.456397036,10.66250656 +"KOR",2974.727,5908.943245,56.02931695,50.77451945 +"KWT",0.803143,325.01945,0.456397036,10.66251712 "LAO",0,0,0,0 "LBN",0,160.942124,0,59.99096442 -"LBR",251.813348,2410.410591,98.3455254,61.56921117 +"LBR",251.8134,2410.410591,98.34554571,61.56921115 "LBY",0,0,0,0 "LCA",3.375011,16.034291,9.924449164,13.74522607 "LIE",0,17.90587,0,25.40582792 -"LKA",0,633.838902,0,3.185520494 +"LKA",0,633.838902,0,3.185520493 "LSO",0,106.28689,0,100 -"LTU",197.267,862.575853,12.58316053,7.832091068 -"LUX",0,487.74825,0,36.60709764 -"LVA",88.098228,689.650057,1.9022347,5.883961094 +"LTU",197.267,862.575852,12.58316053,7.827284867 +"LUX",0,487.74825,0,36.60709759 +"LVA",88.09823,689.650057,1.902234743,5.883961069 "MAF",0,0,0,0 -"MAR",122.555157,481.694005,17.07108682,0.384275645 +"MAR",122.5552,481.694005,17.07109281,0.384275647 "MCO",0,0,0,0 "MDA",0,977.221645,0,69.32234742 -"MDG",2692.456031,28442.54711,29.92391803,85.56172599 +"MDG",2692.456,28442.54711,29.92391768,85.56172599 "MDV",0,0,0,0 -"MEX",27060.13537,50443.76209,3.822365232,17.75092814 +"MEX",27060.13,50443.76209,3.822364474,17.75074866 "MHL",0,0,0,0 -"MKD",0,2327.918061,0,86.63757235 +"MKD",0,2327.918061,0,86.63757409 "MLI",0,96284.8915,0,93.07804037 -"MLT",0.112344,1.381463,0.003213621,1.408286047 -"MMR",45.372269,2470.118126,0.379225829,5.760739697 +"MLT",0.114063,1.381179,0.003262793,1.410153106 +"MMR",45.37227,2470.118126,0.379225837,5.760739703 "MNE",0,360.163693,0,24.72338863 -"MNG",0,191400.5021,0,69.00415509 +"MNG",0,191400.5021,0,69.00417147 "MNP",2.717568,3.66404,0.001056392,9.531562133 -"MOZ",1475.904093,37856.48131,11.51160723,22.18209906 -"MRT",6487.581024,6412.382649,99.99999995,98.53261359 +"MOZ",1475.904,37856.48131,11.51160651,22.18209541 +"MRT",6487.581,6412.382649,99.99999958,98.53261239 "MSR",0,0,0,0 "MTQ",0,0,0,0 -"MUS",3.781151,63.292144,7.61654398,64.94146832 -"MWI",0,14516.39618,0,53.38792862 -"MYS",488.888147,159.639473,7.00643651,0.251722305 +"MUS",3.781152,63.292144,7.616545994,64.94146832 +"MWI",0,14516.39618,0,53.38792815 +"MYS",488.8882,159.639473,7.00643727,0.251722308 "MYT",0,0,0,0 -"NAM",243.836272,129581.956,2.527776497,41.32942781 -"NCL",15558.31027,193.965358,1.174149712,1.862630626 -"NER",0,185159.7879,0,89.8439284 +"NAM",243.8363,129581.956,2.527776787,41.3294279 +"NCL",15558.31,193.965358,1.174149692,1.862630626 +"NER",0,185159.7879,0,89.84392843 "NFK",1.490433,0.437185,0.000788237,2.190578007 "NGA",0,14587.9616,0,11.45420242 -"NIC",15.247216,6264.978855,0.228925313,13.02378649 +"NIC",15.24722,6264.978855,0.228925373,13.0237865 "NIU",0,0,0,0 "NLD",0,0,0,0 -"NOR",100.448365,1144.665339,1.30503978,2.04499814 +"NOR",100.4484,1144.665339,1.305040234,2.044998636 "NPL",0,25086.47133,0,71.88529428 -"NZL",14582.23041,26072.78157,1.167094656,29.47261203 +"NZL",14582.23,26072.78157,1.167094623,29.47261203 "OMN",0,0,0,0 "PAK",0,236.931869,0,0.241058597 -"PAN",4734.788461,14868.06258,84.65386606,94.26239577 +"PAN",4734.789,14868.06258,84.6538757,94.26239281 "PCN",4.251021,37.035971,0.000506286,100 -"PER",4030.949761,183216.2726,99.85459855,65.52343845 -"PHL",1523.50019,5807.692147,7.162964547,12.69098755 -"PLW",115.391022,11.742839,0.022863701,8.36924933 -"PNG",4224.550042,13748.05877,92.12906836,95.93673842 -"POL",7154.635434,48371.64273,99.22143616,39.03875932 +"PER",4030.95,183216.2726,99.85460447,65.52340758 +"PHL",1523.5,5807.692147,7.162963654,12.69098755 +"PLW",115.391,11.742839,0.022863697,8.36924933 +"PNG",4224.55,13748.05877,92.12906745,95.93679433 +"POL",7155.256,48405.35756,99.23004225,39.07039825 "PRI",0,0,0,0 "PRK",0,0,0,0 -"PRT",1009.099826,10817.02968,0.353353064,51.23040169 -"PRY",0,9793.229867,0,17.03957351 +"PRT",1009.1,10817.02969,0.353353125,51.23040168 +"PRY",0,9793.229867,0,17.03959412 "PSE",0,0,0,0 -"PYF",6.700815,8.888061,3.237998504,12.03823076 +"PYF",6.700816,8.888061,3.237998987,12.03823076 "QAT",0,0,0,0 "REU",0.88487,1064.426636,2.165904352,66.50824878 -"ROU",693.909197,11756.17288,10.10703256,20.22515213 -"RUS",181483.1944,614316.0267,79.51163714,37.42632492 -"RWA",0,2216.080247,0,95.53182395 -"SAU",0,17931.57748,0,19.47737269 -"SDN",0,15953.71057,0,37.36447685 -"SEN",1634.797457,11320.72925,92.56146493,22.56059323 +"ROU",693.9092,11756.17288,10.1070326,20.19109694 +"RUS",181483.2,614316.0267,79.51163959,37.42632809 +"RWA",0,2216.080247,0,95.53182255 +"SAU",0,17931.57748,0,19.47737272 +"SDN",0,15953.71057,0,37.36447637 +"SEN",1634.797,11320.72925,92.56143906,22.56059323 "SGP",0,32.273776,0,96.09457148 "SGS",0,0,0,0 "SHN",0,0,0,0 "SJM",0,0,0,0 -"SLB",519.261187,308.937747,27.6293485,59.99048592 -"SLE",122.954659,2637.099469,14.25506417,38.64050806 -"SLV",206.773048,84.110066,31.10309944,4.65836079 +"SLB",519.2612,308.937747,27.62934919,59.99048592 +"SLE",122.9547,2637.099469,14.25506892,38.64050806 +"SLV",206.773,84.110066,31.10309222,4.65836079 "SPM",0,0,0,0 -"SRB",0,4074.584863,0,60.93084503 -"SSD",0,59270.90155,0,60.34842027 +"SRB",0,4074.584863,0,60.93084504 +"SSD",0,59270.90155,0,60.34843126 "STP",0,0,0,0 -"SUR",1980.333327,20899.47606,99.96996716,97.5439976 -"SVK",0,10893.15729,0,59.2167463 -"SVN",0.405681,2453.81524,0.102194204,22.53357706 -"SWE",1079.94217,10548.05225,4.575083893,16.0047447 +"SUR",1980.333,20899.47606,99.96995065,97.54399756 +"SVK",0,10893.15729,0,59.21674633 +"SVN",0.405681,2453.498722,0.102194204,22.55571561 +"SWE",1079.942,10548.05225,4.575083172,16.47266863 "SWZ",0,0,0,0 "SXM",0,0,0,0 -"SYC",2435.292329,167.222355,1.160053106,69.19352393 +"SYC",2435.292,167.222355,1.160052949,69.19352393 "SYR",0,110.229277,0,8.527931589 "TCA",0,0,0,0 -"TCD",0,148803.0423,0,57.26676823 +"TCD",0,148803.0423,0,57.26676838 "TGO",0,3778.47929,0,23.79864204 -"THA",0,39157.93662,0,40.20678076 +"THA",0,39157.93662,0,40.20678075 "TJK",0,26003.31263,0,82.05498476 "TKL",0,0,0,0 -"TKM",1956.802706,8680.141558,83.91919617,56.59879525 +"TKM",1956.803,8680.141558,83.91920878,56.59879523 "TLS",0,0,0,0 "TON",8.097808,42.045119,0.080533856,34.47115281 "TTO",0,0,0,0 -"TUN",225.015183,440.642829,21.58707071,3.586539096 -"TUR",128.252747,798.750156,47.46889327,46.73504589 +"TUN",225.0152,440.642829,21.58707234,3.586539096 +"TUR",128.2527,798.750156,47.46887588,46.73504589 "TUV",0,0,0,0 "TWN",0,0,0,0 -"TZA",4069.645366,118704.1099,55.51702796,32.82801533 -"UGA",0,16000.01107,0,40.96406311 -"UKR",130.023291,7084.633604,2.822835938,29.69879699 -"UMI",2305.16164,1.457914,0.180231927,0.401079059 -"URY",666.038675,1732.364584,71.49763702,28.16812618 -"USA",1537642.023,154799.9749,43.59082187,12.55301896 -"UZB",0,2345.749366,0,15.43185356 -"VCT",50.385389,49.16401,62.69986041,53.49757927 -"VEN",7759.711633,146352.8809,47.02871663,29.46497775 +"TZA",4069.645,118704.1099,55.51702297,32.82801792 +"UGA",0,16000.01107,0,40.96405862 +"UKR",130.0233,7084.633604,2.822836133,29.6987962 +"UMI",2305.162,1.457914,0.180231955,0.401079059 +"URY",666.0387,1732.364584,71.4976397,28.1681258 +"USA",1537642,154799.9749,43.59082123,12.55296557 +"UZB",0,2345.749366,0,15.43185373 +"VCT",50.38539,49.16401,62.69986165,53.49757927 +"VEN",7759.711,146352.8809,47.02871279,29.46498641 "VGB",0,0,0,0 -"VIR",20.501216,39.564814,6.693646295,76.35660355 -"VNM",716.175414,13486.51236,19.72791021,53.95833131 +"VIR",20.50122,39.564814,6.693647601,76.35660355 +"VNM",716.1754,13486.51236,19.72790982,53.9583251 "VUT",0.802327,30.02523,1.688758674,5.684204176 "WLF",0,0,0,0 "WSM",0,0,0,0 -"YEM",1234.214383,2874.019964,48.16694036,81.6577352 -"ZAF",2933.636036,62220.48599,1.576316874,61.39988773 -"ZMB",0,105470.4633,0,36.85702396 -"ZWE",0,24348.5903,0,22.79037414 ->>>>>>> Stashed changes +"YEM",1234.214,2874.019964,48.16692542,81.6577352 +"ZAF",2933.636,62220.48599,1.576316855,61.39987963 +"ZMB",0,105470.4633,0,36.85702421 +"ZWE",0,24348.5903,0,22.79037413 diff --git a/lib/data/seeds/pame_country_stats_old.csv b/lib/data/seeds/pame_country_stats_old.csv new file mode 100644 index 000000000..8dd39850d --- /dev/null +++ b/lib/data/seeds/pame_country_stats_old.csv @@ -0,0 +1,245 @@ +"iso3","pame_pa_marine_area","pame_pa_land_area","pame_percentage_pa_marine_cover","pame_percentage_pa_land_cover" +"ABW",0,0,0,0 +"AFG",0,597.988499,0,88.83295921 +"AGO",19.751236,32400.49499,81.14333375,37.02634749 +"AIA",0,0,0,0 +"ALA",0,0,0,0 +"ALB",42.889141,45.148125,14.0900775,0.885514905 +"AND",0,26.105939,0,20.69923505 +"ARE",2157.773724,8709.828567,34.99400869,68.39879736 +"ARG",2419.277559,64067.96615,5.864921737,27.22057608 +"ARM",0,3445.371044,0,50.22079901 +"ASM",0,0,0,0 +"ATA",0,0,0,0 +"ATF",0,0,0,0 +"ATG",0,0,0,0 +"AUS",378130.1755,303142.4146,12.54400497,20.37644071 +"AUT",0,584.605885,0,2.453297968 +"AZE",29.971197,3351.484434,8.679400519,38.09213818 +"BDI",0,1422.09236,0,68.8429321 +"BEL",0,0,0,0 +"BEN",0,11330.99346,0,32.9686422 +"BES",0,0,0,0 +"BFA",0,4959.123073,0,12.04906779 +"BGD",738.144196,931.396849,16.2938517,14.42745507 +"BGR",8.252788,4708.788266,0.289373359,10.46483498 +"BHR",0,0,0,0 +"BHS",3460.290417,4215.672449,7.307052755,85.50784703 +"BIH",0,692.468616,0,96.86937901 +"BLM",0,0,0,0 +"BLR",0,4035.285491,0,20.81861644 +"BLZ",2442.620226,7982.925278,66.85530417,95.01608358 +"BMU",0,0,0,0 +"BOL",0,155396.1212,0,46.19309131 +"BRA",18353.70672,954460.8295,1.877055026,38.03661845 +"BRB",0,0,0,0 +"BRN",0,0,0,0 +"BTN",0,15508.71277,0,80.89584909 +"BVT",0,0,0,0 +"BWA",0,111968.2861,0,66.10879195 +"CAF",0,38632.06062,0,34.24004946 +"CAN",7843.33898,339369.7778,4.734446089,31.98771742 +"CCK",0,0,0,0 +"CHE",0,2610.795858,0,63.18707401 +"CHL",1282.760609,43637.92495,0.085148266,28.12540808 +"CHN",832.712621,200412.8047,1.753386878,13.71271022 +"CIV",3.723091,17647.95855,2.855730203,23.7936236 +"CMR",1184.14415,35645.82916,70.25486555,69.59248515 +"COD",31.363659,158805.5811,100,48.97028462 +"COG",1197.464959,33631.09748,93.52905927,24.01679166 +"COK",0,0,0,0 +"COL",32065.61446,132998.5605,25.72025297,78.44462552 +"COM",0,0,0,0 +"CPV",0,102.417916,0,85.26056503 +"CRI",4443.430402,10510.76419,29.50153328,71.95125258 +"CUB",0,0,0,0 +"CUW",0,0,0,0 +"CXR",0,0,0,0 +"CYM",0,0,0,0 +"CYP",0.045084,1157.1392,0.037272145,34.17333372 +"CZE",0,7498.75301,0,43.43254648 +"DEU",8265.143145,2011.829926,32.33306505,1.485948734 +"DJI",0,0,0,0 +"DMA",0,67.392445,0,40.00283577 +"DNK",4100.051145,2991.245118,22.86331653,36.4660499 +"DOM",1471.48947,7154.422034,3.026178316,56.21276578 +"DZA",0,144306.4858,0,82.83069119 +"ECU",139291.1005,48203.62096,96.64573965,86.1082497 +"EGY",11046.30476,76110.32685,94.2854004,58.822502 +"ERI",0,0,0,0 +"ESH",0,0,0,0 +"ESP",656.657064,13573.6003,0.779645863,9.532078771 +"EST",1158.202759,3256.848705,17.11328876,35.35792066 +"ETH",0,34834.27392,0,17.41069719 +"FIN",3011.535293,27574.28549,36.05660798,54.17183322 +"FJI",111.434696,11.103878,0.931804988,1.071273062 +"FLK",0,0,0,0 +"FRA",113.230769,4994.572408,0.073098375,3.502598407 +"FRO",0,0,0,0 +"FSM",0,0,0,0 +"GAB",1408.687712,28707.11162,2.528126473,48.07937905 +"GBR",128428.4901,27457.60087,61.48698291,39.02649375 +"GEO",152.961902,4920.293085,99.99935409,84.37900094 +"GGY",0,0,0,0 +"GHA",218.290035,2627.975725,98.82862048,7.26894967 +"GIB",0,0,0,0 +"GIN",450.561029,14861.02776,77.25022569,16.91794967 +"GLP",0,0,0,0 +"GMB",15.848759,439.347997,100,99.43008705 +"GNB",2108.862653,2195.713469,19.78160651,38.73930432 +"GNQ",6.850682,3123.690636,0.938816118,59.74660551 +"GRC",408.342947,1857.398302,1.828999771,3.965236673 +"GRD",0.224225,9.543075,0.989156795,26.1272493 +"GRL",402.139927,5749.926976,0.393001244,0.648642579 +"GTM",1026.826696,11453.61015,96.3980939,51.97061547 +"GUF",0,20378.74318,0,46.28349827 +"GUM",0,0,0,0 +"GUY",17.404509,14712.79354,100,79.72860071 +"HKG",0,0,0,0 +"HMD",6050.480012,391.198904,8.587902002,100 +"HND",505.211829,17848.42983,5.5248564,65.95799873 +"HRV",383.491263,4710.295613,8.095560514,21.65422519 +"HTI",0,214.416118,0,40.1469921 +"HUN",0,761.419935,0,3.617358162 +"IDN",4776.106781,135466.5054,2.626425474,58.40435212 +"IMN",0,0,0,0 +"IND",1415.361164,101826.7364,36.02961316,55.75065646 +"IOT",0,0,0,0 +"IRL",84.712829,115.19557,0.851804767,1.13746187 +"IRN",1150.567318,13309.78741,63.61490875,9.491683805 +"IRQ",0,1377.958757,0,20.52443974 +"ISL",31.664754,660.869357,1.105959257,3.558436594 +"ISR",0,0,0,0 +"ITA",323.400216,4313.251668,0.682358583,6.645502874 +"JAM",1857.765027,1382.157305,99.88028602,78.52280719 +"JEY",0,0,0,0 +"JOR",0,1110.121003,0,40.02486418 +"JPN",0,0,0,0 +"KAZ",0,19251.39769,0,21.37072645 +"KEN",82.853874,30070.46761,9.166237396,41.45107301 +"KGZ",0,1304.758795,0,9.735183114 +"KHM",83.487803,38597.11149,93.69383602,81.25124972 +"KIR",408247.3769,84.15276,99.86566192,36.44779653 +"KNA",0,0,0,0 +"KOR",2974.726551,5908.943245,56.0293085,50.77451947 +"KWT",0.803143,325.01945,0.456397036,10.66250656 +"LAO",0,0,0,0 +"LBN",0,160.942124,0,59.99096442 +"LBR",251.813348,2410.410591,98.3455254,61.56921117 +"LBY",0,0,0,0 +"LCA",3.375011,16.034291,9.924449164,13.74522607 +"LIE",0,17.90587,0,25.40582792 +"LKA",0,633.838902,0,3.185520494 +"LSO",0,106.28689,0,100 +"LTU",197.267,862.575853,12.58316053,7.832091068 +"LUX",0,487.74825,0,36.60709764 +"LVA",88.098228,689.650057,1.9022347,5.883961094 +"MAF",0,0,0,0 +"MAR",122.555157,481.694005,17.07108682,0.384275645 +"MCO",0,0,0,0 +"MDA",0,977.221645,0,69.32234742 +"MDG",2692.456031,28442.54711,29.92391803,85.56172599 +"MDV",0,0,0,0 +"MEX",27060.13537,50443.76209,3.822365232,17.75092814 +"MHL",0,0,0,0 +"MKD",0,2327.918061,0,86.63757235 +"MLI",0,96284.8915,0,93.07804037 +"MLT",0.112344,1.381463,0.003213621,1.408286047 +"MMR",45.372269,2470.118126,0.379225829,5.760739697 +"MNE",0,360.163693,0,24.72338863 +"MNG",0,191400.5021,0,69.00415509 +"MNP",2.717568,3.66404,0.001056392,9.531562133 +"MOZ",1475.904093,37856.48131,11.51160723,22.18209906 +"MRT",6487.581024,6412.382649,99.99999995,98.53261359 +"MSR",0,0,0,0 +"MTQ",0,0,0,0 +"MUS",3.781151,63.292144,7.61654398,64.94146832 +"MWI",0,14516.39618,0,53.38792862 +"MYS",488.888147,159.639473,7.00643651,0.251722305 +"MYT",0,0,0,0 +"NAM",243.836272,129581.956,2.527776497,41.32942781 +"NCL",15558.31027,193.965358,1.174149712,1.862630626 +"NER",0,185159.7879,0,89.8439284 +"NFK",1.490433,0.437185,0.000788237,2.190578007 +"NGA",0,14587.9616,0,11.45420242 +"NIC",15.247216,6264.978855,0.228925313,13.02378649 +"NIU",0,0,0,0 +"NLD",0,0,0,0 +"NOR",100.448365,1144.665339,1.30503978,2.04499814 +"NPL",0,25086.47133,0,71.88529428 +"NZL",14582.23041,26072.78157,1.167094656,29.47261203 +"OMN",0,0,0,0 +"PAK",0,236.931869,0,0.241058597 +"PAN",4734.788461,14868.06258,84.65386606,94.26239577 +"PCN",4.251021,37.035971,0.000506286,100 +"PER",4030.949761,183216.2726,99.85459855,65.52343845 +"PHL",1523.50019,5807.692147,7.162964547,12.69098755 +"PLW",115.391022,11.742839,0.022863701,8.36924933 +"PNG",4224.550042,13748.05877,92.12906836,95.93673842 +"POL",7154.635434,48371.64273,99.22143616,39.03875932 +"PRI",0,0,0,0 +"PRK",0,0,0,0 +"PRT",1009.099826,10817.02968,0.353353064,51.23040169 +"PRY",0,9793.229867,0,17.03957351 +"PSE",0,0,0,0 +"PYF",6.700815,8.888061,3.237998504,12.03823076 +"QAT",0,0,0,0 +"REU",0.88487,1064.426636,2.165904352,66.50824878 +"ROU",693.909197,11756.17288,10.10703256,20.22515213 +"RUS",181483.1944,614316.0267,79.51163714,37.42632492 +"RWA",0,2216.080247,0,95.53182395 +"SAU",0,17931.57748,0,19.47737269 +"SDN",0,15953.71057,0,37.36447685 +"SEN",1634.797457,11320.72925,92.56146493,22.56059323 +"SGP",0,32.273776,0,96.09457148 +"SGS",0,0,0,0 +"SHN",0,0,0,0 +"SJM",0,0,0,0 +"SLB",519.261187,308.937747,27.6293485,59.99048592 +"SLE",122.954659,2637.099469,14.25506417,38.64050806 +"SLV",206.773048,84.110066,31.10309944,4.65836079 +"SPM",0,0,0,0 +"SRB",0,4074.584863,0,60.93084503 +"SSD",0,59270.90155,0,60.34842027 +"STP",0,0,0,0 +"SUR",1980.333327,20899.47606,99.96996716,97.5439976 +"SVK",0,10893.15729,0,59.2167463 +"SVN",0.405681,2453.81524,0.102194204,22.53357706 +"SWE",1079.94217,10548.05225,4.575083893,16.0047447 +"SWZ",0,0,0,0 +"SXM",0,0,0,0 +"SYC",2435.292329,167.222355,1.160053106,69.19352393 +"SYR",0,110.229277,0,8.527931589 +"TCA",0,0,0,0 +"TCD",0,148803.0423,0,57.26676823 +"TGO",0,3778.47929,0,23.79864204 +"THA",0,39157.93662,0,40.20678076 +"TJK",0,26003.31263,0,82.05498476 +"TKL",0,0,0,0 +"TKM",1956.802706,8680.141558,83.91919617,56.59879525 +"TLS",0,0,0,0 +"TON",8.097808,42.045119,0.080533856,34.47115281 +"TTO",0,0,0,0 +"TUN",225.015183,440.642829,21.58707071,3.586539096 +"TUR",128.252747,798.750156,47.46889327,46.73504589 +"TUV",0,0,0,0 +"TWN",0,0,0,0 +"TZA",4069.645366,118704.1099,55.51702796,32.82801533 +"UGA",0,16000.01107,0,40.96406311 +"UKR",130.023291,7084.633604,2.822835938,29.69879699 +"UMI",2305.16164,1.457914,0.180231927,0.401079059 +"URY",666.038675,1732.364584,71.49763702,28.16812618 +"USA",1537642.023,154799.9749,43.59082187,12.55301896 +"UZB",0,2345.749366,0,15.43185356 +"VCT",50.385389,49.16401,62.69986041,53.49757927 +"VEN",7759.711633,146352.8809,47.02871663,29.46497775 +"VGB",0,0,0,0 +"VIR",20.501216,39.564814,6.693646295,76.35660355 +"VNM",716.175414,13486.51236,19.72791021,53.95833131 +"VUT",0.802327,30.02523,1.688758674,5.684204176 +"WLF",0,0,0,0 +"WSM",0,0,0,0 +"YEM",1234.214383,2874.019964,48.16694036,81.6577352 +"ZAF",2933.636036,62220.48599,1.576316874,61.39988773 +"ZMB",0,105470.4633,0,36.85702396 +"ZWE",0,24348.5903,0,22.79037414 diff --git a/lib/data/seeds/pame_data-2019-04-25.csv b/lib/data/seeds/pame_data-2019-04-25.csv deleted file mode 100644 index 23760ca29..000000000 --- a/lib/data/seeds/pame_data-2019-04-25.csv +++ /dev/null @@ -1,28169 +0,0 @@ -evaluation_id,wdpa_id,country,methodology,year,url,metadata_id,name,designation,source_data_title,source_resp_party,source_year,source_language -1,555622076,United Arab Emirates,METT,2016,For storage only,1,Al Aqqa,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -2,555622075,United Arab Emirates,METT,2016,For storage only,1,Al Bidiya,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -3,555622070,United Arab Emirates,METT,2016,For storage only,1,Al Ghaf of Nazwa,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -4,555542444,United Arab Emirates,METT,2016,For storage only,1,Al Houbara,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -5,555622067,United Arab Emirates,METT,2016,For storage only,1,Al Marmoun Desert,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -6,555622077,United Arab Emirates,METT,2016,For storage only,1,Al Naseem,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -7,555558374,United Arab Emirates,METT,2016,For storage only,1,Al Wathba,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -8,555622072,United Arab Emirates,METT,2016,For storage only,1,Al Wohoosh Desert,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -9,555542441,United Arab Emirates,METT,2016,For storage only,1,Al Yasat,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -10,555558373,United Arab Emirates,METT,2016,For storage only,1,Alqurm Wa Lehfeiyah,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -11,555622078,United Arab Emirates,METT,2016,For storage only,1,Al Zorah,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -12,555542442,United Arab Emirates,METT,2016,For storage only,1,Arabian Oryx,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -13,555622074,United Arab Emirates,METT,2016,For storage only,1,Birds Island (Jazeerat Al Tuyur),Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -14,555622073,United Arab Emirates,METT,2016,For storage only,1,Dhadna,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -15,365025,United Arab Emirates,METT,2016,For storage only,1,Dubai Desert Conservation Reserve (Al Maha),Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -16,17360,United Arab Emirates,METT,2016,For storage only,1,Eastern Mangrove,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -17,555622069,United Arab Emirates,METT,2016,For storage only,1,Ed-Dhelaimah,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -18,555622084,United Arab Emirates,METT,2016,For storage only,1,Elebriddi,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -19,555622086,United Arab Emirates,METT,2016,For storage only,1,Elfaya,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -20,312960,United Arab Emirates,METT,2016,For storage only,1,Hatta,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -21,312886,United Arab Emirates,METT,2016,For storage only,1,Jabal Ali,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -22,555592552,United Arab Emirates,METT,2016,For storage only,1,Jazirat Sir Bu Na'air,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -23,555542446,United Arab Emirates,METT,2016,For storage only,1,Marawah,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -24,555622071,United Arab Emirates,METT,2016,For storage only,1,Nazwa Mountain,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -25,555622082,United Arab Emirates,METT,2016,For storage only,1,Qaser Al Sarab,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -26,555542722,United Arab Emirates,METT,2016,For storage only,1,Ras Al Khor,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -27,555622079,United Arab Emirates,METT,2016,For storage only,1,Ras Ghanada,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -28,555542723,United Arab Emirates,METT,2016,For storage only,1,Wadi Wurayah,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -29,555622083,United Arab Emirates,METT,2016,For storage only,1,Wasit,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -31,555622068,United Arab Emirates,METT,2016,For storage only,1,Lemdynah Protected Area,Protected Area,UAE Management Effectiveness Evaluation,Ministry of Climate Change and Environment,2018,Arabic -32,555625667,Andorra,National Inventory,2016,For storage only,2,Parc Natural de la Vall de Sorteny,Municipal Natural Park,Andorra Management Effectiveness Evaluation,"Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,Catalan -33,555625666,Andorra,National Inventory,2017,For storage only,2,Parc Natural Comunal de les Valls del Comapedrosa,Municipal Natural Park,Andorra Management Effectiveness Evaluation,"Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,Catalan -34,555549480,Andorra,National Inventory,2016,For storage only,2,Parc Natural de la Vall de Sorteny,"Ramsar Site, Wetland of International Importance",Andorra Management Effectiveness Evaluation,"Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,Catalan -35,555592572,Andorra,National Inventory,2017,For storage only,2,Parc Natural Comunal de les Valls del Comapedrosa,"Ramsar Site, Wetland of International Importance",Andorra Management Effectiveness Evaluation,"Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,Catalan -36,19612,Argentina,METT,2010,For storage only,3,Punta Tombo,Tourist Nature Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -37,555558356,Argentina,METT,2012,For storage only,3,Aves Migratorias,Provincial Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -38,97481,Argentina,METT,2009,For storage only,3,Bahía de San Antonio,Protected Landscape,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -39,21226,Argentina,METT,2009,For storage only,3,Cabo Vírgenes,Provincial Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -40,300021,Argentina,Valdiviana,2001,For storage only,3,Cañada Molina,Provincial Nature Monument,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -41,300025,Argentina,Valdiviana,2001,For storage only,3,Cerro Currumahuida,Forest Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -42,18,Argentina,METT,2009,For storage only,3,Chaco,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -43,30844,Argentina,METT,2009,For storage only,3,Complejo Islote Lobos,Scientific Nature Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -44,16873,Argentina,Valdiviana,2001,For storage only,3,Copahue Caviahue,Provincial Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -45,16846,Argentina,METT,2010,For storage only,3,Copo,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -46,98129,Argentina,METT,2012,For storage only,3,Costa Atlántica Tierra del Fuego,Hemispheric Shorebird Reserve and Ramsar Site,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -47,10722,Argentina,GOBI Survey,2006,For storage only,3,Costero del Sur,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -48,220252,Argentina,GOBI Survey,2006,For storage only,3,Delta del Parana,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -49,77777,Argentina,Valdiviana,2001,For storage only,3,Boswell Bay Beaches,State Marine Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -50,16890,Argentina,METT,2005,For storage only,3,Iberá,Provincial Nature Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -51,4332,Argentina,METT,2003,For storage only,3,Iguazú,National Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -52,10901,Argentina,WHA Outlook Report,2014,For storage only,3,Parc national de l'Iguazu,World Heritage Site,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -53,16900,Argentina,METT,2009,For storage only,3,Ría de Puerto Deseado,Intangible Nature Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -54,220291,Argentina,WHA Outlook Report,2014,For storage only,3,Parcs naturels d’Ischigualasto / Talampaya,World Heritage Site,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -55,300054,Argentina,METT,2010,For storage only,3,Isla Pinguinos,Provincial Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -56,900669,Argentina,METT,2009,For storage only,3,Jaaukanigás,"Ramsar Site, Wetland of International Importance",Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -57,300059,Argentina,Valdiviana,2001,For storage only,3,Lago Baggilt,Protected Nature Area,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -58,300060,Argentina,Valdiviana,2001,For storage only,3,Lago Guacho,Forest Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -59,17,Argentina,Parks profiles,2006,For storage only,3,Lago Puelo,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -60,17,Argentina,Valdiviana,2001,For storage only,3,Lago Puelo,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -61,166726,Argentina,Valdiviana,2001,For storage only,3,Lago Puelo,National Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -62,97479,Argentina,Valdiviana,2001,For storage only,3,Laguna Los Juncos,Wildlife Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -63,900662,Argentina,GOBI Survey,2006,For storage only,3,Laguna Oca del Rio Paraguay,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -64,7,Argentina,Valdiviana,2001,For storage only,3,Lanín,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -65,4330,Argentina,Valdiviana,2001,For storage only,3,Lanín,National Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -66,7,Argentina,Parks profiles,2006,For storage only,3,Lanín,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -67,900725,Argentina,GOBI Survey,2006,For storage only,3,Las Yungas,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -68,900725,Argentina,METT,2003,For storage only,3,Las Yungas,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -69,61822,Argentina,METT,2003,For storage only,3,Los Alerces,National Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -70,8,Argentina,Parks profiles,2006,For storage only,3,Los Alerces,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -71,8,Argentina,Valdiviana,2001,For storage only,3,Los Alerces,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -72,61822,Argentina,Valdiviana,2001,For storage only,3,Los Alerces,National Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -73,22,Argentina,Valdiviana,2001,For storage only,3,Los Arrayanes,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -74,16892,Argentina,METT,2003,For storage only,3,Monte de las Barrancas,Wildlife Refuge,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -75,2570,Argentina,WHA Outlook Report,2014,For storage only,3,Parc national de Los Glaciares,World Heritage Site,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -76,97545,Argentina,METT,2009,For storage only,3,Mburucuyá,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -77,166727,Argentina,METT,2003,For storage only,3,Monte León,National Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -78,11646,Argentina,GOBI Survey,2006,For storage only,3,Ñancuñan,Ecological and Forest Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -79,2497,Argentina,Parks profiles,2005,For storage only,3,Nahuel Huapi,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -80,2497,Argentina,Valdiviana,2001,For storage only,3,Nahuel Huapi,National Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -81,61824,Argentina,Valdiviana,2001,For storage only,3,Nahuel Huapi,National Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -82,300073,Argentina,Valdiviana,2001,For storage only,3,Nant y Fall (Arroyo Las Caídas),Tourist Nature Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -83,555558361,Argentina,METT,2012,For storage only,3,Patagonia Austral,Interjurisdictional Coastal Marine Park,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -84,198291,Argentina,WHA Outlook Report,2014,For storage only,3,Península Valdés,World Heritage Site,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -85,555558344,Argentina,METT,2012,For storage only,3,Puerto Lobos,Protected Landscape,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -86,16880,Argentina,METT,2009,For storage only,3,Punta Bermeja,Protected Nature Area,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -87,16831,Argentina,METT,2010,For storage only,3,Punta Lara,Mixed Integral Nature Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -88,16882,Argentina,METT,2009,For storage only,3,Caleta de los Loros,Multiple Use Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -89,900779,Argentina,Birdlife IBA,2013,For storage only,3,Bañados del Río Dulce y Laguna de Mar Chiquita,"Ramsar Site, Wetland of International Importance",Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -90,555587123,Argentina,Birdlife IBA,2013,For storage only,3,Bañados R Dulce y Lag Mar Chiquita,Multiple Use Provincial Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -91,97483,Argentina,Valdiviana,2001,For storage only,3,Ría Azul - Lago Escondido,Protected Nature Area,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -92,97478,Argentina,Valdiviana,2001,For storage only,3,Rio Limay,Protected Nature Area - Protected Landscape,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -93,19604,Argentina,METT,2003,For storage only,3,Bahía de Samborombón,Integral Nature Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -94,23,Argentina,GOBI Survey,2006,For storage only,3,San Guillermo,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -95,98129,Argentina,METT,2009,For storage only,3,Costa Atlántica Tierra del Fuego,Hemispheric Shorebird Reserve and Ramsar Site,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -96,555587168,Argentina,GOBI Survey,2014,For storage only,3,Valdes,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -97,900725,Argentina,GOBI Survey,2009,For storage only,3,Las Yungas,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -98,145501,Argentina,GOBI Survey,2009,For storage only,3,Parque Atlantico Mar Chiquito,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -99,16894,Argentina,GOBI Survey,2009,For storage only,3,Laguna de los Pozuelos,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -100,5082,Argentina,GOBI Survey,2009,For storage only,3,Laguna Blanca,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -101,220252,Argentina,GOBI Survey,2009,For storage only,3,Delta del Parana,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -102,23,Argentina,GOBI Survey,2009,For storage only,3,San Guillermo,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -103,10722,Argentina,GOBI Survey,2009,For storage only,3,Costero del Sur,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -104,555547531,Argentina,GOBI Survey,2009,For storage only,3,Pereyra Iraola,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -105,555587169,Argentina,GOBI Survey,2009,For storage only,3,Andino Nopatagonica,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -106,900662,Argentina,GOBI Survey,2009,For storage only,3,Laguna Oca del Rio Paraguay,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -107,220253,Argentina,GOBI Survey,2009,For storage only,3,Riacho Teuquito,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -108,11584,Argentina,GOBI Survey,2009,For storage only,3,Ñacuñan,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -109,93409,Argentina,GOBI Survey,2009,For storage only,3,Yabotí,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -110,555626096,Argentina,GOBI Survey,2015,For storage only,3,Patagonia Azul,UNESCO-MAB Biosphere Reserve,Áreas Protegidas enfocadas a la Efectividad del Manejo,"Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,Spanish -111,301949,Bhutan,Bhutan METT+,2016,For storage only,4,Bumdeling ,Widlife Sanctuary,Bhutan protected areas management effectiveness evaluations,Ministry of Agriculture and Forests,2018,English -112,5061,Bhutan,Bhutan METT+,2016,For storage only,4,Jigme Dorji ,National Park,Bhutan protected areas management effectiveness evaluations,Ministry of Agriculture and Forests,2018,English -114,5066,Bhutan,Bhutan METT+,2016,For storage only,4,Jigme Singye Wangchuck ,National Park,Bhutan protected areas management effectiveness evaluations,Ministry of Agriculture and Forests,2018,English -115,64417,Bhutan,Bhutan METT+,2016,For storage only,4,Phibsoo ,Widlife Sanctuary,Bhutan protected areas management effectiveness evaluations,Ministry of Agriculture and Forests,2018,English -117,20445,Bhutan,Bhutan METT+,2016,For storage only,4,Phrumsengla ,National Park,Bhutan protected areas management effectiveness evaluations,Ministry of Agriculture and Forests,2018,English -118,7996,Bhutan,Bhutan METT+,2016,For storage only,4,Royal Manas,National Park,Bhutan protected areas management effectiveness evaluations,Ministry of Agriculture and Forests,2018,English -119,64415,Bhutan,Bhutan METT+,2016,For storage only,4,Sakteng,Widlife Sanctuary,Bhutan protected areas management effectiveness evaluations,Ministry of Agriculture and Forests,2018,English -121,555576122,Bhutan,Bhutan METT+,2016,For storage only,4,Wangchuck Centennial ,National Park,Bhutan protected areas management effectiveness evaluations,Ministry of Agriculture and Forests,2018,English -122,9786,Malaysia,METT,2011,For storage only,5,Pulau Redang,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -123,9786,Malaysia,METT,2013,For storage only,5,Pulau Redang,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -124,9786,Malaysia,METT,2005,For storage only,5,Pulau Redang,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -125,9812,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2015,For storage only,5,Pulau Sipadan,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -126,10028,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Perhentian Besar,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -127,18307,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Tioman,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -128,19636,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2015,For storage only,5,Pulau Rawa,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -129,19637,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Babi Hujong,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -130,19638,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Babi Tengah,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -131,19639,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Babi Besar,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -132,19640,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Tinggi,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -133,19641,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Mentigi,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -134,19642,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Sibu,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -135,19643,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Ceben,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -136,19644,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Tulai,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -137,19645,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Sembilang,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -138,19646,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Seri Buat,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -139,19647,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2015,For storage only,5,Pulau Perhentian Kecil,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -140,19648,Malaysia,Combination of Methods (PAME and METT),2012,For storage only,5,Pulau Lang Tengah,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -141,198387,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Sibu Hujung,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -142,198389,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Gual,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -143,198391,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Harimau,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -144,198392,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Mensirip,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -145,198394,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Pemanggil,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -146,198395,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Aur,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -147,198397,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Sri Buat,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -148,198401,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2015,For storage only,5,Pulau Susu Dara,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -149,198402,Malaysia,Combination of Methods (PAME and METT),2012,For storage only,5,Pulau Lima,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -150,198406,Malaysia,Combination of Methods (PAME and METT),2012,For storage only,5,Pulau Ekor Tebu,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -151,198407,Malaysia,Combination of Methods (PAME and METT),2012,For storage only,5,Pulau Pinang,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -152,198410,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Labas,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -153,198411,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Sepoi,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -154,198412,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Jahat,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -155,198413,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2014,For storage only,5,Pulau Tokong Bara,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -156,198420,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2016,For storage only,5,Pulau Rusukan Besar,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -157,198421,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2016,For storage only,5,Pulau Rusukan Kecil,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -158,198422,Malaysia,Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.,2016,For storage only,5,Pulau Kuraman,Marine Park,Compendium of Data for Marine Parks 2015-2016,Department of Marine Park Malaysia,2018,Bahasa Malaysian -159,555592745,Colombia,AEMAPPS,2016,For storage only,6,Acandi Playon Y Playona,Fauna Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -160,303541,Colombia,AEMAPPS,2016,For storage only,6,Alto Fragua - Indiwasi,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -161,135,Colombia,AEMAPPS,2016,For storage only,6,Amacayacu,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -162,555592746,Colombia,AEMAPPS,2016,For storage only,6,Bahia Portete Kaurrele,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -163,20002,Colombia,AEMAPPS,2016,For storage only,6,Campo Alegre,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -164,19993,Colombia,AEMAPPS,2016,For storage only,6,Catatumbo - Bari,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -165,143,Colombia,AEMAPPS,2016,For storage only,6,Chingaza,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -166,166738,Colombia,AEMAPPS,2016,For storage only,6,"Sistema Delta Estuarino del Río Magdalena, Ciénaga Grande de Santa Marta","Ramsar Site, Wetland of International Importance",Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -167,555511940,Colombia,AEMAPPS,2016,For storage only,6,Complejo Volcanico Doña Juana Cascabel,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -168,555592686,Colombia,AEMAPPS,2016,For storage only,6,Corales De Profundidad,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -169,2234,Colombia,AEMAPPS,2016,For storage only,6,Los Corales Del Rosario Y De San Bernardo,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -170,134,Colombia,AEMAPPS,2016,For storage only,6,Cordillera De Los Picachos,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -171,153,Colombia,AEMAPPS,2016,For storage only,6,Cueva De Los Guacharos,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -172,133,Colombia,AEMAPPS,2016,For storage only,6,El Cocuy,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -173,303546,Colombia,AEMAPPS,2016,For storage only,6,"El Corchal ""el Mono Hernandez""",Fauna and Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -174,129,Colombia,AEMAPPS,2016,For storage only,6,El Tuparro,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -175,138,Colombia,AEMAPPS,2016,For storage only,6,Los Farallones De Cali,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -176,12223,Colombia,AEMAPPS,2016,For storage only,6,Galeras,Fauna and Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -177,10754,Colombia,AEMAPPS,2016,For storage only,6,Gorgona,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -178,35272,Colombia,AEMAPPS,2016,For storage only,6,Guanenta-alto Rio Fonce,Fauna and Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -179,127,Colombia,AEMAPPS,2016,For storage only,6,Iguaque,Fauna and Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -180,3009,Colombia,AEMAPPS,2016,For storage only,6,Isla De La Corota,Fauna and Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -181,150,Colombia,AEMAPPS,2016,For storage only,6,Isla De Salamanca,Park Way,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -182,142,Colombia,AEMAPPS,2016,For storage only,6,Los Katios,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -183,9400,Colombia,AEMAPPS,2016,For storage only,6,La Paya,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -184,139,Colombia,AEMAPPS,2016,For storage only,6,Las Hermosas - Gloria Valencia De Castaño,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -185,148,Colombia,AEMAPPS,2016,For storage only,6,Las Orquideas,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -186,128,Colombia,AEMAPPS,2016,For storage only,6,Los Colorados,Fauna and Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -187,31398,Colombia,AEMAPPS,2016,For storage only,6,Los Estoraques,Natual Area,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -188,555592786,Colombia,AEMAPPS,2016,For storage only,6,Los Flamencos,Fauna and Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -189,147,Colombia,AEMAPPS,2016,For storage only,6,Los Nevados,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -190,149,Colombia,AEMAPPS,2016,For storage only,6,Macuira,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -191,303552,Colombia,AEMAPPS,2016,For storage only,6,Malpelo,Fauna and Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -192,146,Colombia,AEMAPPS,2016,For storage only,6,Munchique,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -193,136,Colombia,AEMAPPS,2016,For storage only,6,Nevado Del Huila,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -194,19992,Colombia,AEMAPPS,2016,For storage only,6,Nukak,Natural Reserve,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -195,35271,Colombia,AEMAPPS,2016,For storage only,6,Old Providence Mc Bean Lagoon,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -196,555511938,Colombia,AEMAPPS,2016,For storage only,6,Plantas Medicinales Orito Ingi Ande,Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -197,303548,Colombia,AEMAPPS,2016,For storage only,6,Otun Quimbaya,Fauna and Flora Sanctuary,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -198,131,Colombia,AEMAPPS,2016,For storage only,6,Paramillo,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -199,145,Colombia,AEMAPPS,2016,For storage only,6,Pisba,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -200,19991,Colombia,AEMAPPS,2016,For storage only,6,Puinawai,Natural Reserve,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -201,141,Colombia,AEMAPPS,2016,For storage only,6,Purace,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -202,303547,Colombia,AEMAPPS,2016,For storage only,6,Rio Pure,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -203,140,Colombia,AEMAPPS,2016,For storage only,6,Sanquianga,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -204,555511937,Colombia,AEMAPPS,2016,For storage only,6,Selva De Florencia,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -205,19984,Colombia,AEMAPPS,2016,For storage only,6,Serrania De Chiribiquete,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -206,555511941,Colombia,AEMAPPS,2016,For storage only,6,Serrania De Los Churumbelos,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -207,555511939,Colombia,AEMAPPS,2016,For storage only,6,Serrania De Los Yariguies,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -208,130,Colombia,AEMAPPS,2016,For storage only,6,Sierra De La Macarena,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -209,132,Colombia,AEMAPPS,2016,For storage only,6,Sierra Nevada De Santa Marta,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -210,137,Colombia,AEMAPPS,2016,For storage only,6,Sumapaz,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -211,144,Colombia,AEMAPPS,2016,For storage only,6,Tama,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -212,13966,Colombia,AEMAPPS,2016,For storage only,6,Tatama,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -213,152,Colombia,AEMAPPS,2016,For storage only,6,Tayrona,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -214,19995,Colombia,AEMAPPS,2016,For storage only,6,Tinigua,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -215,555555692,Colombia,AEMAPPS,2016,For storage only,6,Uramba Bahia Malaga,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -216,303549,Colombia,AEMAPPS,2016,For storage only,6,Utria,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -217,555511936,Colombia,AEMAPPS,2016,For storage only,6,Yaigoje Apaporis,Natural National Park,Colombia protected areas management effectiveness evaluations,National Natural Parks Service of Colombia,2018,Spanish -218,1295,Côte d'Ivoire,METT,2017,For storage only,7,Mount Nimba Integral Reserve,Integral National Reserve,Côte d'Ivoire Management Effectiveness Evaluation,Office Ivorien des Parcs et Réserves,2018,French -219,721,Côte d'Ivoire,METT,2017,For storage only,7,Tai National Park,National Park,Côte d'Ivoire Management Effectiveness Evaluation,Office Ivorien des Parcs et Réserves,2018,French -220,7522,Côte d'Ivoire,METT,2017,For storage only,7,Azagny National Park,National Park,Côte d'Ivoire Management Effectiveness Evaluation,Office Ivorien des Parcs et Réserves,2018,French -221,20174,Côte d'Ivoire,METT,2017,For storage only,7,Iles Ehotile National Park,National Park,Côte d'Ivoire Management Effectiveness Evaluation,Office Ivorien des Parcs et Réserves,2018,French -222,723,Côte d'Ivoire,METT,2017,For storage only,7,Mont Sangbe National Park,National Park,Côte d'Ivoire Management Effectiveness Evaluation,Office Ivorien des Parcs et Réserves,2018,French -223,7523,Côte d'Ivoire,METT,2017,For storage only,7,Comoe National Park,National Park,Côte d'Ivoire Management Effectiveness Evaluation,Office Ivorien des Parcs et Réserves,2018,French -224,9545,Côte d'Ivoire,Enhancing Our Heritage,2017,For storage only,7,Comoé National Park,World Heritage Site,Côte d'Ivoire Management Effectiveness Evaluation,Office Ivorien des Parcs et Réserves,2018,French -225,349975,Greece,Birdlife IBA,2013,For storage only,8,Ethniko Parko Ygrotopon Amvrakikou,National Park,Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -226,349976,Greece,Birdlife IBA,2013,For storage only,8,Ethniko Parko Ygrotopon Amvrakikou - Periochi prostasias tis fysis,Nature reserve zone in National Park,Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -227,555527018,Greece,Birdlife IBA,2013,For storage only,8,"Amvrakikos Kolpos, Delta Lourou Kai Arachthou (Petra, Mytikas, Evryteri Periochi)",Site of Community Importance (Habitats Directive),Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -228,555539662,Greece,Birdlife IBA,2013,For storage only,8,"Amvrakikos Kolpos, Limnothalassa Katafourko Kai Korakonisia",Special Protection Area (Birds Directive),Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -229,555527017,Greece,Birdlife IBA,2013,For storage only,8,Antichasia Ori - Meteora,Site of Community Importance (Habitats Directive),Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -230,555539660,Greece,Birdlife IBA,2013,For storage only,8,Antichasia Ori Kai Meteora,Special Protection Area (Birds Directive),Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -231,11865,Greece,METT,2003,For storage only,8,Ethniko parko dasous Dadias - Lefkimmis - Soufliou,National Park,Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -232,18862,Greece,WHA Outlook Report,2014,For storage only,8,Meteora,World Heritage Site,Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -233,18863,Greece,WHA Outlook Report,2014,For storage only,8,Mount Athos,World Heritage Site,Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -234,3025,Greece,GOBI Survey,2006,For storage only,8,Mount Olympus National Park,UNESCO-MAB Biosphere Reserve,Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -235,673,Greece,METT,2003,For storage only,8,Pindos,Core zone in National (Woodland) Park,Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -236,12431,Greece,Wetland tracking tool,2005,For storage only,8,Not Reported,Not Reported,Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -237,3026,Greece,GOBI Survey,2006,For storage only,8,Gorge of Samaria National Park,UNESCO-MAB Biosphere Reserve,Greece Management Effectiveness Evaluation,Ministry of Environment and energy,2018,Greek -238,115868,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Anhatomirim,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -239,115993,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Barra Do Rio Mamanguape,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -240,31756,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Carste Da Lagoa Santa,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -241,31755,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Cavernas Do Peruaçu,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -242,198356,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Chapada Do Araripe,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -243,555576473,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Costa Das Algas,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -244,313631,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Costa Dos Corais,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -245,351727,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Da Bacia Do Rio São João - Mico Leão,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -246,351716,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Da Baleia Franca,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -247,19458,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental De Cairuçu,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -248,116096,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental De Fernando De Noronha,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -249,351840,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental De Guapi-Mirim,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -250,7906,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental De Guaraqueçaba,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -251,16105,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental De Petrópolis,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -252,115666,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Delta Do Parnaiba,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -253,19755,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Do Igarapé Gelado,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -254,351841,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Do Planalto Central,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -255,351813,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Do Tapajós,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -256,555600305,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Ibirapuitã,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -257,198367,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Ilhas E Várzeas Do Rio Paraná,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -258,351746,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Meandros Do Araguaia,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -259,198355,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Serra Da Ibiapaba,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -260,555600306,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Serra Da Mantiqueira,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -261,478423,Brazil,RAPPAM,2015,For storage only,9,Área De Proteção Ambiental Serra Da Meruoca,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -262,351721,Brazil,RAPPAM,2015,For storage only,9,Área De Relevante Interesse Ecológico Ilhas Queimada Grande E Queimada Pequena,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -263,351821,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Da Guanabara,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -264,555512220,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Da Serra Das Araras,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -265,351711,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Da Terra Do Meio,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -266,2216,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Aracuri-Esmeralda,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -267,5124,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Caracaraí,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -268,10822,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Carijós,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -269,351762,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Cuniã,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -270,18738,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Guaraqueçaba,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -271,10845,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Jutaí-Solimões,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -272,2218,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Maracá,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -273,2219,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Maracá Jipioca,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -274,10826,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Niquiá,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -275,10823,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Pirapitinga,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -276,2220,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Taiamã,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -277,116085,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Tamoios,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -278,2221,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica De Uruçuí-Una,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -279,351766,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Do Castanhão,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -280,4891,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Do Jari,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -281,5123,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Do Seridó,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -282,7908,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Do Taim,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -283,18740,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Dos Tupiniquins,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -284,10830,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Juami-Japurá,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -285,351728,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Mico Leão Preto,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -286,10842,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Raso Da Catarina,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -287,2222,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Rio Acre,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -288,33608,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Samuel,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -289,115772,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Do Rio Ronuro,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -290,33712,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Do Rio Roosevelt,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -291,198359,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Altamira,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -292,351789,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Da Mata Grande,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -293,351791,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Da Restinga De Cabedelo,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -294,478413,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Açungui,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -295,19745,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Amapá,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -296,351714,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Anauá,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -297,351820,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Balata-Tufari,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -298,19759,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Bom Futuro,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -299,10811,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Canela,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -300,351722,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Capão Bonito,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -301,198360,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Carajás,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -302,10803,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Caxiuanã,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -303,351717,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Chapecó,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -304,351732,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Goytacazes,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -305,198350,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Humaitá,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -306,19763,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Ibirama,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -307,351809,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Irati,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -308,198361,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Itacaiunas,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -309,198362,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Itaituba I,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -310,198363,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Itaituba Ii,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -311,351792,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Jacundá,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -312,351763,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Jatuarana,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -313,351726,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Lorena,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -314,33751,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Macauã,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -315,31763,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Mapiá-Inauiní,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -316,19758,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Mário Xavier,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -317,351779,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Mulata,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -318,354008,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Negreiros,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -319,351764,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Nísia Floresta,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -320,351731,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Pacotuba,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -321,351807,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Palmares,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -322,351810,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Passa Quatro,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -323,10814,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Passo Fundo,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -324,351835,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Pau-Rosa,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -325,351790,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Piraí Do Sul,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -326,19746,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Purus,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -327,31768,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Roraima,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -328,351752,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De São Francisco,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -329,351811,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Silvânia,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -330,351771,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Sobral,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -331,10802,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Tapajós,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -332,31770,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Tapirapé-Aquiri,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -333,19747,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Tefé,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -334,10808,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional De Três Barras,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -335,351817,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Do Amaná,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -336,31759,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Do Amazonas,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -337,351788,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Do Araripe-Apodi,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -338,351815,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Do Crepori,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -339,478418,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Do Iquiri,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -340,351814,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Do Jamanxim,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -341,10815,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Do Jamari,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -342,351816,Brazil,RAPPAM,2015,For storage only,9,Floresta Nacional Do Trairão,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -343,478424,Brazil,RAPPAM,2015,For storage only,9,Monumento Natural Do Rio São Francisco,Natural Monument,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -344,351842,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Chandless,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -345,352062,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Da Serra Dos Martírios/Andorinhas,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -346,352027,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Do Xingu,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -347,352197,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Igarapés Do Juruena,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -348,555576433,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Do Matupiri,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -349,33617,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Serra Dos Reis,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -350,351741,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Cavernas Do Peruaçu,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -351,55,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Amazônia,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -352,351806,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Chapada Das Mesas,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -353,19447,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Chapada Diamantina,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -354,19273,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Chapada Dos Guimarães,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -355,19448,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Lagoa Do Peixe,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -356,1974,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra Da Bocaina,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -357,351730,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra Da Bodoquena,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -358,65,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra Da Canastra,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -359,64,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra Da Capivara,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -360,351748,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra Da Cutia,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -361,351827,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra De Itabaiana,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -362,19275,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra Do Divisor,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -363,351828,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra Do Itajaí,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -364,351712,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra Do Pardo,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -365,351804,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Das Araucárias,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -366,62,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Das Emas,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -367,2215,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional De Anavilhanas,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -368,71,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional De Aparados Da Serra,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -369,555600317,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional De Boa Nova,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -370,351793,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional De Ilha Grande,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -371,56,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional De Pacaás Novos,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -372,351718,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional De Saint-Hilaire/Lange,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -373,66,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional De São Joaquim,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -374,73,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional De Sete Cidades,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -375,75,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional De Ubajara,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -376,555576266,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Alto Cariri,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -377,57,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Cabo Orange,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -378,351818,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Jamanxim,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -379,53,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Jaú,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -380,351839,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Juruena,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -381,68,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Monte Pascoal,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -382,19762,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Monte Roraima,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -383,2581,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Pantanal Matogrossense,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -384,54,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Pico Da Neblina,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -385,351819,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Rio Novo,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -386,19274,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Superagui,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -387,351833,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Dos Campos Amazônicos,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -388,351824,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Dos Campos Gerais,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -389,19272,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Grande Sertão Veredas,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -390,478431,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Mapinguari,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -391,81060,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Marinho Dos Abrolhos,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -392,351784,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Montanhas Do Tumucumaque,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -393,478419,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Nascentes Do Lago Jari,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -394,198353,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Pau Brasil,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -395,198369,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Restinga De Jurubatiba,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -396,198351,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Serra Da Mocidade,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -397,198281,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Viruá,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -398,2186,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Augusto Ruschi,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -399,351738,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Da Mata Escura,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -400,351825,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Das Araucárias,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -401,351823,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Das Perobas,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -402,6957,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica De Saltinho,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -403,18745,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica De Santa Isabel,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -404,52,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica De Serra Negra,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -405,48,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica De Una,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -406,5127,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Abufari,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -407,18742,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Córrego Grande,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -408,5126,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Guaporé,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -409,10795,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Gurupi,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -410,44,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Jaru,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -411,42,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Lago Piratuba,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -412,43,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Rio Trombetas,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -413,6074,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Tapirapé,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -414,18744,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Tinguá,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -415,31752,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Do Uatumã,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -416,31750,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Guaribas,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -417,31751,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Marinha Do Arvoredo,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -418,351795,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Nascentes Serra Do Cachimbo,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -419,168214,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica União,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -420,352139,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Cujubim,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -421,555576482,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Do Matupiri,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -422,555576206,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Do Rio Negro,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -423,19769,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Mamirauá,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -424,352137,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Rio Amapá,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -425,555599928,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Guariba-Roosevelt,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -426,31774,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Alto Juruá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -427,351759,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Alto Tarauacá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -428,351834,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Arapixi,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -429,351777,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Auatí-Paraná,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -430,351772,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Baixo Juruá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -431,351749,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Barreiro Das Antas,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -432,555576283,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Canutama,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -433,352135,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Catuá-Ipixuna,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -434,351756,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Cazumbá-Iracema,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -435,354007,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Chapada Limpa,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -436,31775,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Chico Mendes,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -437,351822,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Chocoaré-Mato Grosso,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -438,351737,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Corumbau,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -439,351829,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista De Canavieiras,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -440,351778,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista De Cururupu,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -441,351770,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Do Batoque,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -442,478409,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Do Ciriáco,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -443,351767,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Do Lago Do Capanã Grande,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -444,555576438,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Do Rio Gregório,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -445,351773,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Do Rio Jutaí,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -446,351802,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Ipaú-Anilzinho,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -447,478421,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Ituxí,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -448,351837,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Lago Do Cedro,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -449,351761,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Lago Do Cuniã,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -450,351781,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Maracanã,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -451,351725,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Marinha Arraial Do Cabo,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -452,351753,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Marinha Da Lagoa Do Jequiá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -453,351799,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Marinha De Gurupi-Piriá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -454,67715,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Marinha Pirajubaé,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -455,351797,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Marinha Tracuateua,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -456,351768,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Mata Grande,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -457,351769,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Médio Juruá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -458,478425,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Prainha Do Canto Verde,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -459,478426,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Renascer,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -460,31776,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Rio Cajari,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -461,34026,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Rio Cautário,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -462,351830,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Rio Iriri,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -463,31777,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Rio Ouro Preto,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -464,33716,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Rio Pacaás Novos,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -465,478422,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Rio Xingu,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -466,351713,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Riozinho Da Liberdade,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -467,351785,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Riozinho Do Anfrísio,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -468,351780,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista São João Da Ponta,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -469,351776,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Tapajós Arapiuns,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -470,351831,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Terra Grande Pracuuba,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -471,351786,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Verde Para Sempre,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -472,555576210,Brazil,RAPPAM,2015,For storage only,9,Refúgio De Vida Silvestre De Santa Cruz,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -473,478415,Brazil,RAPPAM,2015,For storage only,9,Refúgio De Vida Silvestre De Una,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -474,478416,Brazil,RAPPAM,2015,For storage only,9,Refúgio De Vida Silvestre Do Rio Dos Frades,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -475,351826,Brazil,RAPPAM,2015,For storage only,9,Refúgio De Vida Silvestre Dos Campos De Palmas,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -476,61,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Dos Lençois Maranhenses,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -477,70,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Do Itatiaia,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -478,10821,Brazil,RAPPAM,2015,For storage only,9,Área De Relevante Interesse Ecológica Manguezais Da Foz Do Rio Mamanguape,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -479,10843,Brazil,RAPPAM,2015,For storage only,9,Refugio De Vida Silvestre Ilha Dos Lobos,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -480,18739,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Tupinambás,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -481,33609,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Serra Dos Três Irmãos,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -482,33612,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual De Guajará-Mirim,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -483,33613,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual De Corumbiara,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -484,33714,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Rio Preto-Jacundá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -485,33831,Brazil,RAPPAM,2015,For storage only,9,Área De Relevante Interesse Ecológica Javari Buriti,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -486,41084,Brazil,RAPPAM,2015,For storage only,9,Área De Relevante Interesse Ecológica Vale Dos Dinossauros,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -487,41087,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Mar. De Fernando De Noronha,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -488,67692,Brazil,RAPPAM,2015,For storage only,9,Área De Relevante Interesse Ecológica Projeto Dinâmica Biológica De Fragmentos Florestais,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -489,115769,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Serra Ricardo Franco,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -490,115907,Brazil,RAPPAM,2015,For storage only,9,Área De Relevante Interesse Ecológica Floresta Da Cicuta,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -491,115976,Brazil,RAPPAM,2015,For storage only,9,Área De Relevante Interesse Ecológica Mata De Santa Genebra,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -492,115977,Brazil,RAPPAM,2015,For storage only,9,Área De Relevante Interesse Ecológica Matão De Cosmópolis,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -493,351744,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Marinha Da Baia De Iguapé,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -494,351747,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Do Rio Cautário,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -495,351758,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Das Nascentes Do Rio Parnaiba,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -496,351801,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Itatupã-Baquiá,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -497,351832,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Do Rio Unini,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -498,352013,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Do Cantão,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -499,352134,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Amanã,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -500,352136,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Piagaçu Purus,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -501,352138,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Uacarí,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -502,352140,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Do Uatumã,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -503,352146,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Rio Negro Setor Sul,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -504,352149,Brazil,RAPPAM,2015,For storage only,9,Parque Estadual Rio Negro Setor Norte,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -505,352198,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Do Grão Pará,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -506,352202,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica De Maicuru,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -507,478408,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Quilombo Do Frechal,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -508,478420,Brazil,RAPPAM,2015,For storage only,9,Reserva Extrativista Do Médio Purús,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -509,478539,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Do Juma,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -510,555576157,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Furna Feia,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -511,555576236,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Igapó-Açu,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -512,555576325,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Marinho Das Ilhas Dos Currais,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -513,555576334,Brazil,RAPPAM,2015,For storage only,9,Reserva Biológica Bom Jesus,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -514,555576352,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Da Serra Das Lontras,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -515,555599975,Brazil,RAPPAM,2015,For storage only,9,Parque Nacional Guaricana,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -516,555600076,Brazil,RAPPAM,2015,For storage only,9,Estação Ecológica Alto Maués,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -517,555600159,Brazil,RAPPAM,2015,For storage only,9,Reserva De Desenvolvimento Sustentável Nascentes Geraizeiras,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -518,115868,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Anhatomirim,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -519,478429,Brazil,SAMGe,2016,For storage only,9,APA Bacia do Paraíba do Sul,Área de Proteção Ambiental » environmental protection areas (IUCN category V),Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -520,115993,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Barra Do Rio Mamanguape,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -521,31756,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Carste Da Lagoa Santa,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -522,31755,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Cavernas Do Peruaçu,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -523,198356,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Chapada Do Araripe,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -524,555576473,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Costa Das Algas,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -525,313631,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Costa Dos Corais,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -526,19751,Brazil,SAMGe,2016,For storage only,9,APA da Bacia do Rio Descoberto,Área de Proteção Ambiental » environmental protection areas (IUCN category V),Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -527,19752,Brazil,SAMGe,2016,For storage only,9,APA da Bacia do Rio São Bartolomeu,Área de Proteção Ambiental » environmental protection areas (IUCN category V),Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -528,351727,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Da Bacia Do Rio São João - Mico Leão,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -529,351716,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Da Baleia Franca,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -530,351742,Brazil,SAMGe,2016,For storage only,9,APA das Nascentes do Rio Vermelho,Área de Proteção Ambiental » environmental protection areas (IUCN category V),Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -531,19458,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental De Cairuçu,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -532,19484,Brazil,SAMGe,2016,For storage only,9,APA de Cananéia-Iguapé-Peruíbe,Área de Proteção Ambiental » environmental protection areas (IUCN category V),Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -533,116096,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental De Fernando De Noronha,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -534,351840,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental De Guapi-Mirim,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -535,7906,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental De Guaraqueçaba,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -536,16105,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental De Petrópolis,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -537,18727,Brazil,SAMGe,2016,For storage only,9,APA de Piaçabuçu,Área de Proteção Ambiental » environmental protection areas (IUCN category V),Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -538,115666,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Delta Do Parnaiba,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -539,19755,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Do Igarapé Gelado,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -540,351841,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Do Planalto Central,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -541,351813,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Do Tapajós,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -542,555600305,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Ibirapuitã,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -543,198367,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Ilhas E Várzeas Do Rio Paraná,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -544,351746,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Meandros Do Araguaia,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -545,351787,Brazil,SAMGe,2016,For storage only,9,APA Morro da Pedreira,Área de Proteção Ambiental » environmental protection areas (IUCN category V),Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -546,198355,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Serra Da Ibiapaba,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -547,555600306,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Serra Da Mantiqueira,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -548,478423,Brazil,SAMGe,2016,For storage only,9,Área De Proteção Ambiental Serra Da Meruoca,Environmental Protection Area,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -549,31758,Brazil,SAMGe,2016,For storage only,9,APA Serra da Tabatinga,Área de Proteção Ambiental » environmental protection areas (IUCN category V),Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -550,10086,Brazil,SAMGe,2016,For storage only,9,ARIE Capetinga/Taquara,Área de Relevante Interesse Ecológico,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -552,115907,Brazil,SAMGe,2016,For storage only,9,Área De Relevante Interesse Ecológica Floresta Da Cicuta,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -553,351720,Brazil,SAMGe,2016,For storage only,9,ARIE Ilha Ameixal,Área de Relevante Interesse Ecológico,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -554,351721,Brazil,SAMGe,2016,For storage only,9,Área De Relevante Interesse Ecológico Ilhas Queimada Grande E Queimada Pequena,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -555,33831,Brazil,SAMGe,2016,For storage only,9,Área De Relevante Interesse Ecológica Javari Buriti,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -556,10821,Brazil,SAMGe,2016,For storage only,9,Área De Relevante Interesse Ecológica Manguezais Da Foz Do Rio Mamanguape,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -557,115976,Brazil,SAMGe,2016,For storage only,9,Área De Relevante Interesse Ecológica Mata De Santa Genebra,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -558,115977,Brazil,SAMGe,2016,For storage only,9,Área De Relevante Interesse Ecológica Matão De Cosmópolis,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -559,351729,Brazil,SAMGe,2016,For storage only,9,ARIE Pé-de-Gigante,Área de Relevante Interesse Ecológico,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -560,351715,Brazil,SAMGe,2016,For storage only,9,ARIE Pontal dos Latinos e Pontal dos Santiagos,Área de Relevante Interesse Ecológico,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -561,67692,Brazil,SAMGe,2016,For storage only,9,Área De Relevante Interesse Ecológica Projeto Dinâmica Biológica De Fragmentos Florestais,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -562,351750,Brazil,SAMGe,2016,For storage only,9,ARIE Seringal Nova Esperança,Área de Relevante Interesse Ecológico,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -564,41084,Brazil,SAMGe,2016,For storage only,9,Área De Relevante Interesse Ecológica Vale Dos Dinossauros,Area of Relevant Ecological Interest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -565,115987,Brazil,SAMGe,2016,For storage only,9,ARIE Vassununga,Área de Relevante Interesse Ecológico,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -566,555600076,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Alto Maués,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -567,351821,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Da Guanabara,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -568,555512220,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Da Serra Das Araras,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -569,351711,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Da Terra Do Meio,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -570,10846,Brazil,SAMGe,2016,For storage only,9,ESEC de Aiuaba,Estação Ecológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -571,2216,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Aracuri-Esmeralda,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -572,5124,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Caracaraí,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -573,10822,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Carijós,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -574,351762,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Cuniã,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -575,18738,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Guaraqueçaba,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -576,2217,Brazil,SAMGe,2016,For storage only,9,ESEC de Iquê,Estação Ecológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -577,10845,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Jutaí-Solimões,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -578,2218,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Maracá,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -579,2219,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Maracá Jipioca,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -580,351803,Brazil,SAMGe,2016,For storage only,9,ESEC de Mata Preta,Estação Ecológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -581,351757,Brazil,SAMGe,2016,For storage only,9,ESEC de Murici,Estação Ecológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -582,10826,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Niquiá,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -583,10823,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Pirapitinga,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -584,2220,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Taiamã,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -585,116085,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Tamoios,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -586,18739,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Tupinambás,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -587,2221,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica De Uruçuí-Una,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -588,351766,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Do Castanhão,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -589,4891,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Do Jari,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -590,5123,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Do Seridó,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -591,7908,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Do Taim,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -592,18740,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Dos Tupiniquins,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -593,10830,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Juami-Japurá,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -594,351728,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Mico Leão Preto,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -595,10842,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Raso Da Catarina,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -596,2222,Brazil,SAMGe,2016,For storage only,9,Estação Ecológica Rio Acre,Ecological Station,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -597,351751,Brazil,SAMGe,2016,For storage only,9,ESEC Serra Geral do Tocantins,Estação Ecológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -598,198359,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Altamira,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -599,351789,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Da Mata Grande,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -600,351791,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Da Restinga De Cabedelo,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -601,351765,Brazil,SAMGe,2016,For storage only,9,FLONA de Açu,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -602,478413,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Açungui,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -603,19745,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Amapá,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -604,351714,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Anauá,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -605,351820,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Balata-Tufari,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -606,19759,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Bom Futuro,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -607,351740,Brazil,SAMGe,2016,For storage only,9,FLONA de Brasília,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -608,10809,Brazil,SAMGe,2016,For storage only,9,FLONA de Caçador,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -609,10811,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Canela,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -610,351722,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Capão Bonito,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -611,198360,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Carajás,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -612,10803,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Caxiuanã,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -613,351717,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Chapecó,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -614,220239,Brazil,SAMGe,2016,For storage only,9,FLONA de Contendas do Sincorá,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -615,351745,Brazil,SAMGe,2016,For storage only,9,FLONA de Cristópolis,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -616,351732,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Goytacazes,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -617,198350,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Humaitá,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -618,19763,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Ibirama,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -619,351723,Brazil,SAMGe,2016,For storage only,9,FLONA de Ipanema,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -620,351809,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Irati,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -621,198361,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Itacaiunas,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -622,198362,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Itaituba I,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -623,198363,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Itaituba Ii,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -624,351792,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Jacundá,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -625,351763,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Jatuarana,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -626,351726,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Lorena,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -627,33751,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Macauã,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -628,31763,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Mapiá-Inauiní,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -629,19758,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Mário Xavier,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -630,351779,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Mulata,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -631,354008,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Negreiros,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -632,351764,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Nísia Floresta,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -633,351731,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Pacotuba,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -634,351807,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Palmares,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -635,351733,Brazil,SAMGe,2016,For storage only,9,FLONA de Paraopeba,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -636,351810,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Passa Quatro,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -637,10814,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Passo Fundo,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -638,351835,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Pau-Rosa,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -639,351790,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Piraí Do Sul,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -640,19746,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Purus,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -641,351735,Brazil,SAMGe,2016,For storage only,9,FLONA de Rio Preto,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -642,220241,Brazil,SAMGe,2016,For storage only,9,FLONA de Ritápolis,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -643,31768,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Roraima,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -644,351755,Brazil,SAMGe,2016,For storage only,9,FLONA de Santa Rosa do Purus,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -645,351752,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De São Francisco,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -646,10810,Brazil,SAMGe,2016,For storage only,9,FLONA de São Francisco de Paula,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -647,31769,Brazil,SAMGe,2016,For storage only,9,FLONA de Saracá-Taquera,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -648,351811,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Silvânia,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -649,351771,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Sobral,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -650,10802,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Tapajós,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -651,31770,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Tapirapé-Aquiri,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -652,19747,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Tefé,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -653,10808,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional De Três Barras,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -654,351817,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Do Amaná,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -655,31759,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Do Amazonas,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -656,351788,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Do Araripe-Apodi,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -657,351815,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Do Crepori,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -658,351812,Brazil,SAMGe,2016,For storage only,9,FLONA do Ibura,Floresta Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -659,478418,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Do Iquiri,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -660,351814,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Do Jamanxim,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -661,10815,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Do Jamari,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -662,351816,Brazil,SAMGe,2016,For storage only,9,Floresta Nacional Do Trairão,Forest,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -663,555576252,Brazil,SAMGe,2016,For storage only,9,MONA das Ilhas Cagarras,Monumento Natural,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -664,478424,Brazil,SAMGe,2016,For storage only,9,Monumento Natural Do Rio São Francisco,Natural Monument,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -665,351734,Brazil,SAMGe,2016,For storage only,9,MONA dos Pontões Capixabas,Monumento Natural,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -666,351741,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Cavernas Do Peruaçu,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -667,55,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Amazônia,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -668,351806,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Chapada Das Mesas,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -669,19447,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Chapada Diamantina,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -670,19273,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Chapada Dos Guimarães,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -671,59,Brazil,SAMGe,2016,For storage only,9,PARNA da Chapada dos Veadeiros,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -672,555576157,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Furna Feia,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -673,19448,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Lagoa Do Peixe,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -674,1974,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra Da Bocaina,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -675,351730,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra Da Bodoquena,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -676,65,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra Da Canastra,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -677,64,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra Da Capivara,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -678,351748,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra Da Cutia,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -679,351827,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra De Itabaiana,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -680,19737,Brazil,SAMGe,2016,For storage only,9,PARNA da Serra do Cipó,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -681,19275,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra Do Divisor,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -682,555600244,Brazil,SAMGe,2016,For storage only,9,PARNA da Serra do Gandarela,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -683,351828,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra Do Itajaí,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -684,351712,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra Do Pardo,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -685,72,Brazil,SAMGe,2016,For storage only,9,PARNA da Serra dos Órgãos,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -686,19428,Brazil,SAMGe,2016,For storage only,9,PARNA da Serra Geral,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -687,74,Brazil,SAMGe,2016,For storage only,9,PARNA da Tijuca,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -688,351872,Brazil,SAMGe,2016,For storage only,9,PARNA das Araucárias,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -689,62,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Das Emas,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -690,352002,Brazil,SAMGe,2016,For storage only,9,PARNA das Nascentes do Rio Parnaíba,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -691,351736,Brazil,SAMGe,2016,For storage only,9,PARNA das Sempre Vivas,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -692,2215,Brazil,SAMGe,2016,For storage only,9,Parque Nacional De Anavilhanas,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -693,71,Brazil,SAMGe,2016,For storage only,9,Parque Nacional De Aparados Da Serra,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -694,555600317,Brazil,SAMGe,2016,For storage only,9,Parque Nacional De Boa Nova,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -695,67,Brazil,SAMGe,2016,For storage only,9,PARNA de Brasília,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -696,69,Brazil,SAMGe,2016,For storage only,9,PARNA de Caparaó,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -697,351793,Brazil,SAMGe,2016,For storage only,9,Parque Nacional De Ilha Grande,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -698,351774,Brazil,SAMGe,2016,For storage only,9,PARNA de Jericoacoara,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -699,56,Brazil,SAMGe,2016,For storage only,9,Parque Nacional De Pacaás Novos,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -700,351718,Brazil,SAMGe,2016,For storage only,9,Parque Nacional De Saint-Hilaire/Lange,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -701,66,Brazil,SAMGe,2016,For storage only,9,Parque Nacional De São Joaquim,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -702,555576352,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Da Serra Das Lontras,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -703,73,Brazil,SAMGe,2016,For storage only,9,Parque Nacional De Sete Cidades,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -704,75,Brazil,SAMGe,2016,For storage only,9,Parque Nacional De Ubajara,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -705,198352,Brazil,SAMGe,2016,For storage only,9,PARNA Descobrimento,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -706,555576266,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Alto Cariri,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -707,352420,Brazil,SAMGe,2016,For storage only,9,PARNA do Araguaia,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -708,57,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Cabo Orange,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -709,351760,Brazil,SAMGe,2016,For storage only,9,PARNA do Catimbau,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -710,60,Brazil,SAMGe,2016,For storage only,9,PARNA do Iguaçu,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -711,351818,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Jamanxim,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -712,53,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Jaú,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -713,351839,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Juruena,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -714,68,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Monte Pascoal,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -715,19762,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Monte Roraima,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -716,2581,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Pantanal Matogrossense,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -717,54,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Pico Da Neblina,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -718,351819,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Rio Novo,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -719,19274,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Superagui,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -720,351833,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Dos Campos Amazônicos,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -721,351824,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Dos Campos Gerais,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -722,61,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Dos Lençois Maranhenses,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -723,19272,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Grande Sertão Veredas,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -724,555599975,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Guaricana,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -726,70,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Do Itatiaia,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -727,479431,Brazil,SAMGe,2016,For storage only,9,PARNA Mapinguari,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -728,41087,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Mar. De Fernando De Noronha,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -729,81060,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Marinho Dos Abrolhos,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -730,351784,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Montanhas Do Tumucumaque,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -731,478419,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Nascentes Do Lago Jari,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -732,198353,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Pau Brasil,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -733,198369,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Restinga De Jurubatiba,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -734,198351,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Serra Da Mocidade,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -735,198366,Brazil,SAMGe,2016,For storage only,9,PARNA Serra das Confusões,Parque Nacional,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -736,198281,Brazil,SAMGe,2016,For storage only,9,Parque Nacional Viruá,Park,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -737,351801,Brazil,SAMGe,2016,For storage only,9,Reserva De Desenvolvimento Sustentável Itatupã-Baquiá,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -738,555600159,Brazil,SAMGe,2016,For storage only,9,Reserva De Desenvolvimento Sustentável Nascentes Geraizeiras,Sustainable Development Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -739,46,Brazil,SAMGe,2016,For storage only,9,REBIO Atol das Rocas,Reserva Biológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -740,2186,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Augusto Ruschi,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -741,555576334,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Bom Jesus,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -742,351794,Brazil,SAMGe,2016,For storage only,9,REBIO da Contagem,Reserva Biológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -743,351738,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Da Mata Escura,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -744,351825,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Das Araucárias,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -745,351823,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Das Perobas,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -746,9822,Brazil,SAMGe,2016,For storage only,9,REBIO de Comboios,Reserva Biológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -747,19454,Brazil,SAMGe,2016,For storage only,9,REBIO de Pedra Talhada,Reserva Biológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -748,49,Brazil,SAMGe,2016,For storage only,9,REBIO de Poço das Antas,Reserva Biológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -749,6957,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica De Saltinho,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -750,18745,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica De Santa Isabel,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -751,52,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica De Serra Negra,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -752,47,Brazil,SAMGe,2016,For storage only,9,REBIO de Sooretama,Reserva Biológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -753,48,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica De Una,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -754,5127,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Abufari,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -755,51,Brazil,SAMGe,2016,For storage only,9,REBIO do Córrego do Veado,Reserva Biológica,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -756,18742,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Córrego Grande,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -757,5126,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Guaporé,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -758,10795,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Gurupi,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -759,44,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Jaru,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -760,42,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Lago Piratuba,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -761,43,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Rio Trombetas,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -762,6074,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Tapirapé,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -763,18744,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Tinguá,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -764,31752,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Do Uatumã,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -765,31750,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Guaribas,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -766,31751,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Marinha Do Arvoredo,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -767,351795,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica Nascentes Serra Do Cachimbo,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -768,168214,Brazil,SAMGe,2016,For storage only,9,Reserva Biológica União,Biological Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -769,354006,Brazil,SAMGe,2016,For storage only,9,RESEX Acaú-Goiana,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -770,31774,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Alto Juruá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -771,351759,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Alto Tarauacá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -772,351834,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Arapixi,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -773,351805,Brazil,SAMGe,2016,For storage only,9,RESEX Arióca Pruanã,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -774,351777,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Auatí-Paraná,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -775,351772,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Baixo Juruá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -776,351749,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Barreiro Das Antas,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -777,351756,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Cazumbá-Iracema,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -778,354007,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Chapada Limpa,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -779,31775,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Chico Mendes,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -780,351822,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Chocoaré-Mato Grosso,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -781,351737,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Corumbau,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -782,351829,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista De Canavieiras,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -783,478427,Brazil,SAMGe,2016,For storage only,9,RESEX de Cassurubá,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -784,351778,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista De Cururupu,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -785,351770,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Do Batoque,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -786,478409,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Do Ciriáco,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -787,351767,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Do Lago Do Capanã Grande,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -788,351769,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Médio Juruá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -789,478420,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Do Médio Purús,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -790,351836,Brazil,SAMGe,2016,For storage only,9,RESEX do Recanto das Araras de Terra Ronca,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -791,351747,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Do Rio Cautário,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -792,351773,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Do Rio Jutaí,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -793,115891,Brazil,SAMGe,2016,For storage only,9,RESEX Extremo Norte do Tocantins,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -794,351838,Brazil,SAMGe,2016,For storage only,9,RESEX Gurupá-Melgaço,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -795,351802,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Ipaú-Anilzinho,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -796,478421,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Ituxí,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -797,351837,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Lago Do Cedro,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -798,351761,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Lago Do Cuniã,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -799,351782,Brazil,SAMGe,2016,For storage only,9,RESEX Mãe Grande de Curuça,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -800,351719,Brazil,SAMGe,2016,For storage only,9,RESEX Mandira,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -801,351800,Brazil,SAMGe,2016,For storage only,9,RESEX Mapuá,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -802,351781,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Maracanã,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -803,351798,Brazil,SAMGe,2016,For storage only,9,RESEX Marinha Arai-Peroba,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -804,351725,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Marinha Arraial Do Cabo,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -805,351796,Brazil,SAMGe,2016,For storage only,9,RESEX Marinha Caeté-Taperaçu,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -806,555600266,Brazil,SAMGe,2016,For storage only,9,RESEX Marinha Cuinarana,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -807,351744,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Marinha Da Baia De Iguapé,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -808,351753,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Marinha Da Lagoa Do Jequiá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -809,351799,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Marinha De Gurupi-Piriá,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -810,351783,Brazil,SAMGe,2016,For storage only,9,RESEX Marinha de Soure,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -811,351775,Brazil,SAMGe,2016,For storage only,9,RESEX Marinha do Delta do Parnaíba,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -812,555600255,Brazil,SAMGe,2016,For storage only,9,RESEX Marinha Mestre Lucindo,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -813,555600245,Brazil,SAMGe,2016,For storage only,9,RESEX Marinha Mocapajuba,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -814,67715,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Marinha Pirajubaé,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -815,351797,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Marinha Tracuateua,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -816,351768,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Mata Grande,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -817,478425,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Prainha Do Canto Verde,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -818,478408,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Quilombo Do Frechal,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -819,478426,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Renascer,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -820,3177,Brazil,SAMGe,2016,For storage only,9,RESEX Rio Cajari,Reserva Extrativista,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -821,351830,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Rio Iriri,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -822,31777,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Rio Ouro Preto,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -823,351832,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Do Rio Unini,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -824,478422,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Rio Xingu,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -825,351713,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Riozinho Da Liberdade,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -826,351785,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Riozinho Do Anfrísio,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -827,351780,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista São João Da Ponta,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -828,351776,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Tapajós Arapiuns,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -829,351831,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Terra Grande Pracuuba,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -830,351786,Brazil,SAMGe,2016,For storage only,9,Reserva Extrativista Verde Para Sempre,Extractive Reserve,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -831,555576384,Brazil,SAMGe,2016,For storage only,9,REVIS de Boa Nova,Refúgio de Vida Silvestre,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -832,555576210,Brazil,SAMGe,2016,For storage only,9,Refúgio De Vida Silvestre De Santa Cruz,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -833,478415,Brazil,SAMGe,2016,For storage only,9,Refúgio De Vida Silvestre De Una,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -834,478416,Brazil,SAMGe,2016,For storage only,9,Refúgio De Vida Silvestre Do Rio Dos Frades,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -835,351826,Brazil,SAMGe,2016,For storage only,9,Refúgio De Vida Silvestre Dos Campos De Palmas,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -836,10843,Brazil,SAMGe,2016,For storage only,9,Refugio De Vida Silvestre Ilha Dos Lobos,Wildlife Refuge,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -837,351743,Brazil,SAMGe,2016,For storage only,9,REVIS Veredas do Oeste Baiano,Refúgio de Vida Silvestre,Brazil Management Effectiveness Evaluation,ICMBio,2018,Portuguese -838,20978,Togo,METT,2013,For storage only,10,Abdoulaye,Faunal reserve,Togo Management Effectiveness Evaluation,Ministere de l'environnement et des ressources forestieres,2018,French -839,20978,Togo,METT,2017,For storage only,10,Abdoulaye,Faunal reserve,Togo Management Effectiveness Evaluation,Ministere de l'environnement et des ressources forestieres,2018,French -840,2340,Togo,METT,2013,For storage only,10,Fazao-Malfakassa,National Park,Togo Management Effectiveness Evaluation,Ministere de l'environnement et des ressources forestieres,2018,French -841,95397,Togo,METT,2013,For storage only,10,Parc national de la Keran,"Ramsar Site, Wetland of International Importance",Togo Management Effectiveness Evaluation,Ministere de l'environnement et des ressources forestieres,2018,French -842,2341,Togo,METT,2017,For storage only,10,Parc national de Togodo,Faunal Reserve,Togo Management Effectiveness Evaluation,Ministere de l'environnement et des ressources forestieres,2018,French -843,95398,Togo,METT,2017,For storage only,10,Reserve de faune de Togodo Nord,"Ramsar Site, Wetland of International Importance",Togo Management Effectiveness Evaluation,Ministere de l'environnement et des ressources forestieres,2018,French -844,667,Germany,EUROPARC Quality Criteria and Standars for National Parks,2013,For storage only,11,Bavarian Forest,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -845,668,Austria;Germany,EUROPARC Quality Criteria and Standars for National Parks,2011,For storage only,11,Berchtesgaden,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -846,318076,Germany,EUROPARC Quality Criteria and Standars for National Parks,2010,For storage only,11,Eifel,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -847,148534,Germany,EUROPARC Quality Criteria and Standars for National Parks,2013,For storage only,11,Hainich,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -848,103142,Germany,EUROPARC Quality Criteria and Standars for National Parks,2012,For storage only,11,Harz,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -849,32667,Germany,EUROPARC Quality Criteria and Standars for National Parks,2010,For storage only,11,Jasmund,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -850,318077,Germany,EUROPARC Quality Criteria and Standars for National Parks,2011,For storage only,11,Kellerwald-Edersee,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -851,102224,Germany,EUROPARC Quality Criteria and Standars for National Parks,2011,For storage only,11,Lower Odra Valley,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -852,26064,Germany,EUROPARC Quality Criteria and Standars for National Parks,2012,For storage only,11,Müritz-Nationalpark,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -853,32666,Germany,EUROPARC Quality Criteria and Standars for National Parks,2012,For storage only,11,Saxonian Switzerland,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -854,26062,Germany,EUROPARC Quality Criteria and Standars for National Parks,2010,For storage only,11,Vorpommersche Boddenlandschaft,National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -855,20722,Germany,EUROPARC Quality Criteria and Standars for National Parks,2012,For storage only,11,Waddensea NLP (Hamburg),National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -856,11837,Germany,EUROPARC Quality Criteria and Standars for National Parks,2013,For storage only,11,Waddensea NLP (Lower Saxony),National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -857,32669,Germany,EUROPARC Quality Criteria and Standars for National Parks,2012,For storage only,11,Waddensea NLP (Schl.-Holstein),National Park,Germany Management Effectiveness Evaluation,BfN,2018,German -858,478120,Dominican Republic,METT,2009,For storage only,12,Loma Quita Espuela,Scientific Reserve,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -859,478116,Dominican Republic,METT,2009,For storage only,12,Guaconejo,Scientific Reserve,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -860,478143,Dominican Republic,METT,2009,For storage only,12,Villa Elisa,Scientific Reserve,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -861,478092,Dominican Republic,METT,2009,For storage only,12,Estero Hondo,Marine Mammal Sanctuary,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -862,478104,Dominican Republic,METT,2009,For storage only,12,Lago Enriquillo e Isla Cabritos,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -863,478076,Dominican Republic,METT,2009,For storage only,12,Cabo Frances Viejo,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -864,478140,Dominican Republic,METT,2009,For storage only,12,Sierra de Neiba,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -865,6675,Dominican Republic,METT,2009,For storage only,12,Sierra de Bahoruco,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -866,478142,Dominican Republic,METT,2009,For storage only,12,Valle Nuevo,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -867,478068,Dominican Republic,METT,2009,For storage only,12,Armando Bermúdez,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -868,180,Dominican Republic,METT,2009,For storage only,12,Del Este,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -869,478075,Dominican Republic,METT,2009,For storage only,12,Cabo Cabrón,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -870,478130,Dominican Republic,METT,2009,For storage only,12,Nalga de Maco,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -871,6673,Dominican Republic,METT,2009,For storage only,12,Jaragua,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -872,478101,Dominican Republic,METT,2009,For storage only,12,José del Carmen Ramírez,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -873,6674,Dominican Republic,METT,2009,For storage only,12,Submarine national park Monte Cristi,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -874,181,Dominican Republic,METT,2009,For storage only,12,Los Haitises,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -875,478102,Dominican Republic,METT,2009,For storage only,12,Submarine national park La Caleta,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -876,478099,Dominican Republic,METT,2009,For storage only,12,Humedales del Ozama,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -877,478141,Dominican Republic,METT,2009,For storage only,12,Sierra Martín García,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -878,478132,Dominican Republic,METT,2009,For storage only,12,Natural Monument Anthropological Reserve,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -879,478138,Dominican Republic,METT,2009,For storage only,12,Salto de la Damajagua,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -880,478100,Dominican Republic,METT,2009,For storage only,12,Catalina Island ,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -881,478111,Dominican Republic,METT,2009,For storage only,12,Las Dunas de las Calderas,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -882,478139,Dominican Republic,METT,2009,For storage only,12,Salto El Limón,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -883,478131,Dominican Republic,METT,2009,For storage only,12,Pico Diego de Ocampo,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -884,478108,Dominican Republic,METT,2009,For storage only,12,Lagunas Cabarete y Goleta,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -885,478078,Dominican Republic,METT,2009,For storage only,12,Cabo Samaná,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -886,478117,Dominican Republic,METT,2009,For storage only,12,Natural Monument Isabel de Torres,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -887,478106,Dominican Republic,METT,2009,For storage only,12,Laguna de Cabral,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -888,478133,Dominican Republic,METT,2009,For storage only,12,Ría Maimón,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -889,478109,Dominican Republic,METT,2009,For storage only,12,Lagunas Redona y Limón,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -890,478088,Dominican Republic,METT,2009,For storage only,12,Cueva de Los Tres Ojos de Santo Domingo,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -891,478105,Dominican Republic,METT,2009,For storage only,12,Laguna de Bávaro y el Caletón,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29584,180,Dominican Republic,METT,2012,For storage only,12,Del Este,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29585,180,Dominican Republic,METT,2015,For storage only,12,Del Este,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29586,181,Dominican Republic,METT,2012,For storage only,12,Los Haitises,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29587,181,Dominican Republic,METT,2015,For storage only,12,Los Haitises,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29588,6673,Dominican Republic,METT,2012,For storage only,12,Jaragua,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29589,6673,Dominican Republic,METT,2015,For storage only,12,Jaragua,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29590,6674,Dominican Republic,METT,2012,For storage only,12,Submarine national park Monte Cristi,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29591,6674,Dominican Republic,METT,2015,For storage only,12,Submarine national park Monte Cristi,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29592,6675,Dominican Republic,METT,2012,For storage only,12,Sierra de Bahoruco,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29593,6675,Dominican Republic,METT,2015,For storage only,12,Sierra de Bahoruco,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29594,478068,Dominican Republic,METT,2012,For storage only,12,Armando Bermúdez,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29595,478068,Dominican Republic,METT,2015,For storage only,12,Armando Bermúdez,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29596,478075,Dominican Republic,METT,2012,For storage only,12,Cabo Cabrón,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29597,478075,Dominican Republic,METT,2015,For storage only,12,Cabo Cabrón,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29598,478076,Dominican Republic,METT,2012,For storage only,12,Cabo Frances Viejo,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29599,478076,Dominican Republic,METT,2015,For storage only,12,Cabo Frances Viejo,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29600,478078,Dominican Republic,METT,2012,For storage only,12,Cabo Samaná,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29601,478078,Dominican Republic,METT,2015,For storage only,12,Cabo Samaná,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29602,478088,Dominican Republic,METT,2012,For storage only,12,Cueva de Los Tres Ojos de Santo Domingo,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29603,478088,Dominican Republic,METT,2015,For storage only,12,Cueva de Los Tres Ojos de Santo Domingo,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29604,478092,Dominican Republic,METT,2012,For storage only,12,Estero Hondo,Marine Mammal Sanctuary,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29605,478092,Dominican Republic,METT,2015,For storage only,12,Estero Hondo,Marine Mammal Sanctuary,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29606,478099,Dominican Republic,METT,2012,For storage only,12,Humedales del Ozama,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29607,478099,Dominican Republic,METT,2015,For storage only,12,Humedales del Ozama,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29608,478100,Dominican Republic,METT,2012,For storage only,12,Catalina Island ,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29609,478100,Dominican Republic,METT,2015,For storage only,12,Catalina Island ,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29610,478101,Dominican Republic,METT,2012,For storage only,12,José del Carmen Ramírez,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29611,478101,Dominican Republic,METT,2015,For storage only,12,José del Carmen Ramírez,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29612,478102,Dominican Republic,METT,2012,For storage only,12,Submarine national park La Caleta,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29613,478102,Dominican Republic,METT,2015,For storage only,12,Submarine national park La Caleta,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29614,478104,Dominican Republic,METT,2012,For storage only,12,Lago Enriquillo e Isla Cabritos,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29615,478104,Dominican Republic,METT,2015,For storage only,12,Lago Enriquillo e Isla Cabritos,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29616,478105,Dominican Republic,METT,2012,For storage only,12,Laguna de Bávaro y el Caletón,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29617,478105,Dominican Republic,METT,2015,For storage only,12,Laguna de Bávaro y el Caletón,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29618,478106,Dominican Republic,METT,2012,For storage only,12,Laguna de Cabral,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29619,478106,Dominican Republic,METT,2015,For storage only,12,Laguna de Cabral,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29620,478108,Dominican Republic,METT,2012,For storage only,12,Lagunas Cabarete y Goleta,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29621,478108,Dominican Republic,METT,2015,For storage only,12,Lagunas Cabarete y Goleta,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29622,478109,Dominican Republic,METT,2012,For storage only,12,Lagunas Redona y Limón,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29623,478109,Dominican Republic,METT,2015,For storage only,12,Lagunas Redona y Limón,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29624,478111,Dominican Republic,METT,2012,For storage only,12,Las Dunas de las Calderas,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29625,478111,Dominican Republic,METT,2015,For storage only,12,Las Dunas de las Calderas,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29626,478116,Dominican Republic,METT,2012,For storage only,12,Guaconejo,Scientific Reserve,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29627,478116,Dominican Republic,METT,2015,For storage only,12,Guaconejo,Scientific Reserve,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29628,478117,Dominican Republic,METT,2012,For storage only,12,Natural Monument Isabel de Torres,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29629,478117,Dominican Republic,METT,2015,For storage only,12,Natural Monument Isabel de Torres,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29630,478120,Dominican Republic,METT,2012,For storage only,12,Loma Quita Espuela,Scientific Reserve,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29631,478120,Dominican Republic,METT,2015,For storage only,12,Loma Quita Espuela,Scientific Reserve,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29632,478130,Dominican Republic,METT,2012,For storage only,12,Nalga de Maco,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29633,478130,Dominican Republic,METT,2015,For storage only,12,Nalga de Maco,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29634,478131,Dominican Republic,METT,2012,For storage only,12,Pico Diego de Ocampo,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29635,478131,Dominican Republic,METT,2015,For storage only,12,Pico Diego de Ocampo,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29636,478132,Dominican Republic,METT,2012,For storage only,12,Natural Monument Anthropological Reserve,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29637,478132,Dominican Republic,METT,2015,For storage only,12,Natural Monument Anthropological Reserve,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29638,478133,Dominican Republic,METT,2012,For storage only,12,Ría Maimón,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29639,478133,Dominican Republic,METT,2015,For storage only,12,Ría Maimón,Habitat/Species Management Area,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29640,478138,Dominican Republic,METT,2012,For storage only,12,Salto de la Damajagua,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29641,478138,Dominican Republic,METT,2015,For storage only,12,Salto de la Damajagua,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29642,478139,Dominican Republic,METT,2012,For storage only,12,Salto El Limón,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29643,478139,Dominican Republic,METT,2015,For storage only,12,Salto El Limón,Natural Monument,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29644,478140,Dominican Republic,METT,2012,For storage only,12,Sierra de Neiba,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29645,478140,Dominican Republic,METT,2015,For storage only,12,Sierra de Neiba,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29646,478141,Dominican Republic,METT,2012,For storage only,12,Sierra Martín García,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29647,478141,Dominican Republic,METT,2015,For storage only,12,Sierra Martín García,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29648,478142,Dominican Republic,METT,2012,For storage only,12,Valle Nuevo,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29649,478142,Dominican Republic,METT,2015,For storage only,12,Valle Nuevo,National Park,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29650,478143,Dominican Republic,METT,2012,For storage only,12,Villa Elisa,Scientific Reserve,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -29651,478143,Dominican Republic,METT,2015,For storage only,12,Villa Elisa,Scientific Reserve,The Dominican Republic Management Effectiveness Evaluation,Ministerio de Medio Ambiente y Recursos Naturales,2018,English -892,168275,Peru,METT,2016,For storage only,13,Aledaño a la Bocatoma del Canal Nuevo Imperial,Bosques de Protección,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -894,20184,Peru,METT,2016,For storage only,13,Pagaibamba,Bosques de Protección,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -895,20181,Peru,METT,2016,For storage only,13,Pui Pui,Bosques de Protección,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -896,20180,Peru,METT,2016,For storage only,13,Puquio Santa Rosa,Bosques de Protección,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -897,20182,Peru,METT,2016,For storage only,13,San Matias San Carlos,Bosques de Protección,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -898,30061,Peru,METT,2016,For storage only,13,El Angolo,Cotos de Caza,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -899,30060,Peru,METT,2016,For storage only,13,Sunchubamba,Cotos de Caza,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -900,303316,Peru,METT,2016,For storage only,13,Alto Purus,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -901,127825,Peru,METT,2016,For storage only,13,Bahuaja Sonene,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -902,259,Peru,METT,2016,For storage only,13,Cerros de Amotape,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -903,303320,Peru,METT,2016,For storage only,13,Cordillera Azul,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -904,261,Peru,METT,2016,For storage only,13,Cutervo,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -905,257,Peru,METT,2016,For storage only,13,del Manu,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -906,7461,Peru,METT,2016,For storage only,13,Del Río Abiseo,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -907,555555616,Peru,METT,2016,For storage only,13,Gueppi Sekime,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -908,258,Peru,METT,2016,For storage only,13,Huascaran,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -909,555544087,Peru,METT,2016,For storage only,13,Ichigkat Muja,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -910,303323,Peru,METT,2016,For storage only,13,Otishi,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -911,555623628,Peru,METT,2016,For storage only,13,Sierra del Divisor,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -912,260,Peru,METT,2016,For storage only,13,Tingo Maria,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -913,12213,Peru,METT,2016,For storage only,13,Yanachaga Chemillén,Parques Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -914,555544103,Peru,METT,2016,For storage only,13,Bosques Nublado de Udima,Refugio de Vida Sivestre,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -915,20187,Peru,METT,2016,For storage only,13,Laquipampa,Refugio de Vida Sivestre,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -916,555544084,Peru,METT,2016,For storage only,13,Los Pantanos de Villa,Refugio de Vida Sivestre,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -917,555555618,Peru,METT,2016,For storage only,13,Airo Pai,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -918,303317,Peru,METT,2016,For storage only,13,Amarakaeri,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -919,303318,Peru,METT,2016,For storage only,13,Asháninka,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -920,555544088,Peru,METT,2016,For storage only,13,Chayu Nain,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -921,303321,Peru,METT,2016,For storage only,13,El Sira,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -922,555555617,Peru,METT,2016,For storage only,13,Huimeki,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -923,303322,Peru,METT,2016,For storage only,13,Machiguenga,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -924,61767,Peru,METT,2016,For storage only,13,Purus,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -925,555544086,Peru,METT,2016,For storage only,13,Tuntanain,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -926,30040,Peru,METT,2016,For storage only,13,Yanesha,Reservas Comunales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -927,168276,Peru,METT,2016,For storage only,13,Allpahuayo Mishana,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -928,266,Peru,METT,2016,For storage only,13,de Calipuy,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -929,252,Peru,METT,2016,For storage only,13,de Junin,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -930,254,Peru,METT,2016,For storage only,13,De Lachay,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -931,250,Peru,METT,2016,For storage only,13,de Paracas,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -932,2175,Peru,METT,2016,For storage only,13,de Salinas y Aguada Blanca,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -933,98158,Peru,METT,2016,For storage only,13,de Tumbes,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -934,253,Peru,METT,2016,For storage only,13,Del Titicaca,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -935,555544085,Peru,METT,2016,For storage only,13,Matses,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -936,249,Peru,METT,2016,For storage only,13,Pacaya Samiria,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -937,251,Peru,METT,2016,For storage only,13,Pamap Galeras Barbara D Achille,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -938,98228,Peru,METT,2016,For storage only,13,Pucacuro,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -939,555555596,Peru,METT,2016,For storage only,13,San Fernando,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -940,3370,Peru,METT,2016,For storage only,13,Tambopata,Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -941,303315,Peru,METT,2016,For storage only,13,Nor Yauyos Cochas,Reservas Paisajísticas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -942,98159,Peru,METT,2016,For storage only,13,Sub Cuenca del Cotahuasi,Reservas Paisajísticas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -943,303319,Peru,METT,2016,For storage only,13,Bosques de Pomac,Santuarios Historicos,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -944,264,Peru,METT,2016,For storage only,13,Chacamarca,Santuarios Historicos,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -945,267,Peru,METT,2016,For storage only,13,De la Pampa de Ayacucho,Santuarios Historicos,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -946,262,Peru,METT,2016,For storage only,13,de Machupicchu,Santuarios Historicos,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -947,14171,Peru,METT,2016,For storage only,13,Ampay,Santuarios Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -948,256,Peru,METT,2016,For storage only,13,Calipuy,Santuarios Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -949,20179,Peru,METT,2016,For storage only,13,Cordillera de Colan,Santuarios Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -950,255,Peru,METT,2016,For storage only,13,de Huayllay,Santuarios Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -951,7921,Peru,METT,2016,For storage only,13,Lagunas de Mejia,Santuarios Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -952,12215,Peru,METT,2016,For storage only,13,Los Manglares de Tumbes,Santuarios Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -953,20186,Peru,METT,2016,For storage only,13,Megantoni,Santuarios Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -954,30034,Peru,METT,2016,For storage only,13,Pampa Hermosa,Santuarios Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -955,20178,Peru,METT,2016,For storage only,13,Tabaconas Namballe,Santuarios Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -956,555555614,Peru,METT,2016,For storage only,13,Ancon,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -957,555544101,Peru,METT,2016,For storage only,13,Bosque de Zarate,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -958,168278,Peru,METT,2016,For storage only,13,Chancaybaños,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -959,303705,Peru,METT,2016,For storage only,13,Cordillera de Huayhuash,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -960,555544089,Peru,METT,2016,For storage only,13,Humedales de Puerto Viejo,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -961,555555613,Peru,METT,2016,For storage only,13,Illescas,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -962,555544100,Peru,METT,2016,For storage only,13,Lomas de Ancon,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -963,555544102,Peru,METT,2016,For storage only,13,Reserva Paisajistica Cerro Khapia,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -964,555544099,Peru,METT,2016,For storage only,13,Rio Nieva,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -965,168280,Peru,METT,2016,For storage only,13,Santiago Comaina,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -966,555544105,Peru,METT,2016,For storage only,13,Sierra del Divisor,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -967,555544104,Peru,METT,2016,For storage only,13,Yaguas,Zonas Reservadas,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -968,555544093,Peru,METT,2016,For storage only,13,"Isla Lobos de Tierra - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -969,555544094,Peru,METT,2016,For storage only,13,"Islas Lobos de Afuera - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -970,555544092,Peru,METT,2016,For storage only,13,"Islas Macabí - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -971,555544095,Peru,METT,2016,For storage only,13,"Islas Guañape Norte y Guañape Sur - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -972,555544098,Peru,METT,2016,For storage only,13,"Isla Chao - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -973,555544097,Peru,METT,2016,For storage only,13,"Islote Corcovado - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -974,555555598,Peru,METT,2016,For storage only,13,"Isla Santa - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -975,555555610,Peru,METT,2016,For storage only,13,"Punta Culebras - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -976,555555606,Peru,METT,2016,For storage only,13,"Punta Colorado - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -977,555555612,Peru,METT,2016,For storage only,13,"Punta La Litera - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -978,555555600,Peru,METT,2016,For storage only,13,"Islote Don Martín - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -979,555555603,Peru,METT,2016,For storage only,13,"Punta Salinas, Isla Huampanú e Isla Mazorca - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -980,555544090,Peru,METT,2016,For storage only,13,"Islote Grupo de Pescadores - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -981,555555601,Peru,METT,2016,For storage only,13,"Islas Cavinzas e Islotes Palominos - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -982,555555599,Peru,METT,2016,For storage only,13,"Islas Pachacamac - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -983,555555602,Peru,METT,2016,For storage only,13,"Isla Asia - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -984,555544096,Peru,METT,2016,For storage only,13,"Isla Chincha Norte, Centro y Sur - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -985,555544091,Peru,METT,2016,For storage only,13,"Isla Ballestas Norte, Centro y Sur - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -986,555555597,Peru,METT,2016,For storage only,13,"Punta Lomitas - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -987,555555607,Peru,METT,2016,For storage only,13,"Punta San Juan - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -988,555555604,Peru,METT,2016,For storage only,13,"Punta Lomas - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -989,555555608,Peru,METT,2016,For storage only,13,"Punta Atico - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -990,555555611,Peru,METT,2016,For storage only,13,"Punta La Chira - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -991,555555605,Peru,METT,2016,For storage only,13,"Punta Hornillos - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -992,555555609,Peru,METT,2016,For storage only,13,"Punta Coles - Sistema de islas, islotes y puntas guaneras",Reservas Nacionales,Peru Management Effectiveness Evaluation,SERNANP,2018,Spanish -993,102320,Costa Rica,SINAD,2016,For storage only,14,Abangares,Zona Protectora,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -994,102337,Costa Rica,SINAD,2016,For storage only,14,Alberto Manuel Brenes,Reserva Biológica,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -996,19385,Costa Rica,SINAD,2016,For storage only,14,Arenal Monteverde,Zona Protectora,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -997,19372,Costa Rica,SINAD,2016,For storage only,14,Barbilla,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -998,12493,Costa Rica,SINAD,2016,For storage only,14,Barra Del Colorado,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -999,2214,Costa Rica,SINAD,2016,For storage only,14,Barra Honda,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1000,168136,Costa Rica,SINAD,2016,For storage only,14,Barú,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1002,165,Costa Rica,SINAD,2016,For storage only,14,Braulio Carrillo,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1003,102300,Costa Rica,SINAD,2016,For storage only,14,Cabo Blanco,Reserva Natural Absoluta,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1004,2235,Costa Rica,SINAD,2016,For storage only,14,Cahuita,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1005,108133,Costa Rica,SINAD,2016,For storage only,14,Caletas-Arío,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1006,102322,Costa Rica,SINAD,2016,For storage only,14,Camaronal,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1007,67864,Costa Rica,SINAD,2016,For storage only,14,Caño Negro,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1008,157,Costa Rica,SINAD,2016,For storage only,14,Carara,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1009,102351,Costa Rica,SINAD,2016,For storage only,14,Cerro Vueltas,Reserva Biológica,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1010,3329,Costa Rica,SINAD,2016,For storage only,14,Cerros De Escazú,Zona Protectora,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1011,163,Costa Rica,SINAD,2016,For storage only,14,Chirripó,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1012,108137,Costa Rica,SINAD,2016,For storage only,14,Cipancí- ACAT,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1015,164,Costa Rica,SINAD,2016,For storage only,14,Corcovado,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1016,302001,Costa Rica,SINAD,2016,For storage only,14,Corral De Piedra,Humedales,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1017,168129,Costa Rica,SINAD,2016,For storage only,14,Corredor Fronterizo,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1018,108140,Costa Rica,SINAD,2016,For storage only,14,Diriá,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1019,301995,Costa Rica,SINAD,2016,For storage only,14,Estación Experimental Horizontes,Otras,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1020,108142,Costa Rica,SINAD,2016,For storage only,14,Estero Puntarenas,Humedales,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1021,102304,Costa Rica,SINAD,2016,For storage only,14,Fernando Castro,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1022,145524,Costa Rica,SINAD,2016,For storage only,14,Gandoca-Manzanillo,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1023,12492,Costa Rica,SINAD,2016,For storage only,14,Golfito,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1024,3317,Costa Rica,SINAD,2016,For storage only,14,Golfo Dulce,Reserva Forestal,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1025,19368,Costa Rica,SINAD,2016,For storage only,14,Guanacaste,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1027,156,Costa Rica,SINAD,2016,For storage only,14,Hitoy Cerere,Reserva Biológica,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1028,102321,Costa Rica,SINAD,2016,For storage only,14,Iguanita,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1029,11849,Costa Rica,SINAD,2016,For storage only,14,Isla Del Caño,Reserva Biológica,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1030,170,Costa Rica,SINAD,2016,For storage only,14,Isla Del Coco,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1031,11848,Costa Rica,SINAD,2016,For storage only,14,Isla Pájaros,Reserva Biológica,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1032,108144,Costa Rica,SINAD,2016,For storage only,14,Isla San Lucas,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1033,19379,Costa Rica,SINAD,2016,For storage only,14,Juan Castro Blanco,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1034,102332,Costa Rica,SINAD,2016,For storage only,14,Junquillal,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1035,108146,Costa Rica,SINAD,2016,For storage only,14,La Cangreja,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1036,102310,Costa Rica,SINAD,2016,For storage only,14,Las Baulas,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1037,19370,Costa Rica,SINAD,2016,For storage only,14,Lomas Barbudal,Reserva Biológica,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1038,108150,Costa Rica,SINAD,2016,For storage only,14,Los Quetzales,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1039,3316,Costa Rica,SINAD,2016,For storage only,14,Los Santos,Reserva Forestal,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1040,2250,Costa Rica,SINAD,2016,For storage only,14,Manuel Antonio,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1041,115179,Costa Rica,SINAD,2016,For storage only,14,Maquenque,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1042,30595,Costa Rica,SINAD,2016,For storage only,14,Marino Ballena,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1043,168146,Costa Rica,SINAD,2016,For storage only,14,Mata Redonda,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1044,36057,Costa Rica,SINAD,2016,For storage only,14,Miravalles,Zona Protectora,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1045,108153,Costa Rica,SINAD,2016,For storage only,14,Monte Alto,Zona Protectora,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1046,108154,Costa Rica,SINAD,2016,For storage only,14,Monumento Nacional Guayabo,Otras,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1047,102311,Costa Rica,SINAD,2016,For storage only,14,Nicolás Wessberg,Reserva Natural Absoluta,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1048,12244,Costa Rica,SINAD,2016,For storage only,14,Ostional,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1049,4646,Costa Rica,SINAD,2016,For storage only,14,Palo Verde,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1050,102367,Costa Rica,SINAD,2016,For storage only,14,Piedras Blancas,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1053,108162,Costa Rica,SINAD,2016,For storage only,14,Playa Hermosa,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1054,168,Costa Rica,SINAD,2016,For storage only,14,Rincón De La Vieja,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1055,3315,Costa Rica,SINAD,2016,For storage only,14,Rio Macho,Reserva Forestal,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1056,108169,Costa Rica,SINAD,2016,For storage only,14,Romelia,Refugio Nacional de Vida Silvestre,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1057,166,Costa Rica,SINAD,2016,For storage only,14,Santa Rosa,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1058,3325,Costa Rica,SINAD,2016,For storage only,14,Taboga,Reserva Forestal,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1059,108173,Costa Rica,SINAD,2016,For storage only,14,Tapantí Macizo De La Muerte,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1060,145527,Costa Rica,SINAD,2016,For storage only,14,Térraba-Sierpe,Humedales,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1061,19384,Costa Rica,SINAD,2016,For storage only,14,Tivives,Zona Protectora,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1062,167,Costa Rica,SINAD,2016,For storage only,14,Tortuguero,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1063,36059,Costa Rica,SINAD,2016,For storage only,14,Volcán Arenal,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1064,171,Costa Rica,SINAD,2016,For storage only,14,Volcán Irazú,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1065,169,Costa Rica,SINAD,2016,For storage only,14,Volcán Poás,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1066,102334,Costa Rica,SINAD,2016,For storage only,14,Volcán Tenorio,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1067,168122,Costa Rica,SINAD,2016,For storage only,14,Volcán Turrialba,Parque Nacional,Costa Rica Management Effectiveness Evaluation,SINAC,2018,Spanish -1068,61426,Estonia,PANParks,2009,For storage only,15,Soomaa rahvuspark,National park,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1069,1646,Estonia,METT,2010,For storage only,15,Lahemaa rahvuspark,National park,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1070,61426,Estonia,METT,2010,For storage only,15,Soomaa rahvuspark,National park,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1071,1650,Estonia,METT,2010,For storage only,15,Viidumäe looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1072,1649,Estonia,METT,2010,For storage only,15,Nigula looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1073,379090,Estonia,METT,2010,For storage only,15,Kärevere looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1074,378865,Estonia,METT,2010,For storage only,15,Põhja-Kõrvemaa looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1075,340192,Estonia,METT,2010,For storage only,15,Vooremaa maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1076,147534,Estonia,METT,2010,For storage only,15,Viljandi maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1077,379106,Estonia,METT,2010,For storage only,15,Struuga maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1078,326734,Estonia,METT,2010,For storage only,15,Päite maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1079,180991,Estonia,METT,2010,For storage only,15,Nõmme-Mustamäe maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1080,101316,Estonia,METT,2010,For storage only,15,Panga maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1081,147544,Estonia,METT,2010,For storage only,15,Hiiumaa laidude maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1082,101304,Estonia,METT,2010,For storage only,15,Naissaare looduspark,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1084,555558949,Estonia,METT,2010,For storage only,15,Peipsiveere looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1085,379250,Estonia,METT,2010,For storage only,15,Lavassaare hoiuala,Limited-conservation area,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1086,326905,Estonia,METT,2010,For storage only,15,Hiiu madala hoiuala,Limited-conservation area,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1087,379237,Estonia,METT,2010,For storage only,15,Käntu-Kastja hoiuala (Läänemaa),Limited-conservation area,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1088,31561,Estonia,METT,2012,For storage only,15,Karula rahvuspark,National park,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1089,1648,Estonia,METT,2012,For storage only,15,Vilsandi rahvuspark,National park,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1090,71235,Estonia,METT,2012,For storage only,15,Alam-Pedja looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1091,15776,Estonia,METT,2012,For storage only,15,Endla looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1092,339723,Estonia,METT,2012,For storage only,15,Luitemaa looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1093,339753,Estonia,METT,2012,For storage only,15,Mahtra looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1094,31580,Estonia,METT,2012,For storage only,15,Muraka looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1095,171052,Estonia,METT,2012,For storage only,15,Kõnnumaa maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1096,101286,Estonia,METT,2012,For storage only,15,Loodi looduspark,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1097,31566,Estonia,METT,2012,For storage only,15,Läänemaa Suursoo maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1098,555587895,Estonia,METT,2012,For storage only,15,Meenikunno looduskaitseala,Nature Reserve,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1099,101310,Estonia,METT,2012,For storage only,15,Ontika maastikukaitseala,Protected landscape (nature park),Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1100,326903,Estonia,METT,2012,For storage only,15,Haavakannu hoiuala,Limited-conservation area,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1101,339656,Estonia,METT,2012,For storage only,15,Lahepera hoiuala,Limited-conservation area,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1102,326958,Estonia,METT,2012,For storage only,15,Lüübnitsa hoiuala,Limited-conservation area,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1103,326968,Estonia,METT,2012,For storage only,15,Nõva-Osmussaare hoiuala (Läänemaa),Limited-conservation area,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1104,326975,Estonia,METT,2012,For storage only,15,Pakri hoiuala,Limited-conservation area,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1105,379261,Estonia,METT,2012,For storage only,15,Pärnu jõe hoiuala (Pärnu),Limited-conservation area,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1106,1647,Estonia,European Diploma,2003,For storage only,15,Matsalu rahvuspark,National park,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1107,1647,Estonia,European Diploma,2008,For storage only,15,Matsalu rahvuspark,National park,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1108,1647,Estonia,European Diploma,2012,For storage only,15,Matsalu rahvuspark,National park,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1109,1647,Estonia,European Diploma,2017,For storage only,15,Matsalu rahvuspark,National park,Estonia Management Effectiveness Evaluation,Estonian Environmental Agency,2018,Estonian -1110,193,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Tikal,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1111,193,Guatemala,Parks profiles,2013,For storage only,16,Tikal,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1112,193,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Tikal,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1113,193,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Tikal,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1114,196,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Volcán Pacaya y Laguna de Calderas,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1115,196,Guatemala,PROARCA/CAPAS,2016,For storage only,16,Volcán Pacaya y Laguna de Calderas,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1116,2551,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Mario Dary,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1117,2551,Guatemala,PROARCA/CAPAS,2017,For storage only,16,Mario Dary,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1118,2551,Guatemala,PROARCA/CAPAS,2013,For storage only,16,Mario Dary,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1119,2551,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Mario Dary,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1120,12422,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Monterrico,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1121,12422,Guatemala,PROARCA/CAPAS,2016,For storage only,16,Monterrico,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1122,12422,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Monterrico,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1123,12555,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Cerro San Gil,Reserva Protectora de Manantiales,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1124,12555,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Cerro San Gil,Reserva Protectora de Manantiales,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1125,12555,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Cerro San Gil,Reserva Protectora de Manantiales,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1126,12555,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Cerro San Gil,Reserva Protectora de Manantiales,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1127,12555,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Cerro San Gil,Reserva Protectora de Manantiales,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1128,12564,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Punta de Manabique,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1129,12564,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Punta de Manabique,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1130,12564,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Punta de Manabique,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1131,12564,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Punta de Manabique,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1132,12564,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Punta de Manabique,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1133,12583,Guatemala,PROARCA/CAPAS,2016,For storage only,16,Laguna de lachuá,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1134,12583,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Laguna de lachuá,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1135,12583,Guatemala,METT,2008,For storage only,16,Laguna de lachuá,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1136,12583,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Laguna de lachuá,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1137,12593,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Cerro Cahuí,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1138,12593,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Cerro Cahuí,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1139,12593,Guatemala,Parks profiles,2014,For storage only,16,Cerro Cahuí,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1140,12593,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Cerro Cahuí,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1141,30604,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Mirador - Río Azul,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1142,30604,Guatemala,Parks profiles,2014,For storage only,16,Mirador - Río Azul,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1143,30604,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Mirador - Río Azul,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1144,30604,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Mirador - Río Azul,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1145,30604,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Mirador - Río Azul,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1146,30605,Guatemala,Parks profiles,2014,For storage only,16,Sierra del Lacandón,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1147,30605,Guatemala,PROARCA/CAPAS,2003,For storage only,16,Sierra del Lacandón,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1148,30605,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Sierra del Lacandón,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1149,30605,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Sierra del Lacandón,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1150,30605,Guatemala,PROARCA/CAPAS,2002,For storage only,16,Sierra del Lacandón,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1151,30605,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Sierra del Lacandón,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1152,30606,Guatemala,PROARCA/CAPAS,2006,For storage only,16,San Miguel La Palotada - El Zotz,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1153,30606,Guatemala,PROARCA/CAPAS,2004,For storage only,16,San Miguel La Palotada - El Zotz,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1154,30606,Guatemala,PROARCA/CAPAS,2005,For storage only,16,San Miguel La Palotada - El Zotz,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1155,30606,Guatemala,Parks profiles,2014,For storage only,16,San Miguel La Palotada - El Zotz,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1156,30607,Guatemala,PROARCA/CAPAS,2013,For storage only,16,Quirigua,Monumento Cultural,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1157,102717,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1158,102717,Guatemala,PIP Site Consolidation,1998,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1159,102717,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1160,102717,Guatemala,PIP Site Consolidation,2000,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1161,102717,Guatemala,PIP Site Consolidation,2015,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1162,102717,Guatemala,PROARCA/CAPAS,2002,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1163,102717,Guatemala,PIP Site Consolidation,2001,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1164,102717,Guatemala,PIP Site Consolidation,1999,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1165,102717,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1166,102717,Guatemala,PIP Site Consolidation,2014,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1167,102717,Guatemala,PIP Site Consolidation,2013,For storage only,16,Bocas del Polochic,Refugio de Vida Silvestre,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1168,102817,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Naachtún - Dos Lagunas,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1169,102817,Guatemala,Parks profiles,2014,For storage only,16,Naachtún - Dos Lagunas,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1170,102817,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Naachtún - Dos Lagunas,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1171,102817,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Naachtún - Dos Lagunas,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1172,102855,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Cordillera Alux,Reserva Protectora de Manantiales,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1173,102855,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Cordillera Alux,Reserva Protectora de Manantiales,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1174,102855,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Cordillera Alux,Reserva Protectora de Manantiales,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1175,102855,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Cordillera Alux,Reserva Protectora de Manantiales,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1176,107034,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Cuenca del Lago Atitlán,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1177,107034,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Cuenca del Lago Atitlán,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1178,107034,Guatemala,PROARCA/CAPAS,2003,For storage only,16,Cuenca del Lago Atitlán,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1179,107034,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Cuenca del Lago Atitlán,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1180,107088,Guatemala,PROARCA/CAPAS,2015,For storage only,16,La Vega del Zope,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1181,107088,Guatemala,PROARCA/CAPAS,2014,For storage only,16,La Vega del Zope,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1182,107096,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Parque Nacional Las Victorias,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1183,107096,Guatemala,PROARCA/CAPAS,2016,For storage only,16,Parque Nacional Las Victorias,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1184,107119,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Naciones Unidas,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1186,107119,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Naciones Unidas,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1187,107132,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Río Dulce,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1188,107132,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Río Dulce,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1189,107132,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Río Dulce,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1190,107132,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Río Dulce,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1191,107132,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Río Dulce,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1192,107152,Guatemala,METT,2013,For storage only,16,Todos Santos Cuchumatán,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1193,107152,Guatemala,METT,2015,For storage only,16,Todos Santos Cuchumatán,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1194,107152,Guatemala,METT,2014,For storage only,16,Todos Santos Cuchumatán,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1195,115081,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Laguna del Tigre - Río Escondido,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1196,115081,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Laguna del Tigre - Río Escondido,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1197,115081,Guatemala,Parks profiles,2014,For storage only,16,Laguna del Tigre - Río Escondido,Biotopo Protegido,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1198,302095,Guatemala,PROARCA/CAPAS,2013,For storage only,16,Volcán y Laguna de Ipala,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1199,302095,Guatemala,PROARCA/CAPAS,2016,For storage only,16,Volcán y Laguna de Ipala,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1200,302095,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Volcán y Laguna de Ipala,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1201,302095,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Volcán y Laguna de Ipala,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1202,302112,Guatemala,PROARCA/CAPAS,2013,For storage only,16,Volcán de Suchitán,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1203,302112,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Volcán de Suchitán,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1204,302112,Guatemala,PROARCA/CAPAS,2016,For storage only,16,Volcán de Suchitán,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1205,302112,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Volcán de Suchitán,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1206,302113,Guatemala,PROARCA/CAPAS,2013,For storage only,16,Zunil,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1207,302113,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Zunil,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1208,302113,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Zunil,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1209,302113,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Zunil,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1210,302113,Guatemala,PROARCA/CAPAS,2016,For storage only,16,Zunil,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1211,302115,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Volcán Chicabal,Zona de Veda Definitiva,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1212,302115,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Volcán Chicabal,Zona de Veda Definitiva,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1214,302115,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Volcán Chicabal,Zona de Veda Definitiva,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1215,302115,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Volcán Chicabal,Zona de Veda Definitiva,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1216,313055,Guatemala,METT,2008,For storage only,16,Acatenango,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1217,313055,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Acatenango,Parque Regional Municipal,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1218,315070,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Río Sarstún,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1219,315070,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Río Sarstún,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1220,315070,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Río Sarstún,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1221,315070,Guatemala,PROARCA/CAPAS,2014,For storage only,16,Río Sarstún,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1222,315070,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Río Sarstún,AUM,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1223,342350,Guatemala,PIP Site Consolidation,1997,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1224,342350,Guatemala,PIP Site Consolidation,1998,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1225,342350,Guatemala,PIP Site Consolidation,1999,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1226,342350,Guatemala,PIP Site Consolidation,2000,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1227,342350,Guatemala,PIP Site Consolidation,1996,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1228,342350,Guatemala,PIP Site Consolidation,2001,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1229,342350,Guatemala,PROARCA/CAPAS,2002,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1230,342350,Guatemala,Parks profiles,2013,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1231,342350,Guatemala,PROARCA/CAPAS,2003,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1232,342350,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1233,342350,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1234,342350,Guatemala,PIP Site Consolidation,2014,For storage only,16,Sierra de las Minas,Reserva de la Biosfera,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1235,342356,Guatemala,PROARCA/CAPAS,2002,For storage only,16,Laguna del Tigre,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1236,342356,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Laguna del Tigre,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1237,342356,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Laguna del Tigre,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1238,342356,Guatemala,Parks profiles,2014,For storage only,16,Laguna del Tigre,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1240,342356,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Laguna del Tigre,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1241,342452,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Semuc Champey,Monumento Natural,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1242,342452,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Semuc Champey,Monumento Natural,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1243,342452,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Semuc Champey,Monumento Natural,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1244,342452,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Semuc Champey,Monumento Natural,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1245,342460,Guatemala,Parks profiles,2014,For storage only,16,Yaxhá - Nakúm - Naranjo,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1246,342460,Guatemala,PROARCA/CAPAS,2015,For storage only,16,Yaxhá - Nakúm - Naranjo,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1247,342460,Guatemala,PROARCA/CAPAS,2005,For storage only,16,Yaxhá - Nakúm - Naranjo,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1248,342460,Guatemala,PROARCA/CAPAS,2006,For storage only,16,Yaxhá - Nakúm - Naranjo,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1249,342460,Guatemala,PROARCA/CAPAS,2004,For storage only,16,Yaxhá - Nakúm - Naranjo,Parque Nacional,Guatemala Management Effectiveness Evaluation,CONAP,2018,Spanish -1250,198,Guyana,METT,2015,For storage only,17,Kaieteur National Park,National Park,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1251,198,Guyana,METT,2016,For storage only,17,Kaieteur National Park,National Park,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1252,198,Guyana,METT,2017,For storage only,17,Kaieteur National Park,National Park,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1253,41049,Guyana,METT,2015,For storage only,17,Kanuku Mountains Protected Area,Managed Resource Use Area,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1254,41049,Guyana,METT,2016,For storage only,17,Kanuku Mountains Protected Area,Managed Resource Use Area,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1255,41049,Guyana,METT,2017,For storage only,17,Kanuku Mountains Protected Area,Managed Resource Use Area,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1256,41057,Guyana,METT,2015,For storage only,17,Shell Beach Protected Area,Managed Resource Use Area,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1257,41057,Guyana,METT,2016,For storage only,17,Shell Beach Protected Area,Managed Resource Use Area,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1258,41057,Guyana,METT,2017,For storage only,17,Shell Beach Protected Area,Managed Resource Use Area,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1259,41053,Guyana,METT,2017,For storage only,17,Kanashen Amerindian Protected Area,Community Owned Conservation Area,Guyana Management Effectiveness Evaluation,Protected Areas Commission,2018,English -1260,68255,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rannoch Moor,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1261,68262,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Dee Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1262,68263,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Swale,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1263,68264,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chesil Beach & The Fleet,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1264,68265,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Derwent Valley,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1265,68299,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Caron,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1266,68300,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nene Washes,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1267,68301,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roydon Common,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1268,134955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gibraltar Point,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1269,68302,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Tayside Goose Roosts,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1270,95295,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broadland,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1271,68247,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lindisfarne,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1272,220082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Uist Machair & Lochs,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1273,68249,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Leven,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1274,68250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Lomond,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1275,68251,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Neagh & Lough Beg,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1276,68252,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minsmere - Walberswick,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1277,68253,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Norfolk Coast,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1278,68254,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ouse Washes,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1279,68243,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Fochno & Dyfi,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1280,95302,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Severn Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1281,68303,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hamford Water,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1282,68304,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crymlyn Bog,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1283,95280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The New Forest,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1284,94081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Malham Tarn,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1285,94084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thursley & Ockley Bog,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1286,94085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benfleet & Southend Marshes,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1287,95287,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dengie,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1288,95304,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dersingham Bog,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1289,95305,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wicken Fen,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1290,220048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carlingford Lough,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1291,220084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strangford Loch,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1292,220052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duddon Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1293,220089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ythan Estuary & Meikle Loch,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1294,127892,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foulness,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1295,127889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alde-Ore Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1296,68266,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holburn Lake & Moss,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1297,68267,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Irthinghead Mires,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1298,68256,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairngorm Lochs,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1299,68257,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Lintrathen,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1300,68258,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Claish Moss,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1301,68259,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Silver Flowe,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1302,68260,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abberton Reservoir,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1303,68261,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rostherne Mere,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1304,68269,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Martin Mere,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1305,95297,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ribble & Alt Estuaries,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1306,68271,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Skene,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1307,68283,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fala Flow,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1308,68268,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leighton Moss,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1309,68272,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Eye,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1310,68273,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Solway Flats & Marshes,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1311,68274,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chichester and Langstone Harbours,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1312,68276,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Wash,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1313,68277,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pagham Harbour,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1314,68278,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Gruinart Flats, Islay","Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1315,68279,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eilean Na Muice Duibhe,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1316,68280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bridgend Flats, Islay","Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1317,68281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gladhouse Reservoir,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1318,68282,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Din Moss - Hoselaw Loch,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1319,95308,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rinns of Islay,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1320,68286,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch an Duin,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1321,127895,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morecambe Bay,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1322,166919,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pettigoe Plateau,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1323,166876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Spey - Insh Marshes,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1324,68288,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rutland Water,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1325,68289,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Idwal,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1326,68290,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Tegid,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1327,68291,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Esthwaite Water,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1328,166875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moray and Nairn Coast,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1329,68293,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Exe Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1330,68295,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chippenham Fen,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1331,68296,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burry Inlet,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1332,68297,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ken & River Dee Marshes,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1333,166874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Midland Meres and Mosses Phase 2,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1334,166872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Larne Lough,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1335,166877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Lough Erne,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1336,166871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dornoch Firth and Loch Fleet,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1337,68298,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Spynie,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1338,68287,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redgrave and South Lopham Fens,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1339,68292,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walmore Common,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1340,94086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cameron Reservoir,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1341,94082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Medway Estuary & Marshes,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1342,94083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stodmarsh,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1343,95288,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Kinnordy,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1344,94089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Midland Meres & Mosses,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1345,95290,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stour & Orwell Estuaries,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1346,95291,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Humber Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1347,95292,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thanet Coast & Sandwich Bay,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1348,95293,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colne Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1349,95294,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Maree,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1350,95296,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Montrose Basin,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1351,95298,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portsmouth Harbour,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1352,95299,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crouch & Roach Estuaries,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1353,95300,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coll,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1354,95303,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teesmouth & Cleveland Coast,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1355,95306,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodwalton Fen,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1356,95307,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Strathbeg,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1357,95309,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westwater,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1358,134954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mersey Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1359,127891,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deben Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1360,127893,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenlaw Moor,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1361,129935,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Castle Loch, Lochmaben","Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1362,220049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cromarty Firth,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1363,220061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Moray Firth,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1364,220069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muir of Dinnet,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1365,220072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Uist Machair and Islands,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1366,220076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poole Harbour,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1367,198335,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arun Valley,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1368,220073,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northumbria Coast,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1369,220086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thames Estuary and Marshes,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1370,220095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lee Valley,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1371,220097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South West London Waterbodies,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1372,127890,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breydon Water,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1373,900585,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Isles of Scilly,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1374,166758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avon Valley,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1375,166760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsydd Mon a Llyn,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1376,166759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caithness Lochs,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1377,127894,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ruthven,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1378,220080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Somerset Levels and Moors,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1379,220077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ronas Hill - North Roe & Tingon,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1380,220057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Sanday Coast,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1381,220053,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dorset Heathlands,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1382,220079,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Solent and Southampton Water,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1383,220062,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kintyre Goose Roosts,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1384,220045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belfast Lough,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1385,220044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballynahone Bog,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1386,220051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cuilcagh Mountain,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1387,220058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garron Plateau,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1388,198334,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caithness & Sutherland Peatlands,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1389,220064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Inch & Torrs Warren,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1390,168119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pevensey Levels,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1391,220065,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Foyle,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1392,220091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Bog,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1393,220092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fairy Water Bogs,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1394,220093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Firth of Tay and Eden Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1395,220096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slieve Beagh,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1396,220094,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Clyde Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1397,900584,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garry Bog,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1398,900587,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lewis Peatlands,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1399,900634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Firth of Forth,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1400,900711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sleibhtean agus Cladach Thiriodh,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1401,901213,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fardrum and Roosky Turloughs,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1402,900851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turmennan Lough,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1403,555543099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Nene Valley Gravel Pits,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1404,555592571,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Mersey Narrows and North Wirral Foreshore,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1405,95301,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackwater Estuary,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1406,903063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Magheraveely Marl Loughs,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1407,555624633,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Hebrides and the Minches,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1408,555624634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southern North Sea,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1409,555624635,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bristol Channel Approaches / Dynesfeydd Môr Hafren,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1410,555624636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Wales Marine / Gorllewin Cymru Forol,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1411,555624637,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Anglesey Marine / Gogledd Môn Forol,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1412,555624638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Channel,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1413,555541848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berwyn,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1414,555535619,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fontmell And Melbury Downs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1415,555535620,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pewsey Downs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1416,555535625,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braunton Burrows,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1417,555535626,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill Of Towanreef,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1418,555535631,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Windsor Forest And Great Park,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1419,555535632,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bredon Hill,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1420,555535633,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rum,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1421,555535634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Preseli,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1422,555535635,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Itchen,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1423,555535636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Devon Pebblebed Heaths,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1424,555535651,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Taynish And Knapdale Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1425,555535652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salisbury Plain,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1426,555535653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gower Commons/ Tiroedd Comin Gwyr,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1427,555535654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yell Sound Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1428,555535655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Tweed,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1429,555535656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monach Islands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1430,555535657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Rona,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1431,555579241,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sound Of Barra,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1432,555535658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mousa,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1433,555535659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cardigan Bay/ Bae Ceredigion,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1434,555535660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Uist Machair,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1435,555535661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ebernoe Common,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1436,555535662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Mens,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1437,555535663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Epping Forest,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1438,555535664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Hampshire Hangers,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1439,555535665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chilterns Beechwoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1440,555535666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wye Valley Woodlands/ Coetiroedd Dyffryn Gwy,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1441,555535667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avon Gorge Woodlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1442,555535668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Downton Gorge,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1443,555535669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birklands And Bilhaugh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1444,555535671,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Borrowdale Woodland Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1445,555535672,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd A Cheunant Rheidol/ Rheidol Woods And Gorge,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1446,555535673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Dartmoor Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1447,555535674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Etive Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1448,555535675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Tanar,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1449,555535676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Wood Of Rannoch,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1450,555535677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinveachy Forest,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1451,555535678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Amat Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1452,555535679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Y Cerrig,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1453,555535680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingley Vale,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1454,555535681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Eden Dene,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1455,555535693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mole Gap To Reigate Escarpment,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1456,555535694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minsmere To Walberswick Heaths And Marshes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1457,555535695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Stiperstones And The Hollies,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1458,555535720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tulach Hill And Glen Fender Meadows,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1459,555535721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Norfolk Valley Fens,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1460,555535722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morrone Birkwood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1461,555535723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Lawers,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1462,555535724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Dearg,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1463,555535725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Lui,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1464,555535726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Heasgarnich,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1465,555535727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flanders Mosses,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1466,555535728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Solway Mosses North,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1467,555535729,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Fenn`S, Whixall, Bettisfield, Wem And Cadney Mosses",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1468,555535730,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorne Moor,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1469,555535731,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Border Mires, Kielder - Butterburn",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1470,555535732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berwyn A Mynyddoedd De Clwyd/ Berwyn And South Clwyd Mountains,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1471,555535733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elenydd,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1472,555535734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dartmoor,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1473,555535735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Harris,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1474,555535736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumochter Hills,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1475,555535737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhinog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1476,555535738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eryri/ Snowdonia,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1477,555535739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Wyvis,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1478,555535740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Alder And Aonach Beag,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1479,555535741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meall Na Samhna,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1480,555535742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag Meagaidh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1481,555535743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Nevis,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1482,555535744,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn A`Ghlo,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1483,555535745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardmeanach,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1484,555535746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Coe,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1485,555535747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lake District High Fells,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1486,555535752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Moidart,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1487,555535753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Borgie,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1488,555535754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Kerry,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1489,555535755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Usk/ Afon Wysg,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1490,555535756,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Tywi/ River Tywi,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1491,555535757,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ouse Washes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1492,555535758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Avon,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1493,555535759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Solway Firth,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1494,555535760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morecambe Bay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1495,555535761,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Severn Estuary/ Môr Hafren,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1496,555535762,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drigg Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1497,555535763,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flamborough Head,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1498,555535764,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Luce Bay And Sands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1499,555535765,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Invernaver,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1500,555535766,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sands Of Forvie,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1501,555535767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winterton - Horsey Dunes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1502,555535768,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barry Links,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1503,555535769,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St David`S / Ty Ddewi,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1504,555535770,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Ynys Gybi/ Holy Island Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1505,555535771,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tintagel-Marsland-Clovelly Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1506,555535772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oldshoremore And Sandwood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1507,555535773,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dungeness,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1508,555535774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sefton Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1509,555535775,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandwich Bay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1510,555535776,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clyde Valley Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1511,555535777,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardgour Pinewoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1512,555535778,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benacre To Easton Bavents Lagoons,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1513,555535779,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thanet Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1514,555535780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plymouth Sound And Estuaries,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1515,555535781,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fal And Helford,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1516,555535782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lundy,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1517,555535783,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pembrokeshire Marine/ Sir Benfro Forol,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1518,555535784,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen Llyn A`R Sarnau/ Lleyn Peninsula And The Sarnau,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1519,555535785,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foinaven,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1520,555535786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Lomond Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1521,555535787,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mound Alderwoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1522,555535788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Conon Islands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1523,555535789,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Broads,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1524,555535790,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag Nan Gamhainn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1525,555535791,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Cadlan,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1526,555535792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stromness Heaths And Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1527,555535793,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lendalfoot Hills Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1528,555535794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitlaw And Branxholme,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1529,555535795,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Midlands Mosses,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1530,555535796,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Maree Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1531,555535797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caithness And Sutherland Peatlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1532,555535798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monadh Mor,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1533,555535804,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wormley Hoddesdonpark Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1534,555535805,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blean Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1535,555535806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coll Machair,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1536,555535807,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhidorroch Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1537,555535808,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strathglass Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1538,555535809,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tiree Machair,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1539,555535810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Of Stenness,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1540,555535811,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moor House - Upper Teesdale,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1541,555535812,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Pennine Dales Meadows,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1542,555535813,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craven Limestone Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1543,555535814,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morecambe Bay Pavements,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1544,555535815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Asby Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1545,555535816,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orfordness - Shingle Street,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1546,555535817,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fenland,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1547,555535818,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tanat And Vyrnwy Bat Sites/ Safleoedd Ystlumod Tanat Ac Efyrnwy,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1548,555535819,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Usk Bat Sites/ Safleoedd Ystlumod Wysg,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1549,555535820,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Limestone Coast Of South West Wales/ Arfordir Calchfaen De Orllewin Cymru,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1550,555535821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Orme`S Head/ Pen Y Gogarth,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1551,555535822,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Derw A Safleoedd Ystlumod Meirion/ Meirionnydd Oakwoods And Bat Sites,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1552,555535823,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Caron,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1553,555535824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Fochno,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1554,555535825,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Goch,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1555,555535826,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pembrokeshire Bat Sites And Bosherston Lakes/ Safleoedd Ystlum Sir Benfro A Llynnoedd Bosherston,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1556,555535827,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wye Valley And Forest Of Dean Bat Sites/ Safleoedd Ystlumod Dyffryn Gwy A Fforest Y Ddena,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1557,555535828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Isle Of Wight Downs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1558,555535829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Meadow And Clattinger Farm,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1559,555535851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Nam Madadh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1560,555535852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berwickshire And North Northumberland Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1561,555535853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Solent And Isle Of Wight Lagoons,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1562,555535854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Roag Lagoons,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1563,555535855,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Wash And North Norfolk Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1564,555535856,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chesil And The Fleet,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1565,555535857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lochs Duich, Long And Alsh Reefs",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1566,555535858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Faray And Holm Of Faray,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1567,555535859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Northumberland Dunes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1568,555535860,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Obain Loch Euphoirt,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1569,555535877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glac Na Criche,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1570,555535878,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn Nan Tri-Tighearnan,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1571,555535879,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hascosay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1572,555535880,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inverasdale Peatlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1573,555536013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craighall Gorge,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1574,555535910,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Isle Of Portland To Studland Cliffs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1575,555535911,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Albans Head To Durlston Head,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1576,555535912,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sidmouth To West Bay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1577,555535913,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breckland,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1578,555535914,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rex Graham Reserve,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1579,555535915,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morven And Mullachdubh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1580,555535916,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muir Of Dinnet,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1581,555535917,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower River Spey - Spey Bay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1582,555535918,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carmarthen Bay Dunes/ Twyni Bae Caerfyrddin,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1583,555535919,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carmarthen Bay And Estuaries/ Bae Caerfyrddin Ac Aberoedd,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1584,555535920,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Y Twyni O Abermenai I Aberffraw/ Abermenai To Aberffraw Dunes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1585,555535921,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Môn: Cors Heli / Anglesey Coast: Saltmarsh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1586,555535922,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballochbuie,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1587,555535929,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Devil`S Dyke,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1588,555535930,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dorset Heaths (Purbeck And Wareham) And Studland Dunes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1589,555535936,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kennet And Lambourn Floodplain,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1590,555535937,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Largalinny,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1591,555535938,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Gwyrfai A Llyn Cwellyn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1592,555535939,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Melvin,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1593,555535940,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mendip Woodlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1594,555535941,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morfa Harlech A Morfa Dyffryn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1595,555535942,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mottey Meadows,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1596,555535943,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Somerset And Mendip Bats,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1597,555535944,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orton Pit,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1598,555535945,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portholme,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1599,555535946,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rathlin Island,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1600,555535947,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Camel,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1601,555535948,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Ehen,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1602,555536014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedwigoedd Penrhyn Creuddyn/ Creuddyn Peninsula Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1603,555536015,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Strathearn Oakwoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1604,555536034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coetiroedd Cwm Elan/ Elan Valley Woodlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1605,555536035,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedwigoedd Dyffryn Elwy/ Elwy Valley Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1606,555536036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Emer Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1607,555536037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Exmoor And Quantock Oakwoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1608,555536038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fair Isle,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1609,555536039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fens Pools,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1610,555536100,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Montgomery Canal,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1611,555536116,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North West Pembrokeshire Commons/ Comins Gogledd Orllewin Sir Benfro,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1612,555536117,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Ascrib, Isay And Dunvegan",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1613,555536118,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardvar And Loch A`Mhuilinn Woodlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1614,555536119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Overstrand Cliffs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1615,555536120,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Owenkillew River,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1616,555536121,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ox Close,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1617,555536154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roman Wall Loughs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1618,555536160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shingle Islands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1619,555536161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shortheath Common,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1620,555536162,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skipwith Common,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1621,555536163,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slieve Gullion,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1622,555536164,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Pennine Moors,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1623,555536165,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Abb`S Head To Fast Castle,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1624,555536233,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wyville Thomson Ridge,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1625,555536234,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garron Point,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1626,555536235,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braemar Pockmarks,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1627,555536236,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Norfolk Sandbanks And Saturn Reef,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1628,555536237,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanton Banks,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1629,555536238,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Roe And Tributaries,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1630,555536239,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Faughan And Tributaries,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1631,555536240,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bolton Fell Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1632,555536241,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North West Rockall Bank,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1633,555579243,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Mingulay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1634,555536242,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Bay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1635,555579244,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arun Valley,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1636,555579245,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pevensey Levels,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1637,555536057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hestercombe House,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1638,555536058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollymount,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1639,555536059,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Humber Estuary,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1640,555536060,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inverpolly,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1641,555536061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Isle Of May,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1642,555536062,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Johnstown Newt Sites,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1643,555536063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keltneyburn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1644,555536064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kennet Valley Alderwoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1645,555536065,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinloch And Kyleakin Hills,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1646,555536066,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kippenrait Glen,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1647,555536243,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bassurelle Sandbank,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1648,555536244,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Haisborough, Hammond And Winterton",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1649,555536166,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Austell Clay Pits,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1650,555536167,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stodmarsh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1651,555536168,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strensall Common,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1652,555536169,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Subberthwaite, Blawith And Torver Low Commons",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1653,555536170,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tarbert Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1654,555536171,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tayvallich Juniper And Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1655,555536177,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyne And Nent,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1656,555536178,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tynron Juniper Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1657,555536179,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ullswater Oakwoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1658,555536180,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Ballinderry River,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1659,555536181,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Nithsdale Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1660,555536182,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Urquhart Bay Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1661,555536183,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Dorset Alder Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1662,555536184,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Fermanagh Scarplands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1663,555536185,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wimbledon Common,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1664,555536186,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Witherslack Mosses,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1665,555536245,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Inner Dowsing, Race Bank And North Ridge",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1666,555536246,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Margate And Long Sands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1667,555536247,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lyme Bay And Torbay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1668,555536248,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Start Point To Plymouth Sound & Eddystone,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1669,555536249,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lizard Point,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1670,555536250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lands End And Cape Bank,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1671,555536251,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shell Flat And Lune Deep,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1672,555579246,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hamford Water,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1673,555579247,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tankerton Slopes And Swalecliffe,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1674,555579248,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pisces Reef Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1675,555579249,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wight-Barfleur Reef,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1676,555579250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croker Carbonate Slabs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1677,555579251,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Studland To Portland,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1678,555579252,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skerries And Causeway,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1679,555535618,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Godrevy Head To St Agnes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1680,555535621,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prescombe Down,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1681,555535622,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The New Forest,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1682,555535623,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penhale Dunes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1683,555535624,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kenfig/ Cynffig,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1684,555535627,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigengar,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1685,555535628,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moniack Gorge,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1686,555535629,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bath And Bradford-On-Avon Bats,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1687,555535630,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beer Quarry And Caves,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1688,555535637,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tregonning Hill,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1689,555535638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunkeld-Blairgowrie Lochs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1690,555535639,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Wye/ Afon Gwy,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1691,555535640,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Eden,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1692,555535641,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ensor`S Pool,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1693,555535642,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Wensum,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1694,555535643,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Hams,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1695,555535644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mells Valley,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1696,555535645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glynllifon,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1697,555535646,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Teifi/ River Teifi,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1698,555535647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cannock Extension Canal,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1699,555535648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Culm Grasslands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1700,555535649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Llawr-Cwrt,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1701,555535650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rooksmoor,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1702,555535670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Staverton Park And The Thicks, Wantisden",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1703,555535682,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Yews,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1704,555535683,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ingleborough Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1705,555535684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strath,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1706,555535685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Durness,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1707,555535686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inchnadamph,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1708,555535715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holme Moor And Clean Moor,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1709,555535687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pasturefields Salt Marsh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1710,555535688,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hoy,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1711,555535689,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Thursley, Ash, Pirbright And Chobham",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1712,555535690,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrine Common,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1713,555535691,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Lizard,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1714,555535692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roydon Common And Dersingham Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1715,555535696,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keen Of Hamar,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1716,555535697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyne And Allen River Gravels,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1717,555535716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsydd Môn/ Anglesey Fens,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1718,555535717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crymlyn Bog/ Cors Crymlyn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1719,555535698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gang Mine,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1720,555535699,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caenlochan,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1721,555535700,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rodborough Common,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1722,555535701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wye And Crundale Downs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1723,555535702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lewes Downs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1724,555535718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cothill Fen,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1725,555535703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Queendown Warren,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1726,555535704,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lydden And Temple Ewell Downs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1727,555535705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Folkestone To Etchinghill Escarpment,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1728,555535706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Hill,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1729,555535707,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thrislington,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1730,555535708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Derwent Valley,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1731,555535709,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oxford Meadows,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1732,555535710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trotternish Ridge,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1733,555535711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Iadain And Beinn Na H`Uamha,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1734,555535712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rannoch Moor,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1735,555535713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drostre Bank,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1736,555535714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waveney And Little Ouse Valley Fens,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1737,555535719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newham Fen,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1738,555535748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oak Mere,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1739,555535749,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lismore Lochs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1740,555535750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Watten,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1741,555535751,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llangorse Lake/ Llyn Syfaddan,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1742,555535799,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitmaduthy Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1743,555535800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cotswold Beechwoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1744,555535801,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Essex Estuaries,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1745,555535802,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Isles Of Scilly Complex,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1746,555535803,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Kilda,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1747,555535830,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chilmark Quarries,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1748,555535831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairngorms,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1749,555535866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cockinhead Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1750,555535832,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballynahone Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1751,555535833,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cuilcagh Mountain,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1752,555535834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garron Plateau,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1753,555535835,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pettigoe Plateau,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1754,555535836,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teal Lough,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1755,555535837,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1756,555535838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garry Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1757,555535839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fairy Water Bogs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1758,555535840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Murlough,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1759,555535841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Magilligan,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1760,555535842,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Lough Erne,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1761,555535843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eastern Mournes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1762,555535844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strangford Lough,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1763,555535845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monawilkin,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1764,555535954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Bostraze And Leswidden,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1765,555535846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Derryleckagh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1766,555535847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Magheraveely Marl Loughs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1767,555535848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slieve Beagh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1768,555535849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Vadills,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1769,555535850,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Papa Stour,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1770,555535861,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bankhead Moss, Beith",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1771,555535862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Loch Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1772,555535955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newlyn Downs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1773,555535956,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strathy Point,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1774,555535957,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South-East Islay Skerries,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1775,555535863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blawhorn Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1776,555535868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dykeneuk Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1777,555535964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afonydd Cleddau/ Cleddau Rivers,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1778,555535965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Eden - Cors Goch Trawsfynydd,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1779,555535966,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Alde, Ore And Butley Estuaries",Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1780,555535864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braehead Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1781,555535865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coalburn Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1782,555535970,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashdown Forest,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1783,555535971,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abhainn Clais An Eas And Allt A`Mhuilinn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1784,555535972,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aston Rowant,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1785,555535973,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banagher Glen,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1786,555535974,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bann Estuary,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1787,555535867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranley Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1788,555535992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burrow Head,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1789,555535993,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Butser Hill,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1790,555535994,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cadair Idris,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1791,555535869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1792,555535871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Reidside Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1793,555535872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Shotts Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1794,555535873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Claish Moss And Kentra Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1795,555535874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coladoir Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1796,555535875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eilean Na Muice Duibhe,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1797,555535876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Feur Lochain,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1798,555535870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waukenwae Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1799,555535881,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Mires And Lumbister,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1800,555535882,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moidach More,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1801,555535883,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ronas Hill - North Roe,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1802,555535884,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sligachan Peatlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1803,555535885,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tingon,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1804,555535886,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turclossie Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1805,555535998,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cape Wrath,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1806,555535999,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cardiff Beech Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1807,555536000,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn-Glenshane Pass,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1808,555535887,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flow Of Dergoals,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1809,555535888,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sound Of Arisaig (Loch Ailort To Loch Ceann Traigh),Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1810,555535889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sunart,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1811,555535890,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Uist Machair,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1812,555535891,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dornoch Firth And Morrich More,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1813,555535892,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Culbin Bar,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1814,555535893,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moray Firth,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1815,555535894,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Spey,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1816,555535895,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Insh Marshes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1817,555535896,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkcowan Flow,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1818,555535897,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilhern Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1819,555535898,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lewis Peatlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1820,555535899,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mointeach Scadabhaigh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1821,555535900,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mochrum Lochs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1822,555535901,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mointeach Nan Lochain Dubha,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1823,555535902,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duddon Mosses,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1824,555535903,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roudsea Wood And Mosses,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1825,555535904,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Norfolk Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1826,555535905,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mòine Mhór,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1827,555535906,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Endrick Water,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1828,555535907,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Merrick Kells,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1829,555535908,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dorset Heaths,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1830,555535909,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peak District Dales,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1831,555535923,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barnack Hills And Holes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1832,555535924,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Derwent And Bassenthwaite Lake,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1833,555535925,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Pennine Moors,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1834,555535926,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burnham Beeches,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1835,555535927,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clints Quarry,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1836,555535928,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Denby Grange Colliery Ponds,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1837,555535931,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eller`S Wood And Sand Dale,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1838,555535932,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Exmoor Heaths,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1839,555535933,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Firth Of Lorn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1840,555535934,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glan-Traeth,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1841,555535935,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grimsthorpe,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1842,555535949,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rook Clift,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1843,555535950,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Solent Maritime,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1844,555535951,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Devon Shore Dock,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1845,555535952,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Wight Maritime,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1846,555535953,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wast Water,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1847,555535958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fardrum And Roosky Turloughs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1848,555535959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sanday,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1849,555535960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cernydd Carmel,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1850,555535961,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aberbargoed Grasslands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1851,555535962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sugar Loaf Woodlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1852,555535963,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Achnahaird,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1853,555535967,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Altnaharra,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1854,555535968,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alyn Valley Woods/ Coedwigoedd Dyffryn Alun,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1855,555535969,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardnamurchan Burns,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1856,555535975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baston Fen,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1857,555535976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beast Cliff - Whitby (Robin Hood`S Bay),Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1858,555536001,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carsegowan Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1859,555536002,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cawdor Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1860,555535977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bee`S Nest And Green Clay Pits,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1861,555535978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berriedale And Langwell Waters,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1862,555536003,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glaswelltiroedd Cefn Cribwr/ Cefn Cribwr Grasslands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1863,555536004,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bae Cemlyn/ Cemlyn Bay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1864,555536005,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cerne And Sydling Downs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1865,555536006,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cladagh (Swanlinbar) River,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1866,555535979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Binevenagh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1867,555535980,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackmill Woodlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1868,555535981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackstone Point,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1869,555535982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaen Cynon,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1870,555535983,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walton Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1871,555535984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Borders Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1872,555535985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bracket`S Coppice,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1873,555535986,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brecon Beacons/ Bannau Brycheiniog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1874,555536008,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Aber,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1875,555536009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Llawr-Y-Glyn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1876,555535987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breen Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1877,555535988,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breney Common And Goss And Tregoss Moors,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1878,555536010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Mhór,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1879,555536011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsydd Eifionydd,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1880,555535989,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broubster Leans,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1881,555536012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coyles Of Muick,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1882,555535990,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brown Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1883,555535991,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buchan Ness To Collieston,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1884,555535995,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Mynydd Mawr,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1885,555535996,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calf Hill And Cragg Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1886,555535997,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cannock Chase,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1887,555536007,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Cwm Einion,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1888,555536016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cumbrian Marsh Fritillary Site,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1889,555536017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Clydach Woodlands / Coedydd Cwm Clydach,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1890,555536018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Doethie - Mynydd Mallaen,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1891,555536019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dam Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1892,555536020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dawlish Warren,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1893,555536021,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dee Estuary/ Aber Dyfrdwy,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1894,555536022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deeside And Buckley Newt Sites,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1895,555536023,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dew`S Ponds,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1896,555536024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dinnet Oakwood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1897,555536025,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dixton Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1898,555536067,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirk Deighton,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1899,555536068,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ladder Hills,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1900,555536069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lecale Fens,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1901,555536026,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dogden Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1902,555536027,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duncton To Bignor Escarpment,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1903,555536070,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ledmore Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1904,555536071,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eileanan Agus Sgeiran Lios Mór,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1905,555536072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Gruinard River,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1906,555536073,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Wittenham,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1907,555536074,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llwyn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1908,555536075,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Dinam,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1909,555536076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsydd Llyn/ Lleyn Fens,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1910,555536028,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunraven Bay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1911,555536029,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Durham Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1912,555536030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Nedd A Mellte,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1913,555536031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arnecliff And Park Hole Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1914,555536032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Caithness Cliffs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1915,555536033,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Blaencleddau,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1916,555536040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ford Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1917,555536122,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Paston Great Barn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1918,555536123,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peatlands Park,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1919,555536124,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peter`S Pit,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1920,555536041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dun Moss And Forest Of Alyth Mires,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1921,555536042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Galloway Oakwoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1922,555536043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Beasdale,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1923,555536044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Creran Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1924,555536125,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Phoenix United Mine And Crow`S Nest,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1925,555536155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rostrevor Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1926,555536045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenartney Juniper Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1927,555536046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gower Ash Woods/ Coedydd Ynn Gwyr,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1928,555536047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Granllyn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1929,555536048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Green Hill Of Strathdon,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1930,555536139,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Dee And Bala Lake/ Afon Dyfrdwy A Llyn Tegid,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1931,555536140,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Derwent,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1932,555536141,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Evelix,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1933,555536049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grogwynion,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1934,555536050,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddiau Fforest Gwydir/ Gwydyr Forest Mines,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1935,555536051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hackpen Hill,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1936,555536052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Halkyn Mountain/ Mynydd Helygain,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1937,555536053,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hartslock Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1938,555536054,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hastings Cliffs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1939,555536055,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hatfield Moor,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1940,555536056,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Helbeck And Swindale Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1941,555536077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch A`Phuill,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1942,555536103,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mortlach Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1943,555536078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Achnacloich,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1944,555536079,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Creran,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1945,555536080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Fada,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1946,555536081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Laxford,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1947,555536082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Of Isbister,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1948,555536104,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morvern Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1949,555536105,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Airds Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1950,555536106,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mull Oakwoods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1951,555536107,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mull Of Galloway,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1952,555536108,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Epynt,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1953,555536109,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nene Washes,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1954,555536110,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ness Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1955,555536083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Of Wester,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1956,555536084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ruthven,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1957,555536085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ussie,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1958,555536086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Findhorn Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1959,555536111,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Antrim Coast,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1960,555536087,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lyppard Grange Ponds,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1961,555536092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Methven Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1962,555536093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Migneint-Arenig-Dduallt,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1963,555536088,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Main Valley Bogs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1964,555536089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Manchester Mosses,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1965,555536090,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Y Fenai A Bae Conwy/ Menai Strait And Conwy Bay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1966,555536091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mendip Limestone Grasslands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1967,555536094,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mingarry Burn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1968,555536095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moffat Hills,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1969,555536096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Moidart And Loch Shiel Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1970,555536097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monadhliath,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1971,555536112,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Downs Woodlands,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1972,555536098,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moneygal Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1973,555536099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moninea Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1974,555536101,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Montiaghs Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1975,555536102,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moorfoot Hills,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1976,555536113,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Fetlar,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1977,555536114,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Pembrokeshire Woodlands/ Coedydd Gogledd Sir Benfro,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1978,555536115,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North York Moors,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1979,555536126,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitkeathly Mires,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1980,555536127,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turflundie Wood,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1981,555536128,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Polruan To Polperro,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1982,555536142,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langavat,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1983,555536143,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Kent,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1984,555536144,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Lambourn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1985,555536145,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Mease,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1986,555536146,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Moriston,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1987,555536147,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Naver,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1988,555536148,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Oykel,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1989,555536149,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River South Esk,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1990,555536129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quants,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1991,555536130,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rassal,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1992,555536131,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rea`S Wood And Farr`S Bay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1993,555536150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Teith,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1994,555536151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Thurso,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1995,555536156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Saltfleetby-Theddlethorpe Dunes And Gibraltar Point,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1996,555536157,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clogwyni Pen Llyn/ Seacliffs Of Lleyn,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1997,555536132,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Talglas,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1998,555536133,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Richmond Park,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -1999,555536134,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rinns Of Islay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2000,555536135,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Axe,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2001,555536136,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Bladnoch,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2002,555536137,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Clun,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2003,555536138,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Dee,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2004,555536152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rixton Clay Pits,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2005,555536153,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rochdale Canal,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2006,555536158,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shelforkie Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2007,555536159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sullom Voe,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2008,555536172,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Threepwood Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2009,555536173,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Treshnish Isles,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2010,555536174,United Kingdom,Common Standards Monitoring,2013,For storage only,18,TrosSAChs Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2011,555536175,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turmennan,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2012,555536176,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tweed Estuary,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2013,555536187,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wolf Island Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2014,555536188,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woolmer Forest,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2015,555536189,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yerbeston Tops,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2016,555536190,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yewbarrow Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2017,555536191,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rigg - Bile,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2018,555536192,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Solway Mosses,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2019,555536193,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Firth Of Tay & Eden Estuary,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2020,555536194,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Tay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2021,555579253,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Maidens,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2022,555536195,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peeswit Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2023,555536200,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aughnadarragh Lough,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2024,555579254,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pobie Bank Reef,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2025,555536196,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raeburn Flow,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2026,555579255,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Solan Bank Reef,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2027,555536197,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Moss Of Netherley,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2028,555536198,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Fannyside Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2029,555536199,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Darwin Mounds,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2030,555579256,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Anton Dohrn Seamount,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2031,555536201,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballykilbeg,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2032,555536202,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Foyle And Tributaries,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2033,555536206,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deroran Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2034,555579257,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hatton Bank,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2035,555536203,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranny Bogs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2036,555536223,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fannich Hills,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2037,555536224,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Bhan,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2038,555536225,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Onich To North Ballachulish Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2039,555536226,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Shira,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2040,555536204,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Curran Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2041,555536205,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dead Island Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2042,555579258,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Rockall Bank,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2043,555536207,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tonnagh Beg Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2044,555536208,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tully Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2045,555536209,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Briddlesford Copses,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2046,555536210,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crowdy Marsh,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2047,555536211,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dover To Kingsdown Cliffs,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2048,555536212,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eversden And Wimpole Woods,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2049,555536213,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fen Bog,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2050,555536214,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harbottle Moors,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2051,555536215,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mottisfont Bats,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2052,555536216,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Naddle Forest,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2053,555536217,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Simonside Hills,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2054,555536218,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Singleton And Cocking Tunnels,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2055,555536229,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crookhill Brick Pit,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2056,555536230,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holnest,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2057,555579242,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dogger Bank,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2058,555536231,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haig Fras,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2059,555536219,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parkgate Down,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2060,555536220,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tarn Moss,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2061,902191,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tràigh Na Berie,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2062,555536222,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oronsay,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2063,555536227,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slochd,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2064,555536228,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Maim,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2065,555536232,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scanner Pockmark,Site of Community Importance (Habitats Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2066,555541800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alde-Ore Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2067,555541801,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stour and Orwell Estuaries,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2068,555541802,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hamford Water,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2069,555541803,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abberton Reservoir,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2070,555541804,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benfleet and Southend Marshes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2071,555541805,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breydon Water,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2072,555541806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breckland,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2073,555541807,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dengie (Mid-Essex Coast Phase 1),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2074,555541808,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colne Estuary (Mid-Essex Coast Phase 2),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2075,555541809,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crouch and Roach Estuaries (Mid-Essex Coast Phase 3),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2076,555541810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackwater Estuary (Mid-Essex Coast Phase 4),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2077,555541811,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foulness (Mid-Essex Coast Phase 5),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2078,555541812,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broadland,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2079,555541813,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deben Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2080,555541814,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Yarmouth North Denes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2081,555541815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benacre to Easton Bavents,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2082,555541816,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Somerset Levels and Moors,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2083,555541817,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chew Valley Lake,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2084,555541818,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Exe Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2085,555541638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mingulay and Berneray,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2086,555541639,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pentland Firth Islands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2087,555541640,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caithness and Sutherland Peatlands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2088,555541641,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caithness Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2089,555541642,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Caithness Cliffs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2090,555541643,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Caithness Cliffs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2091,555541644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Sutherland Coastal Islands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2092,555541645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cape Wrath,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2093,555541646,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Handa,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2094,555541647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Priest Island,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2095,555541648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rum,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2096,555541649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Canna and Sanday,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2097,555541650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mointeach Scadabhaigh,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2098,555541651,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Inverpolly, Loch Urigill and nearby Lochs",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2099,555541652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Maree,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2100,555541653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ruthven,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2101,555541654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Knockie and nearby Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2102,555541655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Inverness Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2103,555541656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ashie,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2104,555541657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lewis Peatlands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2105,555541658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Harris Mountains,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2106,555541659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Assynt Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2107,555541660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lairg and Strath Brora Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2108,555541819,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chesil Beach and The Fleet,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2109,555541664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Moray Firth,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2110,555541665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moray and Nairn Coast,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2111,555541666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Dearg,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2112,555541667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Wyvis,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2113,555541668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Flemington,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2114,555541820,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dorset Heathlands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2115,555541821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poole Harbour,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2116,555541670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wester Ross Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2117,555541671,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Shiel,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2118,555541672,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Ness and Barvas, Lewis",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2119,555541673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Aird and Borve, Benbecula",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2120,555541674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Eoligarry, Barra",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2121,555541675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cuillins,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2122,555541676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morangie Forest,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2123,555541677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigmore Wood,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2124,555541678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hermaness, Saxa Vord and Valla Field",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2125,555541679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ramna Stacks and Gruney,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2126,555541680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fetlar,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2127,555541681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ronas Hill - North Roe and Tingon,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2128,555541682,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Papa Stour,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2129,555541683,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foula,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2130,555541684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Noss,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2131,555541685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fair Isle,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2132,555541686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Westray,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2133,555541687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Papa Westray (North Hill and Holm),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2134,555541688,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marwick Head,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2135,555541689,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hoy,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2136,555541690,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Copinsay,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2137,555541691,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag Meagaidh,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2138,555541692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sule Skerry and Sule Stack,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2139,555541822,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Devon Heaths,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2140,555541698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Skene,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2141,555541699,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fowlsheugh,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2142,555541700,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochnagar,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2143,555541701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumochter Hills,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2144,555541702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orkney Mainland Moors,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2145,555541703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Sanday Coast,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2146,555541704,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mousa,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2147,555541705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rousay,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2148,555541706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auskerry,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2149,555541707,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calf of Eday,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2150,555541708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Troup, Pennan and Lion's Heads",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2151,555541709,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buchan Ness to Collieston Coast,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2152,555541710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sumburgh Head,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2153,555541711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Alder,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2154,555541712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abernethy Forest,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2155,555541713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinveachy Forest,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2156,555541714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochs of Spiggie and Brow,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2157,555541721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Otterswick and Graveland,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2158,555541722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Lomond,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2159,555541723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coll,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2160,555541724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sléibhtean agus Cladach Thiriodh (Tiree Wetlands and Coast),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2161,555541725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coll (corncrake),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2162,555541726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tiree (corncrake),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2163,555541727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Treshnish Isles,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2164,555541728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Gruinart Flats, Islay",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2165,555541729,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bridgend Flats, Islay",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2166,555541730,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Laggan, Islay",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2167,555541731,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Eilean na Muice Duibhe (Duich Moss), Islay",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2168,555541732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rinns of Islay,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2169,555541733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Oa,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2170,555541734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Clyde Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2171,555541735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kintyre Goose Roosts,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2172,555541823,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tamar Estuaries Complex,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2173,555541824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chichester and Langstone Harbours,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2174,555541825,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Forest,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2175,555541826,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portsmouth Harbour,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2176,555541827,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Solent and Southampton Water,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2177,555541828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avon Valley,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2178,555541829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porton Down,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2179,555541830,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salisbury Plain,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2180,555541831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Swale,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2181,555541832,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thames Estuary and Marshes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2182,555541833,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Medway Estuary and Marshes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2183,555541834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pagham Harbour,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2184,555541835,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thanet Coast and Sandwich Bay,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2185,555541836,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dungeness to Pett Level,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2186,555541837,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lee Valley,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2187,555541630,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Rona and Sula Sgeir,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2188,555541631,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flannan Isles,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2189,555541632,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Kilda,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2190,555541633,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shiant Isles,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2191,555541634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Uist Machair and Islands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2192,555541635,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monach Isles,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2193,555541636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Uist Machair and Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2194,555541637,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Kilpheder and Smerclate, South Uist",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2195,555541661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Eye,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2196,555541662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dornoch Firth and Loch Fleet,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2197,555541663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cromarty Firth,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2198,555541669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Achanalt Marshes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2199,555541693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Spynie,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2200,555541694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Strathbeg,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2201,555541695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Ythan Estuary, Sands of Forvie and Meikle Loch",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2202,555541696,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Spey - Insh Marshes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2203,555541697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairngorms,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2204,555541715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Vaa,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2205,555541716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Tanar,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2206,555541717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballochbuie,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2207,555541718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muir of Dinnet,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2208,555541736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ailsa Craig,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2209,555541737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ken and River Dee Marshes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2210,555541738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Inch and Torrs Warren,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2211,555541739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Colonsay and Western Cliffs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2212,555541740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Castle Loch, Lochmaben",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2213,555541838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stodmarsh,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2214,555541839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Thursley, Hankley and Frensham Commons (Wealden Heaths Phase 1)",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2215,555541840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wealden Heaths Phase 2,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2216,555541719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tips of Corsemaul and Tom Mor,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2217,555541760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westwater,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2218,555541720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Switha,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2219,555541741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glas Eileanan,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2220,555541742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Cart,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2221,555541743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muirkirk and North Lowther Uplands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2222,555541744,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langholm - Newcastleton Hills,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2223,555541745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knapdale Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2224,555541746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cnuic agus Cladach Mhuile,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2225,555541747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arran Moors,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2226,555541748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen App and Galloway Moors,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2227,555541749,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caenlochan,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2228,555541750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rannoch Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2229,555541751,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Montrose Basin,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2230,555541761,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Abb's Head to Fast Castle,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2231,555541841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thames Basin Heaths,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2232,555541842,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South West London Waterbodies,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2233,555541752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Kinnordy,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2234,555541753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Lintrathen,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2235,555541754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Leven,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2236,555541755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Firth of Tay and Eden Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2237,555541843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashdown Forest,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2238,555541844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Dee Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2239,555541756,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cameron Reservoir,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2240,555541757,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forth Islands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2241,555541758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gladhouse Reservoir,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2242,555541768,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Imperial Dock Lock, Leith",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2243,555541769,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Solway Flats and Marshes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2244,555541759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fala Flow,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2245,555541770,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duddon Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2246,555541771,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morecambe Bay,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2247,555541772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leighton Moss,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2248,555541773,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ribble and Alt Estuaries,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2249,555541774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Martin Mere,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2250,555541762,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenlaw Moor,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2251,555541775,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mersey Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2252,555541776,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowland Fells,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2253,555541777,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorne and Hatfield Moors,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2254,555541778,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lindisfarne,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2255,555541779,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Farne Islands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2256,555541780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coquet Island,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2257,555541845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Traeth Lafan/ Lavan Sands, Conway Bay",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2258,555541846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Ynys Feurig, Cemlyn Bay and The Skerries",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2259,555541847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Ynys Gybi/ Holy Island Coast,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2260,555541763,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Din Moss - Hoselaw Loch,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2261,555541764,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forest of Clunie,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2262,555541765,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Tayside Goose Roosts,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2263,555541766,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Firth of Forth,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2264,555541767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slamannan Plateau,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2265,555541793,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Wash,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2266,555541794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gibraltar Point,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2267,555541781,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holburn Lake and Moss,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2268,555541782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teesmouth and Cleveland Coast,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2269,555541783,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Derwent Valley,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2270,555541784,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flamborough Head and Bempton Cliffs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2271,555541785,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Humber Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2272,555541786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northumbria Coast,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2273,555541787,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North York Moors,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2274,555541788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hornsea Mere,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2275,555541789,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Pennine Moors,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2276,555541790,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peak District Moors (South Pennine Moors Phase 1),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2277,555541791,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Pennine Moors Phase 2,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2278,555541795,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nene Washes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2279,555541796,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ouse Washes,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2280,555541797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rutland Water,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2281,555541798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Norfolk Coast,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2282,555541799,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minsmere-Walberswick,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2283,555541792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walmore Common,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2284,555541849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Aberdaron ac Ynys Enlli/ Aberdaron Coast and Bardsey Island,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2285,555541850,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Migneint-Arenig-Dduallt,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2286,555541851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grassholm,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2287,555541852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skokholm and Skomer,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2288,555541853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castlemartin Coast,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2289,555541854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ramsey and St David`s Peninsula Coast,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2290,555541855,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bae Caerfyrddin/ Carmarthen Bay,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2291,555541856,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elenydd - Mallaen,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2292,555541857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burry Inlet,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2293,555541858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Severn Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2294,555541859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rathlin Island,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2295,555541860,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheep Island,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2296,555541861,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Foyle,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2297,555541862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Larne Lough,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2298,555541863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pettigoe Plateau,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2299,555541864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Lough Erne,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2300,555541865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Neagh and Lough Beg,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2301,555541866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belfast Lough,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2302,555541867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strangford Lough,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2303,555541868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carlingford Lough,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2304,555541869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Killough Bay,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2305,555541870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Outer Ards,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2306,555541871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arun Valley,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2307,555541872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Mynydd Cilan, Trwyn y Wylfa ac Ynysoedd Sant Tudwal",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2308,555541873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig yr Aderyn (Bird`s Rock),Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2309,555541874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dyfi Estuary / Aber Dyfi,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2310,555541875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ynys Seiriol / Puffin Island,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2311,555541876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandlings,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2312,555577866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mersey Narrows and North Wirral Foreshore,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2313,555541877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Isles of Scilly,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2314,555541878,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marazion Marsh,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2315,555541879,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belfast Lough Open Water,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2316,555541880,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Copeland Islands,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2317,555541881,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Darnaway and Lethen Forest,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2318,555541882,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Novar,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2319,555541883,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Liverpool Bay / Bae Lerpwl,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2320,555541884,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Renfrewshire Heights,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2321,555577867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Nene Valley Gravel Pits,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2322,555541885,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Anagach Woods,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2323,555541886,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Inverness-shire Lochs,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2324,555541887,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oronsay and South Colonsay,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2325,555541888,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strath Carnaig and Strath Fleet Moors,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2326,555541889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Antrim Hills,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2327,555541890,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slieve Beagh - Mullaghfad - Lisnaskea,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2328,555577868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Affric to Strathconon,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2329,555577869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Jura, Scarba and the Garvellachs",Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2330,555577870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moidart and Ardgour,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2331,555577871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foinaven,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2332,555577872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Etive and Glen Fyne,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2333,555577873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairngorms Massif,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2334,555541891,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Outer Thames Estuary,Special Protection Area (Birds Directive),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2335,555624684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Killough Bay,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2336,555624685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Outer Ards,"Ramsar Site, Wetland of International Importance",UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2337,136283,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Daddyhole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2338,138173,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Killerton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2339,137469,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bourne Alder Carr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2340,137481,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Charing Beech Hangers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2341,138759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chequer's Wood and Old Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2342,138767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cobham Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2343,138786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combwell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2344,140318,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wick Wood and Worldham Hangers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2345,140380,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alverstone Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2346,140405,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arreton Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2347,140413,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bembridge Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2348,140422,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bonchurch Landslips,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2349,140445,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bouldnor and Hamstead Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2350,140485,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Compton Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2351,140497,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Freshwater Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2352,140820,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fernham Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2353,137061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wendlebury Meads and Mansmoor Closes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2354,170221,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weston Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2355,140841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tamar - Tavy Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2356,140262,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mullion Cliff To Predannack Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2357,136712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shapwick Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2358,136338,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleaves Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2359,137000,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morte Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2360,140063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ugbrooke Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2361,140111,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Watersmeet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2362,140126,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wembury Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2363,140145,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westward Ho! Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2364,136449,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cold Ash Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2365,136458,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Thrift Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2366,138208,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aston Rowant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2367,136534,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aston Rowant Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2368,136554,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bierton Clay Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2369,138596,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chillesford Church Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2370,137805,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baverstock Juniper Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2371,136792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Neutral Farm Pit, Butley",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2372,136799,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newbourn Springs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2373,136569,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bolter End Sand Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2374,136576,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bradenham Woods, Park Wood & The Coppice",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2375,136592,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bugle Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2376,136599,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burnham Beeches,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2377,138328,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Magdalen Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2378,138555,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Shute,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2379,138567,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seven Barrows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2380,137834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marsh Wood Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2381,140933,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coneyhurst Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2382,137848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tar Grove Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2383,137939,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Betley Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2384,137953,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bickerton Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2385,140019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greatness Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2386,140032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Halling To Trottiscliffe Escarpment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2387,137332,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ham Street Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2388,140050,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hatch Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2389,138895,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gripwood Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2390,137002,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Mewan Beacon",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2391,169903,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hinton Hill, Wellow",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2392,137019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wheal Martyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2393,137356,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Curry Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2394,137364,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crook Peak To Shute Shelve Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2395,137031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yeolmbridge Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2396,141068,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baulk Head To Mullion,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2397,137182,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wheal Emily,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2398,139996,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Axmouth To Lyme Regis Undercliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2399,137223,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corfe & Barrow Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2400,137375,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Polyne Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2401,137413,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harbour Cove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2402,137725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dinton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2403,137779,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lake Allotments,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2404,137802,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hook Meadow and The Trap Grounds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2405,137455,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rosenun Lane,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2406,137914,United Kingdom,Common Standards Monitoring,2013,For storage only,18,King's Sedgemoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2407,137926,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moorlinch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2408,137957,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2409,137968,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southlake Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2410,136741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shide Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2411,136785,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ventnor Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2412,136807,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitecliff Bay and Bembridge Ledges,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2413,137996,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Faraday Road,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2414,138713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Viverdon Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2415,138769,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trelavour Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2416,138784,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tremearne Par,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2417,140400,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ham Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2418,140429,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Homington and Coombe Bissett Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2419,140971,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Honeybrook Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2420,140464,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Inwood, Warleigh",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2421,140494,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jones's Mill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2422,140044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barns Batch Spinney,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2423,140619,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Houghton Green Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2424,140527,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lady Down Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2425,136395,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lamb Leer,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2426,136407,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langford Heathfield,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2427,137081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cull-Peppers Dish,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2428,136851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shepton Montague Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2429,136862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laycock Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2430,136883,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edford Woods & Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2431,136889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Old Ironstone Works, Mells",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2432,140659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fivehead Woods and Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2433,136905,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunsdon Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2434,136911,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woolcombe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2435,137018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tealham and Tadham Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2436,137038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thurlbear Wood and Quarrylands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2437,137053,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Vallis Vale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2438,137064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walton and Ivythorn Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2439,137086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westhay Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2440,137160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aller Sand Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2441,137265,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Froward Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2442,137274,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bickleigh Wood Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2443,140324,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gedgrave Hall Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2444,137706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holton Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2445,137310,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ham Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2446,169706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broome Heath Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2447,136303,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poole Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2448,138003,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chudleigh Caves and Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2449,170165,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Throstle Shaw and Sandbeds Fan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2450,169896,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hele, Samson's and Combe Martin Bays",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2451,138733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Farthing Downs and Happy Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2452,138619,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sturry Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2453,137889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bobbitshole, Belstead",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2454,138004,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barnby Broad & Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2455,138042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orwell Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2456,138048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rex Graham Reserve,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2457,137922,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hornchurch Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2458,137923,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oxleas Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2459,137943,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Richmond Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2460,138447,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walthamstow Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2461,138470,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aylesford Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2462,138598,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spot Lane Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2463,136781,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Arun,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2464,137962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Black Lake, Delamere",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2465,140622,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waldron Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2466,138128,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Well Rough and Long Plantation,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2467,146253,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Eartham Pit, Boxgrove",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2468,138325,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wateringbury,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2469,140754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hankley Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2470,140881,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Beult,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2471,137522,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Staines Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2472,138419,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heswall Dales,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2473,137479,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Thames Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2474,137297,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hothfield Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2475,138656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brent Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2476,138674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crofton Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2477,138689,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croham Hurst,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2478,138715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Downe Bank and High Elms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2479,138735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hampstead Heath Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2480,138746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mid Colne Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2481,138768,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keston and Hayes Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2482,138785,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abbey Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2483,140623,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winchelsea Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2484,140440,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chobham Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2485,140457,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hackhurst and White Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2486,140675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stone Hill Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2487,140542,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Charterhouse To Eashing,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2488,140572,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woldingham & Oxted Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2489,140598,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chipstead Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2490,136220,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ash To Brookwood Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2491,136265,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colyers Hanger,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2492,136292,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combe Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2493,136299,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Devil's Punch Bowl,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2494,136319,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Epsom and Ashtead Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2495,136791,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Esher Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2496,136806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glover's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2497,136820,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Godstone Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2498,136843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hedgecourt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2499,136857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horsell Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2500,136890,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langham Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2501,136893,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leith Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2502,136913,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lingfield Cernes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2503,136932,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mole Gap To Reigate Escarpment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2504,137058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seale Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2505,137078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheepleas,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2506,137508,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Staffhurst Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2507,137540,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Titsey Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2508,137548,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Vann Lake and Ockley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2509,137581,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitmoor Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2510,137604,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arlington Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2511,141036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Asham Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2512,137625,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chailey Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2513,555545527,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rye Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2514,137655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashburnham Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2515,137668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashdown Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2516,141015,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St. Dunstan's Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2517,137682,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seaford To Beachy Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2518,140677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Perry Copse Outcrops,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2519,140173,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Amberley Mount To Sullington Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2520,140185,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Amberley Wild Brooks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2521,140190,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ambersham Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2522,140208,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arun Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2523,140221,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arundel Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2524,140228,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duncton To Bignor Escarpment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2525,140240,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bognor Reef,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2526,140246,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bracklesham Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2527,140678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slinfold Stream and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2528,140284,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burton Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2529,140297,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chanctonbury Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2530,140311,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cissbury Ring,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2531,140322,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Climping Beach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2532,137229,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Rough Bank, Miserden",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2533,138496,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hubbard's Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2534,141076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dumsey Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2535,138593,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chichester Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2536,138606,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Selsey, East Beach",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2537,138801,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2538,138819,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Riddlesdown,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2539,138854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elmstead Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2540,138879,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ruislip Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2541,138888,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ruxley Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2542,138913,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harrow Weald,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2543,140402,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Syon Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2544,140417,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walthamstow Reservoirs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2545,140427,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wimbledon Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2546,140959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stockland Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2547,140507,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banstead Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2548,140522,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blindley Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2549,140536,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bookham Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2550,136962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moor Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2551,136976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Papercourt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2552,136986,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ockham and Wisley Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2553,136998,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Puttenham & Crooksbury Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2554,141045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Smart's and Prey Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2555,137021,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quarry Hangers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2556,137039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ranmore Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2557,137050,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Reigate Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2558,137685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Binglett's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2559,137728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bream Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2560,140544,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2561,137759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clayton To Offham Escarpment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2562,137773,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dallington Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2563,137784,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Darwell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2564,137803,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ditchling Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2565,136673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pagham Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2566,136685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parham Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2567,136928,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Highcliffe To Milford Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2568,140332,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woolmer Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2569,170107,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ryde Sands and Wootton Creek,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2570,136957,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurst Castle and Lymington River Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2571,138288,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eridge Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2572,138306,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fore Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2573,138321,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hastings Cliffs To Pett Beach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2574,138348,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Herstmonceux Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2575,140366,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newtown Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2576,136644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Medina Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2577,136831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yar Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2578,136439,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shipton-On-Cherwell & Whitehill Farm Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2579,138360,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2580,138371,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leasam Heronry Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2581,138387,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lewes Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2582,136798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lullington Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2583,138416,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maplehurst Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2584,138426,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marline Valley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2585,138438,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brighton To Newhaven Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2586,141037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Paines Cross Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2587,138474,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park Corner Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2588,136695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park Farm Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2589,136734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St. Leonard's Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2590,138481,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penn's Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2591,136886,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pevensey Levels,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2592,137253,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wakehurst & Chiddingly Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2593,138502,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rock Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2594,138557,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eridge Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2595,138574,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weir Wood Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2596,138589,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilmington Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2597,140864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bentley Priory,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2598,140264,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buchan Hill Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2599,140995,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coates Castle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2600,140355,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cow Wood and Harry's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2601,140370,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Treyford To Bepton Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2602,140376,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ebernoe Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2603,141038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fonthill Grottoes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2604,146279,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Lambourn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2605,140398,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forest Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2606,136494,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beeding Hill To Newtimber Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2607,136511,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fyning Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2608,136531,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harting Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2609,136544,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heyshott Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2610,136549,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurston Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2611,136562,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Iping Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2612,138273,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingley Vale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2613,136613,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lavington Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2614,136616,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Mens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2615,136632,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mills Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2616,136645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northpark Copse To Snapelands Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2617,141014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warnham,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2618,136664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pads Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2619,136744,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St. Leonard's Park Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2620,136756,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shillinglee Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2621,137216,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sullington Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2622,137245,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Dean Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2623,140074,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalham Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2624,137260,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Harting Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2625,137279,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wolstonbury Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2626,137289,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Worth Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2627,137396,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baker's Hole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2628,140112,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northward Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2629,140230,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Church Woods, Blean",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2630,137456,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brookland Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2631,137330,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Queendown Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2632,137370,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Alkham, Lydden and Swingfield Woods",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2633,138798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cowden Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2634,138803,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Darenth Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2635,138828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dover To Kingsdown Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2636,138839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Blean Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2637,138842,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ellenden Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2638,140105,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Thames Estuary and Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2639,140110,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hoad's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2640,140132,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holborough To Burham Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2641,140561,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollingbourne Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2642,146278,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Kennet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2643,141058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cowden Pound Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2644,138883,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Farningham Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2645,138892,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Folkestone To Etchinghill Escarpment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2646,138898,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Folkestone Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2647,139977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gibbin's Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2648,139986,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Crabbles Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2649,140007,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Shuttlesfield Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2650,140569,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westerham Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2651,140575,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ileden and Oxenden Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2652,140594,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knole Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2653,136219,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Larkey Valley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2654,136228,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lenham Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2655,136267,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tower Hill To Cockham Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2656,136294,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lullingstone Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2657,136308,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lydden and Temple Ewell Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2658,136323,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brook Brick Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2659,136336,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lympne Escarpment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2660,136342,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lynsore Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2661,136371,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Magpie Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2662,136383,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marden Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2663,136393,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Medway Estuary and Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2664,136420,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oldbury and Seal Chart,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2665,136446,United Kingdom,Common Standards Monitoring,2013,For storage only,18,One Tree Hill and Bitchet Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2666,136460,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Otford To Shoreham Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2667,141040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alex Farm Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2668,136472,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Park Wood, Chilham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2669,138877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stodmarsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2670,136483,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parkgate Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2671,138905,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swanscombe Skull Site,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2672,138901,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Swale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2673,136490,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parsonage Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2674,137195,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wouldham To Detling Escarpment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2675,140021,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wye and Crundale Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2676,137217,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yockletts Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2677,140471,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Thursley, Hankley & Frensham Commons",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2678,136934,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pembury Cutting and Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2679,136952,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Polebrook Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2680,136973,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Preston Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2681,137700,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stockstone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2682,137733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,House Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2683,136989,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Purple Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2684,137004,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Robins Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2685,137052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandwich Bay To Hacklinge Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2686,137069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scord's Wood and Brockhoult Mount,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2687,137082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scotney Castle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2688,137095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sevenoaks Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2689,137131,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shorne and Ashenbank Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2690,137134,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sissinghurst Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2691,137186,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westerham Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2692,137693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fray's Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2693,137764,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingston Escarpment & Iford Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2694,137804,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plashett Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2695,137847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Willingdon Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2696,138506,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oaken Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2697,138526,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orlestone Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2698,138541,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Otterpool Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2699,138575,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rusthall Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2700,138651,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wansunt Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2701,138663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Blean and Thornden Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2702,138673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Adur Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2703,136788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hart Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2704,138688,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bognor Common Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2705,138095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inkpen Crocus Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2706,138691,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chantry Mill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2707,137419,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burgh Hill Farm Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2708,138751,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Dean Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2709,137427,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harefield Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2710,138761,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Felpham,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2711,136655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horton Clay Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2712,140993,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Halnaker Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2713,136677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Levin Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2714,136692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marehill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2715,136699,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rake Hanger,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2716,136742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waltham Brooks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2717,136848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorpe Hay Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2718,136854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackheath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2719,136869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stones Road Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2720,136937,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Firle Escarpment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2721,137441,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heathfield Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2722,137492,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peter's Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2723,137518,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Saltbox Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2724,138314,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boxford Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2725,137385,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hemingfold Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2726,137387,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2727,138404,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Common Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2728,138421,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lewes Brooks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2729,137543,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tankerton Slopes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2730,137568,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ingrebourne Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2731,137578,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combe Haven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2732,138771,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buxted Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2733,138323,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brimpton Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2734,137597,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Denham Lock Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2735,137616,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chingford Reservoirs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2736,140929,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Milton Gate Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2737,137651,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colony Bog and Bagshot Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2738,137672,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fairmile Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2739,138186,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seabrook Stream,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2740,138213,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Folkington Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2741,138298,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allington Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2742,138366,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cannoncourt Farm Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2743,138381,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Catmore and Winterly Copses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2744,138394,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanford End Mill and River Loddon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2745,138313,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Houlder and Monarch Hill Pits, Upper Halling",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2746,138356,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Philpot's and Hook Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2747,138370,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auclaye,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2748,138403,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cock Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2749,138431,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combe Wood and Linkenholt Hanging,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2750,138377,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clock House Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2751,138383,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Smokejack Clay Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2752,138834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2753,138427,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gong Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2754,138830,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trottiscliffe Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2755,140755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Offham Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2756,138453,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Charleshill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2757,138745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wey Valley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2758,138749,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Singleton and Cocking Tunnels,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2759,138779,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sapperton Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2760,138811,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thanet Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2761,140758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackhorse Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2762,140759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Down Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2763,140743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brede Pit and Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2764,140625,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southborough Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2765,140671,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chiddingfold Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2766,140674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coppedhall Hanger,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2767,140827,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southerham Grey Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2768,140828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Netherside Stream Outcrops,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2769,140871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hastingford Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2770,140909,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Willingford Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2771,138111,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broxhead and Kingsley Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2772,141134,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Tew Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2773,140478,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colwell Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2774,138459,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westbury Ironstone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2775,138221,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pamber Forest and Silchester Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2776,136622,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buttler's Hangings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2777,137106,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wicklesham and Coxwell Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2778,141077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heath Brow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2779,136634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ebblake Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2780,169662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bacombe and Coombe Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2781,136647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dancersend,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2782,138045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bere Mill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2783,138062,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warren Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2784,138089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Botley Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2785,138073,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hang Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2786,138104,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Briff Lane Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2787,136698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fern House Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2788,138123,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Easton Farm Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2789,138230,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thatcham Reed Beds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2790,138245,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aldermaston Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2791,136708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foxcote Reservoir and Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2792,138251,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashridge Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2793,138265,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avery's Pightle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2794,138285,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bisham Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2795,138433,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Coombe Wood, Frilsham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2796,139976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holly Court Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2797,140972,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Decoy Pit , Pools & Woods",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2798,140077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,King's Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2799,138456,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Englemere Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2800,138468,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fognam Chalk Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2801,138499,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowdown and Chamberhouse Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2802,138504,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenham and Crookham Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2803,138514,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hamstead Marshall Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2804,140164,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parkfarm Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2805,138529,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inkpen Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2806,138539,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Irish Hill Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2807,138843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ratlake Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2808,138849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frieth Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2809,138887,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wormsley Chalk Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2810,138897,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dancersend Waterworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2811,138919,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glyme Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2812,140089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lardon Chase,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2813,140248,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Woodhay Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2814,140101,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lodge Wood & Sandford Mill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2815,140266,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winterbourne Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2816,140274,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Windsor Forest and Great Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2817,140316,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wraysbury & Hythe End Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2818,140116,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chawridge Bourne,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2819,140129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Old Copse, Beenham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2820,140141,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langley Wood and Homan's Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2821,140151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sulham and Tidmarsh Woods and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2822,140201,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandhurst To Owlsmoor Bogs and Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2823,140209,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Snelsmore Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2824,140222,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swinley Park and Brick Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2825,140321,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wykery Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2826,140235,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wasing Wood Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2827,136270,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Priest's Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2828,136293,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chilbolton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2829,136306,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foxlease and Ancells Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2830,140333,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashdown Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2831,140359,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broadmoor To Bagshot Woods and Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2832,136237,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"West's Meadow, Aldermaston",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2833,136355,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stockbridge Common Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2834,183415,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aston Rowant Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2835,136268,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shabbington Woods Complex,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2836,136482,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pincent's Kiln,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2837,136492,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woolhampton Reed Bed,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2838,136505,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aston Clinton Ragpits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2839,136687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ellesborough and Kimble Warrens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2840,136724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gomm Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2841,137089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Worsham Lane,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2842,137001,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calbourne Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2843,137054,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Locks Farm Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2844,140941,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muswell Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2845,137944,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Warren Farm, Stewkley",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2846,137076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Salt Way, Ditchley",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2847,137098,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knightsbridge Lane,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2848,137388,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rodbed Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2849,137428,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rushbeds Wood and Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2850,137184,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grangelands & Pulpit Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2851,137188,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grendon and Doddershall Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2852,137211,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ham Home-Cum-Hamgreen Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2853,137437,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheephouse Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2854,137228,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollowhill and Pullingshill Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2855,137235,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Homefield Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2856,137248,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ivinghoe Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2857,137272,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lodge Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2858,137296,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Herdon Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2859,137461,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Lodge Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2860,137298,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Millfield Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2861,137304,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moorend Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2862,137319,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Rectory Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2863,137347,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pilch Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2864,137471,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stoke Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2865,137367,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitstone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2866,137741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stratford Toney Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2867,137767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pike Corner,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2868,137817,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Murcott Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2869,138556,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Landford Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2870,137912,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swain's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2871,137921,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tingewick Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2872,138140,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Catherington Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2873,141049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Bottom To Yateley Common and Hawley Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2874,137941,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turville Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2875,138191,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fleet Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2876,138203,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Littleworth Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2877,138228,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sarsgrove Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2878,138527,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Aston Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2879,137955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weston Turville Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2880,137974,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Widdenton Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2881,138540,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Emmett Hill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2882,137998,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Windsor Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2883,138054,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knighton Downs & Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2884,141018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avon Valley ( Bickton To Christchurch ),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2885,136524,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Winchester Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2886,141039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bourley and Long Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2887,169682,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bencroft Hill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2888,138612,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackwater Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2889,138727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Wild Grounds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2890,136258,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coulters Dean,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2891,136285,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Danebury Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2892,138740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alresford Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2893,141012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Basingstoke Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2894,138781,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baddesley Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2895,138791,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Butter Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2896,138832,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Beacon Hill, Warnford",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2897,137209,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Solent,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2898,138880,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Binswood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2899,139975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Botley Wood and Everett's and Mushes Copses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2900,139982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boulsbury Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2901,140009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bramshott and Ludshott Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2902,140031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bransbury Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2903,140046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breamore Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2904,140059,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brickworth Down and Dean Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2905,140061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brockley Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2906,140075,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broughton Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2907,140658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Highclere Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2908,140517,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Browndown,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2909,140521,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burghclere Beacon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2910,140553,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2911,140568,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Butser Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2912,140589,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Hamble Estuary and Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2913,140592,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cheesefoot Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2914,136248,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coombe Wood and The Lythe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2915,137174,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mapledurwell Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2916,136313,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Downend Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2917,136339,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eelmoor Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2918,136353,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eling and Bury Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2919,136405,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gilkicker Lagoon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2920,136424,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greywell Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2921,137181,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Micheldever Spoil Heaps,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2922,138236,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Odiham Common With Bagwell Green and Shaw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2923,140746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hook Common and Bartley Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2924,138300,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Froghall Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2925,138319,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Naphill Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2926,136440,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Norley Copse and Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2927,136887,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arncott Bridge Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2928,136740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Galley Down Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2929,136892,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aston Upthorpe Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2930,138184,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirtlington Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2931,140701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bentley Station Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2932,136814,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quarley Hill Fort,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2933,136897,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hazeley Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2934,136974,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hythe To Calshot Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2935,138498,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peake Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2936,138521,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porton Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2937,138546,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portsdown,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2938,137077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ladle Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2939,137084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langstone Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2940,137104,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lincegrove and Hackett's Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2941,137154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Test Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2942,137155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lymington River Reedbeds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2943,138543,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portsmouth Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2944,138553,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roydon Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2945,138560,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rushmore and Conholt Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2946,138202,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lambridge Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2947,138418,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moorgreen Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2948,138430,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Moors, Bishop's Waltham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2949,138440,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The New Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2950,138445,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Noar Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2951,138607,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Catherine's Hill",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2952,138624,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Selborne Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2953,138650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shortheath Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2954,138682,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sidley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2955,140057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanton Harcourt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2956,140071,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cumnor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2957,138696,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sowley Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2958,138710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stockbridge Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2959,140086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunbridge Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2960,140109,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dinton Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2961,140147,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sutton Lane Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2962,140157,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bramshill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2963,140243,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Titchfield Haven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2964,140121,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Distillery Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2965,140136,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porton Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2966,140263,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waltham Chase Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2967,140500,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garston's Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2968,140692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Acres Farm Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2969,136430,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alvescot Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2970,136441,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harpsden Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2971,136457,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berrick Trench,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2972,140694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Box Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2973,136471,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stockbridge Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2974,140642,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heath Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2975,137379,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bould Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2976,140635,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hog's Hole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2977,140644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poors Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2978,183437,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Compton Chine To Steephill Cove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2979,136620,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Headon Warren and West High Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2980,140636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trodds Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2981,136629,United Kingdom,Common Standards Monitoring,2013,For storage only,18,King's Quay Shore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2982,136654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mottistone Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2983,140609,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Streatley Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2984,136666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prospect Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2985,136672,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rew Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2986,136680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rowridge Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2987,136733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Lawrence Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2988,136822,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Wilderness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2989,136868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Appleton Lower Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2990,136881,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardley Cutting and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2991,136367,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Madeley Heath Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2992,140682,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holies Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2993,140685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duncroft Farm Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2994,140687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckland Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2995,140689,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Finemere Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2996,140690,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fayland Chalk Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2997,140691,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Temple Island Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2998,140696,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Coombs, Hinton Parva",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -2999,137498,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Culham Brake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3000,137334,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barrow Farm Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3001,137350,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bear, Oveys and Great Bottom Woods",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3002,137353,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bix Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3003,137368,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blenheim Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3004,137404,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurst Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3005,137417,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chimney Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3006,137435,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chinnor Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3007,137447,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chinnor Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3008,137517,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ditchley Road Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3009,137537,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dry Sandford Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3010,137561,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ducklington Mead,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3011,137609,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Frilford Heath, Ponds and Fens",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3012,137614,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grafton Lock Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3013,137627,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hackpen, Warren & Gramp's Hill Downs",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3014,137636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hartslock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3015,138217,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langley's Lane Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3016,140722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winsley Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3017,140728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3018,140726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westfield Farm Chalk Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3019,140729,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hodgemoor Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3020,140730,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middle Barton Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3021,138091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Highlands Farm Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3022,138101,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holly Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3023,138110,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3024,138130,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hook Norton Cutting & Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3025,138138,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horsehay Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3026,141017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Marston Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3027,138232,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spartum Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3028,138243,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Littlemore Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3029,138260,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Littleworth Brick Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3030,138294,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Hanborough Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3031,138297,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lye Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3032,138305,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lyehill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3033,138344,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moulsford Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3034,141031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cassington Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3035,138375,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Neithrop Fields Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3036,138390,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Otmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3037,138402,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Out Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3038,136416,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheep's Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3039,140774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upton Cow Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3040,140775,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rotherley Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3041,140776,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Restrop Farm and Brockhurst Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3042,136429,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shellingford Crossroads Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3043,136451,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shirburn Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3044,136478,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brasenose Wood and Shotover Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3045,136498,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sidling's Copse and College Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3046,136506,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Stonesfield Common, Bottoms & Banks",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3047,140777,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stert Brook Exposure,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3048,136302,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pishill Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3049,136320,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pixey and Yarnton Meads,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3050,136335,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Port Meadow With Wolvercote Common & Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3051,136522,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stonesfield Slate Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3052,136533,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stratton Audley Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3053,136347,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Reed Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3054,137092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitehill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3055,136380,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitehorse Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3056,136357,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rock Edge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3057,141024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westwell Gorse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3058,141035,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cothill Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3059,136399,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sharp's Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3060,136537,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sturt Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3061,136565,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swyncombe Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3062,140795,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Landford Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3063,136573,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Taynton Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3064,140796,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loosehanger Copse and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3065,140806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lee-On-The Solent To Itchen Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3066,136585,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tuckmill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3067,136596,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waterperry Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3068,136603,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Watlington and Pyrton Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3069,140620,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dank's Down and Truckle Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3070,140819,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stone,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3071,137119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodeaton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3072,138911,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wychwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3073,137175,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wytham Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3074,140859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Magdalen Grove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3075,137251,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bestmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3076,137255,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanton Great Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3077,137327,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coate Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3078,137336,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inkpen and Walbury Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3079,140889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croker's Hole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3080,140890,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bray Pennyroyal Field,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3081,140891,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingcup Meadows and Oldhouse Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3082,140892,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poker's Pond Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3083,137819,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bincknoll Dip Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3084,137837,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackmoor Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3085,140693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bratton Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3086,141052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stoke Common Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3087,137900,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brimsdown Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3088,136344,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moon's Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3089,137915,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Britford Water Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3090,140970,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Goldborough Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3091,137935,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burcombe Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3092,137965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burderop Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3093,137977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calstone and Cherhill Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3094,137993,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Camp Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3095,138010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Charnage Down Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3096,138001,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chickengrove Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3097,138068,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clearbury Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3098,146265,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yarner Wood & Trendlebere Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3099,141153,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stokeford Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3100,138039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chilmark Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3101,138047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chilton Foliat Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3102,138067,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clattinger Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3103,138692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dead Maid Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3104,141156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Tickenham, Nailsea and Kenn Moors",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3105,138082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cley Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3106,138756,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Figsbury Ring,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3107,137173,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fyfield Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3108,138590,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clout's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3109,138610,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cockey Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3110,138625,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colerne Park and Monk's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3111,138642,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsham Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3112,138687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranborne Chase,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3113,138723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ebsbury Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3114,138810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gallows Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3115,138807,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Cheverell Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3116,140732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Great Quarry, Swindon",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3117,138874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Yews,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3118,140915,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Howe Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3119,140393,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gutch Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3120,140504,United Kingdom,Common Standards Monitoring,2013,For storage only,18,King's Play Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3121,140518,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knapp and Barnett's Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3122,140559,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Grubbins Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3123,136263,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morgan's Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3124,137967,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"North Meadow, Cricklade",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3125,140573,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Knoll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3126,140600,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Stanton St, Quintin Quarry & Motorway Cutting",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3127,136224,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Woodford Water Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3128,136286,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Odstock Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3129,136307,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Okus Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3130,137684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seend Cleeve Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3131,137505,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Old Town Railway Cutting, Swindon",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3132,137694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seend Ironstone Quarry and Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3133,137520,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Out Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3134,140329,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parsonage Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3135,140348,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pewsey Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3136,137716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Silbury Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3137,137736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Midford Valley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3138,137573,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Piggledene,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3139,137583,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bracknell Croft,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3140,137755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spye Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3141,141141,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"New Cut, Torquay",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3142,140386,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prescombe Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3143,137313,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scabbacombe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3144,137612,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rack Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3145,137626,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ravensroost Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3146,137645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roundway Down and Covert,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3147,137657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Savernake Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3148,137681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scratchbury & Cotley Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3149,137776,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Starveall and Stony Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3150,138310,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teffont Evias Quarry / Lane Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3151,140697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clevedon Shore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3152,138267,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Steeple Langford Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3153,138287,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stockton Wood and Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3154,140233,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wytham Ditches and Flushes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3155,140241,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lamb and Flag Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3156,138332,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Throope Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3157,169757,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleeve Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3158,140268,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Iffley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3159,138345,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pincombe Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3160,138355,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tytherington Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3161,140273,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bentley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3162,140721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crab Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3163,140351,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashford Hill Woods and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3164,138369,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Chicksgrove Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3165,138392,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Waterhay Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3166,140999,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salisbury Plain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3167,138457,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Harnham Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3168,138493,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Yatton Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3169,138515,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whiteparish Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3170,138534,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitesheet Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3171,170231,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Win Green Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3172,138571,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winklebury Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3173,138592,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowerchalke Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3174,137406,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wylye and Church Dean Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3175,140134,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yarnbury Castle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3176,137434,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Martin and Tidpit Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3177,140191,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berins Hill Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3178,140374,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lye Heath Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3179,136489,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hook Heath Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3180,140384,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ron Ward's Meadow With Tadley Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3181,140389,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Minley Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3182,146264,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porthloo,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3183,136497,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warblington Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3184,136509,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warnborough Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3185,136550,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Toyd Down and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3186,136625,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Briddlesford Copses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3187,136649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parkhurst Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3188,136526,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Burghclere Lime Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3189,137316,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longmoor Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3190,136676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eaglehead and Bloodstone Copses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3191,136700,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greatwood and Cliff Copses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3192,136723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,America Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3193,137321,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sugworth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3194,137339,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitecross Green and Oriel Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3195,136749,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northpark Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3196,136778,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cridmore Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3197,137222,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lacey's Farm Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3198,137389,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Picket and Clanger Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3199,137402,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southampton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3200,137418,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greywell Tunnel ( Basingstoke Canal ),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3201,137239,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redhill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3202,137246,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Enborne Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3203,137257,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Freeman's Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3204,137267,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wellington College Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3205,137285,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boxford Water Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3206,137429,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fletchwood Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3207,137450,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rushy Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3208,140680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oakhills Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3209,137462,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wolvercote Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3210,140652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,King's Wood and Urchin Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3211,140845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porthleven Cliffs East,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3212,137890,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hobb's Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3213,141002,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Exmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3214,169656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashburton Road Cuttings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3215,141065,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tregonning Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3216,146263,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Watermill Cove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3217,146268,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cameron Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3218,146269,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Phoenix United Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3219,170041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penlee Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3220,140904,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingdown and Middledown,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3221,140771,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crockham Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3222,140980,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swanpool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3223,140794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grove Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3224,141152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Michael's Mount",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3225,141146,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redlake Meadows & Hoggs Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3226,141043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Biddle Street, Yatton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3227,137458,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greystone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3228,146261,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Pentle Bay, Merrick and Round Islands",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3229,170237,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wookey Station,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3230,136375,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holwell Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3231,140857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pentridge Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3232,140924,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plymbridge Lane & Estover Road,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3233,169696,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bleadon Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3234,138063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weston-In-Gordano,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3235,169699,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boscawen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3236,169781,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Court Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3237,136950,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shillingstone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3238,141069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Lizard Heathlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3239,136701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ottery Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3240,169918,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Kenn Church, Kenn Pier & Yew Tree Farm",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3241,141159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Fal Estuary and Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3242,138187,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gordano Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3243,140523,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grenofen Wood and West Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3244,137412,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hardington Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3245,138760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Terras Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3246,140784,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coombe Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3247,140216,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whiteleigh Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3248,140785,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haytor Rocks and Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3249,140259,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bovey Heathfield,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3250,136552,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aunt Mary's Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3251,140282,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plaster's Green Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3252,140303,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Exmoor Coastal Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3253,140786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wareham Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3254,140651,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Billacombe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3255,140654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brampford Speke,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3256,140893,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whiddon Deer Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3257,140790,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tidcombe Lane Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3258,140843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Writhlington,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3259,140792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nymet Barton Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3260,140793,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Axbridge Hill and Fry's Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3261,136574,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitchurch Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3262,136591,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kismeldon Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3263,140631,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leusdon Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3264,140797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stepper Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3265,140846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brendonmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3266,136658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yanal Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3267,136668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morcombelake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3268,136681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trevone Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3269,140894,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunsland Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3270,137317,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Common Moor Langtree,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3271,137329,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meadfoot Sea Road,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3272,138171,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Posbury Clump,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3273,137360,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ge-Mare Farm Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3274,140847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3275,137366,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Polyphant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3276,137390,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Haldon Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3277,140723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mill Rock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3278,138145,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Haldon Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3279,138442,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trevose Head and Constantine Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3280,140695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combe Down and Bathampton Down Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3281,140848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Okehampton Park Flush,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3282,140840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mambury and Stowford Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3283,140842,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langmead and Weston Level,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3284,140838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Wheal Fortune,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3285,140719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poole Bay Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3286,140855,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hartcliff Rocks Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3287,140895,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quarry Fields Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3288,140720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitt's Cleave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3289,138065,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingford Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3290,140856,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penlee Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3291,140896,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingweston Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3292,138826,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Curry and Hay Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3293,141004,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longleat Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3294,138495,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Draynes Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3295,138508,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eglarooze Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3296,138549,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Godrevy Head To St Agnes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3297,138578,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Goonhilly Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3298,138583,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hayle Estuary & Carrack Gladden,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3299,138633,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kelsey Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3300,140731,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wolborough Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3301,140850,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haldon Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3302,138639,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kennack To Coverack,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3303,138637,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loe Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3304,138675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Greenscoombe Wood , Luckett",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3305,140013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Hill Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3306,140060,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corfe Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3307,141057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingsand To Sandway Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3308,140964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bulmoor Pastures & Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3309,140996,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenamoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3310,140195,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lynher Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3311,140214,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Malpas Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3312,140965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brendon Farm (North),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3313,138847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Folly Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3314,140218,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marazion Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3315,140237,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Merthen Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3316,138868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brent Tor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3317,140742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ryecroft Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3318,140004,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Greenaways and Freshmarsh, Braunton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3319,140016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breach Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3320,140844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3321,136225,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fremington Quay Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3322,140296,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penhale Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3323,140310,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pentire Peninsula,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3324,140319,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwithian To Mexico Towans,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3325,140350,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porthgwarra To Pordenack Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3326,140362,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porthleven Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3327,140897,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bugden's Copse and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3328,140426,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rock Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3329,140437,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rosenannon Bog and Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3330,140473,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caerthillian To Kennack,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3331,136377,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drakenorth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3332,140744,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Popehouse Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3333,140745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ruttersleigh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3334,140898,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Staddon Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3335,140899,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Small Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3336,136242,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westhay Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3337,140900,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bulkamore Iron Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3338,136272,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hawkesbury Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3339,140966,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Occombe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3340,140901,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Whiddon Moor, Luckcoft and Odham Marshes",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3341,140902,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chapel Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3342,140903,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lang's Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3343,140967,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bolshayne Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3344,136356,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ribsons Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3345,140626,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ellenborough Park West,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3346,140916,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Briggins Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3347,170223,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Horse Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3348,140939,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deptford Farm Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3349,140978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Borlasevath and Retallack Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3350,140839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trevaunance Cove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3351,140781,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Perch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3352,140782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maiden Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3353,140940,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coverack Cove and Dolor Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3354,140989,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lymsworthy Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3355,140968,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woolhayes Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3356,140992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grimscott,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3357,169872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Pool (Tresco),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3358,137003,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Priddy Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3359,140979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sylvia's Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3360,137742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bedruthan Steps and Park Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3361,137749,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shiplate Slait,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3362,170052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Porth Seal (St, Martin'S)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3363,140618,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monkswood Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3364,137048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dyer's Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3365,137769,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenthorne,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3366,137822,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northam Burrows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3367,136696,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ventongimps Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3368,136612,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stourscombe Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3369,136623,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tintagel Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3370,137093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braunton Swanpool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3371,140679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Friar's Oven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3372,141003,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marsland To Clovelly Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3373,140998,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corfe Mullen Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3374,138304,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Spring Head, Axmouth",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3375,138533,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deadman,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3376,136637,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trebetherick Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3377,136661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Treen Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3378,137115,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blandford Camp,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3379,136394,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3380,137882,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abbotsbury Blind Lane,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3381,140938,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradworthy Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3382,140942,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Congrove Field and The Tumps,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3383,140712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barricane Beach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3384,138116,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cullimore's Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3385,138554,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upton Coombe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3386,137958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belle Vue Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3387,138577,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Lye,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3388,141006,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coverack To Porthoustock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3389,138609,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Hill Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3390,140717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brendon and Vealand Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3391,137737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Exe Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3392,137774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Halsdon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3393,137887,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abbotsbury Castle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3394,136332,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arne,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3395,137907,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Babylon Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3396,138525,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fivehead Arable Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3397,138524,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dawlish Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3398,138532,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brean Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3399,137942,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Batcombe Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3400,137973,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bere Stream,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3401,138709,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crookhill Brick Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3402,138725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eggardon Hill & Luccas Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3403,138752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fontmell and Melbury Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3404,138000,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackdown (Hardy Monument),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3405,138765,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frogden Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3406,138778,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creech Grange,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3407,138792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Giant Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3408,138011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blashenwell Farm Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3409,138025,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Dorset Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3410,138053,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bracket's Coppice and Ryewater Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3411,138075,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryanston,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3412,138093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sydling Valley Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3413,138097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burton Bradstock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3414,138129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chalbury Hill and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3415,138144,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chesil & The Fleet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3416,138148,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lyscombe and Highdon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3417,138166,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Christchurch Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3418,138172,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Town Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3419,138475,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Worgret Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3420,138492,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lorton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3421,138908,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haydon and Askerswell Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3422,139987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Higher Houghton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3423,140629,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aller Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3424,140001,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holt and West Moors Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3425,138565,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roebuck Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3426,138667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corfe Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3427,137060,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bridgwater Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3428,138694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranborne Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3429,169686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Big Pool & Browarth Point(St, Agnes)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3430,169739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Down (Tresco),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3431,169746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Chapel Down (St, Martin'S)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3432,169822,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eastern Isles,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3433,138837,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dendles Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3434,138808,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Goathill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3435,138825,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Purbeck Ridge (West),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3436,138840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Halfway House Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3437,138848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hod and Hambledon Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3438,138873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Handcocks Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3439,141042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Puxton Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3440,140025,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horn Park Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3441,140029,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langford Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3442,140312,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Knowle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3443,169879,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3444,138120,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Damery Road Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3445,138149,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dolebury Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3446,140331,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banwell Ochre Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3447,140345,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Compton Martin Ochre Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3448,140360,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Exmoor Coast and Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3449,140371,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Purewell Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3450,138174,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dundry Main Road South Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3451,140385,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whetley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3452,140474,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lodmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3453,140484,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low's Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3454,140502,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lulworth Park & Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3455,140525,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Melbury Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3456,141140,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morden Bog and Hyde Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3457,140583,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oakers Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3458,136264,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peashill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3459,136276,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Piddles Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3460,138212,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hawkesbury Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3461,136291,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitcombe Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3462,136315,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Isle Of Portland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3463,183424,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Powerstock Common & Wytherston Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3464,136386,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Radipole Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3465,136689,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Brentor Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3466,136693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lydford Railway Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3467,136725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Babcary Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3468,136751,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dozmary Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3469,136770,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Dartmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3470,136873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Studland Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3471,136671,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tregargus Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3472,136690,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crowhill Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3473,136906,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thrasher's Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3474,169972,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lower Moors (St, Mary'S)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3475,137425,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Draycott Sleights,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3476,137426,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brenscombe Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3477,136914,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Townsend,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3478,136923,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3479,136947,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upton Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3480,136958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Valley Of Stones,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3481,136991,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Dorset Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3482,136997,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winfrith Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3483,169650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Annet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3484,169902,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Higher Moors & Porth Hellick Pool (St, Mary'S)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3485,137490,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tater-Du,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3486,170018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Norrard Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3487,170040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Peninnis Head (St, Mary'S)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3488,138420,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hartland Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3489,136717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Lizard,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3490,170049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Plains & Great Bay (St, Martin'S)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3491,170233,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Wingletang Down (St, Agnes)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3492,137772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Amble Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3493,137639,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3494,137869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carnkief Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3495,170051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pool Of Bryher & Popplestone Bank (Bryher),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3496,140450,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ebbor Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3497,170106,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rushy Bay & Heathy Hill (Bryher),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3498,170109,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Samson (With Green, White, Puffin & Stony Islands)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3499,170119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shipman Head & Shipman Down (Bryher),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3500,136730,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Helen's (With Northwethel & Men-A-Vaur)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3501,170151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tean,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3502,170220,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Western Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3503,137747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"White Island (Off St, Martin'S)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3504,140750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meldon Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3505,137792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boconnoc Park & Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3506,137826,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bodmin Moor, North",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3507,137838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boscastle To Widemouth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3508,137852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gerrans Bay To Camels Cove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3509,141115,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aire Point To Carrick Du,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3510,138154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hobby To Peppercombe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3511,138190,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Brewham Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3512,138210,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hog Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3513,138226,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prawle Point and Start Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3514,138257,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portland Harbour Shore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3515,138258,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Toller Porcorum,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3516,138367,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrine Common & Penwethers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3517,138393,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chyenhal Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3518,138406,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clicker Tor Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3519,138415,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cligga Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3520,140250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mulberry Downs Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3521,140285,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nance Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3522,136387,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3523,136403,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Frome St, Quintin",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3524,136417,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ham Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3525,136447,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lambert's Castle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3526,136465,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mapperton and Poorton Vales,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3527,136479,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oakers Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3528,136771,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banwell Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3529,136560,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Agnes Beacon Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3530,136582,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Steeple Point To Marsland Mouth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3531,136583,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Erth Sand Pits",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3532,136598,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St John's Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3533,138231,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hinton Charterhouse Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3534,136735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Purn Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3535,136787,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barnhill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3536,136809,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blagdon Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3537,138237,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilmersdon Road Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3538,136753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aust Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3539,138465,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avon Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3540,138253,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3541,138269,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middle Hope,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3542,138309,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portishead Pier To Black Nore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3543,136816,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bodkin Hazel Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3544,136832,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowlditch Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3545,136845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Uphill Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3546,136855,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brinkmarsh Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3547,137885,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rempstone Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3548,137888,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turners Puddle Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3549,137910,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wareham Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3550,137924,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warmwell Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3551,137938,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wootton Fitzpaine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3552,138040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brown's Folly,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3553,138051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckover Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3554,138052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burrington Combe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3555,138070,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chew Valley Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3556,138088,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cleeve Wood, Hanham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3557,138193,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harptree Combe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3558,138331,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Slickstones Quarry, Cromhall",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3559,138363,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spring Cove Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3560,138374,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Steep Holm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3561,138659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greylake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3562,138672,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurcott Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3563,140760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleeve Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3564,138697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low Ham,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3565,138719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Twinhills Woods and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3566,138836,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weston Big Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3567,138864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Street Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3568,138872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aller and Beer Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3569,138886,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Asham Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3570,139984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berrow Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3571,140010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Down and Sampford Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3572,140017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blue Anchor To Lilstock Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3573,140081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bruton Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3574,140113,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Catcott Edington and Chilton Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3575,140042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brimble Pit and Cross Swallet Basins,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3576,140130,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cloford Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3577,140154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Cheddar Complex,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3578,140200,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doulting Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3579,140159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cheddar Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3580,140174,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cheddar Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3581,140520,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hense Moor Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3582,136266,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Godminster Lane Quarry and Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3583,136289,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Emborough Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3584,169890,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ham Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3585,136324,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Breach and Copley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3586,136412,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Nectan's Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3587,136442,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Quantocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3588,136516,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Seavington St, Mary",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3589,136545,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sharpham Moor Plot,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3590,136466,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Priddy Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3591,136473,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prior's Park & Adcombe Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3592,138177,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rodney Stoke,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3593,136496,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Dunstan's Well Catchment",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3594,136556,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Snowdon Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3595,136571,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sparkford Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3596,136842,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langport Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3597,137100,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitevine Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3598,141055,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croft Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3599,137128,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Windsor Hill Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3600,137133,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Windsor Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3601,141008,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lingwood Meadows, Earl Stonham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3602,140505,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benfleet and Southend Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3603,137153,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wookey Hole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3604,137163,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Andrew's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3605,137190,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arlington,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3606,140404,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Webberton Cross Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3607,137192,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashculm Turbary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3608,137196,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Babbacombe Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3609,137777,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bonhay Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3610,140585,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bovey Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3611,137796,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradiford Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3612,137230,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beaford Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3613,137233,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beer Quarry and Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3614,137252,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berry Head To Sharkham Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3615,137594,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southmoor Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3616,137603,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brocks Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3617,136227,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braunton Burrows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3618,137856,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckfastleigh Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3619,137862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckland-In-The-Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3620,137618,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gilmoor and Moorlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3621,137883,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buller's Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3622,140851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hinton Charterhouse Field,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3623,140513,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackwater Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3624,137727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blake's Wood & Lingwood Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3625,137730,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bovingdon Hall Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3626,137638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sutton Combe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3627,137640,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turbary and Kinson Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3628,137652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Fowey Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3629,137990,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chipley Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3630,138013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chudleigh Knighton Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3631,138038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holne Woodland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3632,137744,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackslade Mire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3633,137756,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bolt Head To Bolt Tail,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3634,140256,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Court Farm, Sydling",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3635,140347,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dawlish Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3636,169792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crouch and Roach Estuaries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3637,137800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cattawade Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3638,137812,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chalkney Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3639,136709,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colne Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3640,137876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Budleigh Salterton Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3641,138318,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Curtismill Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3642,137913,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Potter's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3643,137933,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burrator Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3644,137945,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bursdon Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3645,137964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Lemon Valley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3646,138335,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Danbury Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3647,140369,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dean Steep,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3648,140381,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Devon Great Consols,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3649,140395,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Devon United Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3650,138350,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Debden Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3651,136757,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dengie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3652,138378,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roman River,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3653,140409,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunnabridge Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3654,140428,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Dunscombe Farm Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3655,140466,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Devon Pebblebed Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3656,140475,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Ogwell Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3657,140482,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Erme Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3658,140491,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fremington Claypit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3659,140511,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Furley Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3660,140718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nettlecombe Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3661,140541,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Halstock Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3662,140558,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hannaborough Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3663,140599,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hare's Down, Knowstone & Rackenford Moors",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3664,136600,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"North Road Quarry, Bath",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3665,136614,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bickley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3666,136229,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haytor and Smallacombe Iron Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3667,136555,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barle Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3668,136922,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lord's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3669,136572,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Freshmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3670,136590,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ringdown,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3671,136636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bourne,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3672,136727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hembury Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3673,136745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hense Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3674,136768,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Down Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3675,136800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollow Moor & Odham Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3676,136810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hope's Nose To Wall's Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3677,136830,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hunshaw Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3678,136859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kent's Cavern,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3679,136938,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lummaton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3680,136866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kersdown Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3681,136959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lydford Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3682,136981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lundy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3683,136987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meldon Aplite Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3684,136879,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lady's Wood and Viaduct Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3685,136907,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lockridge Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3686,137010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Napp's Cave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3687,137256,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brockley Hall Stables,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3688,137277,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cattybrook Brickpit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3689,137301,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Quarry Steps, Durdham Down",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3690,137323,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hampton Rocks Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3691,137333,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holly Lane,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3692,137345,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Dole Wood and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3693,137468,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Dartmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3694,137480,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Otter Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3695,137499,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park Gate Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3696,137511,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Piles Copse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3697,137523,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plaistow Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3698,137593,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pridhamsleigh Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3699,137544,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wallsend Industrial Estate,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3700,137580,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Common Moor, East Putford",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3701,137605,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ransley Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3702,137613,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Reed's Farm Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3703,137666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Verwood Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3704,137683,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rushford Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3705,137703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salcombe To Kingsbridge Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3706,137717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sampford Spiney,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3707,137729,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Saunton To Baggy Point Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3708,137735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shapwick Grange Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3709,138352,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stoke Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3710,138027,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Newton St, Loe",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3711,138037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nightingale Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3712,138046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tytherington Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3713,138384,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Dartmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3714,138398,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Saltern Cove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3715,138408,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Taw-Torridge Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3716,138413,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teign Valley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3717,138436,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorne and Doves Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3718,138448,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roundham Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3719,138483,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Torbryan Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3720,138077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stidham Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3721,138081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winterbourne Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3722,138118,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hawkstor Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3723,138214,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shaugh Prior Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3724,138234,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sidmouth To Beer Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3725,193738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slapton Ley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3726,137171,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Whipcott,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3727,138275,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southacre Clay Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3728,138835,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn Grey Rock and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3729,138855,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Luxulyan Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3730,138861,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cudden Point To Prussia Cove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3731,138292,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Milton Ley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3732,138339,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stokenham,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3733,138373,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stover Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3734,138478,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tor Royal Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3735,138510,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tower Wood Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3736,138917,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porthcew,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3737,138882,United Kingdom,Common Standards Monitoring,2013,For storage only,18,De Lank Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3738,138890,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Folly Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3739,140175,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilmington Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3740,137293,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loggans Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3741,170036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3742,140189,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sutton Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3743,140197,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ladram Bay To Sidmouth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3744,136990,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roche Rock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3745,137349,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bude Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3746,137280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ferndown Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3747,137291,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lidcott Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3748,138797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hunsdon Mead,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3749,138015,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Richmond Walk,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3750,138029,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Western King,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3751,138043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mount Wise,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3752,169821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Walton and Adcock's Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3753,138066,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barrington Hill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3754,138105,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cogley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3755,138113,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quants,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3756,138142,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southey and Gotleigh Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3757,138162,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3758,138188,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lions Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3759,138205,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laughter Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3760,138219,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broom Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3761,138816,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wheal Alfred,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3762,138818,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wheal Gorland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3763,140860,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maesbury Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3764,138845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hingston Down Quarry & Consols,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3765,138870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penberthy Croft Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3766,141000,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kernick and Ottery Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3767,138903,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wheal Penrose,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3768,138914,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meneage Coastal Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3769,139978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Five Oaks, Bampton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3770,139988,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishop's Hill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3771,139997,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Huish Colliery Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3772,140028,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Max Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3773,140358,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meddon Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3774,136764,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trehane Barton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3775,140406,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cabilla Manor Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3776,136888,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Canford Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3777,140538,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holme Moor & Clean Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3778,140546,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Postlebury Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3779,136909,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandford Lane Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3780,140554,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stowell Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3781,140570,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wet Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3782,140578,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Sedgemoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3783,136917,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradford Abbas Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3784,136218,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chancellor's Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3785,140798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rosemullion,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3786,136232,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Millwater,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3787,136246,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Viaduct Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3788,136261,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leighton Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3789,136273,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maes Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3790,136333,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thrupe Lane Swallet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3791,136359,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wurt Pit and Devil's Punchbowl,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3792,136392,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandpit Hole and Bishop's Lot,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3793,136408,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blue Pool and Norden Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3794,136415,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bourne Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3795,136961,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upwey Quarries and Bincombe Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3796,137033,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slop Bog and Uddens Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3797,137085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spara Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3798,137096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wistman's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3799,137114,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stout's Cottage,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3800,137138,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Two Bridges Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3801,169871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grays Thurrock Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3802,140791,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Wiggenhall St, German'S",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3803,140808,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Ter,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3804,140950,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Nar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3805,136499,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wells Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3806,140152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hall's Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3807,137116,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yare Broads and Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3808,136564,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alderfen Broad,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3809,138059,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Halvergate Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3810,141079,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Laurel Farm Meadow, St, Cross South Elmham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3811,140931,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Thurrock Lagoon & Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3812,140956,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Yarmouth North Denes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3813,140957,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Damgate Marshes, Acle",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3814,140969,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Colne Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3815,140975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raf Lakenheath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3816,137554,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Epping Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3817,137560,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Norsey Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3818,137599,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Wood & Dodd's Grove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3819,137619,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abberton Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3820,138466,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Globe Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3821,136953,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hamford Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3822,137641,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nunn Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3823,137656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashdon Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3824,138595,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hanningfield Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3825,138629,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harlow Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3826,140148,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hatfield Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3827,137669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Basildon Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3828,136728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middle Harling Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3829,137687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belcher's & Broadfield Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3830,138397,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elsenham Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3831,138439,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garnetts Wood / Barnston Lays,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3832,136864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bure Broads and Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3833,140171,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"High Wood, Dunmow",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3834,140184,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hockley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3835,136780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bryant's Heath, Felmingham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3836,137071,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eriswell Low Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3837,140196,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Syderstone Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3838,140205,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lion Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3839,137242,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burgh Common and Muckfleet Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3840,140213,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marks Tey Brickpit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3841,140261,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitsea Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3842,137503,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Felbrigg Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3843,140279,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quendon Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3844,136663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Limpenhoe Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3845,137621,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hales and Shadwell Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3846,140305,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Stour and Copperas Woods, Ramsey",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3847,140320,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stour Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3848,140336,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weeleyhall Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3849,140356,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Naze,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3850,140378,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorndon Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3851,140391,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tiptree Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3852,140408,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waltham Abbey,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3853,140587,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Blakenham Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3854,136527,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3855,136546,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodham Walter Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3856,136557,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breydon Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3857,136738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Milden Thicks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3858,136747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minsmere-Walberswick Heaths and Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3859,136581,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alderford Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3860,136593,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ant Broads and Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3861,136621,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barnhamcross Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3862,136678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blo' Norton and Thelnetham Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3863,136702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Booton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3864,137531,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"High House Meadows, Monewden",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3865,136710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boughton Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3866,136726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bramerton Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3867,137997,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foulden Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3868,137989,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foxley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3869,138469,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bridgham & Brettenham Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3870,136775,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Broad Fen, Dilham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3871,138141,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holkham Brickpits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3872,137268,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buxton Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3873,137283,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Caistor St, Edmund Chalk Pit",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3874,138126,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Holly Farm Meadow, Wendling",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3875,137306,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calthorpe Broad,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3876,137324,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Catton Grove Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3877,137363,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranberry Rough Hockham,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3878,137384,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Decoy Carr, Acle",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3879,137398,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dersingham Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3880,140591,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Snettisham Carstone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3881,136213,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanford Training Area,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3882,137446,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Didlington Park Lakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3883,137452,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Ruston Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3884,137465,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Winch Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3885,137485,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Wretham Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3886,137501,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eaton Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3887,137519,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flordon Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3888,136331,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swannington Upgate Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3889,138049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grime's Graves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3890,138072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heacham Brick Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3891,138195,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Honeypot Wood, Wendling",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3892,138031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swanton Novers Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3893,138121,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hockering Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3894,138179,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hay Wood, Whepstead",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3895,138223,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horningtoft Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3896,136364,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thetford Golf Course & Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3897,136398,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Thompson Water, Carr and Common",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3898,138181,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holt Lowes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3899,138876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Poplar Farm Meadows, Langley",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3900,138272,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hunstanton Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3901,138899,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Potter's Carr, Cranworth",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3902,137705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weybourne Town Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3903,138264,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kelling Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3904,138286,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Leziate, Sugar and Derby Fens",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3905,138291,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lower Wood, Ashwellthorpe",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3906,138307,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ludham - Potter Heigham Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3907,140533,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winterton - Horsey Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3908,137762,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wiveton Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3909,137765,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wretham Park Meres,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3910,138809,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morston Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3911,138823,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mundesley Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3912,138858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Buckenham Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3913,138850,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Overstrand Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3914,137808,United Kingdom,Common Standards Monitoring,2013,For storage only,18,How Hill Track,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3915,138909,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Potter & Scarning Fens, East Dereham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3916,139992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redgrave and Lopham Fens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3917,140008,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ringstead Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3918,140038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roydon Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3919,140069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scoulton Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3920,140577,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Smallburgh Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3921,140073,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Sea Mere, Hingham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3922,140098,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sexton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3923,137400,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chippenham Fen and Snailwell Poor's Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3924,140125,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheringham and Beeston Regis Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3925,140140,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sidestrand and Trimingham Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3926,136235,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Stanley and Alder Carrs, Aldeby",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3927,137972,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Fox Fritillary Meadow, Framsden",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3928,137987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradfield Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3929,138509,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brent Eleigh Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3930,136244,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crostwick Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3931,136321,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Swangey Fen, Attleborough",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3932,136419,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Narborough Railway Embankment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3933,136436,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upton Broad & Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3934,136448,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warham Camp,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3935,136477,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Wayland Wood, Watton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3936,137110,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coston Farm Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3937,138167,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weeting Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3938,136514,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Runton Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3939,136518,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westwick Lakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3940,137695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weybourne Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3941,137715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitwell Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3942,137815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Abbey Wood, Flixton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3943,137991,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aldeburgh Brick Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3944,137849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arger Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3945,137870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bangrove Wood, Ixworth",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3946,137886,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barking Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3947,137896,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barnham Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3948,138582,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cherry Hill and The Gallops, Barton Mills",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3949,137918,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bawdsey Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3950,137952,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Berner's Heath, Icklingham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3951,137966,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Black Ditches, Cavenham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3952,138528,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Creeting St, Mary Pits",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3953,138544,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garrold's Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3954,138542,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cavendish Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3955,136939,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cavenham - Icklingham Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3956,138627,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southrepps Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3957,140357,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Blakenham Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3958,138623,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combs Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3959,138636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cornard Mere, Little Cornard",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3960,138646,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Crag Farm Pit, Sudbourne",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3961,138668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cransford Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3962,138690,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Deadman's Grave, Icklingham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3963,138717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sizewell Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3964,138742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Crag Pit, Sutton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3965,138747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edwardstone Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3966,138757,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elmsett Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3967,138776,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fakenham Wood and Sapiston Great Grove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3968,140298,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Foxhole Heath, Eriswell",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3969,140307,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Freston and Cutler's Woods With Holbrook Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3970,140330,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gipping Great Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3971,140342,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gosbeck Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3972,137343,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stubbers Green Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3973,140367,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gromford Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3974,140379,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Groton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3975,140419,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hascot Hill Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3976,140449,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horringer Court Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3977,140483,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hintlesham Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3978,140532,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lakenheath Poors Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3979,140543,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lakenheath Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3980,140556,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Landguard Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3981,140489,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hopton Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3982,140501,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hoxne Brick Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3983,140510,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kentwell Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3984,140565,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lineage Wood & Railway Track, Long Melford",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3985,137371,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sutton Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3986,136688,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Little Heath, Barnham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3987,136697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lordswell Field,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3988,136759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monewden Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3989,136713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maidscross Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3990,136721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mickfield Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3991,136836,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Norton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3992,138563,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alde-Ore Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3993,136941,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Stallode Wash, Lakenheath",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3994,136949,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanton Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3995,136878,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Pashford Poor's Fen, Lakenheath",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3996,136885,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Rockhall Wood Pit, Sutton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3997,140267,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thetford Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3998,137482,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorpe Morieux Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -3999,136899,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Snape Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4000,136920,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sotterley Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4001,136926,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Sprat's Water and Marshes, Carlton Colville",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4002,136966,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Staverton Park and The Thicks, Wantisden",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4003,137421,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sudbourne Park Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4004,137459,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sutton and Hollesley Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4005,137513,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Titsal Wood, Shadingfield",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4006,137527,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Trundley and Wadgell's Wood, Great Thurlow",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4007,137601,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Weather and Horn Heaths, Eriswell",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4008,137546,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tunstall Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4009,140936,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nacton Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4010,137589,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wangford Warren and Carr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4011,140085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Vange & Fobbing Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4012,137654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Stow Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4013,140146,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Goldsands Road Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4014,140160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harwich Foreshore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4015,137664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weston Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4016,140179,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newney Green Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4017,140202,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Purfleet Chalk Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4018,140033,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Harling Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4019,140045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"London Road Industrial Estate, Brandon",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4020,140053,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilde Street Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4021,140099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Cliff, Burnham-On-Crouch",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4022,140131,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clacton Cliffs & Foreshore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4023,138569,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Buckanay Farm Pit, Alderton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4024,136426,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shelfanger Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4025,140215,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Gawdyhall Big Wood, Harleston",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4026,140224,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hainault Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4027,140229,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Horse Wood, Mileham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4028,136601,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cawston & Marsham Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4029,140295,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Buckenham Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4030,140767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Moat Farm Meadows, Otley",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4031,140768,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Gardens, Great Ashfield",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4032,140769,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westhall Wood and Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4033,136433,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Ducan's Marsh, Claxton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4034,136444,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aslacton Parish Land,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4035,136467,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shotesham Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4036,136481,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fritton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4037,136495,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forncett Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4038,136628,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Cressingham Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4039,136510,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Sweetbriar Road Meadows, Norwich",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4040,136539,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hardley Flood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4041,136650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kenninghall & Banham Fens With Quidenham Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4042,137365,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Richmond Farm Pit, Gedgrave",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4043,136659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Badley Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4044,136670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Islington Heronry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4045,137135,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Dillington Carr, Gressenhall",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4046,137380,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ramsholt Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4047,137161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gunton Park Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4048,137159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hilgay Heronry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4049,137399,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Crag Pit, Aldeburgh",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4050,137411,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Red House Farm Pit, Sudbourne",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4051,137166,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Happisburgh Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4052,137187,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Briton's Lane Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4053,137863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corton Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4054,137200,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beeston Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4055,137218,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Runton Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4056,137874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Sandy Lane Pit, Barham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4057,137875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flixton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4058,137234,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackborough End Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4059,137244,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pulham Market Big Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4060,137311,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Tindall Wood, Ditchingham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4061,137325,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Round Hill Pit, Aldeburgh",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4062,137341,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Valley Farm Pit, Sudbourne",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4063,137358,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aldeburgh Hall Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4064,137894,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Stoke Tunnel Cutting, Ipswich",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4065,137905,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Ferry Cliff, Sutton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4066,137932,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Middle Wood, Offton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4067,137936,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burgate Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4068,137960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Iken Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4069,138084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cockthorpe Common, Stiffkey",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4070,137981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ipswich Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4071,138078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knettishall Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4072,138164,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Riddles Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4073,140952,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Wensum,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4074,138450,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glemsford Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4075,140958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holland Haven Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4076,138729,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wretton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4077,138739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaxhall Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4078,138777,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bugg's Hole Fen, Thelnetham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4079,138774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cornmill Stream and Old River Lea,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4080,138821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Glen Chalk Caves, Bury St, Edmund'S",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4081,137198,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Norfolk Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4082,138852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Shallam Dyke Marshes, Thurne",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4083,138902,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bullock Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4084,136910,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Metfield Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4085,136916,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chippenhall Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4086,136945,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maldon Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4087,136951,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Bodney Camp,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4088,137118,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gooderstone Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4089,136965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Priory Meadows, Hickling",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4090,140787,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holland-On-Sea Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4091,140788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wivenhoe Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4092,136977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Coppice, Kelvedon Hatch",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4093,137022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Oakley Channel Deposit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4094,137584,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorley Flood Pound,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4095,137030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frithy and Chadacre Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4096,137043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Thrift Wood, Woodham Ferrers",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4097,137617,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hedenham Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4098,137047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Field Barn Heaths, Hilborough",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4099,137720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edgefield Little Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4100,137065,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hooks Well Meadows, Great Cressingham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4101,137090,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandbeach Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4102,140773,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Thurne Broads and Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4103,137740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Major Farm, Braiseworth",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4104,140789,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Setchey,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4105,137785,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Osyth Pit",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4106,140807,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pakenham Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4107,140617,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glandford (Letheringsett Road),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4108,140809,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Hallingbury Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4109,137588,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Gypsy Camp Meadows, Thrandeston",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4110,137635,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Geldeston Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4111,137642,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardleigh Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4112,140615,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bawsey,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4113,140616,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bilsey Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4114,137758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dereham Rush Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4115,137771,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roding Valley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4116,137788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beetley & Hoe Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4117,140912,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranwich Camp,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4118,137824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hall Farm Fen, Hemsby",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4119,137831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waldringfield Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4120,137844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glandford (Hurdle Lane),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4121,137867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thundersley Great Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4122,140862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Acre Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4123,140873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wortham Ling,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4124,140921,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bixley Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4125,140930,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mucking Flats and Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4126,140908,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hunstanton Park Esker,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4127,140934,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deben Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4128,169802,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dark Peak,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4129,140976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Potton Hall Fields, Westleton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4130,141034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Rosie Curston's Meadow, Mattishall",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4131,140887,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cotswold Water Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4132,140981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hangman's Wood & Deneholes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4133,140990,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Coston Fen, Runhall",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4134,140349,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shotesham-Woodton Hornbeam Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4135,137303,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bredon Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4136,141050,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Riverside House Meadow, Hasketon",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4137,141061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Churnet Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4138,146249,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rose End Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4139,141110,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penorchard & Spring Farm Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4140,141066,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Saltersford Lane Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4141,138787,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rixton Clay Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4142,138422,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Via Gellia Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4143,140800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Lugg Meanders,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4144,146280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"High Close Farm, Snitterfield",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4145,146248,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kedleston Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4146,137549,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sweat Mere and Crose Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4147,140094,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monk's Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4148,141026,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Brook Meadow, Darley Green",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4149,141064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jockey Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4150,146276,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wetley Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4151,146275,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Snailbeach Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4152,140879,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Severn At Montford,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4153,141117,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birches Barn Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4154,141133,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingsbury Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4155,141059,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sound Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4156,141067,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barton Bushes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4157,140288,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kemble Railway Cuttings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4158,138657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Griff Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4159,138293,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bickenhill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4160,141070,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaisdon Hall,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4161,141071,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sylvan House Barn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4162,136504,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Stocking Meadows, Oreton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4163,137037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bentley Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4164,136970,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longstone Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4165,136716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chaceley Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4166,138057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Puckham Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4167,138277,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ryton and Brandon Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4168,140741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Windmill Naps Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4169,138437,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hallwood Farm Marl Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4170,141021,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yellow House Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4171,138473,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boulton Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4172,138485,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hall Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4173,140015,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fens Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4174,140067,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belvide Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4175,136517,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Ginny Spring,Whitwell Wood",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4176,137376,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hornsleasow Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4177,140764,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ford Green Reedbed,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4178,141054,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moss Valley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4179,136642,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coombe Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4180,140766,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eckington Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4181,140258,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jackdaw Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4182,140280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oak Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4183,140290,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broom Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4184,140770,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Micklefield Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4185,140772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ailstone Old Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4186,138283,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Midger,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4187,141005,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cannock Extension Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4188,136627,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fox Hole Cave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4189,136635,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Green Farm Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4190,141022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baynhall Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4191,136643,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Wilderness & Vermin Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4192,140608,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Herald Way Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4193,140621,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gang Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4194,141019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Romsley Manor Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4195,141020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portway Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4196,141025,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oakhanger Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4197,137357,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Green Lane Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4198,140953,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Temeside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4199,140911,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berkswell Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4200,137392,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upton Ham,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4201,137401,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Merriman's Hill Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4202,140673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mercaston Marsh and Muggington Bottoms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4203,141063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gospel End Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4204,141027,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ensor's Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4205,138147,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northwick Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4206,139990,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barn Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4207,138161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Illey Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4208,140713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lydney Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4209,140715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roe Park Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4210,138915,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wollaston Ridge Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4211,140003,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frog End Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4212,140954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishon Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4213,140955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Queestmoor Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4214,183425,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Lugg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4215,136379,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dane-In-Shaw Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4216,137107,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Malthouse Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4217,137112,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pikes Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4218,140761,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeiron Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4219,137127,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longhope Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4220,140614,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oxlow Rake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4221,137719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yarley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4222,140613,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quebb Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4223,137811,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flaxmere Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4224,137832,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Puxton Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4225,140762,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tideslow Rake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4226,137781,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hoar Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4227,137787,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitacre Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4228,140962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cockleford Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4229,140663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Itchen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4230,140661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elmlea Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4231,170078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Derwent At Hathersage,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4232,140648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Millichope Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4233,140650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bonsall Leys,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4234,137472,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bar Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4235,140799,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ledbury Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4236,140874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fall Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4237,137483,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beechmill Wood and Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4238,140854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cooksholme Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4239,137025,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sweeney Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4240,137044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thatchers Wood and Westwood Covert,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4241,137046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trefonen Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4242,137057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4243,137075,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wolverton Wood and Alcaston Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4244,137087,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Betton Dingle and Gulley Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4245,137097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buildwas River Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4246,137126,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coundmoor Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4247,137240,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mersey Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4248,137287,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brewin's Canal Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4249,137315,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clowes Wood & New Fallings Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4250,137322,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edgbaston Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4251,137378,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tilehill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4252,137743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eaton Track,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4253,137397,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turner's Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4254,137473,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bagmere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4255,137424,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abbots Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4256,137448,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alderley Edge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4257,137444,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plumley Lime Beds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4258,137753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Farley Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4259,137763,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grinshill Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4260,137798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hughley Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4261,137809,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lincoln Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4262,137821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longville To Stanway Road Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4263,137982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brookhouse Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4264,138005,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Comber Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4265,138134,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hatch Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4266,138153,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hatton's Hey Wood, Whittle's Corner and Bank Rough",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4267,138030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Dee Cliffs, Farndon",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4268,138176,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holly Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4269,138204,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lindow Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4270,138074,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flood Brook Clough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4271,138564,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hope Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4272,138092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frodsham Railway and Road Cuttings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4273,138103,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gleads Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4274,138222,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Budworth Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4275,138229,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Norbury Meres,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4276,138246,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oak Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4277,138256,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peckforton Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4278,183428,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trewern Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4279,138561,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitwell Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4280,138581,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chermes Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4281,138601,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gannister Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4282,138628,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkham's Silica Sandpit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4283,138638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Masson Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4284,138649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bage Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4285,138736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pettypool Brook Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4286,138763,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quoisley Meres,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4287,138770,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raw Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4288,138802,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandbach Flashes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4289,138827,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tabley Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4290,138851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tatton Meres,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4291,138860,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Taylor's Rough & Wellmeadow Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4292,138881,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warburton's Wood and Well Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4293,138884,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wettenhall and Darnhall Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4294,138904,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wimboldsley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4295,139985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Witton Lime Beds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4296,137292,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wybunbury Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4297,137203,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alveley Grindstone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4298,140026,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allimore Green Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4299,140036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alvecote Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4300,140052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aqualate Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4301,140459,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haugh Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4302,140534,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burnt Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4303,140545,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rue Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4304,136234,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combes Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4305,136259,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cop Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4306,137136,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Toddbrook Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4307,137152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poole's Cavern and Grin Low Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4308,140079,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Firs & Cranberry Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4309,140091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blithfield Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4310,140102,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braken Hurst,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4311,140551,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caldon Low,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4312,140567,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cannock Chase,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4313,140780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calke Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4314,136817,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leigh Brook Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4315,140353,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aston Ingham Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4316,140365,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birch Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4317,137975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minchinhampton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4318,140375,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broadway Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4319,140581,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cauldon Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4320,137911,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chartley Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4321,136214,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Checkhill Bogs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4322,140401,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burrington Sections,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4323,140424,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coughton Wood and Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4324,140436,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Doward,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4325,140878,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clee Hill Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4326,141062,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dimmings Dale & The Ranger,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4327,136300,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forest Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4328,136382,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loynton Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4329,137992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nagshead,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4330,136340,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Goat Lodge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4331,140880,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buildwas Sand Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4332,136802,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodshuts Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4333,136370,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinver Edge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4334,136825,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eastnor Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4335,136423,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maer Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4336,138112,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mottey Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4337,137122,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combe Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4338,137141,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Copmill Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4339,136476,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stafford Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4340,136737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurcott and Podmore Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4341,136748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lea & Pagets Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4342,137149,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cross Hands Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4343,137999,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Severn Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4344,136766,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4345,146251,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Wye Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4346,136743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Friezeland Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4347,136828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swanpool Wood and Furnace Grove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4348,136924,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swineholes Wood and Blackheath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4349,136940,United Kingdom,Common Standards Monitoring,2013,For storage only,18,King's and Hargreaves Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4350,136948,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doxey and Tillington Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4351,137539,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haresfield Beacon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4352,136963,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Old River Dove, Marston On Dove",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4353,137545,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Mere, Mere",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4354,137563,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Risley Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4355,137674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingsbury Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4356,137678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knavenhill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4357,137708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Itchington & Ufton Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4358,136975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ufton Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4359,137024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bannam's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4360,137066,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brandon Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4361,138261,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doe Lea Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4362,138254,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blodwel Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4363,138263,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wellington Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4364,136761,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gamston & Eaton Woods & Roadside Verges,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4365,137108,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coleshill and Bannerly Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4366,137158,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Draycote Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4367,137170,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harbury Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4368,137466,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Illing's Trenches,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4369,137478,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waterswallow's Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4370,136329,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seal Sands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4371,137484,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strawberry Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4372,137494,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monkspath Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4373,137509,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Blythe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4374,137750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middleton Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4375,137754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Napton Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4376,137770,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oxhouse Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4377,137825,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ryton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4378,137828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shrewley Canal Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4379,137843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Snitterfield and Bearley Bushes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4380,183416,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berrington Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4381,138296,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lineover Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4382,138320,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Easter Park Farm Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4383,138330,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mortimer Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4384,138434,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wolston Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4385,137902,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stockton Railway Cutting and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4386,138441,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodlands Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4387,136334,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seaton Dunes and Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4388,137916,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whichford Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4389,137937,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wolford Wood and Old Covert,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4390,136352,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Gare & Coatham Sands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4391,135715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avondale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4392,138458,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilmcote Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4393,138464,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allscott Settling Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4394,138591,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Comley Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4395,138604,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cuckoopen Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4396,137948,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eymore Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4397,138482,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cole Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4398,138500,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bomere, Shomere and Betton Pools",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4399,138512,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brown Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4400,138516,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Catherton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4401,138714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harrington Hall Sand Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4402,138558,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clarepool Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4403,136378,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boulby Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4404,140088,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowness Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4405,138648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Granham's Moor Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4406,138703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hope Bowdler Outcrops,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4407,140293,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fenemere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4408,136837,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4409,140095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bath Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4410,183421,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanymynech & Llynclys Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4411,136896,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Long Meadow, Thorn",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4412,136908,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bittell Reservoirs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4413,140107,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Butterburn Flow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4414,140128,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buttermere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4415,140082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baswich Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4416,140983,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sherbourne Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4417,140352,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oss Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4418,140108,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caldon Dales,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4419,140877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Stour Flood Plain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4420,140372,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Earl's Hill & Habberley Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4421,170000,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monk Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4422,137062,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monkwood Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4423,140885,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill Houses & Crumpsbrook Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4424,140153,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pasturefields Salt Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4425,140247,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Mynd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4426,140272,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spy Wood & Aldress Dingle (England),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4427,140531,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teme Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4428,136758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Lime Works Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4429,140313,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Marton Pool, Chirbury",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4430,140326,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meadowtown Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4431,140337,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Onny River Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4432,137164,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Irchester Old Lodge Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4433,140377,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prees Branch Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4434,140984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holcroft Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4435,137180,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanton Pastures & Cuckoocliff Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4436,140420,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheinton Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4437,140443,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shelve Church Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4438,137395,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tick Wood and Benthall Edge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4439,137405,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Titterstone Clee,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4440,183418,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Mountains,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4441,137463,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wenlock Edge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4442,140340,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wyre Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4443,137562,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abney & Bretton Cloughs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4444,140453,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shelve Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4445,137649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradwell Dale and Bagshaw Cavern,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4446,140463,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shrawardine Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4447,140476,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Soudley Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4448,137801,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Stiperstones & The Hollies,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4449,140627,United Kingdom,Common Standards Monitoring,2013,For storage only,18,View Edge Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4450,137194,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rawbones Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4451,137908,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kempley Daffodil Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4452,183432,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dee Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4453,137214,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Pennsylvania Fields, Sedbury",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4454,137949,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Wilton Bluff, Ross-On-Wye",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4455,137927,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Moseley Common, Pembridge",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4456,137232,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bromsgrove Road Cutting, Tenterfields",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4457,137250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ketley Claypit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4458,137382,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Wrekin & The Ercall,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4459,137969,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monnington Scar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4460,137978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shorn Cliff and Caswell Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4461,137995,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Midsummer Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4462,138207,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cressbrook Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4463,138250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dove Valley and Biggin Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4464,138249,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4465,138295,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Goyt Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4466,138343,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hamps and Manifold Valleys,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4467,138645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coten End Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4468,138002,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loxley Church Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4469,138017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rough Hill & Wirehill Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4470,138107,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calton Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4471,138127,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brownend Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4472,138136,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castleton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4473,140143,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buttermere Fells,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4474,138156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Canyards Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4475,138169,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chrome and Parkhouse Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4476,138183,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clough Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4477,138199,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coombs Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4478,138353,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harewood Grange Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4479,138716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stretton-On-Fosse Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4480,138731,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ullenhall Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4481,140876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cropthorne New Inn Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4482,140664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Keswick Fitts,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4483,138754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rowlee Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4484,140875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upham Meadow and Summer Leasow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4485,140987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Huglith Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4486,139981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lathkill Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4487,140000,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portway Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4488,140027,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leek Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4489,140035,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Dale & Gratton Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4490,395269,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Dyfrdwy (River Dee),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4491,138795,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pennerley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4492,138817,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Derrington Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4493,138987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Eden - Cors Goch Trawsfynydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4494,140988,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Milford Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4495,140103,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brooks Head Grove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4496,140170,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parwich Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4497,140083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Lathkill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4498,140234,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stoney Middleton Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4499,136469,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ramsey's Burn Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4500,140119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dirtlow Rake and Pindale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4501,140155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jumble Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4502,140163,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Yarncliff Wood, Padley",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4503,139503,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Gwyrfai a Llyn Cwellyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4504,140124,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moss Carr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4505,138616,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Edlington Brickpit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4506,169638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Irfon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4507,140528,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hatherton Flush,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4508,136348,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wyns Tor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4509,136400,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baileycroft Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4510,140555,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunsdale Hollow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4511,136470,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crabtree Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4512,555560493,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Llugwy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4513,140574,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bee's Nest and Green Clay Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4514,140586,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moss Valley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4515,140593,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lee Farm Meadow, Tideswell",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4516,136221,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aston Grove & Withycombe Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4517,136363,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breadsall Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4518,136376,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cromford Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4519,140220,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hemingford Grey Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4520,136418,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carver's Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4521,136443,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cawdor Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4522,136463,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combs Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4523,183452,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Llyfni,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4524,136488,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duckmanton Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4525,136500,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moss Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4526,138200,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moccas Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4527,136587,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hulland Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4528,136597,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Matlock Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4529,136605,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morley Brick Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4530,136538,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hilton Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4531,136551,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hipley Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4532,136566,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollinhill and Markland Grips,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4533,136617,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ogston Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4534,169639,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Rheidol ger Capel Bangor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4535,136904,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calcutt Locks Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4536,136919,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Four Ashes Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4537,140888,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turvey's Piece,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4538,137083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ambergate and Ridgeway Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4539,137105,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shining Cliff Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4540,137123,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ticknall Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4541,136929,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swan Pool & The Swag,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4542,136978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cornbrook Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4543,135881,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Papa Stour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4544,140657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aileshurst Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4545,137177,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashmoor Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4546,137213,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birchend,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4547,137276,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradnor Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4548,137295,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brampton Bryan Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4549,169640,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Seiont,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4550,137191,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bank and Cother Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4551,138279,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berrington Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4552,169641,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Teifi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4553,137326,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broad Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4554,138918,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Devil's Spittleful,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4555,140727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doulton's Claypit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4556,138449,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clayhanger,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4557,169642,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Tywi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4558,183447,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Wysg (Isafonydd)/River Usk (Tributaries),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4559,138460,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harbury Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4560,138655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burrington Farm Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4561,140601,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gipsy Lane Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4562,138472,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorncliffe Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4563,136233,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grace Dieu and High Sharpley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4564,136249,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grantham Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4565,138925,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alexanderstone Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4566,138480,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chapel Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4567,138664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burrington Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4568,138677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bushy Hazels & Cwmma Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4569,138679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Byton & Combe Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4570,138489,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wildmoorway Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4571,138693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cage Brook Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4572,138621,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brotheridge Green Disused Railway Line,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4573,138634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brotheridge Green Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4574,169677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Beech Cottage, Waterwynch",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4575,138720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Capler Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4576,138722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castlemorton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4577,138741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chanstone Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4578,138788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Church Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4579,138806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hay Wood and Tinkers' Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4580,138813,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Common Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4581,140238,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Histon Road,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4582,138758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cherry Hill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4583,140265,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Metallic Tileries, Parkhouse",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4584,138838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coombhill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4585,138869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crews Hill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4586,140281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Campden Tunnel Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4587,169760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Close House Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4588,138875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crumpton Hill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4589,140302,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stony Furlong Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4590,140327,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trench Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4591,140412,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dinmore Hill Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4592,140438,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Downton Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4593,141078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kielder Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4594,139125,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Craig-iar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4595,138885,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dagnell End Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4596,140458,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duke Of York Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4597,140467,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dumbleton Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4598,139128,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Cwmgwared,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4599,140255,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hulme Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4600,136252,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hartlebury Common and Hillditch Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4601,136288,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hewell Park Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4602,140470,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Earl's Croome Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4603,140496,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elton Lane Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4604,136297,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill Hole Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4605,136316,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hopwood Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4606,136327,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ipsley Alders Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4607,137854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Enthorpe Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4608,140512,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fishpool Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4609,140529,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flintsham & Titley Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4610,136606,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Devil's Hole, Morville",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4611,140535,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foster's Green Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4612,140552,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grafton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4613,140576,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grimley Brick Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4614,140778,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Madams Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4615,140886,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Dane,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4616,140779,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Brow Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4617,140604,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Hall Farm Quarry and Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4618,136210,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Halesend Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4619,136236,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hanley Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4620,136844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Byefields Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4621,140537,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradwell Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4622,136870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Littlemarsh Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4623,138676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rostherne Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4624,136942,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mains Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4625,136960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Malvern Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4626,136983,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mayhill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4627,137036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mocktree Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4628,137088,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mutlow's Orchard,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4629,137361,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dean Hall Coach House & Cellar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4630,140624,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Windmill Tump,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4631,137394,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beckford Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4632,137726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rockhall Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4633,170061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Racecourse Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4634,137526,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Inn Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4635,137535,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oakley Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4636,138196,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muxton Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4637,137541,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Olchon Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4638,137806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Salt Meadow, Earl's Common",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4639,137575,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Osebury Rock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4640,137793,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rye Street Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4641,169819,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Polden Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4642,137595,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4643,137607,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penny Hill Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4644,138311,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scutterdine Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4645,169734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrick Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4646,170175,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trench Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4647,137634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Perton Roadside Section and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4648,137647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pipershill Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4649,137658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poolhay Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4650,138362,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shrawley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4651,137663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rabbit Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4652,137701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ridgeway Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4653,138536,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wayne Herbert Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4654,138152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyrley Canal Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4655,138155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Claverley Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4656,138189,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hillend Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4657,138573,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westwood Great Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4658,138580,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilden Marsh and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4659,139129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Dinorwig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4660,138334,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sharpnage Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4661,138382,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sling Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4662,138423,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stourvale Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4663,138484,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tunnel Hill Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4664,138494,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Welson Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4665,138503,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upton Warren Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4666,139130,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Dolgarrog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4667,138597,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Windmill Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4668,138605,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Orchid Bank, Winslow Mill",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4669,136304,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newport Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4670,136330,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salmonsbury Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4671,140739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prees Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4672,136350,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prescott Corner,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4673,139151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Coed Maes-mawr, Coed Esgairneiriau a Cheunant Caecenau",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4674,136515,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodbury Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4675,136542,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wormbridge Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4676,136651,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bourton Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4677,136563,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Wylde Moor, Feckenham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4678,136675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boxwell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4679,136684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brassey Reserve and Windrush Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4680,136704,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bull Cross, The Frith and Juniper Hill",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4681,136750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleeve Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4682,136579,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Box Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4683,136763,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Lump, Priestweston",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4684,193721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Parkmill a Cwm Llethrid/Parkmill Woodlands and Llethrid Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4685,136608,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashleworth Ham,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4686,136619,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Badgeworth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4687,138857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Flits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4688,140765,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gentleshaw Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4689,140047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cotswold Commons and Beechwoods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4690,137236,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crickley Hill and Barrow Wake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4691,136641,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wellacre Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4692,137261,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Daneway Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4693,136772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coaley Wood Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4694,136790,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Collinpark Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4695,136797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coombe Hill Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4696,137273,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dingle Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4697,139187,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Coedydd y Beili, Malgwyn a Cribin",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4698,140763,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Big Hyde Rough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4699,140884,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hope Valley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4700,141160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Wye Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4701,137294,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edgehills Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4702,137299,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foss Cross Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4703,137308,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frampton Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4704,137338,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garden Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4705,137475,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingscote and Horsley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4706,137359,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hampen Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4707,137372,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hobb's Quarry, Longhope",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4708,140194,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wren's Nest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4709,137422,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Hudnalls,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4710,138893,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Racecourse Farm Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4711,137409,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hornsleasow Roughs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4712,137477,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Land Grove Quarry, Mitcheldean",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4713,139188,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd y Garn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4714,137438,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Huntsman's Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4715,137504,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lark Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4716,137516,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leckhampton Hill and Charlton Kings Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4717,138036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Innsworth Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4718,137460,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Juniper Hill, Edgeworth",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4719,137521,United Kingdom,Common Standards Monitoring,2013,For storage only,18,May Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4720,137810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Park Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4721,137823,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Puddlebrook Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4722,136251,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Highbury Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4723,183427,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Severn Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4724,138014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nibley Knoll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4725,138024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Notgrove Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4726,139193,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Comin Silian,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4727,139236,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Ddu-Wharley Point Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4728,138056,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poor's Allotment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4729,138108,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Robin's Wood Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4730,138122,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rodborough Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4731,140049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whelford Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4732,138087,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Purton Passage,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4733,140068,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dymock Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4734,395279,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Abrethin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4735,138135,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harford Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4736,138163,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edge Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4737,140997,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scully Grove Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4738,138192,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Selsley Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4739,138201,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Severn Ham, Tewkesbury",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4740,139199,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Barfog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4741,138216,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Speech House Oaks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4742,138239,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stenders Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4743,138252,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stinchcombe Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4744,138282,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swift's Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4745,138289,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Veizey's Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4746,136278,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Bowden Borrowpit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4747,138588,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oakenhill Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4748,140070,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thrapston Station Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4749,138600,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Old River Severn, Upper Lode",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4750,138620,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boon's Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4751,136867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lockington Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4752,139208,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Erddreiniog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4753,139239,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Pont Rhondda,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4754,138613,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Danes Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4755,140187,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Enderby Warren Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4756,138647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Guy's Cliffe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4757,138766,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wainlode Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4758,138789,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walmore Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4759,170035,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4760,138800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winson Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4761,138812,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodchester Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4762,137167,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brampton Racecourse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4763,138824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wood Green Quarry & Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4764,138833,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wotton Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4765,138856,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Wye Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4766,138867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doley Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4767,138907,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Knap House Quarry, Birdlip",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4768,137789,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Perry Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4769,137797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portholme,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4770,139972,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Astridge Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4771,137577,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hainton Sheepwalk,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4772,139991,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Soudley Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4773,140022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bigsweir Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4774,137157,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plumpton Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4775,140030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rake Dike,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4776,140041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bushley Muzzard, Brimpsfield",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4777,137176,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashby Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4778,137820,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roman Road,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4779,137827,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Neot's Common",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4780,140090,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hucclecote Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4781,140114,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duchy Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4782,140144,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colehill Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4783,137270,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hertford Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4784,137328,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knebworth Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4785,140193,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4786,140410,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meezy Hurst,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4787,136432,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morton Pool and Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4788,140439,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Daw End Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4789,140456,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hay Head Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4790,140822,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peckriding Top Lot,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4791,140479,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burcot Lane Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4792,138462,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tiddesley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4793,136653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cottonshope Head Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4794,140596,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brownheath Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4795,136216,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bush Wood and High Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4796,136230,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chorley Covert and Deserts Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4797,174667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foel Gron a Thir Comin Mynytho,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4798,136245,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clunton Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4799,136260,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Sychtyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4800,137340,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Heath Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4801,136275,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crofts Mill Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4802,136298,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woolston Eyes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4803,136487,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Fiddle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4804,136349,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hencott Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4805,136501,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ruewood Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4806,169842,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foel Gron Stream Sections,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4807,136354,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hodnet Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4808,136381,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lin Can Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4809,136410,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lydebrook Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4810,136413,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Montgomery Canal, Aston Locks - Keeper's Bridge",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4811,193737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orton Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4812,169848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Freshwater East Cliffs to Skrinkle Haven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4813,136453,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Old River Bed, Shrewsbury",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4814,136475,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flat Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4815,136863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whittlesford - Thriplow Hummocky Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4816,138316,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bagthorpe Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4817,141158,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turnford & Cheshunt Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4818,169676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barrington Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4819,138124,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Badby Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4820,138385,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mavis Enderby Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4821,136578,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salcey Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4822,140973,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burley and Rushpit Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4823,136343,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Stukeley Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4824,136594,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ouse Washes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4825,136611,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Over and Lawn Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4826,137091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belshaw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4827,136362,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holland Hall (Melbourn) Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4828,136414,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sherrardspark Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4829,136435,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashton's Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4830,136452,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wing Water Treatment Works,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4831,136547,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alpine Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4832,136558,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashridge Commons and Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4833,136567,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kings and Bakers Woods and Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4834,136638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sawbridgeworth Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4835,136656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashwell Springs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4836,136679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benington High Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4837,136732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bricket Wood Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4838,136746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wormley-Hoddesdonpark Wood South,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4839,140974,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Mother Drain, Misterton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4840,136796,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croxley Common Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4841,136826,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northaw Great Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4842,137814,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swaby Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4843,169850,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frondeg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4844,136838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blagrove Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4845,137879,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wormley-Hoddesdonpark Woods North,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4846,141029,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newmarket Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4847,137895,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grafham Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4848,137906,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Paxton Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4849,138018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wain Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4850,137124,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greetham Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4851,137142,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blisworth Rectory Farm Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4852,137151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bozeat Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4853,138028,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Water End Swallow Holes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4854,137178,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tolethorpe Road Verges,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4855,138041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moor Hall Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4856,138060,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whippendell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4857,139357,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gaer House Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4858,139358,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Gaer Wood, Llangoven",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4859,137258,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tring Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4860,140740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oddy Hill and Tring Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4861,136257,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Causey Bank Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4862,137391,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Patmore Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4863,137414,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plashes Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4864,137470,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redwell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4865,138069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aldwincle Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4866,136450,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hell Kettles,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4867,137476,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roughdown Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4868,137536,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sarratt Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4869,139359,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gallt Llanerch - Coed Gelli-deg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4870,137558,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tewinbury,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4871,137555,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Therfield Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4872,138658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalby Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4873,138670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fulsby Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4874,139362,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Garn Wood, Kilkiffeth Wood & Dan-Deri-Cwm Felin-Ban",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4875,137845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Hormead Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4876,137839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loughborough Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4877,137579,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Scrubbs Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4878,137858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swanholme Lakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4879,137871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranford St John,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4880,138102,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashton Wold,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4881,138143,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Badsaddle, Withmale Park and Bush Walk Woods",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4882,137746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Overhall Grove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4883,136856,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinoulton Marsh and Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4884,138159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birch Spinney and Mawsley Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4885,138178,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Collyweston Great Wood and Easton Hornstocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4886,138206,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Collyweston Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4887,138215,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Collyweston Slate Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4888,138684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hundleby Clay Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4889,136875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkby Grives,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4890,136901,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laxton Sykes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4891,138233,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coombe Hill Hollow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4892,138240,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cowthick Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4893,138322,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Everdon Stubbs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4894,138699,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winceby Rectory Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4895,136902,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linby Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4896,138336,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Geddington Chase,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4897,138617,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carlton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4898,138641,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upware Bridge Pit North,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4899,169928,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Kirton Wood, Lincolnshire",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4900,139447,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harper's Grove-Lord's Grove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4901,138853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mantles Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4902,138859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pipewell Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4903,138871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitsford Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4904,140441,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Withens Clough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4905,138912,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ramsden Corner Plantation,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4906,137362,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barnack Hills & Holes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4907,140451,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Anston Stones Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4908,140012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Short Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4909,139442,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hayes Point to Bendrick Rock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4910,139563,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mochdre Dingles,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4911,139564,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moel Hebog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4912,140055,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stoke & Bowd Lane Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4913,139565,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moel Hiraddug a Bryn Gop,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4914,137386,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castor Hanglands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4915,137410,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holme Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4916,137439,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monk's Wood and The Odd Quarter,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4917,137449,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upwood Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4918,137457,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodwalton Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4919,137950,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thriplow Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4920,140177,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alder Carr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4921,140430,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Misterton Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4922,140656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Silverines Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4923,139571,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Montgomery Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4924,140444,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bardon Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4925,137988,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Traveller's Rest Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4926,138016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upware North Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4927,140465,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benniworth Haven Cuttings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4928,140477,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tickencote Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4929,140486,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maulden Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4930,140498,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maulden Church Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4931,140991,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scrooby Top Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4932,140514,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunstable and Whipsnade Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4933,136215,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aversley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4934,136231,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balsham Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4935,138400,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingerby Beck Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4936,136247,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barrington Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4937,136262,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bassenhally Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4938,136274,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bedford Purlieus,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4939,146596,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northiam,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4940,136287,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berry Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4941,136345,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brackland Rough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4942,136358,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brampton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4943,139591,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Parys,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4944,136301,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bonemills Hollow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4945,136872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Biddenham Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4946,139592,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Penarfynnydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4947,139593,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Preseli,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4948,136372,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buff Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4949,136431,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castor Flood Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4950,138411,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cross Drain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4951,136461,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cherry Hinton Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4952,170009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Tir y Cwmwd a'r Glannau at Garreg yr Imbill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4953,136507,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dernford Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4954,136520,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Devil's Dyke,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4955,136528,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eversden Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4956,136543,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eye Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4957,138505,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upware South Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4958,138519,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warboy's and Wistow Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4959,555545409,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Y Fflint / Flint Mountain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4960,139650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pencreigiau'r Llan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4961,136818,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tilwick Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4962,136839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elsworth Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4963,140702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bugbrooke Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4964,136999,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fleam Dyke,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4965,139645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pengelli Forest and Pant-teg Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4966,136850,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Paxton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4967,139646,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penhow Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4968,139656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penrhynoedd Llangadwaladr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4969,136894,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clipstone Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4970,137436,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orston Plaster Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4971,139693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rheidol Shingles and Backwaters,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4972,137008,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fowlmere Watercress Beds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4973,137486,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redgate Woods and Mansey Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4974,137493,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Idle Washlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4975,137514,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roe Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4976,137026,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fulbourn Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4977,137041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Furze Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4978,137623,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Treswell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4979,137631,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Welbeck Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4980,137648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wellow Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4981,139701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhinog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4982,170210,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waterwynch Bay to Saundersfoot Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4983,137055,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gamlingay Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4984,136736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glebe Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4985,137073,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hardwick Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4986,137139,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hildersham Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4987,137121,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hayley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4988,137675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilford Claypits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4989,137185,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"L-Moor, Shepreth",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4990,137197,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Out and Plunder Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4991,137237,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Madingley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4992,137553,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gosling's Corner,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4993,137556,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allington Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4994,137423,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longhoughton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4995,137596,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Math and Elsea Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4996,138585,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitewater Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4997,137610,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scotton Beck Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4998,137757,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Papworth Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -4999,138602,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wicken Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5000,138622,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilbraham Fens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5001,137622,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swinstead Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5002,137632,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Debdale Meadow, Muston",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5003,137644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oughtonhead Lane,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5004,137724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nene Washes (Whittlesey),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5005,137846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sawston Hall Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5006,137928,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sutton Heath and Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5007,136513,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middleton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5008,137873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Soham Wet Horse Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5009,137897,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stow-Cum-Quy Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5010,139145,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5011,137946,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ten Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5012,136519,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middridge Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5013,137976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thriplow Peat Holes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5014,139146,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Mawr - Blaen-Car,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5015,138351,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sherwood Forest Golf Course,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5016,138388,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Houghton Regis Marl Lakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5017,138652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodwalton Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5018,138401,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hanger Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5019,137014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Back Bay to Carghidown,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5020,138531,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waresley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5021,136553,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pow Hill Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5022,138538,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weaveley and Sand Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5023,136568,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Moss Lead Vein,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5024,134979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Back Burn Wood and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5025,138671,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warboys Claypit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5026,138704,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Attenborough Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5027,138712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barnstone Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5028,138730,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barrow Hills Sandpit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5029,135514,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Back Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5030,135055,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bad na Gallaig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5031,136042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Badanloch Bogs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5032,138738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bevercotes Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5033,138744,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birklands and Bilhaugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5034,136525,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porter's Lodge Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5035,140630,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blow's Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5036,135979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bagh Tharsgabhaig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5037,135317,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cobbinshaw Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5038,138775,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bogs Farm Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5039,140610,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yelden Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5040,140632,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rye Meads,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5041,141154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Stony Cut, Cold Hesledon",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5042,138782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bulwell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5043,138794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Hill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5044,169891,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harwood Dale Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5045,135773,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fidlar Geo to Watsness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5046,140633,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mill Crook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5047,140634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Delph Bridge Drain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5048,140637,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Adventurers' Land,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5049,141092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tudor Cottage Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5050,140639,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shippea Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5051,136703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clarborough Tunnel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5052,136707,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clumber Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5053,136720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dyscarr Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5054,136739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eakring and Maplebeck Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5055,141102,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rookery Cottage Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5056,140641,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strawberry Hill Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5057,136776,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gotham Hill Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5058,136782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hills and Holes and Sookholme Brook, Warsop",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5059,136821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holme Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5060,139836,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fife Ness Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5061,136847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kimberley Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5062,138487,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kiplingcotes Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5063,136915,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lord Stubbins Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5064,140092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hoplands Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5065,136936,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mather Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5066,136944,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mattersey Hill Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5067,136956,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Misson Line Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5068,136972,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newhall Reservoir Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5069,140168,United Kingdom,Common Standards Monitoring,2013,For storage only,18,King Lud's Entrenchments and The Drift,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5070,169989,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Melbourne and Thornton Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5071,139363,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garth Bank Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5072,136985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Normanton Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5073,170230,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilwell Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5074,140492,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gibraltar Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5075,139364,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garth Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5076,140681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Totternhoe Chalk Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5077,137704,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5078,136536,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleatham Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5079,140683,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sundon Chalk Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5080,140684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dimminsdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5081,140686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chesterfield Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5082,137440,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pleasley Vale Railway,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5083,137451,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rainworth Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5084,137453,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rainworth Lakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5085,137538,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rushcliffe Golf Course,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5086,136980,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkham Park & Riverside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5087,137550,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seller's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5088,139365,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garth-eryr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5089,137566,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sledder Wood Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5090,137586,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teversal Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5091,193723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Porthaethwy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5092,137611,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thoresby Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5093,137713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ancaster Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5094,140825,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Cherwell At Trafford House,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5095,140849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aldbury Nowers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5096,140826,United Kingdom,Common Standards Monitoring,2013,For storage only,18,King's Cliffe Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5097,138271,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Candlesby Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5098,138281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Bytham Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5099,139724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Rhoscolyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5100,140872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Robbinetts,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5101,138312,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Claxby Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5102,140910,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seaton Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5103,138209,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baston and Thurlby Fens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5104,138242,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bratoft Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5105,138259,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calceby Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5106,138333,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cliff House,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5107,138372,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dole Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5108,138396,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunsby Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5109,138964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaen y Wergloedd Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5110,138341,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Copper Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5111,138354,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deeping Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5112,136898,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Main Quarry, Mountsorrel",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5113,138429,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greetwell Hollow Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5114,138454,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grimsthorpe Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5115,136984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Luffenham Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5116,138491,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Hermitage,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5117,141007,United Kingdom,Common Standards Monitoring,2013,For storage only,18,One Barrow Plantation,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5118,137040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Owston Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5119,140040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"High Barn, Oxcombe",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5120,140064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holywell Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5121,137051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pasture and Asplin Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5122,169858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Tonfanau i Friog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5123,139375,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Ynys Gybi: Holy Island Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5124,140056,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Dyke,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5125,140080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Honington Camp,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5126,169864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glyn Cywarch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5127,140127,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jenkins Carr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5128,140150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keal Carr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5129,169927,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkby Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5130,141103,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stock Wood Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5131,169929,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Kirton Wood, Notts,",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5132,140198,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langtoft Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5133,140254,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moor Closes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5134,140227,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linwood Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5135,140236,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Metheringham Heath Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5136,140275,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moor Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5137,137671,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stonehead Beck ('Gill Beck'),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5138,140287,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nettleton Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5139,140308,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New England Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5140,136474,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scotton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5141,136921,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Durtrees Burn Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5142,136421,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Potterhanworth Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5143,138114,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Saltfleetby - Theddlethorpe Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5144,136454,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sapperton & Pickworth Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5145,136626,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swallow Wold,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5146,136648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tattershall Carrs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5147,139190,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glynllifon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5148,136484,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scotton and Laughton Forest Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5149,136503,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sea Bank Clay Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5150,136529,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skendleby Psalter Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5151,137148,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheepy Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5152,136541,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sotby Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5153,136604,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Surfleet Lows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5154,139388,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Golden Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5155,136129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Beasdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5156,136660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tattershall Old Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5157,137633,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sproxton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5158,137643,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanford Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5159,136669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tetford Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5160,136682,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tetney Blow Wells,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5161,136694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Troy Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5162,137884,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wickenby Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5163,137898,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Willoughby Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5164,137919,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilsford Heath Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5165,137904,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Willoughby Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5166,193724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaith Brics Buttington/Buttington Brick Works,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5167,137930,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilsford & Rauceby Warrens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5168,139396,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Bryn (Bryn Pasture),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5169,137951,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodhall Spa Golf Course,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5170,138804,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cave's Inn Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5171,138814,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Charnwood Lodge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5172,137961,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodnook Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5173,137985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Downfield Pit, Westmill",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5174,138008,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hillcollins Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5175,138020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westwood Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5176,138865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chater Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5177,138891,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cliffe Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5178,138896,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clipsham Old Quarry and Pickworth Great Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5179,138026,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kensworth Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5180,138044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nine Acres Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5181,138061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Double Arches Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5182,135842,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Callater,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5183,138076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gog Magog Golf Course,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5184,137659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stonesby Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5185,138086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pulloxhill Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5186,170161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Wash,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5187,138106,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allexton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5188,138133,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bardon Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5189,138150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barrow Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5190,138168,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Beacon Hill, Hangingstone and Out Woods",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5191,135790,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Ey Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5192,135010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Falloch Pinewood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5193,138175,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benscliffe Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5194,138680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackbrook Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5195,138702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bloody Oaks Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5196,140865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hale Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5197,138706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Botcheston Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5198,138724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradgate Park and Cropston Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5199,138732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breedon Cloud Wood and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5200,139998,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cribb's Lodge Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5201,138737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breedon Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5202,138743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Briery Wood Heronry, Belvoir",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5203,138783,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buddon Wood and Swithland Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5204,138446,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salt Lake Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5205,138793,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burbage Wood and Aston Firs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5206,137731,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brada Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5207,138920,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coalville Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5208,139974,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cotes Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5209,140866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loughrigg Fell Flushes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5210,135361,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Falloch Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5211,140006,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croft and Huncote Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5212,140481,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"East Wood, Great Casterton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5213,139013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Cwm-bach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5214,140018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croft Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5215,140037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croxton Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5216,140524,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eye Brook Valley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5217,138681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Honley Station Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5218,140043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Donington Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5219,140550,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Catworth Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5220,135381,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Fender Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5221,135267,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Garry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5222,140506,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Empingham Marshy Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5223,140515,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eye Brook Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5224,140560,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alder Wood and Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5225,140579,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frisby Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5226,135379,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Lochay Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5227,135721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mull of Galloway,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5228,136290,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Groby Pool and Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5229,136318,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harby Hill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5230,136326,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holwell Mouth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5231,135484,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Lyon Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5232,136169,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Munlochy Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5233,136374,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ketton Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5234,136385,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilby - Foxton Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5235,136397,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Launde Big Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5236,136409,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leighfield Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5237,136880,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lount Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5238,140704,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blagill Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5239,139938,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenacardoch Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5240,136884,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Luffenham Heath Golf Course,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5241,135262,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Papana Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5242,138643,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muston Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5243,136925,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Narborough Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5244,137219,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boynton Willow Garth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5245,136931,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5246,136964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newhurst Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5247,136969,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newton Burgoland Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5248,137496,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hawthorn Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5249,136996,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oakley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5250,137072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prior's Coppice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5251,137080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Eye,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5252,137111,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rutland Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5253,137506,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yoden Village Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5254,137147,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shacklewell Hollow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5255,137532,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pocklington Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5256,135457,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalcroy Promontory,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5257,137598,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheet Hedges Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5258,137615,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shepshed Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5259,137662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Terrace Hills Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5260,137689,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tilton Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5261,169782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cowbit Wash,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5262,137702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Twenty Acre Piece,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5263,137711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ulverscroft Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5264,137722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wymondham Rough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5265,137768,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southorpe Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5266,137734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Sulehay Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5267,137761,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chettisham Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5268,135885,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalnabo Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5269,137791,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bosworth Mill Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5270,137840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southorpe Roughs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5271,137855,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Wilbraham Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5272,137866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Houghton Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5273,137795,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wollaston Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5274,137829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Snailwell Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5275,137872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brampton Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5276,140210,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cam Washes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5277,140260,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ryhall Pasture and Little Warren Verges,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5278,140985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knarsdale Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5279,140271,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sudborough Green Lodge Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5280,140292,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whittlewood Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5281,140435,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spalford Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5282,137790,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barton Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5283,141028,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dogsthorpe Star Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5284,140306,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southfield Farm Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5285,140325,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yardley Chase,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5286,140346,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dungee Corner Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5287,136580,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cooper's Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5288,140363,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Syresham Marshy Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5289,140388,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Ise and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5290,136631,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flitwick Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5291,136639,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Galley and Warden Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5292,140397,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bulwick Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5293,136686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Kings Wood and Glebe Meadows, Houghton Conquest",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5294,138412,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knocking Hoe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5295,136722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marston Thrift,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5296,136584,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deacon Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5297,136754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maulden Wood and Pennyfather's Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5298,136967,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Moorsley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5299,136607,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fancott Woods and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5300,136615,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Felmersham Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5301,136801,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Odell Great Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5302,136829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Potton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5303,137430,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wakerley Spinney,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5304,137443,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weldon Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5305,140309,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tring Reservoirs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5306,137582,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Freeholders Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5307,136858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandy Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5308,137300,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Smithcombe, Sharpenhoe and Sundon Hills",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5309,137309,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southill Lake and Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5310,137320,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stevington Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5311,140387,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"West Farm Meadow, Boldon",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5312,137337,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swineshead Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5313,141032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hunder Beck Juniper,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5314,135966,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalroy and Clava Landforms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5315,137355,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Totternhoe Knolls,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5316,137374,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wavendon Heath Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5317,137420,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wadenhoe Marsh and Achurch Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5318,137565,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teversal To Pleasley Railway,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5319,137570,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingston Wood and Outliers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5320,137602,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Casterton Road Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5321,140943,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Moor Mill Quarry, West",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5322,138080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Banhaw, Spring and Blackthorn's Woods",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5323,140407,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Catton Lea Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5324,138096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doddington Clay Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5325,138109,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Welton-Le-Wold Old Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5326,138119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nares Gladley Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5327,138158,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Titchmarsh Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5328,135650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sanda Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5329,135887,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sands of Forvie and Ythan Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5330,138139,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frogmore Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5331,140411,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Knock Shield Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5332,135984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandside Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5333,169742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ceann a' Mhara to Loch a' Phuill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5334,169912,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Clyde,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5335,138185,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dropshort Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5336,138900,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Finedon Top Lodge Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5337,169934,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lairg and Strath Brora Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5338,138198,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tebworth Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5339,138220,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hardwick Lodge Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5340,140882,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Helmdon Disused Railway,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5341,140023,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colwick Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5342,138270,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roade Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5343,169930,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knapdale Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5344,138303,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bucknell Wood Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5345,136979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Haining Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5346,138342,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Twywell Gullet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5347,140051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caldecote Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5348,138357,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Wood and Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5349,140066,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wansford Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5350,138916,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glapthorn Cow Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5351,140100,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orwell Clunch Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5352,140118,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southorpe Paddock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5353,139989,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tortoiseshell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5354,139993,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muckton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5355,140135,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swithland Wood and The Brand,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5356,137079,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tynemouth To Seaton Sluice,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5357,140087,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Abbot's and Lound Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5358,140138,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kendall's Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5359,170202,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Valla Field,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5360,140161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creswell Crags,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5361,140176,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dovedale Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5362,140207,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Godmanchester Eastside Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5363,136918,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Derwent Gorge & Horsleyhope Ravine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5364,170117,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shaw Beck Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5365,146281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thrislington Plantation,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5366,137442,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haugh and Gundale Slacks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5367,137132,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lovely Seat - Stainton Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5368,135570,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Threave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5369,138477,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fallowfield Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5370,136865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Golden Hill Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5371,138764,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newbridge Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5372,140815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mill and Whiskershiel Burns,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5373,140753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Snaper Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5374,140863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newby Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5375,136365,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cow Cliff Pasture and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5376,135912,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Whiteness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5377,140423,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peckriding Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5378,141033,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tuthill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5379,140982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fishburn Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5380,136113,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southern Parphe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5381,140447,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Humbleton Hill and The Trows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5382,140448,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Ridge Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5383,136312,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roseberry Topping,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5384,141009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hesley Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5385,140588,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mallerstang-Swaledale Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5386,140597,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whernside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5387,141010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bellerby Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5388,136239,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cowpen Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5389,136253,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hart Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5390,136282,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pinkney and Gerrick Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5391,136404,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langbaurgh Ridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5392,136406,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redcar Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5393,136425,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shibdon Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5394,135891,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spey Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5395,136468,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Claxheugh Rock and Ford Limestone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5396,137899,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castlebeck and Scar Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5397,136803,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Deepdale Meadows, Langstrothdale",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5398,136812,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Green Lane Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5399,170143,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strath an Loin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5400,136491,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fulwell and Carley Hill Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5401,136767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gilleylaw Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5402,136777,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Angram Bottoms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5403,136935,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gosforth Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5404,136824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barn Hill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5405,136840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishop Wilton Poor Land,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5406,136849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spiker's Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5407,136955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Herrington Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5408,136994,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Humbledon Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5409,137006,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hylton Castle Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5410,137020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Joe's Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5411,137130,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hastings Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5412,137034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prestwick Carr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5413,137067,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tunstall Hills and Ryhope Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5414,137094,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wear River Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5415,137099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harton Down Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5416,136149,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thrumster Mill Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5417,137143,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ryton Willows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5418,137199,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beckhead Plantation,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5419,137150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thornley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5420,140937,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fulford Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5421,137179,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allerthorpe Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5422,135385,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Selkirk Racecourse Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5423,137205,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishop Wilton Deep Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5424,135068,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sgavoch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5425,137564,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nabgate,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5426,137591,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keasden Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5427,137676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breighton Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5428,169906,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horbling Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5429,136096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tong Saltings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5430,137574,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5431,137686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broughton Far Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5432,137697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryan Mills Field,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5433,137739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crowle Borrow Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5434,137745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Derwent Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5435,137780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fordon Chalk Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5436,169893,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hatfield Chase Ditches,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5437,137709,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burton Bushes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5438,137714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cliff Farm Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5439,137794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Everthorpe Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5440,137799,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eastoft Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5441,135973,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Torboll Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5442,137721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cottam Well Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5443,135777,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tore of Troup,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5444,137861,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Epworth Turbary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5445,137878,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haxey Grange Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5446,138301,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boldon Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5447,138329,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low Hauxley Shore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5448,139876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shochie Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5449,137892,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haxey Turbary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5450,137931,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hoddy Cows Spring,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5451,137947,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hornsea Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5452,135934,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Torridon Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5453,138340,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hawthorn Cottage Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5454,138359,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cresswell and Newbiggin Shores,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5455,141013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lampert Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5456,138467,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kelsey Hill Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5457,138490,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirmington Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5458,138513,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Lagoons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5459,138517,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leven Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5460,138535,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Manton Stone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5461,138753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Ferriby Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5462,138551,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Manton and Twigmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5463,138584,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Melton Bottom Chalk Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5464,138599,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Messingham Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5465,138618,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Millington Wood and Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5466,138762,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dimlington Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5467,135521,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Treshnish Isles,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5468,138631,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hisehope Burn Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5469,138678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Risby Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5470,138701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Derwent,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5471,138721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Hull Headwaters,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5472,138654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newton Mask,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5473,138748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rush Furlong,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5474,138665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pulfin Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5475,138685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rifle Butts Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5476,140418,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barelees Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5477,140123,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"River Ure Bank, Ripon Parks",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5478,140137,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muker Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5479,140158,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barrow Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5480,140167,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cliff Ridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5481,140181,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castlethorpe Tufas,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5482,140188,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colour Heugh and Bowden Doors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5483,140432,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bavington Crags,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5484,138579,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tadcaster Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5485,140203,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradford Kames,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5486,140277,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wrawby Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5487,140317,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Horse Field, Gilling",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5488,140469,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Billsmoor Park and Grasslees Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5489,140499,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brunton Bank Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5490,140519,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Campfield Kettle Hole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5491,140530,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Point To Cullernose Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5492,140986,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aules Hill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5493,170156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Cheviot,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5494,140563,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coquet Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5495,141011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newton-Le-Willows Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5496,140960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Naburn Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5497,140667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hambleton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5498,136535,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Carrs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5499,140668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frog Wood Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5500,140961,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenhow Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5501,136665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cresswell Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5502,136706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Farne Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5503,136729,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ford Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5504,136774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenleighton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5505,136834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harbottle Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5506,136852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hareshaw Dene,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5507,136860,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hesleyside Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5508,140821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low Redford Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5509,136877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holburn Lake and Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5510,136903,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holystone Burn Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5511,136912,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holywell Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5512,136943,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kielderhead and Emblehope Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5513,140823,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fallowlees Flush,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5514,137224,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorneyburn Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5515,140977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pilmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5516,140711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hotham Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5517,137271,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Cliffe Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5518,169994,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Miller's Hill, Milborne Wick",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5519,137281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roos Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5520,140714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newbald Becksies,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5521,137415,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linbrigg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5522,137431,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monk Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5523,137445,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muckle Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5524,140736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harthope Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5525,140257,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newham Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5526,137487,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redesdale Ironstone Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5527,137489,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roman Wall Escarpments,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5528,137533,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Simonside Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5529,138653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hayburn Wyke,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5530,137559,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spindlestone Heughs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5531,137590,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tipalt Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5532,137653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holystone North Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5533,137661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corbridge Limestone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5534,137679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roddam Dene,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5535,141073,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northumberland Shore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5536,140737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wath Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5537,137963,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hack Fall Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5538,137980,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mar Field Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5539,138022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hartlepool Submerged Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5540,140926,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middle Side & Stonygill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5541,140738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kildale Hall,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5542,138157,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gunnerton Nick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5543,138180,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allolee To Walltown,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5544,138194,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Close House Riverside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5545,138276,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Williamston River Shingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5546,138290,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warkworth Dunes and Saltmarsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5547,138218,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beltingham River Shingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5548,138302,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newton Links,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5549,138308,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hartley Cleugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5550,138349,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5551,138227,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ninebanks River Shingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5552,136762,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Eden Dene,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5553,138428,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brasside Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5554,138247,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burnfoot River Shingle and Wydon Nabb,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5555,136238,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenhaugh Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5556,135793,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teindland Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5557,138380,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wingate Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5558,138389,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishop Middleham Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5559,138417,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Botany Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5560,138455,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Butterby Oxbow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5561,138463,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cassop Vale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5562,140590,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Acaster South Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5563,140605,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brenkley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5564,136226,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barrow Burn Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5565,136388,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crime Rigg and Sherburn Hill Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5566,136502,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilmond Scar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5567,136427,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fairy Holes Cave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5568,136434,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hawthorn Dene,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5569,136577,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park End Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5570,136589,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raisby Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5571,136624,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shipley and Great Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5572,170128,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sleightholme Beck Gorge `The Troughs',Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5573,136646,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slit Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5574,136657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cotherstone Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5575,174656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwarel Singret,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5576,136930,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tophill Low,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5577,136954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Carr Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5578,136968,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birkham Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5579,136995,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalby Bush Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5580,137023,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Scar Closes, Kisdon Side",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5581,137699,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fothering Holme,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5582,137125,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Town Kelloe Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5583,138863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Teesdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5584,137145,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waldridge Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5585,137156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westernhope Burn Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5586,137165,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Rigg Open Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5587,137172,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Witton-Le-Wear,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5588,137183,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crag Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5589,137206,United Kingdom,Common Standards Monitoring,2013,For storage only,18,God's Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5590,137212,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pig Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5591,137220,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rogerley Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5592,137226,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hesledon Moor West,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5593,137231,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pittington Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5594,137275,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redcar Field,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5595,137842,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Botton Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5596,137286,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sherburn Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5597,137312,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Farndale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5598,137348,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashberry and Reins Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5599,140703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allen Confluence Gravels,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5600,137346,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aubert Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5601,137369,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beck Hole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5602,137377,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Betton Farm Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5603,137665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grassington Hospital Grounds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5604,137677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Till Riverbanks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5605,136337,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ling Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5606,137851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bride Stones,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5607,137865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brimham Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5608,137877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broughton Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5609,137880,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burton Leonard Lime Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5610,136325,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lindisfarne,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5611,137925,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cockrah Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5612,137979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ellerburn Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5613,137940,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cow Myers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5614,137959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cropton Banks and Howlgate Head Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5615,137970,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Heslerton Brow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5616,137994,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broughton Alder Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5617,138034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Filey Brigg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5618,138100,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gowerdale Windy Pits/Peak Scar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5619,138662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill House Nab,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5620,138064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gormire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5621,138094,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gouthwaite Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5622,140913,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seato Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5623,138125,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gristhorpe Bay and Red Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5624,138146,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hackness Head Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5625,140735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stonecroft Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5626,140733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Settlingstones Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5627,138444,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baldersdale Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5628,138461,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foster's Hush,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5629,140557,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marsett Rigg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5630,138669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hole Of Horcum,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5631,138686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Iron Scar and Hundale Point To Scalby Ness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5632,138705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkdale Cave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5633,138728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Littlebeck Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5634,138773,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newsome Bridge Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5635,138796,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newtondale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5636,138805,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nine Spring Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5637,140748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cawthorn Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5638,138829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nunnington Cutting and Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5639,137207,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raincliffe & Forge Valley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5640,140757,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grains O'Th' Beck Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5641,140446,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shaw's Gate Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5642,138844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rievaulx Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5643,138862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ripon Parks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5644,138910,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Runswick Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5645,139999,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scar End Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5646,140611,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newton Ketton Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5647,140564,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Three Dykes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5648,170179,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tripsdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5649,140747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lambwath Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5650,139093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwarel Talar Wen (Talar Wen Quarry),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5651,140612,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hannah's Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5652,140749,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roman Wall Loughs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5653,140751,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Tyne At Ovingham,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5654,140756,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaiskey Bank Springs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5655,140460,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seive Dale Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5656,140649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Far High House Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5657,137557,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Austwick and Lawkland Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5658,139096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cilcenni Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5659,140468,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sked Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5660,140480,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Snape Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5661,140488,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Bay To South Toll House Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5662,137569,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clints Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5663,140508,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Spring Wood,Hawnby",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5664,140516,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Staithes - Port Mulgrave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5665,140540,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strensall Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5666,140548,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thixen Dale and Longdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5667,140584,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Troutsdale and Rosekirk Dale Fens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5668,136212,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waterdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5669,136241,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bull Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5670,136255,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wharram Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5671,136271,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitby-Saltwick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5672,136280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wintringham Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5673,136351,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashes Pasture and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5674,136368,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Askham Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5675,140638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Park Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5676,137667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Feetham Holme,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5677,137673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Giggleswick Scar and Kinsey Cave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5678,140640,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rigg Farm and Stake Hill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5679,140643,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mere Beck Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5680,139449,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heol Senni Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5681,140645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cornriggs Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5682,140647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Newlandside Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5683,137567,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cocket Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5684,169983,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Malham-Arncliffe ( Cool Pasture ),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5685,141051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Wharfedale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5686,137629,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cracoe Reef Knolls,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5687,141053,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teesdale Allotments,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5688,137698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haw Crag Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5689,137718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hawkswick Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5690,137723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hell Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5691,137738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swarth Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5692,137748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Holy Well, Bridge",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5693,137813,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kisdon Force Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5694,137816,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Attermire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5695,137833,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leyburn Glebe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5696,140803,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low Gill Moor Wetlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5697,140804,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foredale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5698,140805,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aysgarth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5699,140801,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"New House Meadows, Malham",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5700,140802,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thowker Corner,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5701,140810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lambley River Shingles,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5702,138346,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Malham-Arncliffe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5703,138358,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meal Bank Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5704,138365,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ox Close,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5705,138379,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oxenber and Wharfe Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5706,138395,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pan Beck Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5707,138405,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen-Y-Ghent,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5708,138410,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pikedaw Calamine Caverns,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5709,138443,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Ribble (Long Preston Deeps),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5710,138451,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Wharfe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5711,170134,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Austell Clay Pits",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5712,140048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walden Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5713,138501,United Kingdom,Common Standards Monitoring,2013,For storage only,18,School Share Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5714,138518,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scoska Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5715,138530,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Burr Closes, Selby",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5716,138547,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Semerwater,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5717,140204,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spell Howe Plantation,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5718,138562,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sherburn Willows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5719,138594,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skipwith Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5720,138611,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stran's Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5721,138626,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strid Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5722,138630,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thornton and Twisleton Glens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5723,140270,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dow Cave System,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5724,138644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thwaite Stones,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5725,140361,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hallow Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5726,140813,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Len Pastures, Crackpot",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5727,140814,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Neasham Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5728,140824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trimdon Limestone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5729,140165,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bastow Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5730,140178,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grass Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5731,140212,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birks Fell Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5732,140217,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birkwith Caves and Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5733,140232,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boreham Cave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5734,140278,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stump Cross Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5735,140289,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Farnham Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5736,140314,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cayton, Cornelian and South Bays",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5737,140906,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bolton Percy Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5738,140328,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eller's Wood and Sand Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5739,140339,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenhow Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5740,140341,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Nidderdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5741,140373,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Derwent Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5742,140394,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brants Gill Catchment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5743,140416,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sleightholme Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5744,169685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Besthorpe Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5745,140433,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tranmire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5746,140858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Scar Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5747,136561,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warks Burn Woodland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5748,170020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North York Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5749,140917,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heslington Tillmire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5750,140883,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hackness Rock Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5751,140907,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Church Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5752,136532,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flamborough Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5753,137868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flamborough Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5754,136588,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arcot Hall Grasslands and Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5755,136602,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Darras Hall Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5756,140818,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Swaledale Woods and Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5757,136652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longhorsley Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5758,136667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Conistone Old Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5759,136674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen Y Ghent Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5760,136804,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raisby Hill Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5761,136705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkby Wharfe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5762,136714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenfield Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5763,137383,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pockerley Farm Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5764,136783,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Dunsforth Carrs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5765,136794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pike Whin Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5766,183422,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mattishall Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5767,136815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleadon Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5768,136827,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Big Waters,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5769,174648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barn Elms Wetland Centre,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5770,140928,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middle Crossthwaite,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5771,137314,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brockadale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5772,137342,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mount Pleasant Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5773,137352,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenfoot Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5774,174707,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Dee (England),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5775,137393,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Hylton Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5776,137407,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Biller Howe Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5777,137432,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ruston Cottage Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5778,137495,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cockerham Meadows, Thorpe",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5779,169935,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Langcliffe Scars and Jubilee, Albert and Victoria Caves",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5780,137454,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jeffry Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5781,137552,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Stephen Ings, Crackpot",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5782,137464,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Askrigg Bottoms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5783,137467,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Pry and Bottom Meadows, Mid-Mossdale",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5784,137542,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Park Hall Meadows, Healaugh",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5785,139242,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig-y-don,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5786,138820,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Mill Holme Meadow, Thwaite",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5787,138815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harker's House Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5788,138841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cliff Beck Meadow, Buttertubs",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5789,138846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Swineley Meadow, Widdale",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5790,138866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wanlass Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5791,138878,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"New Close, Calvert Houses",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5792,138894,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oughtershaw and Beckermonds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5793,140817,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lord's Wood and Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5794,139995,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Meadow Croft, Skythorns",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5795,140014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Far Mains and Far Limekiln Close Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5796,174660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig-y-garn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5797,140024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yockenthwaite Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5798,137344,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ingleborough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5799,140122,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ridley Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5800,136438,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stonepit and Nova Slacks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5801,140058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brantingham Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5802,140072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horse Dale and Holm Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5803,140084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Vessey Pasture Dale and Back Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5804,140097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quarry Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5805,140606,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Willow Burn Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5806,136456,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Backstone Bank and Baal Hill Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5807,139246,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig-y-Llyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5808,139248,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigyfulfran & Clarach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5809,140133,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hetton Bogs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5810,140935,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gingerfields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5811,140142,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyne Watersmeet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5812,140166,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heatheryburn Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5813,140816,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fairy Call Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5814,136284,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bamburgh Coast and Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5815,136310,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Howick To Seaton Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5816,140918,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ladyhills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5817,136240,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Briarwood Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5818,136250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duncombe Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5819,140927,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowlees and Friar House Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5820,136389,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brignall Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5821,136428,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Saltburn Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5822,136485,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Hartley Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5823,136512,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burnhope Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5824,136523,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Railway Stell West,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5825,136992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strother Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5826,137068,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drewton Lane Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5827,137005,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wharmley Riverside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5828,137032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishop Monkton Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5829,137045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gibside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5830,137103,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Messingham Sand Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5831,137113,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Ure Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5832,137120,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stutton Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5833,137238,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowes Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5834,137712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wyedale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5835,137752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moorsley Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5836,137766,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kettlewell Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5837,170215,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"West End Meadow, Lunds",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5838,140946,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hewson's Field,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5839,140919,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forlorn Hope Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5840,140472,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashfield Brick Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5841,169654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Arkle Beck Meadows, Whaw",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5842,137853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hulam Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5843,137864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,College Valley Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5844,137881,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alnmouth Saltmarsh and Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5845,137954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilnsey Flush,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5846,138009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hadston Links,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5847,138497,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haggburn Gate,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5848,140914,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River West Allen At Blackett Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5849,139628,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parc-y-rhos,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5850,138545,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swale Lakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5851,138566,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Withow Gap, Skipsea",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5852,170034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Park House Outbuildings, Stackpole",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5853,138635,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Green Croft and Langley Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5854,138708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Noddle End,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5855,138660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cinquefoil Brow and Wood Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5856,138695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keasey Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5857,138711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Almscliff Crag,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5858,140920,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chris's Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5859,141048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duddon Valley Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5860,140011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Silloth Dunes and Mawbray Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5861,141047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low Beckside Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5862,137168,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alston Shingle Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5863,137592,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Bees Head",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5864,141072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Iron Pit Spring Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5865,140334,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Madbanks and Ledsham Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5866,140708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lytham St, Anne's Dunes",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5867,169841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Florence Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5868,140716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Mell Fell Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5869,140905,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Augill Valley Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5870,140948,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Combe Scar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5871,170242,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wyre Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5872,170198,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Dentdale Cave System,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5873,140676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jumb Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5874,169710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckbarrow Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5875,141001,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5876,139663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penrice Stables and Underhill Cottage,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5877,138211,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5878,138317,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dee Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5879,136618,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hatfield Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5880,138614,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashclough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5881,140343,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Micklefield Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5882,139658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penstrowed Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5883,141046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Butterwick Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5884,139659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pentregwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5885,140225,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breary Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5886,140239,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Irthing Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5887,140252,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broadhead Clough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5888,140276,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fairburn and Newton Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5889,140286,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hetchell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5890,140299,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leeds - Liverpool Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5891,140315,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5892,140354,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mickletown Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5893,140421,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Townclose Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5894,140364,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roach Lime Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5895,140382,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seckar Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5896,140415,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Elmsall Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5897,140487,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cadeby Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5898,139767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stackpole Courtyard Flats & Walled Garden,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5899,140493,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Denaby Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5900,140503,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edlington Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5901,138327,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blelham Tarn & Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5902,136640,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roche Abbey Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5903,139763,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stackpole Quay - Trewent Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5904,136662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maltby Low Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5905,136683,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Owston Hay Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5906,136715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Potteric Carr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5907,136719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandall Beat,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5908,174695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Normanby Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5909,136731,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shirley Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5910,136752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Totley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5911,174713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stiffkey Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5912,135302,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blair Atholl Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5913,136760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Went Ings Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5914,136891,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crag Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5915,136895,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cringlebarrow and Deepdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5916,137335,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eaves Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5917,137373,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gale Clough and Shooterslee Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5918,137381,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hawes Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5919,170235,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wood Lee Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5920,136808,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Artle Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5921,136861,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5922,136874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clitheroe Knoll Reefs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5923,140949,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Red Lees Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5924,139994,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thurstaston Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5925,140922,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wrightington Bar Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5926,137408,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hodder River Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5927,137433,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leighton Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5928,137474,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lune Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5929,137515,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Martin Mere, Burscough",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5930,137525,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Marton Mere, Blackpool",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5931,137530,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morecambe Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5932,140020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Armboth Fells,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5933,140034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bassenthwaite Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5934,137547,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newton Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5935,137606,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ravenhead Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5936,137620,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Scar and Tun Brook Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5937,140414,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ribble Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5938,140149,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairnbridge Sand Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5939,137630,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Robert Hall Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5940,138085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roeburndale Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5941,136346,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gowk Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5942,138099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rough Hey Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5943,138117,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salthill and Bellmanpark Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5944,136361,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5945,136369,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollows Farm Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5946,136384,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Honister Crag,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5947,138132,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thrang End and Yealand Hall Allotment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5948,138151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Warton Crag,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5949,134966,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blair Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5950,138225,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winmarleigh Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5951,140054,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Biglands Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5952,138255,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brookheys Covert,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5953,138278,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Compstall Nature Reserve,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5954,138299,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cotteril Clough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5955,138315,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dibbinsdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5956,138337,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Dungeon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5957,139281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Dwythwch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5958,138364,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunham Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5959,138906,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Wirral Foreshore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5960,140078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bothel Craggs Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5961,139973,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5962,140162,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castlehead Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5963,140169,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caudbeck Flow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5964,136396,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5965,183440,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Glo a Glyndyrus,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5966,140211,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cumwhitton Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5967,140219,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumburgh Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5968,140226,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Finglandrigg Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5969,136305,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gelt Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5970,138012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glasson Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5971,139282,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Gwrelych and Nant Llyn Fach Streams,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5972,139283,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Gwynllyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5973,136422,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Johnny Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5974,136445,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lodore - Troutdale Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5975,136464,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lyne Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5976,136493,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mollen Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5977,138079,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tarn Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5978,136508,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moorthwaite Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5979,136521,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orton Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5980,136530,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oulton Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5981,137189,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackdike Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5982,136540,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Over Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5983,137241,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burrells Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5984,136570,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salta Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5985,136575,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandybeck Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5986,137807,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hallinhag Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5987,137818,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Helbeck Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5988,137835,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Helvellyn & Fairfield,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5989,136586,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scaleby Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5990,137984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raisbeck Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5991,136595,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scales Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5992,140665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Seatoller Wood, Sourmilk Gill & Seathwaite Graphite Mine",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5993,137056,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Siddick Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5994,138007,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skiddaw Group,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5995,138019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Smardale Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5996,138799,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gait Barrows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5997,183429,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Solway Flats & Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5998,137101,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stonethwaite Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -5999,137109,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thirlmere Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6000,137129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thurstonfield Lough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6001,137137,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Unity Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6002,137162,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wedholme Flow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6003,138035,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scandal Beck and Stone Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6004,137210,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blea Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6005,137221,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Borrow Beck Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6006,137225,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brothers Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6007,141074,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sunbiggin Tarn & Moors and Little Asby Scar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6008,138058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swindale Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6009,137247,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cliburn Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6010,137841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lamonby Verges and Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6011,137859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lazonby Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6012,140566,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burns Beck Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6013,137259,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Clouds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6014,137282,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crosby Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6015,137307,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eden Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6016,137318,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Geltsdale & Glendue Fells,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6017,137331,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glencoyne Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6018,137783,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gowbarrow Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6019,140602,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Asby Scar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6020,137893,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Murthwaite Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6021,137909,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Naddle Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6022,140580,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Claife Tarns and Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6023,135047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenarbuck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6024,137917,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newton Reigny Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6025,137934,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orton Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6026,137983,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pooley Bridge Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6027,135619,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glentrool Oakwoods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6028,135778,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glims Moss and Durka Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6029,138083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Temple Sowerby Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6030,140783,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Appleby Fells,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6031,140399,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wan Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6032,140425,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arnside Knott,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6033,140454,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baysbrown Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6034,140461,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beech Hill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6035,140595,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clints Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6036,139857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mill Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6037,140490,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6038,140526,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brathay Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6039,141016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Far Holme Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6040,140562,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Browgill & Stockdale Becks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6041,136217,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cropple How Mire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6042,136256,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dodgson Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6043,136277,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drigg Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6044,136296,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duddon Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6045,136982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knipe Tarn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6046,136988,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brantrake Moss & Devoke Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6047,136309,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dungeon Ghyll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6048,136773,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elterwater,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6049,136786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ennerdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6050,138511,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Esthwaite Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6051,138520,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Farleton Knott,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6052,136846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greendale Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6053,136876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haile Great Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6054,137009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Langdale Tarn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6055,137027,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longsleddale Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6056,136882,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cotehill Pastures and Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6057,136900,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hallsenna Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6058,136946,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Humphrey Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6059,138698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hutton Roof Crags,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6060,137042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low Church Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6061,137049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meathop Woods and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6062,137660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scout and Cunswick Scars,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6063,137688,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skelsmergh Tarn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6064,137692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Walney and Piel Channel Flats,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6065,137063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meathop Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6066,137497,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Miterdale Head Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6067,137502,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nichols Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6068,137534,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barker Scar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6069,140368,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roudsea Wood & Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6070,137628,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scafell Pikes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6071,137650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sea Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6072,137680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Silver Tarn, Hollas and Harnsey Mosses",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6073,137707,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tarn Hows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6074,138368,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hodge Clough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6075,137710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tilberthwaite Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6076,137732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Troutbeck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6077,138280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coplow Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6078,137751,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wart Barrow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6079,137760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wasdale Screes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6080,137782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitbarrow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6081,137786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yewbarrow Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6082,138266,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashgill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6083,138324,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowness Knott,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6084,138326,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elliscales Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6085,137600,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yeadon Brickworks and Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6086,138361,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hale Moss Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6087,138399,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Asby Inrakes and Outrakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6088,137510,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Dib Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6089,138409,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Short Gill Cave System,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6090,137524,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park Clough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6091,138424,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skelwith Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6092,138479,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broad Dales,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6093,138507,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Far Arnside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6094,138550,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waberthwaite Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6095,140192,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ash Fell Edge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6096,138568,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skelghyll Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6097,140253,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Melmerby Road Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6098,140304,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Don Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6099,140117,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bramcrag Quarry & Wanthwaite Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6100,140139,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rosthwaite Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6101,140923,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkby Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6102,140180,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mere Sands Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6103,140183,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingwater,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6104,140223,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eycott Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6105,140231,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Janny Wood Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6106,140244,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mousegill Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6107,140344,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ladcastle and Den Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6108,140383,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cock Wood Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6109,137202,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Darwen River Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6110,137624,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beckfoot Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6111,137215,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harper Clough and Smalley Delph Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6112,137249,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leck Beck Head Catchment Area,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6113,137262,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Light Clough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6114,138023,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wet Sleddale Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6115,137269,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Mearley Clough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6116,137290,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorne Crowle and Goole Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6117,137956,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6118,140666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moorhouse and Cross Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6119,138790,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keisley Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6120,138822,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pus Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6121,138006,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Leys,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6122,138021,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swindale Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6123,140076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eccup Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6124,140093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cautley Thwaite Meadows and Ecker Secker Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6125,138115,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Myttons Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6126,140725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deepdale Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6127,140115,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wilson Place Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6128,140582,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wentbridge Ings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6129,146255,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Whitcliffe Section, Quarry Moor",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6130,138131,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drigg Holme,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6131,138165,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gribbs Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6132,138160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thornhill Moss & Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6133,141132,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kennet and Lambourn Floodplain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6134,170029,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Otterswick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6135,183423,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penton Linns,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6136,138197,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meols Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6137,169767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Comb Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6138,169870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Graveland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6139,138224,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Astley & Bedford Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6140,170046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pets Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6141,170065,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rannoch Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6142,170219,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wester Ross Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6143,138235,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Highfield Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6144,140603,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clear Beck Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6145,169852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garbh Shlios,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6146,169714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burrow Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6147,174676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knapdale Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6148,138244,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollinwood Branch Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6149,138262,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Huddersfield Narrow Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6150,136366,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duddon Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6151,169636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Achnahaird,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6152,170188,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turflundie Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6153,174696,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Lowther Uplands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6154,138274,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanley Bank Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6155,140710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn Marsh & Ince Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6156,138772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Backside Beck and Spen Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6157,174670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen App and Galloway Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6158,169840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Firth of Forth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6159,170126,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slaidhills Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6160,138780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Harthwaite Sike,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6161,174685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muirkirk Uplands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6162,174645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arran Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6163,138831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swindale Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6164,138889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nob End,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6165,137243,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rusland Valley Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6166,139979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowber Head and Piper Hole Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6167,140002,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bretherdale Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6168,136391,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wharncliffe Crags,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6169,140005,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"White Moss, Crosbymoor",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6170,137074,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Argill Woods and Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6171,140947,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stagmire Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6172,140039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Norwood Bottoms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6173,136211,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Milkingstead Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6174,136411,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carlton Main Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6175,138931,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt y Main Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6176,136222,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanley Ghyll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6177,136254,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wast Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6178,136281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shap Fells,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6179,136279,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birk Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6180,136314,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lindrick Golf Course,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6181,136322,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bilham Sand Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6182,136401,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stannington Ruffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6183,136462,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradgate Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6184,136437,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Neepsend Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6185,136455,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Neepsend Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6186,138935,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arfordir Saundersfoot - Telpyn/Saundersfoot - Telpyn Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6187,328955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanishen and Lisvane Reservoir Embankments,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6188,136480,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hesketh Golf Links,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6189,136769,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nostell Brickyard Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6190,140705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shap Fell Road Cuttings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6191,136486,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Millfield Verges,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6192,136755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Calder Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6193,136779,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tonge River Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6194,138347,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Scandal Beck, Brunt Hill",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6195,138452,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birkett Hill and High Out Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6196,136793,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lowside Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6197,136813,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blea Tarn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6198,140660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bowland Fells,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6199,138552,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Udford Low Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6200,136841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trowbarrow Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6201,136853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cowraik Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6202,140646,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birky Cleugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6203,138570,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Lickbarrow Mires and Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6204,140653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pinskey Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6205,138576,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sprotbrough Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6206,138640,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollin Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6207,141131,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jockie's Syke,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6208,138666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elland Bypass Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6209,140669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hook Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6210,140670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chapel Bridge Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6211,140096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tebay Road Cuttings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6212,140830,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pye Flatts Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6213,140120,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langcliff Cross Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6214,140698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tarnbrook Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6215,140699,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Charnock Richard Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6216,140156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ash Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6217,140182,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middlesceugh Woods and Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6218,140706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River South Tyne and Tynebottom Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6219,140707,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Smallcleugh Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6220,140836,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jenny Dam,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6221,140734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abram Flashes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6222,140724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Downholland Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6223,140811,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maryport Harbour,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6224,140831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wadsley Fossil Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6225,140944,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heysham Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6226,140945,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Ing Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6227,140837,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jack Scout,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6228,140829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coldwell Farm Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6229,140835,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crosby Ravensworth Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6230,140832,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bingley South Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6231,137227,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Clints Crags, Blindcrake",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6232,137288,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pillar and Ennerdale Fells,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6233,140853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spadeadam Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6234,140833,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Blencow Meadows and Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6235,140834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skelton Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6236,140852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Snib,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6237,137193,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Town End Meadows, Little Asby",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6238,137208,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Annaside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6239,140867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Outley Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6240,140868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ludderburn and Candlestick Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6241,140869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Subberthwaite, Blawith and Torver Low Commons",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6242,137491,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crimsworth Dean,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6243,140870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Winster Wetlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6244,137572,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Standedge Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6245,137637,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cockerham Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6246,138032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shaw Meadow & Sea Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6247,138033,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yeathouse Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6248,169921,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kershope Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6249,146252,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Line,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6250,141161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waverley Wood Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6251,169911,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Iford Manor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6252,170209,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Water Crag,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6253,137354,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitstone Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6254,140283,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wealden Edge Hangers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6255,169968,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Low Wray Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6256,138407,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foulness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6257,137140,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodeaton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6258,140812,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linmer Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6259,141113,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bardney Limewoods, Lincolnshire",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6260,141041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oxley Mead,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6261,169818,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Harnham Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6262,140452,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Brading Marshes To St, Helen's Ledges",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6263,136223,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parley Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6264,136341,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Povington and Grange Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6265,169910,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurn Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6266,138587,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stoborough & Creech Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6267,138615,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Studland & Godlingston Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6268,140291,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Luscombe Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6269,141139,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mermaid's Pool To Rowden Gut,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6270,140655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Lyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6271,141126,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Elm Road Field, Thetford",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6272,146244,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Whitfield Moor, Plenmeller and Asholme Commons",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6273,141125,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Nidderdale Moors (Flamstone Pin - High Ruckles),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6274,183413,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Fenn'S, Whixall, Bettisfield, Wem & Cadney Mosses",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6275,141030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballidon Dale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6276,136630,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barnsley Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6277,170071,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Richmond Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6278,137585,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stawardpeel Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6279,141119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colshaw Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6280,136317,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fernhill Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6281,136328,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Topley Pike and Deepdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6282,141088,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lord's Wood Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6283,137986,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bamburgh Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6284,141122,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dawson's Plantation Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6285,170093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Teme,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6286,140951,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Wye,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6287,141044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Ings, Amotherby",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6288,169759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Clints Quarry, Moota",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6289,170100,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Robin Hood's Bay: Maw Wyke To Beast Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6290,170162,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Thornsgill Beck, Mosedale Beck and Wolf Crags",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6291,169691,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Keld Catchment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6292,169854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,George Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6293,169919,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kennet Valley Alderwoods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6294,135356,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balloch Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6295,170245,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yewdale Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6296,169688,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birk Fell Hawse Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6297,170222,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitberry Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6298,146270,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Bostraze and Leswidden,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6299,137857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Exmoor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6300,135726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballochmartin Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6301,170121,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Side Pike,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6302,141147,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Coquet and Coquet Valley Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6303,169971,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Fal & Helford Intertidal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6304,170079,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Eden and Tributaries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6305,169942,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lee Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6306,170081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Frome,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6307,146273,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wootton Bassett Mud Spring,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6308,146250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Long Dale, Hartington",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6309,141155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorness Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6310,146256,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lackford Lakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6311,135342,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barnsmuir Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6312,135160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barns Ness Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6313,135219,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barry Links,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6314,170102,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rook Clift,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6315,170114,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Seathwaite Copper Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6316,170066,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ray and Crinkle Crags,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6317,169805,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Denby Grange Colliery Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6318,146272,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Misson Training Area,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6319,169846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foulshaw Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6320,169990,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Merrivale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6321,170073,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Barle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6322,146715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plymouth Sound Shores and Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6323,146716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yealm Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6324,169769,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coniston Mines and Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6325,169937,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Langdale, Bowderdale and Carlin Gill",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6326,169975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lulsgate Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6327,169889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hallsands-Beesands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6328,169794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cuckoo Rock To Turbot Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6329,146595,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lymington River,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6330,170057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Priory Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6331,169979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lytham Coastal Changes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6332,146262,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duckpool To Furzey Cove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6333,170138,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Steeple Ashton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6334,169916,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Kellaways - West Tytherton, River Avon",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6335,169909,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurcott Lane Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6336,174655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chapel Point To Wolla Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6337,146283,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Muggleswick,Stanhope & Edmundbyes Commons & Blanchland Moor",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6338,146274,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Avon System,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6339,136119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Eighe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6340,170010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nab Gill Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6341,169780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coryton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6342,141118,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bollihope, Pikestone, Eggleston and Woodland Fells",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6343,170082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Itchen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6344,141150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Sinks Valley, Kesgrave",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6345,139887,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Iadain and Beinn na h-Uamha,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6346,169992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Middlebarrow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6347,170195,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Underlaid Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6348,169984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marble Quarry and Hale Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6349,141130,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurcott Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6350,169875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grimston Warren Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6351,169905,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holway Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6352,183419,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cook's Wood Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6353,170147,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Styrrup Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6354,146571,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cloatley Manor Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6355,137929,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Purbeck Ridge (East),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6356,170094,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Test,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6357,141144,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rame Head & Whitsand Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6358,146267,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Martin's Sedimentary Shore",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6359,137670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Feckenham Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6360,135685,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Shiantaidh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6361,169895,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heath Hill Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6362,146246,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whiston Eaves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6363,170171,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Totternhoe Stone Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6364,136016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Klibreck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6365,135308,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Lawers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6366,138476,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dryhill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6367,169653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Arkengarthdale, Gunnerside and Reeth Moors",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6368,135432,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Lomond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6369,136021,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Loyal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6370,135630,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Lui,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6371,135019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben More - Scarisdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6372,141129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hay-A-Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6373,141120,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Conesby (Yorkshire East) Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6374,141142,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Killingholme Haven Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6375,141075,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Pennine Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6376,135241,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben More - Stob Binnein,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6377,136022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben More Assynt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6378,169675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barn Gill Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6379,146570,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tees and Hartlepool Foreshore and Wetlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6380,170077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Derwent and Tributaries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6381,170072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Axe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6382,170080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Ehen (Ennerdale Water To Keekle Confluence),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6383,137305,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holton and Sandford Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6384,136167,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Nevis,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6385,169758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cliff Force Cave,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6386,169644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alderton Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6387,169824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ecton Copper Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6388,169730,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cantley Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6389,170118,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheppey Cliffs and Foreshore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6390,170191,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tweed Catchment Rivers - England: Till Catchment,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6391,174719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tweed Catchment Rivers - England: Lower Tweed and Whiteadder,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6392,169645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allendale Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6393,169976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lune Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6394,141136,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lofts Farm Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6395,170155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Brinks, Northwold",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6396,135509,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Vorlich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6397,141151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southerham Works Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6398,141138,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Melverley Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6399,135320,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Vrackie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6400,136111,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Wyvis,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6401,141124,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Drybank Meadow, Cherington",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6402,169801,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dale Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6403,169750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cholwell Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6404,169768,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Conegar Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6405,141086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brown's Close Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6406,141084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Showground Meadow, Callow Hill",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6407,141082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ranters Bank Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6408,141080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teddon Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6409,141083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckeridge Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6410,141106,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nine Holes Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6411,146254,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newlyn Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6412,169943,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Leet Hill, Kirby Cane",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6413,140662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Camel Valley and Tributaries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6414,141107,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurst Farm Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6415,169674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barf and Thornthwaite,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6416,169779,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corton Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6417,170112,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scawgill and Blaze Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6418,170113,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scaynes Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6419,170022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oakshaw Ford,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6420,170139,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stile End,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6421,170190,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turners Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6422,169974,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ludworth Intake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6423,141108,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Royal Farm Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6424,169856,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gill Beck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6425,169936,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langdale Pikes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6426,170090,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"River Rawthey, Wandale Beck and Sally Beck",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6427,170125,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skipsea Bail Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6428,169756,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clarke's Pool Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6429,170064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Range Farm Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6430,141109,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oakland Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6431,169970,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Dicker,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6432,141085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bliss Gate Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6433,170058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Purfleet Road, Aveley",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6434,141111,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Romsley Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6435,141112,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berry Mound Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6436,141089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hillend Meadow & Orchard,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6437,141090,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quarry Farm Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6438,141091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Starling Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6439,141093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Merries Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6440,141095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avenue Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6441,141096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Napleton Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6442,141105,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Highclere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6443,141098,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rectory Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6444,141104,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trickses Hole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6445,170130,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southerham Machine Bottom Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6446,141099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dean Brook Valley Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6447,141101,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dormston Church Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6448,141100,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Naunton Court Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6449,141097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Great Blaythorn Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6450,138661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gilbert's Pit (Charlton),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6451,146597,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Hoathly,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6452,170050,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Polruan To Polperro,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6453,169652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Areley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6454,139891,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bigholms Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6455,169826,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ellery Sike,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6456,170135,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, Catherine's Valley",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6457,169790,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crocadon Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6458,170131,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St James' Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6459,170137,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Standridge Farm Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6460,169806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Devil's Chapel Scowles,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6461,170148,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swinden Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6462,170024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Bow and Old Ham Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6463,169844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Force Crag Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6464,169649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Annaside and Gutterby Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6465,170136,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stairfoot Brickworks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6466,169712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bullhill Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6467,169795,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cumpston Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6468,170123,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Silverdale Golf Course,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6469,169914,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Marsh Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6470,169946,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linley Big Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6471,170218,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westbury Brook Ironstone Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6472,170229,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wigpool Ironstone Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6473,169711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckshraft Mine & Bradley Hill Railway Tunnel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6474,170159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Sturts,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6475,170089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Nent At Blagill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6476,169727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caerwood and Ashberry Goose House,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6477,170217,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"West Nidderdale, Barden and Blubberhouses Moors",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6478,170055,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Poxwell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6479,169678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beeston Brook Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6480,170228,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitfield Gill and Mill Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6481,169995,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minster Church,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6482,169901,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hexhamshire Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6483,169847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Freshfield Lane,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6484,170214,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Cornwall Bryophytes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6485,169986,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marked Ash Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6486,169702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bray Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6487,146718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pulborough Brooks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6488,169713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burley Dene Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6489,169973,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Saleway Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6490,169867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grange Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6491,170164,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thrang Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6492,170178,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trinity Broads,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6493,169745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chapel Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6494,170238,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woolbeding and Pound Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6495,169748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chatsworth Old Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6496,139964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shoulder o' Craig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6497,169899,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hesledon Moor East,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6498,169747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Charity Land,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6499,169681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bembridge School and Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6500,555545521,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilbroney River,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6501,170153,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Allers and Lilburn Valley Junipers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6502,169894,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haydon Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6503,169907,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Horseshoe Bend, Shirehampton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6504,169865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Goblin Combe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6505,140539,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moors River System,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6506,169954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lobbington Hall Farm Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6507,169940,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lea Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6508,169657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashton Court,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6509,170083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Kent and Tributaries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6510,169944,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leiston - Aldeburgh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6511,170140,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stowe Pool and Walk Mill Clay Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6512,170056,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prince's Rough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6513,169680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bell Sykes Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6514,139031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Ardwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6515,170154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Bottoms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6516,169996,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minsterley Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6517,169839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Field Head Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6518,169793,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crow's Nest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6519,170174,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trelow Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6520,169823,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eastern Peak District Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6521,170062,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Railway Meadow, Langley",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6522,170213,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Welford Field,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6523,170021,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oak Tree Farm Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6524,193739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thwaite House Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6525,169849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Froghall Meadow and Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6526,170004,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mungrisdale Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6527,170108,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Saddington Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6528,174663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dabble Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6529,170037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Paston Great Barn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6530,169814,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunster Park and Heathlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6531,170017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nicodemus Heights,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6532,136402,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Durham Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6533,169969,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Coombe and Ferne Brook Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6534,170014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Ferry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6535,169659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Attingham Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6536,170124,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sinah Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6537,169808,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dixton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6538,170059,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quarrington Hill Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6539,170183,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tudor Farm Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6540,174703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porlock Ridge & Saltmarsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6541,169647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Amwell Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6542,169967,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lovell Hill Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6543,170132,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Leonards and St Ives Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6544,169993,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Mill Meadows, Billericay",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6545,170200,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Greensand Hangers : Wyck To Wheatley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6546,170199,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Greensand Hangers : Empshott To Hawkley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6547,170163,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thorpe Park No 1 Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6548,137512,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knight & Bessborough Reservoirs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6549,170239,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wraysbury No 1 Gravel Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6550,169917,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kempton Park Reservoirs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6551,170240,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wraysbury Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6552,170184,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tuetoes Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6553,169939,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laughton Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6554,169729,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calf Hill and Cragg Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6555,169679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belah Woods and Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6556,169771,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coombe Mill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6557,170087,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Mease,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6558,169829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ewefell Mire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6559,169888,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haggs Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6560,170226,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitesike Mine and Flinty Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6561,169947,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Wittenham,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6562,169695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackstone Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6563,169701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braithwaite Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6564,170101,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rochdale Canal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6565,170115,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sefton Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6566,170095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Till,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6567,169736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carricknath Point To Porthbean Beach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6568,169926,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirk Deighton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6569,169655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arnecliff and Park Hole Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6570,169807,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dew's Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6571,169978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lyppard Grange Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6572,169900,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hestercombe House,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6573,170028,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Otterburn Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6574,169991,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mersey Narrows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6575,170110,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandlings Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6576,169703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breckland Farmland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6577,169704,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breckland Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6578,183417,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birklands West and Ollerton Corner,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6579,183426,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roecliffe Manor Lawns,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6580,174680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Lye Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6581,183420,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dibden Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6582,174661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranmore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6583,174715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sutton & Lound Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6584,174649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beck Dale Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6585,174721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Withcall and South Willingham Tunnels,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6586,174651,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caen Valley Bats,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6587,183441,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Harries Ground, Rodbourne",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6588,183443,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mottisfont Bats,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6589,183442,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holehaven Creek,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6590,183444,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slade Brook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6591,193735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holnest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6592,193736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Humber Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6593,193740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitton Bridge Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6594,193733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Briarcroft Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6595,328960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hurdlow Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6596,328961,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pakefield To Easton Bavents,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6597,328962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Spring Meadows, Alderman's Head & Cow Croft Meadows",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6598,328963,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burledge Sidelands and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6599,328964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Highgate Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6600,341128,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Dungeness, Romney Marsh and Rye Bay",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6601,328956,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Lodge Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6602,193732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Besthorpe Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6603,193734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caydale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6604,328957,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Nene Valley Gravel Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6605,555561732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Hill Deer Park and Windy Pits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6606,328958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Canvey Wick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6607,328959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Peaslows Farm Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6608,341129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Bury Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6609,555545628,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cloatley Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6610,555545630,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ely Pits and Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6611,555545694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Talland Barton Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6612,555545714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardley Trackways,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6613,555545717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eskamhorn Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6614,555545721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bewick and Beanley Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6615,555545731,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Annesley Woodhouse Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6616,555545734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Scroggs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6617,555545735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chasewater and The Southern Staffordshire Coalfield Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6618,555545748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bradbourne Mill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6619,555545749,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Lee Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6620,555545750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mount Pleasant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6621,555545751,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wall Lands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6622,555561733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crich Chase,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6623,555545752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Matley Moor Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6624,555545753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hallam Barn Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6625,555545754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Hollins,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6626,555545755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lugg and Hampton Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6627,555561734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackmore Vale Commons and Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6628,555561735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eppleton Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6629,555561736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bushy Park and Home Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6630,555561737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,High Marks Barn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6631,555561738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benty Grange,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6632,555561739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calender Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6633,555561740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ives Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6634,555561741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chattenden Woods and Lodge Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6635,555561742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barrow Hill and Tansey Green,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6636,555561743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holly Rock Fields,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6637,555561748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Hadley Brickpit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6638,395284,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Graig Penllyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6639,555561744,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waterfall Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6640,555561745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clifton Ings and Rawcliffe Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6641,139968,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abercriban Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6642,555561746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rampisham Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6643,193717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aberdunant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6644,139786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Skerries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6645,139780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Wern, Rhosgoch",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6646,555560506,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Tir Mawr a Dderi-hir, Llwydcoed",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6647,555561747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birches,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6648,139579,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tiroedd a Glannau rhwng Cricieth ac Afon Glaslyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6649,139783,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Traeth Lafan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6650,139784,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Traeth Llanon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6651,555595674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen Park Hole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6652,555595675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bolton Fell and Walton Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6653,555595676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Pennine Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6654,555595673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mid Cornwall Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6655,183431,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aber Afon Conwy/ Conwy Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6656,169632,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aber Geirch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6657,169633,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aber Mawddach/Mawddach Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6658,139966,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aber Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6659,174643,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aber Taf/Taf Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6660,139694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aberarth-carreg Wylan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6661,138926,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aberithon and Bedw Turbaries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6662,139785,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Traeth Lligwy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6663,169634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aberbargoed Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6664,555545413,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Ddu,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6665,169637,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Dyfi ger Mallwyd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6666,555560492,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Banwy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6667,183445,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Cleddau Dwyreiniol/Eastern Cleddau River,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6668,183446,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Cleddau Gorllewinol/Western Cleddau River,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6669,138923,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afon Conwy Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6670,138932,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Cynhelyg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6671,139476,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Traeth Pensarn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6672,139792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tre Wilmot,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6673,138927,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Penycoed Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6674,138928,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Pontfaen - Coed Gelli-fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6675,138929,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Wen a Traeth Tanybwlch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6676,138930,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt y Gaer,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6677,138938,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt y wern,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6678,138940,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bach-y-graig Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6679,138933,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt-y-gest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6680,138934,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alyn Valley Woods and Alyn Gorge Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6681,174644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Amnodd-Bwll Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6682,139969,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arfordir Abereiddi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6683,139340,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arfordir Gogleddol Penmon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6684,139552,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arfordir Marros-Pentywyn/Marros Pendine Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6685,139327,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arfordir Niwgwl - Aber Bach/Newgale - Little Haven Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6686,139630,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arfordir Pen-Bre/Pembrey Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6687,193718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arfordir Penrhyn Angle/Angle Peninsula Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6688,138944,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arthog Hall Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6689,138939,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bach Howey Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6690,138941,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baltic and Tyle'r-bont Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6691,138950,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banc-y-Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6692,138949,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beacon Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6693,169671,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banc Hirllwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6694,138942,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banc Llety-spence,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6695,138943,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banc y Mwldan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6696,138948,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barry Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6697,138951,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beddmanarch-Cymyran,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6698,174647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barbadoes Hill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6699,138945,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Barland Common Stream Section, Bishopston",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6700,138946,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barmouth Hillside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6701,138947,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baron Hill Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6702,138952,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benallt Mine and Nant-y-Gadwen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6703,138953,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benarth Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6704,138954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berry Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6705,138959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6706,138956,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birdshill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6707,193741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishop's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6708,138957,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishops Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6709,138965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Mountains,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6710,138960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackcliff-Wyndcliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6711,138961,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackmill Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6712,138962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Blackpill, Swansea",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6713,138963,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaen Cilieni,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6714,193719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaen Nedd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6715,138966,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaenrhondda Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6716,138967,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaentrothy Meadows (Caeau Blaentroddi),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6717,138968,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blorenge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6718,139260,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Borth-Clarach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6719,138969,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boxbush Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6720,138970,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bracelet Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6721,138977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brechfa Pool,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6722,138972,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brecon Beacons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6723,138973,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breidden Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6724,555545411,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breigam Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6725,395270,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brithdir a Chwm Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6726,139048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Penglaneinon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6727,138975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broad Oak & Thornhill Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6728,138976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broadwater,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6729,138983,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brockwell's Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6730,169724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Rhyd-y-gwiail,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6731,169725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Talwrn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6732,138978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Brofiscin Quarry, Groes Faen",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6733,138979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bron Aberanerch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6734,138980,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bron-y-Buckley Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6735,138981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Brook Cottage, Llangybi",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6736,138982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broomhill Burrows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6737,169708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bryn-Bach, Cefn Cribwr",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6738,138984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn Alyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6739,395272,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn Coch a Capel Hermon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6740,138985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn Bras,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6741,395271,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn Coch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6742,139288,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cwm Mill Section, Mardy",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6743,138995,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn Euryn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6744,138990,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn Glas Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6745,169707,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn y Gwin Isaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6746,169715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cadnant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6747,139012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cadnant Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6748,169709,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn-bwch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6749,139006,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Aber-Glanhirin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6750,138991,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryn-Llin-Fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6751,138992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bryncarnau Grasslands, Llwydcoed",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6752,138993,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bryngwyn Hall Stables and Coach House,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6753,169716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Blaen-dyffryn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6754,138994,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brynmawr Sections,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6755,183438,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brynna a Wern Tarw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6756,138996,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckland Coach House & Ice House,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6757,174650,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckley Claypits and Commons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6758,138997,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burfa Boglands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6759,138999,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burry Inlet and Loughor Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6760,139000,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bushy Close,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6761,139001,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bwlch Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6762,139002,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bwrdd Arthur,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6763,139003,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caban Lakeside Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6764,139011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Coed-gleision,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6765,139019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Comin Coch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6766,139009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Bryn-tywarch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6767,139010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Cilmaenllwyd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6768,139014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Cwm-rhocas (Cwm Roches Meadow),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6769,139015,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Cwm-tywyll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6770,139016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Ffos-yr-odyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6771,139017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Gwernllertai,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6772,555545405,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Bryn Ifor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6773,139018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Gwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6774,139026,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Gwynfryn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6775,139020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Henfron,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6776,169719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Cefn Cribwr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6777,139102,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Clemenstone Meadows, Wick",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6778,139022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Llwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6779,139024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Penmaes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6780,139023,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Maes-y-ffynnon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6781,139025,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Pwll-y-bo,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6782,139038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Cwm-Ffrwd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6783,139103,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cliff Wood - Golden Stairs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6784,139027,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae Ty-hen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6785,139028,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae'r Felin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6786,139029,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cae'r Meirch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6787,139030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Afon Gwili,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6788,395273,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Blaen-Bielly,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6789,139046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Cwmcoynant (Caeau Cwncaenant),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6790,169717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Blaen-bydernyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6791,139032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Blaen-yr-Orfa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6792,169720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Fferm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6793,139007,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Blaenau-mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6794,139040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Ffos Fach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6795,139039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Bronydd-mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6796,139042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Llety-cybi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6797,139008,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Bryn-du,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6798,169718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Bwlch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6799,139034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Capel Hendre,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6800,555545406,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Caradog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6801,139035,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Clochfaen-Isaf (Clochfaen-isaf Fields),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6802,139036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Cnwch a Ty'n-y-graig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6803,139037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Coed Mawr (Coedmawr Fields),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6804,193720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Caeau Crug Bychan, Ty Gwyn a Llwyn Ysgaw",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6805,139041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Glyn (Glyn Fields),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6806,395274,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Heol y Llidiart-coch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6807,169721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Hirnant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6808,139043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Llwyn Gwrgan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6809,139044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Lotwen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6810,139045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Nant Garenig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6811,139052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Nant y Llechau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6812,169722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Nantsais,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6813,139047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Pant-y-Bryn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6814,169723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Pen-y-coed,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6815,139049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Tan y Bwlch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6816,139068,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castell Prysor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6817,139033,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Tir-mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6818,139050,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Ton-y-fildre,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6819,139051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Troed-Rhiw-Drain (Troed-Rhiw-Drain Meadows),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6820,139059,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Ty'n-llwyni,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6821,555545407,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castell Y Waun a'i Barcdir / Chirk Castle and Parkland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6822,139104,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clogau Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6823,169726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Ty-mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6824,139054,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Tyddyn Dicwm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6825,139055,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Wern,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6826,174654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ceunant Aberderfel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6827,139086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ceunant Cynfal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6828,139087,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ceunant Dulyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6829,139056,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caer Llan Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6830,139057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caerau Uchaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6831,169751,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwarel Cwm Hirnant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6832,139058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caerwys Tufa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6833,139060,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cappas Lwyd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6834,139061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carew Castle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6835,139063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carmel Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6836,139064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn Gafallt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6837,169732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn Ingli,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6838,139065,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carreg Cennen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6839,139066,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carreg y Llam,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6840,139067,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castell Coch Woodlands and Road Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6841,139070,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castlemartin Corse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6842,139075,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castlemartin Range,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6843,139071,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caswell Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6844,169752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwareli Gelli-grin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6845,139072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cathedine Common Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6846,139073,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cefn Blaenau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6847,139074,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cefn Bryn Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6848,139077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cefn Gwrhyd, Rhydyfro",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6849,139078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cefn Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6850,395275,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cefn Onn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6851,169743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cefn Rofft,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6852,139080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cefn y Brithdir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6853,139081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cefndeuddwr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6854,139083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cemlyn Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6855,139084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cernydd Carmel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6856,395276,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwarel Gwenithfaen Madoc,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6857,139085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cerrig-gwalch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6858,139091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwarel Pant Glas,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6859,139092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwarel Ponterwyd (Ponterwyd Quarry),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6860,139791,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Treffgarne Gorge & Tors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6861,169744,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ceunant Twymyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6862,139089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwarel Bryn Banc (Bryn Bank Quarry),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6863,555545404,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Chwarel Cambrian / Cambrian Quarry, Gwernmynydd",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6864,139315,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwareli a glaswelltir Degannwy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6865,139099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chwythlyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6866,169753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ciliau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6867,139097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cilwrgi Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6868,169754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cilybebyll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6869,139110,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Aberdulas,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6870,139105,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleddon Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6871,139117,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Aberedw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6872,139112,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Afon Crewi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6873,139113,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Afon Pumryd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6874,139100,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleddon Shoots Woodland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6875,139101,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clegir Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6876,139114,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Allt Craig Arth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6877,139111,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clogwynygarreg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6878,139106,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cloy Brook Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6879,169761,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cnap Twt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6880,139107,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cobbler's Plain Meadows, Devauden",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6881,139108,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed A Gweunydd Gilfach-gwyddil,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6882,139120,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Cae-Awr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6883,139109,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Aber Artro,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6884,139115,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Allt Lan-las,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6885,139122,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Cochion Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6886,139116,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Blaen-y-cwm (Blaen-y-cwm Wood),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6887,139118,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Bryn-Person,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6888,139119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Byrwydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6889,139123,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Coed Copi'r Graig,",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6890,139131,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Cors y Gedol,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6891,139126,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Cwm Cletwr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6892,139127,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Coed Cwm Du, Cilmaengwyn",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6893,169763,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Cwm Einion,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6894,139138,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Dyrysiog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6895,139132,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Elernion,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6896,139152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Nant-y-merddyn-uchaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6897,139133,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Ffordd-Las,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6898,139135,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Gorswen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6899,139136,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Graig Uchaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6900,139137,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Gwempa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6901,139153,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Pentre (Pentre Wood),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6902,139154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Talon Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6903,139144,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Hafod-fraith,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6904,139139,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Llandyfan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6905,139140,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Llechwedd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6906,139142,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Lletywalter,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6907,139143,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Llys-Aled,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6908,139147,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Merchlyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6909,139148,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Mynachlog-fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6910,139149,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Nant Llolwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6911,139150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Nant Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6912,139157,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Nant Menascin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6913,139155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Trefraith,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6914,139156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Tremadog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6915,139164,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Ty-canol (Tycanol Wood),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6916,139158,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Ty-mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6917,139159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Tyddyn-du,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6918,139161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Bedw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6919,139162,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Bwl,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6920,139166,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Crychydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6921,139167,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Gell and Morfa Dulas,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6922,139168,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Gofer,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6923,139163,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Cefn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6924,139171,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Cerrig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6925,139169,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Gopa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6926,139165,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Ciliau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6927,139170,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Lawnt a Coed Oli,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6928,139189,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedymwstwr Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6929,139177,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed y Rhygen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6930,139160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed Ynys-Faen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6931,139172,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed yr Allt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6932,139174,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed-mawr Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6933,139173,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed yr Allt-goch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6934,139436,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Nanmor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6935,183449,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Nantgwynant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6936,139175,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed-y-Darren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6937,139176,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coed-y-Person,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6938,139185,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd a Cheunant Rheidol (Rheidol Woods & Gorge),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6939,139191,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd a Chorsydd Aber Teifi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6940,139178,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Aber,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6941,139179,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Abergwynant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6942,139555,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd ac Ogofau Elwy a Meirchion,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6943,139180,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Afon Menai,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6944,139971,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Beddgelert a Cheunant Aberglaslyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6945,169764,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Capel Dyddgen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6946,139094,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd De Dyffryn Maentwrog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6947,183448,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Derw Elwy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6948,183439,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Dyffryn Alwen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6949,139183,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Dyffryn Ffesiniog (Gogleddol),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6950,139782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Dyffryn Wnion,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6951,139186,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Glannau a Cwm Coel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6952,139182,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Llawr-y-glyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6953,139184,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd Tregyb,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6954,395277,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedydd y Barri/Barry Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6955,169765,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cog Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6956,139197,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colwyn Brook Marshes (North & South),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6957,139192,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Comin Esgairmaen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6958,395278,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Comin Helygain a Glaswelltiroedd Treffynnon/Halkyn Common and Holywell Greassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6959,139195,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Comins Tre-rhos (Tre-rhos Common),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6960,169770,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Connah's Quay Ponds and Woodland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6961,139196,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coombe Valley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6962,139204,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corndon Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6963,139200,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Bodeilio,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6964,139201,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Bodwrog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6965,139326,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dylife Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6966,174657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Bryn-y-gaer,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6967,139295,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cwm-Ton, Glascoed",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6968,139202,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Bwlch-y-baedd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6969,139203,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Cae'r Neuadd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6970,169809,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dolorgan Barn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6971,139332,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Earlswood Road Cutting and Ferryboat Inn Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6972,139210,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Caranod,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6973,139206,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Caron,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6974,169774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Cefn Llwyd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6975,139264,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Crymlyn/Crymlyn Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6976,139209,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Farchwel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6977,139215,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Farlais,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6978,139211,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Geirch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6979,139328,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Aberthaw Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6980,139329,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eglwys Nunydd Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6981,139212,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Geuallt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6982,139213,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Goch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6983,139221,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Gorsgoch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6984,139214,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cors Goch, Llanllwch",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6985,139333,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Erwood Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6986,139216,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Graianog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6987,139217,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Gyfelog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6988,139253,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigypistyll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6989,139249,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cregennen a Pared y Cefn Hir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6990,139218,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Hirdre,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6991,139219,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Lawnt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6992,139250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creigiau Aberarth-Morfa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6993,139251,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creigiau Abergwaun (Fishguard Cliffs),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6994,139252,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creigiau Cwm-Ceriw a Ffos-las (Morfa Bychan),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6995,139220,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Llanllugan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6996,139222,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Llyn Coethlyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6997,169775,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Llanllyfni,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6998,139228,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Llyferin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -6999,139069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eryri,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7000,139334,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Esgyrn Bottom,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7001,139223,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Llyn Farch a Llyn Fanod,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7002,169776,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Nantcwnlle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7003,139224,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Penally (Penally Marsh),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7004,139225,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Penbwlch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7005,139227,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Ty-gwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7006,139226,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Ty-Llwyd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7007,139262,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crug Farm Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7008,139317,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dolyhir Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7009,139229,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors y Farl,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7010,139234,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors Y Llyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7011,169798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwar yr Ystrad a Cwar Blaen-dyffryn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7012,555560495,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwarrau Ton Mawr a Ffynnon Taf - Ton Mawr and Taffs Wells Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7013,139230,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors y Sarnau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7014,139231,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors y Sychnant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7015,139232,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsydd Llanbrynmair (Llanbrynmair Moors),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7016,174658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cors y Wlad,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7017,139233,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsydd Llangloffan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7018,169778,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsydd Nug a Merddwr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7019,174659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Courthouse Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7020,139318,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dolyhir Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7021,139319,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dowrog Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7022,169777,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsydd a Rwyth Cilyblaidd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7023,169783,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crabtree Green Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7024,139095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cil-y-groeslwyd Woods, Eyarth Woods & Rocks & Craig Adwy-wyn",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7025,139240,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Wen/Cors Castell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7026,139247,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig y Benglog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7027,139243,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig y Rhiwarth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7028,169784,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig yr Aderyn (Bird's rock),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7029,139254,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creigiau Llansteffan (Llanstephan Cliffs),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7030,139256,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creigiau Pen y graig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7031,139471,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creigiau Rhiwledyn/Little Orme's Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7032,139259,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crest Mawr Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7033,139380,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creuddyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7034,139261,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croes Robert Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7035,139263,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crychan Forest Tracks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7036,139265,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crymlyn Burrows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7037,139272,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cutiau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7038,139277,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cwm Cydfin, Leckwith",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7039,139267,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwar Glas Quarry and Sawdde Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7040,139268,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cwm Bach, Sychpant",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7041,139270,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Cadlan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7042,139273,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Clydach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7043,169799,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Cwm Clydach, Cydweli",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7044,139275,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Craig-ddu Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7045,139276,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Crymlyn Road Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7046,139278,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Cyffog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7047,139284,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Cynfal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7048,395280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Dewi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7049,139279,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Doethie - Mynydd Mallaen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7050,139280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Du Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7051,139285,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Llanwenarth Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7052,139286,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Llyfnant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7053,139287,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Merddog Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7054,139296,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Risca Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7055,139291,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Taf Fechan Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7056,139292,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm Twrch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7057,139293,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm yr Abbey Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7058,139302,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwm-gwanon Dingle and Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7059,169800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwmsaise,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7060,139297,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cwmsymlog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7061,139459,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cynffig/Kenfig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7062,139298,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cynwyd Forest Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7063,139556,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dale and South Marloes Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7064,139300,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Dan y Graig Quarry, Risca",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7065,139301,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dan-Lan-Y-Castell Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7066,139309,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Daren Fach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7067,139303,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Daren y Dimbath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7068,139305,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ddol Uchaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7069,139384,United Kingdom,Common Standards Monitoring,2013,For storage only,18,De Porth Sain Ffraid/St Bride's Bay South,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7070,169804,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dee Estuary/Aber Afon Dyfrdwy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7071,139310,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Derwen-fach Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7072,139312,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dinas Dinlle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7073,139313,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dinefwr Estate,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7074,139314,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dinham Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7075,395281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dol-cyn-afon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7076,139321,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dolau Hafod a Winllan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7077,139316,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dolaucothi Gold Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7078,139320,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drostre Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7079,174665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duhonw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7080,139323,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dwrhyd Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7081,139324,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dyffryn Gwaun,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7082,169815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dyffrynnoedd Nedd a Mellte a Moel Penderyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7083,139325,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dyfi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7084,139330,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eidda Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7085,395282,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eithinog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7086,139331,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elenydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7087,139338,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ely Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7088,169830,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ewenny and Pant Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7089,555560496,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fachwen Isaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7090,139335,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Fairwood, Pengwern and Welshmoor Commons",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7091,139336,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fairy Glen Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7092,139343,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Far Hall Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7093,139341,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Felin Fach Meadows, Cwmgwili",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7094,169835,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Felin Llwyngwair,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7095,169836,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Fenn's Whixall, Bettisfield, Wem and Cadney Mosses (Wales)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7096,139349,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ffair Fach Railway Cutting and River Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7097,174666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fferam Uchaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7098,139345,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ffordd Coed Dol-Fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7099,395283,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fforest Goch Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7100,139289,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fforestganol a Cwm Nofydd Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7101,139348,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ffridd Mathrafal Track Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7102,139353,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Figyn Blaen-Brefi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7103,139354,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flat Holm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7104,169838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ffriddoedd Garndolbenmaen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7105,139351,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ffynnon Beuno and Cae Gwyn Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7106,139352,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fiddlers Elbow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7107,169843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foel Ispri,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7108,139360,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gallt-y-Bwlch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7109,139134,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ganllwyd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7110,92992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foxwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7111,139366,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gas Works Lane Section (Haverfordwest),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7112,139374,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gatewen Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7113,139368,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gilwern Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7114,139369,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glais Moraine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7115,139370,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glamorgan Canal / Long Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7116,139371,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glan Pibwr Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7117,139372,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glan-traeth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7118,174669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glanfedw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7119,169857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glanllynnau a Glannau Pen-ychain i Gricieth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7120,139379,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Aberdaron,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7121,193722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glannau Penmon-Biwmares,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7122,169859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glanrhocca,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7123,139394,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Graig Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7124,555560497,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Glascoed, Meifod",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7125,139376,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glascwm and Gladestry Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7126,139378,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glaslyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7127,555560498,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glaswelltir Trelogan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7128,169869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Granllyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7129,139383,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Gorsllwyn, Onllwyn",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7130,139385,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gower Coast: Rhossili to Porteynon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7131,555560499,United Kingdom,Common Standards Monitoring,2013,For storage only,18,GreatTor (Three Cliffs Bay),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7132,139386,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Graig Fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7133,139237,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Graig Fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7134,139387,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Graig Fawr, Pontardulais",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7135,139393,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gregynog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7136,169876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gro Ty'n yr Helyg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7137,169877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gro Ystwyth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7138,139389,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Graig Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7139,169866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Graig, Llanarmon-yn-Ial",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7140,139390,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grassholm/Ynys Gwales,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7141,139400,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gronant Dunes and Talacre Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7142,139395,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gungrog Flash,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7143,139397,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Bwlch Hafod-y-gog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7144,139398,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Cilgwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7145,139403,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Llan (Llan Pastures),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7146,174671,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Efail Wig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7147,139406,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Efail-Llwydiarth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7148,395285,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Gledyr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7149,139404,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Llwyn-gwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7150,139405,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Pen-lan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7151,139412,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Troed-rhiw-seiri a Llyn Mynydd-gorddu,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7152,139407,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Wern-y-wig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7153,139408,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwaun Ystrad Caron,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7154,139409,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwenfro and Rhos y Gad,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7155,139410,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwent Levels - Magor and Undy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7156,139411,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwent Levels - Nash and Goldcliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7157,139418,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwent Levels - Redwick and Llandevenny,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7158,139414,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Gwent Levels - St, Brides",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7159,139415,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwent Levels - Whitson,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7160,139416,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwern-y-brain Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7161,139417,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwern-yfed-fach Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7162,139424,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwernaffel Dingle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7163,139433,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd a Choed Pen-Ty (Pen-Ty Pastures & Wood),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7164,169881,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Blaencleddau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7165,169880,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwernydd Penbre,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7166,328954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Camnant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7167,169882,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Ceunant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7168,139419,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Coch-y-dwst,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7169,139422,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Dwfnant (Dwfnant Pasture),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7170,139420,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Crychell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7171,169883,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Dolwen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7172,169884,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Dyffryn Nedd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7173,139423,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Dyfnant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7174,139430,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Esgairdraenllwyn (Esgairdraenllwyn Pastures),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7175,169885,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Ger Fronhaul,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7176,169886,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Nant y Dernol,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7177,139425,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Glan-y-glasnant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7178,139426,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Hendre Eynon (Hendre Eynon Pastures),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7179,139427,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Llechwedd-newydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7180,139428,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Pen-y-Coed,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7181,139429,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Pendinas,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7182,139435,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Penstrowed,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7183,139431,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Ty'n-y-Llidiart,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7184,169887,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gyfartha,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7185,139437,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hafod Wennol Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7186,139432,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gweunydd Ty-Brith (Ty-Brith Meadows),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7187,395286,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwlyptiroedd Casnewydd / Newport Wetlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7188,139434,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwrhyd Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7189,139441,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwydir Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7190,138955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwynfynydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7191,139439,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Halfway Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7192,139440,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hanmer Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7193,139444,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hen Berth Fron-Badarn a Phersondy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7194,139445,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hen-allt Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7195,139452,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollybush Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7196,139446,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Henborth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7197,139453,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hook Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7198,169908,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Horton, Eastern and Western Slade",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7199,169897,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hendre Bach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7200,139460,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Howey Brook Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7201,139455,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Illtyd Pools,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7202,139545,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lower Nex Meadows, Devauden",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7203,139454,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hendre, Llangedwyn",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7204,139448,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Henllys Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7205,169977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lydstep Head to Tenby Burrows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7206,139540,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maelienydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7207,139450,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hermon Copper Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7208,174672,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Herward Smithy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7209,139451,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hillington Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7210,139487,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanover Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7211,139456,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ilston Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7212,169913,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Marsh Farm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7213,139457,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ithon Valley Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7214,395287,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Larks Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7215,169950,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llantrisant Common and Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7216,169951,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanymynech and Llynclys Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7217,139458,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jeffreyston Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7218,139466,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingswood Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7219,139461,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lake Wood, Llandrindod Wells",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7220,139463,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langland Bay (Rotherslade),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7221,555545412,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leighton Bat Roosts,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7222,139464,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langstone-Llanmartin Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7223,139481,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanfallteg Track Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7224,139467,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lisvane Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7225,139469,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Hoyle and Hoyle's Mouth Caves & Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7226,139478,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Livox Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7227,169948,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llafar River Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7228,139473,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llan Bwch-llyn Lake,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7229,139475,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanbadrig - Dinas Gynfor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7230,139474,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanbradach Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7231,169949,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanddulas Limestone and Gwrych Castle Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7232,139477,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llandegfedd Resevoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7233,139484,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llandegla Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7234,139479,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Llandeilo, Rhulen and Llanbedr Hills",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7235,139480,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanelwedd Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7236,139482,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Llanfawr Quarries, Llandrindod Wells",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7237,139483,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llanfihangel Moraine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7238,139489,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llangammarch Wells Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7239,174678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llangofan Church,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7240,139495,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llay Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7241,169952,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llofft-y-bardd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7242,139493,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7243,139492,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llety - Wen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7244,139511,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Llech Owain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7245,139494,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llwyn y Celyn Wetland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7246,139501,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llwyn y Coed,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7247,139516,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Padarn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7248,139496,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llwyn-Cus,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7249,174679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llwyn-iarth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7250,169953,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llymwynt Brook Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7251,139497,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Alaw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7252,139498,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Bedydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7253,555560500,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maen Gwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7254,139499,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Bodgylched,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7255,139500,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Bychan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7256,139502,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Creiniog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7257,139573,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moorlands Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7258,139504,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Eiddwen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7259,139505,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Garreg-lwyd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7260,139506,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Glasfryn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7261,139290,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morfa a Chraig Cwm Ivy/Cwm Ivy Marsh and Tor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7262,174684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morfa Abererch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7263,139507,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Goddionduon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7264,139514,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Gwernan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7265,139533,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn y Fawnog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7266,170002,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morfa Dinlle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7267,139576,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morfa Dyffryn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7268,139577,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morfa Harlech,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7269,139509,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Hafodol and Cors Clegyrog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7270,139532,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Llynoedd Tal-y-llechau, (Talley Lakes)",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7271,139578,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Morfa Uchaf, Dyffryn Conwy",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7272,139512,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Llygeirian,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7273,139513,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Llywenan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7274,139521,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Maelog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7275,139515,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7276,139517,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Padrig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7277,139535,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Garth Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7278,139518,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Pencarreg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7279,139520,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Peris,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7280,139527,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Syfaddan (Llangorse Lake),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7281,139522,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Tegid,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7282,139523,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Traffwll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7283,139524,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Ty'n y Llyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7284,139525,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llyn Ty'n y Mynydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7285,139528,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llynnau Bodgynydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7286,139530,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llynnau y Fali : Valley Lakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7287,139235,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llynnoedd Cosmeston,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7288,139531,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llynoedd Ieuan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7289,139539,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Llystyn Isaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7290,139534,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Caerfaelog Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7291,139536,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lower Ground, Penrhos",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7292,139537,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Hael Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7293,139538,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower House Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7294,169980,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maes Hiraddug,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7295,174682,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maes Meillion a Gefail-y-cwm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7296,139585,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mosshill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7297,169981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maes y Grug,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7298,139541,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maes-yr-Uchaf Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7299,139542,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maesyprior,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7300,139543,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Magor Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7301,139544,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Malltraeth Marsh/Cors Ddyga,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7302,139551,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mandinam a Coed Deri,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7303,139546,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Marcheini Uplands, Gilfach Farm & Gamallt",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7304,139548,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Margam Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7305,139547,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marford Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7306,139554,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meidrim Road Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7307,139580,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mountain Cottage Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7308,169985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mariandyrys,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7309,139304,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Milford Haven Waterway,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7310,139550,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marloes Mere,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7311,139553,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mawnog Gwaunynog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7312,139562,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Memorial Park Meadows Pontllanfraith,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7313,139558,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Merthyr Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7314,139559,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Migneint-Arenig-Dduallt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7315,139561,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minchin Hole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7316,139569,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minwear Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7317,139566,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moel Tryfan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7318,139567,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moel y Golfa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7319,139568,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moelwyn Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7320,174683,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moelypenmaen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7321,139574,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moity and Garth Dingles and Fron Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7322,139570,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monknash Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7323,139581,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mountain Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7324,555545410,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muriau Gwyddelod,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7325,174687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Brynrarf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7326,139583,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Castell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7327,174686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwynfgloddfa Ceulan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7328,170006,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Cwmbrwyno,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7329,170007,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Cwmystwyth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7330,395288,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Darren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7331,139590,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Nant-y-cagl (Eaglebrook Mine),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7332,395289,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Erglodd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7333,395290,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Frongoch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7334,174688,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Llechweddhelyg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7335,139584,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Llety Ifan Hen (Vaughan Mine),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7336,174689,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Mynydd-Bach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7337,174690,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Nantiago,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7338,555560501,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Nant y Mwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7339,139596,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Llangyndeyrn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7340,555560503,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Langynidr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7341,170008,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Marian,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7342,395291,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Pennant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7343,555560502,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddfa Esgair Hir ac Esgair Fraith,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7344,139967,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddiau a Chreigiau Gwydyr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7345,193725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddiau Llanfrothen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7346,183450,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mwyngloddia Wnion a Eglwys Sant Marc,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7347,139586,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mylett Road Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7348,139587,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Du (Black Mountain),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7349,174691,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Eppynt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7350,139588,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Hiraethog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7351,139589,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Llangatwg (Mynydd Llangattock),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7352,139594,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Mynydd Ty-Isaf, Rhondda",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7353,139595,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Ystyfflau-Carn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7354,139601,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant Cledlyn Pingos,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7355,170011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant Clydach Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7356,139597,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant Gelliwion Woodland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7357,555545415,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant y Graen a Nant Ganol,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7358,139598,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant Glais Caves,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7359,139599,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant Llech,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7360,139600,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant Whitton Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7361,174692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant y Crimp,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7362,174694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nicholaston Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7363,170012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant-y-rhos,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7364,139608,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nant-y-Belan and Prynela Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7365,174693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nantanog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7366,139602,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nash Lighthouse Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7367,139603,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Nedern Brook Wetlands, Caldicot",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7368,139604,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nelson Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7369,139614,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ogof Ffynnon Ddu-Pant Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7370,139615,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Castle Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7371,170013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Neuadd and Tylelo Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7372,139620,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pandy Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7373,139606,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New Castle Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7374,139607,United Kingdom,Common Standards Monitoring,2013,For storage only,18,New House Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7375,139609,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newborough Warren - Ynys Llanddwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7376,139610,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newmead,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7377,139611,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newport Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7378,170016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newton Court Stable Block,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7379,139618,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ogof Ddu,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7380,139613,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ogof Ffynnon Ddu,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7381,139616,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Cilgwyn and Cae Heslop,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7382,170025,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Pulford Brook Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7383,174697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orielton Stable Block and Sellars,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7384,139617,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oxwich Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7385,139631,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Parc Linden, Lixwm",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7386,139625,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oystermouth Old Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7387,139619,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pandora Reservoirs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7388,174699,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pant Cae Haidd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7389,555560504,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parc Nannau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7390,139670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pont y Fenni Quarry and Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7391,139621,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pant y Panel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7392,139623,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pant-y-Sais,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7393,139626,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parc Pont-faen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7394,139672,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Porth Ceiriad, Porth Neigwl ac Ynysoedd Sant Tudwal",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7395,139673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porth Diana,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7396,139624,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Parc Bodlondeb and Gwenallt-parc, Lixwm",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7397,139677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porth Dinllaen i Borth Pistyll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7398,139627,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parc Seymour Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7399,139629,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park House Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7400,174704,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Porth Towyn i Borth Wen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7401,135064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Millenderdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7402,170039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen Benar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7403,139392,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen y Gogarth/Great Orme's Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7404,139635,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen-cerrig Stream Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7405,139633,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Pen-Common, Llanbedr",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7406,139634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen-Dugwm Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7407,139641,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penarth Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7408,139636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen-y-Cefn Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7409,395292,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen-y-graig-goch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7410,139644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pen-yr-hen-Allt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7411,139638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penard Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7412,139639,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penarth Brook Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7413,139640,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penarth Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7414,139642,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pencarreg-gopa a Moel Hyrddod,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7415,139647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penllergaer Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7416,139648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penllwyn Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7417,139681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pumlumon (Plynlimon),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7418,139649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penllwyn-yr-Hendy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7419,139657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penmaen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7420,139653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penpergwm Pond,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7421,139654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penplas Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7422,139655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penrhos Lligwy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7423,170042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penmaenuchaf Hall,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7424,139652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penmoelallt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7425,139660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pentrosfa Mire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7426,139661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Pentwyn Farm Grasslands, Penallt",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7427,170045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Penycastell, Cefn Cribwr",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7428,139662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penygarnedd Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7429,139669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penylan Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7430,139664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Pierce, Alcove and Piercefield Woods",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7431,170047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pine Lodge Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7432,170048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pistyll Rhaeadr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7433,139687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pysgodlyn Mawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7434,174701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plantation Farm and the Gethley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7435,139665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plas Iolyn Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7436,139666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plas Machen Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7437,174702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plas Maenan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7438,139667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plas-y-Gors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7439,555560505,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plumstone Mountain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7440,139668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pont Bancog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7441,139676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portheiddy Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7442,139678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prestatyn Hillside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7443,139679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Priory Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7444,139680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Puffin Island - Ynys Seiriol,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7445,174705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pwll Lagoon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7446,139688,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pwll Du Head and Bishopston Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7447,139684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pwll-y-wrach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7448,139686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pyllau Machynys (Machynys Ponds),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7449,139692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rectory Meadow - Rogiet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7450,193742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhagnentydd Gwy Uchaf / Upper Wye Triburaties,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7451,139690,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Radnor Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7452,139691,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ramsey/Ynys Ddewi,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7453,139695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhiw-for-fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7454,139696,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Blaen Carrog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7455,139697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Blaenclettwr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7456,139700,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Bryn-wichell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7457,139708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Bwlch-y-rhandir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7458,139702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Cilcennin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7459,135020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Perchhall Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7460,139703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Cross Inn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7461,139705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Cwmsaeson,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7462,135347,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Petershill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7463,139704,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Cruglas,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7464,139722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos yr Hafod,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7465,139706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Dolau-Bran,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7466,139707,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Dwfnant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7467,139714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Esgairwen-fawr a Rhosgoch-fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7468,139725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhoscolyn Reedbed,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7469,139709,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Fullbrook,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7470,139710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Gargoed,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7471,139731,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosydd Llanwrthwl,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7472,395295,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosydd Nant Eithrim,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7473,170068,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Garth-fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7474,139711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Gellie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7475,139712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Glwydwern,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7476,139713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Glyn-yr-helyg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7477,139720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Goch (Rhos Goch Common),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7478,139715,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Hen-Glyn-Isaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7479,139716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Llawr Cwrt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7480,170182,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tryweryn River Sections,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7481,170069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Pant-tyle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7482,139821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Twyni Chwitffordd, Morfa Landim“r a Bae Brychdwn/Whiteford Burrows, Landimore Marsh and Broughton Ba",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7483,139717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Penrhiw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7484,170070,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosydd Nant-yr-henfron,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7485,139718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Pil-bach a Pennar-fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7486,193743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosydd Yerbeston / Yerbeston Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7487,139465,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Twyni Lacharn-Pentywyn/Laugharne and Pendine Burrows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7488,395298,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ty Bach Ystlumod,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7489,139719,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Pwllygawnen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7490,139765,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stormy Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7491,170181,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ty Croes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7492,139726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Rhyd-y-ceir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7493,174706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhychell Uchaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7494,170192,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ty Du Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7495,139721,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Talglas a Chors yr Hafod,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7496,395293,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos Tonyrefail,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7497,139777,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teilia Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7498,170152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tenby Cliffs and St. Catherine's Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7499,138958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Offshore Inlets of Pembrokeshire/Ynysoedd Glannau Penfro,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7500,139723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhos-Rydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7501,139732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosgyll Fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7502,139747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salbri,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7503,139745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Severn Estuary (Wales),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7504,139727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosneigr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7505,139728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosneigr Reefs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7506,139729,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhossili Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7507,139730,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosydd Castell-du & Plas-y-bettws,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7508,555545408,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosydd Llanddona,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7509,395294,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosydd Llanpumsaint,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7510,139733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhymney River Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7511,139734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ritec Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7512,174708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Ithon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7513,170086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Lugg (Wales),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7514,170092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Teme,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7515,170096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Usk (Lower Usk)/ Afon Wysg (Wysg Isaf),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7516,170097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Usk (Upper Usk)/Afon Wysg (Wysg Uchaf),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7517,170098,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Wye (Lower Wye)/Afon Gwy (Gwy Isaf),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7518,174709,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Wye (Tributaries)/Afon Gwy (Isafonydd),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7519,170099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Wye (Upper Wye)/Afon Gwy (Gwy Uchaf),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7520,139738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Robeston Wathen Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7521,174710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Rose Cottage, Llethrid",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7522,139739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roundton Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7523,139740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ruabon/Llantysilio Mountains and Minera,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7524,139741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rumney Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7525,555545414,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ruperra Castle & Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7526,395296,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sgitiau Glas Ynys Mon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7527,139746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shell Brook Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7528,139752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Slebech Stable Yard Loft, Cellars & Tunnels",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7529,139753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shoalshook Railway Cutting and Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7530,170120,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shotton Lagoons and Reedbeds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7531,139748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Siambre Ddu,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7532,139749,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skokholm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7533,139750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skomer Island & Middleholm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7534,174712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Sluxton Marsh, Whitemoor",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7535,139758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Smarts Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7536,139754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sontley Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7537,139755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southerndown Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7538,139756,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spy Wood and Aldress Dingle (Wales),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7539,139759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St. David's Airfield Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7540,139760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St. David's Peninsula Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7541,139762,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St. Margaret's Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7542,139761,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stackpole,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7543,139764,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stanner Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7544,139766,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strawberry Cottage Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7545,139772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strumble Head - Llechdafad Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7546,170146,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stryt Las a'r Hafod,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7547,139768,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sugar Loaf Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7548,139769,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sully Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7549,139771,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sychnant Pass,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7550,193726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tairgwaith,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7551,139773,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Talhenbont,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7552,139775,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tan y Grisiau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7553,139787,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tre'r Gof,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7554,139788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trecoed/Castle Crab,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7555,139802,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ty'n y Ffordd Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7556,139789,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trefeiddian Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7557,139790,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Treffgarne Bridge Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7558,139796,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tretio Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7559,170177,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trewern Brook (Wales),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7560,395300,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyllau Mwn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7561,139798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyn Llan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7562,170180,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trum y Ddysgl,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7563,139794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trwyn Dwlban,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7564,395297,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trychiad Ffordd Coed Llyn-y-Garnedd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7565,193727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trychiad Ffordd Craig Fach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7566,193728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trychiad Ffordd Moel Hafod-Owen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7567,139795,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Twenty-five Acre Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7568,395299,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ty'r Hen Forwyn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7569,555560507,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyddyn Gyrfer,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7570,170197,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Chapel Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7571,139797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyddyn y Waen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7572,139800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Nantserth Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7573,139801,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Wye Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7574,170193,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyddyn-y-barcut,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7575,170194,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyncoed Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7576,139799,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tywyn Aberffraw,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7577,139809,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Vicarage Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7578,139803,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Vicarage Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7579,170204,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waen Rydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7580,170205,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wallis Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7581,139804,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waun Cimla,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7582,139805,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waun Cwm Calch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7583,139806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waun Eurad,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7584,139807,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Waun Fawr, Puncheston",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7585,139808,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Waun Fawr, Ty Ddewi",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7586,139823,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wye Valley Lesser Horseshoe Bat,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7587,170241,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wyndrush Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7588,174722,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Y Foryd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7589,555560508,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waun Goch - Penrhiw Cradog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7590,139816,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waun Ton-y-spyddaden,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7591,555595732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coedwig Ffosil Brymbo,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7592,139810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waun-Ddu,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7593,555595733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fferm Walters,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7594,139811,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waun-fawr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7595,170212,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Waun-fawr, Cefn Cribwr",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7596,139814,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wern Ddu Claypits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7597,139815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wern Road Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7598,139822,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wernbongam Stream Section and Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7599,139818,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Llangynog Slate Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7600,139820,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Grit Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7601,139828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitehill Down,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7602,183451,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wig Bach a'r Glannau I Borth Alwm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7603,170236,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodland Park and Pontypren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7604,139824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Y Glyn-diffwys,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7605,139825,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Y Gors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7606,139826,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Y Werthyr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7607,139834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ydw Valley and Fron Road Geological Exposures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7608,139829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ynys Enlli: Bardsey Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7609,139830,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ynys Feurig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7610,139831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ynys Uchaf,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7611,139833,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ynysoedd y Gwylanod: Gwylan Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7612,174723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yr Arddu,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7613,139840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yr Eifl,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7614,555560509,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ysbyty Bron y Garth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7615,555560510,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ysgeifiog Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7616,139698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhosydd Bryn y Maen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7617,555560534,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caeau Nant-y-groes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7618,139004,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cadair Idris,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7619,139413,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gwent Levels - Rumney and Peterstone,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7620,139311,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dinas Bran,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7621,555595734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cerrig y gweunydd,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7622,555545502,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Woodburn Reservoir,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7623,555595735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mynydd Llangatwg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7624,555595736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meeting House Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7625,135759,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bin Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7626,555545503,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Woodburn Reservoir,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7627,139962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birk Knowes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7628,139963,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birkenhead Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7629,555545518,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clarehill,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7630,174668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fymore Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7631,135714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blairbeich Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7632,135987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blar nam Faoileag,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7633,135706,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blood Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7634,135635,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bonawe to Cadderlie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7635,135647,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Borgue Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7636,136154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bornish and Ormiclate Machairs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7637,135659,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bothwell Castle Grounds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7638,139838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boturich Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7639,136047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Achanarras Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7640,136128,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Achmore Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7641,135991,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Achnasheen Terraces,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7642,135482,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Adderstonlee Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7643,136074,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Affric - Cannich Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7644,135284,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardblair and Myreside Fens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7645,135100,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardchyline Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7646,135628,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Afton Lodge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7647,135215,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Agassiz Rock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7648,135680,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ailsa Craig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7649,136102,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aird Thuirinis - Port na Long,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7650,136003,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aird Torrisdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7651,135562,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardwall Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7652,136076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Armadale Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7653,135205,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arnprior Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7654,135671,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arran Northern Mountains,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7655,135249,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Arthur's Seat Volcano,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7656,135739,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Artilligan and Abhainn Srathain Burns,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7657,139928,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Attadale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7658,135235,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Airhouse Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7659,135142,United Kingdom,Common Standards Monitoring,2013,For storage only,18,A' Mhoine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7660,139961,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abbey Burn Foot to Balcary Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7661,135495,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Akermoor Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7662,135410,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aldclune and Invervack Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7663,135166,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abbey Craig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7664,169631,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abbey St Bathans Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7665,135918,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abernethy Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7666,135981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Abhainn Alligin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7667,135929,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill of Warehouse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7668,136028,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ach an Todhair,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7669,136193,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holborn Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7670,139952,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Achanalt Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7671,135586,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Airds of Kells Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7672,135475,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holl Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7673,135818,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Holm of Papa Westray,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7674,135073,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aldons Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7675,135414,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Allan Water, Hillhead",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7676,135634,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hough Bay and Balevullin Machair,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7677,135365,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alemoor West Loch and Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7678,136121,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alladale Pinewood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7679,136007,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt na Feithe Sheilich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7680,135957,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt nan Caorach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7681,135007,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt a' Choire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7682,136162,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt nan Carnan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7683,136120,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Bholagair,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7684,135524,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Broighleachan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7685,135225,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Almondbank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7686,135945,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alness River Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7687,135298,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inchcoonans Claypit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7688,135028,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Coire Chailein,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7689,135565,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auchalton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7690,136182,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Cracaig Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7691,136059,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Geodh' a' Ghamhna,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7692,136068,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Grillan Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7693,139965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auchencairn and Orchardton Bays,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7694,135022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Molach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7695,135751,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auchensail Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7696,137017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Allt Mor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7697,136010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Altnaharra,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7698,135894,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Alvie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7699,136088,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Amat Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7700,135928,United Kingdom,Common Standards Monitoring,2013,For storage only,18,An Cleireach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7701,135948,United Kingdom,Common Standards Monitoring,2013,For storage only,18,An Teallach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7702,135594,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ard Bheinn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7703,136187,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ard Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7704,135670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ard Trilleachan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7705,135564,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardalanish Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7706,136209,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardersier Glacial Deposits,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7707,135151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardgour Pinewoods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7708,136101,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardlair - Letterewe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7709,135593,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardmeanach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7710,135749,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Ardmore, Kildalton and Callumkill Woodlands",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7711,135932,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardnamurchan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7712,139945,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardpatrick and Dunmore Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7713,135539,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardrossan to Saltcoats Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7714,135668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardtun Leaf Beds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7715,139854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardura - Auchnacraig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7716,136077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardvar Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7717,135655,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashgrove Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7718,135496,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ashkirk Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7719,135070,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auchencorth Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7720,139942,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auchrochar Wetlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7721,139937,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auchterhouse Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7722,135434,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aucheneck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7723,136027,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aultbea,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7724,135150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auskerry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7725,135426,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avenel Hill and Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7726,135944,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avernish,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7727,169661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Avon Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7728,135734,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Auchenreoch Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7729,134965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bailliewhirr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7730,135370,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballagan Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7731,139895,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballantrae Shingle Beach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7732,135228,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballanucater,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7733,136067,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballinreach Coastal Gorges,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7734,135345,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballo and Harperleas Reservoirs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7735,135299,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balerno Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7736,136133,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baleshare and Kirkibost,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7737,135319,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balglass Corries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7738,135255,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballyoukan Juniper Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7739,134972,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balmedie Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7740,135328,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balmerino - Wormit Shore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7741,135531,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balnabraid Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7742,135322,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Loch (Cleish),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7743,139944,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balnagrantach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7744,135490,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balnaguard Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7745,135301,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balquhidderock Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7746,136130,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balranald Bog and Loch nam Feithean,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7747,135337,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balshando Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7748,135398,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blacklaw Hill Mire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7749,135822,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Balta,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7750,135340,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bangley Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7751,135335,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bankhead Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7752,136107,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banniskirk Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7753,136123,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baosbheinn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7754,135645,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7755,135544,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barlosh Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7756,135527,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barmufflock Dam,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7757,135185,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bass Rock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7758,135085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bay of Skaill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7759,136140,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beauly Firth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7760,135968,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn a' Chapuill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7761,135341,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn a' Ghlo,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7762,135300,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tynaspirit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7763,135437,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn a' Chuallaich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7764,135092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn an Lochain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7765,135956,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Bhan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7766,136177,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Dearg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7767,135941,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beinn Freiceadain and Ben Dorrery,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7768,135123,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bell's Flow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7769,135343,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Loch (Abdie),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7770,135711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bellochantuy and Tangy Gorges,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7771,135103,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bellscamphie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7772,135358,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bemersyde Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7773,135797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Alder and Aonach Beag,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7774,135505,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben A'an and Brenachoile Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7775,135303,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Chonzie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7776,136084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Griams,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7777,135254,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Heasgarnich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7778,136190,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Hope,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7779,136051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ben Hutig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7780,135578,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benbeoch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7781,135622,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benlister Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7782,135087,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bennane Head Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7783,135725,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bernera Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7784,136156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berriedale Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7785,136160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berriedale Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7786,135165,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bilston Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7787,135162,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Birks of Aberfeldy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7788,135214,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishop Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7789,135611,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bishop Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7790,135974,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Black Park, Edderton",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7791,135276,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Wood of Rannoch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7792,135456,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Water Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7793,139960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7794,135724,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blantyre Muir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7795,139920,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blar na Caillich Buidhe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7796,135293,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blawhorn Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7797,135354,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blind Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7798,135729,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blood Moss and Slot Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7799,135071,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bo'mains Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7800,135828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bochel Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7801,139913,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bog Wood and Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7802,139848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Boghole, Muckle Burn",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7803,135744,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bogside Flats,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7804,139842,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bogton Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7805,135992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boirearaig to Carn Dearg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7806,135326,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bolfracks Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7807,135548,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boylestone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7808,136168,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braelangwell Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7809,169700,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braehead Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7810,169762,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cockinhead Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7811,135443,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Branxholme Easter Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7812,135287,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buckstruther Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7813,139922,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Branxholme Wester Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7814,135896,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breckon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7815,135350,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brerachan Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7816,135522,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bridgend Flats,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7817,135825,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Buinach and Glenlatterach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7818,135863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bullers of Buchan Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7819,135826,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burn of Ballintomb,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7820,135178,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Chriche,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7821,135336,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brig o' Turk Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7822,136008,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Broubster Leans,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7823,135532,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brother and Little Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7824,135986,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Thogabhaig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7825,169766,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coir' an Eoin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7826,135501,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coire Bhachdaidh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7827,136195,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coire na Beinne Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7828,135817,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burn of Benholm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7829,136031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cailleach Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7830,135137,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burn of Lunklet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7831,135814,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burn of Valayre,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7832,135380,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burnmouth Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7833,135049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Byne Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7834,135582,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairnbaber,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7835,135661,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cadder Wilderness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7836,139867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caenlochan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7837,135851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairnbulg to St Combs Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7838,135789,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairngorms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7839,139862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coladoir Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7840,135378,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Coldingham Common, Long Moss",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7841,135376,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairnleith Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7842,135669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairnsmore of Fleet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7843,135424,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cairnwell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7844,134986,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Leith and Myreton Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7845,135640,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caldarvan Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7846,139908,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calder Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7847,135390,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calderwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7848,135848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calf of Eday,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7849,135560,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calgary Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7850,136025,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Calrossie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7851,135925,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cam Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7852,135978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Camas Mor, Muck",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7853,135251,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cambusurich Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7854,139846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cander Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7855,136097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Canna and Sanday,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7856,135029,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cape Wrath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7857,135349,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cameron Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7858,139931,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Camilla Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7859,135450,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carbeth Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7860,136201,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn a' Mhadaidh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7861,134995,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn Gorm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7862,135245,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn Gorm and Meall Garbh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7863,135958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn nan Tri-tighearnan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7864,136139,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carnach Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7865,135330,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cardney Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7866,135433,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carriston Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7867,139892,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carey,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7868,135272,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carie and Cragganester Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7869,135279,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carlingnose,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7870,135946,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn a' Bhealaich Mhoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7871,135537,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carnwath Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7872,135224,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cassindonald Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7873,135407,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carriber Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7874,135615,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7875,136072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle of Old Wick to Craig Hammel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7876,135743,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Semple and Barr Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7877,135039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrick Ponds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7878,135854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Catfirth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7879,136161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrol Rock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7880,134985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Catshawhill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7881,135916,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cawdor Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7882,135435,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Tronach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7883,139849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carron Dams,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7884,135013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carron Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7885,135625,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Central Lochs, Bute",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7886,135877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Central Sanday,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7887,135674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Chanlockfoot,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7888,135689,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7889,135606,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carron Water and Hapland Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7890,135316,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrot Hill Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7891,135334,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carsebreck and Rhynd Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7892,135429,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigdilly,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7893,135900,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigellachie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7894,135658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carsegowan Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7895,135687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carstairs Kames,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7896,135708,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clach Tholl,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7897,135610,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clais Dhearg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7898,135967,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Claish Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7899,135684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carstramon Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7900,135627,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cart and Kittoch Valleys,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7901,135555,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Claonaig Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7902,135517,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cartland Craigs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7903,135603,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clauchlands Point - Corrygills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7904,135571,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleghorn Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7905,135964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ceann Loch Eishort,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7906,135250,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clarilaw Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7907,139926,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clashach - Covesea,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7908,139901,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clatteringshaws Dam Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7909,135709,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7910,135589,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clochodrick Stone,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7911,135888,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clothister Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7912,135017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cnoc a' Chapuill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7913,135014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cnoc an Alaskie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7914,139956,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coalburn Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7915,135119,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cobbinshaw Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7916,135500,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Coire Chuilc,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7917,136058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Dalavil,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7918,136083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Dhubh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7919,135518,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Leitire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7920,136030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Mhialairidh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7921,136163,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Mhor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7922,139918,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coille Phuiteachain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7923,135257,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coldingham Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7924,135101,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coleburn Pasture,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7925,135760,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Collieston to Whinnyfold Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7926,135597,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Craighouse Ravine, Jura",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7927,135233,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Collymoon Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7928,135093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craighoyle Woodland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7929,135431,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Crook Burn, Dyeshaugh",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7930,135183,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Colmsliehill Junipers,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7931,135470,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Comrie Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7932,135191,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Conic Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7933,135167,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Connachan Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7934,135846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Copinsay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7935,135779,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Corby, Lily and Bishops Lochs",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7936,139958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Correen Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7937,135716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corrie Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7938,135609,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corrie Foreshore and Limestone Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7939,135943,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corrieshalloch Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7940,135599,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corsewall Point to Milleur Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7941,135954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cosag Sallow Carr,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7942,135710,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coshogle Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7943,135428,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Royston Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7944,135971,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigroy Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7945,135613,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crossapol and Gunna,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7946,135679,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cotland Plantation,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7947,136116,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coulin Pinewoods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7948,135769,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7949,135905,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coyles of Muick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7950,135203,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cragbank and Wolfehopelee,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7951,139910,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Hammel to Sgaps Geo,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7952,135815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Leek,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7953,135168,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig More,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7954,135693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craighead Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7955,135859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag Dhubh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7956,135011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craig Rossie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7957,135838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag Meagaidh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7958,135152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigallian Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7959,135804,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag nan Gamhainn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7960,139871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigendarroch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7961,137012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigengar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7962,135115,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craighall Den,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7963,135403,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craighall Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7964,135639,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craighead Hill Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7965,135583,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cree Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7966,139882,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crichton Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7967,139907,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigmad Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7968,135374,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigmead Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7969,135078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craignure Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7970,135242,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigs of Lundie and Ardgarth Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7971,135770,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigs of Succoth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7972,135312,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croftintygan Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7973,136039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cromarty Firth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7974,169787,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranley Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7975,139879,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crannach Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7976,135901,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crathie Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7977,135037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crawton Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7978,136145,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag Chorcurach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7979,136066,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag na Croiche,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7980,136166,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag nan Clag,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7981,134982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crossbog Pinewood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7982,135026,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cruach Choireadail,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7983,135794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cruaday Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7984,134999,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cruggleton Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7985,135712,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalavich Oakwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7986,135772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crussa Field and the Heogs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7987,135980,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cuillins,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7988,135220,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cuilvona and Craigmore Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7989,135798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Culbin Sands, Culbin Forest and Findhorn Bay",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7990,135351,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cullaloe Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7991,135889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cullen to Stake Ness Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7992,135856,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Culswick Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7993,139923,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cutties Hillock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7994,135367,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalbeath Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7995,134960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dales Voe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7996,134970,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalsetter,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7997,135782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gull Nest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7998,135157,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalkeith Oakwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -7999,139916,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill of Barra,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8000,135660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalmellington Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8001,135310,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dalveich Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8002,139934,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dam Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8003,134984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Damhead Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8004,135246,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dilty Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8005,135274,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Danskine Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8006,135666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dargavel Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8007,135921,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dipple Brae,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8008,135489,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Darnrig Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8009,135480,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Den of Airlie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8010,139903,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Den of Alyth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8011,135913,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Den of Finella,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8012,134980,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dollar Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8013,135355,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Den of Fowlis,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8014,139880,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dornoch Firth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8015,136179,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fionn Loch Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8016,135268,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Den of Ogil,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8017,139919,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Den of Pitlurg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8018,139955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dryleys Brick Pit,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8019,135264,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duddingston Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8020,135063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dullatur Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8021,135608,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dumbarton Muir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8022,135173,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flanders Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8023,136034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flannan Isles,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8024,135239,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Den of Riechip,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8025,135089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Den Wick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8026,135088,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Denny Muir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8027,139950,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Derskelpin Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8028,135174,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Devon Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8029,135479,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Din Moss and Hoselaw Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8030,135872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dinnet Oakwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8031,135696,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dippin Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8032,136018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dirlot Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8033,136001,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doire Damh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8034,135155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dun Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8035,135394,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fungarth Juniper Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8036,135732,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doire Darach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8037,139954,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doire Dhonn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8038,139905,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doire Donn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8039,135126,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dolphinton - West Linton Fens and Grassland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8040,135809,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Doomy and Whitemaw Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8041,135469,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Double Craigs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8042,135568,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dowalton Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8043,135935,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drimnin to Killundine Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8044,135408,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drone Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8045,135897,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Funzie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8046,136078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Druim Iosal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8047,135145,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Druim na Coibe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8048,139948,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Druim nam Bad,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8049,139924,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dun's Dish,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8050,139909,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Druimindarroch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8051,135506,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumadoon - Tormore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8052,135453,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drummond Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8053,135216,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunalastair Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8054,135423,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gagie Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8055,135776,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gamrie and Pennan Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8056,135232,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gannochy Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8057,135985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drummondreach Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8058,139933,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumochter Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8059,135486,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumore Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8060,139870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garabal Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8061,134973,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumore Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8062,135579,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dryfe Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8063,135662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dumbarton Rock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8064,139959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8065,139851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dumbrock Loch Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8066,135503,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dun Ban,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8067,135172,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dupplin Lakes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8068,135032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Durness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8069,135682,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunaskin Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8070,139860,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunbeath Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8071,136136,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunbeath to Sgaps Geo,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8072,136000,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunbeath Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8073,135090,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eas na Broige,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8074,135461,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunbog Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8075,136071,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Duncansby Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8076,135581,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dundonald Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8077,135552,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dundonald Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8078,139885,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dundonnell Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8079,169817,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Halladale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8080,135118,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Kirkton Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8081,135306,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dundreich Plateau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8082,135161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunhog Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8083,136178,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunnet Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8084,136184,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunnet Links,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8085,136150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunrobin Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8086,135675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunrod Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8087,135422,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Earlshall Muir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8088,135144,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Mires and Lumbister,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8089,135940,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Easter Fearn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8090,135908,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Easter Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8091,136036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Easter Ness Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8092,135188,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Faldonside Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8093,135904,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Easter Rova Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8094,135855,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eastern Cairngorms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8095,134958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Easthaven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8096,135289,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eden Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8097,135577,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Falls of Clyde,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8098,135377,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edinample Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8099,135417,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edinchip Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8100,139899,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eigg - An Sgurr and Gleann Charadail,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8101,134969,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eigg - Cleadale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8102,134997,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eigg - Laig to Kildonnan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8103,136080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eilean Chlamail - Camas nan Ceann,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8104,135636,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eilean na Muice Duibhe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8105,136159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eilean nan Ron,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8106,135952,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elgol Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8107,135601,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ellary Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8108,137015,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ellergower Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8109,135180,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Elliot Links,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8110,137011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Endrick Mouth and Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8111,136173,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eoligarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8112,136185,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eriboll,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8113,134968,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eshaness Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8114,135808,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eslie Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8115,135774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eynhallow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8116,139873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eyre Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8117,135922,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fair Isle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8118,135499,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fairy Knowe and Doon Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8119,135273,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Falls of Dochart,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8120,135195,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fala Flow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8121,135965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fannich Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8122,135194,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fearnan Cowpark,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8123,135592,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Feoch Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8124,135444,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ferry Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8125,135572,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Feur Lochain - Moine nam Faoileann,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8126,135632,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fiddler Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8127,134994,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Findhorn Terraces,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8128,135899,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Findon Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8129,135771,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Findrassie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8130,135314,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Finlarig Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8131,135363,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fintulich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8132,135400,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fleecefaulds Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8133,135405,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flisk Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8134,135745,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nith Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8135,135702,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Flow of Dergoals,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8136,135058,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fodderletter,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8137,136147,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foinaven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8138,135372,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forest Muir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8139,135471,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forest of Alyth Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8140,135595,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Formakin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8141,136199,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forsinard Bogs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8142,135208,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forth Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8143,135638,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fossil Grove,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8144,135911,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foula,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8145,135046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foula Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8146,139841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North East Coll Lochs and Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8147,135309,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foulden Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8148,135056,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fountainhead,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8149,135852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Foveran Links,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8150,135923,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fowlsheugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8151,135890,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fugla Ness - North Roe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8152,135644,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North End of Bute,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8153,136099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garbh Allt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8154,134992,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Esk and West Water Palaeochannels,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8155,135176,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Esk Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8156,135843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Fetlar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8157,135149,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garbh Choire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8158,135209,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gattonside Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8159,135389,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garleton Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8160,135043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garpel Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8161,135604,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garrion Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8162,135810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garron Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8163,139835,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garry Falls,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8164,135950,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gartally Limestone Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8165,135170,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gartfarran Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8166,135439,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gartmorn Dam,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8167,135266,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gartwhinzean Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8168,135728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garvellachs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8169,135515,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Geal and Dubh Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8170,136164,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Geary Ravine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8171,135766,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gight Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8172,135829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Sandwick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8173,135858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Northern Corries, Cairngorms",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8174,136063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northton Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8175,135569,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Geilston Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8176,135767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Geordie Craigs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8177,135700,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gills Burn and Mare Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8178,135516,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Girvan to Ballantrae Coast Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8179,135707,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glac na Criche,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8180,135467,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gladhouse Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8181,135477,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glas Tulaichean,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8182,135618,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gleann Dubh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8183,135989,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Affric,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8184,135962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Barisdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8185,135673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Loin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8186,135621,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8187,135519,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Nant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8188,135218,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Queich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8189,135762,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Ralloch to Baravalla Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8190,136138,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Strathfarrar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8191,135792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Tanar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8192,136050,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Tarff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8193,135359,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Tilt Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8194,135805,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Northwall,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8195,139943,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Norwick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8196,136117,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Valtos,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8197,135247,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenartney Juniper Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8198,136043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Coe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8199,135545,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glendaruel Wood and Crags,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8200,135140,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glendoe Lochans,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8201,135404,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gleneagles Mire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8202,135445,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenkinnon Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8203,135280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gordon Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8204,135849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Green Hill of Strathdon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8205,135418,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenlaw Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8206,139843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nut Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8207,136186,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ob Lusa to Ardnish,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8208,135596,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenock Mains,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8209,135003,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grennan Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8210,135960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gress Saltings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8211,135626,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gribun Shore and Crags,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8212,135211,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grieston Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8213,135120,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grudie Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8214,135758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gruinart Flats,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8215,137016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Cambus Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8216,139878,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gutcher,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8217,135260,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Habbies Howe - Logan Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8218,135502,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hadfast Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8219,135018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ham Ness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8220,135654,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hamilton High Parks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8221,135741,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hamilton Low Parks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8222,136092,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Handa Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8223,136200,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hangman's Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8224,135553,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hannaston Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8225,135360,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Hare Myre, Monk Myre and Stormont Loch",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8226,135369,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hareheugh Craigs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8227,139936,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hascosay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8228,135733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Haw Craig - Glenarbuck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8229,135681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heart Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8230,139912,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hells Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8231,139932,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Helmsdale Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8232,135240,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Henderland Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8233,139904,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hermand Birchwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8234,135895,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hermaness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8235,135169,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Herman Law and Muchra Cleuchs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8236,135045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill of Johnston,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8237,135269,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hewan Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8238,139915,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill of Colvadale and Sobul,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8239,135924,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill of Longhaven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8240,135788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hill of Towanreef,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8241,135699,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Howford Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8242,139868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockormal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8243,135127,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Howierig Muir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8244,136155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Howmore Estuary, Lochs Roag and Fada",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8245,135813,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hoy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8246,135207,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hummelknowes Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8247,135695,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inchlonaig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8248,136124,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kyle of Sutherland Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8249,135193,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inchmickery,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8250,135223,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Innishewan Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8251,136089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inverbrora,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8252,135616,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inchmoan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8253,136065,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inverfarigaig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8254,135951,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inverhope,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8255,135972,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Invernaver,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8256,135421,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langholm - Newcastleton Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8257,135513,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inchmurrin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8258,135883,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inchrory,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8259,135523,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inchtavannach and Inchconnachan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8260,135198,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Tay Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8261,136035,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inninmore Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8262,135281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keltneyburn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8263,135672,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inverneil Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8264,136004,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inverpolly,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8265,139935,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Invertiel Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8266,135189,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Isle of May,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8267,135688,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kenmure Holms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8268,135588,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kennacraig and Esragan Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8269,135692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laughenghie and Airie Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8270,135030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Isle of Whithorn Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8271,139896,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jedwater Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8272,135528,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Jock's Gill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8273,139884,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kennox Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8274,135982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,John o' Groats,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8275,135657,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kames Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8276,139852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keelylang Hill and Swartaback Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8277,135830,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keen of Hamar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8278,136134,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kentra Bay and Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8279,135130,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laxo Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8280,135164,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keith Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8281,135834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kellas Oakwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8282,135304,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kershope Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8283,135275,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kielderhead Moors: Carter Fell to Peel Fell,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8284,135753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilberry Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8285,139839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilconquhar Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8286,136046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kildrummie Kames,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8287,135283,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kings Myre,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8288,135701,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilhern Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8289,139865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Killiegowan Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8290,135492,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Killorn Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8291,135159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kincardine Castle Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8292,136052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingshouse,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8293,135231,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kingside Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8294,135325,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kippilaw Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8295,134961,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinlochlaggan Boulder Beds,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8296,135494,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinnoull Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8297,136057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinrive - Strathrory,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8298,135507,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinuachdrach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8299,169925,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinveachy Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8300,135468,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kippenrait Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8301,135542,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkconnell Flow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8302,135720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkcowan Flow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8303,135061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkhill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8304,135333,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leny Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8305,135487,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkhope Linns,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8306,136009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockinnon Heath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8307,135110,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knocknairs Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8308,135222,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirkton Burn Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8309,135995,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockan Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8310,139844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockdaw Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8311,135551,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockdolian Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8312,136045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockfin Heights,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8313,135590,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockgardner,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8314,169931,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockie Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8315,134993,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lime Craig Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8316,135497,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lacesston Muir and Glen Burn Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8317,169933,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ladder Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8318,135633,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lady Bell's Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8319,135076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lag Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8320,135318,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Plora Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8321,135624,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laggan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8322,135718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laggan Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8323,135580,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laggan Peninsula and Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8324,135563,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Polhote and Polneul Burns,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8325,135472,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pollochro Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8326,135775,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pool of Virkie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8327,135651,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Port Logan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8328,135059,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lagganmullan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8329,135511,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lagganulva Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8330,135546,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lagrae Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8331,135373,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Laird's Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8332,135201,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lake of Menteith,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8333,135831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lamb Hoga,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8334,139881,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lambsdale Leans,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8335,135212,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lammer Law,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8336,135190,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lammermuir Deans,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8337,135491,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lindean Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8338,135348,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lindores Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8339,135740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lang Craigs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8340,135493,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langtonlees Cleugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8341,135994,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Langwell Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8342,135344,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linhouse Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8343,135187,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linlithgow Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8344,134983,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linn Mill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8345,135420,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linn of Tummel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8346,135585,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linne Mhuirich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8347,135042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Largs Coast Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8348,135106,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lea Larks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8349,135752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leadhills - Wanlockhead,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8350,135466,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lintmill Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8351,139886,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leavad,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8352,136118,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ledmore Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8353,139911,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lennel, Charley's Brae",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8354,135605,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lismore Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8355,135138,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lethenhill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8356,136174,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leven Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8357,136017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch a' Sgurr Pegmatite,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8358,139874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch a' Mhuilinn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8359,136026,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Levishie Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8360,135135,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Battan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8361,137013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Liatrie Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8362,135465,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lielowan Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8363,135282,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Ballo,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8364,134990,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Glenshee,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8365,136023,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Loch Roag Valley Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8366,136085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Littlemill Fluvioglacial Landforms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8367,135079,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Littleton and Balhamie Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8368,135933,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Achnacloich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8369,135990,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch an Duin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8370,135102,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Arkaig Pinewood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8371,136006,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ashaig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8372,135146,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ashie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8373,135021,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ba Woodland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8374,136158,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Beannach Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8375,136002,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Bee,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8376,135012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Bee Machair,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8377,135959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Bran,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8378,135998,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Dubh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8379,135698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Eck,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8380,139925,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Brandy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8381,135108,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Caluim Flows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8382,136093,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Cleat,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8383,135375,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Con,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8384,135411,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Freuchie Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8385,136056,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Glencoul,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8386,136152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Dalbeg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8387,135549,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Doon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8388,136105,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Druidibeg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8389,135977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Hallan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8390,134964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Etteridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8391,139894,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quoich Spillway,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8392,136044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Eye,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8393,135526,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Fada,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8394,136122,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Fleet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8395,136170,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Heilen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8396,135533,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Humphrey Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8397,136033,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Laxavat Ard and Loch Laxavat Iorach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8398,135440,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Leven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8399,139917,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quoigs Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8400,135690,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Libo,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8401,139855,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Lieurary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8402,135001,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quoys of Garth,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8403,136202,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raasay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8404,135148,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Lubnaig Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8405,135327,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Mahaick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8406,135095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Maree,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8407,135072,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Meadie Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8408,139877,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Macanrie Fens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8409,135953,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Meodal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8410,139902,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Moidart,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8411,135862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Oire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8412,136192,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ruthven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8413,135458,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Moraig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8414,136203,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Morar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8415,136108,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch na Cartach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8416,136135,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mointeach Scadabhaigh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8417,136131,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch nan Eilean Valley Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8418,136049,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Obisary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8419,135836,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Aboyne,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8420,135970,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Durran,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8421,134974,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Banks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8422,135785,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Clousta,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8423,135861,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Lumgair,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8424,135907,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Girlsta,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8425,135906,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Isbister and the Loons,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8426,135416,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Kinnordy,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8427,135311,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Lintrathen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8428,135803,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8429,135903,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Skene,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8430,135765,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Strathbeg,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8431,136180,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Wester,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8432,136094,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Winless,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8433,135713,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shovelboard,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8434,136060,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Scarmclate,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8435,139856,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Scarrasdale Valley Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8436,135474,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Watston,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8437,135737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Sguabain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8438,135983,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Shiel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8439,136013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Watten,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8440,135936,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochailort,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8441,135780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Spynie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8442,136087,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Stack and River Laxford,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8443,135136,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochan Buidhe Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8444,135323,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Siccar Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8445,135988,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Stiapavat,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8446,135052,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Manse Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8447,135686,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Tallant,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8448,135488,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Tay Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8449,136095,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Tuamister,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8450,135054,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Tummel Flush,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8451,136125,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Ussie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8452,134959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Vaa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8453,139861,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochan Lairig Cheile,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8454,134977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Locharbriggs Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8455,135332,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Moss - Drinkstone Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8456,135082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longbridge Muir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8457,135476,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochcote Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8458,135197,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochindores,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8459,135637,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochmaben Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8460,135738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Martnaham Loch and Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8461,135799,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marwick Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8462,135413,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochmill Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8463,136054,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochs at Clachan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8464,135382,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochs Clunie and Marlee,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8465,135285,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lochs of Butterstone, Craiglush and Lowes",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8466,135898,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochs of Harray and Stenness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8467,139889,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochs of Kirkigarth and Bardister,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8468,135781,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochs of Spiggie and Brow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8469,135845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochs of Tingwall and Asta,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8470,135736,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lochwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8471,135105,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lockshaw Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8472,135868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Masonshaugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8473,135227,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Logierait Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8474,135133,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lon a' Chuil,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8475,136109,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lon Leanachain,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8476,139953,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Berry Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8477,135462,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longnewton Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8478,136037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meall a' Mhaoil,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8479,136183,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meall an t-Sithe and Creag Rainich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8480,135460,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Loch of Lundie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8481,136053,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Wick River,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8482,135558,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longriggend Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8483,135795,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lossiemouth East Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8484,135832,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lossiemouth Shore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8485,135573,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Machrihanish Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8486,135574,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maidens to Doonfoot,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8487,136188,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loth Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8488,135875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Findhorn Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8489,135141,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower River Conon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8490,135080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower River Cree,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8491,135824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower River Spey,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8492,134998,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Strathavon Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8493,135717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lugar Sill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8494,135238,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Makerstoun - Corbie Craigs to Trows' Craigs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8495,135134,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mallart,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8496,135784,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meikle Loch and Kippet Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8497,135449,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meikleour Area,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8498,135910,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lunda Wick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8499,135305,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lurg & Dow Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8500,135853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Melby,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8501,135566,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mennock Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8502,135602,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Merrick Kells,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8503,135383,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lurgie Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8504,139875,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Luskentyre Banks and Saltings,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8505,136151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mangersta Sands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8506,135557,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lynn Spout,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8507,135401,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Lynnwood - Whitlaw Wood, Slitrig",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8508,135384,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lynslie Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8509,136069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Machairs Robach and Newton,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8510,135016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meall Dail-chealach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8511,139921,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meall Ghaordie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8512,135034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meall Imireach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8513,135286,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meall na Samhna,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8514,135366,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Methven Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8515,135009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meall Reamhar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8516,135459,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Methven Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8517,136112,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Migdale Rock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8518,135158,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Meggernie and Croch na Keys Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8519,135086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mill Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8520,135448,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mill Dam,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8521,135270,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mill Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8522,135819,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mill Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8523,139939,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minto Craigs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8524,135663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mochrum Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8525,135529,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moffat Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8526,135099,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moidach More,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8527,135512,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Millburn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8528,135556,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Miller's Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8529,135504,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Milton Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8530,135664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moine Mhor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8531,135395,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mollands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8532,135747,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Milton-Lockhart Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8533,135031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Milton Ness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8534,135263,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Milton Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8535,136165,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mingulay and Berneray,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8536,135757,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mollinsburn Road Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8537,136041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monach Isles,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8538,135397,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monzie Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8539,135204,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moorfoot Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8540,139888,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monadh Mor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8541,135841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monadhliath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8542,136014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monar Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8543,136040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moniack Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8544,135226,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monifieth Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8545,135478,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Montrose Basin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8546,135248,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morenish Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8547,136012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morrich More,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8548,135617,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morroch Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8549,135909,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morrone Birkwood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8550,135060,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mortlach Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8551,135860,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mousa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8552,135893,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muckle and Little Green Holm,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8553,135362,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morton Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8554,135874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morven and Mullachdubh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8555,135999,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Morven and Scaraben,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8556,135879,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moss of Crombie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8557,135812,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moss of Cruden,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8558,134975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Muckle Burn, Clunas",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8559,135996,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moss of Killimster,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8560,135074,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moss of Kirkhill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8561,135997,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mound Alderwoods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8562,135265,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mount Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8563,135096,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muckle Head and Selwick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8564,135111,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muckle Roe Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8565,139853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mugdock Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8566,135768,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Muir of Dinnet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8567,135559,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ness Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8568,134989,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ness of Clousta - The Brigs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8569,135820,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ness of Cullivoe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8570,135727,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nethan Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8571,136019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newlands of Geise Mire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8572,135536,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newlaw Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8573,139845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newtown St Boswells Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8574,135915,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Nigg Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8575,135540,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Bellstane Plantation,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8576,135412,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Berwick Law,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8577,170019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Colonsay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8578,135364,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Fife Heaths,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8579,135969,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Harris,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8580,139837,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8581,135676,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Newton Shore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8582,135129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Roe Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8583,136148,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Rona and Sula Sgeir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8584,139930,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Rothiemurchus Pinewood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8585,135850,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Norwick Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8586,139864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Noss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8587,135473,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ochtertyre Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8588,135430,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Offerance Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8589,135857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Old Wood of Drum,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8590,135051,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oliclett,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8591,135870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Orphir and Stenness Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8592,135939,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oykel Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8593,170032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pabbay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8594,135387,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Otterston Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8595,136207,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ousdale Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8596,135446,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oxendean Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8597,135455,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Palmers Hill Railway Cutting,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8598,135796,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Paradise Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8599,136132,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Parallel Roads of Lochaber,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8600,135210,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Park Hill and Tipperton Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8601,135154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pass of Killiecrankie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8602,135324,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pass of Leny Flushes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8603,135371,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pease Bay Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8604,135181,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pease Bridge Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8605,136020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pennylands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8606,170044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penton Linns,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8607,135077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Penwhapple Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8608,136082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Phillips Mains Mire,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8609,135057,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Randolph's Leap,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8610,135419,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rannoch Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8611,135938,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rassal,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8612,135835,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Philorth Valley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8613,135554,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raven Gill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8614,135520,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ravenshall Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8615,135329,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Philpstoun Muir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8616,135396,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pickletillem Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8617,139858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pinbain Burn to Cairn Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8618,135156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitarrig Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8619,134976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitcaple and Legatsden Quarries,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8620,139898,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Point Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8621,135352,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitkeathly Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8622,134957,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitlowie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8623,135406,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redden Bank Lime Works,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8624,136081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pitmaduthy Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8625,135878,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pittodrie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8626,135036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Port o' Warren,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8627,135015,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Port of Ness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8628,135607,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Braes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8629,135098,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portnellan - Ross Priory - Claddochside,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8630,135550,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Coast of Arran,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8631,135742,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Kerrera and Gallanach,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8632,135750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Possil Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8633,135236,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Redmyre,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8634,135869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Potarch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8635,136171,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Priest Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8636,135132,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Punds to Wick of Hagdale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8637,135827,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quarry Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8638,135917,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quendale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8639,134967,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Qui Ness to Pund Stacks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8640,135837,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quithel Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8641,135646,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Raeburn Flow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8642,135307,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rammer Cleugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8643,135914,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ramna Stacks and Gruney,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8644,135005,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Craig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8645,135884,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Moss of Netherley,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8646,135067,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Red Moss, Oldtown",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8647,135041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ree Burn and Glenbuck Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8648,135800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhynie Chert,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8649,135296,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rickle Craig - Scurdie Ness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8650,139900,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Reidside Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8651,135942,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Reisgill Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8652,135291,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rescobie and Balgavies Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8653,135186,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Restenneth Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8654,136191,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhidorroch Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8655,139914,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhu Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8656,135723,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rhunahaorine Point,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8657,136038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rigg - Bile,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8658,135543,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ring Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8659,135587,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rinns of Islay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8660,135575,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"River Esk, Glencartholm",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8661,134962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Feshie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8662,135485,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Riskinhope,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8663,135642,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Ayr Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8664,136144,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rockall,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8665,135038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Clyde Meanders,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8666,170076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Dee (Parton to Crossmichael),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8667,134987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rousay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8668,135277,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Dochart Meadows,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8669,135252,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rowardennan Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8670,139927,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Lyon Bank,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8671,135787,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Spey - Insh Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8672,136098,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Thurso,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8673,135386,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Tweed,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8674,135920,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roineval,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8675,135184,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Romadie Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8676,135876,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ronas Hill - North Roe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8677,135139,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rora Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8678,135802,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scaat Craig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8679,135075,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roscobie Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8680,135391,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roscobie Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8681,135763,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rosehearty to Fraserburgh Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8682,135947,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rosemarkie to Shandwick Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8683,136061,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roskill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8684,135256,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roslin Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8685,134988,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ross Park,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8686,135538,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ross Park - Lochshore Woodland,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8687,135206,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rossie Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8688,135023,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roughneuk Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8689,135754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rouken Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8690,135290,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Round Loch of Lundie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8691,135124,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Royal Ordnance, Powfoot",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8692,169878,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ground Bridge,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8693,136106,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rubh' an Eireannaich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8694,135024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rubh' a' Mhail to Uamhannan Donna Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8695,135847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scotstown Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8696,136198,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scourie Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8697,135926,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rubha Camas na Cailinn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8698,139872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,S' Airde Beinn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8699,136032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rubha Dunan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8700,135963,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rubha Hunish,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8701,135764,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ruel Estuary,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8702,135975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rum,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8703,135104,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rumsdale Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8704,139883,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Salt Pans Bay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8705,135821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandwater,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8706,139863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sauchie Craig Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8707,135786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Saxa Vord,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8708,135735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sculliongour Limestone Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8709,169964,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Melvin,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8710,135667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scare Rocks,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8711,135331,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Schiehallion,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8712,135066,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sel Ayre,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8713,134963,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shannel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8714,135927,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheigra - Oldshoremore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8715,136175,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shiant Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8716,135612,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shiel Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8717,135656,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shiel Dod,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8718,135040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Strone Point, North Loch Fyne",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8719,135050,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shiel Wood Pastures,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8720,136011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shieldaig Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8721,135530,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shielhill Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8722,136090,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shielton Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8723,135357,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shingle Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8724,135292,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shirgarton Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8725,134971,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skelda Ness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8726,139897,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skelmorlie Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8727,139869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skelpick Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8728,135065,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skeo Taing to Clugan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8729,135053,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skinsdale Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8730,135097,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Laggan Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8731,139906,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Mull Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8732,135451,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skolie Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8733,135648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,South Shian and Balure,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8734,135125,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Skyreburn Grasslands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8735,135069,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sletill Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8736,135931,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sligachan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8737,135955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slumbay Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8738,136142,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Small Seal Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8739,135576,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sound of Mull Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8740,136064,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spinningdale Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8741,170166,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tieveshilly,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8742,136176,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spittal Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8743,139893,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Spynie Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8744,135177,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Abb's Head to Fast Castle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8745,135244,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Andrews - Craig Hartle,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8746,135864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Cyrus and Kinnaber Links,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8747,135094,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St John's Church,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8748,136055,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Kilda,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8749,135447,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Mary's Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8750,135217,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Michael's Wood Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8751,135801,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sule Skerry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8752,135811,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Ninian's Tombolo,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8753,136091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stack Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8754,135746,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Staffa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8755,135048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stairhill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8756,135338,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Star Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8757,135230,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Steelend Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8758,135880,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sule Stack,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8759,135866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sumburgh Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8760,135259,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swallow Craig Den,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8761,135534,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stenhouse Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8762,135409,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Straloch Moraines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8763,136205,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strath,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8764,135081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strath Duchally,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8765,136110,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strathfleet,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8766,135109,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strathmore Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8767,136024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strathy Bogs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8768,136172,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stroma,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8769,139847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stromness Heaths and Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8770,136126,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strontian Mines,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8771,135678,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tangy Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8772,136100,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tarbat Ness,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8773,135234,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stronvar Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8774,135033,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stroupster Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8775,135295,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Struan Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8776,136181,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Struie Channels,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8777,135427,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Swinkie Muir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8778,135131,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Syre Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8779,135535,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tarbert to Skipness Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8780,135179,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tay Bank Section,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8781,135258,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tailend Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8782,139949,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Talich,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8783,136062,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Talisker,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8784,135755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Taynish Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8785,135463,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tayport - Tentsmuir Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8786,135083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tayvallich Juniper and Fen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8787,136005,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Talladale Gorge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8788,135614,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Talnotry Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8789,135882,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Ayres of Swinister,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8790,135839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"The Cletts, Exnaboe",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8791,135294,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Threepwood Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8792,136048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Dens,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8793,135415,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Hirsel,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8794,139947,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thistle Brig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8795,134981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Thornylee Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8796,135653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Threave and Carlingwark Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8797,135902,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tilliefoure Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8798,135867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tingon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8799,135677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tinto Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8800,136197,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tolsta Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8801,134991,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tomnadashan Mine,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8802,135705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Torrisdale Cliff,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8803,135107,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Torrs Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8804,135631,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Torrs to Mason's Walk,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8805,135730,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Torrs Warren - Luce Sands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8806,136115,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Torvean Landforms,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8807,135748,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Totamore Dunes and Loch Ballyhaugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8808,135697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Townhead Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8809,135202,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Traprain Law,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8810,135620,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trearne Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8811,135000,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tressa Ness to Colbinstoft,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8812,135844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trona Mires,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8813,135703,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Troon Golf Links and Foreshore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8814,135976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Trotternish Ridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8815,135121,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Truderscaig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8816,139929,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tulach Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8817,135441,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turin Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8818,135567,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turnberry Dunes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8819,135084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turnberry Lighthouse to Port Murray,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8820,135196,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tweedsmuir Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8821,135229,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tweedwood - Gateheugh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8822,135791,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tynet Burn,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8823,135525,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tynron Juniper Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8824,135114,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Ulva, Danna and the McCormaig Isles",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8825,135641,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Nethan Valley Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8826,135598,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Solway Flats and Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8827,136104,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Urquhart Bay Wood,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8828,135004,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Virva,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8829,136070,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ushat Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8830,135062,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Uyea - North Roe Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8831,135930,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Vallay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8832,135871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Villians of Hamnavoe,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8833,139951,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Voxter Voe and Valayre Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8834,170206,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waltonhill and Cradle Den,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8835,135886,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ward Hill Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8836,135807,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wartle Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8837,139946,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Water of Ken Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8838,135892,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waulkmill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8839,135816,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ward of Culswick,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8840,135840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Westray,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8841,135584,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waulkmill Glen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8842,135454,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weem Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8843,136086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Benbecula Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8844,135122,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Borgie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8845,135116,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Bradieston and Craig of Garvock,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8846,135438,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wester Balgair Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8847,142795,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunloy Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8848,135002,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Burrow Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8849,135510,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Coast of Jura,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8850,135649,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Colonsay Seabird Cliffs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8851,136029,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Halladale,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8852,135665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Loch Lomondside Woodlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8853,135833,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Mainland Moorlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8854,135128,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Strathnaver,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8855,135113,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Tayvallich Peninsula,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8856,135392,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wester Craiglockhart Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8857,135388,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whiting Ness - Ethie Haven,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8858,135481,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitlaw Bank to Hardies Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8859,135171,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wester Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8860,139859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westerdale Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8861,135600,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Western Gailes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8862,135321,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westerton Water Meadow,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8863,136208,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westfield Bridge,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8864,135346,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Westwater Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8865,134978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wether Hill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8866,135091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Weydale Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8867,139940,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whim Bog,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8868,135761,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Loch - Lochinch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8869,135163,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whiteadder Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8870,135147,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitehill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8871,135865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitehills to Melrose Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8872,135313,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitehouse Den,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8873,136143,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whiteness Head,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8874,135200,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitlaw Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8875,135006,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitlaw Rig,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8876,135182,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitmuirhall Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8877,135937,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wick River Marshes,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8878,135368,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodhead Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8879,135117,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Williamhope,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8880,135806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Windy Hills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8881,142770,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bovevagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8882,139850,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wolf's Hole Quarry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8883,135652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wood of Cree,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8884,169816,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dykeneuk Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8885,142810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garron Plateau,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8886,135694,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodend Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8887,135353,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodhall Dean,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8888,135035,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodhall Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8889,169998,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mointeach nan Lochain Dubha,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8890,135297,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yetholm Loch,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8891,169651,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardsheal Peninsula,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8892,169920,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kentallen,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8893,169955,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Aline,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8894,169862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenmore Forest,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8895,170203,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Valtos,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8896,169962,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Long Craig Island,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8897,169813,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dubh Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8898,169961,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Urigill,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8899,170133,United Kingdom,Common Standards Monitoring,2013,For storage only,18,St Margaret's Marsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8900,169960,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Siadar,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8901,170168,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tob Valasay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8902,142843,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheep Island,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8903,169672,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"Bankhead Moss, Beith",Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8904,169692,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Loch Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8905,170088,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Moidart,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8906,170144,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strathy Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8907,169892,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hassockrigg and North Shotts Mosses,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8908,169735,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrickarade,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8909,170224,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Park Bay,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8910,170211,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waukenwae Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8911,169959,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch of Mey,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8912,169643,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Airds Park and Coille Nathais,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8913,169915,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inverasdale Peatlands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8914,169958,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch nam Madadh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8915,135143,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longman and Castle Stuart Bays,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8916,170023,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Obain Loch Euphoirt,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8917,170043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pentland Firth Islands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8918,169820,United Kingdom,Common Standards Monitoring,2013,For storage only,18,East Sanday Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8919,170160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Vadills,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8920,169924,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kintyre Goose Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8921,169855,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Giant'S Causeway and Dunseverick,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8922,170105,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Runkerry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8923,169860,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glas Eileanan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8924,170067,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8925,169825,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eilean Hoan,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8926,169827,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Endrick Water,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8927,169684,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berwickshire Coast (Intertidal),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8928,169831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fafernie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8929,169789,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Creag Clunie and the Lion's Face,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8930,169690,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Cart,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8931,170091,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Spey,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8932,170187,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turclossie Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8933,169832,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Faray and Holm of Faray,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8934,170111,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandness Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8935,170074,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Borgie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8936,170243,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Yell Sound Coast,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8937,170084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Kerry,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8938,170149,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Switha,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8939,170167,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tips of Corsemaul and Tom Mor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8940,170127,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sleibhtean agus Cladach Thiriodh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8941,169845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Forest of Clunie,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8942,169956,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Awe and Loch Ailsh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8943,169957,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loch Calder,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8944,169658,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Assynt Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8945,169683,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Berneray,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8946,169698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boreray,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8947,174673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inchcruin,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8948,174675,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kinloch and Kyleakin Hills (Monadh Chaol Acainn is Cheann Loch),Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8949,174714,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sunart,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8950,174720,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Fannyside Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8951,142873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portballintrae,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8952,170225,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Rocks,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8953,174700,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peeswit Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8954,183434,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Creran Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8955,183414,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Barran Dubh,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8956,328965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Renfrewshire Heights,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8957,328952,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slamannan Plateau,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8958,328953,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strath Carnaig and Strath Fleet Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8959,387447,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Inverness-shire Lochs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8960,341280,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Oa,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8961,341281,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oronsay and South Colonsay,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8962,387448,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Onich to North Ballachulish Woods and Shore,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8963,170063,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ramore Head and The Skerries,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8964,555545402,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whinnerston,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8965,555559223,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aith Meadows and Burn of Aith,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8966,555559226,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Southannan Sands,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8967,555559227,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portencross Woods,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8968,555560514,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carlops Meltwater Channels,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8969,142828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rathlin Island - Ballycarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8970,142837,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rathlin Island - Kinramer South,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8971,142832,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rathlin Island - Ballygill North,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8972,142834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rathlin Island Coast,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8973,169785,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigahulliar,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8974,170172,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tow River Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8975,142853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Magilligan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8976,169673,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bann Estuary,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8977,87083,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gortnagory,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8978,142778,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corraslough Point,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8979,169705,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breen Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8980,169646,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Altikeeragh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8981,87080,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garry Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8982,169687,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Binevenagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8983,169853,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garry Bog Part 2,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8984,142858,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tievebulliagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8985,169689,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Burn,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8986,169873,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8987,87082,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenariff,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8988,169728,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caldanagh Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8989,169963,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Foyle,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8990,170142,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Straidkilly Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8991,169851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frosses Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8992,170103,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rostrevor Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8993,87078,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cleggan Valley,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8994,142812,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen Burn,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8995,142869,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ness Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8996,170234,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Wolf Island Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8997,174717,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tullyard,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8998,142798,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ervey Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -8999,169803,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dead Island Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9000,142750,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Altmover Glen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9001,142839,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scawt Hill,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9002,169861,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenarm Woods,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9003,170053,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portmuck,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9004,169773,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corbylin Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9005,169733,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carn/Glenshane,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9006,142865,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Waterloo,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9007,169667,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballyknock,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9008,169670,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banagher Glen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9009,169988,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mckean'S Moss Part II ,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9010,169987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,McKEAN 'S MOSS,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9011,170122,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Silverbrook Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9012,142784,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Culnafay,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9013,142847,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strabane Glen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9014,142870,United Kingdom,Common Standards Monitoring,2013,For storage only,18,North Woodburn Glen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9015,142754,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballynahone Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9016,142871,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Owenkillew and Glenelly Woods,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9017,142845,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little River,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9018,169797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Curran Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9019,142840,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Larne Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9020,170170,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Toome,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9021,87085,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Beg,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9022,142780,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crockaghole Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9023,142857,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teal Lough Part II ,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9024,170031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Owenkillew River,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9025,169999,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moneygal Bog Part II ,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9026,87088,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moneygal Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9027,142794,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumlea and Mullan Woods,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9028,87089,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Teal Lough & Slaghtfreeden Bogs,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9029,169868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Grange Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9030,142753,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballymacormick Point,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9031,87076,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9032,170030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Outer Belfast Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9033,169828,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Essan Burn & Mullyfamore,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9034,170196,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Ballinderry River,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9035,169941,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Leathemstown,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9036,170227,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Whitespots,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9037,142800,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fairy Water Bogs,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9038,142829,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inner Belfast Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9039,170185,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tully Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9040,169786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigantlet Woods,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9041,87087,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moneendogue,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9042,169669,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballysudden,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9043,169945,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lime Hill Farm,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9044,142758,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bardahessiagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9045,142841,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scrabo,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9046,142788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Deroran Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9047,142846,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slievenacloy,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9048,142874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portmore Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9049,170141,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Straduff,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9050,142848,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strangford Lough Part 1,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9051,142772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Braade,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9052,170001,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Montiaghs Moss,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9053,174646,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballynanaghten,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9054,169788,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranny Bogs,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9055,142860,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tullanaguiggy,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9056,142872,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Pettigoe Plateau,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9057,142849,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Neagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9058,142815,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenmore Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9059,170038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Peatlands Park,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9060,170169,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tonnagh Beg Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9061,169982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Magheramenagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9062,87075,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Beagh Big,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9063,169660,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aughnadarragh Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9064,169898,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Heron & Carrigullian Loughs,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9065,87079,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumlisaleen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9066,87084,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lergan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9067,170157,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Cliffs of Magho,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9068,142821,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Horse Island,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9069,169938,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Largalinny,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9070,169863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glennasheevar,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9071,87081,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Garvros,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9072,142852,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strangford Lough Part 3,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9073,142767,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benburb,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9074,87086,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Monawilkin,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9075,170189,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Turmennan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9076,142752,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Annacramph Meadow,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9077,169737,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrowcarlin,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9078,169834,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fardrum & Roosky Turloughs,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9079,142755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballyquintin Point,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9080,174652,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrickastickan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9081,170186,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tullysranadeega,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9082,142850,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Strangford Lough Part 2,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9083,169833,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fardross Stream,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9084,174662,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cullentra Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9085,170060,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Quoile,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9086,169966,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loughmoney,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9087,142851,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loughkeelan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9088,142866,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Woodgrange,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9089,87077,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrickbrawn,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9090,169904,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hollymount,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9091,169693,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9092,170216,United Kingdom,Common Standards Monitoring,2013,For storage only,18,West Fermanagh Scarplands,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9093,169668,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballynagross Lower,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9094,169697,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Boho,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9095,142830,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Killard,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9096,170150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tattenamona,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9097,169664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballycam,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9098,170003,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moyrourkan Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9099,142844,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slieve Beagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9100,169922,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilnameel,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9101,169666,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballykilbeg,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9102,174718,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tullybrick Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9103,142835,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kiltubbrid Loughs,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9104,142765,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bellanaleck,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9105,169772,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Corbally,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9106,142859,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mill Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9107,142838,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lackan Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9108,169663,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballybannan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9109,169810,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumacrittin Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9110,169740,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Enigan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9111,142824,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Inishroosk,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9112,142861,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Lough Erne - Belleisle,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9113,174653,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castletown,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9114,142757,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Straghans Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9115,142868,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Murlough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9116,169648,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Annachullion Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9117,193569,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cam Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9118,193570,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Copeland Islands,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9119,193571,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mullynaskeagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9120,169932,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockninny Hill,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9121,169791,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crossbane Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9122,169811,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumcarn,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9123,142774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Burdautien Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9124,142854,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Summerhill Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9125,169755,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cladagh (Swanlinbar) River,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9126,142782,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cuilcagh Mountain,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9127,169923,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilroosky Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9128,142836,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockballymore Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9129,169965,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loughaveeley,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9130,142786,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dernish Island,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9131,142864,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Lough Erne - Trannish,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9132,174674,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Killough Bay and Strand Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9133,174664,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Derryvore,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9134,142792,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Derryleckagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9135,169874,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Greenan Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9136,142862,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Lough Erne - Crom,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9137,142797,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Eastern Mournes,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9138,328986,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lemnalary,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9139,142867,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moninea Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9140,142831,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Killymackan Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9141,142806,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Finn Floods,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9142,142863,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Upper Lough Erne - Galloon,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9143,170129,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slieve Gullion,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9144,174677,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Levallymore,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9145,169738,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cashel Loughs,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9146,169812,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumlougher Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9147,174711,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Selshion,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9148,183435,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Portrush West Strand,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9149,169731,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carlingford Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9150,174716,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tully Hill,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9151,174681,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Doo,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9152,174698,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Outer Ards,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9153,183436,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Foyle and Tributaries,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9154,169665,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballycastle Coalfield,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9155,183433,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lurgan Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9156,183453,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Torr Head,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9157,183412,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castlewellan Lake,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9158,193560,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Black Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9159,193561,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Derrycloony Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9160,555545522,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gruggandoo,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9161,193563,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumcrow,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9162,193562,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Conagher,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9163,555545515,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tyrella & Minerstown,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9164,193565,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Newlands,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9165,193564,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aghnadarragh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9166,193566,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aghanloo Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9167,193567,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fathom Upper,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9168,193568,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bonds Glen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9169,328975,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballymacombs More,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9170,328974,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Feystown,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9171,555545444,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumharvey,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9172,328976,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edenaclogh Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9173,328977,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lenaghan Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9174,328979,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Corry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9175,555545437,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dunaree Hill,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9176,555545514,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Killeter Forest and Bogs and Lakes,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9177,555545508,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Baronscourt,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9178,328980,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Banagher,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9179,328978,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rehaghy Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9180,328983,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lurgan River Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9181,328982,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Aleater,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9182,328981,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Scolban,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9183,328984,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballypalady,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9184,328985,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Murrins,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9185,328987,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Roe and Tributaries,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9186,555545443,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lurgylea,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9187,555545424,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Smulgedon,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9188,555545425,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle River Valley,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9189,555545448,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sandy Braes,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9190,555545446,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Gobbins,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9191,555545429,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cruninish Island,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9192,555545430,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Hare Island,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9193,555545457,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Corr,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9194,555545459,United Kingdom,Common Standards Monitoring,2013,For storage only,18,River Faughan and Tributaries,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9195,555545460,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knocknashangan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9196,555545423,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballymacallion,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9197,555545462,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ross,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9198,555545449,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castle Point,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9199,555545452,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Camlough Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9200,555545422,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Errigal Glen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9201,555545426,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballymacaldrack,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9202,555545428,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough na blaney bane,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9203,555545434,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Round Lough and Lough Fadda,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9204,555545419,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tandragee,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9205,555545435,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Devenish Island,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9206,555545431,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rathsherry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9207,555545432,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballyrisk More,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9208,555545427,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough McCall,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9209,555545433,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coolnasillagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9210,555545436,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sheepland Coast,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9211,555545442,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dromore,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9212,555545438,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kirlish,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9213,555545441,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lisdoo,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9214,555545445,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Paris Island Big,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9215,555545439,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sloughan and Willmount Glens,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9216,555545440,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tedd,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9217,555545447,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tardree Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9218,555545456,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cloghinny,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9219,555545453,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lislea,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9220,555545463,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scraghy,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9221,555545464,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cloghfin Port,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9222,555545455,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glendesha,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9223,555545473,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mountfield Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9224,555545454,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mullaghbane,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9225,555545466,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slieveanorra and Croaghan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9226,555545461,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blackslee,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9227,555545421,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenballyemon River,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9228,555545470,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knocknacloy,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9229,555545458,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Gullion,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9230,555545468,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Moneystaghan Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9231,555545420,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shimna River,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9232,555545482,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumbegger,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9233,555545469,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lower Creevagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9234,555545484,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Keadew,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9235,555545477,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Coolcran,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9236,555545478,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Makenny,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9237,555545480,United Kingdom,Common Standards Monitoring,2013,For storage only,18,The Maidens,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9238,555545481,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tullyratty,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9239,555545479,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gravel Ridge Island,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9240,555545450,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glarryford,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9241,555545495,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Maghaberry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9242,555545471,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Annaghagh Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9243,555545475,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cashel Rock,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9244,555545474,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Sruhanleanantawey Burn,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9245,555545476,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Largy Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9246,555545465,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carey Valley,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9247,555545483,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Little Deer Park,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9248,555545472,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mullaghcarn,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9249,555545492,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tower More,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9250,555562040,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Scribbagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9251,555545491,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glen East,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9252,555545499,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brackagh Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9253,555562041,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shane's Castle,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9254,555562033,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Navar Scarps and Lakes,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9255,555545494,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brookend,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9256,555545500,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Linford,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9257,555545467,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aghabrack,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9258,555545501,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Caledon and Tynan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9259,555545451,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lisnaragh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9260,555545497,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Minnis,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9261,555545498,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cloghastucan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9262,555545496,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Blaeberry Island Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9263,555545504,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Copeland Reservoir,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9264,555545490,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Fair Head and Murlough Bay,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9265,555545487,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Church Bay,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9266,555545486,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Larkhill,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9267,555545489,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Edernery Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9268,555545488,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumbally Hill,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9269,555545506,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Loughermore Mountain,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9270,555545493,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Galboly,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9271,555545523,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenarm Woods Part 2,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9272,555545510,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Anierin,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9273,555545524,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gortcorbies,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9274,555545525,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Craigs,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9275,555545520,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tempo River,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9276,555545512,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glenariff Glen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9277,555545511,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Cowey,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9278,555545509,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Castlecoole,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9279,555545526,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drummond Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9280,555545513,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rathlin Island - Kebble,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9281,555545485,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Butterlope Glen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9282,555545516,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Naman Bog and Lake,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9283,555545507,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Macrory,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9284,555545517,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilcoan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9285,555545505,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Kilkeel Steps,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9286,555562018,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cranny Falls,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9287,555545519,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Capecastle,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9288,555562013,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carneal,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9289,555562010,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Benburb - Milltown,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9290,555562024,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drummahon,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9291,555562019,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Croagh Bog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9292,555562031,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Formal,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9293,555562014,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carnmore,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9294,555562034,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Marlbank,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9295,555562007,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9296,555562021,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Dromore Big,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9297,555562048,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Florence Court,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9298,555562043,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Stranacally,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9299,555562027,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gortalughany,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9300,555562020,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Crockanaver,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9301,555562045,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tonnagh Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9302,555562039,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Samuel's Port,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9303,555562008,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ballygalley Head,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9304,555562036,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Prolusk,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9305,555562022,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumarg,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9306,555562037,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Roeveagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9307,555562015,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cavan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9308,555562028,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knock Dhu Sallagh Braes,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9309,555562016,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Clermont & Anglesey Mountain,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9310,555562030,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Alaban,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9311,555562029,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Knockadoo Wood,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9312,555562035,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Mournes Coast,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9313,555562047,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Water River,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9314,555562046,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Western Mournes and Kilfeaghan Upper,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9315,555562009,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belvoir,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9316,555562017,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Cloghcor Lough,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9317,555562012,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Brockagh Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9318,555562011,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Big Dog Scarps and Lakes,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9319,555562042,United Kingdom,Common Standards Monitoring,2013,For storage only,18,"St, John's Point",Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9320,555562038,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Rushy Hill,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9321,555562025,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumowen,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9322,555596158,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Goraghwood Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9323,555562026,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Frevagh,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9324,555562023,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Drumcully,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9325,555562044,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tircreven,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9326,555562032,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Lough Lark,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9327,555596150,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Ardglass,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9328,555596151,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aughnagon Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9329,555596152,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aughnavallog,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9330,555596161,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Shannaghan Hill,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9331,555596154,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Bellevue,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9332,555596162,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Slieve Croob,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9333,555596156,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Carrivemaclone,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9334,555596160,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gransha,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9335,555596163,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tamnyrankin,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9336,555596155,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belshaws Quarry,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9337,555596153,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Aghanaglack,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9338,555596159,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Gortnasoal Glebe and Meenadoan,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9339,555596157,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Glynn Woods,Area of Special Scientific Interest (NI),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9340,138726,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Belowda Beacon,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9341,138548,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Breney Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9342,137266,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Goss and Tregoss Moors,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9343,138090,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Longworth Clough,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9344,137576,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Oak Field,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9345,140392,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Red Moor,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9346,140403,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Retire Common,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9347,139774,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Talybont Reservoir,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9348,170173,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Tregonetha & Belowda Downs,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9349,137146,United Kingdom,Common Standards Monitoring,2013,For storage only,18,Walton Moss,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9350,138182,United Kingdom,Common Standards Monitoring,2013,For storage only,18,White Coppice Flush,Site of Special Scientific Interest (UK),UK Common Standards Monitoring,Joint Nature Conservation Committee,2018,English -9351,1054,Croatia,METT,2012,For storage only,19,Plitvička jezera,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9352,1058,Croatia,METT,2012,For storage only,19,Paklenica,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9353,2518,Croatia,METT,2012,For storage only,19,Risnjak,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9354,2520,Croatia,METT,2012,For storage only,19,Mljet,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9355,2523,Croatia,METT,2012,For storage only,19,Kornati,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9356,3373,Croatia,METT,2012,For storage only,19,Krka,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9357,10940,Croatia,METT,2012,For storage only,19,Brijuni,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9358,377865,Croatia,METT,2012,For storage only,19,Sjeverni Velebit,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9359,15602,Croatia,METT,2012,For storage only,19,Kopački rit,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9360,15606,Croatia,METT,2012,For storage only,19,Velebit,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9361,15614,Croatia,METT,2012,For storage only,19,Medvednica,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9362,20700,Croatia,METT,2012,For storage only,19,Biokovo,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9363,63664,Croatia,METT,2012,For storage only,19,Telašćica,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9364,63666,Croatia,METT,2012,For storage only,19,Lonjsko polje,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9365,377853,Croatia,METT,2012,For storage only,19,Žumberak - Samoborsko gorje,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9366,377863,Croatia,METT,2012,For storage only,19,Vransko jezero,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9367,378015,Croatia,METT,2012,For storage only,19,Lastovsko otočje,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9368,378033,Croatia,METT,2012,For storage only,19,Papuk,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9369,378034,Croatia,METT,2012,For storage only,19,Učka,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9370,1054,Croatia,METT,2014,For storage only,19,Plitvička jezera,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9371,1058,Croatia,METT,2014,For storage only,19,Paklenica,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9372,2518,Croatia,METT,2014,For storage only,19,Risnjak,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9373,2520,Croatia,METT,2014,For storage only,19,Mljet,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9374,2523,Croatia,METT,2014,For storage only,19,Kornati,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9375,3373,Croatia,METT,2014,For storage only,19,Krka,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9376,10940,Croatia,METT,2014,For storage only,19,Brijuni,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9377,377865,Croatia,METT,2014,For storage only,19,Sjeverni Velebit,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9378,15602,Croatia,METT,2014,For storage only,19,Kopački rit,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9379,15606,Croatia,METT,2014,For storage only,19,Velebit,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9380,15614,Croatia,METT,2014,For storage only,19,Medvednica,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9381,20700,Croatia,METT,2014,For storage only,19,Biokovo,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9382,63664,Croatia,METT,2014,For storage only,19,Telašćica,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9383,63666,Croatia,METT,2014,For storage only,19,Lonjsko polje,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9384,377853,Croatia,METT,2014,For storage only,19,Žumberak - Samoborsko gorje,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9385,377863,Croatia,METT,2014,For storage only,19,Vransko jezero,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9386,378015,Croatia,METT,2014,For storage only,19,Lastovsko otočje,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9387,378033,Croatia,METT,2014,For storage only,19,Papuk,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9388,378034,Croatia,METT,2014,For storage only,19,Učka,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9389,1054,Croatia,METT,2016,For storage only,19,Plitvička jezera,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9390,1058,Croatia,METT,2016,For storage only,19,Paklenica,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9391,2518,Croatia,METT,2016,For storage only,19,Risnjak,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9392,2520,Croatia,METT,2016,For storage only,19,Mljet,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9393,2523,Croatia,METT,2016,For storage only,19,Kornati,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9394,3373,Croatia,METT,2016,For storage only,19,Krka,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9395,10940,Croatia,METT,2016,For storage only,19,Brijuni,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9396,377865,Croatia,METT,2016,For storage only,19,Sjeverni Velebit,National Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9397,15602,Croatia,METT,2016,For storage only,19,Kopački rit,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9398,15606,Croatia,METT,2016,For storage only,19,Velebit,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9399,15614,Croatia,METT,2016,For storage only,19,Medvednica,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9400,20700,Croatia,METT,2016,For storage only,19,Biokovo,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9401,63664,Croatia,METT,2016,For storage only,19,Telašćica,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9402,63666,Croatia,METT,2016,For storage only,19,Lonjsko polje,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9403,377853,Croatia,METT,2016,For storage only,19,Žumberak - Samoborsko gorje,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9404,377863,Croatia,METT,2016,For storage only,19,Vransko jezero,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9405,378015,Croatia,METT,2016,For storage only,19,Lastovsko otočje,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9406,378033,Croatia,METT,2016,For storage only,19,Papuk,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9407,378034,Croatia,METT,2016,For storage only,19,Učka,Nature Park,Croatian protected area management effectiveness assessments,Croatian Agency for the Environment and Nature (CAEN),2018,English -9408,1656,Georgia,METT,2015,For storage only,20,Kintrishi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9409,1656,Georgia,METT,2017,For storage only,20,Kintrishi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9410,555549424,Georgia,METT,2015,For storage only,20,Kintrishi,Protected Landscape,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9411,555549424,Georgia,METT,2017,For storage only,20,Kintrishi,Protected Landscape,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9412,555566931,Georgia,METT,2015,For storage only,20,Pshav-Khevsureti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9413,555566931,Georgia,METT,2017,For storage only,20,Pshav-Khevsureti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9414,555566933,Georgia,METT,2015,For storage only,20,Roshka,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9415,555566933,Georgia,METT,2017,For storage only,20,Roshka,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9416,555566907,Georgia,METT,2015,For storage only,20,Asa,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9417,555566907,Georgia,METT,2017,For storage only,20,Asa,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9418,555549410,Georgia,METT,2015,For storage only,20,Kazbegi,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9419,555549410,Georgia,METT,2017,For storage only,20,Kazbegi,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9420,555549473,Georgia,METT,2015,For storage only,20,Abano Mineral Lake,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9421,555549473,Georgia,METT,2017,For storage only,20,Abano Mineral Lake,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9422,555549475,Georgia,METT,2015,For storage only,20,Travertine of Truso,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9423,555549475,Georgia,METT,2017,For storage only,20,Travertine of Truso,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9424,555549474,Georgia,METT,2015,For storage only,20,Sakhizari cliff,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9425,555549474,Georgia,METT,2017,For storage only,20,Sakhizari cliff,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9426,555566921,Georgia,METT,2015,For storage only,20,Keterisi Mineral Vocluse,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9427,555566921,Georgia,METT,2017,For storage only,20,Keterisi Mineral Vocluse,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9428,555566920,Georgia,METT,2015,For storage only,20,Jvary Pass Travertine,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9429,555566920,Georgia,METT,2017,For storage only,20,Jvary Pass Travertine,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9430,555549415,Georgia,METT,2015,For storage only,20,Algeti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9431,555549415,Georgia,METT,2017,For storage only,20,Algeti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9432,555624300,Georgia,METT,2015,For storage only,20,Birtvisi,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9433,555624300,Georgia,METT,2017,For storage only,20,Birtvisi,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9434,555566912,Georgia,METT,2015,For storage only,20,Dashbashi Canyon,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9435,555566912,Georgia,METT,2017,For storage only,20,Dashbashi Canyon,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9436,555566935,Georgia,METT,2015,For storage only,20,Samshvilde Canyon,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9437,555566935,Georgia,METT,2017,For storage only,20,Samshvilde Canyon,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9438,1653,Georgia,RAPPAM,2012,For storage only,20,Lagodekhi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9439,313053,Georgia,RAPPAM,2012,For storage only,20,Tusheti,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9440,1667,Georgia,RAPPAM,2012,For storage only,20,Sataplia,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9441,1656,Georgia,RAPPAM,2012,For storage only,20,Kintrishi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9442,313211,Georgia,RAPPAM,2012,For storage only,20,Kobuleti,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9443,61588,Georgia,RAPPAM,2012,For storage only,20,Borjomi-Kharagauli,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9444,1666,Georgia,RAPPAM,2012,For storage only,20,Kolkheti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9445,555549414,Georgia,RAPPAM,2012,For storage only,20,Tusheti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9446,555549413,Georgia,RAPPAM,2012,For storage only,20,Vashlovani,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9447,555549409,Georgia,RAPPAM,2012,For storage only,20,Mtirala,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9448,555549407,Georgia,RAPPAM,2012,For storage only,20,Eagle canyon,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9449,555549417,Georgia,RAPPAM,2012,For storage only,20,Takhti-Tefa,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9450,555549406,Georgia,RAPPAM,2012,For storage only,20,Alazani flood plane forests,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9451,313206,Georgia,RAPPAM,2012,For storage only,20,Chachuna,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9452,313205,Georgia,RAPPAM,2012,For storage only,20,Kobuleti,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9453,555549425,Georgia,RAPPAM,2012,For storage only,20,Lagodekhi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9454,555549424,Georgia,RAPPAM,2012,For storage only,20,Kintrishi,Protected Landscape,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9455,1653,Georgia,RAPPAM,2009,For storage only,20,Lagodekhi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9456,313053,Georgia,RAPPAM,2009,For storage only,20,Tusheti,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9457,555549408,Georgia,RAPPAM,2009,For storage only,20,Babaneuri,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9458,313048,Georgia,RAPPAM,2009,For storage only,20,Bbatsara,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9459,1660,Georgia,RAPPAM,2009,For storage only,20,Vashlovani,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9460,1657,Georgia,RAPPAM,2009,For storage only,20,Liakhvi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9461,1665,Georgia,RAPPAM,2009,For storage only,20,Mariamjvari,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9462,1667,Georgia,RAPPAM,2009,For storage only,20,Sataplia,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9463,1652,Georgia,RAPPAM,2009,For storage only,20,Borjomi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9464,1656,Georgia,RAPPAM,2009,For storage only,20,Kintrishi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9465,313211,Georgia,RAPPAM,2009,For storage only,20,Kobuleti,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9466,61588,Georgia,RAPPAM,2009,For storage only,20,Borjomi-Kharagauli,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9467,1666,Georgia,RAPPAM,2009,For storage only,20,Kolkheti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9468,555549414,Georgia,RAPPAM,2009,For storage only,20,Tusheti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9469,555549413,Georgia,RAPPAM,2009,For storage only,20,Vashlovani,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9470,555549409,Georgia,RAPPAM,2009,For storage only,20,Mtirala,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9471,555549412,Georgia,RAPPAM,2009,For storage only,20,Tbilisi,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9472,555549415,Georgia,RAPPAM,2009,For storage only,20,Algeti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9473,555549410,Georgia,RAPPAM,2009,For storage only,20,Kazbegi,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9474,555549406,Georgia,RAPPAM,2009,For storage only,20,Alazani flood plane forests,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9475,555549417,Georgia,RAPPAM,2009,For storage only,20,Takhti-Tefa,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9476,555549407,Georgia,RAPPAM,2009,For storage only,20,Eagle canyon,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9477,555549471,Georgia,RAPPAM,2009,For storage only,20,Prometheus Karst Cave,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9478,555566938,Georgia,RAPPAM,2009,For storage only,20,Tetri mgvime Karst Cave,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9479,555549468,Georgia,RAPPAM,2009,For storage only,20,Khomuli Karst Cave,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9480,555566940,Georgia,RAPPAM,2009,For storage only,20,Tsutskvati Karst Cave,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9481,555566926,Georgia,RAPPAM,2009,For storage only,20,Navenakhevi Karst Cave,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9482,555566925,Georgia,RAPPAM,2009,For storage only,20,Nagarevi Karst Cave,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9483,555566918,Georgia,RAPPAM,2009,For storage only,20,Iazoni Karst Cave,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9484,555566934,Georgia,RAPPAM,2009,For storage only,20,Sakajia Karst Cave,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9485,555549470,Georgia,RAPPAM,2009,For storage only,20,Tskaltsitela Ravine,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9486,555549469,Georgia,RAPPAM,2009,For storage only,20,Okatse Canyon,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9487,555566929,Georgia,RAPPAM,2009,For storage only,20,Okatse Waterfall,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9488,313208,Georgia,RAPPAM,2009,For storage only,20,Gardabani,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9489,313212,Georgia,RAPPAM,2009,For storage only,20,Khorugi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9490,313209,Georgia,RAPPAM,2009,For storage only,20,Iori,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9491,313206,Georgia,RAPPAM,2009,For storage only,20,Chachuna,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9492,313210,Georgia,RAPPAM,2009,For storage only,20,Katsoburi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9493,313541,Georgia,RAPPAM,2009,For storage only,20,Nedzvi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9494,313205,Georgia,RAPPAM,2009,For storage only,20,Kobuleti,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9495,555549411,Georgia,RAPPAM,2009,For storage only,20,Ilto,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9496,555549425,Georgia,RAPPAM,2009,For storage only,20,Lagodekhi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9497,555549405,Georgia,RAPPAM,2009,For storage only,20,Ajameti,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9498,555549424,Georgia,RAPPAM,2009,For storage only,20,Kintrishi,Protected Landscape,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9499,61588,Georgia,PANPARKS,2007,For storage only,20,Borjomi-Kharagauli,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9500,1652,Georgia,PANPARKS,2007,For storage only,20,Borjomi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9501,313541,Georgia,PANPARKS,2007,For storage only,20,Nedzvi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9502,313053,Georgia,METT,2017,For storage only,20,Tusheti,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9503,555549414,Georgia,METT,2017,For storage only,20,Tusheti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9504,555549423,Georgia,METT,2017,For storage only,20,Javakheti,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9505,555549418,Georgia,METT,2017,For storage only,20,Bugdasheni,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9506,555549419,Georgia,METT,2017,For storage only,20,Khanchali,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9507,555549420,Georgia,METT,2017,For storage only,20,Madatapa,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9508,555549422,Georgia,METT,2017,For storage only,20,Sulda,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9509,555549421,Georgia,METT,2017,For storage only,20,Kartsakhi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9510,313540,Georgia,METT,2017,For storage only,20,Tetrobi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9511,1660,Georgia,METT,2017,For storage only,20,Vashlovani,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9512,555549413,Georgia,METT,2017,For storage only,20,Vashlovani,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9513,555549407,Georgia,METT,2017,For storage only,20,Eagle canyon,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9514,555549406,Georgia,METT,2017,For storage only,20,Alazani flood plane forests,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9515,555549417,Georgia,METT,2017,For storage only,20,Takhti-Tefa,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9529,1653,Georgia,METT,2016,For storage only,20,Lagodekhi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9530,555549425,Georgia,METT,2016,For storage only,20,Lagodekhi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9531,313539,Georgia,METT,2017,For storage only,20,Ktsia-Tabatskuri,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9532,313541,Georgia,METT,2017,For storage only,20,Nedzvi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9533,555566917,Georgia,METT,2017,For storage only,20,Goderdzi Petrified Forest,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9534,1652,Georgia,METT,2017,For storage only,20,Borjomi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9535,61588,Georgia,METT,2017,For storage only,20,Borjomi-Kharagauli,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9536,1653,Georgia,METT,2017,For storage only,20,Lagodekhi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9537,555549425,Georgia,METT,2017,For storage only,20,Lagodekhi,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9545,555549409,Georgia,METT,2017,For storage only,20,Mtirala,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9553,555549409,Georgia,METT,2016,For storage only,20,Mtirala,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9554,1656,Georgia,METT,2016,For storage only,20,Kintrishi,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9555,555549424,Georgia,METT,2016,For storage only,20,Kintrishi,Protected Landscape,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9556,555549467,Georgia,METT,2016,For storage only,20,Machakhela,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9557,1660,Georgia,METT,2015,For storage only,20,Vashlovani,Strict Nature Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9558,555549413,Georgia,METT,2015,For storage only,20,Vashlovani,National Park,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9559,555549406,Georgia,METT,2015,For storage only,20,Alazani flood plane forests,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9560,555549417,Georgia,METT,2015,For storage only,20,Takhti-Tefa,Natural Monument,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9561,313206,Georgia,METT,2015,For storage only,20,Chachuna,Managed Reserve,Georgia protected area management effectiveness assessments,"Ministry of Enviroment, Protection and Agriculture of Georgia",2018,English -9562,799,Mozambique,RAPPAM,2006,For storage only,21,Banhine,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9563,799,Mozambique,METT,2014,For storage only,21,Banhine,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9564,799,Mozambique,METT,2015,For storage only,21,Banhine,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9565,799,Mozambique,METT,2016,For storage only,21,Banhine,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9566,800,Mozambique,RAPPAM,2006,For storage only,21,Zinave,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9567,800,Mozambique,METT,2014,For storage only,21,Zinave,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9568,800,Mozambique,METT,2015,For storage only,21,Zinave,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9569,800,Mozambique,METT,2016,For storage only,21,Zinave,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9570,802,Mozambique,RAPPAM,2006,For storage only,21,Bazaruto,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9571,802,Mozambique,METT,2014,For storage only,21,Bazaruto,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9572,802,Mozambique,METT,2015,For storage only,21,Bazaruto,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9573,802,Mozambique,METT,2016,For storage only,21,Bazaruto,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9574,801,Mozambique,RAPPAM,2006,For storage only,21,Gorongosa,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9575,801,Mozambique,METT,2010,For storage only,21,Gorongosa,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9576,801,Mozambique,METT,2015,For storage only,21,Gorongosa,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9577,20295,Mozambique,RAPPAM,2006,For storage only,21,Limpopo,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9578,20295,Mozambique,METT,2014,For storage only,21,Limpopo,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9579,20295,Mozambique,METT,2015,For storage only,21,Limpopo,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9580,20295,Mozambique,METT,2016,For storage only,21,Limpopo,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9581,4652,Mozambique,RAPPAM,2006,For storage only,21,Maputo,Special Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9582,4652,Mozambique,METT,2014,For storage only,21,Maputo,Special Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9583,4652,Mozambique,METT,2015,For storage only,21,Maputo,Special Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9584,4652,Mozambique,METT,2016,For storage only,21,Maputo,Special Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9585,9035,Mozambique,RAPPAM,2006,For storage only,21,Quirimbas,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9586,9035,Mozambique,METT,2013,For storage only,21,Quirimbas,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9587,9035,Mozambique,METT,2014,For storage only,21,Quirimbas,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9588,9035,Mozambique,METT,2015,For storage only,21,Quirimbas,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9589,9035,Mozambique,METT,2016,For storage only,21,Quirimbas,National Park,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9594,4650,Mozambique,RAPPAM,2006,For storage only,21,Gilé,National Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9595,4650,Mozambique,METT,2014,For storage only,21,Gilé,National Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9596,4650,Mozambique,METT,2015,For storage only,21,Gilé,National Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9597,4650,Mozambique,METT,2016,For storage only,21,Gilé,National Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9598,4651,Mozambique,RAPPAM,2006,For storage only,21,Niassa,Game Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9599,4651,Mozambique,METT,2015,For storage only,21,Niassa,Game Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9600,4653,Mozambique,METT,2014,For storage only,21,Pomene,Game Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9601,4653,Mozambique,METT,2015,For storage only,21,Pomene,Game Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9602,4653,Mozambique,METT,2016,For storage only,21,Pomene,Game Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9603,4649,Mozambique,RAPPAM,2006,For storage only,21,Marromeu,Game Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9604,4649,Mozambique,METT,2014,For storage only,21,Marromeu,Game Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9605,4649,Mozambique,METT,2015,For storage only,21,Marromeu,Game Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9606,4649,Mozambique,METT,2016,For storage only,21,Marromeu,Game Reserve,PAME for Mozambique Protected Areas,National Administration of Conservation Areas,2018,English -9607,326435,Liechtenstein,METT,2017,For storage only,22,Alta Bach,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9608,30756,Liechtenstein,METT,2017,For storage only,22,Au,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9609,30750,Liechtenstein,METT,2017,For storage only,22,Aeulehaeg,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9610,326436,Liechtenstein,METT,2017,For storage only,22,Balzner Neugut,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9611,326437,Liechtenstein,METT,2017,For storage only,22,Balzner Rheinau,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9612,326438,Liechtenstein,METT,2017,For storage only,22,Bim Hensile,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9613,30754,Liechtenstein,METT,2017,For storage only,22,Birka,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9614,326439,Liechtenstein,METT,2017,For storage only,22,Fuermazoeg,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9615,326440,Liechtenstein,METT,2017,For storage only,22,Gampriner Rheinau,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9616,30747,Liechtenstein,METT,2017,For storage only,22,Gampriner Seelein,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9617,326433,Liechtenstein,METT,2017,For storage only,22,Ganada,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9618,326455,Liechtenstein,METT,2017,For storage only,22,Gantenstein,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9619,326426,Liechtenstein,METT,2017,For storage only,22,Garsaelli,Forest Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9620,326442,Liechtenstein,METT,2017,For storage only,22,Guschg / Nachtsaess,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9621,326443,Liechtenstein,METT,2017,For storage only,22,Haelos,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9622,30752,Liechtenstein,METT,2017,For storage only,22,Heilos,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9623,326427,Liechtenstein,METT,2017,For storage only,22,Hinter Baergwald /Heubueal,Forest Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9624,326444,Liechtenstein,METT,2017,For storage only,22,Hochwuerza,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9625,326445,Liechtenstein,METT,2017,For storage only,22,Malanserwald/Lotzagueetle,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9626,555625696,Liechtenstein,METT,2017,For storage only,22,Mareewiesen,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9627,326446,Liechtenstein,METT,2017,For storage only,22,Maschera,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9628,555625695,Liechtenstein,METT,2017,For storage only,22,Matilaberg,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9629,326428,Liechtenstein,METT,2017,For storage only,22,Messweid,Forest Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9630,326429,Liechtenstein,METT,2017,For storage only,22,Mittagsspitze,Forest Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9631,326447,Liechtenstein,METT,2017,For storage only,22,Moggawald / Schwarzwald,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9632,555625697,Liechtenstein,METT,2017,For storage only,22,"Periol, Bofel, Neufeld, Undera Forst",Protected Landscape,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9633,326448,Liechtenstein,METT,2017,For storage only,22,Plattawald / Bleika,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9634,326449,Liechtenstein,METT,2017,For storage only,22,Pradamee,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9635,326450,Liechtenstein,METT,2017,For storage only,22,Retta,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9636,326430,Liechtenstein,METT,2017,For storage only,22,Rinderwald,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9637,326434,Liechtenstein,METT,2017,For storage only,22,Garsaelli,Forest Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9638,68093,Liechtenstein,METT,2017,For storage only,22,Ruggeller Riet,"Ramsar Site, Wetland of International Importance",Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9639,326452,Liechtenstein,METT,2017,For storage only,22,Saeliwald,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9640,326431,Liechtenstein,METT,2017,For storage only,22,Schlosswald,Forest Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9641,30755,Liechtenstein,METT,2017,For storage only,22,Schneckenaeule,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9642,18109,Liechtenstein,METT,2017,For storage only,22,Schwabbruennen/Aescher,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9643,326453,Liechtenstein,METT,2017,For storage only,22,Stachler Wald,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9644,326432,Liechtenstein,METT,2017,For storage only,22,Steger Bach,Forest Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9645,326454,Liechtenstein,METT,2017,For storage only,22,Unterau,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9646,555625698,Liechtenstein,METT,2017,For storage only,22,Wesa-Fokswinkel,Protected Landscape,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9647,30753,Liechtenstein,METT,2017,For storage only,22,Wisanels,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -29581,326441,Liechtenstein,METT,2017,For storage only,22,Ganada,Forest Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -29582,326451,Liechtenstein,METT,2017,For storage only,22,Ruggeller Rheinau,Protected Forest,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -29583,18107,Liechtenstein,METT,2017,For storage only,22,Ruggeller Riet,Nature Reserve,Liechtenstein Management Effectiveness Evaluation,Department of Forest and Landscape,2018,English -9648,555540728,Poland,Birdlife IBA,1994,For storage only,23,Dolina Baryczy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9649,555540729,Poland,Birdlife IBA,1994,For storage only,23,Grądy Odrzańskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9650,555540730,Poland,Birdlife IBA,1994,For storage only,23,Stawy Przemkowskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9651,555540731,Poland,Birdlife IBA,2002,For storage only,23,Zbiornik Mietkowski,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9652,555540732,Poland,Birdlife IBA,2004,For storage only,23,Bory Dolnośląskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9653,555540733,Poland,Birdlife IBA,2004,For storage only,23,Góry Stołowe,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9654,555540734,Poland,Birdlife IBA,2002,For storage only,23,Karkonosze,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9655,555540735,Poland,Birdlife IBA,1994,For storage only,23,Łęgi Odrzańskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9656,555577794,Poland,Birdlife IBA,2010,For storage only,23,Góry Izerskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9657,555577795,Poland,Birdlife IBA,2010,For storage only,23,Sudety Wałbrzysko-Kamiennogórskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9658,555540736,Poland,Birdlife IBA,1994,For storage only,23,Błota Rakutowskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9659,555540737,Poland,Birdlife IBA,1994,For storage only,23,Bagienna Dolina Drwęcy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9660,555540738,Poland,Birdlife IBA,2002,For storage only,23,Dolina Dolnej Wisły,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9661,555540739,Poland,Birdlife IBA,1994,For storage only,23,Ostoja Nadgoplańska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9662,555540740,Poland,Birdlife IBA,2004,For storage only,23,Żwirownia Skoki,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9663,555540741,Poland,Birdlife IBA,1994,For storage only,23,Bagno Bubnów,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9664,555540742,Poland,Birdlife IBA,1994,For storage only,23,Chełmskie Torfowiska Węglanowe,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9665,555540743,Poland,Birdlife IBA,2002,For storage only,23,Dolina Środkowego Bugu,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9666,555540744,Poland,Birdlife IBA,1994,For storage only,23,Dolina Tyśmienicy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9667,555540745,Poland,Birdlife IBA,1994,For storage only,23,Lasy Janowskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9668,555540746,Poland,Birdlife IBA,1994,For storage only,23,Lasy Parczewskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9669,555540747,Poland,Birdlife IBA,1994,For storage only,23,Lasy Strzeleckie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9670,555540748,Poland,Birdlife IBA,2002,For storage only,23,Puszcza Solska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9671,555540749,Poland,Birdlife IBA,1994,For storage only,23,Lasy Łukowskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9672,555540750,Poland,Birdlife IBA,2004,For storage only,23,Ostoja Tyszowiecka,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9673,555540751,Poland,Birdlife IBA,1994,For storage only,23,Roztocze,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9674,555540752,Poland,Birdlife IBA,2004,For storage only,23,Dolina Górnej Łabuńki,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9675,555540753,Poland,Birdlife IBA,1994,For storage only,23,Uroczysko Mosty-Zahajki,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9676,555540754,Poland,Birdlife IBA,2002,For storage only,23,Zbiornik Podedwórze,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9677,555540755,Poland,Birdlife IBA,2004,For storage only,23,Staw Boćków,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9678,555540756,Poland,Birdlife IBA,2004,For storage only,23,Zlewnia Górnej Huczwy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9679,555540757,Poland,Birdlife IBA,2004,For storage only,23,Dolina Szyszły,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9680,555540758,Poland,Birdlife IBA,2002,For storage only,23,Polesie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9681,555540759,Poland,Birdlife IBA,2004,For storage only,23,Ostoja Nieliska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9682,555540760,Poland,Birdlife IBA,2004,For storage only,23,Dolina Sołokiji,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9683,555540761,Poland,Birdlife IBA,2004,For storage only,23,Puszcza Barlinecka,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9684,555540762,Poland,Birdlife IBA,2004,For storage only,23,Dolina Dolnej Noteci,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9685,555540763,Poland,Birdlife IBA,2004,For storage only,23,Dolina Środkowej Odry,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9686,555540764,Poland,Birdlife IBA,1994,For storage only,23,Jeziora Pszczewskie i Dolina Obry,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9687,555540765,Poland,Birdlife IBA,1994,For storage only,23,Pradolina Warszawsko-Berlińska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9688,555540766,Poland,Birdlife IBA,1994,For storage only,23,Zbiornik Jeziorsko,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9689,555577796,Poland,Birdlife IBA,2010,For storage only,23,Doliny Przysowy i Słudwi,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9690,555540767,Poland,Birdlife IBA,1994,For storage only,23,Gorce,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9691,555540768,Poland,Birdlife IBA,1994,For storage only,23,Puszcza Niepołomicka,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9692,555540769,Poland,Birdlife IBA,1994,For storage only,23,Dolina Dolnej Soły,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9693,555540770,Poland,Birdlife IBA,1994,For storage only,23,Dolina Dolnej Skawy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9694,555540771,Poland,Birdlife IBA,2004,For storage only,23,Pasmo Policy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9695,555540772,Poland,Birdlife IBA,2004,For storage only,23,Torfowiska Orawsko-Nowotarskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9696,555540774,Poland,Birdlife IBA,1994,For storage only,23,Stawy w Brzeszczach,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9697,555540775,Poland,Birdlife IBA,1994,For storage only,23,Babia Góra,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9698,555540776,Poland,Birdlife IBA,1994,For storage only,23,Dolina Dolnego Bugu,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9699,555540777,Poland,Birdlife IBA,1994,For storage only,23,Dolina Liwca,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9700,555540778,Poland,Birdlife IBA,2002,For storage only,23,Dolina Pilicy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9701,555540779,Poland,Birdlife IBA,1994,For storage only,23,Dolina Środkowej Wisły,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9702,555540780,Poland,Birdlife IBA,2002,For storage only,23,Doliny Omulwi i Płodownicy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9703,555540781,Poland,Birdlife IBA,1994,For storage only,23,Małopolski Przełom Wisły,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9704,555540782,Poland,Birdlife IBA,1994,For storage only,23,Puszcza Biała,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9705,555540783,Poland,Birdlife IBA,1994,For storage only,23,Doliny Wkry i Mławki,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9706,555540784,Poland,Birdlife IBA,2004,For storage only,23,Dolina Kostrzynia,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9707,555540785,Poland,Birdlife IBA,1994,For storage only,23,Bagno Całowanie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9708,555540786,Poland,Birdlife IBA,2004,For storage only,23,Ostoja Kozienicka,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9709,555540787,Poland,Birdlife IBA,2004,For storage only,23,Dolina Dolnej Narwi,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9710,555577797,Poland,Birdlife IBA,2010,For storage only,23,Bagno Pulwy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9711,555540788,Poland,Birdlife IBA,2002,For storage only,23,Zbiornik Nyski,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9712,555540789,Poland,Birdlife IBA,1994,For storage only,23,Zbiornik Otmuchowski,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9713,555540790,Poland,Birdlife IBA,1994,For storage only,23,Zbiornik Turawa,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9714,555540791,Poland,Birdlife IBA,2002,For storage only,23,Pogórze Przemyskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9715,555540792,Poland,Birdlife IBA,2004,For storage only,23,Beskid Niski,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9716,555540793,Poland,Birdlife IBA,2004,For storage only,23,Góry Słonne,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9717,555540794,Poland,Birdlife IBA,2010,For storage only,23,Puszcza Sandomierska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9718,555540795,Poland,Birdlife IBA,1994,For storage only,23,Bagienna Dolina Narwi,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9719,555540796,Poland,Birdlife IBA,1994,For storage only,23,Puszcza Augustowska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9720,555540797,Poland,Birdlife IBA,1994,For storage only,23,Puszcza Knyszyńska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9721,555540798,Poland,Birdlife IBA,1994,For storage only,23,Dolina Górnego Nurca,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9722,555540799,Poland,Birdlife IBA,1994,For storage only,23,Bagno Wizna,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9723,555540800,Poland,Birdlife IBA,1994,For storage only,23,Ostoja Biebrzańska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9724,555540801,Poland,Birdlife IBA,1994,For storage only,23,Dolina Górnej Narwi,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9725,555540802,Poland,Birdlife IBA,1994,For storage only,23,Przełomowa Dolina Narwi,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9726,555540803,Poland,Birdlife IBA,1994,For storage only,23,Wielki Sandr Brdy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9727,555540804,Poland,Birdlife IBA,1994,For storage only,23,Dolina Słupi,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9728,555540805,Poland,Birdlife IBA,1994,For storage only,23,Pobrzeże Słowińskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9729,555540806,Poland,Birdlife IBA,1994,For storage only,23,Ujście Wisły,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9730,555540807,Poland,Birdlife IBA,2002,For storage only,23,Zatoka Pucka,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9731,555540808,Poland,Birdlife IBA,2004,For storage only,23,Lasy Lęborskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9732,555540809,Poland,Birdlife IBA,2004,For storage only,23,Puszcza Darżlubska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9733,555540810,Poland,Birdlife IBA,2004,For storage only,23,Lasy Mirachowskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9734,555540811,Poland,Birdlife IBA,2004,For storage only,23,Bory Tucholskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9735,555540812,Poland,Birdlife IBA,1994,For storage only,23,Bielawskie Błota,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9736,555540813,Poland,Birdlife IBA,1994,For storage only,23,Dolina Górnej Wisły,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9737,555540814,Poland,Birdlife IBA,2004,For storage only,23,Beskid Żywiecki,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9738,555540815,Poland,Birdlife IBA,1994,For storage only,23,Stawy Wielikąt i Las Tworkowski,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9739,555540816,Poland,Birdlife IBA,2002,For storage only,23,Dolina Nidy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9740,555540817,Poland,Birdlife IBA,1994,For storage only,23,Bagna Nietlickie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9741,555540818,Poland,Birdlife IBA,2002,For storage only,23,Dolina Pasłęki,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9742,555540819,Poland,Birdlife IBA,1994,For storage only,23,Jezioro Łuknajno,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9743,555540820,Poland,Birdlife IBA,1994,For storage only,23,Jezioro Oświn i okolice,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9744,555540821,Poland,Birdlife IBA,1994,For storage only,23,Lasy Iławskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9745,555540822,Poland,Birdlife IBA,1994,For storage only,23,Puszcza Borecka,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9746,555540823,Poland,Birdlife IBA,1994,For storage only,23,Puszcza Napiwodzko-Ramucka,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9747,555540824,Poland,Birdlife IBA,2002,For storage only,23,Puszcza Piska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9748,555540825,Poland,Birdlife IBA,1994,For storage only,23,Zalew Wiślany,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9749,555540826,Poland,Birdlife IBA,2004,For storage only,23,Lasy Skaliskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9750,555540827,Poland,Birdlife IBA,1994,For storage only,23,Jezioro Dobskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9751,555540828,Poland,Birdlife IBA,1994,For storage only,23,Jezioro Drużno,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9752,555540829,Poland,Birdlife IBA,2004,For storage only,23,Ostoja Poligon Orzysz,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9753,555540830,Poland,Birdlife IBA,2004,For storage only,23,Ostoja Warmińska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9754,555540831,Poland,Birdlife IBA,2002,For storage only,23,Dolina Środkowej Noteci i Kanału Bydgoskiego,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9755,555540832,Poland,Birdlife IBA,2002,For storage only,23,Dolina Środkowej Warty,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9756,555540833,Poland,Birdlife IBA,1994,For storage only,23,Nadnoteckie Łęgi,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9757,555540834,Poland,Birdlife IBA,1994,For storage only,23,Wielki Łęg Obrzański,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9758,555540835,Poland,Birdlife IBA,1994,For storage only,23,Zbiornik Wonieść,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9759,555540836,Poland,Birdlife IBA,2004,For storage only,23,Dolina Małej Wełny pod Kiszkowem,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9760,555540837,Poland,Birdlife IBA,2004,For storage only,23,Dąbrowy Krotoszyńskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9761,555540838,Poland,Birdlife IBA,1994,For storage only,23,Jezioro Zgierzynieckie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9762,555540839,Poland,Birdlife IBA,2002,For storage only,23,Pojezierze Sławskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9763,555540840,Poland,Birdlife IBA,2004,For storage only,23,Puszcza nad Gwdą,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9764,555540841,Poland,Birdlife IBA,2004,For storage only,23,Dolina Samicy,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9765,555540842,Poland,Birdlife IBA,2004,For storage only,23,Puszcza Notecka,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9766,555540843,Poland,Birdlife IBA,2002,For storage only,23,Ostoja Rogalińska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9767,555540844,Poland,Birdlife IBA,1994,For storage only,23,Bagna Rozwarowskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9768,555540845,Poland,Birdlife IBA,1994,For storage only,23,Delta Świny,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9769,555540846,Poland,Birdlife IBA,1994,For storage only,23,Dolina Dolnej Odry,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9770,555540847,Poland,Birdlife IBA,1994,For storage only,23,Jezioro Miedwie i okolice,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9771,555540848,Poland,Birdlife IBA,1994,For storage only,23,Jezioro Świdwie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9772,555540849,Poland,Birdlife IBA,1994,For storage only,23,Łąki Skoszewskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9773,555540850,Poland,Birdlife IBA,1994,For storage only,23,Ostoja Ińska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9774,555540851,Poland,Birdlife IBA,1994,For storage only,23,Zalew Szczeciński,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9775,555540852,Poland,Birdlife IBA,2004,For storage only,23,Wybrzeże Trzebiatowskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9776,555540853,Poland,Birdlife IBA,1994,For storage only,23,Zalew Kamieński i Dziwna,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9777,555540854,Poland,Birdlife IBA,2004,For storage only,23,Puszcza Goleniowska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9778,555540855,Poland,Birdlife IBA,2004,For storage only,23,Ostoja Wkrzańska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9779,555540856,Poland,Birdlife IBA,2004,For storage only,23,Ostoja Witnicko-Dębniańska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9780,555540857,Poland,Birdlife IBA,2004,For storage only,23,Lasy Puszczy nad Drawą,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9781,555540858,Poland,Birdlife IBA,2004,For storage only,23,Ostoja Cedyńska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9782,555540859,Poland,Birdlife IBA,1994,For storage only,23,Jeziora Wełtyńskie,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9783,555540860,Poland,Birdlife IBA,1994,For storage only,23,Ostoja Drawska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9784,555540861,Poland,Birdlife IBA,2002,For storage only,23,Przybrzeżne wody Bałtyku,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9785,555540862,Poland,Birdlife IBA,2002,For storage only,23,Zatoka Pomorska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9786,555540863,Poland,Birdlife IBA,2004,For storage only,23,Ujście Warty,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9787,555540864,Poland,Birdlife IBA,1994,For storage only,23,Tatry,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9788,555577798,Poland,Birdlife IBA,1994,For storage only,23,Pieniny,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9789,555540865,Poland,Birdlife IBA,1994,For storage only,23,Puszcza Kampinoska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9790,555540866,Poland,Birdlife IBA,1994,For storage only,23,Bieszczady,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9791,555540867,Poland,Birdlife IBA,1994,For storage only,23,Puszcza Białowieska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9792,555540868,Poland,Birdlife IBA,2002,For storage only,23,Ławica Słupska,Special Protection Area (Birds Directive),Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9793,851,Poland,European Diploma,1998,For storage only,23,Bieszczadzki Park Narodowy,National Park,Poland Management Effectiveness Evaluation,Department of Nature Conservation,2018,English -9794,555592586,Bahamas,METT-RAPPAM,2018,For storage only,24,Jew Fish Marine Reserve (Exuma Cays),Marine Reserve,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9795,555592584,Bahamas,METT-RAPPAM,2018,For storage only,24,South Berry Island Marine Reserve,Marine Reserve,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9796,555592587,Bahamas,METT-RAPPAM,2018,For storage only,24,Crab Cay Marine Reserve,Fisheries Reserve,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9797,555592841,Bahamas,METT-RAPPAM,2018,For storage only,24,No Name Cay Marine Reserve,Fisheries Reserve,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9798,61793,Bahamas,METT-RAPPAM,2018,For storage only,25,Rand Nature Centre,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9799,11840,Bahamas,METT-RAPPAM,2018,For storage only,25,Peterson Cay National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9800,11841,Bahamas,METT-RAPPAM,2014,For storage only,25,Lucayan National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9801,315001,Bahamas,METT-RAPPAM,2018,For storage only,25,Walker’s Cay National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9802,13939,Bahamas,METT-RAPPAM,2018,For storage only,25,Black Sound Cay National Reserve,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9803,31341,Bahamas,METT-RAPPAM,2018,For storage only,25,Tilloo Cay Reserve,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9804,555592579,Bahamas,METT-RAPPAM,2018,For storage only,25,Fowl Cays National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9805,129917,Bahamas,METT-RAPPAM,2018,For storage only,25,Abaco National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9806,11839,Bahamas,METT-RAPPAM,2018,For storage only,25,Pelican Cays Land & Sea Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9807,315003,Bahamas,METT-RAPPAM,2018,For storage only,25,Moriah Harbour Cay National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9808,2228,Bahamas,METT-RAPPAM,2018,For storage only,25,Exuma Cays Land & Sea Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9809,555592588,Bahamas,METT-RAPPAM,2018,For storage only,25,Leon Levy National Park Preserve,Plant Preserve,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9810,555592589,Bahamas,METT-RAPPAM,2018,For storage only,25,Marine Farms,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9811,555592590,Bahamas,METT-RAPPAM,2018,For storage only,25,Hope Great House,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9812,555625717,Bahamas,METT-RAPPAM,2018,For storage only,25,Graham’s Harbour Iguana and Seabird National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9813,555625719,Bahamas,METT-RAPPAM,2018,For storage only,25,West Coast Marine Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9814,555625715,Bahamas,METT-RAPPAM,2018,For storage only,25,Pigeon Creek & Snow Bay National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9815,555625716,Bahamas,METT-RAPPAM,2018,For storage only,25,Southern Great Lake National Park,Protected Area,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9816,555625718,Bahamas,METT-RAPPAM,2018,For storage only,25,Green’s Bay National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9817,555592582,Bahamas,METT-RAPPAM,2018,For storage only,25,Andros North Marine Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9818,555592581,Bahamas,METT-RAPPAM,2018,For storage only,25,Crab Replenishment Reserve,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9819,555592585,Bahamas,METT-RAPPAM,2018,For storage only,25,Andros West Side National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9820,555592583,Bahamas,METT-RAPPAM,2018,For storage only,25,Andros South Marine Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9821,555592580,Bahamas,METT-RAPPAM,2018,For storage only,25,Andros Blue Hole National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9822,315002,Bahamas,METT-RAPPAM,2018,For storage only,25,Bonefish Pond National Park,Ecological Reserve,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9823,13938,Bahamas,METT-RAPPAM,2018,For storage only,25,The Retreat,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9824,555592591,Bahamas,METT-RAPPAM,2018,For storage only,25,Harrold and Wilson Pond National Park,Ecological Reserve,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9825,555592592,Bahamas,METT-RAPPAM,2018,For storage only,25,Primeval Forest National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9826,2187,Bahamas,METT-RAPPAM,2018,For storage only,25,Conception Island National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9827,315000,Bahamas,METT-RAPPAM,2018,For storage only,25,Little Inagua National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9828,316891,Bahamas,METT-RAPPAM,2018,For storage only,25,Union Creek Reserve,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9829,24,Bahamas,METT-RAPPAM,2018,For storage only,25,Inagua National Park,National Park,The Bahamas management effectiveness information,Department of Marine Resources,2018,English -9830,10932,"Korea, Republic of",Korea SOP,2016,For storage only,26,Bukhansan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9831,30712,"Korea, Republic of",Korea SOP,2016,For storage only,26,Byeonsanbando,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9832,4736,"Korea, Republic of",Korea SOP,2016,For storage only,26,Dadohaehaesang,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9833,770,"Korea, Republic of",Korea SOP,2016,For storage only,26,Deogyusan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9834,776,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gayasan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9835,772,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongju,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9836,775,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeryongsan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9837,10931,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hallasan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9838,766,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hallyeohaesang,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9839,767,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jirisan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9840,4734,"Korea, Republic of",Korea SOP,2016,For storage only,26,Juwangsan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9841,774,"Korea, Republic of",Korea SOP,2016,For storage only,26,Naejangsan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9842,769,"Korea, Republic of",Korea SOP,2016,For storage only,26,Odaesan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9843,768,"Korea, Republic of",Korea SOP,2016,For storage only,26,Seoraksan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9844,773,"Korea, Republic of",Korea SOP,2016,For storage only,26,Songnisan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9845,4735,"Korea, Republic of",Korea SOP,2016,For storage only,26,Taeanhaean,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9846,30711,"Korea, Republic of",Korea SOP,2016,For storage only,26,Wolchulsan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9847,10933,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chiaksan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9848,30710,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sobaeksan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9849,555557236,"Korea, Republic of",Korea SOP,2016,For storage only,26,Mudeungsan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9850,555622711,"Korea, Republic of",Korea SOP,2016,For storage only,26,Taebaeksan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9851,10934,"Korea, Republic of",Korea SOP,2016,For storage only,26,Woraksan,National Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9852,555622125,"Korea, Republic of",Korea SOP,2016,For storage only,26,Byeongbangsan,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9853,555571321,"Korea, Republic of",Korea SOP,2016,For storage only,26,Myeongjisan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9854,555571322,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hogusan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9855,555571335,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sangjogam County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9856,555571336,"Korea, Republic of",Korea SOP,2016,For storage only,26,Bongmyeongsan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9857,555571337,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hwangmaesan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9858,555571338,"Korea, Republic of",Korea SOP,2016,For storage only,26,Bogyeongsa County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9859,555571339,"Korea, Republic of",Korea SOP,2016,For storage only,26,Bullyeonggyegok County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9860,555571324,"Korea, Republic of",Korea SOP,2016,For storage only,26,Ipgok County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9861,555571340,"Korea, Republic of",Korea SOP,2016,For storage only,26,Deokguoncheon County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9862,555571341,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gososeong County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9863,555571342,"Korea, Republic of",Korea SOP,2016,For storage only,26,Ungseokbong County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9864,555571343,"Korea, Republic of",Korea SOP,2016,For storage only,26,Unmunsan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9865,555571323,"Korea, Republic of",Korea SOP,2016,For storage only,26,Bangeosan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9866,555571346,"Korea, Republic of",Korea SOP,2016,For storage only,26,Amisan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9867,555571326,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sinbulsan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9868,555571327,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hwawangsan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9869,555571328,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangcheonsan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9870,555571329,"Korea, Republic of",Korea SOP,2016,For storage only,26,Geoyeolsanseong County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9871,555571331,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daeiri County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9872,555571332,"Korea, Republic of",Korea SOP,2016,For storage only,26,Wolseonggyegok County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9873,555571333,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jangansan County Park,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9874,555625826,"Korea, Republic of",Korea SOP,2016,For storage only,26,Binggye,County Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9875,555571365,"Korea, Republic of",Korea SOP,2016,For storage only,26,Yeonhwasan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9876,555571366,"Korea, Republic of",Korea SOP,2016,For storage only,26,Woodo Marine,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9877,555571367,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jogyesan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9878,555571354,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daedunsan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9879,555571355,"Korea, Republic of",Korea SOP,2016,For storage only,26,Deoksan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9880,555571357,"Korea, Republic of",Korea SOP,2016,For storage only,26,Mara Marine,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9881,555571358,"Korea, Republic of",Korea SOP,2016,For storage only,26,Maisan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9882,555571359,"Korea, Republic of",Korea SOP,2016,For storage only,26,Moaksan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9883,555571360,"Korea, Republic of",Korea SOP,2016,For storage only,26,Mungyeongsaejae,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9884,555571361,"Korea, Republic of",Korea SOP,2016,For storage only,26,Seogwipo Marine,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9885,555571362,"Korea, Republic of",Korea SOP,2016,For storage only,26,Seonunsan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9886,555571363,"Korea, Republic of",Korea SOP,2016,For storage only,26,Seongsanilchul Marine,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9887,555571370,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chuja Marine,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9888,555571371,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chilgapsan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9889,555571373,"Korea, Republic of",Korea SOP,2016,For storage only,26,Palgongsan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9890,555571349,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gajisan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9891,555571350,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyoungpo,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9892,555571351,"Korea, Republic of",Korea SOP,2016,For storage only,26,Geumosan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9893,555571368,"Korea, Republic of",Korea SOP,2016,For storage only,26,Cheongwansan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9894,555571369,"Korea, Republic of",Korea SOP,2016,For storage only,26,Cheongnyangsan,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9895,555622124,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jejugotjawal,Provincial Park,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9896,555594098,"Korea, Republic of",METT,2017,For storage only,26,Dogaegusa_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9897,478391,"Korea, Republic of",METT,2017,For storage only,26,Hyangnobong,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9898,555547911,"Korea, Republic of",METT,2017,For storage only,26,Mt. Jeokgeun Forest Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9899,555558236,"Korea, Republic of",METT,2017,For storage only,26,Bogildo,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9900,555558247,"Korea, Republic of",METT,2017,For storage only,26,Deoguri,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9901,478393,"Korea, Republic of",METT,2017,For storage only,26,Sogwang-ri,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9902,478394,"Korea, Republic of",METT,2017,For storage only,26,Ulleungdo Seonginbong,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9903,555547912,"Korea, Republic of",METT,2017,For storage only,26,Dongbaekdongsan Forest Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9904,555547913,"Korea, Republic of",METT,2017,For storage only,26,Sumeunmul Baengdeu Wetlands,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9905,555547915,"Korea, Republic of",METT,2017,For storage only,26,Mt. Kariwang Forest Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9906,555594064,"Korea, Republic of",METT,2017,For storage only,26,Naejeoul_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9907,555558250,"Korea, Republic of",METT,2017,For storage only,26,Eulsugol,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9908,555547916,"Korea, Republic of",METT,2017,For storage only,26,Mt. Gyebang Forest Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9909,555547920,"Korea, Republic of",METT,2017,For storage only,26,Punchbowl Forest Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9910,555558261,"Korea, Republic of",METT,2017,For storage only,26,Jangjaebong,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9911,555558266,"Korea, Republic of",METT,2017,For storage only,26,Mt. Barwang,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9912,555558277,"Korea, Republic of",METT,2017,For storage only,26,Mt. Yeogwi,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9913,555594077,"Korea, Republic of",METT,2017,For storage only,26,Hogyeong_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9914,555558273,"Korea, Republic of",METT,2017,For storage only,26,Mt. Gyeung,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9915,555558298,"Korea, Republic of",METT,2017,For storage only,26,Yeongsil,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9916,555594069,"Korea, Republic of",METT,2017,For storage only,26,Eosarideok_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9917,555594070,"Korea, Republic of",METT,2017,For storage only,26,Vly.Eoreum_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9918,555594061,"Korea, Republic of",METT,2017,For storage only,26,Vly.Jogae_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9919,555594062,"Korea, Republic of",METT,2017,For storage only,26,Vly.Dang_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9920,555594076,"Korea, Republic of",METT,2017,For storage only,26,Sandeok_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9921,555594058,"Korea, Republic of",METT,2017,For storage only,26,Mt.Bakji_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9922,555594059,"Korea, Republic of",METT,2017,For storage only,26,Ucheon_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9923,555594060,"Korea, Republic of",METT,2017,For storage only,26,Vly.Yanghyeon_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9924,555594091,"Korea, Republic of",METT,2017,For storage only,26,Bukam_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9925,555594112,"Korea, Republic of",METT,2017,For storage only,26,Mureung_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9926,555594068,"Korea, Republic of",METT,2017,For storage only,26,Sangbaejjae_Forest_Reserve,Forest Genetic Resources Reserve,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9927,555512289,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jinkwannae-dong,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9928,555558258,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hasi-dong Aninsagu(Dune),Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9929,555512285,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gwangyang Baegunsan,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9930,555512279,"Korea, Republic of",Korea SOP,2016,For storage only,26,Bongsan,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9931,555512281,"Korea, Republic of",Korea SOP,2016,For storage only,26,Changdukgung Rear Garden,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9932,555512288,"Korea, Republic of",Korea SOP,2016,For storage only,26,Inwangsan,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9933,555512283,"Korea, Republic of",Korea SOP,2016,For storage only,26,Dunchon-dong,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9934,555512293,"Korea, Republic of",Korea SOP,2016,For storage only,26,Namsan,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9935,555512280,"Korea, Republic of",Korea SOP,2016,For storage only,26,Bulamsan Samyookdae,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9936,555512286,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hangang Bamseom,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9937,555512287,"Korea, Republic of",Korea SOP,2016,For storage only,26,Heoninneung Royal Tombs,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9938,555512297,"Korea, Republic of",Korea SOP,2016,For storage only,26,Tancheon,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9939,555512278,"Korea, Republic of",Korea SOP,2016,For storage only,26,Bangi-dong,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9940,555512284,"Korea, Republic of",Korea SOP,2016,For storage only,26,Godeok-dong,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9941,555512277,"Korea, Republic of",Korea SOP,2016,For storage only,26,Amsa-dong,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9942,555512282,"Korea, Republic of",Korea SOP,2016,For storage only,26,Donggang Watershed,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9943,555622226,"Korea, Republic of",Korea SOP,2016,For storage only,26,Seongnaecheon Downstream,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9944,555622229,"Korea, Republic of",Korea SOP,2016,For storage only,26,"Myeongjisan, Cheonggyesan",Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9945,555622230,"Korea, Republic of",Korea SOP,2016,For storage only,26,Cheonggyesan Wonteogol,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9946,555622225,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gwanaksan,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9947,555622222,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daedeoksan-Geumdaebong,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9948,555622223,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sohan Valley,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9949,555622224,"Korea, Republic of",Korea SOP,2016,For storage only,26,Baeksasil Valley,Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9950,555622228,"Korea, Republic of",Korea SOP,2016,For storage only,26,Taehwagang(river),Ecosystem and Landscape Conservation Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9951,555622219,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daegu Dalseong Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9952,555622221,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daechoengho Chudong Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9953,555512473,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jangdo Island High Moor,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9954,555512477,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sajapyeong of Jaeyaksan(Mt.),Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9955,555558234,"Korea, Republic of",Korea SOP,2016,For storage only,26,1100 Altitute Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9956,555512472,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hwa-eomneup,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9957,555512480,"Korea, Republic of",Korea SOP,2016,For storage only,26,Yongneup of Mount Daeam,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9958,555512474,"Korea, Republic of",Korea SOP,2016,For storage only,26,Moojechineup,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9959,555512475,"Korea, Republic of",Korea SOP,2016,For storage only,26,Mulyeongari-oreum,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9960,555512470,"Korea, Republic of",Korea SOP,2016,For storage only,26,Du-ung Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9961,555558299,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hanbando Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9962,555622216,"Korea, Republic of",Korea SOP,2016,For storage only,26,Wolyeong Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9963,555622217,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sueunmulbaedui,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9964,555622218,"Korea, Republic of",Korea SOP,2016,For storage only,26,Doncheon Estuary,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9965,555512476,"Korea, Republic of",Korea SOP,2016,For storage only,26,Nakdonggang Estuary,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9966,555512469,"Korea, Republic of",Korea SOP,2016,For storage only,26,Damyang Riverine Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9967,555558279,"Korea, Republic of",Korea SOP,2016,For storage only,26,Muljangori-oreum,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9968,555558248,"Korea, Republic of",Korea SOP,2016,For storage only,26,Dongbaekdongsan,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9969,555558295,"Korea, Republic of",Korea SOP,2016,For storage only,26,Ungok Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9970,555558288,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sangju Gonggeomji,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9971,555512471,"Korea, Republic of",Korea SOP,2016,For storage only,26,Hangang Estuary,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9972,555512478,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sinbulsan Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9973,555512479,"Korea, Republic of",Korea SOP,2016,For storage only,26,Upo Wetland,Wetland Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9974,555512481,"Korea, Republic of",MPA MEE,2017,For storage only,26,Gochang,Wetland Protected Area - Tidal Flat,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9975,555558238,"Korea, Republic of",MPA MEE,2017,For storage only,26,Masan Bay Bongam,Wetland Protected Area - Tidal Flat,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9976,555622956,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungbuk Cheungju Muneoimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9977,555622929,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jeongeup Naejangdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9978,555622996,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Goryeong Jisanri,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9979,555622741,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungbuk Jincheon Jincheoneup 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9980,555622742,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Hoengseong Seowonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9981,555622743,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Hoengseong Hoengseongeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9982,555622739,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Haman Saninmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9983,555622740,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungbuk Jincheon Jincheoneup 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9984,555622744,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Hoengseong Gabcheonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9985,555622745,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Chuncheon Seomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9986,555622746,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Chuncheon Dongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9987,555622747,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Chuncheon Woodudong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9988,555622748,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Miryang Sannaemyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9989,555622749,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Hapcheon Bongsanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9990,555622811,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gapyeong Seorakmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9991,555622845,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Cheongyang Cheongyangeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9992,555622750,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Hapcheon Daebyeongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9993,555622846,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Cheongyang Daechimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9994,555622757,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gwangyang Bonggangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9995,555622938,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changwon Uichanggu,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9996,555622758,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gwangyang Gwangyangeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9997,555622759,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gwangyang Junggundong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9998,555622939,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Gimhae jinyeongeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -9999,555622713,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gwangju Opoeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10000,555622714,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gwangju Namhansanseongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10001,555622719,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Jinju Daepyeongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10002,555622720,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Naju Gyeonghyundong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10003,555622721,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Wando Wandoeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10004,555622826,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Gunsan Soryongdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10005,555622722,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Seosan Buseokmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10006,555622726,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Muju Seolcheonmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10007,555622727,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changwon Jinhaegu 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10008,555622728,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changwon Jinhaegu 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10009,555622827,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jeonju Deokjingu 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10010,555622735,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gwangju Bukgu Cheongpungdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10011,555622729,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Yeonggwang Bulgabmyeon (Bulgapsan),Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10012,555622730,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daejeon Donggu Secheondong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10013,555622731,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Dongducheon Sangbongamdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10014,555622732,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Hwaseong Namyangeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10015,555622733,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gurye Gwangeuimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10016,555622734,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Haenam Samsanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10017,555622736,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gwangju Donggu Yongyeondong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10018,555622737,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gwangju Bukgu Geumgokdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10019,555622724,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Hongseong Galsanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10020,555622716,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Pochoen Shinbukmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10021,555622717,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Yangsan Gyodong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10022,555622718,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Yangsan Wondongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10023,555622725,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Muju Seolcheonmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10024,555622738,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gwangju Bukgu Hwaamdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10025,555622751,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Seosan Galsandong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10026,555622752,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gurye Masanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10027,555622753,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Wando Bogilmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10028,555622754,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Seosan Buseokmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10029,555622755,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Naju Dadomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10030,555622756,"Korea, Republic of",Korea SOP,2016,For storage only,26,Ulsan Bukgu Songjeongdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10031,555622760,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Jangheung Yuchimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10032,555622773,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Anyang Manangu,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10033,555622761,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Jangheung Jangheungeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10034,555622764,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Gangneung Jeodong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10035,555622769,"Korea, Republic of",Korea SOP,2016,For storage only,26,Incheon Junggu Unnamdong 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10036,555622770,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Wonju Hojeomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10037,555622762,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Boseong Boknaemyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10038,555622763,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Yanggu Bangsanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10039,555622765,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Uijeongbu Howondong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10040,555622774,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Taebaek Hwangjidong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10041,555622766,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Hongcheon Dongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10042,555622767,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gimpo Pungmoodong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10043,555622768,"Korea, Republic of",Korea SOP,2016,For storage only,26,Incheon Junggu Unnamdong 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10044,555622776,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungbuk Goesan Cheongcheonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10045,555622771,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Wonju sochomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10046,555622777,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daejeon Seogu Doandong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10047,555622772,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwo Wonju Heungeopmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10048,555622775,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Pyeongtaek Jinwimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10049,555622778,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daejeon Seogu Gasuwondong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10050,555622779,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Uijeongbu Sangokdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10051,555622780,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungbuk Yeongdong Haksanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10052,555622957,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gwacheon Galhyeondong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10053,555622958,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Hampyeong Daedongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10054,555622793,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gokseong Gokseongeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10055,555622794,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gokseong Ogokmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10056,555622828,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jeonju Deokjingu 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10057,555622783,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Iksan Woongpomyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10058,555622784,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Wanju Gosanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10059,555622785,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daegu Bukgu Dongbyeondong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10060,555622786,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Buan Gyehwamyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10061,555622791,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Buan Jinseomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10062,555622959,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Muan Mongtanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10063,555622960,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Mokpo Jukgyodong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10064,555622787,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daegu Donggu Geumgangdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10065,555622788,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Imsil Gwanchonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10066,555622789,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Gimje Geumsanmyeon 3 (Moaksan),Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10067,555622790,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Gimje Geumsanmyeon 2 (Geumsansa),Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10068,555622795,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gokseong Godalmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10069,555622792,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Damyang Yongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10070,555622803,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Jindo Gunnaemyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10071,555622808,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Namyangju Sudongmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10072,555622809,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Yangju Samsungdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10073,555622796,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Namwon Sannaemyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10074,555622804,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Jindo uisinmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10075,555622805,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gapyeong Hamyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10076,555622797,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gokseong Jukgokmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10077,555622798,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Hwasun Nammyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10078,555622799,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Boseong Mundeokmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10079,555622806,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gapyeong Sangdongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10080,555622997,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Goryeong Ssangrimmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10081,555622800,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Hwasun Chunyangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10082,555622802,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Boseong Hoecheonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10083,555622807,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Namyangju Sudongmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10084,555622987,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gangjin Seonjeonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10085,555622988,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gangjin Chilryangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10086,555622810,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Yangju Jangheungmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10087,555622812,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwo Jeongseon Hwaammyeom,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10088,555622813,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gwangmyeong Noonsadong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10089,555622814,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Seongnam Jungwongu 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10090,555622815,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Seongnam Jungwongu 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10091,555622816,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Seongnam Jungwongu 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10092,555623003,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Gimcheon Nongsomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10093,555622832,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Gochang Asanmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10094,555622820,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Asan Songakmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10095,555622821,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Gongju Sagokmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10096,555622822,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Gongju Gyeryongmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10097,555622842,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungbuk Jecheon Hansumyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10098,555622823,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Gongju Gyeryongmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10099,555622843,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungbuk Danyang Danyangeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10100,555623004,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Gimcheon Daedeokmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10101,555622824,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Gongju Banpomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10102,555622825,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungbuk Okcheon Dongimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10103,555622829,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jeonju Deokjingu 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10104,555622830,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Gochang Seongnaemyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10105,555622831,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Gochang Asanmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10106,555622833,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Sunchang Paldeokmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10107,555622834,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Suncheon Songgwangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10108,555622835,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Suncheon Seungjueup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10109,555622836,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Suncheon Seokhyundong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10110,555622837,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Suncheon Jogokdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10111,555622844,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sejong Yeongi Dongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10112,555622838,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Goheung Duwonmyeon (Unnamsan),Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10113,555622839,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Goheung Namgyeri (Bonghwangsan),Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10114,555622840,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Yangyang Hyunnammyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10115,555622841,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Hwaseong Songsandong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10116,555622853,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Hapcheon Gayamyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10117,555622849,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Wanju Unjumyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10118,555622850,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Wanju Dongsangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10119,555622851,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Wanju Soyangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10120,555622852,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Wanju Gooimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10121,555622854,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Hamyang Hamyangeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10122,555622855,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jangsu jangsueup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10123,555622866,"Korea, Republic of",Korea SOP,2016,For storage only,26,Incheon Ganghwagun Hwadomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10124,555622867,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Paju Gwangtanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10125,555622856,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jangsu Beonammyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10126,555622858,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Goseong Geojineup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10127,555622868,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Paju Jorieup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10128,555623005,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Gimcheon Jeungsangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10129,555622859,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Goseong Jugwangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10130,555622860,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Hwacheon Hwacheoneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10131,555622861,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Hongcheon Naemyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10132,555622862,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Pyeongchang Jinbumyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10133,555622863,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Paju Jeokseongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10134,555622864,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gimpo Wolgokmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10135,555622877,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Yangpyeong Yangpyeongeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10136,555622878,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Yeoju Sanbukmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10137,555622879,"Korea, Republic of",Korea SOP,2016,For storage only,26,Umyeonsan 1 (Seoul Seochogu Umyeondong),Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10138,555622865,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gimpo Haseongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10139,555622869,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Goyang Deokyanggu 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10140,555622880,"Korea, Republic of",Korea SOP,2016,For storage only,26,Seoul Seochogu Wonjidong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10141,555622872,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Goyang Deokyanggu 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10142,555622873,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Hongcheon Bukbangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10143,555622874,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Hongcheon Hongcheoneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10144,555622875,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Yangpyeong Yangseomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10145,555622876,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Yangpyeong Yongmunmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10146,555622881,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gwacheon Gwanmundong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10147,555622884,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Anyang Dongangu,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10148,555622889,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Pyeongchang Pyeongchangeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10149,555622883,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gwacheon Jungangdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10150,555622885,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Suwon Gwonseongu,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10151,555622886,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Yongin Yubangdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10152,555622890,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Yeongwol Yeongwoleup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10153,555622891,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Samcheok Miromyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10154,555622887,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Yeoju Cheonsongdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10155,555622888,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Yeongwol Seomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10156,555622892,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Samcheok Seongnaedong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10157,555622893,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungbuk Chungju Suanbomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10158,555622903,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sejong Yeongi Seomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10159,555622904,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daejeon Daedeokgu Hwanghodong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10160,555622910,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Buyeo Hongsanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10161,555622906,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daejeon Seogu Wolpyeongdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10162,555622913,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jinan Jucheonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10163,555622914,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jinan Bugwimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10164,555622915,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Iksan Geummamyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10165,555622907,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Boryeong Seonjumyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10166,555622908,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Buyeo Buyeoeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10167,555622923,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Geochang Buksangmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10168,555622917,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Buyeo Yanghwamyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10169,555622918,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Iksan Mohyeondong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10170,555622919,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Buan Byeonsanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10171,555622920,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jeongeup Gongpyeongdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10172,555622921,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Geochang Buksangmyeon 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10173,555622912,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Muju Jeoksangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10174,555622922,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Geochang Buksangmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10175,555622927,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jeongeup Shinseongdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10176,555622928,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Jangseong Bukhamyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10177,555622924,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jinan Jinaneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10178,555622925,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Gimje Geumsanmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10179,555622930,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Imsil Imsileup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10180,555622931,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Geochang Geochangeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10181,555622932,"Korea, Republic of",Korea SOP,2016,For storage only,26,Ulsan Namgu Seonamdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10182,555622934,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Gimhae Sambangdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10183,555622994,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk GyeongJu Baebandong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10184,555622926,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Jeongeup Ssangamdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10185,555622940,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Gimhae Daedongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10186,555622935,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Gimhae Sangdongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10187,555622936,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changnyeong Changnyeongeup 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10188,555622937,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changnyeong Bugokmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10189,555622944,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changwon Masanhappogu 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10190,555622995,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk GyeongJu Naenammyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10191,555622941,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Gimhae Jangyumyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10192,555622942,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changwon Seongsangu,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10193,555622943,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changwon Masanhappogu 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10194,555622945,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Uiryeong Bongsumyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10195,555622946,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Uiryeong Garyemyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10196,555622947,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Uiryeong Garyemyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10197,555622948,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Uiryeong Uiryeongeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10198,555622954,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Namwon Gwangchidong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10199,555622949,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Hamyang Macheonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10200,555622951,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Hadong Cheongammyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10201,555622952,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Hadong Hwagaemyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10202,555622953,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gurye Tojimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10203,555622955,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Buyeo Eunsanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10204,555622973,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Yeosu Jungheungdong 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10205,555622964,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Jinju Munsaneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10206,555622965,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Goseong Gaecheonmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10207,555622966,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Goseong Gaecheonmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10208,555622961,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Jinju Panmundong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10209,555622976,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Goseong Sangnimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10210,555622967,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Goseong Daegamyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10211,555622968,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Goseong Maammyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10212,555622962,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Jinju Sangbongdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10213,555622963,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Jinju Geumsanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10214,555622978,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Tongyeong Dosanmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10215,555622969,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sacheon Sacheoneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10216,555622984,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Yeosu Dolsaneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10217,555622970,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sacheon Yonghyeonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10218,555622971,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sacheon Gonmyeongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10219,555622972,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Hwasun Hancheonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10220,555622979,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Tongyeong Gwangdomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10221,555622985,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Yeosu Hwayangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10222,555622980,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Tongyeong Donghodong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10223,555622981,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Tongyeong Hansanmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10224,555623045,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Pohang Bukgu 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10225,555622989,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Goheung Geumsanmyeon (Jeodae Peak),Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10226,555622990,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Yeongam Geumjeongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10227,555622991,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Namwon Ayeongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10228,555622992,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daegu Dalseong Hwawoneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10229,555622993,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk GyeongJu Namsandong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10230,555622998,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Gumi Namtongdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10231,555622999,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Gumi Doryangdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10232,555623000,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Gumi Seonsaneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10233,555623018,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yeong-yang Cheonggimyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10234,555623010,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Bonghwa Sangunmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10235,555623014,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Andong Seonggokdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10236,555623015,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Andong Seohumyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10237,555623016,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yecheon Yecheoneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10238,555623017,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yeong-deok Yeongdeokeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10239,555623019,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yeong-yang Cheonggimyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10240,555623020,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yeongju Buseokmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10241,555623021,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yeongju Yeongjudong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10242,555623022,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yeongju Buseokmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10243,555623023,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yeongju Sunheungmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10244,555623024,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yeongju Hamangdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10245,555623030,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yecheon Pungyangmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10246,555623031,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Yecheon Sangrimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10247,555623034,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Ul-jin Uljineup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10248,555623035,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Ul-jin Seomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10249,555623036,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Ul-jin Giseongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10250,555623050,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk GyeongJu Ahngangeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10251,555623051,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk GyeongJu Owidongeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10252,555623040,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Cheongsong Budongmyeon 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10253,555623041,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Cheongsong Budongmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10254,555623054,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Gunsan Napomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10255,555623042,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Cheongsong Bunammyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10256,555623043,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Cheongsong Budongmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10257,555623044,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Pohang Honghaeeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10258,555623046,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Pohang Namgu 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10259,555623047,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Pohang Namgu 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10260,555623048,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongbuk Pohang Bukgu 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10261,555623055,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Namwon Unbongmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10262,555623056,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changnyeong Changnyeongeup 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10263,555623058,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Namwon Sujimyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10264,555622950,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Geumseomyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10265,555622975,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Goseong Haimyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10266,555622916,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Iksan Woongpomyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10267,555622911,"Korea, Republic of",Korea SOP,2016,For storage only,26,Daegu Suseonggu Gomodong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10268,555622801,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Gohyeonmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10269,555622986,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Yeongam Yeongameup 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10270,555622933,"Korea, Republic of",Korea SOP,2016,For storage only,26,Ulsan Bukgu Myeongchondong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10271,555622977,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Tongyeong Dosanmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10272,555622983,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Yidongmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10273,555622974,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Seolcheonmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10274,555622982,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Yidongmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10275,555625940,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Iksan Woongpomyeon 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10276,555625911,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Geumseomyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10277,555625909,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Danseongmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10278,555625912,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Geumseomyeon 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10279,555625910,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Danseongmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10280,555625863,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Chuncheon Soyangro,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10281,555625918,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Sancheongeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10282,555625913,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Samjangmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10283,555625914,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Samjangmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10284,555625915,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Samjangmyeon 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10285,555625942,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Gwangyang Jinsangmyun,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10286,555625916,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Samjangmyeon 4,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10287,555625945,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Yeongam Yeongameup 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10288,555626043,"Korea, Republic of",Korea SOP,2016,For storage only,26,Ulsan Junggu Taehwadong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10289,555625917,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Samjangmyeon 5,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10290,555625920,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Sicheonmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10291,555626044,"Korea, Republic of",Korea SOP,2016,For storage only,26,Ulsan Namgu Mugeodong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10292,555625919,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Sicheonmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10293,555625902,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Hapcheon Gayamyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10294,555625921,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Sicheonmyeon 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10295,555625922,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Sancheong Sicheonmyeon 4,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10296,555625852,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam Seocheon Seocheoneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10297,555626024,"Korea, Republic of",Korea SOP,2016,For storage only,26,Sejong Geumnammyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10298,555625901,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Goseong Haimyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10299,555625851,"Korea, Republic of",Korea SOP,2016,For storage only,26,Chungnam AsanInjumyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10300,555625943,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Jangseong Jangseongeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10301,555625944,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonnam Jangseong Samgyemyun,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10302,555626030,"Korea, Republic of",Korea SOP,2016,For storage only,26,Seoul Nanjihanganggongwon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10303,555625898,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changnyeong Changnyeongeup 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10304,555625899,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Changnyeong Changnyeongeup 4,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10305,555625865,"Korea, Republic of",Korea SOP,2016,For storage only,26,Ghungnam Dangjin Seokmunmyun,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10306,555626028,"Korea, Republic of",Korea SOP,2016,For storage only,26,Seoul Jingwan,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10307,555626029,"Korea, Republic of",Korea SOP,2016,For storage only,26,Seoul Jungrangcheon Sangryu,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10308,555625900,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Geochang Gajomyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10309,555625862,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gangwon Cheolwon Cheolwoneup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10310,555625897,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Pochoen Changsumyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10311,555625923,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Tongyeong Dosanmyeon 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10312,555625924,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Yangsan Habukmyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10313,555625925,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Yangsan Habukmyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10314,555625905,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Sangjumyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10315,555625904,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Sangjumyeon 1,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10316,555625903,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Namhaeeup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10317,555625907,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Seolcheonyeon 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10318,555625906,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Seolcheonyeon 2,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10319,555625908,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeongnam Namhae Seolcheonyeon 4,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10320,555625941,"Korea, Republic of",Korea SOP,2016,For storage only,26,Jeonbuk Namwon Sangokdong,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10321,555625896,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Goyang Deokyanggu 3,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10322,555622712,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gwangju Docheokmyeon,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10323,555622715,"Korea, Republic of",Korea SOP,2016,For storage only,26,Gyeonggi Gwangju Chowoleup,Wildlife Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10324,555623057,"Korea, Republic of",Korea SOP,2016,For storage only,26,Otter habitat in Jinyang lake,Wildlife Special Protection Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10325,555622160,"Korea, Republic of",Korea SOP,2016,For storage only,26,174_Todo(jeungdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10326,555512441,"Korea, Republic of",Korea SOP,2016,For storage only,26,29_Sojido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10327,555512418,"Korea, Republic of",Korea SOP,2016,For storage only,26,31_Oebujido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10328,555512387,"Korea, Republic of",Korea SOP,2016,For storage only,26,130_Jokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10329,555622144,"Korea, Republic of",Korea SOP,2016,For storage only,26,172_Jinjioedo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10330,555622145,"Korea, Republic of",Korea SOP,2016,For storage only,26,171_Naemaemuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10331,555622146,"Korea, Republic of",Korea SOP,2016,For storage only,26,170_Araetdonbaeseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10332,555622147,"Korea, Republic of",Korea SOP,2016,For storage only,26,169_Seokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10333,555622148,"Korea, Republic of",Korea SOP,2016,For storage only,26,167_Byeondo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10334,555622149,"Korea, Republic of",Korea SOP,2016,For storage only,26,165_Oehoenggyeondo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10335,555622197,"Korea, Republic of",Korea SOP,2016,For storage only,26,208_Yeomseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10336,555622198,"Korea, Republic of",Korea SOP,2016,For storage only,26,186_Yukgakdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10337,555622186,"Korea, Republic of",Korea SOP,2016,For storage only,26,207_Boronseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10338,555622193,"Korea, Republic of",Korea SOP,2016,For storage only,26,204_Solseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10339,555622152,"Korea, Republic of",Korea SOP,2016,For storage only,26,164_Sibidongpado9,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10340,555622203,"Korea, Republic of",Korea SOP,2016,For storage only,26,192_Hyeongjedo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10341,555622204,"Korea, Republic of",Korea SOP,2016,For storage only,26,193_Hyeongjedo1,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10342,555512393,"Korea, Republic of",Korea SOP,2016,For storage only,26,65_Jungchilgido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10343,555512434,"Korea, Republic of",Korea SOP,2016,For storage only,26,66_Sochilgido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10344,555622142,"Korea, Republic of",Korea SOP,2016,For storage only,26,15_Hangdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10345,555622143,"Korea, Republic of",Korea SOP,2016,For storage only,26,1_Dokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10346,555512338,"Korea, Republic of",Korea SOP,2016,For storage only,26,50_Daegilsando,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10347,555622150,"Korea, Republic of",Korea SOP,2016,For storage only,26,168_Odo(jodo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10348,555622165,"Korea, Republic of",Korea SOP,2016,For storage only,26,182_Darado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10349,555622153,"Korea, Republic of",Korea SOP,2016,For storage only,26,161_Sibidongpado1,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10350,555622154,"Korea, Republic of",Korea SOP,2016,For storage only,26,162_Sibidongpado2,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10351,555622163,"Korea, Republic of",Korea SOP,2016,For storage only,26,180_Gudo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10352,555622164,"Korea, Republic of",Korea SOP,2016,For storage only,26,185_Gukeulseom(gukyeoldo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10353,555622166,"Korea, Republic of",Korea SOP,2016,For storage only,26,183_Daesulgaedo(daeseonggaedo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10354,555622151,"Korea, Republic of",Korea SOP,2016,For storage only,26,163_Sibidongpado4,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10355,555622158,"Korea, Republic of",Korea SOP,2016,For storage only,26,176_Sopyeongyeodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10356,555622138,"Korea, Republic of",Korea SOP,2016,For storage only,26,107_Hoenggyeongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10357,555622139,"Korea, Republic of",Korea SOP,2016,For storage only,26,73_Sohwado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10358,555622140,"Korea, Republic of",Korea SOP,2016,For storage only,26,56_Hyeoldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10359,555622141,"Korea, Republic of",Korea SOP,2016,For storage only,26,98_Maeseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10360,555622155,"Korea, Republic of",Korea SOP,2016,For storage only,26,166_Mumyeongdo(burando),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10361,555622156,"Korea, Republic of",Korea SOP,2016,For storage only,26,177_Gadeokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10362,555622157,"Korea, Republic of",Korea SOP,2016,For storage only,26,175_Bodeunagiseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10363,555622159,"Korea, Republic of",Korea SOP,2016,For storage only,26,173_Jimado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10364,555622161,"Korea, Republic of",Korea SOP,2016,For storage only,26,178_Hae1do,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10365,555622162,"Korea, Republic of",Korea SOP,2016,For storage only,26,179_Hae2do,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10366,555622167,"Korea, Republic of",Korea SOP,2016,For storage only,26,184_Oeyeopsando(mumyeongdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10367,555622168,"Korea, Republic of",Korea SOP,2016,For storage only,26,181_Jeodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10368,555622169,"Korea, Republic of",Korea SOP,2016,For storage only,26,216_Galdossangyeo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10369,555512331,"Korea, Republic of",Korea SOP,2016,For storage only,26,78_Chaedo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10370,555622170,"Korea, Republic of",Korea SOP,2016,For storage only,26,200_Galmaegiseom(seogalmaegiseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10371,555622171,"Korea, Republic of",Korea SOP,2016,For storage only,26,220_Galsando1,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10372,555622172,"Korea, Republic of",Korea SOP,2016,For storage only,26,218_Galsando2,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10373,555622173,"Korea, Republic of",Korea SOP,2016,For storage only,26,197_Gudo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10374,555622174,"Korea, Republic of",Korea SOP,2016,For storage only,26,217_Nebawi,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10375,555622175,"Korea, Republic of",Korea SOP,2016,For storage only,26,215_Nogundo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10376,555622176,"Korea, Republic of",Korea SOP,2016,For storage only,26,209_Daegueulbido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10377,555622177,"Korea, Republic of",Korea SOP,2016,For storage only,26,191_Daemado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10378,555622178,"Korea, Republic of",Korea SOP,2016,For storage only,26,212_Daehodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10379,555622184,"Korea, Republic of",Korea SOP,2016,For storage only,26,187_Barammagido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10380,555512336,"Korea, Republic of",Korea SOP,2016,For storage only,26,51_Daecheongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10381,555622179,"Korea, Republic of",Korea SOP,2016,For storage only,26,213_Dolgeochillido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10382,555622180,"Korea, Republic of",Korea SOP,2016,For storage only,26,188_Dunbukseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10383,555622181,"Korea, Republic of",Korea SOP,2016,For storage only,26,210_Ttandokseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10384,555622182,"Korea, Republic of",Korea SOP,2016,For storage only,26,195_Maemuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10385,555622183,"Korea, Republic of",Korea SOP,2016,For storage only,26,199_Milmaedo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10386,555622185,"Korea, Republic of",Korea SOP,2016,For storage only,26,219_Baeksado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10387,555512314,"Korea, Republic of",Korea SOP,2016,For storage only,26,79_Akdo(jangguseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10388,555622187,"Korea, Republic of",Korea SOP,2016,For storage only,26,189_Bulmugido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10389,555622188,"Korea, Republic of",Korea SOP,2016,For storage only,26,203_Sangbanggodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10390,555622189,"Korea, Republic of",Korea SOP,2016,For storage only,26,211_Saetgaekkeut,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10391,555622199,"Korea, Republic of",Korea SOP,2016,For storage only,26,198_Junggalmaegiseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10392,555622190,"Korea, Republic of",Korea SOP,2016,For storage only,26,214_Sogueulbido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10393,555622191,"Korea, Republic of",Korea SOP,2016,For storage only,26,196_Sodeogudo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10394,555622192,"Korea, Republic of",Korea SOP,2016,For storage only,26,221_Sochiseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10395,555622194,"Korea, Republic of",Korea SOP,2016,For storage only,26,194_Songdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10396,555622195,"Korea, Republic of",Korea SOP,2016,For storage only,26,206_Suryeongseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10397,555622196,"Korea, Republic of",Korea SOP,2016,For storage only,26,190_Anmaedo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10398,555622200,"Korea, Republic of",Korea SOP,2016,For storage only,26,201_Jungbanggodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10399,555622201,"Korea, Republic of",Korea SOP,2016,For storage only,26,205_Jikgudo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10400,555622202,"Korea, Republic of",Korea SOP,2016,For storage only,26,202_Habanggodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10401,555622205,"Korea, Republic of",Korea SOP,2016,For storage only,26,222_Sochodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10402,555622206,"Korea, Republic of",Korea SOP,2016,For storage only,26,223_Jeokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10403,555622207,"Korea, Republic of",Korea SOP,2016,For storage only,26,228_Maryukdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10404,555622208,"Korea, Republic of",Korea SOP,2016,For storage only,26,229_Maebakseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10405,555512332,"Korea, Republic of",Korea SOP,2016,For storage only,26,133_Cheongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10406,555622209,"Korea, Republic of",Korea SOP,2016,For storage only,26,224_Daegadeokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10407,555512379,"Korea, Republic of",Korea SOP,2016,For storage only,26,80_Hyeoldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10408,555622210,"Korea, Republic of",Korea SOP,2016,For storage only,26,225_Nanggakeuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10409,555512339,"Korea, Republic of",Korea SOP,2016,For storage only,26,46_Daehangdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10410,555622211,"Korea, Republic of",Korea SOP,2016,For storage only,26,226_Sonanggakeuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10411,555512446,"Korea, Republic of",Korea SOP,2016,For storage only,26,116_Songdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10412,555622212,"Korea, Republic of",Korea SOP,2016,For storage only,26,227_Seogakeuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10413,555512374,"Korea, Republic of",Korea SOP,2016,For storage only,26,132_Heukgeomdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10414,555622213,"Korea, Republic of",Korea SOP,2016,For storage only,26,231_Oejodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10415,555512368,"Korea, Republic of",Korea SOP,2016,For storage only,26,25_Habajiseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10416,555622214,"Korea, Republic of",Korea SOP,2016,For storage only,26,232_Sehangdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10417,555622215,"Korea, Republic of",Korea SOP,2016,For storage only,26,230_Oryeokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10418,555512461,"Korea, Republic of",Korea SOP,2016,For storage only,26,111_Ttanjeonggeumdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10419,555512365,"Korea, Republic of",Korea SOP,2016,For storage only,26,126_Gotdo(kkotseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10420,555512325,"Korea, Republic of",Korea SOP,2016,For storage only,26,125_Bukgyeongnyeolbido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10421,555512408,"Korea, Republic of",Korea SOP,2016,For storage only,26,127_Myodo(tokkiseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10422,555512443,"Korea, Republic of",Korea SOP,2016,For storage only,26,128_Solseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10423,555512416,"Korea, Republic of",Korea SOP,2016,For storage only,26,52_Odo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10424,555512333,"Korea, Republic of",Korea SOP,2016,For storage only,26,53_Chudo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10425,555512375,"Korea, Republic of",Korea SOP,2016,For storage only,26,54_Hoenggyeondo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10426,555512412,"Korea, Republic of",Korea SOP,2016,For storage only,26,48_Namuseom(sangmokdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10427,555512413,"Korea, Republic of",Korea SOP,2016,For storage only,26,49_Napjakdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10428,555512419,"Korea, Republic of",Korea SOP,2016,For storage only,26,112_Oechido(keunttanchido),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10429,555512410,"Korea, Republic of",Korea SOP,2016,For storage only,26,108_Naejodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10430,555512346,"Korea, Republic of",Korea SOP,2016,For storage only,26,109_Dalludo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10431,555512340,"Korea, Republic of",Korea SOP,2016,For storage only,26,110_Daehyeongjedo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10432,555512322,"Korea, Republic of",Korea SOP,2016,For storage only,26,105_Bonongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10433,555512439,"Korea, Republic of",Korea SOP,2016,For storage only,26,106_Sohoenggyeongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10434,555512357,"Korea, Republic of",Korea SOP,2016,For storage only,26,77_Galdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10435,555512454,"Korea, Republic of",Korea SOP,2016,For storage only,26,75_Soyeonpochodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10436,555512448,"Korea, Republic of",Korea SOP,2016,For storage only,26,76_Songdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10437,555512414,"Korea, Republic of",Korea SOP,2016,For storage only,26,43_Naptaegido(seodaegido),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10438,555512316,"Korea, Republic of",Korea SOP,2016,For storage only,26,44_Baegyado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10439,555512363,"Korea, Republic of",Korea SOP,2016,For storage only,26,141_Goldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10440,555512356,"Korea, Republic of",Korea SOP,2016,For storage only,26,142_Gakeuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10441,555512343,"Korea, Republic of",Korea SOP,2016,For storage only,26,143_Daesamdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10442,555512337,"Korea, Republic of",Korea SOP,2016,For storage only,26,64_Daechilgido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10443,555512330,"Korea, Republic of",Korea SOP,2016,For storage only,26,40_Byeongpungdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10444,555512370,"Korea, Republic of",Korea SOP,2016,For storage only,26,41_Haenggeumdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10445,555512457,"Korea, Republic of",Korea SOP,2016,For storage only,26,42_Tanhangdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10446,555512347,"Korea, Republic of",Korea SOP,2016,For storage only,26,61_Darajido(naktaseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10447,555512335,"Korea, Republic of",Korea SOP,2016,For storage only,26,62_Daebyeongpungdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10448,555512437,"Korea, Republic of",Korea SOP,2016,For storage only,26,63_Sodarangdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10449,555512320,"Korea, Republic of",Korea SOP,2016,For storage only,26,67_Bido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10450,555512447,"Korea, Republic of",Korea SOP,2016,For storage only,26,68_Songdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10451,555512449,"Korea, Republic of",Korea SOP,2016,For storage only,26,69_Sosado(geobukseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10452,555512342,"Korea, Republic of",Korea SOP,2016,For storage only,26,70_Daesado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10453,555512380,"Korea, Republic of",Korea SOP,2016,For storage only,26,71_Jaedo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10454,555512395,"Korea, Republic of",Korea SOP,2016,For storage only,26,72_Junghwado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10455,555512385,"Korea, Republic of",Korea SOP,2016,For storage only,26,91_Jinmokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10456,555512386,"Korea, Republic of",Korea SOP,2016,For storage only,26,55_Jinseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10457,555512359,"Korea, Republic of",Korea SOP,2016,For storage only,26,57_Galmado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10458,555512327,"Korea, Republic of",Korea SOP,2016,For storage only,26,58_Bulgeundo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10459,555512429,"Korea, Republic of",Korea SOP,2016,For storage only,26,59_Seomeoduji(eodudo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10460,555512391,"Korea, Republic of",Korea SOP,2016,For storage only,26,89_Jukdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10461,555512465,"Korea, Republic of",Korea SOP,2016,For storage only,26,60_Wondo2(durongseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10462,555512390,"Korea, Republic of",Korea SOP,2016,For storage only,26,147_Jukdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10463,555512450,"Korea, Republic of",Korea SOP,2016,For storage only,26,148_Sosongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10464,555512315,"Korea, Republic of",Korea SOP,2016,For storage only,26,149_Anmokseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10465,555512318,"Korea, Republic of",Korea SOP,2016,For storage only,26,150_Bangmokseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10466,555512323,"Korea, Republic of",Korea SOP,2016,For storage only,26,144_Budo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10467,555512383,"Korea, Republic of",Korea SOP,2016,For storage only,26,145_Janggudo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10468,555512366,"Korea, Republic of",Korea SOP,2016,For storage only,26,146_Goyeo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10469,555512466,"Korea, Republic of",Korea SOP,2016,For storage only,26,90_Wondo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10470,555512420,"Korea, Republic of",Korea SOP,2016,For storage only,26,92_Oenseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10471,555512440,"Korea, Republic of",Korea SOP,2016,For storage only,26,93_Sojeongseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10472,555512341,"Korea, Republic of",Korea SOP,2016,For storage only,26,94_Daejeongseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10473,555512468,"Korea, Republic of",Korea SOP,2016,For storage only,26,95_Yeokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10474,555512438,"Korea, Republic of",Korea SOP,2016,For storage only,26,96_Soheosado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10475,555512328,"Korea, Republic of",Korea SOP,2016,For storage only,26,99_Bunamseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10476,555512344,"Korea, Republic of",Korea SOP,2016,For storage only,26,100_Daeseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10477,555512376,"Korea, Republic of",Korea SOP,2016,For storage only,26,101_Hogamseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10478,555512360,"Korea, Republic of",Korea SOP,2016,For storage only,26,102_Galmaeseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10479,555512317,"Korea, Republic of",Korea SOP,2016,For storage only,26,103_Bakdariseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10480,555512319,"Korea, Republic of",Korea SOP,2016,For storage only,26,104_Beopgoseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10481,555512463,"Korea, Republic of",Korea SOP,2016,For storage only,26,129_Hwado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10482,555512354,"Korea, Republic of",Korea SOP,2016,For storage only,26,131_Gaerindo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10483,555512415,"Korea, Republic of",Korea SOP,2016,For storage only,26,87_Odo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10484,555512350,"Korea, Republic of",Korea SOP,2016,For storage only,26,88_Durido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10485,555512362,"Korea, Republic of",Korea SOP,2016,For storage only,26,47_Gokdudo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10486,555512402,"Korea, Republic of",Korea SOP,2016,For storage only,26,45_Mokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10487,555512324,"Korea, Republic of",Korea SOP,2016,For storage only,26,20_Budo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10488,555512459,"Korea, Republic of",Korea SOP,2016,For storage only,26,21_Tokkiseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10489,555512367,"Korea, Republic of",Korea SOP,2016,For storage only,26,22_Gwangdaedo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10490,555512423,"Korea, Republic of",Korea SOP,2016,For storage only,26,23_Sangbajiseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10491,555512392,"Korea, Republic of",Korea SOP,2016,For storage only,26,24_Jungbajiseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10492,555512401,"Korea, Republic of",Korea SOP,2016,For storage only,26,26_Meongaeseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10493,555512428,"Korea, Republic of",Korea SOP,2016,For storage only,26,137_Seomando,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10494,555512430,"Korea, Republic of",Korea SOP,2016,For storage only,26,10_Shindo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10495,555512351,"Korea, Republic of",Korea SOP,2016,For storage only,26,11_Eopyeongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10496,555512407,"Korea, Republic of",Korea SOP,2016,For storage only,26,12_Mungtungdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10497,555512435,"Korea, Republic of",Korea SOP,2016,For storage only,26,13_Sochojido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10498,555512372,"Korea, Republic of",Korea SOP,2016,For storage only,26,14_Halmiyeom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10499,555512355,"Korea, Republic of",Korea SOP,2016,For storage only,26,16_Gakeuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10500,555512460,"Korea, Republic of",Korea SOP,2016,For storage only,26,17_Tonggakeuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10501,555512452,"Korea, Republic of",Korea SOP,2016,For storage only,26,18_Sotonggakeuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10502,555512394,"Korea, Republic of",Korea SOP,2016,For storage only,26,19_Jungtonggakeuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10503,555512462,"Korea, Republic of",Korea SOP,2016,For storage only,26,2_Udo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10504,555512321,"Korea, Republic of",Korea SOP,2016,For storage only,26,3_Bido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10505,555512427,"Korea, Republic of",Korea SOP,2016,For storage only,26,4_Seokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10506,555512455,"Korea, Republic of",Korea SOP,2016,For storage only,26,5_Suribong,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10507,555512456,"Korea, Republic of",Korea SOP,2016,For storage only,26,6_Susido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10508,555512329,"Korea, Republic of",Korea SOP,2016,For storage only,26,7_Bunjido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10509,555512451,"Korea, Republic of",Korea SOP,2016,For storage only,26,8_Sosongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10510,555512345,"Korea, Republic of",Korea SOP,2016,For storage only,26,9_Daesongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10511,555512398,"Korea, Republic of",Korea SOP,2016,For storage only,26,81_Mado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10512,555512444,"Korea, Republic of",Korea SOP,2016,For storage only,26,82_Somado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10513,555512417,"Korea, Republic of",Korea SOP,2016,For storage only,26,83_Odongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10514,555512382,"Korea, Republic of",Korea SOP,2016,For storage only,26,84_Jangdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10515,555512458,"Korea, Republic of",Korea SOP,2016,For storage only,26,85_Todo(tokkiseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10516,555512432,"Korea, Republic of",Korea SOP,2016,For storage only,26,86_Socheomdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10517,555512467,"Korea, Republic of",Korea SOP,2016,For storage only,26,120_Umuseom(umudo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10518,555512378,"Korea, Republic of",Korea SOP,2016,For storage only,26,121_Hyanggido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10519,555512442,"Korea, Republic of",Korea SOP,2016,For storage only,26,118_Solseom(akdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10520,555512371,"Korea, Republic of",Korea SOP,2016,For storage only,26,119_Hakseom(hakdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10521,555512364,"Korea, Republic of",Korea SOP,2016,For storage only,26,155_Gomseom(ungdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10522,555512425,"Korea, Republic of",Korea SOP,2016,For storage only,26,134_Sangjangdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10523,555512397,"Korea, Republic of",Korea SOP,2016,For storage only,26,39_Maando,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10524,555512389,"Korea, Republic of",Korea SOP,2016,For storage only,26,36_Jugamdo(Mido),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10525,555512445,"Korea, Republic of",Korea SOP,2016,For storage only,26,135_Somokgwado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10526,555512422,"Korea, Republic of",Korea SOP,2016,For storage only,26,35_Sado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10527,555512403,"Korea, Republic of",Korea SOP,2016,For storage only,26,37_Mokdo(Budo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10528,555512361,"Korea, Republic of",Korea SOP,2016,For storage only,26,38_Godo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10529,555512358,"Korea, Republic of",Korea SOP,2016,For storage only,26,117_Galdo(galgotdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10530,555512433,"Korea, Republic of",Korea SOP,2016,For storage only,26,34_Sochido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10531,555512426,"Korea, Republic of",Korea SOP,2016,For storage only,26,33_Sejondo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10532,555512404,"Korea, Republic of",Korea SOP,2016,For storage only,26,154_Mullaeseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10533,555512464,"Korea, Republic of",Korea SOP,2016,For storage only,26,153_Witdaehoseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10534,555512369,"Korea, Republic of",Korea SOP,2016,For storage only,26,152_Habisado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10535,555512424,"Korea, Republic of",Korea SOP,2016,For storage only,26,151_Sangbisado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10536,555512431,"Korea, Republic of",Korea SOP,2016,For storage only,26,113_Sobyeongdaedo(nureongseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10537,555512334,"Korea, Republic of",Korea SOP,2016,For storage only,26,114_Daebyeongdaedo(jungsamseom),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10538,555512436,"Korea, Republic of",Korea SOP,2016,For storage only,26,115_Sodapodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10539,555512421,"Korea, Republic of",Korea SOP,2016,For storage only,26,123_Okdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10540,555512409,"Korea, Republic of",Korea SOP,2016,For storage only,26,124_Myodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10541,555512373,"Korea, Republic of",Korea SOP,2016,For storage only,26,122_Heugeodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10542,555512348,"Korea, Republic of",Korea SOP,2016,For storage only,26,32_Deungdaedo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10543,555512400,"Korea, Republic of",Korea SOP,2016,For storage only,26,136_Makdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10544,555512396,"Korea, Republic of",Korea SOP,2016,For storage only,26,30_Jwasarido(Jasarido),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10545,555512377,"Korea, Republic of",Korea SOP,2016,For storage only,26,27_Hongdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10546,555512352,"Korea, Republic of",Korea SOP,2016,For storage only,26,28_Eoyudo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10547,555512326,"Korea, Republic of",Korea SOP,2016,For storage only,26,139_Bukyeongjeseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10548,555512411,"Korea, Republic of",Korea SOP,2016,For storage only,26,138_Namhyeongjeseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10549,555512388,"Korea, Republic of",Korea SOP,2016,For storage only,26,140_Jujeonjaseom(saengdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10550,555512405,"Korea, Republic of",Korea SOP,2016,For storage only,26,158_Muneobukdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10551,555512406,"Korea, Republic of",Korea SOP,2016,For storage only,26,159_Muneonamdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10552,555512353,"Korea, Republic of",Korea SOP,2016,For storage only,26,160_Gadeokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10553,555512381,"Korea, Republic of",Korea SOP,2016,For storage only,26,156_Jamdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10554,555512384,"Korea, Republic of",Korea SOP,2016,For storage only,26,157_Jangguseom,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10555,555625809,"Korea, Republic of",Korea SOP,2016,For storage only,26,235_Donggyeokryulbido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10556,555625810,"Korea, Republic of",Korea SOP,2016,For storage only,26,236_Seogyeokryulbido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10557,555625811,"Korea, Republic of",Korea SOP,2016,For storage only,26,237_Heuinyeo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10558,555625812,"Korea, Republic of",Korea SOP,2016,For storage only,26,238_Boksaengdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10559,555625816,"Korea, Republic of",Korea SOP,2016,For storage only,26,242_Haseodo(Sureongdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10560,555625815,"Korea, Republic of",Korea SOP,2016,For storage only,26,241_Angeochillidon╚░e─Ñvati,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10561,555625814,"Korea, Republic of",Korea SOP,2016,For storage only,26,240_Nonggado,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10562,555625808,"Korea, Republic of",Korea SOP,2016,For storage only,26,234_Seokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10563,555625813,"Korea, Republic of",Korea SOP,2016,For storage only,26,239_Yuksando,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10564,555625821,"Korea, Republic of",Korea SOP,2016,For storage only,26,247_Chunbokdo(Chungbokdo),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10565,555625820,"Korea, Republic of",Korea SOP,2016,For storage only,26,246_Sodeokdo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10566,555625819,"Korea, Republic of",Korea SOP,2016,For storage only,26,245_Daehyuldo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10567,555625818,"Korea, Republic of",Korea SOP,2016,For storage only,26,244_Jasarijedo(5),Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10568,555625817,"Korea, Republic of",Korea SOP,2016,For storage only,26,243_Solyeodo,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10569,555625807,"Korea, Republic of",Korea SOP,2016,For storage only,26,233_Gujido,Special Island,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10570,555558286,"Korea, Republic of",MPA MEE,2017,For storage only,26,Oryuk-do (island) and Neighboring Water,Marine Protected Area,The Republic of Korea protected area management effectiveness assessments,Korea National Park Service,2018,English -10571,9164,Burundi,IMET,2015,For storage only,27,Bururi Forest,Nature Reserve,JRC IMET information,JRC,2018,English -10572,9161,Burundi,IMET,2015,For storage only,27,Kibira,National Park,JRC IMET information,JRC,2018,English -10573,9160,Burundi,IMET,2015,For storage only,27,Parc national du Ruvubu,National Park,JRC IMET information,JRC,2018,English -10574,555558381,Burundi,IMET,2015,For storage only,27,Paysage Aquatique Protégé du Nord,"Ramsar Site, Wetland of International Importance",JRC IMET information,JRC,2018,English -10575,61707,Burundi,IMET,2015,For storage only,27,Gisagara,Nature Reserve,JRC IMET information,JRC,2018,English -10576,9162,Burundi,IMET,2015,For storage only,27,Réserve naturelle du Rusizi,National Park,JRC IMET information,JRC,2018,English -10577,101434,Burundi,IMET,2016,For storage only,27,Forêt de Vyanda,Nature Reserve,JRC IMET information,JRC,2018,English -10578,9165,Burundi,IMET,2016,For storage only,27,Réserve naturelle de Rumonge,Nature Reserve,JRC IMET information,JRC,2018,English -10579,9166,Burundi,IMET,2016,For storage only,27,Kigwena Forest,Nature Reserve,JRC IMET information,JRC,2018,English -10581,9168,Burundi,IMET,2016,For storage only,27,Chutes de Karera,Nature Monument,JRC IMET information,JRC,2018,English -10582,9167,Burundi,IMET,2016,For storage only,27,Faille de Nyakazu,Nature Monument,JRC IMET information,JRC,2018,English -10583,555558380,Burundi,IMET,2016,For storage only,27,Réserve Naturelle de la Malagarazi,"Ramsar Site, Wetland of International Importance",JRC IMET information,JRC,2018,English -10584,28464,Burundi,IMET,2016,For storage only,27,Monge Forest,Nature Reserve,JRC IMET information,JRC,2018,English -10585,606,Cameroon,IMET,2015,For storage only,27,Bouba Ndjida,National Park,JRC IMET information,JRC,2018,English -10586,607,Cameroon,IMET,2015,For storage only,27,Bénoué,National Park,JRC IMET information,JRC,2018,English -10587,1242,Cameroon,IMET,2015,For storage only,27,Campo-Ma'an,National Park,JRC IMET information,JRC,2018,English -10588,1245,Cameroon,IMET,0,For storage only,27,Lobéké,National Park,JRC IMET information,JRC,2018,English -10589,17758,Cameroon,IMET,0,For storage only,27,Dja Faunal Reserve,World Heritage Site,JRC IMET information,JRC,2018,English -10590,20058,Cameroon,IMET,0,For storage only,27,Korup,National Park,JRC IMET information,JRC,2018,English -10591,20166,Cameroon,IMET,2015,For storage only,27,Mbam et Djerem,National Park,JRC IMET information,JRC,2018,English -10592,643,"Congo, the Democratic Republic of the;Congo",IMET,2015,For storage only,27,Odzala Kokoua,National Park,JRC IMET information,JRC,2018,English -10593,2266,Congo,IMET,2015,For storage only,27,Léfini,Wildlife Reserve,JRC IMET information,JRC,2018,English -10594,99855,Congo,IMET,2016,For storage only,27,Tchimpounga,Wildlife Sanctuary,JRC IMET information,JRC,2018,English -10595,99862,Congo,IMET,2015,For storage only,27,Lessio-Louna,Wildlife Sanctuary,JRC IMET information,JRC,2018,English -10596,313401,Congo,IMET,2016,For storage only,27,Conkouati-Douli,National Park,JRC IMET information,JRC,2018,English -10597,72320,Gabon,IMET,2015,For storage only,27,Akanda,National Park,JRC IMET information,JRC,2018,English -10598,72324,Gabon,IMET,2015,For storage only,27,Minkebe,National Park,JRC IMET information,JRC,2018,English -10599,301850,Gabon,IMET,2015,For storage only,27,Mayumba,National Park,JRC IMET information,JRC,2018,English -10600,303872,Gabon,IMET,2015,For storage only,27,Biringou,National Park,JRC IMET information,JRC,2018,English -10601,303873,Gabon,IMET,2015,For storage only,27,Ivindo,National Park,JRC IMET information,JRC,2018,English -10602,303874,Gabon,IMET,2015,For storage only,27,Loango,National Park,JRC IMET information,JRC,2018,English -10603,303875,Gabon,IMET,2015,For storage only,27,Lopé,National Park,JRC IMET information,JRC,2018,English -10604,303877,Gabon,IMET,2015,For storage only,27,Moukalaba doudou,National Park,JRC IMET information,JRC,2018,English -10605,303878,Gabon,IMET,2015,For storage only,27,Mwagne,National Park,JRC IMET information,JRC,2018,English -10606,303879,Gabon,IMET,2015,For storage only,27,Pongara,National Park,JRC IMET information,JRC,2018,English -10607,303880,Gabon,IMET,2015,For storage only,27,Waka,National Park,JRC IMET information,JRC,2018,English -10608,306235,Gabon,IMET,2015,For storage only,27,Plateaux Batéké,National Park,JRC IMET information,JRC,2018,English -10609,306237,Gabon,IMET,2015,For storage only,27,Monts de Cristal,National Park,JRC IMET information,JRC,2018,English -10613,12201,Benin,IMET,2016,For storage only,27,W (Benin),National Park,JRC IMET information,JRC,2018,English -10614,597,Benin,IMET,2016,For storage only,27,Boucle de la Pendjari,National Park,JRC IMET information,JRC,2018,English -10616,2344,Burkina Faso,IMET,2016,For storage only,27,Deux Bales,National Park,JRC IMET information,JRC,2018,English -10617,28530,Burkina Faso,IMET,2016,For storage only,27,Tisse,Classified Forest,JRC IMET information,JRC,2018,English -10618,1048,Burkina Faso,IMET,2016,For storage only,27,W du Burkina Faso,National Park,JRC IMET information,JRC,2018,English -10619,9264,Burkina Faso,IMET,2016,For storage only,27,Arly,Partial Faunal Reserve,JRC IMET information,JRC,2018,English -10620,721,Côte d'Ivoire,IMET,2016,For storage only,27,Tai National Park,National Park,JRC IMET information,JRC,2018,English -10621,9545,Côte d'Ivoire,IMET,2016,For storage only,27,Comoé National Park,World Heritage Site,JRC IMET information,JRC,2018,English -10622,723,Côte d'Ivoire,IMET,2016,For storage only,27,Mont Sangbe National Park,National Park,JRC IMET information,JRC,2018,English -10623,725,Côte d'Ivoire,IMET,2016,For storage only,27,Banco National Park,National Park,JRC IMET information,JRC,2018,English -10624,33047,Guinea-Bissau,IMET,2016,For storage only,27,Orango,National Park,JRC IMET information,JRC,2018,English -10625,317052,Guinea-Bissau,IMET,2016,For storage only,27,João Vieira and Poilão Marine National Park,Marine National Park,JRC IMET information,JRC,2018,English -10626,351088,Guinea-Bissau,IMET,2016,For storage only,27,Cantanhez Forest,National Park,JRC IMET information,JRC,2018,English -10627,797,Mauritania,IMET,2016,For storage only,27,Banc d'Arguin,National Park,JRC IMET information,JRC,2018,English -10628,5174,Mauritania,IMET,2016,For storage only,27,Cap Blanc,Satellite Reserve,JRC IMET information,JRC,2018,English -10629,95349,Mauritania,IMET,2016,For storage only,27,Parc National du Diawling,"Ramsar Site, Wetland of International Importance",JRC IMET information,JRC,2018,English -10630,17367,Niger,IMET,2016,For storage only,27,Réserve Naturelle et Culturelle de Termit-Tintoumma,National Nature Reserve,JRC IMET information,JRC,2018,English -10631,67727,Niger,IMET,2016,For storage only,27,Aïr and Ténéré Natural Reserves,World Heritage Site,JRC IMET information,JRC,2018,English -10632,3230,Niger,IMET,2016,For storage only,27,Réserve de faune de Gadabedji,Faunal Reserve,JRC IMET information,JRC,2018,English -10633,2253,Benin;Niger,IMET,2016,For storage only,27,Pendjari,Hunting Zone,JRC IMET information,JRC,2018,English -10634,866,Senegal,IMET,2016,For storage only,27,Delta du Saloum,National Park,JRC IMET information,JRC,2018,English -10635,12263,Senegal,IMET,2016,For storage only,27,Poponguine,Nature Reserve,JRC IMET information,JRC,2018,English -10636,352705,Senegal,IMET,2016,For storage only,27,Kayar,Marine Protected Area,JRC IMET information,JRC,2018,English -10637,352706,Senegal,IMET,2016,For storage only,27,Joal,Marine Protected Area,JRC IMET information,JRC,2018,English -10639,352704,Senegal,IMET,2016,For storage only,27,Saint-Louis,Marine Protected Area,JRC IMET information,JRC,2018,English -10640,865,Senegal,IMET,2016,For storage only,27,Niokolo Koba,National Park,JRC IMET information,JRC,2018,English -10641,867,Senegal,IMET,2016,For storage only,27,Oiseaux de Djoudj,National Park,JRC IMET information,JRC,2018,English -10643,103547,Albania,Birdlife IBA,2013,For storage only,28,Karavasta Lagoon,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -10644,555549369,Armenia,METT,2009,For storage only,28,Plane Grove,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10645,555549369,Armenia,METT,2012,For storage only,28,Plane Grove,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10646,555549374,Armenia,METT,2009,For storage only,28,Sev Lich,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10647,555549374,Armenia,METT,2012,For storage only,28,Sev Lich,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10648,20679,Armenia,METT,2005,For storage only,28,Shikahogh,State Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10649,20679,Armenia,METT,2012,For storage only,28,Shikahogh,State Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10650,555549370,Armenia,METT,2012,For storage only,28,Zangezur,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10651,1629,Armenia,Birdlife IBA,2013,For storage only,28,Sevan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10652,555549381,Armenia,METT,2009,For storage only,28,Margahovit,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10653,555549370,Armenia,METT,2014,For storage only,28,Zangezur,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10654,555549370,Armenia,METT,2009,For storage only,28,Zangezur,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10655,555549372,Armenia,METT,2009,For storage only,28,Akhnabat Yew Grove,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10656,555549372,Armenia,METT,2012,For storage only,28,Akhnabat Yew Grove,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10657,555549375,Armenia,METT,2009,For storage only,28,Aragats Alpine,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10658,555549375,Armenia,METT,2012,For storage only,28,Aragats Alpine,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10659,555549376,Armenia,METT,2009,For storage only,28,Ararat Vordan Karmir,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10660,555549376,Armenia,METT,2012,For storage only,28,Ararat Vordan Karmir,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10661,555549391,Armenia,METT,2012,For storage only,28,Arevik,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10662,555549389,Armenia,METT,2009,For storage only,28,Arjatkhleni Hazel-Nut,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10663,555549389,Armenia,METT,2012,For storage only,28,Arjatkhleni Hazel-Nut,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10664,94004,Armenia,METT,2009,For storage only,28,Arzakan-Meghradzor,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10665,94004,Armenia,METT,2012,For storage only,28,Arzakan-Meghradzor,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10666,555549384,Armenia,METT,2009,For storage only,28,Bank's Pine,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10667,555549384,Armenia,METT,2012,For storage only,28,Bank's Pine,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10668,145392,Armenia,METT,2009,For storage only,28,Boghaqar,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10669,145392,Armenia,METT,2012,For storage only,28,Boghaqar,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10670,555549373,Armenia,METT,2009,For storage only,28,Caucasian Rose-Bay,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10671,555549373,Armenia,METT,2012,For storage only,28,Caucasian Rose-Bay,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10672,1630,Armenia,METT,2009,For storage only,28,Dilijan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10673,555549379,Armenia,METT,2009,For storage only,28,Gandzakar,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10674,555549379,Armenia,METT,2012,For storage only,28,Gandzakar,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10675,555549383,Armenia,METT,2009,For storage only,28,Getik,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10676,555549383,Armenia,METT,2012,For storage only,28,Getik,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10677,1631,Armenia,METT,2012,For storage only,28,Khosrov Forest,State Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10678,555549386,Armenia,METT,2009,For storage only,28,Goravan Sands,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10679,555549386,Armenia,METT,2012,For storage only,28,Goravan Sands,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10680,555549387,Armenia,METT,2009,For storage only,28,Goris,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10681,555549387,Armenia,METT,2012,For storage only,28,Goris,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10682,93999,Armenia,METT,2009,For storage only,28,Gyulagarak,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10683,93999,Armenia,METT,2012,For storage only,28,Gyulagarak,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10684,145394,Armenia,METT,2009,For storage only,28,Hanqavan Hydrological,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10685,145394,Armenia,METT,2012,For storage only,28,Hanqavan Hydrological,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10686,555549388,Armenia,METT,2009,For storage only,28,Herher Open Woodland,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10687,555549388,Armenia,METT,2012,For storage only,28,Herher Open Woodland,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10688,555549382,Armenia,METT,2009,For storage only,28,Ijevan,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10689,555549382,Armenia,METT,2012,For storage only,28,Ijevan,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10690,555549385,Armenia,METT,2009,For storage only,28,Jermuk Hydrological,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10691,555549385,Armenia,METT,2012,For storage only,28,Jermuk Hydrological,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10692,555549380,Armenia,METT,2009,For storage only,28,Jermuk Forest,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10693,555549380,Armenia,METT,2012,For storage only,28,Jermuk Forest,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10694,555549371,Armenia,METT,2009,For storage only,28,Juniper Open Woodland,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10695,555549371,Armenia,METT,2012,For storage only,28,Juniper Open Woodland,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10696,555549377,Armenia,METT,2009,For storage only,28,Khor Virap,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10697,555549377,Armenia,METT,2012,For storage only,28,Khor Virap,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10698,1631,Armenia,METT,2005,For storage only,28,Khosrov Forest,State Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10700,1631,Armenia,Birdlife IBA,2013,For storage only,28,Khosrov Forest,State Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10701,555549381,Armenia,METT,2012,For storage only,28,Margahovit,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10702,668,Austria;Germany,European SCS,2007,For storage only,28,Berchtesgaden,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10703,174775,Austria,European SCS,2007,For storage only,28,Gesäuse,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10704,220254,Austria,GOBI Survey,2006,For storage only,28,Grosses Walsertal,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10705,220254,Austria,Stockholm BR Survey,2008,For storage only,28,Grosses Walsertal,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10706,220254,Austria,GOBI Survey,2008,For storage only,28,Grosses Walsertal,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10707,2033,Austria,GOBI Survey,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -10708,2033,Austria,Stockholm BR Survey,2008,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -10712,5581,Austria,European Diploma,1967,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -10713,900001,Austria,GOBI Survey,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -10714,2032,Austria,GOBI Survey,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -10716,169111,Austria,European Diploma,2003,For storage only,28,Thayatal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10717,169111,Austria,European SCS,2007,For storage only,28,Thayatal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10718,31410,Austria,European Diploma,1994,For storage only,28,Wachau und Umgebung,Landscape Protection Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10719,902494,Austria,GOBI Survey,2006,For storage only,28,Wienerwald,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10720,902494,Austria,Stockholm BR Survey,2008,For storage only,28,Wienerwald,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10724,342505,Azerbaijan,Birdlife IBA,2008,For storage only,28,Shirvan National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10725,1983,Azerbaijan,METT,2012,For storage only,28,Gizilaghaj State Nature Reserve,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10726,313470,Azerbaijan,METT,2005,For storage only,28,Hirkan National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10727,20680,Azerbaijan,METT,2012,For storage only,28,Ilisu State Nature Reserve,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10728,555549396,Azerbaijan,METT,2012,For storage only,28,Korchay State Nature Reserve,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10729,555549400,Azerbaijan,METT,2013,For storage only,28,Shahdagh National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10730,1634,Azerbaijan,METT,2013,For storage only,28,Shirvan State Nature Reserve,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10731,1984,Azerbaijan,METT,2005,For storage only,28,Zagatala State Nature Reserve,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10732,9164,Burundi,RAPPAM,2011,For storage only,28,Bururi Forest,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10733,9164,Burundi,Birdlife IBA,2001,For storage only,28,Bururi Forest,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10734,9164,Burundi,METT,2012,For storage only,28,Bururi Forest,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10735,9161,Burundi,METT,2007,For storage only,28,Kibira,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10736,9161,Burundi,RAPPAM,2011,For storage only,28,Kibira,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10737,9161,Burundi,Birdlife IBA,2001,For storage only,28,Kibira,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10738,9165,Burundi,RAPPAM,2011,For storage only,28,Réserve naturelle de Rumonge,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10739,9162,Burundi,RAPPAM,2011,For storage only,28,Réserve naturelle du Rusizi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10740,9162,Burundi,Birdlife IBA,2001,For storage only,28,Réserve naturelle du Rusizi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10741,9160,Burundi,METT,2007,For storage only,28,Parc national du Ruvubu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10742,9160,Burundi,RAPPAM,2011,For storage only,28,Parc national du Ruvubu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10743,9160,Burundi,Birdlife IBA,2001,For storage only,28,Parc national du Ruvubu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10744,2253,Benin;Niger,METT,2011,For storage only,28,Pendjari,Hunting Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -10745,12201,Benin,METT,2011,For storage only,28,W (Benin),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10746,2253,Benin;Niger,Enhancing Our Heritage,2008,For storage only,28,Pendjari,Hunting Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -10747,2253,Benin;Niger,GOBI Survey,2006,For storage only,28,Pendjari,Hunting Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -10748,2253,Benin;Niger,METT,2005,For storage only,28,Pendjari,Hunting Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -10750,597,Benin,Birdlife IBA,2001,For storage only,28,Boucle de la Pendjari,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10751,2253,Benin;Niger,RAPPAM,2009,For storage only,28,Pendjari,Hunting Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -10752,7957,Benin,METT,2010,For storage only,28,Agoua,Classified Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -10753,5158,Benin,METT,2010,For storage only,28,La Lama Nord,Classified Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -10754,33005,Benin,METT,2010,For storage only,28,La Lama-Sud,Classified Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -10755,2253,Benin;Niger,METT,2010,For storage only,28,Pendjari,Hunting Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -10756,12201,Benin,METT,2010,For storage only,28,W (Benin),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10757,9234,India;Benin,RAPPAM,2009,For storage only,28,Barda,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -10758,12201,Benin,METT,2005,For storage only,28,W (Benin),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10759,900731,Benin,GOBI Survey,2006,For storage only,28,W Region,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10760,145580,Bangladesh,WHA Outlook Report,2014,For storage only,28,The Sundarbans,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10761,555537148,Bulgaria,Birdlife IBA,2007,For storage only,28,Adata - Tundzha,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -10762,555537064,Bulgaria,Birdlife IBA,2007,For storage only,28,Atanasovsko ezero,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -10763,555579908,Bulgaria,Birdlife IBA,2007,For storage only,28,Atanasovsko ezero,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -10764,2044,Bulgaria,GOBI Survey,2006,For storage only,28,Boitine,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10765,2044,Bulgaria,Stockholm BR Survey,2008,For storage only,28,Boitine,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10766,176815,Bulgaria,RAPPAM,2004,For storage only,28,Bulgarka,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10767,32361,Bulgaria,METT,2006,For storage only,28,Centralen Balkan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10768,32361,Bulgaria,PANPARKS,2003,For storage only,28,Centralen Balkan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10769,32361,Bulgaria,PANPARKS,2004,For storage only,28,Centralen Balkan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10770,32361,Bulgaria,PANPARKS,2005,For storage only,28,Centralen Balkan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10771,32361,Bulgaria,PANPARKS,2006,For storage only,28,Centralen Balkan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10772,32361,Bulgaria,PANPARKS,2007,For storage only,28,Centralen Balkan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10773,32361,Bulgaria,RAPPAM,2004,For storage only,28,Centralen Balkan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10774,11491,Bulgaria,RAPPAM,2004,For storage only,28,Shumensko plato,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10775,2040,Bulgaria,GOBI Survey,2006,For storage only,28,Réserve Djendema,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10776,2040,Bulgaria,Stockholm BR Survey,2008,For storage only,28,Réserve Djendema,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10777,176774,Bulgaria,RAPPAM,2004,For storage only,28,Persina,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10778,602,Bulgaria,RAPPAM,2004,For storage only,28,Pirin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10779,9613,Bulgaria,WHA Outlook Report,2014,For storage only,28,Pirin National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10780,555516493,Bulgaria,Birdlife IBA,2013,For storage only,28,Batin,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -10781,555537092,Bulgaria,Birdlife IBA,2013,For storage only,28,Ribarnitsi Mechka,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -10782,555537084,Bulgaria,Birdlife IBA,2013,For storage only,28,Ribarnitsi Plovdiv,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -10783,62485,Bulgaria,PANPARKS,2005,For storage only,28,Rila,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10784,62485,Bulgaria,PANPARKS,2006,For storage only,28,Rila,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10785,62485,Bulgaria,PANPARKS,2007,For storage only,28,Rila,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10786,62485,Bulgaria,RAPPAM,2004,For storage only,28,Rila,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10787,176805,Bulgaria,RAPPAM,2004,For storage only,28,Rilski manastir,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10788,604,Bulgaria,RAPPAM,2004,For storage only,28,Rusenski Lom,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10789,11490,Bulgaria,RAPPAM,2004,For storage only,28,Sinite kamani,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10790,176828,Bulgaria,RAPPAM,2004,For storage only,28,Strandzha,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10791,9612,Bulgaria,WHA Outlook Report,2014,For storage only,28,Srebarna Nature Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10792,2039,Bulgaria,GOBI Survey,2006,For storage only,28,Parc national Steneto,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10793,2039,Bulgaria,Stockholm BR Survey,2008,For storage only,28,Parc national Steneto,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10794,2048,Bulgaria,GOBI Survey,2006,For storage only,28,Réserve Tsaritchina,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10795,2048,Bulgaria,Stockholm BR Survey,2008,For storage only,28,Réserve Tsaritchina,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10796,603,Bulgaria,RAPPAM,2004,For storage only,28,Vitosha,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10797,30709,Bulgaria,RAPPAM,2004,For storage only,28,Vrachanski balkan,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10798,4501,Bulgaria,RAPPAM,2004,For storage only,28,Zlatni pyasatsi,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10799,903028,Bosnia and Herzegovina,Birdlife IBA,2013,For storage only,28,Bardaca Wetland,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -10800,109004,Bosnia and Herzegovina,Birdlife IBA,2013,For storage only,28,Livanjsko Polje,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -10801,1985,Belarus,European Diploma,1997,For storage only,28,Belowezskaya Pushcha,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10802,2008,Belarus,WHA Outlook Report,2014,For storage only,28,Białowieża Forest,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10803,1643,Belarus,European Diploma,1995,For storage only,28,Berezinskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10804,2055,Belarus,METT,2007,For storage only,28,Berezinskiy Zapovednik,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10805,101855,Belarus,METT,2007,For storage only,28,Braslavskie Ozera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10806,900563,Belarus,METT,2012,For storage only,28,Mid-Pripyat State Landscape Zakaznik,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -10807,101859,Belarus,METT,2012,For storage only,28,Prostyr,Nature Sanctuary or Partial Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10808,93900,Belarus,METT,2012,For storage only,28,Sporovskiy,Nature Sanctuary or Partial Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10809,145850,Belarus,METT,2012,For storage only,28,Zvanets,Nature Sanctuary or Partial Reserve (Local),"GD-PAME, version pre-2017",Not Reported,2018,English -10810,900563,Belarus,METT,2005,For storage only,28,Mid-Pripyat State Landscape Zakaznik,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -10811,900563,Belarus,METT,2009,For storage only,28,Mid-Pripyat State Landscape Zakaznik,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -10812,555558383,Belarus,METT,2011,For storage only,28,Morochno,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -10813,101859,Belarus,METT,2005,For storage only,28,Prostyr,Nature Sanctuary or Partial Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10814,101859,Belarus,METT,2009,For storage only,28,Prostyr,Nature Sanctuary or Partial Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10815,93900,Belarus,METT,2005,For storage only,28,Sporovskiy,Nature Sanctuary or Partial Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10816,93900,Belarus,METT,2009,For storage only,28,Sporovskiy,Nature Sanctuary or Partial Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10817,93917,Belarus,METT,2011,For storage only,28,Yelnya,Nature Sanctuary or Partial Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10818,145850,Belarus,METT,2005,For storage only,28,Zvanets,Nature Sanctuary or Partial Reserve (Local),"GD-PAME, version pre-2017",Not Reported,2018,English -10819,145850,Belarus,METT,2009,For storage only,28,Zvanets,Nature Sanctuary or Partial Reserve (Local),"GD-PAME, version pre-2017",Not Reported,2018,English -10820,303896,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Aguarague,National Park and Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10821,342502,"Bolivia, Plurinational State of",METT,2003,For storage only,28,Altamachi,Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10822,9779,"Bolivia, Plurinational State of",CI Tracking Tool,0,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10823,9779,"Bolivia, Plurinational State of",PA Consolidation Index,0,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10824,9779,"Bolivia, Plurinational State of",Parks profiles,2005,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10825,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,1991,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10826,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,1996,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10827,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,1997,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10828,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,1998,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10829,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,1999,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10830,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,2001,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10831,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,2000,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10832,9779,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10833,9779,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10834,9779,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10836,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,2002,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10837,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,2003,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10838,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,2004,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10839,9779,"Bolivia, Plurinational State of",PIP Site Consolidation,2005,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10840,36,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Eduardo Avaroa,Andean Fauna National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10841,303893,"Bolivia, Plurinational State of",CI Tracking Tool,0,For storage only,28,Apolobamba,National Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10842,303893,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Apolobamba,National Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10843,303893,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Apolobamba,National Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10844,303893,"Bolivia, Plurinational State of",PA Consolidation Index,0,For storage only,28,Apolobamba,National Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10845,303893,"Bolivia, Plurinational State of",Parks profiles,2005,For storage only,28,Apolobamba,National Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10846,303893,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Apolobamba,National Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10847,9308,"Bolivia, Plurinational State of",GOBI Survey,2006,For storage only,28,Estación Biológica del Beni,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10848,9308,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Estación Biológica del Beni,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10849,9308,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Estación Biológica del Beni,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10850,9308,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Estación Biológica del Beni,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10851,20037,"Bolivia, Plurinational State of",CI Tracking Tool,0,For storage only,28,Carrasco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10852,20037,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Carrasco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10853,20037,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Carrasco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10854,20037,"Bolivia, Plurinational State of",METT,2003,For storage only,28,Carrasco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10855,20037,"Bolivia, Plurinational State of",PA Consolidation Index,0,For storage only,28,Carrasco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10856,20037,"Bolivia, Plurinational State of",Parks profiles,2005,For storage only,28,Carrasco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10857,20037,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Carrasco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10858,32866,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Cordillera de Sama,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10859,32866,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Cordillera de Sama,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10860,303895,"Bolivia, Plurinational State of",CI Tracking Tool,0,For storage only,28,Cotapata,Integrated Management Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10861,98182,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Cotapata,National Park and Integrated Management Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10862,303895,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Cotapata,Integrated Management Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10863,303895,"Bolivia, Plurinational State of",PA Consolidation Index,0,For storage only,28,Cotapata,Integrated Management Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10864,303895,"Bolivia, Plurinational State of",Parks profiles,2005,For storage only,28,Cotapata,Integrated Management Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10865,98182,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Cotapata,National Park and Integrated Management Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10866,36,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Eduardo Avaroa,Andean Fauna National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10867,36,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Eduardo Avaroa,Andean Fauna National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10868,36,"Bolivia, Plurinational State of",PIP Site Consolidation,1997,For storage only,28,Eduardo Avaroa,Andean Fauna National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10869,36,"Bolivia, Plurinational State of",PIP Site Consolidation,1999,For storage only,28,Eduardo Avaroa,Andean Fauna National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10870,36,"Bolivia, Plurinational State of",PIP Site Consolidation,2000,For storage only,28,Eduardo Avaroa,Andean Fauna National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10871,36,"Bolivia, Plurinational State of",PIP Site Consolidation,2001,For storage only,28,Eduardo Avaroa,Andean Fauna National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10872,36,"Bolivia, Plurinational State of",PIP Site Consolidation,2002,For storage only,28,Eduardo Avaroa,Andean Fauna National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10873,303886,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,El Palmar,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10874,303886,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,El Palmar,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10875,303886,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,El Palmar,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10876,30,"Bolivia, Plurinational State of",CI Tracking Tool,0,For storage only,28,Isiboro Securé,National Park and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10877,30,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Isiboro Securé,National Park and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10878,30,"Bolivia, Plurinational State of",PA Consolidation Index,0,For storage only,28,Isiboro Securé,National Park and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10879,30,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Isiboro Securé,National Park and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10880,30,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Isiboro Securé,National Park and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10881,30,"Bolivia, Plurinational State of",Parks profiles,2005,For storage only,28,Isiboro Securé,National Park and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10882,303884,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Kaa-iya del Gran Chaco,Natural Integrated Management Area and National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10883,303884,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Kaa-iya del Gran Chaco,Natural Integrated Management Area and National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10884,303884,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Kaa-iya del Gran Chaco,Natural Integrated Management Area and National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10885,303894,"Bolivia, Plurinational State of",CI Tracking Tool,0,For storage only,28,Madidi,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10886,303894,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Madidi,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10887,303894,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Madidi,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10888,303894,"Bolivia, Plurinational State of",PA Consolidation Index,0,For storage only,28,Madidi,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10889,303894,"Bolivia, Plurinational State of",Parks profiles,2005,For storage only,28,Madidi,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10890,303894,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Madidi,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10891,35,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Manuripi,National Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10892,35,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Manuripi,National Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10893,35,"Bolivia, Plurinational State of",METT,2003,For storage only,28,Manuripi,National Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10894,35,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Manuripi,National Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10895,31,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10896,31,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10897,31,"Bolivia, Plurinational State of",PIP Site Consolidation,1991,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10898,31,"Bolivia, Plurinational State of",PIP Site Consolidation,1996,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10899,31,"Bolivia, Plurinational State of",PIP Site Consolidation,1997,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10900,31,"Bolivia, Plurinational State of",PIP Site Consolidation,1998,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10901,31,"Bolivia, Plurinational State of",PIP Site Consolidation,1999,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10902,31,"Bolivia, Plurinational State of",PIP Site Consolidation,2001,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10903,31,"Bolivia, Plurinational State of",PIP Site Consolidation,2000,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10904,31,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Noel Kempff Mercado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10905,220295,"Bolivia, Plurinational State of",WHA Outlook Report,2014,For storage only,28,Noel Kempff Mercado National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10906,303883,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Otuquis,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10907,303885,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Otuquis,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10908,303883,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Otuquis,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10909,303883,"Bolivia, Plurinational State of",METT,2003,For storage only,28,Otuquis,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10910,20011,"Bolivia, Plurinational State of",CI Tracking Tool,0,For storage only,28,Pilón Lajas,Biosphere Reserve and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10911,20011,"Bolivia, Plurinational State of",PA Consolidation Index,0,For storage only,28,Pilón Lajas,Biosphere Reserve and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10912,20011,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Pilón Lajas,Biosphere Reserve and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10913,20011,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Pilón Lajas,Biosphere Reserve and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10914,20011,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Pilón Lajas,Biosphere Reserve and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10915,20011,"Bolivia, Plurinational State of",Parks profiles,2005,For storage only,28,Pilón Lajas,Biosphere Reserve and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10916,20011,"Bolivia, Plurinational State of",GOBI Survey,2006,For storage only,28,Pilón Lajas,Biosphere Reserve and Indigenous Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -10917,33,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Sajama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10918,33,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Sajama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10919,33,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Sajama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10920,303891,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,San Matías,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10921,303891,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,San Matías,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10922,303891,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,San Matías,Natural Integrated Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -10923,321,"Venezuela, Bolivarian Republic of;Bolivia, Plurinational State of",METT,0,For storage only,28,Sierra Nevada,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10924,20041,"Bolivia, Plurinational State of",PIP Site Consolidation,1995,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10925,20041,"Bolivia, Plurinational State of",PIP Site Consolidation,1996,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10926,20041,"Bolivia, Plurinational State of",PIP Site Consolidation,1997,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10927,20041,"Bolivia, Plurinational State of",PIP Site Consolidation,1998,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10928,20041,"Bolivia, Plurinational State of",PIP Site Consolidation,1999,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10929,20041,"Bolivia, Plurinational State of",PIP Site Consolidation,2000,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10930,20041,"Bolivia, Plurinational State of",PIP Site Consolidation,2001,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10931,20041,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10932,20041,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10933,20041,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Tariquía,National Flora and Fauna Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10934,20039,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Toro Toro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10935,20039,"Bolivia, Plurinational State of",MEMS,2001,For storage only,28,Toro Toro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10936,20039,"Bolivia, Plurinational State of",MEMS,2002,For storage only,28,Toro Toro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10937,4644,"Bolivia, Plurinational State of",RAPPAM,2004,For storage only,28,Tunari,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10938,9779,"Bolivia, Plurinational State of",Birdlife IBA,2013,For storage only,28,Amboró,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10939,20037,"Bolivia, Plurinational State of",Birdlife IBA,2013,For storage only,28,Carrasco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10944,639,Central African Republic,Birdlife IBA,2001,For storage only,28,Bamingui-Bangoran,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10946,2059,Central African Republic,GOBI Survey,2006,For storage only,28,Basse-Lobaye Forest,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10947,2059,Central African Republic,METT,2010,For storage only,28,Basse-Lobaye Forest,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10948,31458,Central African Republic,RAPPAM,2010,For storage only,28,Dzanga-Ndoki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10949,31459,Central African Republic,Africa Rainforest Study,2001,For storage only,28,Dzanga-Sangha,Special Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10950,31458,Central African Republic,METT,0,For storage only,28,Dzanga-Ndoki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10953,31459,Central African Republic,METT,2005,For storage only,28,Dzanga-Sangha,Special Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10955,31459,Central African Republic,METT,0,For storage only,28,Dzanga-Sangha,Special Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10958,2256,Central African Republic,Birdlife IBA,2001,For storage only,28,Manovo-Gounda-Saint Floris,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10959,16792,Central African Republic,Birdlife IBA,2001,For storage only,28,Manovo-Gounda St Floris National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10960,16792,Central African Republic,WHA Outlook Report,2014,For storage only,28,Manovo-Gounda St Floris National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10961,2256,Central African Republic,METT,2007,For storage only,28,Manovo-Gounda-Saint Floris,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -10964,301877,Central African Republic,Birdlife IBA,2001,For storage only,28,Ngotto extension,Classified Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -10965,28745,Central African Republic,RAPPAM,2010,For storage only,28,Ngotto,Classified Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -10967,555547988,Congo;Cameroon;Central African Republic,WHA Outlook Report,2014,For storage only,28,Sangha Trinational,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10971,96156,China,Birdlife IBA,2008,For storage only,28,Baimaxueshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10972,315638,China,METT,2003,For storage only,28,Baishuihe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10973,95843,China,METT,2003,For storage only,28,Baishuijiang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10974,315640,China,METT,2003,For storage only,28,Baiyang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10975,315642,China,METT,2003,For storage only,28,Baodinggou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10976,95750,China,Birdlife IBA,2008,For storage only,28,Caiyanghe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10977,96143,China,Birdlife IBA,2008,For storage only,28,Cangshanerhai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10978,96016,China,METT,2003,For storage only,28,Changbaishan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10979,315645,China,METT,2003,For storage only,28,Changqing,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10980,555547989,China,WHA Outlook Report,2014,For storage only,28,Chengjiang Fossil Site,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10981,555512005,China,WHA Outlook Report,2014,For storage only,28,China Danxia,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -10982,96129,China,Birdlife IBA,2008,For storage only,28,Dashanbaoheijinghe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10983,315701,China,Birdlife IBA,2008,For storage only,28,Liuyangdaweishan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10984,96148,China,RAPPAM,2001,For storage only,28,Yongdedaxueshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10985,3016,China,GOBI Survey,2006,For storage only,28,Dinghushan,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10986,96145,China,Birdlife IBA,2008,For storage only,28,Gaoligongshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10987,95742,China,Birdlife IBA,2008,For storage only,28,Jinpingfenshuiling,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10988,315662,China,METT,2008,For storage only,28,Ganligahai-zecha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10989,96145,China,METT,2003,For storage only,28,Gaoligongshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10990,95596,China,METT,2011,For storage only,28,Neilingding-futian,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10991,95861,China,METT,2005,For storage only,28,Damingshanshuiyuanlin (Guangxi),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10992,95678,China,METT,2012,For storage only,28,Xinyinghongshulin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10993,95467,China,METT,2012,For storage only,28,Huzhong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10994,315715,China,METT,2010,For storage only,28,Nanwenghe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10995,96070,China,METT,2006,For storage only,28,Helanshan (Ningxia),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10996,95853,China,METT,2006,For storage only,28,Hepu rugen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10997,95853,China,METT,2009,For storage only,28,Hepu rugen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10998,95853,China,METT,2012,For storage only,28,Hepu rugen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -10999,95743,China,Birdlife IBA,2008,For storage only,28,Huanglianshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11000,67733,China,WHA Outlook Report,2014,For storage only,28,Huanglong Scenic and Historic Interest Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11001,96103,China,METT,2003,For storage only,28,Huanglongsi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11002,95550,China,METT,2003,For storage only,28,Houhe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11003,95557,China,METT,2012,For storage only,28,Longganhu,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11004,95556,China,METT,2012,For storage only,28,Changjiangtianeezhoubaijitun (Hubei),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11005,95549,China,METT,2012,For storage only,28,Changjiangxinluoduanbaijitun (Hubei),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11006,95579,China,METT,2003,For storage only,28,Badagongshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11007,315673,China,METT,2012,For storage only,28,Hanma,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11008,96033,China,METT,0,For storage only,28,Dafengmilu (Jiangsu),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11009,95716,China,RAPPAM,2001,For storage only,28,Jiaozishan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11010,315688,China,METT,2003,For storage only,28,Jiudingshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11011,96104,China,METT,2003,For storage only,28,Jiuzhaigou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11012,67732,China,WHA Outlook Report,2014,For storage only,28,Jiuzhaigou Valley Scenic and Historic Interest Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11013,315696,China,METT,2003,For storage only,28,Laoxiancheng,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11014,96097,China,METT,2003,For storage only,28,Longxihongkou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11015,95734,China,RAPPAM,2001,For storage only,28,Diaolingshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11016,95727,China,RAPPAM,2001,For storage only,28,Zhangmuqing,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11017,95632,China,METT,2005,For storage only,28,Maoershan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11018,95450,China,METT,2005,For storage only,28,Momoge,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11019,95450,China,METT,2007,For storage only,28,Momoge,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11020,95450,China,METT,2008,For storage only,28,Momoge,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11021,124384,China,WHA Outlook Report,2014,For storage only,28,"Mount Emei Scenic Area, including Leshan Giant Buddha Scenic Area",World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11022,26654,China,WHA Outlook Report,2014,For storage only,28,Mount Huangshan,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11023,903136,China,WHA Outlook Report,2014,For storage only,28,Mount Sanqingshan National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11024,17050,China,WHA Outlook Report,2014,For storage only,28,Mount Taishan,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11025,198295,China,WHA Outlook Report,2014,For storage only,28,Mount Wuyi,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11026,96178,China,METT,2005,For storage only,28,Mulun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11027,95774,China,Birdlife IBA,2008,For storage only,28,Napahai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11028,902688,China,Birdlife IBA,2008,For storage only,28,Napahai Wetland,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11029,95776,China,Birdlife IBA,2008,For storage only,28,Nangunhe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11030,95620,China,METT,2009,For storage only,28,Nonggang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11031,95620,China,METT,0,For storage only,28,Nonggang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11032,95620,China,METT,2005,For storage only,28,Nonggang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11033,315631,China,METT,2011,For storage only,28,Zhujiangkouzhonghuabaijitun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11034,315719,China,METT,2003,For storage only,28,Piankou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11035,67859,China,METT,2005,For storage only,28,Poyanghuhouniao,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11036,67859,China,METT,2007,For storage only,28,Poyanghuhouniao,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11037,67859,China,METT,2009,For storage only,28,Poyanghuhouniao,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11038,315720,China,METT,2003,For storage only,28,Qianfoshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11039,315691,China,METT,2010,For storage only,28,Kekexili,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11040,96078,China,METT,2010,For storage only,28,Qinghaihuniaodao,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11041,96077,China,METT,2010,For storage only,28,Mengda,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11042,315729,China,METT,2010,For storage only,28,Sanjiangyuan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11043,95655,China,METT,2006,For storage only,28,Sanya Coral Reef National Nature Reserve,National Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11044,95655,China,METT,2009,For storage only,28,Sanya Coral Reef National Nature Reserve,National Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11045,95655,China,METT,2012,For storage only,28,Sanya Coral Reef National Nature Reserve,National Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11046,900682,China,METT,2009,For storage only,28,Shankou Mangrove Nature Reserve,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11047,96090,China,METT,2003,For storage only,28,Foping,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11048,95725,China,RAPPAM,2001,For storage only,28,Shibalianshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11049,902902,China,WHA Outlook Report,2014,For storage only,28,"Sichuan Giant Panda Sanctuaries - Wolong, Mt Siguniang and Jiajin Mountains",World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11050,903131,China,WHA Outlook Report,2014,For storage only,28,South China Karst,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11051,95794,China,METT,2003,For storage only,28,Taibaishan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11052,95693,China,METT,2003,For storage only,28,Tangjiahe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11053,900881,China,WHA Outlook Report,2014,For storage only,28,Three Parallel Rivers of Yunnan Protected Areas,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11054,145503,China,GOBI Survey,2006,For storage only,28,Tianmushan,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11055,95692,China,METT,2003,For storage only,28,Wanglang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11056,315605,China,RAPPAM,2001,For storage only,28,Wenshanlaojunshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11057,95695,China,METT,2003,For storage only,28,Wolong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11058,95733,China,RAPPAM,2001,For storage only,28,Shizishan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11059,315606,China,METT,2003,For storage only,28,Wujiao,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11060,67731,China,WHA Outlook Report,2014,For storage only,28,Wulingyuan Scenic and Historic Interest Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11061,95451,China,METT,2009,For storage only,28,Xianghai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11062,315610,China,METT,2003,For storage only,28,Xiaohegou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11063,95691,China,METT,2003,For storage only,28,Xiaozhaizigou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11064,555556045,China,WHA Outlook Report,2014,For storage only,28,Xinjiang Tianshan,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11065,315614,China,METT,2003,For storage only,28,Xuebaoding,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11066,67737,China,GOBI Survey,2006,For storage only,28,Yancheng,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11067,95531,China,METT,2011,For storage only,28,Huanghesanjiaozhou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11068,95531,China,Birdlife IBA,2010,For storage only,28,Huanghesanjiaozhou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11069,96148,China,Birdlife IBA,2008,For storage only,28,Yongdedaxueshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11070,95770,China,Birdlife IBA,2008,For storage only,28,Yulongxueshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11071,96156,China,METT,2003,For storage only,28,Baimaxueshan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11072,315626,China,METT,2009,For storage only,28,Zhalong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11073,607,Cameroon,Birdlife IBA,2001,For storage only,28,Bénoué,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11074,555547998,Cameroon,METT,2004,For storage only,28,Bakossi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11075,555547998,Cameroon,METT,2006,For storage only,28,Bakossi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11076,555547998,Cameroon,METT,2008,For storage only,28,Bakossi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11077,555547998,Cameroon,METT,0,For storage only,28,Bakossi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11078,20112,Cameroon,RAPPAM,2002,For storage only,28,Bayang-Mbo,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11079,20112,Cameroon,METT,2012,For storage only,28,Bayang-Mbo,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11080,607,Cameroon,RAPPAM,2002,For storage only,28,Bénoué,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11081,606,Cameroon,RAPPAM,2002,For storage only,28,Bouba Ndjida,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11082,308624,Cameroon,METT,2003,For storage only,28,Boumba Bek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11083,308624,Cameroon,METT,2005,For storage only,28,Boumba Bek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11084,308624,Cameroon,METT,2014,For storage only,28,Boumba Bek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11085,308624,Cameroon,RAPPAM,2002,For storage only,28,Boumba Bek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11086,1242,Cameroon,METT,0,For storage only,28,Campo-Ma'an,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11087,1242,Cameroon,RAPPAM,2010,For storage only,28,Campo-Ma'an,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11088,1242,Cameroon,RAPPAM,2002,For storage only,28,Campo-Ma'an,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11089,1242,Cameroon,METT,2005,For storage only,28,Campo-Ma'an,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11090,1242,Cameroon,METT,2010,For storage only,28,Campo-Ma'an,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11091,1242,Cameroon,METT,2004,For storage only,28,Campo-Ma'an,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11092,1242,Cameroon,METT,2006,For storage only,28,Campo-Ma'an,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11093,1242,Cameroon,METT,2008,For storage only,28,Campo-Ma'an,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11094,1240,Cameroon,Africa Rainforest Study,2001,For storage only,28,Dja,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11095,3012,Cameroon,GOBI Survey,2006,For storage only,28,Dja,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11096,1240,Cameroon,METT,2005,For storage only,28,Dja,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11097,1240,Cameroon,METT,2006,For storage only,28,Dja,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11098,1240,Cameroon,RAPPAM,2010,For storage only,28,Dja,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11099,1240,Cameroon,RAPPAM,2002,For storage only,28,Dja,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11100,1240,Cameroon,Birdlife IBA,2001,For storage only,28,Dja,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11101,17758,Cameroon,Birdlife IBA,2001,For storage only,28,Dja Faunal Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11102,17758,Cameroon,WHA Outlook Report,2014,For storage only,28,Dja Faunal Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11103,1244,Cameroon,RAPPAM,2002,For storage only,28,Douala Edéa,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11104,1244,Cameroon,METT,2011,For storage only,28,Douala Edéa,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11105,555548870,Cameroon,RAPPAM,2002,For storage only,28,Ebo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11106,1241,Cameroon,RAPPAM,2002,For storage only,28,Faro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11107,609,Cameroon,RAPPAM,2002,For storage only,28,Kalamaloué,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11108,1246,Cameroon,RAPPAM,2002,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11109,20058,Cameroon,Africa Rainforest Study,2001,For storage only,28,Korup,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11110,20058,Cameroon,METT,2004,For storage only,28,Korup,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11111,20058,Cameroon,METT,2006,For storage only,28,Korup,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11112,20058,Cameroon,METT,2008,For storage only,28,Korup,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11113,20058,Cameroon,METT,0,For storage only,28,Korup,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11114,20058,Cameroon,RAPPAM,2002,For storage only,28,Korup,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11115,20058,Cameroon,METT,2010,For storage only,28,Korup,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11116,555547998,Cameroon,RAPPAM,2002,For storage only,28,Bakossi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11117,1245,Cameroon,METT,2003,For storage only,28,Lobéké,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11118,1245,Cameroon,METT,2005,For storage only,28,Lobéké,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11119,1245,Cameroon,RAPPAM,2010,For storage only,28,Lobéké,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11120,1245,Cameroon,RAPPAM,2002,For storage only,28,Lobéké,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11121,1245,Cameroon,METT,2007,For storage only,28,Lobéké,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11122,1245,Cameroon,METT,2010,For storage only,28,Lobéké,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11123,20166,Cameroon,RAPPAM,2002,For storage only,28,Mbam et Djerem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11124,20166,Cameroon,METT,0,For storage only,28,Mbam et Djerem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11125,20166,Cameroon,RAPPAM,2010,For storage only,28,Mbam et Djerem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11126,20166,Cameroon,METT,2004,For storage only,28,Mbam et Djerem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11127,20166,Cameroon,METT,2006,For storage only,28,Mbam et Djerem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11128,20166,Cameroon,METT,2008,For storage only,28,Mbam et Djerem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11129,111111,Mali;Guinea;Chad;Mauritania;Egypt;Cameroon,RAPPAM,2002,For storage only,28,Hideaway Islands,Research Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11130,308636,Cameroon,RAPPAM,2002,For storage only,28,Mengame,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11131,555547994,Cameroon,METT,2012,For storage only,28,Mont Cameroun,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11132,610,Cameroon,RAPPAM,2002,For storage only,28,Mozogo Gokoro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11134,30674,Cameroon,METT,2003,For storage only,28,Nki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11135,30674,Cameroon,METT,2005,For storage only,28,Nki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11136,30674,Cameroon,METT,2010,For storage only,28,Nki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11137,30674,Cameroon,RAPPAM,2002,For storage only,28,Nki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11138,1628,Cameroon,RAPPAM,2002,For storage only,28,Lac Ossa,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11139,20117,Cameroon,RAPPAM,2002,For storage only,28,Rumpi Hills,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11141,20125,Cameroon,RAPPAM,2002,For storage only,28,Santchou,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11142,20125,Cameroon,Birdlife IBA,2013,For storage only,28,Santchou,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11143,555547996,Cameroon,METT,2013,For storage only,28,Takamanda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11144,555548871,Cameroon,RAPPAM,2002,For storage only,28,Tchabal Mbabo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11145,308637,Cameroon,RAPPAM,2002,For storage only,28,Vallée du Mbéré,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11146,608,Cameroon,RAPPAM,2002,For storage only,28,Waza,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11147,608,Cameroon,Birdlife IBA,2001,For storage only,28,Waza,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11148,222222,Cameroon,RAPPAM,2002,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11150,20324,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Bili-Uere,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11151,20324,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Bili-Uere,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11152,5183,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Bombo Lumene,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11153,5183,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Bombo Lumene,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11154,20337,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Bushimaie,Hunting Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11155,20337,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Bushimaie,Hunting Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11156,37043,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Okapi,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11157,1083,"Congo, the Democratic Republic of the",METT,2007,For storage only,28,Garamba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11158,1083,"Congo, the Democratic Republic of the",METT,2008,For storage only,28,Garamba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11159,1083,"Congo, the Democratic Republic of the",METT,2009,For storage only,28,Garamba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11160,1083,"Congo, the Democratic Republic of the",METT,2013,For storage only,28,Garamba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11161,1083,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Garamba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11162,1083,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Garamba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11163,1083,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Garamba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11164,4327,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Garamba National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11165,4327,"Congo, the Democratic Republic of the",WHA Outlook Report,2014,For storage only,28,Garamba National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11166,72312,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Itombwe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11167,72312,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Itombwe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11168,124389,"Congo, the Democratic Republic of the",Africa Rainforest Study,2001,For storage only,28,Okapi Wildlife Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11169,1082,"Congo, the Democratic Republic of the",METT,2007,For storage only,28,Kahuzi-Biega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11170,1082,"Congo, the Democratic Republic of the",METT,2013,For storage only,28,Kahuzi-Biega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11171,1082,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Kahuzi-Biega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11172,1082,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Kahuzi-Biega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11173,1082,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Kahuzi-Biega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11174,4328,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Kahuzi-Biega National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11175,4328,"Congo, the Democratic Republic of the",WHA Outlook Report,2014,For storage only,28,Kahuzi-Biega National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11176,1084,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Kundelungu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11177,1084,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Kundelungu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11178,555512077,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Lomako-Yokokala,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11179,555512077,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Lomako-Yokokala,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11180,555512071,"Congo, the Democratic Republic of the",METT,2005,For storage only,28,Luki,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11181,1080,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Maiko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11182,1080,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Maiko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11183,555512074,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Mangai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11184,555512074,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Mangai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11185,37044,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Mangrove Nature Reserve or Marine Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11186,555512068,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,N'Sele,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11187,555512068,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,N'Sele,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11188,643,"Congo, the Democratic Republic of the;Congo",METT,2005,For storage only,28,Odzala Kokoua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11189,37043,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Okapi,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11190,37043,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Okapi,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11191,124389,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Okapi Wildlife Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11192,124389,"Congo, the Democratic Republic of the",WHA Outlook Report,2014,For storage only,28,Okapi Wildlife Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11193,37044,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Mangrove Nature Reserve or Marine Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11194,555512076,"Congo, the Democratic Republic of the",METT,2009,For storage only,28,Tumba-Lediima,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11195,478292,"Congo, the Democratic Republic of the",METT,2005,For storage only,28,Salonga,Integrale Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11196,478292,"Congo, the Democratic Republic of the",METT,2007,For storage only,28,Salonga,Integrale Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11197,478292,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Salonga,Integrale Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11198,478292,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Salonga,Integrale Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11199,10906,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Salonga National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11200,478292,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Salonga,Integrale Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11201,555512076,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Tumba-Lediima,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11202,555512076,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Tumba-Lediima,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11203,1079,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Upemba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11204,1079,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Upemba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11205,166889,"Congo, the Democratic Republic of the",METT,2007,For storage only,28,Virunga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11206,166889,"Congo, the Democratic Republic of the",METT,2008,For storage only,28,Virunga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11207,166889,"Congo, the Democratic Republic of the",METT,0,For storage only,28,Virunga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11208,166889,"Congo, the Democratic Republic of the",RAPPAM,2010,For storage only,28,Virunga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11209,2017,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Virunga National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11210,166889,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Virunga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11211,478291,"Congo, the Democratic Republic of the",Birdlife IBA,2001,For storage only,28,Parc national des Virunga,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11212,2017,"Congo, the Democratic Republic of the",WHA Outlook Report,2014,For storage only,28,Virunga National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11213,313401,Congo,RAPPAM,2012,For storage only,28,Conkouati-Douli,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11214,313401,Congo,METT,2007,For storage only,28,Conkouati-Douli,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11215,313401,Congo,METT,2011,For storage only,28,Conkouati-Douli,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11216,13694,Congo,RAPPAM,2012,For storage only,28,Réserve de biosphère de la Dimonika,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11217,313494,Congo,RAPPAM,2012,For storage only,28,Lac Télé,Community Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11218,166739,Congo,Birdlife IBA,2007,For storage only,28,Réserve Communautaire du Lac Télé/Likouala-aux-Herbes,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11219,313494,Congo,Birdlife IBA,2007,For storage only,28,Lac Télé,Community Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11220,2266,Congo,RAPPAM,2012,For storage only,28,Léfini,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11221,99862,Congo,RAPPAM,2012,For storage only,28,Lessio-Louna,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11222,300342,Congo,RAPPAM,2012,For storage only,28,Lossi,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11223,72332,Congo,RAPPAM,2012,For storage only,28,Nouabalé-Ndoki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11224,72332,Congo,METT,2007,For storage only,28,Nouabalé-Ndoki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11225,72332,Congo,METT,2013,For storage only,28,Nouabalé-Ndoki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11226,643,"Congo, the Democratic Republic of the;Congo",Africa Rainforest Study,2001,For storage only,28,Odzala Kokoua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11227,643,"Congo, the Democratic Republic of the;Congo",METT,2006,For storage only,28,Odzala Kokoua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11228,643,"Congo, the Democratic Republic of the;Congo",RAPPAM,2012,For storage only,28,Odzala Kokoua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11229,643,"Congo, the Democratic Republic of the;Congo",Birdlife IBA,2001,For storage only,28,Odzala Kokoua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11230,555555585,Congo,Birdlife IBA,2001,For storage only,28,Site Ramsar Odzala Kokoua,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11231,643,"Congo, the Democratic Republic of the;Congo",GOBI Survey,2006,For storage only,28,Odzala Kokoua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11232,643,"Congo, the Democratic Republic of the;Congo",METT,2007,For storage only,28,Odzala Kokoua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11233,354009,Congo,RAPPAM,2012,For storage only,28,Patte d'Oie,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11235,99855,Congo,RAPPAM,2012,For storage only,28,Tchimpounga,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11236,313162,Cape Verde,METT,2009,For storage only,28,"Bordeira, Chã das Caldeiras e Pico Novo",Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11237,313125,Cape Verde,METT,2006,For storage only,28,Monte Gordo,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11238,313125,Cape Verde,METT,2007,For storage only,28,Monte Gordo,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11239,313125,Cape Verde,METT,2009,For storage only,28,Monte Gordo,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11240,313160,Cape Verde,METT,2009,For storage only,28,Serra da Malagueta,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11241,313160,Cape Verde,METT,2006,For storage only,28,Serra da Malagueta,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11242,313160,Cape Verde,METT,2007,For storage only,28,Serra da Malagueta,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11243,344528,Czech Republic,METT,2005,For storage only,28,Beskydy,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11244,344528,Czech Republic,METT,2006,For storage only,28,Beskydy,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11245,344528,Czech Republic,METT,2007,For storage only,28,Beskydy,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11246,344528,Czech Republic,METT,2008,For storage only,28,Beskydy,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11247,344528,Czech Republic,METT,2009,For storage only,28,Beskydy,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11248,344528,Czech Republic,RAPPAM,2004,For storage only,28,Beskydy,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11249,134938,Czech Republic,Stockholm BR Survey,2008,For storage only,28,Bílé Karpaty,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11250,342001,Czech Republic,Birdlife IBA,2005,For storage only,28,Bohdanečský rybník,National Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11251,555517314,Czech Republic,Birdlife IBA,2005,For storage only,28,Bohdanecsky rybnik a rybnik Matka,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11252,555537220,Czech Republic,Birdlife IBA,2005,For storage only,28,Bohdanecsky rybnik,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11253,555537218,Czech Republic,Birdlife IBA,2005,For storage only,28,Broumovsko,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11254,555537222,Czech Republic,Birdlife IBA,2005,For storage only,28,Bzenecka Doubrava - Stranicke Pomoravi,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11255,555517156,Czech Republic,RAPPAM,2004,For storage only,28,Ceske Svycarsko,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11256,555517072,Czech Republic,Birdlife IBA,2005,For storage only,28,Hradiste,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11257,555537210,Czech Republic,Birdlife IBA,2005,For storage only,28,Doupovske hory,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11258,555516948,Czech Republic,Birdlife IBA,2007,For storage only,28,Hlubocke obory,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11259,555537204,Czech Republic,Birdlife IBA,2007,For storage only,28,Hlubocke obory,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11260,555537235,Czech Republic,Birdlife IBA,2007,For storage only,28,Hostynske vrchy,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11261,555537223,Czech Republic,Birdlife IBA,2005,For storage only,28,Hovoransko - Cejkovicko,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11262,555537228,Czech Republic,Birdlife IBA,2005,For storage only,28,Jaroslavicke rybniky,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11263,344537,Czech Republic,Birdlife IBA,2005,For storage only,28,Jeseníky,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11264,555537231,Czech Republic,Birdlife IBA,2005,For storage only,28,Jeseniky,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11265,555537216,Czech Republic,Birdlife IBA,2005,For storage only,28,Jizerske hory,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11266,344538,Czech Republic,RAPPAM,2004,For storage only,28,Jizerské hory,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11267,342034,Czech Republic,European Diploma,2000,For storage only,28,Karlštejn,National Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11268,555537230,Czech Republic,Birdlife IBA,2005,For storage only,28,Kralicky Sneznik,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11269,2063,Czech Republic,Stockholm BR Survey,2008,For storage only,28,Køivoklátsko,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11270,344524,Czech Republic,Birdlife IBA,2005,For storage only,28,Krkonošský národní park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11271,555517277,Czech Republic,Birdlife IBA,2005,For storage only,28,Krkonose,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11272,555537217,Czech Republic,Birdlife IBA,2005,For storage only,28,Krkonose,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11273,344541,Czech Republic,Birdlife IBA,2005,For storage only,28,Labské pískovce,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11274,555537214,Czech Republic,Birdlife IBA,2005,For storage only,28,Labske piskovce,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11275,555537233,Czech Republic,Birdlife IBA,2005,For storage only,28,Libava,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11276,11588,Czech Republic,GOBI Survey,2006,For storage only,28,Dolní Morava,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11277,11588,Czech Republic,Stockholm BR Survey,2008,For storage only,28,Dolní Morava,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11278,344544,Czech Republic,RAPPAM,2004,For storage only,28,Moravský kras,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11279,555537211,Czech Republic,Birdlife IBA,2005,For storage only,28,Vodni nadrz Nechranice,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11280,555537212,Czech Republic,Birdlife IBA,2005,For storage only,28,Novodomske raseliniste - Kovarska,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11281,555537207,Czech Republic,Birdlife IBA,2007,For storage only,28,Novohradske hory,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11282,555537219,Czech Republic,Birdlife IBA,2005,For storage only,28,Orlicke Zahori,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11283,344546,Czech Republic,Birdlife IBA,2010,For storage only,28,Pálava,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11284,555537226,Czech Republic,Birdlife IBA,2010,For storage only,28,Palava,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11285,344526,Czech Republic,RAPPAM,2004,For storage only,28,Podyjí,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11286,344526,Czech Republic,Birdlife IBA,2005,For storage only,28,Podyjí,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11287,555517566,Czech Republic,Birdlife IBA,2005,For storage only,28,Podyji,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11288,555537229,Czech Republic,Birdlife IBA,2005,For storage only,28,Podyji,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11289,344526,Czech Republic,European Diploma,2000,For storage only,28,Podyjí,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11290,342074,Czech Republic,Birdlife IBA,2010,For storage only,28,Řežabinec a Řežabinecké tůně,National Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11291,555537203,Czech Republic,Birdlife IBA,2010,For storage only,28,Rezabinec,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11292,555517583,Czech Republic,Birdlife IBA,2010,For storage only,28,Soutok - Podluzi,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11293,555537224,Czech Republic,Birdlife IBA,2010,For storage only,28,Soutok - Tvrdonicko,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11294,343199,Czech Republic,Birdlife IBA,2010,For storage only,28,Věstonická nádrž,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11295,555537227,Czech Republic,Birdlife IBA,2010,For storage only,28,Stredni nadrz Vodniho Dila Nove Mlyny,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11296,344527,Czech Republic,Birdlife IBA,2013,For storage only,28,Šumava,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11297,555537209,Czech Republic,Birdlife IBA,2013,For storage only,28,Sumava,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11298,20015,Czech Republic,GOBI Survey,2006,For storage only,28,Šumava,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11299,20015,Czech Republic,Stockholm BR Survey,2008,For storage only,28,Šumava,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11300,2062,Czech Republic,Stockholm BR Survey,2008,For storage only,28,Tøeboòsko,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11301,344552,Czech Republic,Birdlife IBA,2010,For storage only,28,Tøeboòsko,Protected Landscape Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11302,555537201,Czech Republic,Birdlife IBA,2010,For storage only,28,Trebonsko,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11303,555537202,Czech Republic,Birdlife IBA,2006,For storage only,28,Udoli Otavy a Vltavy,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11304,555537213,Czech Republic,Birdlife IBA,2005,For storage only,28,Vychodni Krusne hory,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11305,555537200,Czech Republic,Birdlife IBA,2010,For storage only,28,Zehunsky rybnik - Obora Knezicky,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11306,555537172,Cyprus,Birdlife IBA,2013,For storage only,28,VOUNOKORFES MADARIS - PAPOUTSAS,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11307,555537176,Cyprus,Birdlife IBA,2013,For storage only,28,PERIOCHI AGIAS THEKLAS - LIOPETRI,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11308,555537171,Cyprus,Birdlife IBA,2013,For storage only,28,PERIOCHI ATSA - AGIOS THEODOROS,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11309,555537192,Cyprus,Birdlife IBA,2013,For storage only,28,ZONI EIDIKIS PROSTASIAS CHA - POTAMI,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11310,555537185,Cyprus,Birdlife IBA,2013,For storage only,28,KOILADA EZOUSAS,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11311,555537179,Cyprus,Birdlife IBA,2013,For storage only,28,FAROS KATO PAFOU,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11312,555579919,Cyprus,Birdlife IBA,2013,For storage only,28,Faros Kato Pafou,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11313,555537196,Cyprus,Birdlife IBA,2013,For storage only,28,PERIOCHI KOSIIS - PALLOUROKAMPOU,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11314,900570,Cyprus,Birdlife IBA,2013,For storage only,28,Larnaca Salt Lake,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11315,555537193,Cyprus,Birdlife IBA,2013,For storage only,28,ALYKES LARNAKAS,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11316,555579922,Cyprus,Birdlife IBA,2013,For storage only,28,Alykes Larnakas,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11317,555516681,Cyprus,Birdlife IBA,2013,For storage only,28,Limni Oroklinis,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11318,555537197,Cyprus,Birdlife IBA,2013,For storage only,28,ZONI EIDIKIS PROSTASIAS LIMNI OROKLINIS,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11319,555537169,Cyprus,Birdlife IBA,2013,For storage only,28,DASOS PAFOU,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11320,555537194,Cyprus,Birdlife IBA,2013,For storage only,28,POTAMOS PANAGIAS STAZOUSAS,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11321,555537175,Cyprus,Birdlife IBA,2013,For storage only,28,LIMNI PARALIMNIOU,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11322,555579916,Cyprus,Birdlife IBA,2013,For storage only,28,Limni Paralimniou,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11323,555537195,Cyprus,Birdlife IBA,2013,For storage only,28,POTAMOS PENTASCHINOS,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11324,555537183,Cyprus,Birdlife IBA,2013,For storage only,28,ZONI EIDIKIS PROSTASIAS KOILADA SARAMA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11325,14847,Cyprus,Birdlife IBA,2013,For storage only,28,Troodos,National Forest Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11326,555537188,Cyprus,Birdlife IBA,2013,For storage only,28,ETHNIKO DASIKO PARKO TROODOUS,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11327,555579920,Cyprus,Birdlife IBA,2013,For storage only,28,Ethniko Dasiko Parko Troodous,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11328,555537177,Cyprus,Birdlife IBA,2013,For storage only,28,VOUNI PANAGIAS,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11329,555579917,Cyprus,Birdlife IBA,2013,For storage only,28,Vouni Panagias,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11330,555537190,Cyprus,Birdlife IBA,2013,For storage only,28,PERIOCHI KOILADAS XYLOURIKOU,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11331,555577570,Djibouti,METT,2009,For storage only,28,Haramous,Area protected for habitat and species,"GD-PAME, version pre-2017",Not Reported,2018,English -11332,2236,Dominica,PIP Site Consolidation,1992,For storage only,28,Morne Trois Pitons,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11333,2236,Dominica,PIP Site Consolidation,1996,For storage only,28,Morne Trois Pitons,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11334,2236,Dominica,PIP Site Consolidation,1997,For storage only,28,Morne Trois Pitons,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11335,2236,Dominica,PIP Site Consolidation,1998,For storage only,28,Morne Trois Pitons,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11336,2236,Dominica,PIP Site Consolidation,1999,For storage only,28,Morne Trois Pitons,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11337,2236,Dominica,PIP Site Consolidation,2001,For storage only,28,Morne Trois Pitons,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11338,2236,Dominica,PIP Site Consolidation,2000,For storage only,28,Morne Trois Pitons,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11339,145583,Dominica,WHA Outlook Report,2014,For storage only,28,Morne Trois Pitons National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11340,17653,Denmark,Birdlife IBA,2010,For storage only,28,Førby Sø,"Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017",Not Reported,2018,English -11341,555538061,Denmark,Birdlife IBA,2010,For storage only,28,Ålvand Klithede og Førby Sø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11342,555580347,Denmark,Birdlife IBA,2010,For storage only,28,Ålvand Klithede og Førby Sø,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11343,555538066,Denmark,Birdlife IBA,2010,For storage only,28,Agger Tange,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11344,555538009,Denmark,Birdlife IBA,2006,For storage only,28,"Almindingen, Ølene og Paradisbakkerne",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11345,555580331,Denmark,Birdlife IBA,2006,For storage only,28,"Almindingen, Ølene og Paradisbakkerne",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11346,17657,Denmark,Birdlife IBA,2006,For storage only,28,"Anholt, Ørkenen","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017",Not Reported,2018,English -11347,64588,Denmark,Birdlife IBA,2006,For storage only,28,Arreskov Sø,"Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017",Not Reported,2018,English -11348,555522371,Denmark,Birdlife IBA,2006,For storage only,28,Arreskov Sø,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11349,555538017,Denmark,Birdlife IBA,2006,For storage only,28,Arreskov Sø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11350,555537996,Denmark,Birdlife IBA,2010,For storage only,28,Bøtø Nor,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11351,555538028,Denmark,Birdlife IBA,2010,For storage only,28,Ballum og Husum Enge og Kamper Strandenge,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11352,555522370,Denmark,Birdlife IBA,2010,For storage only,28,Skove og søer syd for Brahetrolleborg,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11353,555538013,Denmark,Birdlife IBA,2010,For storage only,28,Skove ved Brahetrolleborg,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11354,555537993,Denmark,Birdlife IBA,2010,For storage only,28,Søer ved Bregentved og Gisselfeld,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11355,555538069,Denmark,Birdlife IBA,2006,For storage only,28,Dråby Vig,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11356,555580344,Denmark,Birdlife IBA,2006,For storage only,28,Dråby Vig,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11357,67899,Denmark,Birdlife IBA,2006,For storage only,28,Ertholmene,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11358,555538008,Denmark,Birdlife IBA,2006,For storage only,28,Ertholmene,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11359,555543244,Denmark,Birdlife IBA,2006,For storage only,28,Bornholm: Ertholmene,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11360,555580327,Denmark,Birdlife IBA,2006,For storage only,28,Ertholmene,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11361,67874,Denmark,Birdlife IBA,2010,For storage only,28,Filso,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11362,555538040,Denmark,Birdlife IBA,2010,For storage only,28,Fiilsø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11363,555538074,Denmark,Birdlife IBA,2010,For storage only,28,"Glomstrup Vig, Agerø, Munkholm og Katholm Odde, L",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11364,555522306,Denmark,Birdlife IBA,2006,For storage only,28,Gribskov,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11365,555537981,Denmark,Birdlife IBA,2006,For storage only,28,Gribskov,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11366,555538000,Denmark,Birdlife IBA,2010,For storage only,28,Guldborgsund,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11367,17691,Denmark,Birdlife IBA,2010,For storage only,28,Hansted reservatet,"Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017",Not Reported,2018,English -11368,555522446,Denmark,Birdlife IBA,2010,For storage only,28,"Hanstholmreservatet, Nors Sø og Vandet Sø",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11369,555538065,Denmark,Birdlife IBA,2010,For storage only,28,Hanstholm Reservatet,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11370,555538051,Denmark,Birdlife IBA,2010,For storage only,28,"Harboøre Tange, Plet Enge og Gjeller Sø",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11371,555538047,Denmark,Birdlife IBA,2010,For storage only,28,S├©nder Feldborg Plantage,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11372,555580341,Denmark,Birdlife IBA,2010,For storage only,28,S├©nder Feldborg Plantage,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11373,555538032,Denmark,Birdlife IBA,2007,For storage only,28,Hedeområder ved Store Råbjerg,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11374,555580336,Denmark,Birdlife IBA,2007,For storage only,28,Hedeområder ved Store Råbjerg,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11375,67881,Denmark,Birdlife IBA,2010,For storage only,28,Hirsholmene,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11376,555538085,Denmark,Birdlife IBA,2010,For storage only,28,Hirsholmene,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11377,555538067,Denmark,Birdlife IBA,2010,For storage only,28,Hjarbæk Fjord og Simested Fjord,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11378,555538033,Denmark,Birdlife IBA,2010,For storage only,28,Engarealer ved Ho Bugt,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11379,67886,Denmark,Birdlife IBA,2010,For storage only,28,Horsens Fjord & Endelave,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11380,555522441,Denmark,Birdlife IBA,2010,For storage only,28,"Horsens Fjord, havet ├©st for og Endelave",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11381,555538058,Denmark,Birdlife IBA,2010,For storage only,28,Horsens Fjord og Endelave,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11382,555543154,Denmark,Birdlife IBA,2010,For storage only,28,"Horsens Fjord, sea east of and Endelave",Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11383,555538019,Denmark,Birdlife IBA,2006,For storage only,28,"Hostrup Sø, Assenholm Mose og Felsted Vestermark",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11384,555580332,Denmark,Birdlife IBA,2006,For storage only,28,"Hostrup Sø, Assenholm Mose og Felsted Vestermark",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11385,67898,Denmark,Birdlife IBA,2010,For storage only,28,Waters between Lolland and Falster including Rods*,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11386,555537997,Denmark,Birdlife IBA,2010,For storage only,28,Kyststrækningen v. Hyllekrog-Rødsand,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11387,902373,Denmark,WHA Outlook Report,2014,For storage only,28,Ilulissat Icefjord,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11388,555537980,Denmark,Birdlife IBA,2007,For storage only,28,Jægerspris Nordskov,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11389,555538081,Denmark,Birdlife IBA,2006,For storage only,28,Råbjerg og Tolshave Mose,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11390,555538034,Denmark,Birdlife IBA,2010,For storage only,28,Kallesmærsk Hede og Grærup Langsø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11391,17669,Denmark,Birdlife IBA,2006,For storage only,28,"Møens Klint, Høje Møn","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017",Not Reported,2018,English -11392,555538004,Denmark,Birdlife IBA,2006,For storage only,28,Klinteskoven,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11393,555580335,Denmark,Birdlife IBA,2006,For storage only,28,Klinteskoven,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11394,92413,Denmark,Birdlife IBA,2010,For storage only,28,Skast og Kogsbøl Moser,"Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017",Not Reported,2018,English -11395,555538030,Denmark,Birdlife IBA,2010,For storage only,28,Kogsbøl og Skast Mose,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11396,555522332,Denmark,Birdlife IBA,2010,For storage only,28,Havet og kysten mellem Hundested og Rørvig,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11397,555537994,Denmark,Birdlife IBA,2010,For storage only,28,Havet mellem Korshage og Hundested,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11398,555543129,Denmark,Birdlife IBA,2010,For storage only,28,The sea and the coast between Rørvig and Hundeste,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11399,555538083,Denmark,Birdlife IBA,2010,For storage only,28,Kysten fra Aggersund til Bygholm Vejle,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11400,67889,Denmark,Birdlife IBA,2006,For storage only,28,Nærå Coast and Æbelo area,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11401,555522360,Denmark,Birdlife IBA,2006,For storage only,28,"Æbelø, havet syd for og Nærå",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11402,555538015,Denmark,Birdlife IBA,2006,For storage only,28,"Æbelø, havet syd for og Nærå",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11403,555543117,Denmark,Birdlife IBA,2006,For storage only,28,"Æbelø and the sea south of, and Nærå",Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11404,67879,Denmark,Birdlife IBA,2010,For storage only,28,Vejlerne and Logstor Bredning,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11405,555522462,Denmark,Birdlife IBA,2010,For storage only,28,"Løgstør Bredning, Vejlerne og Bulbjerg",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11406,555538071,Denmark,Birdlife IBA,2010,For storage only,28,"Løgstør Bredning, Livø, Feggesund og Skarrehage",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11407,555538062,Denmark,Birdlife IBA,2010,For storage only,28,Lønnerup Fjord,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11408,67888,Denmark,Birdlife IBA,2010,For storage only,28,Lillebælt,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11409,555522358,Denmark,Birdlife IBA,2010,For storage only,28,Lillebælt,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11410,555538018,Denmark,Birdlife IBA,2010,For storage only,28,Lillebælt,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11411,555543120,Denmark,Birdlife IBA,2010,For storage only,28,Lillebælt,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11412,555522380,Denmark,Birdlife IBA,2006,For storage only,28,"Lindet skov, Hønning Mose, Hønning Plantage og L",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11413,555538027,Denmark,Birdlife IBA,2006,For storage only,28,"Lindet Skov, Hønning Mose og Plantage, Lovdrup Sk",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11414,555538073,Denmark,Birdlife IBA,2010,For storage only,28,Lovns Bredning,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11415,555538070,Denmark,Birdlife IBA,2010,For storage only,28,Mågerodde og Karby Odde,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11416,555580345,Denmark,Birdlife IBA,2010,For storage only,28,Mågerodde og Karby Odde,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11417,92423,Denmark,Birdlife IBA,2006,For storage only,28,Mandø,"Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017",Not Reported,2018,English -11418,555538078,Denmark,Birdlife IBA,2006,For storage only,28,Madum Sø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11419,555538036,Denmark,Birdlife IBA,2006,For storage only,28,Mandø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11420,555538011,Denmark,Birdlife IBA,2010,For storage only,28,Marstal Bugt og den sydlige del af Langeland,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11421,17685,Denmark,Birdlife IBA,2008,For storage only,28,Mossø,"Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017",Not Reported,2018,English -11422,555538057,Denmark,Birdlife IBA,2008,For storage only,28,Mossø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11423,67896,Denmark,Birdlife IBA,2010,For storage only,28,Nakskov Fjord and Inner Fjord,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11424,555522343,Denmark,Birdlife IBA,2010,For storage only,28,Nakskov Fjord,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11425,555538002,Denmark,Birdlife IBA,2010,For storage only,28,Nakskov Fjord og Inderfjord,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11426,555543135,Denmark,Birdlife IBA,2010,For storage only,28,Nakskov Fjord,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11427,555522463,Denmark,Birdlife IBA,2008,For storage only,28,"Agger Tange, Nissum Bredning, Skibsted Fjord og A*",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11428,555538045,Denmark,Birdlife IBA,2008,For storage only,28,Nissum Bredning,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11429,67877,Denmark,Birdlife IBA,2010,For storage only,28,Nissum Fjord,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11430,555522411,Denmark,Birdlife IBA,2010,For storage only,28,Nissum Fjord,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11431,555538046,Denmark,Birdlife IBA,2010,For storage only,28,Nissum Fjord,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11432,67882,Denmark,Birdlife IBA,2006,For storage only,28,Nordre Ronner,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11433,555538084,Denmark,Birdlife IBA,2006,For storage only,28,Nordre Rønner,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11434,555538014,Denmark,Birdlife IBA,2010,For storage only,28,Odense Fjord,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11435,555543119,Denmark,Birdlife IBA,2010,For storage only,28,Odense Fjord,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11436,555580334,Denmark,Birdlife IBA,2010,For storage only,28,Odense Fjord,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11437,555538064,Denmark,Birdlife IBA,2007,For storage only,28,Ovesø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11438,67895,Denmark,Birdlife IBA,2010,For storage only,28,"Præsto Fjord, Jungshoved Nor, Ulvshale and Nyord","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11439,555522336,Denmark,Birdlife IBA,2010,For storage only,28,Havet og kysten mellem Præstø Fjord og Grønsund,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11440,555538003,Denmark,Birdlife IBA,2010,For storage only,28,"Præstø Fjord, Ulvshale, Nyord og Jungshoved Nor",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11441,555543133,Denmark,Birdlife IBA,2010,For storage only,28,The sea and coast between Præstø Fjord and Grøn,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11442,555538026,Denmark,Birdlife IBA,2010,For storage only,28,Rømø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11443,555537984,Denmark,Birdlife IBA,2006,For storage only,28,Ramsø Mose,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11444,555538035,Denmark,Birdlife IBA,2010,For storage only,28,Ribe Holme og enge med Kongeåens udløb,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11445,67875,Denmark,Birdlife IBA,2010,For storage only,28,Ringkobing Fjord,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11446,555522422,Denmark,Birdlife IBA,2010,For storage only,28,Ringkøbing Fjord og Nymindestrømmen,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11447,555538048,Denmark,Birdlife IBA,2010,For storage only,28,Ringkøbing Fjord,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11448,555522483,Denmark,Birdlife IBA,2006,For storage only,28,"Rold Skov, Lindenborg Ådal og Madum Sø",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11449,555538079,Denmark,Birdlife IBA,2006,For storage only,28,Rold Skov,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11450,555522361,Denmark,Birdlife IBA,2009,For storage only,28,Havet mellem Romsø og Hindsholm samt Romsø,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11451,555538016,Denmark,Birdlife IBA,2009,For storage only,28,Romsø og sydkysten af Hindsholm,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11452,555543118,Denmark,Birdlife IBA,2009,For storage only,28,The sea between Romsø and Hindsholm and Romsø,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11453,555522308,Denmark,Birdlife IBA,2006,For storage only,28,Roskilde Fjord,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11454,555537985,Denmark,Birdlife IBA,2006,For storage only,28,"Roskilde Fjord, Kattinge Vig og Kattinge Sø",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11455,555543126,Denmark,Birdlife IBA,2006,For storage only,28,Roskilde Fjord og Jaegerspris Nordskov,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11456,555538024,Denmark,Birdlife IBA,2006,For storage only,28,Sønder Ådal,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11457,555537977,Denmark,Birdlife IBA,2006,For storage only,28,Saltholm og omliggende hav,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11458,555543205,Denmark,Birdlife IBA,2006,For storage only,28,Waters around Saltholm,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11459,555580326,Denmark,Birdlife IBA,2006,For storage only,28,Saltholm og omliggende hav,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11460,67891,Denmark,Birdlife IBA,2006,For storage only,28,"Sejro Bugt, Nekselo Bugt & Saltbæk Vig","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11461,555522322,Denmark,Birdlife IBA,2006,For storage only,28,Sejerø Bugt og Saltbæk Vig,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11462,555537986,Denmark,Birdlife IBA,2006,For storage only,28,Sejerø Bugt og Nekselø,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11463,555543130,Denmark,Birdlife IBA,2006,For storage only,28,The bay of Sejerø and Saltbæk Vig,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11464,555537987,Denmark,Birdlife IBA,2010,For storage only,28,"Skælskør Nor, Skælskør Fjord og Gammelsø",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11465,555522397,Denmark,Birdlife IBA,2008,For storage only,28,Skove langs nordsiden af Vejle Fjord,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11466,555538043,Denmark,Birdlife IBA,2008,For storage only,28,Skovområde ved Vejle Fjord,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11467,555522444,Denmark,Birdlife IBA,2008,For storage only,28,"Sepstrup Sande, Vrads Sande, Velling Skov og Pals*",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11468,555538059,Denmark,Birdlife IBA,2008,For storage only,28,Skovområde syd for Silkeborg,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11469,555538029,Denmark,Birdlife IBA,2006,For storage only,28,"Rinkenæs Skov, Dyrehaven og Rode Skov",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11470,555580328,Denmark,Birdlife IBA,2006,For storage only,28,"Rinkenæs Skov, Dyrehaven og Rode Skov",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11471,555538005,Denmark,Birdlife IBA,2010,For storage only,28,Skovene ved Vemmetofte,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11472,555537983,Denmark,Birdlife IBA,2008,For storage only,28,Gammel Havdrup Mose,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11473,555537990,Denmark,Birdlife IBA,2006,For storage only,28,Sprogø og Halsskov Rev,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11474,555543162,Denmark,Birdlife IBA,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11475,67887,Denmark,Birdlife IBA,2006,For storage only,28,Stavns Fjord and adjacent waters,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11476,555522428,Denmark,Birdlife IBA,2006,For storage only,28,"Stavns Fjord, Samsø Østerflak og Nordby Hede",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11477,555538054,Denmark,Birdlife IBA,2006,For storage only,28,Stavns Fjord,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11478,555543206,Denmark,Birdlife IBA,2006,For storage only,28,Stavns Fjord and adjacent waters,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11479,555577556,Denmark,WHA Outlook Report,2014,For storage only,28,Stevns Klint,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11480,67890,Denmark,Birdlife IBA,2010,For storage only,28,South Funen Archipelago,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11481,555522376,Denmark,Birdlife IBA,2010,For storage only,28,Sydfynske Øhav,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11482,555538010,Denmark,Birdlife IBA,2010,For storage only,28,Sydfynske Øhav,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11483,555543125,Denmark,Birdlife IBA,2010,For storage only,28,South Funen sea with islands,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -11484,555538023,Denmark,Birdlife IBA,2006,For storage only,28,"Tinglev Sø og Mose, Ulvemose og Terkelsbøl Mose",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11485,555522324,Denmark,Birdlife IBA,2010,For storage only,28,"Åmose, Tissø, Halleby Å og Flasken",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11486,555537992,Denmark,Birdlife IBA,2010,For storage only,28,"Tissø, Åmose og Hallenslev Mose",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11487,555538042,Denmark,Birdlife IBA,2006,For storage only,28,"Uldum Kær, Tørring Kær og Ølholm Kær",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11488,555580338,Denmark,Birdlife IBA,2006,For storage only,28,"Uldum Kær, Tørring Kær og Ølholm Kær",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11489,67880,Denmark,Birdlife IBA,2010,For storage only,28,Ulvedybet and Nibe Bredning,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11490,555522481,Denmark,Birdlife IBA,2010,For storage only,28,"Nibe Bredning, Halkær Ådal og Sønderup Ådal",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11491,555538076,Denmark,Birdlife IBA,2010,For storage only,28,Ulvedybet og Nibe Bredning,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11492,555537998,Denmark,Birdlife IBA,2010,For storage only,28,"Ulvsund, Grønsund og Farø Fjord",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11493,555538041,Denmark,Birdlife IBA,2010,For storage only,28,Vadehavet,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11494,170248,Denmark,Birdlife IBA,2010,For storage only,28,"Vangså, område ved","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017",Not Reported,2018,English -11495,555538068,Denmark,Birdlife IBA,2010,For storage only,28,Vangså Hede,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11496,555580346,Denmark,Birdlife IBA,2010,For storage only,28,Vangså Hede,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11497,555538038,Denmark,Birdlife IBA,2006,For storage only,28,Vejen Mose,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11498,555580339,Denmark,Birdlife IBA,2006,For storage only,28,Vejen Mose,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11499,555538052,Denmark,Birdlife IBA,2010,For storage only,28,"Venø, Venø Sund",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11500,555580342,Denmark,Birdlife IBA,2010,For storage only,28,"Venø, Venø Sund",Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11501,555538063,Denmark,Birdlife IBA,2010,For storage only,28,"Vestlige Vejler, Arup Holm og Hovsør Røn",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11502,555538012,Denmark,Birdlife IBA,2009,For storage only,28,Vresen og havet mellem Fyn og Langeland,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11503,40978,Egypt,RAPPAM,2006,For storage only,28,Abu Gallum,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11504,313029,Egypt,RAPPAM,2006,For storage only,28,El Ahrash,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11505,312969,Egypt,RAPPAM,2006,For storage only,28,Ashtum El Gamel,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11506,306581,Egypt,RAPPAM,2006,For storage only,28,El Bourollus,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11507,12359,Egypt,RAPPAM,2006,For storage only,28,El Omayed,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11508,312977,Egypt,RAPPAM,2006,For storage only,28,Elba,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11509,313379,Egypt,RAPPAM,2006,For storage only,28,Hasana Dome,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11510,306581,Egypt,Birdlife IBA,2001,For storage only,28,El Bourollus,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11511,40977,Egypt,METT,2009,For storage only,28,Nabq,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11512,40977,Egypt,RAPPAM,2006,For storage only,28,Nabq,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11513,3020,Egypt,GOBI Survey,2006,For storage only,28,Omayed,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11514,312964,Egypt,RAPPAM,2006,For storage only,28,Petrified Forest,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11515,14899,Egypt,RAPPAM,2006,For storage only,28,Qarun,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11516,9782,Egypt,METT,2009,For storage only,28,Ras Mohammed,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11517,9782,Egypt,RAPPAM,2006,For storage only,28,Ras Mohammed,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11518,111111,Mali;Guinea;Chad;Mauritania;Egypt;Cameroon,RAPPAM,2006,For storage only,28,Hideaway Islands,Research Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11519,555543022,Egypt,METT,2009,For storage only,28,Red Sea Islands,Developing Resources Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11521,12363,Egypt,METT,2009,For storage only,28,St. Catherine,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -11522,13650,Egypt,RAPPAM,2006,For storage only,28,Salouga and Ghazal,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -11523,14900,Egypt,RAPPAM,2006,For storage only,28,Siwa,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11524,12363,Egypt,RAPPAM,2006,For storage only,28,St. Catherine,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -11525,12363,Egypt,METT,2011,For storage only,28,St. Catherine,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -11526,312963,Egypt,RAPPAM,2006,For storage only,28,Taba,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -11527,14895,Egypt,RAPPAM,2006,For storage only,28,Wadi Al Alaqi,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11528,902487,Egypt,WHA Outlook Report,2014,For storage only,28,Wadi Al-Hitan (Whale Valley),World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11529,61414,Egypt,GOBI Survey,2006,For storage only,28,Wadi Allaqi,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11530,18771,Egypt,RAPPAM,2006,For storage only,28,Wadi El Assuti,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11531,312975,Egypt,METT,2009,For storage only,28,Wadi Degla,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -11532,312975,Egypt,RAPPAM,2006,For storage only,28,Wadi Degla,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -11533,306589,Egypt,RAPPAM,2006,For storage only,28,Wadi El-Gemal - Hamata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11534,306589,Egypt,METT,2009,For storage only,28,Wadi El-Gemal - Hamata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11535,30006,Egypt,METT,2009,For storage only,28,Wadi El Rayan,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11536,30006,Egypt,RAPPAM,2006,For storage only,28,Wadi El Rayan,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11537,30006,Egypt,Birdlife IBA,2001,For storage only,28,Wadi El Rayan,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11538,555547985,Egypt,Birdlife IBA,2001,For storage only,28,Wadi El Rayan Protected Area,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11539,313380,Egypt,RAPPAM,2006,For storage only,28,Wadi Sannur Cave,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11540,306592,Egypt,METT,2009,For storage only,28,White Desert,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -11541,306592,Egypt,RAPPAM,2006,For storage only,28,White Desert,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -11542,312966,Egypt,RAPPAM,2006,For storage only,28,Zaranik,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11543,145569,Algeria,GOBI Survey,2006,For storage only,28,Djurdjura,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11544,902531,Algeria,GOBI Survey,2006,For storage only,28,Gouraya,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11545,17706,Algeria,Birdlife IBA,2001,For storage only,28,Lac Oubeira,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11546,67756,Algeria,Birdlife IBA,2001,For storage only,28,Lac Tonga,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11547,23177,Algeria,Birdlife IBA,2001,For storage only,28,Parc Culturel de l'Ahagghar (Tamanrasset),Cultural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11548,4999,Algeria,Birdlife IBA,2001,For storage only,28,Tassili n'Ajjer,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11549,12352,Algeria,Birdlife IBA,2001,For storage only,28,Parc Culturel du Tassili (Illizi),Cultural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11550,4999,Algeria,METT,2010,For storage only,28,Tassili n'Ajjer,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11551,4999,Algeria,WHA Outlook Report,2014,For storage only,28,Tassili n'Ajjer,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11552,902530,Algeria,GOBI Survey,2006,For storage only,28,Taza,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11553,67740,France,GOBI Survey,2006,For storage only,28,Archipel de la Guadeloupe,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11554,6325,France,European Diploma,1966,For storage only,28,Camargue,Regional Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11555,7165,France,Stockholm BR Survey,2008,For storage only,28,Camargue,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11556,660,France,French National Parks,2008,For storage only,28,Cévennes,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11557,659,France,French National Parks,2008,For storage only,28,Ecrins,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11558,9617,France,WHA Outlook Report,2014,For storage only,28,"Gulf of Porto: Calanche of Piana, Gulf of Girolata, Scandola Reserve",World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11559,903134,France,WHA Outlook Report,2014,For storage only,28,Lagoons of New Caledonia: Reef Diversity and Associated Ecosystems,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11560,659,France,European Diploma,1990,For storage only,28,Ecrins,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11561,95332,France,Birdlife IBA,2013,For storage only,28,Grande Briere,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11562,555526084,France,Birdlife IBA,2013,For storage only,28,Grande Brière et marais de Donges,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11563,555539359,France,Birdlife IBA,2013,For storage only,28,"Grande Brière, marais de Donges et du Brivet",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11564,664,France,European Diploma,1993,For storage only,28,Mercantour,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11565,664,France,French National Parks,2008,For storage only,28,Mercantour,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11566,26648,France,GOBI Survey,2006,For storage only,28,Mont Ventoux,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11567,26648,France,Stockholm BR Survey,2008,For storage only,28,Mont Ventoux,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11568,168198,France,GOBI Survey,2006,For storage only,28,Pays de Fontainebleau,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11569,168198,France,Stockholm BR Survey,2008,For storage only,28,Pays de Fontainebleau,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11570,555512006,France,WHA Outlook Report,2014,For storage only,28,"Pitons, cirques and remparts of Reunion Island",World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11571,555539401,France,Birdlife IBA,2013,For storage only,28,Plaine de Niort Nord-Ouest,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11572,663,France,European Diploma,1997,For storage only,28,Port-Cros,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11573,663,France,French National Parks,2008,For storage only,28,Port-Cros,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11574,662,France,French National Parks,2008,For storage only,28,Pyrénées,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11575,145590,Spain;France,WHA Outlook Report,2014,For storage only,28,Pyrénées - Mont Perdu,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11576,7168,France,European Diploma,1985,For storage only,28,Scandola,Corsican Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11577,2067,France,GOBI Survey,2006,For storage only,28,Vallée du Fango,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11578,661,France,European Diploma,1976,For storage only,28,Vanoise,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11579,661,France,French National Parks,2008,For storage only,28,Vanoise,National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11580,67741,France,GOBI Survey,2006,For storage only,28,Vosges du Nord/Pfälzerwald (Germany),UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11581,902505,"Micronesia, Federated States of",GOBI Survey,2006,For storage only,28,Utwe,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11582,903129,Gabon,WHA Outlook Report,2014,For storage only,28,Ecosystem and Relict Cultural Landscape of Lopé-Okanda,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11583,5187,Gabon,GOBI Survey,2006,For storage only,28,Réserve naturelle intégrale d'Ipassa-Makokou,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11584,303873,Gabon,METT,2005,For storage only,28,Ivindo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11585,303873,Gabon,METT,2006,For storage only,28,Ivindo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11586,303874,Gabon,METT,2007,For storage only,28,Loango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11587,303874,Gabon,METT,2010,For storage only,28,Loango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11588,303874,Gabon,RAPPAM,2010,For storage only,28,Loango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11589,303875,Gabon,Africa Rainforest Study,2001,For storage only,28,Lopé,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11590,303875,Gabon,RAPPAM,2010,For storage only,28,Lopé,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11591,301850,Gabon,METT,2007,For storage only,28,Mayumba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11592,72324,Gabon,METT,2004,For storage only,28,Minkebe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11593,72324,Gabon,METT,2005,For storage only,28,Minkebe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11595,72324,Gabon,RAPPAM,2010,For storage only,28,Minkebe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11596,72324,Gabon,METT,2010,For storage only,28,Minkebe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11597,303877,Gabon,METT,2007,For storage only,28,Moukalaba doudou,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11598,303878,Gabon,METT,2005,For storage only,28,Mwagne,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11599,303878,Gabon,METT,2006,For storage only,28,Mwagne,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11600,5173,Ghana,Africa Rainforest Study,2001,For storage only,28,Nini-Suhien,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11601,5173,Ghana,RAPPAM,2002,For storage only,28,Nini-Suhien,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11602,5173,Ghana,METT,2003,For storage only,28,Nini-Suhien,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11603,67970,Ghana,RAPPAM,2009,For storage only,28,Anlo-Keta lagoon complex,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11604,26463,Ghana,RAPPAM,2002,For storage only,28,Assin-Attandanso,Game Production Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11605,672,Ghana,Africa Rainforest Study,2001,For storage only,28,Bia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11606,5189,Ghana,METT,2009,For storage only,28,Bia National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11607,672,Ghana,Birdlife IBA,2001,For storage only,28,Bia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11608,5150,Ghana,Birdlife IBA,2001,For storage only,28,Bia,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11609,40813,Ghana,Birdlife IBA,2001,For storage only,28,Bia Trributaries South,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11610,26460,Ghana,Africa Rainforest Study,2001,For storage only,28,Kakum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11611,26460,Ghana,RAPPAM,2002,For storage only,28,Kakum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11612,26460,Ghana,METT,2003,For storage only,28,Kakum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11613,67970,Ghana,Birdlife IBA,2001,For storage only,28,Anlo-Keta lagoon complex,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11614,40815,Ghana,METT,2009,For storage only,28,Krokosua Hills,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11615,68788,Ghana,METT,2003,For storage only,28,Kyabobo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11616,68788,Ghana,RAPPAM,2002,For storage only,28,Kyabobo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11618,67968,Ghana,RAPPAM,2009,For storage only,28,Sakumo Lagoon,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11619,67969,Ghana,RAPPAM,2009,For storage only,28,Songor Lagoon,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11620,3214,Gambia,RAPPAM,2009,For storage only,28,Abuko,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11621,31330,Gambia,Birdlife IBA,2001,For storage only,28,Baobolon Wetland Reserve,Wetland Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11622,145529,Gambia,Birdlife IBA,2001,For storage only,28,Baobolon Wetland Reserve,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11623,31330,Gambia,RAPPAM,2009,For storage only,28,Baobolon Wetland Reserve,Wetland Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11624,555547522,Gambia,RAPPAM,2009,For storage only,28,Gunjur (Bolonfenyo),Community Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11625,2289,Gambia,RAPPAM,2009,For storage only,28,Kiang West,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11626,2289,Gambia,METT,2010,For storage only,28,Kiang West,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11627,2289,Gambia,METT,2011,For storage only,28,Kiang West,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11628,2290,Gambia,RAPPAM,2009,For storage only,28,Niumi National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11630,2288,Gambia,RAPPAM,2009,For storage only,28,River Gambia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11631,903024,Gambia,RAPPAM,2009,For storage only,28,Tanbi Wetland Complex,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11632,62085,Gambia,RAPPAM,2009,For storage only,28,Tanji,Bird Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11633,62085,Gambia,METT,2010,For storage only,28,Tanji,Bird Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11634,62085,Gambia,METT,2011,For storage only,28,Tanji,Bird Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11635,67909,Greenland,Birdlife IBA,2013,For storage only,28,Heden (Jameson Land),"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11636,342670,Guinea-Bissau,METT,2009,For storage only,28,Boé,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11637,33046,Guinea-Bissau,Marine Tracking Tool,2004,For storage only,28,Rio Cacheu Mangroves,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11638,33046,Guinea-Bissau,RAPPAM,2009,For storage only,28,Rio Cacheu Mangroves,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11639,33046,Guinea-Bissau,RAPPAM,2007,For storage only,28,Rio Cacheu Mangroves,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11640,351088,Guinea-Bissau,Marine Tracking Tool,2004,For storage only,28,Cantanhez Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11641,33050,Guinea-Bissau,METT,2009,For storage only,28,Dulombi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11642,33047,Guinea-Bissau,METT,2006,For storage only,28,Orango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11643,317052,Guinea-Bissau,Marine Tracking Tool,2004,For storage only,28,João Vieira and Poilão Marine National Park,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11644,317052,Guinea-Bissau,METT,2004,For storage only,28,João Vieira and Poilão Marine National Park,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11645,317052,Guinea-Bissau,METT,2006,For storage only,28,João Vieira and Poilão Marine National Park,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11646,317052,Guinea-Bissau,RAPPAM,2009,For storage only,28,João Vieira and Poilão Marine National Park,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11647,317052,Guinea-Bissau,RAPPAM,2007,For storage only,28,João Vieira and Poilão Marine National Park,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11648,33048,Guinea-Bissau,Birdlife IBA,2001,For storage only,28,Lagoas de Cufada,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11649,33048,Guinea-Bissau,Marine Tracking Tool,2004,For storage only,28,Lagoas de Cufada,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11650,33048,Guinea-Bissau,METT,2004,For storage only,28,Lagoas de Cufada,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11651,33048,Guinea-Bissau,METT,2005,For storage only,28,Lagoas de Cufada,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11652,33048,Guinea-Bissau,METT,2006,For storage only,28,Lagoas de Cufada,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11653,33048,Guinea-Bissau,RAPPAM,2007,For storage only,28,Lagoas de Cufada,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11654,351088,Guinea-Bissau,METT,2004,For storage only,28,Cantanhez Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11655,351088,Guinea-Bissau,METT,2005,For storage only,28,Cantanhez Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11656,351088,Guinea-Bissau,METT,2006,For storage only,28,Cantanhez Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11657,351088,Guinea-Bissau,RAPPAM,2007,For storage only,28,Cantanhez Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11658,33047,Guinea-Bissau,Marine Tracking Tool,2004,For storage only,28,Orango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11659,33047,Guinea-Bissau,METT,2004,For storage only,28,Orango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11660,33047,Guinea-Bissau,METT,2005,For storage only,28,Orango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11661,33047,Guinea-Bissau,RAPPAM,2007,For storage only,28,Orango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11662,33047,Guinea-Bissau,RAPPAM,2009,For storage only,28,Orango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11663,33047,Guinea-Bissau,METT,2007,For storage only,28,Orango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11664,351088,Guinea-Bissau,METT,2010,For storage only,28,Cantanhez Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11665,33047,Guinea-Bissau,METT,2010,For storage only,28,Orango,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11666,317052,Guinea-Bissau,METT,2010,For storage only,28,João Vieira and Poilão Marine National Park,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11667,33048,Guinea-Bissau,METT,2010,For storage only,28,Lagoas de Cufada,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11668,33046,Guinea-Bissau,METT,2010,For storage only,28,Rio Cacheu Mangroves,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11669,342672,Guinea-Bissau,METT,2009,For storage only,28,Salifo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11670,33046,Guinea-Bissau,METT,2004,For storage only,28,Rio Cacheu Mangroves,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11671,33046,Guinea-Bissau,METT,2005,For storage only,28,Rio Cacheu Mangroves,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11672,33046,Guinea-Bissau,METT,2006,For storage only,28,Rio Cacheu Mangroves,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11673,342655,Guinea-Bissau,RAPPAM,2009,For storage only,28,"Ilhas Formosa , Nago & Tchediã (Urok)",Marine Community Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11674,388667,French Guiana,METT,0,For storage only,28,Guyane (parc amazonien),National Park - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11675,555514403,French Guiana,METT,2005,For storage only,28,Trésor,Regional Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11676,555539885,Ireland,Birdlife IBA,2000,For storage only,28,Blackwater Estuary SPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11677,555527921,Ireland,Birdlife IBA,2013,For storage only,28,Boyne Coast and Estuary SAC,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11678,555539931,Ireland,Birdlife IBA,2013,For storage only,28,Boyne Estuary SPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11679,555527720,Ireland,Birdlife IBA,2000,For storage only,28,Castlemaine Harbour SAC,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11680,555527760,Ireland,Birdlife IBA,2009,For storage only,28,Inishkea Islands SAC,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11681,555539863,Ireland,Birdlife IBA,2009,For storage only,28,Inishkea Islands SPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11682,555527668,Ireland,Birdlife IBA,2009,For storage only,28,Inishtrahull SAC,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11683,555577755,Ireland,Birdlife IBA,2009,For storage only,28,Inishtrahull SPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11684,555527651,Ireland,Birdlife IBA,2009,For storage only,28,Clonakilty Bay SAC,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11685,555539932,Ireland,Birdlife IBA,2009,For storage only,28,Clonakilty Bay SPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11686,555527685,Ireland,Birdlife IBA,2013,For storage only,28,Lambay Island SAC,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11687,555539922,Ireland,Birdlife IBA,2013,For storage only,28,Lambay Island SPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11688,555527713,Ireland,Birdlife IBA,2000,For storage only,28,Rahasane Turlough SAC,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11689,555539939,Ireland,Birdlife IBA,2000,For storage only,28,Rahasane Turlough SPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11690,555539858,Ireland,Birdlife IBA,2013,For storage only,28,River Shannon Callows SAC,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11691,555539946,Ireland,Birdlife IBA,2013,For storage only,28,Middle Shannon Callows SPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11692,555539924,Ireland,Birdlife IBA,2000,For storage only,28,Tory Island SPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -11693,903064,Iraq,Birdlife IBA,2013,For storage only,28,Hawizeh Marsh (Haur Al-Hawizeh),"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11694,68003,Iceland,Birdlife IBA,2013,For storage only,28,Myvatn-Laxá region,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11695,903139,Iceland,WHA Outlook Report,2014,For storage only,28,Surtsey,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11696,178867,Italy,METT,2003,For storage only,28,Riserva naturale guidata Abetina di Rosello,Regional/Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11697,719,Italy,European Diploma,1967,For storage only,28,"Parco nazionale Abruzzo, Lazio e Molise",National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11698,1978,Italy,National PAME Assessment,0,For storage only,28,Parco nazionale del Circeo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11699,31169,Italy,METT,2003,For storage only,28,Riserva naturale Cratere degli Astroni,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11700,15301,Italy,METT,2003,For storage only,28,Parco regionale Diecimare,Regional/Provincial Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11701,718,Italy,European Diploma,2006,For storage only,28,Parco nazionale del Gran Paradiso,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11702,178894,Italy,METT,2003,For storage only,28,Oasi naturale di Guardiaregia - Campochiaro,Other Protected Natural Regional Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11703,13172,Italy,MPA MEE,2009,For storage only,28,Area marina protetta Isole Ciclopi,Natural Marine Reserve and Natural Protected Marine Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11704,900008,Italy,WHA Outlook Report,2014,For storage only,28,Isole Eolie (Aeolian Islands),World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11705,178992,Italy,METT,2003,For storage only,28,Oasi di Macchiagrande,Other Protected Natural Regional Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11706,64513,Italy,METT,2005,For storage only,28,Parco nazionale della Maiella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11707,64513,Italy,PANPARKS,2005,For storage only,28,Parco nazionale della Maiella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11708,64513,Italy,PANPARKS,2006,For storage only,28,Parco nazionale della Maiella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11709,64513,Italy,PANPARKS,2007,For storage only,28,Parco nazionale della Maiella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11710,26609,Italy,European Diploma,1992,For storage only,28,Parco naturale della Maremma,Regional/Provincial Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11711,6022,Italy,European Diploma,1993,For storage only,28,Parco naturale delle Alpi Marittime,Regional/Provincial Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11712,6006,Italy,European Diploma,2005,For storage only,28,"Parco naturale di Migliarino, San Rossore e Massaciuccoli",Regional/Provincial Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11713,3033,Italy,GOBI Survey,2006,For storage only,28,Miramare,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11714,31209,Italy,METT,2003,For storage only,28,Riserva di Monte Arcosu,Other Protected Natural Regional Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11715,178942,Italy,METT,2003,For storage only,28,Oasi naturale del Monte Polveracchio,Other Protected Natural Regional Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11716,900879,Italy,WHA Outlook Report,2014,For storage only,28,Monte San Giorgio,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11717,31115,Italy,European Diploma,1988,For storage only,28,Riserva naturale Isola di Montecristo,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11718,555556047,Italy,WHA Outlook Report,2014,For storage only,28,Mount Etna,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11720,13176,Italy,MPA MEE,2009,For storage only,28,Area marina protetta Penisola del Sinis - Isola Mal di Ventre,Natural Marine Reserve and Natural Protected Marine Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11721,31100,Italy,European Diploma,1985,For storage only,28,Riserva naturale Sasso Fratino,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11722,20721,Italy,MPA MEE,2009,For storage only,28,Area naturale marina protetta Secche di Tor Paterno,Natural Marine Reserve and Natural Protected Marine Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11723,902541,Italy,GOBI Survey,2006,For storage only,28,Selva Pisana,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11724,902541,Italy,Stockholm BR Survey,2008,For storage only,28,Selva Pisana,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11725,478641,Italy,WHA Outlook Report,2014,For storage only,28,The Dolomites,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11726,15263,Italy,MPA MEE,2009,For storage only,28,Riserva naturale marina Torre Guaceto,Natural Marine Reserve and Natural Protected Marine Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11727,168201,Jordan,GOBI Survey,2006,For storage only,28,Dana Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11728,30697,Jordan,METT,2005,For storage only,28,Dibeen Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11729,30697,Jordan,METT,2007,For storage only,28,Dibeen Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11730,30697,Jordan,METT,2006,For storage only,28,Dibeen Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11731,30697,Jordan,METT,2012,For storage only,28,Dibeen Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11732,30694,Jordan,METT,2006,For storage only,28,Fifa Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11733,30694,Jordan,METT,2011,For storage only,28,Fifa Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11734,17232,Jordan,METT,2006,For storage only,28,Mujib Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11735,17232,Jordan,METT,2007,For storage only,28,Mujib Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11736,313089,Jordan,METT,2006,For storage only,28,Qatar Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11737,313089,Jordan,METT,2011,For storage only,28,Qatar Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11738,17232,Jordan,Birdlife IBA,2013,For storage only,28,Mujib Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11739,555542337,Jordan,WHA Outlook Report,2014,For storage only,28,Wadi Rum Protected Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11740,313091,Jordan,METT,2006,For storage only,28,Yarmouk Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11741,313091,Jordan,METT,2011,For storage only,28,Yarmouk Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11742,313091,Jordan,METT,0,For storage only,28,Yarmouk Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11743,1671,Kazakhstan,METT,2007,For storage only,28,Aksu-Dzhabagly,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11744,1669,Kazakhstan,Birdlife IBA,2006,For storage only,28,Alma-Atinskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11745,100017,Kazakhstan,Birdlife IBA,2005,For storage only,28,Altun Emel,National Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11746,1673,Kazakhstan,METT,2012,For storage only,28,Barsakel'messkiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11747,62641,Kazakhstan,METT,2009,For storage only,28,Bayanayl'skiy,National Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11748,100018,Kazakhstan,METT,2011,For storage only,28,Ele Alatau,National Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11749,100018,Kazakhstan,METT,2006,For storage only,28,Ele Alatau,National Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11750,100018,Kazakhstan,METT,2009,For storage only,28,Ele Alatau,National Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11751,17722,Kazakhstan,Birdlife IBA,2004,For storage only,28,Lakes of the lower Turgay & Irgiz,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11752,62625,Kazakhstan,Birdlife IBA,2004,For storage only,28,Turgaiskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -11753,17722,Kazakhstan,METT,2011,For storage only,28,Lakes of the lower Turgay & Irgiz,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11754,342652,Kazakhstan,Birdlife IBA,2006,For storage only,28,Mangyshlakskiy,Experimental Botanical Garden,"GD-PAME, version pre-2017",Not Reported,2018,English -11755,1668,Kazakhstan,Birdlife IBA,2006,For storage only,28,Kurgal'dzhinskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11756,17721,Kazakhstan,Birdlife IBA,2006,For storage only,28,Tengiz-Korgalzhyn Lake System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11757,903137,Kazakhstan,Birdlife IBA,2006,For storage only,28,Saryarka ÔÇô Steppe and Lakes of Northern Kazakhstan,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11758,478024,Kazakhstan,Birdlife IBA,2007,For storage only,28,Koibagar-Tyuntyugur Lake System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11759,1672,Kazakhstan,METT,2008,For storage only,28,Markakol'skiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11760,1672,Kazakhstan,Birdlife IBA,2006,For storage only,28,Markakol'skiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11761,1672,Kazakhstan,METT,2011,For storage only,28,Markakol'skiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11762,1670,Kazakhstan,METT,2003,For storage only,28,Naurzumskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11763,478036,Kazakhstan,Birdlife IBA,2004,For storage only,28,Naurzum Lake System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11764,903137,Kazakhstan,WHA Outlook Report,2014,For storage only,28,Saryarka ÔÇô Steppe and Lakes of Northern Kazakhstan,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11765,100017,Kazakhstan,METT,2012,For storage only,28,Altun Emel,National Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11766,478037,Kazakhstan,METT,2007,For storage only,28,Zharsor-Urkash Lake System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11767,478037,Kazakhstan,METT,2008,For storage only,28,Zharsor-Urkash Lake System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11768,11827,Kazakhstan,METT,2012,For storage only,28,Ustyurtskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11769,478037,Kazakhstan,Birdlife IBA,2004,For storage only,28,Zharsor-Urkash Lake System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11770,758,Kenya,Birdlife IBA,1999,For storage only,28,Amboseli,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11771,7422,Kenya,METT,2005,For storage only,28,Arabuko Sokoke,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11772,7422,Kenya,METT,2006,For storage only,28,Arabuko Sokoke,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11773,7422,Kenya,Birdlife IBA,1999,For storage only,28,Arabuko Sokoke,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11774,2417,Kenya,METT,2007,For storage only,28,Boni,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11775,2417,Kenya,METT,2013,For storage only,28,Boni,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11776,7543,Kenya,METT,2006,For storage only,28,Buda,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11777,7543,Kenya,METT,2010,For storage only,28,Buda,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11778,7543,Kenya,METT,2012,For storage only,28,Buda,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11779,7543,Kenya,METT,2007,For storage only,28,Buda,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11780,478054,Kenya,METT,2006,For storage only,28,Kaya Chonyi,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11781,2591,Kenya,METT,2013,For storage only,28,Dodori,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11782,478058,Kenya,METT,2006,For storage only,28,Kaya Dzombo,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11783,7561,"Tanzania, United Republic of;Kenya",METT,2006,For storage only,28,Gonja,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11784,378055,Kenya,METT,2006,For storage only,28,Barnstedt-Melbecker Bach,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11785,33450,Kenya,METT,2005,For storage only,28,Kakamega,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11786,33450,Kenya,METT,2006,For storage only,28,Kakamega,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11787,33450,Kenya,METT,2009,For storage only,28,Kakamega,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11788,478056,Kenya,METT,2006,For storage only,28,Kaya Kambe,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11790,478056,Kenya,METT,2007,For storage only,28,Kaya Kambe,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11791,478056,Kenya,METT,2008,For storage only,28,Kaya Kambe,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11792,478054,Kenya,METT,2007,For storage only,28,Kaya Chonyi,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11793,478054,Kenya,METT,2008,For storage only,28,Kaya Chonyi,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11794,478058,Kenya,METT,2007,For storage only,28,Kaya Dzombo,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11795,7561,"Tanzania, United Republic of;Kenya",METT,2007,For storage only,28,Gonja,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11796,478055,Kenya,METT,2007,For storage only,28,Kaya Jibana,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11797,478055,Kenya,METT,2008,For storage only,28,Kaya Jibana,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11800,478057,Kenya,METT,2007,For storage only,28,Kaya Ribe,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11801,478057,Kenya,METT,2008,For storage only,28,Kaya Ribe,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11802,555542339,Kenya,WHA Outlook Report,2014,For storage only,28,Kenya Lake System in the Great Rift Valley,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11803,7602,Kenya,Birdlife IBA,1999,For storage only,28,Kikuyu Escarpment,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11804,763,Kenya,West Indian Ocean MPA,2003,For storage only,28,Kisite,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11805,3038,Kenya,West Indian Ocean MPA,2003,For storage only,28,Kiunga Marine Conservancy,Community Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11806,103549,Kenya,Birdlife IBA,1999,For storage only,28,Lake Naivasha,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11807,762,Kenya,Birdlife IBA,1999,For storage only,28,Lake Nakuru,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11808,68092,Kenya,Birdlife IBA,1999,For storage only,28,Lake Nakuru,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11809,145586,Kenya,WHA Outlook Report,2014,For storage only,28,Lake Turkana National Parks,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11810,765,Kenya,West Indian Ocean MPA,2003,For storage only,28,Mallindi,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11811,7644,Kenya,METT,2006,For storage only,28,Marenji,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11812,7644,Kenya,METT,2007,For storage only,28,Marenji,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11813,755,Kenya,Birdlife IBA,1999,For storage only,28,Meru,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11814,14013,Kenya,West Indian Ocean MPA,2003,For storage only,28,Mombasa,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11815,901249,Kenya,GOBI Survey,2006,For storage only,28,Mount Elgon,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11816,145585,Kenya,WHA Outlook Report,2014,For storage only,28,Mount Kenya National Park/Natural Forest,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11817,2085,Kenya,GOBI Survey,2006,For storage only,28,Mount Kulal Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11818,19568,Kenya,West Indian Ocean MPA,2003,For storage only,28,Mpunguti,Marine National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11819,7664,Kenya,METT,2006,For storage only,28,Mrima,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11820,7664,Kenya,METT,2007,For storage only,28,Mrima,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11821,7676,Kenya,METT,2006,For storage only,28,Mwachi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11822,7676,Kenya,METT,2007,For storage only,28,Mwachi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11823,2433,Kenya,Birdlife IBA,1999,For storage only,28,Mwea,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11824,761,Kenya,Birdlife IBA,1999,For storage only,28,Nairobi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11825,378057,Kenya,METT,2006,For storage only,28,Bergbaufolgelandschaft Gr├╝nhaus,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11826,2427,Kenya,Birdlife IBA,1999,For storage only,28,Shaba,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11827,759,Kenya,METT,2004,For storage only,28,Shimba Hills,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11828,759,Kenya,METT,2006,For storage only,28,Shimba Hills,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11830,2299,Kenya,METT,2006,For storage only,28,Tana River Primate,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11832,2299,Kenya,METT,2007,For storage only,28,Tana River Primate,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11834,752,Kenya,Birdlife IBA,1999,For storage only,28,Tsavo East,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11835,19564,Kenya,Birdlife IBA,1999,For storage only,28,Tsavo West,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11836,19566,Kenya,West Indian Ocean MPA,2003,For storage only,28,Watamu,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11837,7744,Kenya,METT,2006,For storage only,28,Witu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11838,7744,Kenya,METT,2007,For storage only,28,Witu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11839,167076,Kyrgyzstan,Birdlife IBA,2006,For storage only,28,Chatyrkul,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -11840,902830,Kyrgyzstan,Birdlife IBA,2006,For storage only,28,Chatyr Kul,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11841,167118,Kyrgyzstan,METT,2013,For storage only,28,Sarychat-Ertash NR,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11842,167122,Kyrgyzstan,Birdlife IBA,2006,For storage only,28,Sonkul,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -11843,555542701,Kyrgyzstan,Birdlife IBA,2006,For storage only,28,Son-Kol Lake,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11844,313446,Cambodia,Birdlife IBA,2007,For storage only,28,Ang Trapeng Thmor,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -11845,2351,Cambodia,RAPPAM,2004,For storage only,28,Angkor Wat,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -11846,68870,Cambodia,RAPPAM,2004,For storage only,28,Banteay Chhmar,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -11847,68867,Cambodia,RAPPAM,2004,For storage only,28,Beng Per,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11848,313448,Cambodia,RAPPAM,2004,For storage only,28,Boeng Tonle Chhmar,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11849,198314,Cambodia,METT,2010,For storage only,28,Boeng Chhmar and Associated River System and Floodplain,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11850,478395,Cambodia,Birdlife IBA,2007,For storage only,28,Trapeang Lpeou,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -11851,478405,Cambodia,RAPPAM,2004,For storage only,28,Botum Sakor,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11852,313445,Cambodia,Birdlife IBA,2005,For storage only,28,Central Cardamom Mountains,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -11853,68871,Cambodia,RAPPAM,2004,For storage only,28,Dong Peng,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11854,68857,Cambodia,RAPPAM,2004,For storage only,28,Kep,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11855,10193,Cambodia,RAPPAM,2004,For storage only,28,Kirirom,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11856,198315,Cambodia,RAPPAM,2004,For storage only,28,Koh Kapik and Associated Islets,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11857,61943,Cambodia,METT,2010,For storage only,28,Kulen Promtep,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11858,61943,Cambodia,METT,2006,For storage only,28,Kulen Promtep,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11859,61943,Cambodia,RAPPAM,2004,For storage only,28,Kulen Promtep,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11860,10121,Cambodia,RAPPAM,2004,For storage only,28,Lomphat,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11861,313449,Cambodia,Birdlife IBA,2007,For storage only,28,Stung Sen,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11862,313444,Cambodia,METT,2009,For storage only,28,Mondulkiri,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -11863,68864,Cambodia,RAPPAM,2004,For storage only,28,Peam Krasop,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11864,313447,Cambodia,RAPPAM,2004,For storage only,28,Phnom Aural,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11865,68856,Cambodia,Birdlife IBA,2006,For storage only,28,Preah Monivong (Bokor),National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11866,68861,Cambodia,RAPPAM,2004,For storage only,28,Phnom Kulen,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11867,68868,Cambodia,RAPPAM,2004,For storage only,28,Pnom Namlear,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11868,10120,Cambodia,METT,2003,For storage only,28,Phnom Prich,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11869,10120,Cambodia,METT,2009,For storage only,28,Phnom Prich,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11870,10120,Cambodia,RAPPAM,2004,For storage only,28,Phnom Prich,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11871,68865,Cambodia,Birdlife IBA,2005,For storage only,28,Phnom Samkos,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11872,68865,Cambodia,RAPPAM,2004,For storage only,28,Phnom Samkos,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11873,313443,Cambodia,METT,2010,For storage only,28,Preah Vihear,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -11874,313443,Cambodia,RAPPAM,2004,For storage only,28,Preah Vihear,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -11875,313450,Cambodia,METT,2009,For storage only,28,Prek Toal,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11876,313450,Cambodia,METT,2010,For storage only,28,Prek Toal,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11877,313450,Cambodia,RAPPAM,2004,For storage only,28,Prek Toal,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11878,313450,Cambodia,METT,2005,For storage only,28,Prek Toal,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11879,68859,Cambodia,RAPPAM,2004,For storage only,28,Ream,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11880,478401,Cambodia,RAPPAM,2004,For storage only,28,Roniem Daun Sam I,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11881,68872,Cambodia,RAPPAM,2004,For storage only,28,Samlaut,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11882,68869,Cambodia,RAPPAM,2004,For storage only,28,Snoul,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11883,313449,Cambodia,METT,2005,For storage only,28,Stung Sen,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11884,313449,Cambodia,METT,2009,For storage only,28,Stung Sen,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11885,313449,Cambodia,METT,2010,For storage only,28,Stung Sen,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11886,313449,Cambodia,RAPPAM,2004,For storage only,28,Stung Sen,Multiple Use Management Area - Core Area,"GD-PAME, version pre-2017",Not Reported,2018,English -11887,145807,Cambodia,GOBI Survey,2006,For storage only,28,Tonle Sap,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11890,68862,Cambodia,Asean MEE,2012,For storage only,28,Virachey,National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11891,68862,Cambodia,RAPPAM,2004,For storage only,28,Virachey,National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11892,4254,Kiribati,Birdlife IBA,2007,For storage only,28,Malden Island (Closed Area),Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -11893,555512002,Kiribati,WHA Outlook Report,2014,For storage only,28,Phoenix Islands Protected Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11894,220043,Lebanon,Birdlife IBA,1994,For storage only,28,Ammiq Wetlands,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11895,902497,Lebanon,GOBI Survey,2006,For storage only,28,Shouf,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11896,555576134,Lebanon,Birdlife IBA,1994,For storage only,28,Al Shouf Cedars Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11897,15060,Lebanon,METT,2007,For storage only,28,Arz Tannourine,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11898,15060,Lebanon,METT,2004,For storage only,28,Arz Tannourine,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11899,900006,South Africa;Lesotho,WHA Outlook Report,2014,For storage only,28,Maloti-Drakensberg Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11900,7447,Lesotho,METT,2005,For storage only,28,Sehlabathebe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11901,181880,Latvia,METT,2006,For storage only,28,Bernāti,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11902,146748,Latvia,METT,2006,For storage only,28,Ķemeru nacionālais parks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11903,95339,Sweden;Latvia,METT,2006,For storage only,28,Lake Engure,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11904,145808,Latvia,GOBI Survey,2006,For storage only,28,North Vidzeme,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11905,145808,Latvia,METT,2005,For storage only,28,North Vidzeme,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11906,145808,Latvia,METT,2008,For storage only,28,North Vidzeme,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11907,145808,Latvia,METT,2009,For storage only,28,North Vidzeme,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11908,145808,Latvia,Stockholm BR Survey,2008,For storage only,28,North Vidzeme,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11909,1679,Latvia,METT,2006,For storage only,28,Slīteres nacionālais parks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11910,1679,Latvia,METT,0,For storage only,28,Slīteres nacionālais parks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11911,172550,Latvia,METT,2006,For storage only,28,Užava,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11912,37069,Latvia,METT,2006,For storage only,28,Vidzemes akmeņainā jūrmala,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11913,902701,Morocco,Birdlife IBA,2001,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -11914,17713,Morocco,Birdlife IBA,2001,For storage only,28,Baie de Khnifiss,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11915,11689,Morocco,Birdlife IBA,2001,For storage only,28,Merja Zerga,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11916,555571315,Morocco,GOBI Survey,2006,For storage only,28,Réserve de Biosphère des Oasis du Sud Marocain,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11917,11697,Morocco,Birdlife IBA,2001,For storage only,28,Sous Massa National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11918,902705,Morocco,Birdlife IBA,2001,For storage only,28,Sidi Moussa Oualidia,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11919,97566,"Moldova, Republic of",METT,2010,For storage only,28,Codru,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11920,901300,"Moldova, Republic of",METT,2008,For storage only,28,Lower Dniester,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11921,901300,"Moldova, Republic of",METT,2011,For storage only,28,Lower Dniester,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11922,220067,"Moldova, Republic of",METT,2011,For storage only,28,Lower Prut Lakes,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11923,97653,"Moldova, Republic of",METT,2010,For storage only,28,Orhei Gorge,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -11924,97653,"Moldova, Republic of",METT,2013,For storage only,28,Orhei Gorge,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -11925,97570,"Moldova, Republic of",METT,2010,For storage only,28,Plaiul fagului,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11926,97566,"Moldova, Republic of",METT,2008,For storage only,28,Codru,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11927,97571,"Moldova, Republic of",METT,2008,For storage only,28,Padurca Domneasca,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11928,97570,"Moldova, Republic of",METT,2008,For storage only,28,Plaiul fagului,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11929,97569,"Moldova, Republic of",METT,2008,For storage only,28,Prutul de jos,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11930,97571,"Moldova, Republic of",METT,2011,For storage only,28,Padurca Domneasca,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11931,176309,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Arboretum,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11932,100037,"Macedonia, the former Yugoslav Republic of",METT,2011,For storage only,28,Matka Canyon,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11933,81080,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Cham Chiflik,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11934,176312,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,"Crna dudinka, Lesnovski Manastir",Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11935,176314,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,"Crni orevi, Demir Kapija",Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11936,176297,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Drenachka Reka,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11937,16443,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Klisura Demir Kapija,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11938,176319,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Duvalo (Kosel),Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11939,176293,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Ezerani,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11940,2516,"Macedonia, the former Yugoslav Republic of",METT,2007,For storage only,28,Galichica,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -11941,176298,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Garska Reka,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11942,176320,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Gladnica,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11943,176300,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Iberliska Reka,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11944,81083,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Kale Banjicko,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11945,81085,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Kalnica,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11946,100037,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Matka Canyon,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11948,81086,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Karaslari,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11949,176323,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Karshi Bavchi,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11950,63656,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Katlanovski predel,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11951,16435,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Katlanovsko Blato,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11952,176324,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Koleshinski Vodopad,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11953,176325,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Konche,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11954,176295,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Kozle,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11955,176328,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,"Makedonski dab, s.Trpejca, Ohrid",Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11956,176329,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,"Manastir, Mariovo",Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11957,15603,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Markovi Kuli,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -11958,1050,"Macedonia, the former Yugoslav Republic of",METT,2007,For storage only,28,Mavrovo,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11959,176332,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Morodvis,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11960,176333,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Murite,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11961,2015,"Macedonia, the former Yugoslav Republic of",WHA Outlook Report,2014,For storage only,28,Natural and Cultural Heritage of the Ohrid region,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11962,16437,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Ohridsko Ezero,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11963,176334,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Orashac,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11964,176335,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,"Ostrovo, Gazi Baba",Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11965,176322,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Gorna Slatinska Peshtera,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11966,176337,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Peshtera Mlechnik,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11967,176338,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Peshtera Ubavica,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11968,176343,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,"Platan, Tetovo",Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11969,176304,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Popova Shapka,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11970,127887,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Lake Prespa,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11971,81084,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Prevalec,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11972,176347,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Rechica,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11973,176348,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Beleshnicka Reka,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11974,176352,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,"Stebla od platan, Star Dojran",Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11975,176307,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Suvi Dol,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11976,176294,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Tikvesh,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11977,16436,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Vodno,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11978,176359,"Macedonia, the former Yugoslav Republic of",METT,0,For storage only,28,Zvegor,Designated area not yet reviewed,"GD-PAME, version pre-2017",Not Reported,2018,English -11979,4326,Montenegro,RAPPAM,2009,For storage only,28,Durmitor National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11980,4326,Montenegro,METT,2009,For storage only,28,Durmitor National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11981,4326,Montenegro,METT,2012,For storage only,28,Durmitor National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11982,4326,Montenegro,WHA Outlook Report,2014,For storage only,28,Durmitor National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -11987,99844,Mongolia,RAPPAM,2005,For storage only,28,Altai Tavan range,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -11988,99844,Mongolia,METT,2005,For storage only,28,Altai Tavan range,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -11989,99844,Mongolia,METT,2012,For storage only,28,Altai Tavan range,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -11990,1307,Mongolia,RAPPAM,2005,For storage only,28,Bogdkhan mountain,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11991,166794,Mongolia,METT,2013,For storage only,28,Toson Hulslai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11992,902268,Mongolia,RAPPAM,2005,For storage only,28,Lake Ganga and its surrounding wetlands,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -11993,313184,Mongolia,METT,2005,For storage only,28,Develiin aral,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11994,313184,Mongolia,METT,2012,For storage only,28,Develiin aral,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11995,902508,Mongolia,RAPPAM,2005,For storage only,28,Dornod Mongol,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -11996,93580,Mongolia,RAPPAM,2005,For storage only,28,Gobi Gurvansaikhan range,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -11997,93582,Mongolia,RAPPAM,2005,For storage only,28,Gorkhi - Terelj,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -11998,798,Mongolia,RAPPAM,2005,For storage only,28,Great Gobi,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -11999,99848,Mongolia,METT,2013,For storage only,28,Ikh nart,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12000,93533,Mongolia,METT,2012,For storage only,28,Khan Khentii,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12001,93533,Mongolia,RAPPAM,2005,For storage only,28,Khan Khentii,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12002,145566,Mongolia,RAPPAM,2005,For storage only,28,Khan Khukhii-Khyragas Lake,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12003,166791,Mongolia,METT,2005,For storage only,28,Har Us Nuur,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12004,166791,Mongolia,RAPPAM,2005,For storage only,28,Har Us Nuur,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12005,166791,Mongolia,METT,2012,For storage only,28,Har Us Nuur,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12006,11745,Mongolia,METT,2012,For storage only,28,Khasagt Khairkhan mountain,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12007,11745,Mongolia,RAPPAM,2005,For storage only,28,Khasagt Khairkhan mountain,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12008,11746,Mongolia,RAPPAM,2005,For storage only,28,Khorgo Terkh Zagaan nuur,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12009,166790,Mongolia,RAPPAM,2005,For storage only,28,Khoridol Saridag,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12010,555576523,Mongolia,RAPPAM,2005,For storage only,28,Xugnu Tarna,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12011,93536,Mongolia,METT,2012,For storage only,28,Khukh Serkhyn range,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12012,93579,Mongolia,RAPPAM,2005,For storage only,28,Khuvsgul,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12013,93538,Mongolia,RAPPAM,2005,For storage only,28,Mongol Daguur,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12014,555576544,Mongolia,RAPPAM,2005,For storage only,28,Myangan-Ugalzat,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12015,99848,Mongolia,METT,0,For storage only,28,Ikh nart,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12016,166792,Mongolia,RAPPAM,2005,For storage only,28,Noyon Khangai,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12017,93518,Mongolia,RAPPAM,2005,For storage only,28,Numrug,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12018,313186,Mongolia,METT,2012,For storage only,28,Onon - Balj /A/,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12019,62548,Mongolia,RAPPAM,2005,For storage only,28,Onon - Balj river /B/,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12020,93541,Mongolia,RAPPAM,2005,For storage only,28,Otgontenger mountain,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12021,313187,Mongolia,METT,2005,For storage only,28,"Siilxem nuruu /A/, /B/",National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12022,124309,Mongolia,RAPPAM,2005,For storage only,28,"Gobiin baga /A/, /B/",Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12023,313188,Mongolia,RAPPAM,2005,For storage only,28,Tarvagatai nuruu,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12024,313189,Mongolia,METT,2012,For storage only,28,Cambagarav mountain,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12025,313189,Mongolia,METT,2005,For storage only,28,Cambagarav mountain,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12026,313189,Mongolia,RAPPAM,2005,For storage only,28,Cambagarav mountain,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12027,555576529,Mongolia,RAPPAM,2005,For storage only,28,Tujiin Nars,National Conservation Parks,"GD-PAME, version pre-2017",Not Reported,2018,English -12028,93566,Mongolia,METT,2005,For storage only,28,Altan Els,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12029,93566,Mongolia,RAPPAM,2005,For storage only,28,Altan Els,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12030,93566,Mongolia,METT,2012,For storage only,28,Altan Els,Strictly Protected Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -12031,900880,Russian Federation;Mongolia,WHA Outlook Report,2014,For storage only,28,Uvs Nuur Basin,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12032,307735,Northern Mariana Islands,MPA MEE,2003,For storage only,28,Bird Island,Scenic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12033,555586443,Northern Mariana Islands,Birdlife IBA,2007,For storage only,28,Guguan Island,Preserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12034,4245,Northern Mariana Islands,Birdlife IBA,2007,For storage only,28,Maug Island,Preserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12035,111111,Mali;Guinea;Chad;Mauritania;Egypt;Cameroon,RAPPAM,2007,For storage only,28,Hideaway Islands,Research Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12036,797,Mauritania,MPA MEE,2003,For storage only,28,Banc d'Arguin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12037,797,Mauritania,RAPPAM,2009,For storage only,28,Banc d'Arguin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12038,797,Mauritania,RAPPAM,2007,For storage only,28,Banc d'Arguin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12040,797,Mauritania,Birdlife IBA,2001,For storage only,28,Banc d'Arguin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12041,17726,Mauritania,Birdlife IBA,2001,For storage only,28,Banc dÔÇÖArguin,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12042,20388,Mauritania,Birdlife IBA,2001,For storage only,28,Banc d'Arguin National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12043,20388,Mauritania,WHA Outlook Report,2014,For storage only,28,Banc d'Arguin National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12044,5174,Mauritania,METT,0,For storage only,28,Cap Blanc,Satellite Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12045,5174,Mauritania,RAPPAM,2007,For storage only,28,Cap Blanc,Satellite Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12046,5174,Mauritania,RAPPAM,2009,For storage only,28,Cap Blanc,Satellite Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12047,900595,Mauritania,Birdlife IBA,2001,For storage only,28,Chat Tboul,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12048,902500,Mauritania,GOBI Survey,2006,For storage only,28,Delta du Fleuve Sénégal (Mauritania),UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12049,9310,Mauritania,METT,2007,For storage only,28,Diawling,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12050,9310,Mauritania,RAPPAM,2007,For storage only,28,Diawling,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12051,9310,Mauritania,RAPPAM,2009,For storage only,28,Diawling,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12054,797,Mauritania,Enhancing Our Heritage,2009,For storage only,28,Banc d'Arguin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12055,39872,Mauritius,METT,2009,For storage only,28,Black River Gorges,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12056,5049,Mauritius,METT,2009,For storage only,28,Bois Sec,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12057,555571180,Mauritius,METT,2009,For storage only,28,Bras D'Eau National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12059,5045,Mauritius,METT,2009,For storage only,28,Cabinet Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12061,5048,Mauritius,METT,2009,For storage only,28,Gouly Pere,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12062,5054,Mauritius,METT,2009,For storage only,28,Ile aux Aigrettes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12063,555571172,Mauritius,METT,2009,For storage only,28,Ile D'Ambre,Islet National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12064,5050,Mauritius,METT,2009,For storage only,28,Ilot Gabriel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12066,555571168,Mauritius,METT,2009,For storage only,28,Les Mares,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12071,5042,Mauritius,METT,2009,For storage only,28,Perrier,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12072,900596,Mauritius,METT,2009,For storage only,28,Rivulet Terre Rouge Estuary Bird Sanctuary,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12073,1305,Mauritius,METT,2009,For storage only,28,Ile Ronde (Round Island),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12074,9152,Mauritius,METT,2009,For storage only,28,Ile aux Serpents,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12075,8785,Namibia,METT,2011,For storage only,28,Ai-Ais Hot Springs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12076,8785,Namibia,METT,2004,For storage only,28,Ai-Ais Hot Springs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12077,8785,Namibia,METT,2009,For storage only,28,Ai-Ais Hot Springs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12078,303692,Namibia,METT,2004,For storage only,28,Bwabwata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12079,303692,Namibia,METT,2009,For storage only,28,Bwabwata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12081,303692,Namibia,METT,0,For storage only,28,Bwabwata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12082,1361,Namibia,METT,2005,For storage only,28,Cape Cross Seal Reserve,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12083,1362,Namibia,METT,2005,For storage only,28,Daan Viljoen Game Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12084,1362,Namibia,METT,2009,For storage only,28,Daan Viljoen Game Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12085,1362,Namibia,METT,2010,For storage only,28,Daan Viljoen Game Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12087,884,Namibia,Birdlife IBA,2001,For storage only,28,Etosha,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12088,95356,Namibia,Birdlife IBA,2001,For storage only,28,"Etosha Pan, Lake Oponono & Cuvelai drainage","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12089,883,Namibia,METT,2010,For storage only,28,Namib-Naukluft,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12090,18005,Namibia,METT,2004,For storage only,28,Hardap Recreation Resort,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12091,17999,Namibia,METT,2004,For storage only,28,Khaudum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12092,30052,Namibia,METT,2004,For storage only,28,Nkasa Rupara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12093,30052,Namibia,METT,2009,For storage only,28,Nkasa Rupara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12094,30052,Namibia,METT,2011,For storage only,28,Nkasa Rupara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12095,30051,Namibia,METT,2004,For storage only,28,Mudumu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12096,30051,Namibia,METT,2009,For storage only,28,Mudumu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12097,30051,Namibia,METT,0,For storage only,28,Mudumu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12098,30051,Namibia,METT,2010,For storage only,28,Mudumu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12099,30051,Namibia,METT,2011,For storage only,28,Mudumu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12100,883,Namibia,METT,2009,For storage only,28,Namib-Naukluft,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12101,555556048,Namibia,WHA Outlook Report,2014,For storage only,28,Namib Sand Sea,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12102,883,Namibia,Birdlife IBA,2013,For storage only,28,Namib-Naukluft,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12103,555556048,Namibia,Birdlife IBA,2013,For storage only,28,Namib Sand Sea,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12104,883,Namibia,METT,2004,For storage only,28,Namib-Naukluft,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12106,30048,Namibia,METT,2004,For storage only,28,Naute Recreation Resort,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12107,95354,Namibia,Birdlife IBA,2001,For storage only,28,Sandwich Harbour,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12108,885,Namibia,METT,2004,For storage only,28,Skeleton Coast Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12109,885,Namibia,METT,2011,For storage only,28,Skeleton Coast Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12110,885,Namibia,METT,2009,For storage only,28,Skeleton Coast Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12111,303691,Namibia,Birdlife IBA,2001,For storage only,28,Tsau // Khaeb (Sperrgebiet),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12112,303691,Namibia,METT,2004,For storage only,28,Tsau // Khaeb (Sperrgebiet),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12113,303691,Namibia,METT,2009,For storage only,28,Tsau // Khaeb (Sperrgebiet),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12114,303691,Namibia,METT,2011,For storage only,28,Tsau // Khaeb (Sperrgebiet),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12115,18004,Namibia,METT,2005,For storage only,28,Von Bach Recreation Resort,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12116,887,Namibia,METT,2009,For storage only,28,Waterberg Plateau Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12117,887,Namibia,METT,2011,For storage only,28,Waterberg Plateau Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12118,67727,Niger,WHA Outlook Report,2014,For storage only,28,Aïr and Ténéré Natural Reserves,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12119,145581,Niger,GOBI Survey,2006,For storage only,28,Air and Ténéré,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12120,67727,Niger,RAPPAM,2010,For storage only,28,Aïr and Ténéré Natural Reserves,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12121,67727,Niger,RAPPAM,2009,For storage only,28,Aïr and Ténéré Natural Reserves,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12122,11652,Niger,RAPPAM,2010,For storage only,28,Réserve partielle de faune de Dosso,Partial Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12123,900599,Niger,METT,2013,For storage only,28,Lac Tchad,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12124,3230,Niger,RAPPAM,2010,For storage only,28,Réserve de faune de Gadabedji,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12125,9024,Niger,Birdlife IBA,2001,For storage only,28,Réserve Nationale naturelle de l'Aïr et du Ténéré,National Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12126,67727,Niger,Birdlife IBA,2001,For storage only,28,Aïr and Ténéré Natural Reserves,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12127,818,Niger,RAPPAM,2009,For storage only,28,Parc W Niger,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12128,818,Niger,RAPPAM,2010,For storage only,28,Parc W Niger,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12129,17367,Niger,METT,2013,For storage only,28,Réserve Naturelle et Culturelle de Termit-Tintoumma,National Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12130,2331,Niger,RAPPAM,2010,For storage only,28,Réserve totale de faune de Tamou,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12131,124385,Niger,Enhancing Our Heritage,2009,For storage only,28,W-Arly-Pendjari Complex,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12132,124385,Niger,WHA Outlook Report,2014,For storage only,28,W-Arly-Pendjari Complex,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12133,145510,Niger,GOBI Survey,2006,For storage only,28,W Region,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12134,302135,Nicaragua,METT,2013,For storage only,28,Apacunca,Genetic Resources Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12136,145584,Nicaragua,GOBI Survey,2006,For storage only,28,Bosawas,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12138,145584,Nicaragua,PIP Site Consolidation,2002,For storage only,28,Bosawas,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12139,145584,Nicaragua,PIP Site Consolidation,2003,For storage only,28,Bosawas,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12140,145584,Nicaragua,PIP Site Consolidation,2004,For storage only,28,Bosawas,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12141,145584,Nicaragua,PIP Site Consolidation,2005,For storage only,28,Bosawas,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12142,145584,Nicaragua,METT,2005,For storage only,28,Bosawas,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12143,107231,Nicaragua,METT,2012,For storage only,28,Cañon de Somoto,National Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12144,107231,Nicaragua,METT,2013,For storage only,28,Cañon de Somoto,National Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12145,61046,Nicaragua,METT,2012,For storage only,28,Laguna de Asososca,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12146,61054,Nicaragua,METT,2012,For storage only,28,Cerro El Arenal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12147,61056,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Cerro Apante,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12148,61056,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Cerro Apante,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12149,61054,Nicaragua,METT,2013,For storage only,28,Cerro El Arenal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12150,61054,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Cerro El Arenal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12151,61054,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Cerro El Arenal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12152,302131,Nicaragua,METT,2012,For storage only,28,Cerro Datanli El Diablo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12153,302131,Nicaragua,METT,2013,For storage only,28,Cerro Datanli El Diablo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12154,61055,Nicaragua,METT,2012,For storage only,28,Fila Cerro Frío La Cumplida,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12155,61055,Nicaragua,METT,2013,For storage only,28,Fila Cerro Frío La Cumplida,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12156,12662,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Cerro Musun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12157,12662,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Cerro Musun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12158,61053,Nicaragua,METT,2012,For storage only,28,Volcán Yalí,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12159,107232,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Chocoyero El Brujo,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12160,107232,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Chocoyero El Brujo,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12161,61044,Nicaragua,METT,2012,For storage only,28,Complejo Volcánico Pilas El Hoyo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12162,61044,Nicaragua,METT,2013,For storage only,28,Complejo Volcánico Pilas El Hoyo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12163,12657,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Coordillera Dipilto y Jalapa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12164,12657,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Coordillera Dipilto y Jalapa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12165,302131,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Cerro Datanli El Diablo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12166,302131,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Cerro Datanli El Diablo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12167,30633,Nicaragua,METT,2012,For storage only,28,Estero Padre Ramos,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12168,30633,Nicaragua,METT,2013,For storage only,28,Estero Padre Ramos,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12169,30633,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Estero Padre Ramos,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12170,30633,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Estero Padre Ramos,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12171,12652,Nicaragua,METT,2012,For storage only,28,Estero Real,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12172,12652,Nicaragua,METT,2013,For storage only,28,Estero Real,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12173,30632,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Fortaleza la Inmaculada Concepción de María.,Historical Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12174,30632,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Fortaleza la Inmaculada Concepción de María.,Historical Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12175,30628,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Indio Maiz,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12176,30628,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Indio Maiz,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12177,34672,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Isla Juan Venado,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12178,34672,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Isla Juan Venado,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12179,302129,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,La Flor,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12180,30630,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Los Guatuzos,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12181,30630,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Los Guatuzos,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12182,168212,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Miraflor/Moropotente,Landscape and/or Marine Protected,"GD-PAME, version pre-2017",Not Reported,2018,English -12183,168212,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Miraflor/Moropotente,Landscape and/or Marine Protected,"GD-PAME, version pre-2017",Not Reported,2018,English -12184,61050,Nicaragua,METT,2012,For storage only,28,Cerro Quiabuc Las Brisas,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12185,61050,Nicaragua,METT,2013,For storage only,28,Cerro Quiabuc Las Brisas,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12186,145584,Nicaragua,METT,2010,For storage only,28,Bosawas,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12187,302135,Nicaragua,METT,2012,For storage only,28,Apacunca,Genetic Resources Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12188,12658,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Río Escalante Chacocente,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12189,12658,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Río Escalante Chacocente,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12190,12658,Nicaragua,METT,2008,For storage only,28,Río Escalante Chacocente,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12191,12658,Nicaragua,METT,2005,For storage only,28,Río Escalante Chacocente,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12192,12658,Nicaragua,METT,2010,For storage only,28,Río Escalante Chacocente,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12193,302128,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Río San Juan,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12194,302128,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Río San Juan,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12195,901253,Nicaragua,GOBI Survey,2006,For storage only,28,Rio San Juan,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12196,12681,Nicaragua,METT,2012,For storage only,28,Salto Río Yasika,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12197,12681,Nicaragua,METT,2013,For storage only,28,Salto Río Yasika,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12198,102216,Panama;Nicaragua,PROARCA/CAPAS,0,For storage only,28,San Lorenzo,Management Habitat/Species,"GD-PAME, version pre-2017",Not Reported,2018,English -12199,12657,Nicaragua,METT,2012,For storage only,28,Coordillera Dipilto y Jalapa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12200,12657,Nicaragua,METT,2013,For storage only,28,Coordillera Dipilto y Jalapa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12201,61049,Nicaragua,METT,2012,For storage only,28,Tepesomoto/Pataste,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12202,61049,Nicaragua,METT,2013,For storage only,28,Tepesomoto/Pataste,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12203,12680,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Cerro Tisey Estanzuela,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12204,12680,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Cerro Tisey Estanzuela,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12205,12680,Nicaragua,METT,2012,For storage only,28,Cerro Tisey Estanzuela,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12206,12680,Nicaragua,METT,2013,For storage only,28,Cerro Tisey Estanzuela,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12207,12670,Nicaragua,METT,2012,For storage only,28,Cerro Tomabu,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12208,12670,Nicaragua,METT,2013,For storage only,28,Cerro Tomabu,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12209,12659,Nicaragua,METT,2012,For storage only,28,Volcán Cosiguina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12210,12659,Nicaragua,METT,2013,For storage only,28,Volcán Cosiguina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12211,12659,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Volcán Cosiguina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12212,12659,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Volcán Cosiguina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12213,12683,Nicaragua,PROARCA/CAPAS,2000,For storage only,28,Volcán Mombacho,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12214,12683,Nicaragua,PROARCA/CAPAS,2005,For storage only,28,Volcán Mombacho,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12215,12661,Nicaragua,METT,2012,For storage only,28,Complejo Volcánico Momotombo y Momotombito,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12216,12661,Nicaragua,METT,2013,For storage only,28,Complejo Volcánico Momotombo y Momotombito,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12217,10091,Nepal,RAPPAM,2002,For storage only,28,Annapurna,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12218,10091,Nepal,Birdlife IBA,2004,For storage only,28,Annapurna,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12219,1308,Nepal,METT,2005,For storage only,28,Bardia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12220,1308,Nepal,Birdlife IBA,2004,For storage only,28,Bardia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12221,303694,Nepal,Enhancing Our Heritage,2007,For storage only,28,Chitwan - Buffer Zone,National Park - Buffer Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -12222,303694,Nepal,Enhancing Our Heritage,2003,For storage only,28,Chitwan - Buffer Zone,National Park - Buffer Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -12223,805,Nepal,Birdlife IBA,2004,For storage only,28,Chitwan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12224,10905,Nepal,Birdlife IBA,2004,For storage only,28,Chitwan National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12225,10905,Nepal,WHA Outlook Report,2014,For storage only,28,Chitwan National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12226,10087,Nepal,Birdlife IBA,2004,For storage only,28,Dhorpatan,Hunting Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12227,143001,Nepal,METT,2003,For storage only,28,Kanchanjunga,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12228,143001,Nepal,RAPPAM,2002,For storage only,28,Kanchanjunga,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12229,143001,Nepal,Birdlife IBA,2004,For storage only,28,Kanchanjunga,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12230,143001,Nepal,METT,2005,For storage only,28,Kanchanjunga,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12231,7953,Nepal,RAPPAM,2002,For storage only,28,Khaptad,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12232,1310,Nepal,RAPPAM,2002,For storage only,28,Koshi Tappu,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12233,803,Nepal,Birdlife IBA,2004,For storage only,28,Langtang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12234,36687,Nepal,RAPPAM,2002,For storage only,28,Lantang,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12235,26606,Nepal,RAPPAM,2002,For storage only,28,Makalu-Barun,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12236,26606,Nepal,Birdlife IBA,2004,For storage only,28,Makalu-Barun,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12237,143002,Nepal,RAPPAM,2002,For storage only,28,Manaslu,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12238,10089,Nepal,METT,2003,For storage only,28,Parsa,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12239,10089,Nepal,METT,2005,For storage only,28,Parsa,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12241,10089,Nepal,RAPPAM,2002,For storage only,28,Parsa,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12242,10089,Nepal,Birdlife IBA,2004,For storage only,28,Parsa,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12243,806,Nepal,RAPPAM,2002,For storage only,28,Rara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12244,555569933,Nepal,Birdlife IBA,2004,For storage only,28,Rara - Buffer Zone,National Park - Buffer Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -12246,313264,Nepal,RAPPAM,2002,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -12247,805,Nepal,METT,2003,For storage only,28,Chitwan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12248,805,Nepal,METT,2005,For storage only,28,Chitwan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12250,303694,Nepal,RAPPAM,2002,For storage only,28,Chitwan - Buffer Zone,National Park - Buffer Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -12251,10087,Nepal,RAPPAM,2002,For storage only,28,Dhorpatan,Hunting Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12252,1309,Nepal,METT,2005,For storage only,28,Suklaphanta,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12255,1309,Nepal,RAPPAM,2002,For storage only,28,Suklaphanta,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12256,804,Nepal,METT,2005,For storage only,28,Sagarmatha,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12257,804,Nepal,RAPPAM,2002,For storage only,28,Sagarmatha,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12258,804,Nepal,Birdlife IBA,2004,For storage only,28,Sagarmatha,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12259,2007,Nepal,Birdlife IBA,2004,For storage only,28,Sagarmatha National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12260,2007,Nepal,WHA Outlook Report,2014,For storage only,28,Sagarmatha National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12261,7952,Nepal,RAPPAM,2002,For storage only,28,Shey-Phoksundo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12262,7952,Nepal,METT,2005,For storage only,28,Shey-Phoksundo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12263,7952,Nepal,Birdlife IBA,2004,For storage only,28,Shey-Phoksundo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12264,10910,Nepal,Birdlife IBA,2004,For storage only,28,Shivapuri-Nagarjun,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12265,10910,Nepal,RAPPAM,2002,For storage only,28,Shivapuri-Nagarjun,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12266,1309,Nepal,Birdlife IBA,2004,For storage only,28,Suklaphanta,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12267,555564462,New Zealand,Birdlife IBA,2010,For storage only,28,Campbell Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12268,168239,New Zealand,WHA Outlook Report,2014,For storage only,28,New Zealand Sub-Antarctic Islands,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12269,26652,New Zealand,WHA Outlook Report,2014,For storage only,28,Te Wahipounamu ÔÇô South West New Zealand,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12270,26649,New Zealand,WHA Outlook Report,2014,For storage only,28,Tongariro National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12271,10270,Pakistan,METT,2003,For storage only,28,Chitral Gol,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12272,6810,Pakistan,METT,2003,For storage only,28,Machiara,Game Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12274,241,Panama,PROARCA/CAPAS,2001,For storage only,28,Altos de Campana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12275,241,Panama,PROARCA/CAPAS,2002,For storage only,28,Altos de Campana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12277,241,Panama,PROARCA/CAPAS,2003,For storage only,28,Altos de Campana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12278,241,Panama,PROARCA/CAPAS,2004,For storage only,28,Altos de Campana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12279,241,Panama,PROARCA/CAPAS,2005,For storage only,28,Altos de Campana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12280,241,Panama,PROARCA/CAPAS,2006,For storage only,28,Altos de Campana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12281,107315,Panama,PIP Site Consolidation,2003,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12282,107315,Panama,PIP Site Consolidation,2004,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12283,107315,Panama,PIP Site Consolidation,2005,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12284,107315,Panama,PIP Site Consolidation,2002,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12285,240,Panama,METT,2010,For storage only,28,Volcan Barú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12286,107292,Panama,METT,2006,For storage only,28,Donoso,Multiple Use Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12287,40968,Panama,PROARCA/CAPAS,2001,For storage only,28,Camino de Cruces,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12288,40968,Panama,PROARCA/CAPAS,2002,For storage only,28,Camino de Cruces,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12290,40968,Panama,PROARCA/CAPAS,2003,For storage only,28,Camino de Cruces,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12291,40968,Panama,PROARCA/CAPAS,2004,For storage only,28,Camino de Cruces,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12292,40968,Panama,PROARCA/CAPAS,2005,For storage only,28,Camino de Cruces,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12293,40968,Panama,PROARCA/CAPAS,2006,For storage only,28,Camino de Cruces,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12294,241,Panama,METT,2010,For storage only,28,Altos de Campana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12295,17183,Panama,PROARCA/CAPAS,2001,For storage only,28,Canglón,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12296,17183,Panama,PROARCA/CAPAS,2002,For storage only,28,Canglón,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12299,17183,Panama,PROARCA/CAPAS,2004,For storage only,28,Canglón,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12300,17183,Panama,PROARCA/CAPAS,2005,For storage only,28,Canglón,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12301,17183,Panama,PROARCA/CAPAS,2006,For storage only,28,Canglón,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12302,17181,Panama,PROARCA/CAPAS,2001,For storage only,28,Cenegón del Mangle,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12303,17181,Panama,PROARCA/CAPAS,2005,For storage only,28,Cenegón del Mangle,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12304,17181,Panama,PROARCA/CAPAS,2002,For storage only,28,Cenegón del Mangle,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12306,17181,Panama,PROARCA/CAPAS,2003,For storage only,28,Cenegón del Mangle,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12307,17181,Panama,PROARCA/CAPAS,2004,For storage only,28,Cenegón del Mangle,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12308,17181,Panama,PROARCA/CAPAS,2006,For storage only,28,Cenegón del Mangle,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12309,115116,Panama,PROARCA/CAPAS,2001,For storage only,28,Cerro Gaital,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12310,115116,Panama,PROARCA/CAPAS,2002,For storage only,28,Cerro Gaital,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12312,115116,Panama,PROARCA/CAPAS,2003,For storage only,28,Cerro Gaital,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12313,115116,Panama,PROARCA/CAPAS,2004,For storage only,28,Cerro Gaital,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12314,115116,Panama,PROARCA/CAPAS,2005,For storage only,28,Cerro Gaital,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12315,115116,Panama,PROARCA/CAPAS,2006,For storage only,28,Cerro Gaital,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12316,12685,Panama,METT,0,For storage only,28,Cerro Hoya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12317,12685,Panama,PROARCA/CAPAS,2001,For storage only,28,Cerro Hoya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12318,12685,Panama,PROARCA/CAPAS,2002,For storage only,28,Cerro Hoya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12320,12685,Panama,PROARCA/CAPAS,2003,For storage only,28,Cerro Hoya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12321,12685,Panama,PROARCA/CAPAS,2004,For storage only,28,Cerro Hoya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12322,12685,Panama,PROARCA/CAPAS,2005,For storage only,28,Cerro Hoya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12323,12685,Panama,PROARCA/CAPAS,2006,For storage only,28,Cerro Hoya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12324,12684,Panama,PROARCA/CAPAS,2001,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12325,12684,Panama,PROARCA/CAPAS,2002,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12327,12684,Panama,PROARCA/CAPAS,2003,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12328,12684,Panama,PROARCA/CAPAS,2004,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12329,12684,Panama,PROARCA/CAPAS,2005,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12330,12684,Panama,PROARCA/CAPAS,2006,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12331,12684,Panama,METT,2010,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12332,12684,Panama,PIP Site Consolidation,2002,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12333,12684,Panama,PIP Site Consolidation,2003,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12334,12684,Panama,PIP Site Consolidation,2004,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12335,12684,Panama,PIP Site Consolidation,2005,For storage only,28,Chagres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12336,301969,Panama,PROARCA/CAPAS,2001,For storage only,28,Ciénega de las Macanas,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -12337,301969,Panama,PROARCA/CAPAS,2002,For storage only,28,Ciénega de las Macanas,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -12339,301969,Panama,PROARCA/CAPAS,2003,For storage only,28,Ciénega de las Macanas,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -12340,301969,Panama,PROARCA/CAPAS,2004,For storage only,28,Ciénega de las Macanas,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -12341,301969,Panama,PROARCA/CAPAS,2005,For storage only,28,Ciénega de las Macanas,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -12342,301969,Panama,PROARCA/CAPAS,2006,For storage only,28,Ciénega de las Macanas,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -12343,17831,Panama,PROARCA/CAPAS,2002,For storage only,28,Coiba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12346,17831,Panama,PROARCA/CAPAS,2003,For storage only,28,Coiba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12347,17831,Panama,PROARCA/CAPAS,2004,For storage only,28,Coiba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12348,17831,Panama,PROARCA/CAPAS,2005,For storage only,28,Coiba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12349,17831,Panama,PROARCA/CAPAS,2006,For storage only,28,Coiba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12350,17831,Panama,PROARCA/CAPAS,2001,For storage only,28,Coiba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12351,17831,Panama,METT,2010,For storage only,28,Coiba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12352,902479,Panama,WHA Outlook Report,2014,For storage only,28,Coiba National Park and its Special Zone of Marin*,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12353,5191,Panama,PIP Site Consolidation,1991,For storage only,28,Darién,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12354,5191,Panama,PIP Site Consolidation,1996,For storage only,28,Darién,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12355,5191,Panama,PIP Site Consolidation,1997,For storage only,28,Darién,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12356,5191,Panama,PIP Site Consolidation,1998,For storage only,28,Darién,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12357,5191,Panama,PIP Site Consolidation,1999,For storage only,28,Darién,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12358,5191,Panama,PIP Site Consolidation,2001,For storage only,28,Darién,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12359,5191,Panama,PIP Site Consolidation,2000,For storage only,28,Darién,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12360,236,Panama,PROARCA/CAPAS,2002,For storage only,28,Darién,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12363,236,Panama,PROARCA/CAPAS,2003,For storage only,28,Darién,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12364,236,Panama,PROARCA/CAPAS,2004,For storage only,28,Darién,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12365,236,Panama,PROARCA/CAPAS,2005,For storage only,28,Darién,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12366,236,Panama,PROARCA/CAPAS,2006,For storage only,28,Darién,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12367,236,Panama,PROARCA/CAPAS,2001,For storage only,28,Darién,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12368,2554,Panama,WHA Outlook Report,2014,For storage only,28,Darien National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12369,236,Panama,METT,2010,For storage only,28,Darién,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12370,12695,Panama,METT,2006,For storage only,28,El Montuoso,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12371,12695,Panama,PROARCA/CAPAS,2001,For storage only,28,El Montuoso,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12372,12695,Panama,PROARCA/CAPAS,2002,For storage only,28,El Montuoso,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12374,12695,Panama,PROARCA/CAPAS,2003,For storage only,28,El Montuoso,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12375,12695,Panama,PROARCA/CAPAS,2004,For storage only,28,El Montuoso,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12376,12695,Panama,PROARCA/CAPAS,2005,For storage only,28,El Montuoso,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12377,12695,Panama,PROARCA/CAPAS,2006,For storage only,28,El Montuoso,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12378,99631,Panama,PROARCA/CAPAS,2001,For storage only,28,General de División Omar Torrijos Herrera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12379,99631,Panama,PROARCA/CAPAS,2002,For storage only,28,General de División Omar Torrijos Herrera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12381,99631,Panama,PROARCA/CAPAS,2003,For storage only,28,General de División Omar Torrijos Herrera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12382,99631,Panama,PROARCA/CAPAS,2004,For storage only,28,General de División Omar Torrijos Herrera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12383,99631,Panama,PROARCA/CAPAS,2005,For storage only,28,General de División Omar Torrijos Herrera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12384,99631,Panama,PROARCA/CAPAS,2006,For storage only,28,General de División Omar Torrijos Herrera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12385,99631,Panama,METT,2010,For storage only,28,General de División Omar Torrijos Herrera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12386,99632,Panama,PROARCA/CAPAS,2001,For storage only,28,Golfo de Chiriquí,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12387,99632,Panama,PROARCA/CAPAS,2002,For storage only,28,Golfo de Chiriquí,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12389,99632,Panama,PROARCA/CAPAS,2003,For storage only,28,Golfo de Chiriquí,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12390,99632,Panama,PROARCA/CAPAS,2004,For storage only,28,Golfo de Chiriquí,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12391,99632,Panama,PROARCA/CAPAS,2005,For storage only,28,Golfo de Chiriquí,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12392,99632,Panama,PROARCA/CAPAS,2006,For storage only,28,Golfo de Chiriquí,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12393,102252,Panama,PROARCA/CAPAS,2001,For storage only,28,Golfo de Montijo,Wetland of International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -12394,102252,Panama,PROARCA/CAPAS,2002,For storage only,28,Golfo de Montijo,Wetland of International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -12396,102252,Panama,PROARCA/CAPAS,2003,For storage only,28,Golfo de Montijo,Wetland of International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -12397,102252,Panama,PROARCA/CAPAS,2004,For storage only,28,Golfo de Montijo,Wetland of International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -12398,102252,Panama,PROARCA/CAPAS,2005,For storage only,28,Golfo de Montijo,Wetland of International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -12399,102252,Panama,PROARCA/CAPAS,2006,For storage only,28,Golfo de Montijo,Wetland of International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -12400,107289,Panama,METT,2006,For storage only,28,Damani-Guariviara,Wetland of International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -12401,107289,Panama,PROARCA/CAPAS,2001,For storage only,28,Damani-Guariviara,Wetland of International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -12402,107289,Panama,PROARCA/CAPAS,2005,For storage only,28,Damani-Guariviara,Wetland of International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -12403,16787,Panama,PROARCA/CAPAS,2001,For storage only,28,Isla Bastimentos,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12405,16787,Panama,PROARCA/CAPAS,2002,For storage only,28,Isla Bastimentos,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12407,16787,Panama,PROARCA/CAPAS,2003,For storage only,28,Isla Bastimentos,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12408,16787,Panama,PROARCA/CAPAS,2004,For storage only,28,Isla Bastimentos,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12409,16787,Panama,PROARCA/CAPAS,2006,For storage only,28,Isla Bastimentos,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12410,16787,Panama,PROARCA/CAPAS,2005,For storage only,28,Isla Bastimentos,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12411,10914,Panama,METT,2006,For storage only,28,Isla Cañas,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12412,10914,Panama,PROARCA/CAPAS,2001,For storage only,28,Isla Cañas,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12413,10914,Panama,PROARCA/CAPAS,2002,For storage only,28,Isla Cañas,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12415,10914,Panama,PROARCA/CAPAS,2003,For storage only,28,Isla Cañas,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12416,10914,Panama,PROARCA/CAPAS,2004,For storage only,28,Isla Cañas,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12417,10914,Panama,PROARCA/CAPAS,2005,For storage only,28,Isla Cañas,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12418,10914,Panama,PROARCA/CAPAS,2006,For storage only,28,Isla Cañas,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12419,115137,Panama,PROARCA/CAPAS,2001,For storage only,28,Isla Galeta,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -12420,115137,Panama,PROARCA/CAPAS,2002,For storage only,28,Isla Galeta,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -12422,115137,Panama,PROARCA/CAPAS,2003,For storage only,28,Isla Galeta,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -12423,115137,Panama,PROARCA/CAPAS,2004,For storage only,28,Isla Galeta,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -12424,115137,Panama,PROARCA/CAPAS,2005,For storage only,28,Isla Galeta,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -12425,115137,Panama,PROARCA/CAPAS,2006,For storage only,28,Isla Galeta,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -12426,12688,Panama,METT,2006,For storage only,28,Isla Iguana,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12427,12688,Panama,PROARCA/CAPAS,2001,For storage only,28,Isla Iguana,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12428,12688,Panama,PROARCA/CAPAS,2002,For storage only,28,Isla Iguana,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12430,12688,Panama,PROARCA/CAPAS,2003,For storage only,28,Isla Iguana,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12431,12688,Panama,PROARCA/CAPAS,2004,For storage only,28,Isla Iguana,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12432,12688,Panama,PROARCA/CAPAS,2005,For storage only,28,Isla Iguana,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12433,12688,Panama,PROARCA/CAPAS,2006,For storage only,28,Isla Iguana,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12434,198343,Panama,GOBI Survey,2006,For storage only,28,Reserva de la Biósfera de La Amistad,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12435,107315,Panama,METT,2006,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12436,107315,Panama,PROARCA/CAPAS,2001,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12437,107315,Panama,PROARCA/CAPAS,2002,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12438,107315,Panama,PROARCA/CAPAS,2003,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12439,107315,Panama,PROARCA/CAPAS,2004,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12440,107315,Panama,PROARCA/CAPAS,2005,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12441,107315,Panama,PROARCA/CAPAS,2006,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12442,2553,Panama,PROARCA/CAPAS,2001,For storage only,28,Internacional La Amistad,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12443,2553,Panama,PROARCA/CAPAS,2002,For storage only,28,Internacional La Amistad,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12445,2553,Panama,PROARCA/CAPAS,2003,For storage only,28,Internacional La Amistad,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12446,2553,Panama,PROARCA/CAPAS,2004,For storage only,28,Internacional La Amistad,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12447,2553,Panama,PROARCA/CAPAS,2005,For storage only,28,Internacional La Amistad,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12448,2553,Panama,PROARCA/CAPAS,2006,For storage only,28,Internacional La Amistad,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12449,107315,Panama,METT,2010,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12450,107315,Panama,METT,2009,For storage only,28,La Amistad,International Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12451,12699,Panama,PROARCA/CAPAS,2001,For storage only,28,La Tronosa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12452,12699,Panama,PROARCA/CAPAS,2002,For storage only,28,La Tronosa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12454,12699,Panama,PROARCA/CAPAS,2003,For storage only,28,La Tronosa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12455,12699,Panama,PROARCA/CAPAS,2004,For storage only,28,La Tronosa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12456,12699,Panama,PROARCA/CAPAS,2005,For storage only,28,La Tronosa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12457,12699,Panama,PROARCA/CAPAS,2006,For storage only,28,La Tronosa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12458,12698,Panama,PROARCA/CAPAS,2001,For storage only,28,La Yeguada,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12459,12698,Panama,PROARCA/CAPAS,2002,For storage only,28,La Yeguada,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12461,12698,Panama,PROARCA/CAPAS,2003,For storage only,28,La Yeguada,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12462,12698,Panama,PROARCA/CAPAS,2004,For storage only,28,La Yeguada,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12463,12698,Panama,PROARCA/CAPAS,2005,For storage only,28,La Yeguada,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12464,12698,Panama,PROARCA/CAPAS,2006,For storage only,28,La Yeguada,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12465,17184,Panama,PROARCA/CAPAS,2001,For storage only,28,Lago Gatún,Recreation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12466,17184,Panama,PROARCA/CAPAS,2002,For storage only,28,Lago Gatún,Recreation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12468,17184,Panama,PROARCA/CAPAS,2003,For storage only,28,Lago Gatún,Recreation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12469,17184,Panama,PROARCA/CAPAS,2004,For storage only,28,Lago Gatún,Recreation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12470,17184,Panama,PROARCA/CAPAS,2005,For storage only,28,Lago Gatún,Recreation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12471,17184,Panama,PROARCA/CAPAS,2006,For storage only,28,Lago Gatún,Recreation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12472,107326,Panama,PROARCA/CAPAS,2001,For storage only,28,Majé,Watershed Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12473,107326,Panama,PROARCA/CAPAS,2002,For storage only,28,Majé,Watershed Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12475,107326,Panama,PROARCA/CAPAS,2004,For storage only,28,Majé,Watershed Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12476,107326,Panama,PROARCA/CAPAS,2005,For storage only,28,Majé,Watershed Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12477,107326,Panama,PROARCA/CAPAS,2006,For storage only,28,Majé,Watershed Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12478,16787,Panama,METT,2010,For storage only,28,Isla Bastimentos,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12479,16787,Panama,METT,2006,For storage only,28,Isla Bastimentos,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12480,12826,Panama,PROARCA/CAPAS,2001,For storage only,28,Metropolitano,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12481,12826,Panama,PROARCA/CAPAS,2002,For storage only,28,Metropolitano,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12483,12826,Panama,PROARCA/CAPAS,2004,For storage only,28,Metropolitano,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12484,12826,Panama,PROARCA/CAPAS,2005,For storage only,28,Metropolitano,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12485,12826,Panama,PROARCA/CAPAS,2006,For storage only,28,Metropolitano,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12486,107334,Panama,METT,0,For storage only,28,Narganá,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12487,99631,Panama,METT,0,For storage only,28,General de División Omar Torrijos Herrera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12488,17185,Panama,METT,2006,For storage only,28,Palo Seco,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -12489,17185,Panama,PROARCA/CAPAS,2001,For storage only,28,Palo Seco,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -12490,17185,Panama,PROARCA/CAPAS,2002,For storage only,28,Palo Seco,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -12492,17185,Panama,PROARCA/CAPAS,2003,For storage only,28,Palo Seco,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -12493,17185,Panama,PROARCA/CAPAS,2004,For storage only,28,Palo Seco,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -12494,17185,Panama,PROARCA/CAPAS,2005,For storage only,28,Palo Seco,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -12495,17185,Panama,PROARCA/CAPAS,2006,For storage only,28,Palo Seco,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -12496,303325,Panama,PROARCA/CAPAS,2001,For storage only,28,Playa la Barqueta Agrícola,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12497,303325,Panama,PROARCA/CAPAS,2002,For storage only,28,Playa la Barqueta Agrícola,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12500,303325,Panama,PROARCA/CAPAS,2003,For storage only,28,Playa la Barqueta Agrícola,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12501,303325,Panama,PROARCA/CAPAS,2004,For storage only,28,Playa la Barqueta Agrícola,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12502,303325,Panama,PROARCA/CAPAS,2005,For storage only,28,Playa la Barqueta Agrícola,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12503,303325,Panama,PROARCA/CAPAS,2006,For storage only,28,Playa la Barqueta Agrícola,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12504,102216,Panama;Nicaragua,PROARCA/CAPAS,2001,For storage only,28,San Lorenzo,Management Habitat/Species,"GD-PAME, version pre-2017",Not Reported,2018,English -12505,102216,Panama;Nicaragua,PROARCA/CAPAS,2002,For storage only,28,San Lorenzo,Management Habitat/Species,"GD-PAME, version pre-2017",Not Reported,2018,English -12507,102216,Panama;Nicaragua,PROARCA/CAPAS,2003,For storage only,28,San Lorenzo,Management Habitat/Species,"GD-PAME, version pre-2017",Not Reported,2018,English -12508,102216,Panama;Nicaragua,PROARCA/CAPAS,2004,For storage only,28,San Lorenzo,Management Habitat/Species,"GD-PAME, version pre-2017",Not Reported,2018,English -12509,102216,Panama;Nicaragua,PROARCA/CAPAS,2005,For storage only,28,San Lorenzo,Management Habitat/Species,"GD-PAME, version pre-2017",Not Reported,2018,English -12510,102216,Panama;Nicaragua,PROARCA/CAPAS,2006,For storage only,28,San Lorenzo,Management Habitat/Species,"GD-PAME, version pre-2017",Not Reported,2018,English -12511,68135,Panama,METT,2006,For storage only,28,San San-Pond Sak,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12512,68135,Panama,PROARCA/CAPAS,2002,For storage only,28,San San-Pond Sak,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12514,68135,Panama,PROARCA/CAPAS,2003,For storage only,28,San San-Pond Sak,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12515,68135,Panama,PROARCA/CAPAS,2004,For storage only,28,San San-Pond Sak,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12516,68135,Panama,PROARCA/CAPAS,2005,For storage only,28,San San-Pond Sak,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12517,68135,Panama,PROARCA/CAPAS,2006,For storage only,28,San San-Pond Sak,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12518,68135,Panama,PROARCA/CAPAS,2001,For storage only,28,San San-Pond Sak,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12519,115110,Panama,METT,2006,For storage only,28,Santa Fe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12520,115110,Panama,PROARCA/CAPAS,2006,For storage only,28,Santa Fe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12521,12686,Panama,PROARCA/CAPAS,2001,For storage only,28,Sarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12522,12686,Panama,PROARCA/CAPAS,2002,For storage only,28,Sarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12524,12686,Panama,PROARCA/CAPAS,2003,For storage only,28,Sarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12525,12686,Panama,PROARCA/CAPAS,2004,For storage only,28,Sarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12526,12686,Panama,PROARCA/CAPAS,2005,For storage only,28,Sarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12527,12686,Panama,PROARCA/CAPAS,2006,For storage only,28,Sarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12528,107372,Panama,PROARCA/CAPAS,2002,For storage only,28,Serranía Filo del Tallo,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12531,107372,Panama,PROARCA/CAPAS,2003,For storage only,28,Serranía Filo del Tallo,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12532,107372,Panama,PROARCA/CAPAS,2004,For storage only,28,Serranía Filo del Tallo,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12533,107372,Panama,PROARCA/CAPAS,2005,For storage only,28,Serranía Filo del Tallo,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12534,107372,Panama,PROARCA/CAPAS,2006,For storage only,28,Serranía Filo del Tallo,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12535,107372,Panama,PROARCA/CAPAS,2001,For storage only,28,Serranía Filo del Tallo,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12536,238,Panama,PROARCA/CAPAS,2001,For storage only,28,Soberania,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12537,238,Panama,PROARCA/CAPAS,2002,For storage only,28,Soberania,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12539,238,Panama,PROARCA/CAPAS,2003,For storage only,28,Soberania,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12540,238,Panama,PROARCA/CAPAS,2004,For storage only,28,Soberania,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12541,238,Panama,PROARCA/CAPAS,2005,For storage only,28,Soberania,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12542,238,Panama,PROARCA/CAPAS,2006,For storage only,28,Soberania,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12543,238,Panama,METT,2010,For storage only,28,Soberania,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12544,12687,Panama,PROARCA/CAPAS,2001,For storage only,28,Taboga-Urabá,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12545,12687,Panama,PROARCA/CAPAS,2002,For storage only,28,Taboga-Urabá,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12547,12687,Panama,PROARCA/CAPAS,2003,For storage only,28,Taboga-Urabá,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12548,12687,Panama,PROARCA/CAPAS,2004,For storage only,28,Taboga-Urabá,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12549,12687,Panama,PROARCA/CAPAS,2005,For storage only,28,Taboga-Urabá,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12550,12687,Panama,PROARCA/CAPAS,2006,For storage only,28,Taboga-Urabá,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12551,10903,Panama,WHA Outlook Report,2014,For storage only,28,Talamanca Range-La Amistad Reserves / La Amistad *,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12552,107377,Panama,PROARCA/CAPAS,2001,For storage only,28,Tapagra,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12553,107377,Panama,PROARCA/CAPAS,2002,For storage only,28,Tapagra,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12555,107377,Panama,PROARCA/CAPAS,2003,For storage only,28,Tapagra,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12556,107377,Panama,PROARCA/CAPAS,2004,For storage only,28,Tapagra,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12557,107377,Panama,PROARCA/CAPAS,2005,For storage only,28,Tapagra,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12558,107377,Panama,PROARCA/CAPAS,2006,For storage only,28,Tapagra,Hydrological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12559,240,Panama,METT,2006,For storage only,28,Volcan Barú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12560,240,Panama,METT,0,For storage only,28,Volcan Barú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12561,240,Panama,PROARCA/CAPAS,2001,For storage only,28,Volcan Barú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12562,240,Panama,PROARCA/CAPAS,2002,For storage only,28,Volcan Barú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12564,240,Panama,PROARCA/CAPAS,2003,For storage only,28,Volcan Barú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12565,240,Panama,PROARCA/CAPAS,2004,For storage only,28,Volcan Barú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12566,240,Panama,PROARCA/CAPAS,2005,For storage only,28,Volcan Barú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12567,240,Panama,PROARCA/CAPAS,2006,For storage only,28,Volcan Barú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12568,12896,Pitcairn,Birdlife IBA,2013,For storage only,28,Henderson Island,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12569,555531088,Portugal,Birdlife IBA,2005,For storage only,28,Barrinha de Esmoriz,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12570,555531099,Portugal,Birdlife IBA,2005,For storage only,28,Cabeção,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12571,555531103,Portugal,Birdlife IBA,2005,For storage only,28,Cabrela,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12572,555540911,Portugal,Birdlife IBA,2005,For storage only,28,Campo Maior,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12573,4723,Portugal,Birdlife IBA,2005,For storage only,28,Sapal de Castro Marim e Vila Real de Santo Antóni,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12574,127885,Portugal,Birdlife IBA,2005,For storage only,28,Sapais de Castro Marim,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12575,555540892,Portugal,Birdlife IBA,2005,For storage only,28,Sapais de Castro Marim,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12576,555540913,Portugal,Birdlife IBA,2005,For storage only,28,Castro Verde,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12577,18945,Portugal,Birdlife IBA,2005,For storage only,28,Sudoeste Alentejano e Costa Vicentina,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12578,555531082,Portugal,Birdlife IBA,2005,For storage only,28,Costa Sudoeste,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12579,555540889,Portugal,Birdlife IBA,2005,For storage only,28,Costa Sudoeste,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12580,555540923,Portugal,Birdlife IBA,2005,For storage only,28,Cuba,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12581,555531092,Portugal,Birdlife IBA,2005,For storage only,28,Douro Internacional,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12582,555540906,Portugal,Birdlife IBA,2005,For storage only,28,Douro Internacional e Vale do Águeda,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12583,555531079,Portugal,Birdlife IBA,2005,For storage only,28,Estuário do Tejo,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12584,555540884,Portugal,Birdlife IBA,2005,For storage only,28,Estuário do Tejo,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12585,555540876,Portugal,Birdlife IBA,2005,For storage only,28,Estuários dos Rios Minho e Coura,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12586,198300,Portugal,WHA Outlook Report,2014,For storage only,28,Laurisilva of Madeira,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12587,555540912,Portugal,Birdlife IBA,2005,For storage only,28,Mourão/Moura/Barrancos,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12588,18942,Portugal,Birdlife IBA,2005,For storage only,28,Paul de Arzila,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12589,127881,Portugal,Birdlife IBA,2005,For storage only,28,Paúl de Arzila,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12590,555540879,Portugal,Birdlife IBA,2005,For storage only,28,Paul de Arzila,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12591,555540880,Portugal,Birdlife IBA,2005,For storage only,28,Paul da Madriz,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12592,900610,Portugal,Birdlife IBA,2005,For storage only,28,Paúl do Taipal,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12593,555540908,Portugal,Birdlife IBA,2005,For storage only,28,Paul do Taipal,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12594,555540878,Portugal,Birdlife IBA,2005,For storage only,28,Ria de Aveiro,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12595,143012,Portugal,Birdlife IBA,2005,For storage only,28,Vale do Guadiana,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12596,555540914,Portugal,Birdlife IBA,2005,For storage only,28,Vale do Guadiana,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12597,555531091,Portugal,Birdlife IBA,2005,For storage only,28,Rios Sabor e Maçãs,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12598,555540905,Portugal,Birdlife IBA,2005,For storage only,28,Rios Sabor e Maçãs,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12599,32568,Portugal,European Diploma,1992,For storage only,28,Ilhas Selvagens,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12600,1338,Portugal,Birdlife IBA,2005,For storage only,28,Serra da Estrela,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12601,555531084,Portugal,Birdlife IBA,2005,For storage only,28,Serra da Estrela,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12602,5808,Portugal,Birdlife IBA,2005,For storage only,28,Serra da Malcata,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12603,555540881,Portugal,Birdlife IBA,2005,For storage only,28,Serra da Malcata,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12604,860,Portugal,Birdlife IBA,2005,For storage only,28,Peneda/Gerês,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12605,555531072,Portugal,Birdlife IBA,2005,For storage only,28,Peneda/Gerês,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12606,555540877,Portugal,Birdlife IBA,2005,For storage only,28,Serra do Gerês,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12607,18946,Portugal,Birdlife IBA,2005,For storage only,28,Montesinho,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12608,555549136,Portugal,Birdlife IBA,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -12609,555577799,Portugal,Birdlife IBA,2005,For storage only,28,Montesinho / Nogueira,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12610,555531073,Portugal,Birdlife IBA,2005,For storage only,28,Alvão/Marão,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12611,388861,Portugal,Birdlife IBA,2005,For storage only,28,Tejo Internacional,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12612,555540910,Portugal,Birdlife IBA,2005,For storage only,28,"Tejo Internacional, Erges e Pônsul",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12613,555540907,Portugal,Birdlife IBA,2005,For storage only,28,Vale do Côa,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12614,555540919,Portugal,Birdlife IBA,2005,For storage only,28,Vila Fernando,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12615,20987,Paraguay,METT,2010,For storage only,28,Ñacunday,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12619,317135,Paraguay,Birdlife IBA,2011,For storage only,28,Arroyo Blanco,Natural Private Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12620,37115,Paraguay,Birdlife IBA,2011,For storage only,28,Natural Reserve del Bosque Mbaracayú,Private Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12621,220266,Paraguay,GOBI Survey,2006,For storage only,28,Bosque Mbaracayú,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12622,242,Paraguay,PIP Site Consolidation,1997,For storage only,28,Defensores del Chaco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12623,242,Paraguay,PIP Site Consolidation,1998,For storage only,28,Defensores del Chaco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12624,242,Paraguay,PIP Site Consolidation,1999,For storage only,28,Defensores del Chaco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12625,242,Paraguay,PIP Site Consolidation,2000,For storage only,28,Defensores del Chaco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12626,242,Paraguay,PIP Site Consolidation,2001,For storage only,28,Defensores del Chaco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12627,242,Paraguay,PIP Site Consolidation,2002,For storage only,28,Defensores del Chaco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12628,20989,Paraguay,Birdlife IBA,2011,For storage only,28,Limoy,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12629,20991,Paraguay,PIP Site Consolidation,1992,For storage only,28,Mbaracayu,Biological Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12630,20991,Paraguay,PIP Site Consolidation,1996,For storage only,28,Mbaracayu,Biological Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12631,20991,Paraguay,PIP Site Consolidation,1997,For storage only,28,Mbaracayu,Biological Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12632,20991,Paraguay,PIP Site Consolidation,1998,For storage only,28,Mbaracayu,Biological Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12633,20991,Paraguay,PIP Site Consolidation,1999,For storage only,28,Mbaracayu,Biological Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12634,20991,Paraguay,PIP Site Consolidation,2001,For storage only,28,Mbaracayu,Biological Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12635,20991,Paraguay,PIP Site Consolidation,2000,For storage only,28,Mbaracayu,Biological Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12636,20991,Paraguay,METT,2005,For storage only,28,Mbaracayu,Biological Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -12637,317136,Paraguay,Birdlife IBA,2011,For storage only,28,Morombi,Natural Private Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12638,245,Paraguay,Birdlife IBA,2011,For storage only,28,Caaguazú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12639,242,Paraguay,Birdlife IBA,2011,For storage only,28,Defensores del Chaco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12640,21003,Paraguay,Birdlife IBA,2011,For storage only,28,San Rafael,Managed Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12641,244,Paraguay,Birdlife IBA,2011,For storage only,28,Tentiente Agripino Enciso,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12642,20988,Paraguay,Birdlife IBA,2011,For storage only,28,Itabó,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12643,4263,French Polynesia,Birdlife IBA,2006,For storage only,28,Mohotani Reserve Integrale,Natural Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12644,11179,Romania,METT,2009,For storage only,28,Muntii Apuseni,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12645,11179,Romania,METT,2012,For storage only,28,Muntii Apuseni,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12646,63612,Romania,RAPPAM,2006,For storage only,28,Cheile Bicazului - Hasmas,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12647,555578953,Romania,RAPPAM,2006,For storage only,28,Lacul Sarat - Braila,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -12648,20678,Romania,RAPPAM,2006,For storage only,28,Bucegi,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12649,20678,Romania,METT,2009,For storage only,28,Bucegi,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12650,20678,Romania,METT,2012,For storage only,28,Bucegi,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12651,196478,Romania,RAPPAM,2006,For storage only,28,Buila - Vânturarita,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12652,196478,Romania,METT,2009,For storage only,28,Buila - Vânturarita,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12653,196478,Romania,METT,2012,For storage only,28,Buila - Vânturarita,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12654,11172,Romania,RAPPAM,2006,For storage only,28,Calimani,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12655,11172,Romania,METT,2009,For storage only,28,Calimani,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12656,11172,Romania,METT,2012,For storage only,28,Calimani,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12657,11170,Romania,RAPPAM,2006,For storage only,28,Ceahlau,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12658,11170,Romania,METT,2009,For storage only,28,Ceahlau,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12659,11170,Romania,METT,2012,For storage only,28,Ceahlau,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12660,63612,Romania,METT,2012,For storage only,28,Cheile Bicazului - Hasmas,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12661,11176,Romania,METT,2012,For storage only,28,Cheile Nerei - Beusnita,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12662,11176,Romania,METT,2009,For storage only,28,Cheile Nerei - Beusnita,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12663,11181,Romania,RAPPAM,2006,For storage only,28,Gradistea Muncelului - Cioclovina,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12664,11155,Romania,METT,2009,For storage only,28,Comana,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12665,11155,Romania,RAPPAM,2006,For storage only,28,Comana,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12666,11174,Romania,RAPPAM,2006,For storage only,28,Cozia,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12667,11174,Romania,METT,2009,For storage only,28,Cozia,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12668,11174,Romania,METT,2012,For storage only,28,Cozia,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12669,11173,Romania,RAPPAM,2006,For storage only,28,Piatra Craiului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12670,67728,Romania,WHA Outlook Report,2014,For storage only,28,Danube Delta,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12671,337831,Romania,METT,2009,For storage only,28,Defileul Jiului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12672,337831,Romania,METT,2012,For storage only,28,Defileul Jiului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12673,349838,Romania,METT,2012,For storage only,28,Defileul Muresului Superior,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12674,337830,Romania,RAPPAM,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -12675,11175,Romania,RAPPAM,2006,For storage only,28,Domogled - Valea Cernei,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12676,11175,Romania,METT,2012,For storage only,28,Domogled - Valea Cernei,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12677,11175,Romania,METT,2009,For storage only,28,Domogled - Valea Cernei,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12678,63612,Romania,METT,2009,For storage only,28,Cheile Bicazului - Hasmas,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12679,196477,Romania,RAPPAM,2006,For storage only,28,Geoparcul Dinozaurilor Tara Hategului,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12680,196477,Romania,METT,2009,For storage only,28,Geoparcul Dinozaurilor Tara Hategului,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12681,196477,Romania,METT,2012,For storage only,28,Geoparcul Dinozaurilor Tara Hategului,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12682,861,Romania,RAPPAM,2006,For storage only,28,Retezat,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12683,184172,Romania,METT,2005,For storage only,28,Muntii Macinului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12684,184172,Romania,METT,2007,For storage only,28,Muntii Macinului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12685,184172,Romania,METT,2008,For storage only,28,Muntii Macinului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12686,184172,Romania,METT,2009,For storage only,28,Muntii Macinului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12687,193310,Romania,METT,2010,For storage only,28,Muntii Maramuresului,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12688,11179,Romania,RAPPAM,2006,For storage only,28,Muntii Apuseni,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12689,184172,Romania,RAPPAM,2006,For storage only,28,Muntii Macinului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12690,193310,Romania,METT,2005,For storage only,28,Muntii Maramuresului,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12691,193310,Romania,METT,2006,For storage only,28,Muntii Maramuresului,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12692,193310,Romania,RAPPAM,2006,For storage only,28,Muntii Maramuresului,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12693,11176,Romania,RAPPAM,2006,For storage only,28,Cheile Nerei - Beusnita,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12694,184173,Romania,METT,2012,For storage only,28,Vânatori Neamt,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12695,11173,Romania,European Diploma,2006,For storage only,28,Piatra Craiului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12696,11173,Romania,METT,2003,For storage only,28,Piatra Craiului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12697,11173,Romania,METT,2009,For storage only,28,Piatra Craiului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12698,11173,Romania,METT,2012,For storage only,28,Piatra Craiului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12699,3040,Romania,Stockholm BR Survey,2008,For storage only,28,Pietrosul Mare Nature Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12700,63623,Romania,RAPPAM,2006,For storage only,28,Portile de Fier,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12701,196474,Romania,METT,2009,For storage only,28,Putna - Vrancea,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12702,196474,Romania,RAPPAM,2006,For storage only,28,Putna - Vrancea,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12703,196474,Romania,METT,2012,For storage only,28,Putna - Vrancea,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12704,861,Romania,European Diploma,2008,For storage only,28,Retezat,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12705,3041,Romania,GOBI Survey,2006,For storage only,28,Retezat National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12706,861,Romania,METT,2003,For storage only,28,Retezat,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12707,861,Romania,PANPARKS,2004,For storage only,28,Retezat,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12708,861,Romania,PANPARKS,2005,For storage only,28,Retezat,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12709,861,Romania,PANPARKS,2006,For storage only,28,Retezat,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12710,861,Romania,PANPARKS,2007,For storage only,28,Retezat,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12712,11171,Romania,RAPPAM,2006,For storage only,28,Rodna,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12713,11171,Romania,METT,2009,For storage only,28,Rodna,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12714,11171,Romania,METT,2012,For storage only,28,Rodna,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12715,11171,Romania,GOBI Survey,2006,For storage only,28,Rodna,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12716,81224,Romania,RAPPAM,2006,For storage only,28,Semenic - Cheile Carasului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -12717,19023,Romania,METT,2012,For storage only,28,Cheile Carasului,Nature reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12718,184173,Romania,RAPPAM,2006,For storage only,28,Vânatori Neamt,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12719,184173,Romania,METT,2009,For storage only,28,Vânatori Neamt,Natural park,"GD-PAME, version pre-2017",Not Reported,2018,English -12720,198919,Russian Federation,RAPPAM,2001,For storage only,28,Agrakhansky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12721,200029,Russian Federation,RAPPAM,2001,For storage only,28,Alakit,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12722,199626,Russian Federation,RAPPAM,2001,For storage only,28,Alania,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12723,1691,Russian Federation,RAPPAM,2001,For storage only,28,Altaisky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12724,1691,Russian Federation,METT,2005,For storage only,28,Altaisky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12725,1691,Russian Federation,METT,2008,For storage only,28,Altaisky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12726,208547,Russian Federation,METT,2003,For storage only,28,Kaltajskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12727,1691,Russian Federation,METT,2006,For storage only,28,Altaisky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12729,198618,Russian Federation,RAPPAM,2001,For storage only,28,Altyn-Solok,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12730,1711,Russian Federation,METT,2009,For storage only,28,Astrakhansky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12731,1711,Russian Federation,METT,2012,For storage only,28,Astrakhansky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12732,1711,Russian Federation,RAPPAM,2001,For storage only,28,Astrakhansky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12733,11830,Russian Federation,METT,2008,For storage only,28,Azas,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12734,11830,Russian Federation,RAPPAM,2001,For storage only,28,Azas,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12735,201129,Russian Federation,RAPPAM,2001,For storage only,28,Badzhal'sky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12736,11592,Russian Federation,METT,2007,For storage only,28,Baikalsky,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12737,11592,Russian Federation,RAPPAM,2001,For storage only,28,Baikalsky,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12738,900556,Russian Federation,RAPPAM,2001,For storage only,28,Barguzinskyi,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12739,200814,Russian Federation,RAPPAM,2001,For storage only,28,Barsovy,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12740,13987,Russian Federation,RAPPAM,2001,For storage only,28,Bassegi,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12741,19002,Russian Federation,RAPPAM,2001,For storage only,28,Bashkiria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12742,19002,Russian Federation,METT,2003,For storage only,28,Bashkiria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12743,19002,Russian Federation,METT,2005,For storage only,28,Bashkiria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12744,1709,Russian Federation,RAPPAM,2001,For storage only,28,Bashkirsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12745,201177,Russian Federation,RAPPAM,2001,For storage only,28,Bastack,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12746,205471,Russian Federation,RAPPAM,2001,For storage only,28,Bairovsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12747,200033,Russian Federation,METT,2005,For storage only,28,Beke,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12748,200033,Russian Federation,RAPPAM,2001,For storage only,28,Beke,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12749,1733,Russian Federation,RAPPAM,2001,For storage only,28,Belogor'e,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12750,1733,Russian Federation,METT,2009,For storage only,28,Belogor'e,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12751,204024,Russian Federation,METT,2007,For storage only,28,Belozerskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12752,204024,Russian Federation,METT,2008,For storage only,28,Belozerskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12753,201263,Russian Federation,METT,2003,For storage only,28,Birminskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12754,201263,Russian Federation,METT,2005,For storage only,28,Birminskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12755,201130,Russian Federation,RAPPAM,2001,For storage only,28,Birskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12756,201428,Russian Federation,RAPPAM,2001,For storage only,28,Bogdinsko-Baskunchaksky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12757,201132,Russian Federation,RAPPAM,2001,For storage only,28,Bolon'sky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12758,68518,Russian Federation,RAPPAM,2001,For storage only,28,Bolshaya Kokshaga,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12759,1715,Russian Federation,RAPPAM,2001,For storage only,28,Bolshekhekhtsirsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12760,61771,Russian Federation,RAPPAM,2001,For storage only,28,Bolshoy Arktichesky / Great Arctic,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12761,61508,Russian Federation,RAPPAM,2001,For storage only,28,Botchinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12762,103550,Russian Federation,RAPPAM,2001,For storage only,28,Brekhovsky Islands in the Yenisei estuary,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -12763,20684,Russian Federation,METT,2003,For storage only,28,Bryansky Les,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12764,20684,Russian Federation,METT,2005,For storage only,28,Bryansky Les,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12765,20684,Russian Federation,RAPPAM,2001,For storage only,28,Bryansky Les,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12766,200009,Russian Federation,RAPPAM,2001,For storage only,28,Bur,Resource Reserve (project),"GD-PAME, version pre-2017",Not Reported,2018,English -12767,11833,Russian Federation,METT,2003,For storage only,28,Bureinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12768,11833,Russian Federation,METT,2005,For storage only,28,Bureinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12769,11833,Russian Federation,RAPPAM,2001,For storage only,28,Bureinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12770,203437,Russian Federation,METT,2005,For storage only,28,Bystrinskiy,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12771,203437,Russian Federation,METT,2009,For storage only,28,Bystrinskiy,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12772,203437,Russian Federation,RAPPAM,2001,For storage only,28,Bystrinskiy,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12773,900629,Russian Federation,WHA Outlook Report,2014,For storage only,28,Central Sikhote-Alin,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12774,1725,Russian Federation,RAPPAM,2001,For storage only,28,Tsentralno-Lesnoi,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12775,1732,Russian Federation,RAPPAM,2001,For storage only,28,Tsentralno-Chernozemny,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12776,1732,Russian Federation,METT,2009,For storage only,28,Tsentralno-Chernozemny,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12777,12442,Russian Federation,RAPPAM,2001,For storage only,28,Tsentralnosibirsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12778,199993,Russian Federation,METT,2007,For storage only,28,Chabda,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12779,199993,Russian Federation,METT,2008,For storage only,28,Chabda,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12780,199993,Russian Federation,METT,2009,For storage only,28,Chabda,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12781,199997,Russian Federation,RAPPAM,2001,For storage only,28,Charuoda,Reserved Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -12782,68579,Russian Federation,RAPPAM,2001,For storage only,28,Chavash Varmane,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12783,68549,Russian Federation,RAPPAM,2001,For storage only,28,Chernye Zemli,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12784,68549,Russian Federation,METT,2009,For storage only,28,Chernye Zemli,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12785,201133,Russian Federation,RAPPAM,2001,For storage only,28,Chukenskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12786,199360,Russian Federation,METT,2011,For storage only,28,Udorskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12787,15779,Russian Federation,RAPPAM,2001,For storage only,28,Dagestansky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12788,1703,Russian Federation,RAPPAM,2001,For storage only,28,Darvinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12789,200854,Russian Federation,METT,2013,For storage only,28,Dautsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12790,145589,Russian Federation,RAPPAM,2001,For storage only,28,Daursky,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12791,145589,Russian Federation,METT,2009,For storage only,28,Daursky,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12792,200854,Russian Federation,RAPPAM,2001,For storage only,28,Dautsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12793,20682,Russian Federation,RAPPAM,2001,For storage only,28,Denezhkin Kamen,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12794,202074,Russian Federation,Birdlife IBA,2007,For storage only,28,Drofiny,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12795,208715,Russian Federation,RAPPAM,2001,For storage only,28,Elizarovsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12796,209576,Russian Federation,METT,2008,For storage only,28,Ergaki,Nature park (project),"GD-PAME, version pre-2017",Not Reported,2018,English -12797,901254,Russian Federation,MPA MEE,2003,For storage only,28,Far East Marine,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12798,1734,Russian Federation,RAPPAM,2001,For storage only,28,Galich'ya Gora,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12799,1734,Russian Federation,METT,2009,For storage only,28,Galich'ya Gora,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12800,168241,Russian Federation,WHA Outlook Report,2014,For storage only,28,Golden Mountains of Altai,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12801,198939,Russian Federation,RAPPAM,2001,For storage only,28,Golubye ozera,Nature Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12802,199330,Russian Federation,METT,2011,For storage only,28,Ilychskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12803,201427,Russian Federation,METT,2005,For storage only,28,Il'menno-bugrovoi,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12804,201427,Russian Federation,METT,2006,For storage only,28,Il'menno-bugrovoi,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12805,201427,Russian Federation,METT,2009,For storage only,28,Il'menno-bugrovoi,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12806,1721,Russian Federation,METT,2003,For storage only,28,Ilmensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12807,1721,Russian Federation,METT,2005,For storage only,28,Ilmensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12808,1721,Russian Federation,RAPPAM,2001,For storage only,28,Ilmensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12809,199330,Russian Federation,METT,2007,For storage only,28,Ilychskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12810,208696,Russian Federation,RAPPAM,2001,For storage only,28,Kabanskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12811,1708,Russian Federation,Birdlife IBA,2007,For storage only,28,Kabardino-Balkarsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12812,1708,Russian Federation,RAPPAM,2001,For storage only,28,Kabardino-Balkarsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12813,67718,Russian Federation,RAPPAM,2001,For storage only,28,Kaluzhskie Zaseki,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12814,202643,Russian Federation,RAPPAM,2001,For storage only,28,Kamennaya Step',Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12815,1713,Russian Federation,METT,2005,For storage only,28,Kandalakshsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12816,1713,Russian Federation,RAPPAM,2001,For storage only,28,Kandalakshsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12817,204564,Russian Federation,RAPPAM,2001,For storage only,28,Kanozersky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12818,198924,Russian Federation,Birdlife IBA,2006,For storage only,28,Kasumkentskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12819,68519,Russian Federation,METT,2008,For storage only,28,Katunsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12820,198345,Russian Federation,GOBI Survey,2006,For storage only,28,Katunsky,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12821,68519,Russian Federation,METT,2003,For storage only,28,Katunsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12822,68519,Russian Federation,METT,2005,For storage only,28,Katunsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12823,68519,Russian Federation,RAPPAM,2001,For storage only,28,Katunsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12824,198345,Russian Federation,Stockholm BR Survey,2008,For storage only,28,Katunsky,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12825,1696,Russian Federation,Birdlife IBA,2007,For storage only,28,Kavkazsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12826,198301,Russian Federation,Birdlife IBA,2007,For storage only,28,Western Caucasus,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12827,209778,Russian Federation,RAPPAM,2001,For storage only,28,Kavkazskiy,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12828,198923,Russian Federation,Birdlife IBA,2007,For storage only,28,Kayakentskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12829,1726,Russian Federation,RAPPAM,2001,For storage only,28,Kedrovaya Pad,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12830,68347,Russian Federation,RAPPAM,2001,For storage only,28,Kenozersky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12831,67719,Russian Federation,RAPPAM,2001,For storage only,28,Kerzhensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12832,201742,Russian Federation,METT,2008,For storage only,28,Khakassky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12833,201742,Russian Federation,RAPPAM,2001,For storage only,28,Khakassky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12834,62691,Russian Federation,RAPPAM,2001,For storage only,28,Khankaisky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12835,198944,Russian Federation,METT,2013,For storage only,28,Kharbinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12836,201138,Russian Federation,RAPPAM,2001,For storage only,28,Khekhtsirsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12837,201242,Russian Federation,RAPPAM,2001,For storage only,28,Khingano-Arkharinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12838,1707,Russian Federation,RAPPAM,2001,For storage only,28,Khingansky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12839,1727,Russian Federation,RAPPAM,2001,For storage only,28,Khopersky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12840,206707,Russian Federation,RAPPAM,2001,For storage only,28,Khvalynsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12841,205236,Russian Federation,RAPPAM,2001,For storage only,28,Kirzinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12842,1729,Russian Federation,RAPPAM,2001,For storage only,28,Kivach,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12843,201827,Russian Federation,RAPPAM,2001,For storage only,28,Kletnyansky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12844,201985,Russian Federation,RAPPAM,2001,For storage only,28,Klyazminsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12845,67720,Russian Federation,RAPPAM,2001,For storage only,28,"Komandorsky / Commander Islands -",Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12846,67720,Russian Federation,METT,2008,For storage only,28,"Komandorsky / Commander Islands -",Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12847,1712,Russian Federation,RAPPAM,2001,For storage only,28,Komsomolsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12848,198929,Russian Federation,Birdlife IBA,2006,For storage only,28,Kosobsko-Kelebskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12849,13988,Russian Federation,European Diploma,1998,For storage only,28,Kostomukshsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12850,13988,Russian Federation,RAPPAM,2001,For storage only,28,Kostomukshsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12851,10715,Russian Federation,METT,2009,For storage only,28,Kronotskiy,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12852,1690,Russian Federation,RAPPAM,2001,For storage only,28,Kronotsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12853,68431,Russian Federation,METT,2005,For storage only,28,Kunovatsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12854,68431,Russian Federation,METT,2007,For storage only,28,Kunovatsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12855,68431,Russian Federation,METT,2008,For storage only,28,Kunovatsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12856,199980,Russian Federation,METT,2008,For storage only,28,Kuoluma,Reserved Territory,"GD-PAME, version pre-2017",Not Reported,2018,English -12857,204038,Russian Federation,RAPPAM,2001,For storage only,28,Kurgansky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12858,11628,Russian Federation,METT,2003,For storage only,28,Kurilsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12859,11628,Russian Federation,METT,2005,For storage only,28,Kurilsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12860,68348,Russian Federation,RAPPAM,2001,For storage only,28,Kurshskaya Kosa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12861,62694,Russian Federation,RAPPAM,2001,For storage only,28,Kuznetsky Alatau,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12862,146613,Russian Federation,METT,2005,For storage only,28,Kytalyk,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12864,146613,Russian Federation,METT,2007,For storage only,28,Kytalyk,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12865,146613,Russian Federation,METT,2009,For storage only,28,Kytalyk,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12866,146613,Russian Federation,RAPPAM,2001,For storage only,28,Kytalyk,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12867,124386,Russian Federation,WHA Outlook Report,2014,For storage only,28,Lake Baikal,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12868,10716,Russian Federation,Stockholm BR Survey,2008,For storage only,28,Laplandskiy,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12869,1700,Russian Federation,RAPPAM,2001,For storage only,28,Laplandsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12870,1702,Russian Federation,METT,2003,For storage only,28,Lazovsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12871,1702,Russian Federation,METT,2005,For storage only,28,Lazovsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12872,555547991,Russian Federation,WHA Outlook Report,2014,For storage only,28,Lena Pillars Nature Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12873,206117,Russian Federation,Birdlife IBA,2007,For storage only,28,Rostovskoe GOOH (Aleksandrovskiy uchastok),Managed Resource Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -12874,199988,Russian Federation,RAPPAM,2001,For storage only,28,Lenskie stolby,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12875,11578,Russian Federation,RAPPAM,2001,For storage only,28,Losiny Ostrov,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12876,4815,Russian Federation,RAPPAM,2001,For storage only,28,Magadansky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12877,201245,Russian Federation,METT,2003,For storage only,28,Magdagachinskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12878,201245,Russian Federation,METT,2005,For storage only,28,Magdagachinskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12879,1704,Russian Federation,RAPPAM,2001,For storage only,28,Malaya Sosva,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12880,19003,Russian Federation,RAPPAM,2001,For storage only,28,Mary Chodra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12881,199337,Russian Federation,METT,2011,For storage only,28,Boloto Okean,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12882,198942,Russian Federation,METT,2013,For storage only,28,Mekletinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12883,198942,Russian Federation,RAPPAM,2001,For storage only,28,Mekletinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12884,198942,Russian Federation,METT,2009,For storage only,28,Mekletinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12885,68359,Russian Federation,RAPPAM,2001,For storage only,28,Meschera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12886,61504,Russian Federation,RAPPAM,2001,For storage only,28,Meschersky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12887,1719,Russian Federation,RAPPAM,2001,For storage only,28,Mordovsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12888,201387,Russian Federation,RAPPAM,2001,For storage only,28,Moree-U,Zapovednik (project),"GD-PAME, version pre-2017",Not Reported,2018,English -12889,200034,Russian Federation,RAPPAM,2001,For storage only,28,Muna,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12890,204563,Russian Federation,RAPPAM,2001,For storage only,28,Murmansky Tundrovy,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12891,201984,Russian Federation,RAPPAM,2001,For storage only,28,Muromsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12892,203438,Russian Federation,METT,2004,For storage only,28,Nalychevskiy,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12893,203438,Russian Federation,METT,2005,For storage only,28,Nalychevskiy,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12894,203438,Russian Federation,METT,2009,For storage only,28,Nalychevskiy,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12895,203438,Russian Federation,RAPPAM,2001,For storage only,28,Nalychevskiy,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12896,1693,Russian Federation,METT,2011,For storage only,28,Pechoro-Ilychsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12897,19000,Russian Federation,Birdlife IBA,2007,For storage only,28,Prielbrus'e,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12898,902356,Russian Federation,WHA Outlook Report,2014,For storage only,28,Natural System of Wrangel Island Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12899,199940,Russian Federation,RAPPAM,2001,For storage only,28,Nechkinsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12900,201384,Russian Federation,METT,2005,For storage only,28,Nenetsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12901,201384,Russian Federation,RAPPAM,2001,For storage only,28,Nenetsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12903,201385,Russian Federation,RAPPAM,2001,For storage only,28,Nenetsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12904,206948,Russian Federation,METT,2013,For storage only,28,Nikol'skiy sosnovyi bor,Nature Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -12905,1717,Russian Federation,RAPPAM,2001,For storage only,28,Nizhne-Svirsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12906,68350,Russian Federation,RAPPAM,2001,For storage only,28,Nizhnyaya Kama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12907,1717,Russian Federation,METT,2003,For storage only,28,Nizhne-Svirsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12908,201247,Russian Federation,METT,2003,For storage only,28,Norsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12909,201247,Russian Federation,METT,2005,For storage only,28,Norsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12910,201247,Russian Federation,RAPPAM,2001,For storage only,28,Norsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12911,61511,Russian Federation,RAPPAM,2001,For storage only,28,Nurgush,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12912,199337,Russian Federation,METT,2007,For storage only,28,Boloto Okean,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12913,1724,Russian Federation,METT,2003,For storage only,28,Oksky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12914,1724,Russian Federation,RAPPAM,2001,For storage only,28,Oksky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12915,201139,Russian Federation,RAPPAM,2001,For storage only,28,Oldzhikansky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12916,11831,Russian Federation,METT,2003,For storage only,28,Olekminsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12917,11831,Russian Federation,METT,2005,For storage only,28,Olekminsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12918,11831,Russian Federation,RAPPAM,2001,For storage only,28,Olekminsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12919,198956,Russian Federation,RAPPAM,2001,For storage only,28,Olonetsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12920,68547,Russian Federation,RAPPAM,2001,For storage only,28,Orenburgsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12921,68547,Russian Federation,METT,2009,For storage only,28,Orenburgsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12922,61576,Russian Federation,RAPPAM,2001,For storage only,28,Orlovskoye Poles'e,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12923,201248,Russian Federation,METT,2003,For storage only,28,Orlovsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12924,201248,Russian Federation,METT,2005,For storage only,28,Orlovsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12925,201248,Russian Federation,RAPPAM,2001,For storage only,28,Orlovsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12926,68351,Russian Federation,RAPPAM,2001,For storage only,28,Paanayarvi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12927,68351,Russian Federation,PANPARKS,2005,For storage only,28,Paanayarvi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12928,68351,Russian Federation,PANPARKS,2006,For storage only,28,Paanayarvi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12929,68351,Russian Federation,PANPARKS,2007,For storage only,28,Paanayarvi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12930,64472,Russian Federation,RAPPAM,2001,For storage only,28,Pasvik,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12931,1693,Russian Federation,METT,2007,For storage only,28,Pechoro-Ilychsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12932,1693,Russian Federation,RAPPAM,2001,For storage only,28,Pechoro-Ilychsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12933,1716,Russian Federation,RAPPAM,2001,For storage only,28,Pinezhsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12934,68361,Russian Federation,RAPPAM,2001,For storage only,28,Plescheevo Ozero,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12935,61509,Russian Federation,RAPPAM,2001,For storage only,28,Polistovsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12936,15784,Russian Federation,RAPPAM,2001,For storage only,28,Poronaisky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12937,200490,Russian Federation,RAPPAM,2001,For storage only,28,Priazovsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12938,19000,Russian Federation,RAPPAM,2001,For storage only,28,Prielbrus'e,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12939,902327,Russian Federation,Stockholm BR Survey,2008,For storage only,28,Prioksko-Terrasnyi,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12940,68580,Russian Federation,RAPPAM,2001,For storage only,28,Pripyshmenskie Bory,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12941,199960,Russian Federation,RAPPAM,2001,For storage only,28,Prisursky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12942,206543,Russian Federation,RAPPAM,2001,For storage only,28,Privolzhskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12943,62692,Russian Federation,METT,2009,For storage only,28,Privolzhskaya Lesostep,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12944,555512003,Russian Federation,WHA Outlook Report,2014,For storage only,28,Putorana Plateau,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -12945,62445,Russian Federation,RAPPAM,2001,For storage only,28,Putoransky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12946,61510,Russian Federation,RAPPAM,2001,For storage only,28,Rdeisky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12947,209576,Russian Federation,METT,2011,For storage only,28,Ergaki,Nature park (project),"GD-PAME, version pre-2017",Not Reported,2018,English -12948,200404,Russian Federation,METT,2011,For storage only,28,Ukok,Nature Sanctuary or Partial Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12949,205996,Russian Federation,RAPPAM,2001,For storage only,28,Remdovsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12950,206114,Russian Federation,RAPPAM,2001,For storage only,28,Rostovsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12951,206114,Russian Federation,METT,2009,For storage only,28,Rostovsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12952,68352,Russian Federation,RAPPAM,2001,For storage only,28,Russky Sever,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12953,205496,Russian Federation,RAPPAM,2001,For storage only,28,Ryazanskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12954,11579,Russian Federation,RAPPAM,2001,For storage only,28,Samarskaya Luka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12955,206725,Russian Federation,METT,2013,For storage only,28,Saratovsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12956,206725,Russian Federation,METT,2009,For storage only,28,Saratovsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12957,198943,Russian Federation,METT,2009,For storage only,28,Sarpinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12958,1694,Russian Federation,METT,2006,For storage only,28,Sayano-Shushensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12959,1694,Russian Federation,METT,2003,For storage only,28,Sayano-Shushensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12960,1694,Russian Federation,METT,2005,For storage only,28,Sayano-Shushensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12961,1694,Russian Federation,METT,2008,For storage only,28,Sayano-Shushensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12962,1694,Russian Federation,RAPPAM,2001,For storage only,28,Sayano-Shushensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12963,205993,Russian Federation,RAPPAM,2001,For storage only,28,Sebezshsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12964,1722,Russian Federation,RAPPAM,2001,For storage only,28,Severo-Osetinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12965,200525,Russian Federation,RAPPAM,2001,For storage only,28,Severozemel'skiy,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12966,68353,Russian Federation,METT,2003,For storage only,28,Shorsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12967,68353,Russian Federation,METT,2005,For storage only,28,Shorsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12968,68353,Russian Federation,METT,2008,For storage only,28,Shorsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12969,68353,Russian Federation,METT,2006,For storage only,28,Shorsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12970,68353,Russian Federation,RAPPAM,2001,For storage only,28,Shorsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12971,11834,Russian Federation,METT,2003,For storage only,28,Shulgan-Tash,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12972,11834,Russian Federation,METT,2005,For storage only,28,Shulgan-Tash,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12973,11834,Russian Federation,RAPPAM,2001,For storage only,28,Shulgan-Tash,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12974,209640,Russian Federation,METT,2008,For storage only,28,Shushensky Bor,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12975,209640,Russian Federation,RAPPAM,2001,For storage only,28,Shushensky Bor,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12976,209640,Russian Federation,METT,2006,For storage only,28,Shushensky Bor,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12977,201368,Russian Federation,RAPPAM,2001,For storage only,28,Siysky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12978,68354,Russian Federation,RAPPAM,2001,For storage only,28,Smolenskoye Poozer'e / Smolemsk Lakeland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12979,199587,Russian Federation,RAPPAM,2001,For storage only,28,Smolny,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12980,11577,Russian Federation,RAPPAM,2001,For storage only,28,Sochinsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12981,10719,Russian Federation,RAPPAM,2001,For storage only,28,Sokhondinskiy,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12982,208853,Russian Federation,RAPPAM,2001,For storage only,28,Starokulatkinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12983,1691,Russian Federation,METT,2011,For storage only,28,Altaisky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12984,68353,Russian Federation,METT,2011,For storage only,28,Shorsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12985,209640,Russian Federation,METT,2011,For storage only,28,Shushensky Bor,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12986,10718,Russian Federation,METT,2011,For storage only,28,Sayano-Shushenskiy,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12987,145588,Russian Federation,METT,2011,For storage only,28,Ubsunorskaya Kotlovina,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -12988,11830,Russian Federation,METT,2011,For storage only,28,Azas,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12989,201742,Russian Federation,METT,2011,For storage only,28,Khakassky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12990,62693,Russian Federation,METT,2008,For storage only,28,Ostrov Vrangelya / Wrangel Island,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12991,198952,Russian Federation,RAPPAM,2001,For storage only,28,Stepnoj,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12992,209747,Russian Federation,METT,2005,For storage only,28,Stershiny (uchastok2),Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12993,209747,Russian Federation,METT,2007,For storage only,28,Stershiny (uchastok2),Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12994,209747,Russian Federation,METT,2008,For storage only,28,Stershiny (uchastok2),Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -12995,1714,Russian Federation,RAPPAM,2001,For storage only,28,Stolby,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -12996,208854,Russian Federation,RAPPAM,2001,For storage only,28,Sursky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -12997,68355,Russian Federation,METT,2003,For storage only,28,Taganai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12998,68355,Russian Federation,METT,2005,For storage only,28,Taganai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -12999,68355,Russian Federation,RAPPAM,2001,For storage only,28,Taganai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13000,1689,Russian Federation,RAPPAM,2001,For storage only,28,Taimyrsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13001,145591,Russian Federation,European Diploma,1994,For storage only,28,Teberda,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13002,1705,Russian Federation,Birdlife IBA,2007,For storage only,28,Teberdinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13003,1705,Russian Federation,METT,2003,For storage only,28,Teberdinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13004,1705,Russian Federation,METT,2005,For storage only,28,Teberdinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13005,1705,Russian Federation,RAPPAM,2001,For storage only,28,Teberdinsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13006,200004,Russian Federation,METT,2005,For storage only,28,Terpej-Tumus,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13007,200004,Russian Federation,RAPPAM,2001,For storage only,28,Terpej-Tumus,Resource Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13008,198920,Russian Federation,RAPPAM,2001,For storage only,28,Tlyaratinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -13009,198920,Russian Federation,Birdlife IBA,2007,For storage only,28,Tlyaratinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -13010,201252,Russian Federation,RAPPAM,2001,For storage only,28,Tomskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13011,1732,Russian Federation,European Diploma,1998,For storage only,28,Tsentralno-Chernozemny,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13012,206121,Russian Federation,METT,2009,For storage only,28,Tsimlyansky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -13013,204565,Russian Federation,RAPPAM,2001,For storage only,28,Tulomsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -13014,67722,Russian Federation,METT,2008,For storage only,28,Ubsunurskaya Kotlovina,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13015,67722,Russian Federation,METT,2006,For storage only,28,Ubsunurskaya Kotlovina,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13016,67722,Russian Federation,RAPPAM,2001,For storage only,28,Ubsunurskaya Kotlovina,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13017,67722,Russian Federation,METT,2009,For storage only,28,Ubsunurskaya Kotlovina,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13018,199808,Russian Federation,METT,2003,For storage only,28,Kara-Hol'skiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13019,199808,Russian Federation,METT,2005,For storage only,28,Kara-Hol'skiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13020,199808,Russian Federation,METT,2006,For storage only,28,Kara-Hol'skiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13021,199808,Russian Federation,METT,2008,For storage only,28,Kara-Hol'skiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13022,199360,Russian Federation,METT,2007,For storage only,28,Udorskiy,Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13023,201143,Russian Federation,RAPPAM,2001,For storage only,28,Udyl',Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -13024,203386,Russian Federation,RAPPAM,2001,For storage only,28,Ugra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13025,200404,Russian Federation,METT,2006,For storage only,28,Ukok,Nature Sanctuary or Partial Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13026,1718,Russian Federation,METT,2003,For storage only,28,Ussuriysky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13027,1718,Russian Federation,METT,2005,For storage only,28,Ussuriysky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13028,1718,Russian Federation,RAPPAM,2001,For storage only,28,Ussuriysky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13029,11832,Russian Federation,RAPPAM,2001,For storage only,28,Ust'-Lensky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13031,68357,Russian Federation,RAPPAM,2001,For storage only,28,Valdaisky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13032,208714,Russian Federation,RAPPAM,2001,For storage only,28,Vaspukhol'skiy,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -13033,208716,Russian Federation,RAPPAM,2001,For storage only,28,Verkhne-Kondinsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -13034,15780,Russian Federation,RAPPAM,2001,For storage only,28,Verkhne-Tazovsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13035,95389,Russian Federation,Birdlife IBA,2006,For storage only,28,Veselovskoye Reservoir,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13036,93294,Russian Federation,WHA Outlook Report,2014,For storage only,28,Virgin Komi Forests,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13037,68546,Russian Federation,RAPPAM,2001,For storage only,28,Vishersky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13038,1728,Russian Federation,RAPPAM,2001,For storage only,28,Visimsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13040,68358,Russian Federation,RAPPAM,2001,For storage only,28,Vodlozersky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13041,124387,Russian Federation,WHA Outlook Report,2014,For storage only,28,Volcanoes of Kamchatka,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13042,555547592,Russian Federation,METT,2013,For storage only,28,Volga-Akhtuba Floodplain,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13046,1730,Russian Federation,RAPPAM,2001,For storage only,28,Volzhsko-Kamsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13047,1720,Russian Federation,RAPPAM,2001,For storage only,28,Voronezhsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13050,61512,Russian Federation,RAPPAM,2001,For storage only,28,Voroninsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13051,198301,Russian Federation,WHA Outlook Report,2014,For storage only,28,Western Caucasus,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13052,4817,Russian Federation,RAPPAM,2001,For storage only,28,Yugansky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13053,61506,Russian Federation,METT,2006,For storage only,28,Yugyd Va,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13054,61506,Russian Federation,RAPPAM,2001,For storage only,28,Yugyd Va,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13055,203440,Russian Federation,RAPPAM,2001,For storage only,28,Yuzhno-Kamchatsky,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -13056,203439,Russian Federation,RAPPAM,2001,For storage only,28,Juzhno-Kamchatskiy,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13057,20686,Russian Federation,RAPPAM,2001,For storage only,28,Yuzhno-Uralsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13058,61502,Russian Federation,RAPPAM,2001,For storage only,28,Zemlya Frantsa-Iosifa / Franz Josef Land,Zakaznik (Federal),"GD-PAME, version pre-2017",Not Reported,2018,English -13059,1706,Russian Federation,RAPPAM,2001,For storage only,28,Zeysky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13060,61575,Russian Federation,METT,2003,For storage only,28,Zjuratkul,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13061,61575,Russian Federation,METT,2005,For storage only,28,Zjuratkul,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13062,61575,Russian Federation,RAPPAM,2001,For storage only,28,Zjuratkul,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13063,11949,Saudi Arabia,Birdlife IBA,2013,For storage only,28,Harrat al-Harrah,Special Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13064,101910,Saudi Arabia,Birdlife IBA,2013,For storage only,28,Ibex Reserve (Hawtat Bani Tamin),Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13065,19556,Saudi Arabia,Birdlife IBA,2013,For storage only,28,Mahazat as-Sayd,Special Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13066,68153,Senegal,Birdlife IBA,2001,For storage only,28,Delta du Saloum,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13067,866,Senegal,RAPPAM,2009,For storage only,28,Delta du Saloum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13068,68151,Senegal,RAPPAM,2009,For storage only,28,Djoudj,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13069,68151,Senegal,RAPPAM,2011,For storage only,28,Djoudj,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13070,2578,Senegal,Enhancing Our Heritage,2009,For storage only,28,Djoudj National Bird Sanctuary,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13071,2578,Senegal,METT,2012,For storage only,28,Djoudj National Bird Sanctuary,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13072,2578,Senegal,WHA Outlook Report,2014,For storage only,28,Djoudj National Bird Sanctuary,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13073,68154,Senegal,RAPPAM,2011,For storage only,28,Gueumbeul,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13074,68154,Senegal,METT,0,For storage only,28,Gueumbeul,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13075,352706,Senegal,RAPPAM,2009,For storage only,28,Joal,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13076,352706,Senegal,RAPPAM,2011,For storage only,28,Joal,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13077,352705,Senegal,RAPPAM,2009,For storage only,28,Kayar,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13078,352705,Senegal,RAPPAM,2011,For storage only,28,Kayar,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13079,869,Senegal,RAPPAM,2009,For storage only,28,Langue de Barbarie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13080,869,Senegal,RAPPAM,2011,For storage only,28,Langue de Barbarie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13081,869,Senegal,METT,0,For storage only,28,Langue de Barbarie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13082,5178,Senegal,METT,0,For storage only,28,Ndiael,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13083,865,Senegal,RAPPAM,2009,For storage only,28,Niokolo Koba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13084,865,Senegal,Enhancing Our Heritage,2009,For storage only,28,Niokolo Koba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13085,3045,Senegal,GOBI Survey,2006,For storage only,28,Parc national du Niokolo-Koba,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13086,2580,Senegal,WHA Outlook Report,2014,For storage only,28,Niokolo-Koba National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13087,870,Senegal,METT,0,For storage only,28,Magdalen Islands (Iles de la Madeleine),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13088,866,Senegal,METT,0,For storage only,28,Delta du Saloum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13089,865,Senegal,Birdlife IBA,2001,For storage only,28,Niokolo Koba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13090,2580,Senegal,Birdlife IBA,2001,For storage only,28,Niokolo-Koba National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13091,12263,Senegal,RAPPAM,2011,For storage only,28,Poponguine,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13092,12263,Senegal,METT,0,For storage only,28,Poponguine,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13093,352704,Senegal,RAPPAM,2011,For storage only,28,Saint-Louis,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13094,1344,Singapore,Asean MEE,2012,For storage only,28,Bukit Timah Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13095,313505,Singapore,Birdlife IBA,2012,For storage only,28,Central Catchment Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13096,555542335,Sierra Leone,METT,2009,For storage only,28,Gola Rainforest National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13097,555542335,Sierra Leone,Birdlife IBA,2005,For storage only,28,Gola Rainforest National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13098,303925,Sierra Leone,Birdlife IBA,2005,For storage only,28,Kambui Hills and Extensions,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13099,5180,Sierra Leone,METT,2006,For storage only,28,Kangari Hills,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13100,5180,Sierra Leone,Birdlife IBA,2005,For storage only,28,Kangari Hills,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13101,8517,Sierra Leone,Birdlife IBA,2005,For storage only,28,Loma Mountains,No or Non - Hunting Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13102,29968,Sierra Leone,Birdlife IBA,2005,For storage only,28,Loma Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13103,29968,Sierra Leone,METT,2006,For storage only,28,Loma Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13104,7417,Sierra Leone,METT,2006,For storage only,28,Outamba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13105,7417,Sierra Leone,Birdlife IBA,2005,For storage only,28,Outamba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13106,555547922,Sierra Leone,METT,2010,For storage only,28,Sierra Leone River Estuary,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13107,10732,Sierra Leone,Birdlife IBA,2005,For storage only,28,Sankan Biriwa (Tingi Hills),No or Non - Hunting Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13108,5179,Sierra Leone,Birdlife IBA,2005,For storage only,28,Western Area,No or Non - Hunting Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13109,19249,Sierra Leone,Birdlife IBA,2005,For storage only,28,Western Area Peninsula Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13110,107426,El Salvador,METT,2005,For storage only,28,Manglar Bah├¡a de Jiquilisco,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13111,107427,El Salvador,PROARCA/CAPAS,2001,For storage only,28,Manglar Barra de Santiago,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13112,107427,El Salvador,PROARCA/CAPAS,2006,For storage only,28,Manglar Barra de Santiago,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13113,107387,El Salvador,PROARCA/CAPAS,2002,For storage only,28,Cerro Cacahuatique,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13114,107387,El Salvador,PROARCA/CAPAS,2003,For storage only,28,Cerro Cacahuatique,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13115,107387,El Salvador,PROARCA/CAPAS,2006,For storage only,28,Cerro Cacahuatique,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13116,302026,El Salvador,METT,2010,For storage only,28,Chaparron o Chaguantique,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13117,12509,El Salvador,PROARCA/CAPAS,2001,For storage only,28,Colima,Protected Area with Managed Resources,"GD-PAME, version pre-2017",Not Reported,2018,English -13118,12509,El Salvador,PROARCA/CAPAS,2002,For storage only,28,Colima,Protected Area with Managed Resources,"GD-PAME, version pre-2017",Not Reported,2018,English -13119,12509,El Salvador,PROARCA/CAPAS,2004,For storage only,28,Colima,Protected Area with Managed Resources,"GD-PAME, version pre-2017",Not Reported,2018,English -13120,12524,El Salvador,METT,2005,For storage only,28,"San Diego La Barra, laguna, cerro, San felipe (12)",National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13121,12494,El Salvador,PROARCA/CAPAS,1999,For storage only,28,El Imposible y El Balsamero,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13122,12494,El Salvador,PROARCA/CAPAS,2006,For storage only,28,El Imposible y El Balsamero,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13123,302006,El Salvador,METT,2010,For storage only,28,El Tercio,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13124,12516,El Salvador,PROARCA/CAPAS,2003,For storage only,28,Escuintla,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13125,555542793,El Salvador,METT,2010,For storage only,28,El Caballito,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13126,62037,El Salvador,METT,2010,For storage only,28,Isla San Sebastián,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13127,62035,El Salvador,PROARCA/CAPAS,2006,For storage only,28,La Joya,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13128,302009,El Salvador,PROARCA/CAPAS,2004,For storage only,28,La Magdalena,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13129,555542800,El Salvador,METT,0,For storage only,28,La Montañita,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13131,107424,El Salvador,PROARCA/CAPAS,2006,For storage only,28,Los C├│banos,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13132,107426,El Salvador,METT,2010,For storage only,28,Manglar Bah├¡a de Jiquilisco,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13133,107436,El Salvador,METT,2010,For storage only,28,Manglar Portezuelo,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13134,9638,El Salvador,PROARCA/CAPAS,1999,For storage only,28,Parque Nacional Montecristo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13135,9638,El Salvador,PROARCA/CAPAS,2000,For storage only,28,Parque Nacional Montecristo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13136,302030,El Salvador,PROARCA/CAPAS,2003,For storage only,28,"Nancuchiname (Mata de Piña, La Maroma, Porción 5 y 6)",Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13137,302030,El Salvador,PROARCA/CAPAS,2004,For storage only,28,"Nancuchiname (Mata de Piña, La Maroma, Porción 5 y 6)",Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13138,302030,El Salvador,METT,2010,For storage only,28,"Nancuchiname (Mata de Piña, La Maroma, Porción 5 y 6)",Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13139,12521,El Salvador,METT,2010,For storage only,28,Normandia,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13140,12527,El Salvador,PROARCA/CAPAS,2003,For storage only,28,Parque Walter Tilo Deininger,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13141,302035,El Salvador,PROARCA/CAPAS,2005,For storage only,28,Plan de Amayo,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13142,302035,El Salvador,PROARCA/CAPAS,2006,For storage only,28,Plan de Amayo,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13143,12524,El Salvador,PROARCA/CAPAS,2003,For storage only,28,"San Diego La Barra, laguna, cerro, San felipe (12)",National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13144,315157,El Salvador,PROARCA/CAPAS,2003,For storage only,28,Santa Rita,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13145,315157,El Salvador,PROARCA/CAPAS,2006,For storage only,28,Santa Rita,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13146,302036,El Salvador,PROARCA/CAPAS,2006,For storage only,28,Taquillo,Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13147,328841,Serbia,METT,2012,For storage only,28,Deliblatska pescara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13148,145399,Serbia,RAPPAM,2009,For storage only,28,Kalenic,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13149,20695,Serbia,METT,2012,For storage only,28,Dolina Pcinje,Landscape of Outstanding Qualities,"GD-PAME, version pre-2017",Not Reported,2018,English -13150,1053,Serbia,RAPPAM,2009,For storage only,28,Nacionalni park Fruska Gora,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13151,328830,Serbia,RAPPAM,2009,For storage only,28,Prebreza,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -13152,16401,Serbia,METT,2012,For storage only,28,Golija,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13153,328846,Serbia,METT,2012,For storage only,28,Gornje Podunavlje,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13154,555547528,Serbia,METT,2012,For storage only,28,Golija-Studenica,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13155,20701,Serbia,RAPPAM,2009,For storage only,28,Ovcarsko-Kablarska klisura,Landscape of Outstanding Qualities,"GD-PAME, version pre-2017",Not Reported,2018,English -13156,16406,Serbia,METT,2012,For storage only,28,Jegricka,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13157,328863,Serbia,METT,2009,For storage only,28,Reon sela Trsica i Tronose,Area of Cultural and Historical Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -13158,328843,Serbia,METT,2012,For storage only,28,Karadjordjevo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13159,328863,Serbia,RAPPAM,2009,For storage only,28,Reon sela Trsica i Tronose,Area of Cultural and Historical Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -13160,15598,Serbia,METT,2012,For storage only,28,Ncionalni park Kopaonik,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13161,15598,Serbia,RAPPAM,2009,For storage only,28,Ncionalni park Kopaonik,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13162,145272,Serbia,RAPPAM,2009,For storage only,28,Bukovo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13163,20704,Serbia,METT,2009,For storage only,28,Veliko ratno ostrvo,Landscape of Outstanding Qualities,"GD-PAME, version pre-2017",Not Reported,2018,English -13164,20701,Serbia,METT,2009,For storage only,28,Ovcarsko-Kablarska klisura,Landscape of Outstanding Qualities,"GD-PAME, version pre-2017",Not Reported,2018,English -13165,328917,Serbia,RAPPAM,2009,For storage only,28,Petrlaska pecina,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -13166,145248,Serbia,RAPPAM,2009,For storage only,28,Danilova kosa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13167,2522,Serbia,METT,2009,For storage only,28,Nacionalni park Djerdap,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13168,1053,Serbia,METT,2009,For storage only,28,Nacionalni park Fruska Gora,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13169,15598,Serbia,METT,2009,For storage only,28,Ncionalni park Kopaonik,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13170,16386,Serbia,METT,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13171,15596,Serbia,METT,2009,For storage only,28,Nacionalni park Tara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13172,16406,Serbia,METT,2009,For storage only,28,Jegricka,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13173,328838,Serbia,METT,2009,For storage only,28,Carska bara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13174,145250,Serbia,RAPPAM,2009,For storage only,28,Feljesana,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13175,20701,Serbia,METT,2012,For storage only,28,Ovcarsko-Kablarska klisura,Landscape of Outstanding Qualities,"GD-PAME, version pre-2017",Not Reported,2018,English -13176,16393,Serbia,RAPPAM,2009,For storage only,28,Palic,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13177,145132,Serbia,METT,2012,For storage only,28,Sargan - Mokra Gora,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13178,16399,Serbia,METT,2012,For storage only,28,Sicevacka klisura,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13179,145136,Serbia,RAPPAM,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13180,328849,Serbia,RAPPAM,2009,For storage only,28,Slano Kopovo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13181,145248,Serbia,METT,2009,For storage only,28,Danilova kosa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13182,16397,Serbia,RAPPAM,2009,For storage only,28,Stara planina,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13183,15596,Serbia,RAPPAM,2009,For storage only,28,Nacionalni park Tara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13184,20704,Serbia,METT,2012,For storage only,28,Veliko ratno ostrvo,Landscape of Outstanding Qualities,"GD-PAME, version pre-2017",Not Reported,2018,English -13185,145145,Serbia,RAPPAM,2009,For storage only,28,Veliki Sturac,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13186,13651,Suriname,METT,2010,For storage only,28,Bigi Pan,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13187,19574,Suriname,METT,2010,For storage only,28,Boven-Coesewijne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13188,277,Suriname,METT,2010,For storage only,28,Brinck-heuvel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13189,279,Suriname,METT,2010,For storage only,28,Brownsberg,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13190,220298,Suriname,WHA Outlook Report,2014,For storage only,28,Central Suriname Nature Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13191,12188,Suriname,METT,2010,For storage only,28,Copi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13192,282,Suriname,METT,2010,For storage only,28,Galibi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13193,303889,Suriname,METT,2010,For storage only,28,North Commewijne - Marowijne,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13194,303890,Suriname,METT,2010,For storage only,28,Noord Coronie,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13195,303892,Suriname,METT,2010,For storage only,28,Noord Saramacca,Multiple Use Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13196,12186,Suriname,METT,2010,For storage only,28,Peruvia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13197,276,Suriname,METT,2010,For storage only,28,Sipaliwini,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13198,280,Suriname,METT,2010,For storage only,28,Wia-Wia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13199,394688,Slovenia,RAPPAM,2009,For storage only,28,Goričko,Ecological Important Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13200,901260,Slovenia,Stockholm BR Survey,2008,For storage only,28,Julian Alps,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13201,394879,Slovenia,RAPPAM,2009,For storage only,28,Kolpa,Ecological Important Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13202,124157,Slovenia,RAPPAM,2009,For storage only,28,Kozjanski park,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13203,387295,Slovenia,Birdlife IBA,2013,For storage only,28,Krajinski park Ljubljansko barje,Landscape Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13204,394847,Slovenia,Birdlife IBA,2013,For storage only,28,Ljubljansko barje,Ecological Important Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13205,395208,Slovenia,Birdlife IBA,2013,For storage only,28,Ljubljansko barje,Specialy Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13206,395236,Slovenia,Birdlife IBA,2013,For storage only,28,Ljubljansko barje,Specialy Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13207,555535222,Slovenia,Birdlife IBA,2013,For storage only,28,Ljubljansko Barje,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -13208,555541579,Slovenia,Birdlife IBA,2013,For storage only,28,Ljubljansko barje,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -13209,63662,Slovenia,RAPPAM,2009,For storage only,28,Logarska dolina,Landscape Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13210,178735,Slovenia,RAPPAM,2009,For storage only,28,Notranjski regijski park,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13211,67621,Slovenia,RAPPAM,2009,For storage only,28,Sečoveljske soline,Landscape Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13212,12209,Slovenia,WHA Outlook Report,2014,For storage only,28,Škocjan Caves,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13213,326354,Slovenia,RAPPAM,2009,For storage only,28,Škocjanski zatok,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13214,394733,Slovenia,Birdlife IBA,2013,For storage only,28,Snežnik - Pivka,Ecological Important Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13215,395174,Slovenia,Birdlife IBA,2013,For storage only,28,Javorniki - Snežnik,Specialy Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13216,395224,Slovenia,Birdlife IBA,2013,For storage only,28,Snežnik - Pivka,Specialy Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13217,555535188,Slovenia,Birdlife IBA,2013,For storage only,28,Javorniki - Snežnik,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -13218,555541567,Slovenia,Birdlife IBA,2013,For storage only,28,Snežnik - Pivka,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -13219,902609,Slovenia,GOBI Survey,2006,For storage only,28,The Karst,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13220,902609,Slovenia,Stockholm BR Survey,2008,For storage only,28,The Karst,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13221,326108,Slovenia,European Diploma,2004,For storage only,28,Triglav,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -13222,2517,Slovenia,RAPPAM,2009,For storage only,28,Triglavski narodni park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13223,1342,Seychelles,Birdlife IBA,2001,For storage only,28,Aldabra,Special Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13224,5004,Seychelles,Birdlife IBA,2001,For storage only,28,Aldabra Atoll,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13225,555542730,Seychelles,Birdlife IBA,2001,For storage only,28,Aldabra Atoll,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13226,5004,Seychelles,Enhancing Our Heritage,2002,For storage only,28,Aldabra Atoll,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13227,5004,Seychelles,Enhancing Our Heritage,2007,For storage only,28,Aldabra Atoll,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13228,555542730,Seychelles,METT,2009,For storage only,28,Aldabra Atoll,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13229,5004,Seychelles,WHA Outlook Report,2014,For storage only,28,Aldabra Atoll,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13230,478637,Turkey;Seychelles,METT,2008,For storage only,28,Göreme National Park and the Rock Sites of Cappadocia,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13231,6939,Seychelles,West Indian Ocean MPA,2003,For storage only,28,Cousin Island,Special Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13232,6938,Seychelles,Birdlife IBA,2001,For storage only,28,Praslin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13233,9628,Seychelles,WHA Outlook Report,2014,For storage only,28,Vallée de Mai Nature Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13234,555558303,Chad,RAPPAM,2008,For storage only,28,Aouk,Hunting reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13235,5164,Chad,RAPPAM,2008,For storage only,28,Bahr Salamat,Faunal reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13236,5168,Chad,RAPPAM,2008,For storage only,28,Binder-Léré,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13238,9033,Chad,RAPPAM,2008,For storage only,28,Fada Archei,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13239,30017,Chad,Birdlife IBA,2001,For storage only,28,Lac Fitri,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13240,555547987,Chad,WHA Outlook Report,2014,For storage only,28,Lakes of Ounianga,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13241,642,Chad,RAPPAM,2008,For storage only,28,Manda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13242,5166,Chad,RAPPAM,2008,For storage only,28,Mandelia,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13243,111111,Egypt;Mali;Guinea;Chad;Mauritania;Cameroon,RAPPAM,2008,For storage only,28,Hideaway Islands,Research Natural Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13244,1250,Chad,RAPPAM,2008,For storage only,28,Ouadi-Rimé-Ouadi Achim,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13246,5165,Chad,RAPPAM,2008,For storage only,28,Siniaka-Minia,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13247,641,Chad,RAPPAM,2008,For storage only,28,Zakouma,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13248,39522,Thailand,Birdlife IBA,2004,For storage only,28,Chalerm Phrakiat Somdej Phrathep Ratchasuda,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13249,900615,Thailand,Birdlife IBA,2004,For storage only,28,Princess Sirindhorn Wildlife Sanctuary (Pru ToDaeng Wildlife Sanctuary),"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13250,935,Thailand,METT,2008,For storage only,28,Doi Inthanon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13251,312937,Thailand,Birdlife IBA,2007,For storage only,28,Doi Phukha,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13252,902480,Thailand,WHA Outlook Report,2014,For storage only,28,Dong Phayayen-Khao Yai Forest Complex,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13253,1407,Thailand,Birdlife IBA,2007,For storage only,28,Huai Kha Khaeng,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13254,4012,Thailand,Birdlife IBA,2007,For storage only,28,Kaengkrachan Forest Complex,National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13255,4012,Thailand,METT,2005,For storage only,28,Kaengkrachan Forest Complex,National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13256,1425,Thailand,Birdlife IBA,2007,For storage only,28,Khao Angruenai,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13257,938,Thailand,Birdlife IBA,2007,For storage only,28,Khao Chamao-Khao Wong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13258,938,Thailand,METT,2008,For storage only,28,Khao Chamao-Khao Wong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13259,940,Thailand,Birdlife IBA,2007,For storage only,28,Khao Khitchakut,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13260,18446,Thailand,Birdlife IBA,2007,For storage only,28,Khao Laem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13261,1412,Thailand,Birdlife IBA,2007,For storage only,28,Khao Soi Dao,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13262,927,Thailand,Asean MEE,2012,For storage only,28,Khao Yai,National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13263,927,Thailand,Birdlife IBA,2007,For storage only,28,Khao Yai,National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13264,7468,Thailand,METT,2009,For storage only,28,Khlong Lan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13265,312949,Thailand,METT,2005,For storage only,28,Kuiburi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13266,1411,Thailand,Birdlife IBA,2007,For storage only,28,Lum Nam Pai,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13267,312938,Thailand,Birdlife IBA,2007,For storage only,28,Mae Phang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13268,4675,Thailand,Birdlife IBA,2007,For storage only,28,Mae Ping,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13269,1406,Thailand,Birdlife IBA,2007,For storage only,28,Mae Tuen,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13270,19669,Thailand,Birdlife IBA,2013,For storage only,28,Mae Wong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13271,19670,Thailand,Birdlife IBA,2013,For storage only,28,Mae Yom,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13272,2109,Thailand,GOBI Survey,2006,For storage only,28,Mae Sa-Kog Ma Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13273,312947,Thailand,Birdlife IBA,2007,For storage only,28,Namtok Huai Yang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13274,8037,Thailand,Birdlife IBA,2007,For storage only,28,Pang Sida,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13275,8037,Thailand,METT,2005,For storage only,28,Pang Sida,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13276,1408,Thailand,Birdlife IBA,2007,For storage only,28,Phu Khiew,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13277,1413,Thailand,Birdlife IBA,2007,For storage only,28,Phu Luang,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13278,1413,Thailand,METT,2005,For storage only,28,Phu Luang,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13279,1417,Thailand,Birdlife IBA,2007,For storage only,28,Phu Miang - Phu Thong,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13280,931,Thailand,Birdlife IBA,2007,For storage only,28,Phu Phan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13281,4003,Thailand,Birdlife IBA,2007,For storage only,28,Sai Yok,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13282,1414,Thailand,Birdlife IBA,2007,For storage only,28,Salak Phra,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13283,555512235,Thailand,Birdlife IBA,2007,For storage only,28,Salawin,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13284,5118,Thailand,Birdlife IBA,2007,For storage only,28,Khuen Si Nakarin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13285,31257,Thailand,Birdlife IBA,2007,For storage only,28,Sub Langka,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13286,8040,Thailand,Birdlife IBA,2007,For storage only,28,Thap Lan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13287,929,Thailand,Birdlife IBA,2007,For storage only,28,Thung Salaeng Luang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13288,1405,Thailand,Birdlife IBA,2007,For storage only,28,Thungyai Naresuan,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13289,67729,Thailand,Birdlife IBA,2007,For storage only,28,Thungyai - Huai Kha Khaeng Wildlife Sanctuaries,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13290,1405,Thailand,METT,2005,For storage only,28,Thungyai Naresuan,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13291,67729,Thailand,WHA Outlook Report,2014,For storage only,28,Thungyai - Huai Kha Khaeng Wildlife Sanctuaries,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13292,1422,Thailand,Birdlife IBA,2007,For storage only,28,Yod Dom,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13293,167090,Tajikistan,Birdlife IBA,2006,For storage only,28,Искандеркульский,Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13294,1736,Tajikistan,METT,2004,For storage only,28,Ромит,Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13295,1736,Tajikistan,METT,2008,For storage only,28,Ромит,Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13296,1736,Tajikistan,METT,2011,For storage only,28,Ромит,Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13297,167121,Tajikistan,METT,2004,For storage only,28,Ширкентский историко-природный парк,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13298,167121,Tajikistan,METT,2008,For storage only,28,Ширкентский историко-природный парк,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13299,167121,Tajikistan,METT,2011,For storage only,28,Ширкентский историко-природный парк,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13300,555556049,Tajikistan,WHA Outlook Report,2014,For storage only,28,Tajik National Park (Mountains of the Pamirs),World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13301,167070,Turkmenistan,METT,2003,For storage only,28,Amu-Darya,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13302,167070,Turkmenistan,METT,2005,For storage only,28,Amu-Darya,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13303,167070,Turkmenistan,METT,2012,For storage only,28,Amu-Darya,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13304,167071,Turkmenistan,METT,2012,For storage only,28,Badkhyz,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13305,167071,Turkmenistan,METT,2003,For storage only,28,Badkhyz,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13306,167071,Turkmenistan,METT,2005,For storage only,28,Badkhyz,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13307,167099,Turkmenistan,METT,2012,For storage only,28,Hazar,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13308,167099,Turkmenistan,METT,2005,For storage only,28,Hazar,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13309,167099,Turkmenistan,METT,2009,For storage only,28,Hazar,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13310,167106,Turkmenistan,METT,2012,For storage only,28,Kopetdag,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13311,1737,Turkmenistan,METT,0,For storage only,28,Kaplangurskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13312,167070,Turkmenistan,METT,0,For storage only,28,Amu-Darya,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13313,167071,Turkmenistan,METT,0,For storage only,28,Badkhyz,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13314,167106,Turkmenistan,METT,0,For storage only,28,Kopetdag,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13315,167107,Turkmenistan,METT,0,For storage only,28,Kugitang,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13316,167124,Turkmenistan,METT,0,For storage only,28,Sunt-Khasardag,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13317,2166,Turkmenistan,METT,2012,For storage only,28,Repetek Zapovednik,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13318,167124,Turkmenistan,METT,2003,For storage only,28,Sunt-Khasardag,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13319,167124,Turkmenistan,METT,2005,For storage only,28,Sunt-Khasardag,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13320,167124,Turkmenistan,METT,2012,For storage only,28,Sunt-Khasardag,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13321,315555,Tonga,Birdlife IBA,2007,For storage only,28,Tofua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13322,32564,Tunisia,Birdlife IBA,2001,For storage only,28,Bahiret El Bibane,Wetland Zone of National Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -13323,4487,Tunisia,METT,2012,For storage only,28,Bouhedma,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13324,101837,Tunisia,METT,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13325,13963,Tunisia,GOBI Survey,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13326,17744,Tunisia,METT,2003,For storage only,28,El Feïja,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13327,4322,Tunisia,WHA Outlook Report,2014,For storage only,28,Ichkeul National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13328,903086,Tunisia,Birdlife IBA,2001,For storage only,28,Sebkhet Sejoumi,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13329,95401,Turkey,Birdlife IBA,2011,For storage only,28,Lake Burdur,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13330,555547529,Turkey,GOBI Survey,2006,For storage only,28,Camili,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13331,555549444,Turkey,METT,2003,For storage only,28,Camili,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13332,95399,Turkey,Birdlife IBA,2013,For storage only,28,Göksu Delta,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13333,478637,Turkey;Seychelles,RAPPAM,2005,For storage only,28,Göreme National Park and the Rock Sites of Cappadocia,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13334,478637,Turkey;Seychelles,RAPPAM,2009,For storage only,28,Göreme National Park and the Rock Sites of Cappadocia,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13335,478637,Turkey;Seychelles,WHA Outlook Report,2014,For storage only,28,Göreme National Park and the Rock Sites of Cappadocia,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13336,478640,Turkey,WHA Outlook Report,2014,For storage only,28,Hierapolis-Pamukkale,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13337,166757,Turkey,Birdlife IBA,2011,For storage only,28,Kizilirmak Delta,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13338,95403,Turkey,Birdlife IBA,2000,For storage only,28,Lake Kus,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13339,925,"Tanzania, United Republic of",Birdlife IBA,2002,For storage only,28,Arusha National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13340,7886,"Tanzania, United Republic of",Birdlife IBA,2002,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13341,301444,"Tanzania, United Republic of",METT,2005,For storage only,28,Bagai,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13342,303471,"Tanzania, United Republic of",METT,2005,For storage only,28,Balangai West,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13343,301476,"Tanzania, United Republic of",METT,2005,For storage only,28,Bamba Ridge,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13344,301476,"Tanzania, United Republic of",METT,2011,For storage only,28,Bamba Ridge,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13345,303466,"Tanzania, United Republic of",METT,2005,For storage only,28,Bombo East II,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13346,301462,"Tanzania, United Republic of",METT,2005,For storage only,28,Bombo West,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13347,301462,"Tanzania, United Republic of",METT,2009,For storage only,28,Bombo West,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13348,303516,"Tanzania, United Republic of",METT,2005,For storage only,28,Chamanyani,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13349,301431,"Tanzania, United Republic of",METT,2005,For storage only,28,Chambogo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13350,301431,"Tanzania, United Republic of",METT,2009,For storage only,28,Chambogo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13351,301431,"Tanzania, United Republic of",METT,2006,For storage only,28,Chambogo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13352,303575,"Tanzania, United Republic of",METT,2005,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13353,303575,"Tanzania, United Republic of",METT,2014,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13354,303575,"Tanzania, United Republic of",METT,2006,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13356,303575,"Tanzania, United Republic of",METT,2007,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13358,303575,"Tanzania, United Republic of",METT,2011,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13359,303575,"Tanzania, United Republic of",METT,0,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13360,303575,"Tanzania, United Republic of",METT,2013,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13361,303575,"Tanzania, United Republic of",METT,2012,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13362,303351,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13363,301436,"Tanzania, United Republic of",METT,2005,For storage only,28,Chongweni,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13364,303523,"Tanzania, United Republic of",METT,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13365,350016,"Tanzania, United Republic of",METT,2005,For storage only,28,Derema,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13367,301687,"Tanzania, United Republic of",METT,2007,For storage only,28,Ndimba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13368,301687,"Tanzania, United Republic of",METT,2011,For storage only,28,Ndimba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13369,301687,"Tanzania, United Republic of",METT,2006,For storage only,28,Ndimba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13370,301561,"Tanzania, United Republic of",METT,2005,For storage only,28,Dindili,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13371,301547,"Tanzania, United Republic of",METT,2013,For storage only,28,Dodoma Reservoir,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13373,303486,"Tanzania, United Republic of",METT,2011,For storage only,28,South Gendagenda,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13374,301437,"Tanzania, United Republic of",METT,2005,For storage only,28,Gonja,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13375,301544,"Tanzania, United Republic of",METT,2011,For storage only,28,Gwami,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13376,301621,"Tanzania, United Republic of",METT,2005,For storage only,28,Idewa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13377,301621,"Tanzania, United Republic of",METT,2009,For storage only,28,Idewa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13378,301618,"Tanzania, United Republic of",METT,2009,For storage only,28,Ihanga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13379,301618,"Tanzania, United Republic of",METT,2005,For storage only,28,Ihanga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13381,301618,"Tanzania, United Republic of",METT,2013,For storage only,28,Ihanga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13383,303509,"Tanzania, United Republic of",METT,2005,For storage only,28,Ikwamba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13384,303509,"Tanzania, United Republic of",METT,2013,For storage only,28,Ikwamba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13385,303378,"Tanzania, United Republic of",METT,2005,For storage only,28,Image,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13386,303378,"Tanzania, United Republic of",METT,2013,For storage only,28,Image,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13387,301612,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13388,350036,"Tanzania, United Republic of",METT,2007,For storage only,28,Jozani-Chwaka Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13389,350036,"Tanzania, United Republic of",METT,2006,For storage only,28,Jozani-Chwaka Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13392,350036,"Tanzania, United Republic of",METT,2011,For storage only,28,Jozani-Chwaka Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13393,350036,"Tanzania, United Republic of",METT,2014,For storage only,28,Jozani-Chwaka Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13394,350036,"Tanzania, United Republic of",METT,2013,For storage only,28,Jozani-Chwaka Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13395,303475,"Tanzania, United Republic of",METT,2005,For storage only,28,Kambai,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13396,303475,"Tanzania, United Republic of",METT,2011,For storage only,28,Kambai,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13397,303582,"Tanzania, United Republic of",METT,2005,For storage only,28,Kambona,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13398,303582,"Tanzania, United Republic of",METT,2012,For storage only,28,Kambona,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13399,354044,"Tanzania, United Republic of",METT,2005,For storage only,28,Kamwalla I,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13400,354045,"Tanzania, United Republic of",METT,2005,For storage only,28,Kamwalla II,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13401,301528,"Tanzania, United Republic of",METT,2005,For storage only,28,Kanga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13402,301528,"Tanzania, United Republic of",METT,2009,For storage only,28,Kanga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13403,301528,"Tanzania, United Republic of",METT,2006,For storage only,28,Kanga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13404,301440,"Tanzania, United Republic of",METT,2005,For storage only,28,Kankoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13405,303451,"Tanzania, United Republic of",METT,2005,For storage only,28,Kiranga Hengae,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13406,921,"Tanzania, United Republic of",Birdlife IBA,2005,For storage only,28,Katavi National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13407,301615,"Tanzania, United Republic of",METT,2014,For storage only,28,Katundu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13408,301615,"Tanzania, United Republic of",METT,2011,For storage only,28,Katundu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13409,301615,"Tanzania, United Republic of",METT,2013,For storage only,28,Katundu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13410,301463,"Tanzania, United Republic of",METT,2005,For storage only,28,Kwembago,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13411,301463,"Tanzania, United Republic of",METT,2013,For storage only,28,Kwembago,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13412,301571,"Tanzania, United Republic of",METT,2011,For storage only,28,Kazimzumbwi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13413,40922,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13414,19775,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13415,301635,"Tanzania, United Republic of",METT,2005,For storage only,28,Kibao,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13416,351707,"Tanzania, United Republic of",METT,2005,For storage only,28,Kichi Hills,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13417,351707,"Tanzania, United Republic of",METT,2014,For storage only,28,Kichi Hills,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13418,351707,"Tanzania, United Republic of",METT,2013,For storage only,28,Kichi Hills,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13419,351707,"Tanzania, United Republic of",METT,2011,For storage only,28,Kichi Hills,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13420,301641,"Tanzania, United Republic of",METT,2005,For storage only,28,Kigogo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13421,301512,"Tanzania, United Republic of",METT,2013,For storage only,28,Kilindi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13422,303524,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13423,303513,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13424,350028,"Tanzania, United Republic of",METT,2013,For storage only,28,Kiranzi Kitunguu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13425,350028,"Tanzania, United Republic of",METT,2005,For storage only,28,Kiranzi Kitunguu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13426,17761,"Tanzania, United Republic of",WHA Outlook Report,2014,For storage only,28,Kilimanjaro National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13427,301512,"Tanzania, United Republic of",METT,2005,For storage only,28,Kilindi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13428,301512,"Tanzania, United Republic of",METT,2009,For storage only,28,Kilindi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13429,301512,"Tanzania, United Republic of",METT,2006,For storage only,28,Kilindi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13430,19748,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13431,301642,"Tanzania, United Republic of",METT,2011,For storage only,28,Mangroves-Bagamoyo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13432,7520,"Tanzania, United Republic of",METT,2005,For storage only,28,Kimboza,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13434,7520,"Tanzania, United Republic of",METT,2006,For storage only,28,Kimboza,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13435,301420,"Tanzania, United Republic of",METT,2005,For storage only,28,Kindoroko,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13436,303522,"Tanzania, United Republic of",METT,2011,For storage only,28,Kingoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13437,301682,"Tanzania, United Republic of",METT,2012,For storage only,28,Nyera/Kiperere,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13438,303527,"Tanzania, United Republic of",METT,2011,For storage only,28,Kipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13439,19474,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13440,301568,"Tanzania, United Republic of",Birdlife IBA,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13441,301465,"Tanzania, United Republic of",METT,2005,For storage only,28,Kisima Gonja,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13442,301601,"Tanzania, United Republic of",METT,2006,For storage only,28,Kisinga Lugaro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13443,301601,"Tanzania, United Republic of",METT,2005,For storage only,28,Kisinga Lugaro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13444,301601,"Tanzania, United Republic of",METT,2013,For storage only,28,Kisinga Lugaro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13445,303445,"Tanzania, United Republic of",METT,2005,For storage only,28,Kisiwani,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13446,301458,"Tanzania, United Republic of",METT,2005,For storage only,28,Kitara Ridge,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13447,301629,"Tanzania, United Republic of",METT,2008,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13448,301629,"Tanzania, United Republic of",METT,2014,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13449,301629,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13450,301629,"Tanzania, United Republic of",METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13451,350003,"Tanzania, United Republic of",METT,2010,For storage only,28,Kitulo Plateau National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13452,354046,"Tanzania, United Republic of",METT,2005,For storage only,28,Kiverenge,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13453,354046,"Tanzania, United Republic of",METT,2009,For storage only,28,Kiverenge,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13455,303383,"Tanzania, United Republic of",METT,2005,For storage only,28,Kiwengoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13456,303383,"Tanzania, United Republic of",METT,2013,For storage only,28,Kiwengoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13457,303383,"Tanzania, United Republic of",METT,2014,For storage only,28,Kiwengoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13458,303383,"Tanzania, United Republic of",METT,2011,For storage only,28,Kiwengoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13459,31760,"Tanzania, United Republic of",METT,2011,For storage only,28,Kiwengwa Pongwe,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13460,31760,"Tanzania, United Republic of",METT,2007,For storage only,28,Kiwengwa Pongwe,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13461,351703,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13462,303443,"Tanzania, United Republic of",METT,2005,For storage only,28,Koko Hill,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13463,303481,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13464,303860,"Tanzania, United Republic of",METT,2011,For storage only,28,Mkundi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13465,301487,"Tanzania, United Republic of",METT,2011,For storage only,28,Kwamrimba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13466,301487,"Tanzania, United Republic of",METT,2005,For storage only,28,Kwamrimba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13467,301479,"Tanzania, United Republic of",METT,2011,For storage only,28,Kwamgumi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13468,301479,"Tanzania, United Republic of",METT,2005,For storage only,28,Kwamgumi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13469,303484,"Tanzania, United Republic of",METT,2005,For storage only,28,Kwani,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13470,303484,"Tanzania, United Republic of",METT,2011,For storage only,28,Kwani,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13471,378263,"Tanzania, United Republic of",METT,2005,For storage only,28,NSG Ratinger Sandberge ,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13472,303444,"Tanzania, United Republic of",METT,2005,For storage only,28,Kwizu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13473,924,"Tanzania, United Republic of",Birdlife IBA,2002,For storage only,28,Lake Manyara National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13474,900623,"Tanzania, United Republic of",Birdlife IBA,2001,For storage only,28,Lake Natron Basin,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13475,301703,"Tanzania, United Republic of",METT,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13477,303576,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13478,303576,"Tanzania, United Republic of",METT,2014,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13479,303576,"Tanzania, United Republic of",METT,0,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13480,303576,"Tanzania, United Republic of",METT,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13482,303576,"Tanzania, United Republic of",METT,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13483,303576,"Tanzania, United Republic of",METT,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13484,303576,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13485,303576,"Tanzania, United Republic of",METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13486,352700,"Tanzania, United Republic of",METT,2012,For storage only,28,Lukwika-Lumesule G.R.,Game reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13488,303367,"Tanzania, United Republic of",METT,2005,For storage only,28,Kilanga (Nilo),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13489,301478,"Tanzania, United Republic of",METT,2005,For storage only,28,Mafi Hill,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13490,301567,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13491,301435,"Tanzania, United Republic of",METT,2005,For storage only,28,Maganda,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13492,7436,"Tanzania, United Republic of",METT,2013,For storage only,28,Magombera,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13493,301640,"Tanzania, United Republic of",METT,2005,For storage only,28,Mahenge Scarp,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13494,350012,"Tanzania, United Republic of",METT,2005,For storage only,28,Mahezangulu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13495,303583,"Tanzania, United Republic of",METT,2012,For storage only,28,Makonde Scarp I,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13496,303583,"Tanzania, United Republic of",METT,2005,For storage only,28,Makonde Scarp I,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13497,303583,"Tanzania, United Republic of",METT,2006,For storage only,28,Makonde Scarp I,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13498,303391,"Tanzania, United Republic of",METT,2005,For storage only,28,Makonde Scarp II,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13499,303391,"Tanzania, United Republic of",METT,2006,For storage only,28,Makonde Scarp II,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13500,555556080,"Tanzania, United Republic of",METT,2005,For storage only,28,Makonde Scarp III,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13501,555556080,"Tanzania, United Republic of",METT,2006,For storage only,28,Makonde Scarp III,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13502,301685,"Tanzania, United Republic of",METT,2014,For storage only,28,Malehi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13503,301685,"Tanzania, United Republic of",METT,2009,For storage only,28,Malehi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13504,301685,"Tanzania, United Republic of",METT,2011,For storage only,28,Malehi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13505,301685,"Tanzania, United Republic of",METT,2013,For storage only,28,Malehi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13506,478262,"Tanzania, United Republic of",METT,2005,For storage only,28,Mamboto,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13507,478262,"Tanzania, United Republic of",METT,2013,For storage only,28,Mamboto,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13508,303502,"Tanzania, United Republic of",METT,2005,For storage only,28,Mamboya,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13509,303502,"Tanzania, United Republic of",METT,2013,For storage only,28,Mamboya,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13510,301553,"Tanzania, United Republic of",METT,0,For storage only,28,Mamiwa Kisara South,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13511,301553,"Tanzania, United Republic of",METT,2005,For storage only,28,Mamiwa Kisara South,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13512,301553,"Tanzania, United Republic of",METT,2006,For storage only,28,Mamiwa Kisara South,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13513,301553,"Tanzania, United Republic of",METT,2007,For storage only,28,Mamiwa Kisara South,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13515,303526,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13516,301585,"Tanzania, United Republic of",METT,2005,For storage only,28,Mangalisa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13517,303519,"Tanzania, United Republic of",METT,2011,For storage only,28,Marenda,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13518,301656,"Tanzania, United Republic of",METT,2013,For storage only,28,Masagati,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13519,350026,"Tanzania, United Republic of",METT,2011,For storage only,28,Masanganya,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13520,31757,"Tanzania, United Republic of",METT,2011,For storage only,28,Masingini Catchment Forest,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13521,7437,"Tanzania, United Republic of",Birdlife IBA,2001,For storage only,28,Maswa G.R. (N),Game reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13522,301693,"Tanzania, United Republic of",METT,2011,For storage only,28,Matapwa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13523,301719,"Tanzania, United Republic of",METT,2012,For storage only,28,Mbagala,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13525,555549305,"Tanzania, United Republic of",METT,2013,For storage only,28,Mbarang'andu WMA,Wildlife management area,"GD-PAME, version pre-2017",Not Reported,2018,English -13526,301634,"Tanzania, United Republic of",METT,2014,For storage only,28,Mbinga Kimaji / Kimate,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13527,301634,"Tanzania, United Republic of",METT,2009,For storage only,28,Mbinga Kimaji / Kimate,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13528,301634,"Tanzania, United Republic of",METT,2013,For storage only,28,Mbinga Kimaji / Kimate,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13529,301634,"Tanzania, United Republic of",METT,2011,For storage only,28,Mbinga Kimaji / Kimate,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13530,19495,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13531,350017,"Tanzania, United Republic of",METT,2005,For storage only,28,Mbwegere,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13532,19478,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13533,303523,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13535,351701,"Tanzania, United Republic of",METT,2005,For storage only,28,Mfumbia,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13536,19470,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13537,919,"Tanzania, United Republic of",Birdlife IBA,2002,For storage only,28,Mikumi National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13538,919,"Tanzania, United Republic of",METT,2007,For storage only,28,Mikumi National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13539,919,"Tanzania, United Republic of",METT,2006,For storage only,28,Mikumi National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13540,301432,"Tanzania, United Republic of",METT,2005,For storage only,28,Minja,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13541,301647,"Tanzania, United Republic of",METT,2008,For storage only,28,Mtarure,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13542,301647,"Tanzania, United Republic of",METT,2013,For storage only,28,Mtarure,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13543,303387,"Tanzania, United Republic of",METT,2014,For storage only,28,Mitundumbea,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13544,303387,"Tanzania, United Republic of",METT,2008,For storage only,28,Mitundumbea,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13545,303387,"Tanzania, United Republic of",METT,2013,For storage only,28,Mitundumbea,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13546,303387,"Tanzania, United Republic of",METT,2011,For storage only,28,Mitundumbea,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13547,350021,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13548,301503,"Tanzania, United Republic of",METT,2005,For storage only,28,Mkongo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13549,301522,"Tanzania, United Republic of",METT,2005,For storage only,28,Mkuli Exten.,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13550,301565,"Tanzania, United Republic of",METT,2005,For storage only,28,Mkungwe,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13551,350008,"Tanzania, United Republic of",METT,2005,For storage only,28,Mkusu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13552,350008,"Tanzania, United Republic of",METT,2009,For storage only,28,Mkusu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13553,350008,"Tanzania, United Republic of",METT,2006,For storage only,28,Mkusu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13554,301549,"Tanzania, United Republic of",METT,2005,For storage only,28,Mlali,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13555,351710,"Tanzania, United Republic of",METT,2011,For storage only,28,Mlola,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13557,351702,"Tanzania, United Republic of",METT,2011,For storage only,28,Mlungui,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13558,220235,"Tanzania, United Republic of",METT,2009,For storage only,28,Mnazi Bay-Ruvuma Estuary,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13559,303526,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13561,352703,"Tanzania, United Republic of",METT,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13562,301415,"Tanzania, United Republic of",METT,2005,For storage only,28,Mramba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13563,301415,"Tanzania, United Republic of",METT,2009,For storage only,28,Mramba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13564,301415,"Tanzania, United Republic of",METT,2006,For storage only,28,Mramba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13565,352701,"Tanzania, United Republic of",METT,2012,For storage only,28,Msanjesi GR/Kipitimbi/Lionja FR,Game reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13566,301646,"Tanzania, United Republic of",METT,2005,For storage only,28,Mselezi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13567,301646,"Tanzania, United Republic of",METT,2009,For storage only,28,Mselezi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13568,31762,"Tanzania, United Republic of",METT,2007,For storage only,28,Msitu Mkuu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13569,31762,"Tanzania, United Republic of",METT,2011,For storage only,28,Msitu Mkuu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13570,301505,"Tanzania, United Republic of",METT,2011,For storage only,28,Msumbugwe,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13571,301662,"Tanzania, United Republic of",METT,2010,For storage only,28,Rungwe,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13572,301469,"Tanzania, United Republic of",METT,2005,For storage only,28,Mtai,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13573,301469,"Tanzania, United Republic of",METT,2006,For storage only,28,Mtai,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13574,301602,"Tanzania, United Republic of",METT,2011,For storage only,28,Mtanza,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13575,301592,"Tanzania, United Republic of",METT,2011,For storage only,28,Mtita,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13576,301453,"Tanzania, United Republic of",METT,2005,For storage only,28,Mtumbi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13577,301638,"Tanzania, United Republic of",METT,2005,For storage only,28,Mufindi Scarp,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13579,350029,"Tanzania, United Republic of",METT,2011,For storage only,28,Mohoro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13580,31766,"Tanzania, United Republic of",METT,2011,For storage only,28,Mohoro River,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13581,301654,"Tanzania, United Republic of",METT,2005,For storage only,28,Mhulu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13582,303517,"Tanzania, United Republic of",METT,2005,For storage only,28,Mvuha,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13583,301722,"Tanzania, United Republic of",METT,2013,For storage only,28,Mwambesi,Forest Reserve and Game Controlled Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13584,303585,"Tanzania, United Republic of",METT,2012,For storage only,28,Nagaga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13585,301639,"Tanzania, United Republic of",METT,2006,For storage only,28,Nambinga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13586,301639,"Tanzania, United Republic of",METT,2005,For storage only,28,Nambinga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13587,301639,"Tanzania, United Republic of",METT,2009,For storage only,28,Nambinga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13588,41079,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13589,303392,"Tanzania, United Republic of",METT,2013,For storage only,28,Nandembo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13590,301720,"Tanzania, United Republic of",METT,2005,For storage only,28,Ndechela,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13591,301475,"Tanzania, United Republic of",METT,2005,For storage only,28,Ndekemai,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13592,301488,"Tanzania, United Republic of",METT,2005,For storage only,28,Ndolwa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13593,303531,"Tanzania, United Republic of",METT,2005,For storage only,28,Dabaga New,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13594,303531,"Tanzania, United Republic of",METT,2013,For storage only,28,Dabaga New,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13595,301663,"Tanzania, United Republic of",METT,2014,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13596,301663,"Tanzania, United Republic of",METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13597,301663,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13598,301663,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13599,301663,"Tanzania, United Republic of",METT,2008,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13604,555556107,"Tanzania, United Republic of",METT,2014,For storage only,28,Ngezi-Vumawimbi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13605,555556107,"Tanzania, United Republic of",METT,2012,For storage only,28,Ngezi-Vumawimbi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13606,555556107,"Tanzania, United Republic of",METT,2007,For storage only,28,Ngezi-Vumawimbi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13607,555556107,"Tanzania, United Republic of",METT,2011,For storage only,28,Ngezi-Vumawimbi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13608,918,"Tanzania, United Republic of",Birdlife IBA,2001,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13609,2010,"Tanzania, United Republic of",Birdlife IBA,2001,For storage only,28,Ngorongoro Conservation Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13610,2010,"Tanzania, United Republic of",WHA Outlook Report,2014,For storage only,28,Ngorongoro Conservation Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13611,303525,"Tanzania, United Republic of",METT,2011,For storage only,28,Ngulakula,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13612,303380,"Tanzania, United Republic of",METT,2011,For storage only,28,Nyumburuni,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13613,350015,"Tanzania, United Republic of",METT,2005,For storage only,28,Nguru North,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13614,350015,"Tanzania, United Republic of",METT,2006,For storage only,28,Nguru North,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13615,301532,"Tanzania, United Republic of",METT,2005,For storage only,28,Talagwe,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13617,303367,"Tanzania, United Republic of",METT,2009,For storage only,28,Kilanga (Nilo),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13618,303367,"Tanzania, United Republic of",METT,2006,For storage only,28,Kilanga (Nilo),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13619,41069,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13620,303389,"Tanzania, United Republic of",METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13621,19477,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13622,301613,"Tanzania, United Republic of",METT,2005,For storage only,28,Nyaganje,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13624,301588,"Tanzania, United Republic of",METT,2005,For storage only,28,Pala Mountains,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13625,303333,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13626,303333,"Tanzania, United Republic of",Birdlife IBA,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13627,301588,"Tanzania, United Republic of",METT,2013,For storage only,28,Pala Mountains,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13628,301676,"Tanzania, United Republic of",METT,2005,For storage only,28,Pindiro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13629,301676,"Tanzania, United Republic of",METT,2008,For storage only,28,Pindiro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13630,301676,"Tanzania, United Republic of",METT,2014,For storage only,28,Pindiro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13631,301676,"Tanzania, United Republic of",METT,2013,For storage only,28,Pindiro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13632,301676,"Tanzania, United Republic of",METT,2011,For storage only,28,Pindiro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13633,301570,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13634,301517,"Tanzania, United Republic of",METT,2005,For storage only,28,Pumula,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13635,31764,"Tanzania, United Republic of",METT,2011,For storage only,28,Ras Kiuyu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13636,301702,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13637,301702,"Tanzania, United Republic of",METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13638,301702,"Tanzania, United Republic of",METT,2014,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13640,301702,"Tanzania, United Republic of",METT,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13642,301702,"Tanzania, United Republic of",METT,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13643,301702,"Tanzania, United Republic of",METT,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13644,301702,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13645,917,"Tanzania, United Republic of",METT,2010,For storage only,28,Ruaha National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13646,917,"Tanzania, United Republic of",METT,2013,For storage only,28,Ruaha National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13647,917,"Tanzania, United Republic of",Birdlife IBA,2002,For storage only,28,Ruaha National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13648,917,"Tanzania, United Republic of",METT,2011,For storage only,28,Ruaha National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13649,301692,"Tanzania, United Republic of",METT,2006,For storage only,28,Ruawa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13651,301692,"Tanzania, United Republic of",METT,2007,For storage only,28,Ruawa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13652,301692,"Tanzania, United Republic of",METT,2011,For storage only,28,Ruawa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13653,301521,"Tanzania, United Republic of",METT,2005,For storage only,28,Rudewa South,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13654,902412,"Tanzania, United Republic of",METT,2007,For storage only,28,Rufiji-Mafia-Kilwa,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13656,902412,"Tanzania, United Republic of",METT,2011,For storage only,28,Rufiji-Mafia-Kilwa,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13657,301595,"Tanzania, United Republic of",METT,2011,For storage only,28,Ruhoi River,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13659,301673,"Tanzania, United Republic of",METT,2014,For storage only,28,Rungo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13660,301673,"Tanzania, United Republic of",METT,2013,For storage only,28,Rungo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13661,301673,"Tanzania, United Republic of",METT,2008,For storage only,28,Rungo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13662,301673,"Tanzania, United Republic of",METT,2011,For storage only,28,Rungo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13663,303529,"Tanzania, United Republic of",METT,2014,For storage only,28,Rupiage,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13664,303529,"Tanzania, United Republic of",METT,2011,For storage only,28,Rupiage,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13665,303529,"Tanzania, United Republic of",METT,2013,For storage only,28,Rupiage,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13666,303377,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13667,301568,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13668,7434,"Tanzania, United Republic of",METT,2011,For storage only,28,Saadani National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13669,303354,"Tanzania, United Republic of",METT,2013,For storage only,28,Salanga/Bereku,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13670,378253,"Tanzania, United Republic of",METT,2005,For storage only,28,NSG Oestlicher Teutoburger Wald (LP BI-West),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13671,301717,"Tanzania, United Republic of",METT,2013,For storage only,28,Sasawara,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13672,301480,"Tanzania, United Republic of",METT,2011,For storage only,28,Sengoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13673,1399,"Tanzania, United Republic of",METT,2003,For storage only,28,Selous G.R,Game reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13674,5005,"Tanzania, United Republic of",METT,2009,For storage only,28,Selous Game Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13675,1399,"Tanzania, United Republic of",Birdlife IBA,2001,For storage only,28,Selous G.R,Game reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13676,5005,"Tanzania, United Republic of",Birdlife IBA,2001,For storage only,28,Selous Game Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13677,5005,"Tanzania, United Republic of",METT,2007,For storage only,28,Selous Game Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13679,5005,"Tanzania, United Republic of",WHA Outlook Report,2014,For storage only,28,Selous Game Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13680,5005,"Tanzania, United Republic of",METT,2012,For storage only,28,Selous Game Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13681,1399,"Tanzania, United Republic of",METT,2004,For storage only,28,Selous G.R,Game reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13682,351704,"Tanzania, United Republic of",METT,2011,For storage only,28,Semdoe/Msige,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13683,916,"Tanzania, United Republic of",Birdlife IBA,2001,For storage only,28,Serengeti National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13684,2575,"Tanzania, United Republic of",Birdlife IBA,2001,For storage only,28,Serengeti National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13685,2575,"Tanzania, United Republic of",WHA Outlook Report,2014,For storage only,28,Serengeti National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13686,301442,"Tanzania, United Republic of",METT,2005,For storage only,28,Shagayu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13687,303467,"Tanzania, United Republic of",METT,2005,For storage only,28,Shambalai,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13688,301450,"Tanzania, United Republic of",METT,2005,For storage only,28,Shume Magamba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13689,303512,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13690,301532,"Tanzania, United Republic of",METT,2007,For storage only,28,Talagwe,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13691,301624,"Tanzania, United Republic of",METT,2014,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13692,301624,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13693,301624,"Tanzania, United Republic of",METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13694,920,"Tanzania, United Republic of",Birdlife IBA,2011,For storage only,28,Tarangire National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13695,61723,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13696,350030,"Tanzania, United Republic of",METT,2008,For storage only,28,Tongomba New,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13698,350030,"Tanzania, United Republic of",METT,2005,For storage only,28,Tongomba New,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13699,350030,"Tanzania, United Republic of",METT,2014,For storage only,28,Tongomba New,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13700,350030,"Tanzania, United Republic of",METT,2013,For storage only,28,Tongomba New,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13701,350030,"Tanzania, United Republic of",METT,2011,For storage only,28,Tongomba New,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13702,350014,"Tanzania, United Republic of",METT,2005,For storage only,28,Tongwe,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13703,19297,"Tanzania, United Republic of",METT,2003,For storage only,28,Udzungwa Mountains National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13704,19297,"Tanzania, United Republic of",METT,2007,For storage only,28,Udzungwa Mountains National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13706,9043,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13707,301577,"Tanzania, United Republic of",METT,2005,For storage only,28,Ukwiva,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13708,301577,"Tanzania, United Republic of",METT,2009,For storage only,28,Ukwiva,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13709,301577,"Tanzania, United Republic of",METT,2006,For storage only,28,Ukwiva,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13710,301577,"Tanzania, United Republic of",METT,2013,For storage only,28,Ukwiva,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13711,19476,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13712,301564,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13713,301564,"Tanzania, United Republic of",METT,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13714,301578,"Tanzania, United Republic of",METT,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13715,301578,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13716,301578,"Tanzania, United Republic of",METT,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13717,303506,"Tanzania, United Republic of",METT,2005,For storage only,28,Uponera,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13718,301527,"Tanzania, United Republic of",METT,2011,For storage only,28,Uzigua,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13719,303559,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13720,303476,"Tanzania, United Republic of",METT,2005,For storage only,28,Vugiri,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13721,301428,"Tanzania, United Republic of",METT,2005,For storage only,28,Vumari,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13722,301428,"Tanzania, United Republic of",METT,2009,For storage only,28,Vumari,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13723,301596,"Tanzania, United Republic of",METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13724,301556,"Tanzania, United Republic of",METT,2005,For storage only,28,Wotta,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13725,40923,"Tanzania, United Republic of",METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13726,303358,"Tanzania, United Republic of",METT,2003,For storage only,28,Zaraninge,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13727,1445,Uganda,Birdlife IBA,2001,For storage only,28,Ajai,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13728,34804,Uganda,METT,2012,For storage only,28,Budongo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13729,34804,Uganda,Birdlife IBA,2001,For storage only,28,Budongo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13730,34805,Uganda,METT,2003,For storage only,28,Bugoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13731,34805,Uganda,METT,2011,For storage only,28,Bugoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13732,34805,Uganda,METT,2012,For storage only,28,Bugoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13733,34805,Uganda,METT,2006,For storage only,28,Bugoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13734,34805,Uganda,Birdlife IBA,2008,For storage only,28,Bugoma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13735,18437,Uganda,Enhancing Our Heritage,2002,For storage only,28,Bwindi Impenetrable,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13736,18437,Uganda,Enhancing Our Heritage,2003,For storage only,28,Bwindi Impenetrable,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13737,18437,Uganda,Enhancing Our Heritage,2007,For storage only,28,Bwindi Impenetrable,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13738,18437,Uganda,Birdlife IBA,2001,For storage only,28,Bwindi Impenetrable,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13739,61609,Uganda,Birdlife IBA,2001,For storage only,28,Bwindi Impenetrable National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13740,61609,Uganda,WHA Outlook Report,2014,For storage only,28,Bwindi Impenetrable National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13741,40371,Uganda,Birdlife IBA,2001,For storage only,28,Echuya,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13742,33147,Uganda,METT,2003,For storage only,28,Itwara,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13743,33147,Uganda,METT,2011,For storage only,28,Itwara,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13744,33147,Uganda,METT,2012,For storage only,28,Itwara,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13745,33147,Uganda,METT,2006,For storage only,28,Itwara,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13746,39985,Uganda,METT,2003,For storage only,28,Kagombe,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13747,315143,Uganda,Birdlife IBA,2008,For storage only,28,Kasyoha - Kitomi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13748,315238,Uganda,METT,2003,For storage only,28,Kibale,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13749,315238,Uganda,Africa Rainforest Study,2001,For storage only,28,Kibale,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13750,40002,Uganda,Birdlife IBA,2001,For storage only,28,Kibale,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13751,958,Uganda,METT,2012,For storage only,28,Kidepo Valley,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13752,958,Uganda,Birdlife IBA,2001,For storage only,28,Kidepo Valley,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13753,1446,Uganda,Birdlife IBA,2001,For storage only,28,Kyambura,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13754,1441,Uganda,Birdlife IBA,2001,For storage only,28,Lake Mburo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13755,902978,Uganda,Birdlife IBA,2001,For storage only,28,Lake Mburo-Nakivali Wetland System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13756,902980,Uganda,Birdlife IBA,2001,For storage only,28,Lake Opeta Wetland System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13757,34808,Uganda,Birdlife IBA,2001,For storage only,28,Mabira,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13758,313109,Uganda,Birdlife IBA,2001,For storage only,28,Mgahinga Gorilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13759,28175,Uganda,Birdlife IBA,2001,For storage only,28,Mount Elgon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13760,40630,Uganda,Birdlife IBA,2001,For storage only,28,Mount Kei,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13761,40588,Uganda,Birdlife IBA,2001,For storage only,28,Moroto,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13762,31275,Uganda,Birdlife IBA,2001,For storage only,28,Otze Forest White Rhino,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13763,315109,Uganda,Birdlife IBA,2001,For storage only,28,Atiya,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13764,956,Uganda,Birdlife IBA,2001,For storage only,28,Murchison Falls,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13765,902984,Uganda,Birdlife IBA,2008,For storage only,28,Nabajjuzi Wetland System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13766,902322,Uganda,Birdlife IBA,2001,For storage only,28,Lake Nabugabo wetland system,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13767,40602,Uganda,METT,2012,For storage only,28,Nyangea - Napore,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13768,3051,Uganda,GOBI Survey,2006,For storage only,28,Queen Elizabeth National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13769,40476,Uganda,METT,2012,For storage only,28,Rom,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13770,18438,Uganda,METT,2003,For storage only,28,Rwenzori Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13771,18438,Uganda,Birdlife IBA,2001,For storage only,28,Rwenzori Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13772,61608,Uganda,Birdlife IBA,2001,For storage only,28,Rwenzori Mountains National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13773,478026,Uganda,Birdlife IBA,2001,For storage only,28,Rwenzori Mountains Ramsar Site,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13774,61608,Uganda,WHA Outlook Report,2014,For storage only,28,Rwenzori Mountains National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13775,40042,Uganda,Birdlife IBA,2001,For storage only,28,Semuliki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13776,1440,Uganda,Birdlife IBA,2001,For storage only,28,Toro-Semuliki or Toro-Semliki,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13777,40603,Uganda,METT,2012,For storage only,28,Timu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13778,40604,Uganda,METT,2012,For storage only,28,Zulia,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13779,1751,Ukraine,RAPPAM,2008,For storage only,28,Askaniya Nova,National Biosphere Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13780,220033,Ukraine,European Diploma,1997,For storage only,28,Carpathian,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13781,220033,Ukraine,Stockholm BR Survey,2008,For storage only,28,Carpathian,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13782,160790,Ukraine,RAPPAM,2008,For storage only,28,Cherems'kiy,State Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13783,161597,Ukraine,RAPPAM,2008,For storage only,28,Staroguts'kiy,State Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13784,166901,Ukraine,Birdlife IBA,2013,For storage only,28,Northern Part of the Dniester Liman,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13785,160920,Ukraine,RAPPAM,2008,For storage only,28,Golosiivskyi Lis (Forest),Regional Landscape Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13787,166779,Ukraine,RAPPAM,2008,For storage only,28,Gorgany Range,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13788,160966,Ukraine,RAPPAM,2008,For storage only,28,Ichnyans'kiy,Regional Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13789,1756,Ukraine,RAPPAM,2008,For storage only,28,Kanevskiy,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13790,1754,Ukraine,RAPPAM,2008,For storage only,28,Karadagskiy,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13791,1745,Ukraine,RAPPAM,2008,For storage only,28,Karpatskiy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13792,1990,Ukraine,RAPPAM,2008,For storage only,28,Karpatskiy,National Biosphere Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13793,160999,Ukraine,RAPPAM,2008,For storage only,28,Kazantypskyi,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13794,99722,Ukraine,RAPPAM,2008,For storage only,28,Luganskiy,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13795,62696,Ukraine,RAPPAM,2008,For storage only,28,Medobory,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13796,161214,Ukraine,RAPPAM,2008,For storage only,28,Mezins'ka Shveytsariya,Regional Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13797,161304,Ukraine,RAPPAM,2008,For storage only,28,Opukskyi,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13798,102251,Ukraine,RAPPAM,2008,For storage only,28,Podolskie Tovtry,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13799,903141,Ukraine,WHA Outlook Report,2014,For storage only,28,Primeval Beech Forests of the Carpathians and Other Regions of Europe,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13800,161439,Ukraine,METT,2007,For storage only,28,Prypiat-Stokhid,Regional Landscape Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13802,161439,Ukraine,METT,2012,For storage only,28,Prypiat-Stokhid,Regional Landscape Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13803,161439,Ukraine,METT,2009,For storage only,28,Prypiat-Stokhid,Regional Landscape Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13805,161439,Ukraine,RAPPAM,2008,For storage only,28,Prypiat-Stokhid,Regional Landscape Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13806,161467,Ukraine,RAPPAM,2008,For storage only,28,Rivnens'kiy,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13807,161481,Ukraine,RAPPAM,2008,For storage only,28,Roztochchia,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13808,11580,Ukraine,METT,2012,For storage only,28,Shatskiy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13809,166906,Ukraine,METT,2009,For storage only,28,Shatsk Lakes,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -13810,11580,Ukraine,RAPPAM,2008,For storage only,28,Shatskiy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13811,161555,Ukraine,RAPPAM,2008,For storage only,28,Skolivs'kiy,State Zakaznik,"GD-PAME, version pre-2017",Not Reported,2018,English -13812,166780,Ukraine,RAPPAM,2008,For storage only,28,Svyaty Gory,National Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13813,161634,Ukraine,RAPPAM,2008,For storage only,28,Synevyr,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13814,94043,Ukraine,RAPPAM,2008,For storage only,28,Ukrainskiy Stepnoy,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13815,67754,Ukraine,Stockholm BR Survey,2008,For storage only,28,East Carpathians (UKR),UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13816,102250,Ukraine,RAPPAM,2008,For storage only,28,Vyzhnetskiy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13817,1750,Ukraine,RAPPAM,2008,For storage only,28,Yaltinskiy Gorno-Lesnoy,Nature Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -13818,161828,Ukraine,RAPPAM,2008,For storage only,28,Yavorivskyi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13819,161903,Ukraine,RAPPAM,2008,For storage only,28,Znesennia,Regional Landscape Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13820,478062,Uruguay,METT,2005,For storage only,28,Cabo Polonio,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13821,478064,Uruguay,METT,2005,For storage only,28,Laguna de Rocha,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13822,306,Uruguay,METT,2005,For storage only,28,Arequita,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13823,2223,Uruguay,GOBI Survey,2006,For storage only,28,Bañados del Este,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13824,95268,Uruguay,METT,2005,For storage only,28,Bosques del Río Negro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13825,95268,Uruguay,METT,2009,For storage only,28,Bosques del Río Negro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13829,478063,Uruguay,METT,2005,For storage only,28,Cerro Verde,Managed Protected Area Resource,"GD-PAME, version pre-2017",Not Reported,2018,English -13830,478063,Uruguay,METT,2006,For storage only,28,Cerro Verde,Managed Protected Area Resource,"GD-PAME, version pre-2017",Not Reported,2018,English -13831,478063,Uruguay,METT,2009,For storage only,28,Cerro Verde,Managed Protected Area Resource,"GD-PAME, version pre-2017",Not Reported,2018,English -13832,478060,Uruguay,METT,2005,For storage only,28,Esteros de Farrapos e Islas del Rio Uruguay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13835,478060,Uruguay,METT,2010,For storage only,28,Esteros de Farrapos e Islas del Rio Uruguay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13836,555542447,Uruguay,METT,2005,For storage only,28,Humedales del Santa Lucia,Managed Protected Area Resource,"GD-PAME, version pre-2017",Not Reported,2018,English -13837,555542447,Uruguay,METT,2009,For storage only,28,Humedales del Santa Lucia,Managed Protected Area Resource,"GD-PAME, version pre-2017",Not Reported,2018,English -13841,4729,Uruguay,METT,2005,For storage only,28,Laguna de Castillos,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13843,555542452,Uruguay,METT,2005,For storage only,28,Laguna Garzón,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13847,478064,Uruguay,METT,2009,For storage only,28,Laguna de Rocha,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13848,555542452,Uruguay,METT,2006,For storage only,28,Laguna Garzón,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13849,478061,Uruguay,METT,2009,For storage only,28,Localidad Rupestre Chamanga,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13850,555542449,Uruguay,METT,2009,For storage only,28,Montes del Queguay,Managed Protected Area Resource,"GD-PAME, version pre-2017",Not Reported,2018,English -13851,478065,Uruguay,METT,2005,For storage only,28,Quebrada de los Cuervos,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13853,478062,Uruguay,METT,2009,For storage only,28,Cabo Polonio,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13854,305,Uruguay,METT,2005,For storage only,28,San Miguel,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13855,305,Uruguay,METT,2009,For storage only,28,San Miguel,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13856,555542450,Uruguay,METT,2009,For storage only,28,Potrerillo de Santa Teresa,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13859,478065,Uruguay,METT,2010,For storage only,28,Quebrada de los Cuervos,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13861,555542450,Uruguay,METT,2005,For storage only,28,Potrerillo de Santa Teresa,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13863,478059,Uruguay,METT,2005,For storage only,28,Valle del Lunarejo,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13866,478059,Uruguay,METT,2010,For storage only,28,Valle del Lunarejo,Protected Landscape,"GD-PAME, version pre-2017",Not Reported,2018,English -13867,55552961,United States,USA SOP,2001,For storage only,28,Adams,Local Land Trust Preserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13868,555586829,United States,USA SOP,2007,For storage only,28,Apostle Islands,National Lakeshore,"GD-PAME, version pre-2017",Not Reported,2018,English -13869,1072,United States,USA SOP,2007,For storage only,28,Assateague Island,National Seashore,"GD-PAME, version pre-2017",Not Reported,2018,English -13870,976,United States,USA SOP,2003,For storage only,28,Big Bend,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13871,2137,United States,GOBI Survey,2006,For storage only,28,Big Bend National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13872,3056,United States,GOBI Survey,2006,For storage only,28,Big Thicket National Preserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13873,365963,United States,USA SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13874,1024,United States,USA SOP,2006,For storage only,28,Biscayne,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13875,1000,United States,USA SOP,2005,For storage only,28,Bryce Canyon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13876,13013,United States,USA SOP,2008,For storage only,28,Cabrillo,National Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -13877,982,United States,USA SOP,2004,For storage only,28,Canyonlands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13878,93291,United States,WHA Outlook Report,2014,For storage only,28,Carlsbad Caverns National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13879,2150,United States,GOBI Survey,2006,For storage only,28,Cascade Head Expt. Forest & Scenic Research Area,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13880,366856,United States,USA SOP,2006,For storage only,28,Catoctin Mountain,Recreation Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13881,5194,United States,GOBI Survey,2006,For storage only,28,Central Gulf Coastal Plain Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13882,2152,United States,GOBI Survey,2006,For storage only,28,Central Plains Experimental Range,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13883,2149,United States,GOBI Survey,2006,For storage only,28,Channel Islands,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13885,555586740,United States,MPA MEE,2003,For storage only,28,Channel Islands,National Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -13886,1033,United States,USA SOP,2008,For storage only,28,Channel Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13887,55551176,United States,USA SOP,2004,For storage only,28,Chesapeake and Ohio Canal,National Historical Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13888,2158,United States,GOBI Survey,2006,For storage only,28,Coram Experimental Forest,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13889,367731,United States,USA SOP,2005,For storage only,28,Death Valley,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13890,969,United States,USA SOP,2003,For storage only,28,Denali,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13891,971,United States,USA SOP,2006,For storage only,28,Everglades,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13892,2012,United States,WHA Outlook Report,2014,For storage only,28,Everglades National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13893,22622,United States,USA SOP,2004,For storage only,28,Fort Necessity,National Battlefield,"GD-PAME, version pre-2017",Not Reported,2018,English -13894,555585118,United States,USA SOP,2003,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13895,3005,United States,USA SOP,2007,For storage only,28,Gateway,National Recreation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13896,1010,United States,USA SOP,2008,For storage only,28,Glacier Bay,National Park & Preserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13897,11591,United States,GOBI Survey,2006,For storage only,28,Glacier Bay-Admiralty Island Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13898,2011,United States,WHA Outlook Report,2014,For storage only,28,Grand Canyon National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13899,12165,United States,USA SOP,2009,For storage only,28,Great Basin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13900,9632,United States,USA SOP,2004,For storage only,28,Great Smoky Mountains National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13901,9632,United States,WHA Outlook Report,2014,For storage only,28,Great Smoky Mountains National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13902,18337,United States,USA SOP,2008,For storage only,28,Hawaii Volcanoes National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13903,18337,United States,WHA Outlook Report,2014,For storage only,28,Hawaii Volcanoes National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13904,1077,United States,USA SOP,2007,For storage only,28,Indiana Dunes,National Lakeshore,"GD-PAME, version pre-2017",Not Reported,2018,English -13905,3052,United States,GOBI Survey,2006,For storage only,28,Isle Royale National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13906,977,United States,USA SOP,2007,For storage only,28,Isle Royale,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13907,555556142,United States,Birdlife IBA,2012,For storage only,28,Johnston Atoll,National Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -13908,370321,United States,USA SOP,2005,For storage only,28,Joshua Tree,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13909,44446200,United States,USA SOP,2007,For storage only,28,Keweenaw Peninsula Fee,Private Conservation Land,"GD-PAME, version pre-2017",Not Reported,2018,English -13910,99998,United States,Birdlife IBA,2009,For storage only,28,Kilauea Point,National Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -13911,2018,Canada;United States,WHA Outlook Report,2014,For storage only,28,Kluane / Wrangell-St Elias / Glacier Bay / Tatshenshini-Alsek,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13912,2156,United States,GOBI Survey,2006,For storage only,28,Konza Prairie Research Natural Area,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13913,555585135,United States,USA SOP,2005,For storage only,28,Haycock-longf,Local Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13914,2577,United States,WHA Outlook Report,2014,For storage only,28,Mammoth Cave National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13915,371941,United States,USA SOP,2005,For storage only,28,Mojave,National Preserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13916,10723,United States,GOBI Survey,2006,For storage only,28,Mojave and Colorado Deserts Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13917,18923,United States,GOBI Survey,2006,For storage only,28,New Jersey Pinelands Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13918,2162,United States,GOBI Survey,2006,For storage only,28,Niwot Ridge Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13919,368362,United States,Birdlife IBA,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -13920,220201,United States,Birdlife IBA,2009,For storage only,28,Papah─ünaumoku─ükea Marine National Monument,Marine National Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -13921,312243,United States,Birdlife IBA,2009,For storage only,28,Longline,Protected Species Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -13922,555512001,United States,Birdlife IBA,2009,For storage only,28,Papah─ünaumoku─ükea,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13923,2135,United States,GOBI Survey,2006,For storage only,28,Olympic,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13924,974,United States,USA SOP,2004,For storage only,28,Olympic,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13925,2579,United States,WHA Outlook Report,2014,For storage only,28,Olympic National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13926,2139,United States,GOBI Survey,2006,For storage only,28,Organ Pipe Cactus,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13927,555512001,United States,WHA Outlook Report,2014,For storage only,28,Papah─ünaumoku─ükea,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13928,999910,United States,Birdlife IBA,2012,For storage only,28,Pearl Harbor,National Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -13929,1067,United States,USA SOP,2007,For storage only,28,Pictured Rocks,National Lakeshore,"GD-PAME, version pre-2017",Not Reported,2018,English -13930,1068,United States,USA SOP,2002,For storage only,28,Point Reyes,National Seashore,"GD-PAME, version pre-2017",Not Reported,2018,English -13931,994,United States,USA SOP,2008,For storage only,28,Redwood,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13933,4325,United States,WHA Outlook Report,2014,For storage only,28,Redwood National and State Parks,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13934,2141,United States,GOBI Survey,2006,For storage only,28,Rocky Mountain National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13935,984,United States,USA SOP,2002,For storage only,28,Rocky Mountain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13936,55551184,United States,USA SOP,2004,For storage only,28,Saint-Gaudens,National Historic Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13937,2161,United States,GOBI Survey,2006,For storage only,28,San Joaquin Experimental Range,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13938,13014,United States,USA SOP,2008,For storage only,28,Santa Monica Mountains,National Recreation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -13939,2136,United States,GOBI Survey,2006,For storage only,28,Sequoia-Kings Canyon National Parks,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13940,989,United States,USA SOP,2003,For storage only,28,Shenandoah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13941,1066,United States,USA SOP,2007,For storage only,28,Sleeping Bear Dunes,National Lakeshore,"GD-PAME, version pre-2017",Not Reported,2018,English -13942,2142,United States,GOBI Survey,2006,For storage only,28,Three Sisters,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13943,2155,United States,GOBI Survey,2006,For storage only,28,The University of Michigan Biological Station,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13944,342,United States,USA SOP,2008,For storage only,28,Virgin Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13945,93295,Canada;United States,WHA Outlook Report,2014,For storage only,28,Waterton Glacier International Peace Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13946,2134,United States,USA SOP,2002,For storage only,28,Waterton Glacier International Peace,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13947,2013,United States,WHA Outlook Report,2014,For storage only,28,Yellowstone National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13948,10908,United States,WHA Outlook Report,2014,For storage only,28,Yosemite National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13949,991,United States,USA SOP,2005,For storage only,28,Zion,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13950,1767,Uzbekistan,METT,2004,For storage only,28,Baday-Tugay,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13951,1767,Uzbekistan,METT,2008,For storage only,28,Baday-Tugay,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13952,1767,Uzbekistan,METT,2006,For storage only,28,Baday-Tugay,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13953,1767,Uzbekistan,METT,2009,For storage only,28,Baday-Tugay,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13954,1761,Uzbekistan,METT,2006,For storage only,28,Chatkalskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13955,1761,Uzbekistan,METT,2008,For storage only,28,Chatkalskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13956,11829,Uzbekistan,METT,2006,For storage only,28,Gissarskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13957,11829,Uzbekistan,METT,2008,For storage only,28,Gissarskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13958,167102,Uzbekistan,METT,2006,For storage only,28,Kitab Geological NR,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13959,167102,Uzbekistan,METT,2008,For storage only,28,Kitab Geological NR,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13960,1768,Uzbekistan,METT,2006,For storage only,28,Kyzylkumskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13961,1768,Uzbekistan,METT,2008,For storage only,28,Kyzylkumskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13962,1764,Uzbekistan,METT,2007,For storage only,28,Nuratinskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13963,1764,Uzbekistan,METT,2006,For storage only,28,Nuratinskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13964,20683,Uzbekistan,METT,2006,For storage only,28,Surkhanskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13965,20683,Uzbekistan,METT,2007,For storage only,28,Surkhanskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13966,1766,Uzbekistan,METT,2006,For storage only,28,Zaaminskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13967,1766,Uzbekistan,METT,2007,For storage only,28,Zaaminskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13968,1770,Uzbekistan,METT,2006,For storage only,28,Zeravshanskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13969,1770,Uzbekistan,METT,2003,For storage only,28,Zeravshanskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13970,1770,Uzbekistan,METT,2005,For storage only,28,Zeravshanskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13971,1770,Uzbekistan,METT,2008,For storage only,28,Zeravshanskiy,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13972,26472,Saint Vincent and the Grenadines,RAPPAM,2006,For storage only,28,Chateaubelair Islet,Wildlife Reserve / Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13973,61700,Saint Vincent and the Grenadines,RAPPAM,2006,For storage only,28,Cumberland,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13974,555576494,Saint Vincent and the Grenadines,RAPPAM,2006,For storage only,28,Dalaway,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13975,31477,Saint Vincent and the Grenadines,RAPPAM,2006,For storage only,28,Kingshill,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13976,555576495,Saint Vincent and the Grenadines,RAPPAM,2006,For storage only,28,Kingstown,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13977,555576503,Saint Vincent and the Grenadines,RAPPAM,2006,For storage only,28,Richmond,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13978,555576504,Saint Vincent and the Grenadines,RAPPAM,2006,For storage only,28,Soufriere,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13979,26479,Saint Vincent and the Grenadines,RAPPAM,2006,For storage only,28,Petit St. Vincent,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13980,31478,Saint Vincent and the Grenadines,RAPPAM,2006,For storage only,28,Tobago Cays-Mayreau,Marine Park / Marine Reserve / Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13981,315,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Aguaro-Guariquito,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13982,315,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Aguaro-Guariquito,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13983,61416,"Venezuela, Bolivarian Republic of",GOBI Survey,2006,For storage only,28,Alto Orinoco - Casiquiare,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -13984,2245,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,National Park Archipielago de Los Roques,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13985,2245,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,National Park Archipielago de Los Roques,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13986,4372,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Cerro Autana,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -13987,313,"Venezuela, Bolivarian Republic of",Enhancing Our Heritage,2002,For storage only,28,Canaima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13988,313,"Venezuela, Bolivarian Republic of",Enhancing Our Heritage,2007,For storage only,28,Canaima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13989,313,"Venezuela, Bolivarian Republic of",Parks profiles,2004,For storage only,28,Canaima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13990,313,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Canaima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13991,313,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Canaima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13992,61612,"Venezuela, Bolivarian Republic of",WHA Outlook Report,2014,For storage only,28,Canaima National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -13993,309,"Venezuela, Bolivarian Republic of",METT,0,For storage only,28,Cerro Santa Ana,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -13994,338,"Venezuela, Bolivarian Republic of",Parks profiles,2002,For storage only,28,Cerro El Copey,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13995,338,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Cerro El Copey,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13996,338,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Cerro El Copey,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -13997,19287,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Cerro Platillón,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -13998,309,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Cerro Santa Ana,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -13999,30032,"Venezuela, Bolivarian Republic of",Parks profiles,2001,For storage only,28,Cerro Saroche,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14000,30032,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Cerro Saroche,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14001,30032,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Cerro Saroche,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14002,310,"Venezuela, Bolivarian Republic of",METT,2010,For storage only,28,Cerros Matasiete y Guayamurí,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14003,310,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Cerros Matasiete y Guayamurí,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14004,4374,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Chorrera de las Gonz├ílez,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14005,30031,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Chorro el Indio,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14006,30031,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Chorro el Indio,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14007,20085,"Venezuela, Bolivarian Republic of",METT,0,For storage only,28,"Ciénagas de Juan Manuel, Aguas Blancas y Negras",Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14008,19286,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Cinaruco-Capanaparo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14009,19286,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Cinaruco-Capanaparo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14010,337,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Cueva de la Quebrada del Toro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14011,337,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Cueva de la Quebrada del Toro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14012,20054,"Venezuela, Bolivarian Republic of",Parks profiles,2004,For storage only,28,Dinira,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14013,20054,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Dinira,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14014,20054,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Dinira,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14015,4366,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Duida-Marahuaca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14016,4366,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Duida-Marahuaca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14017,327,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,El Avila,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14018,327,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,El Avila,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14019,327,"Venezuela, Bolivarian Republic of",Parks profiles,2002,For storage only,28,El Avila,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14020,333,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,El Guácharo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14021,333,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,El Guácharo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14022,322,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,El Tamá,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14023,322,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,El Tamá,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14024,15135,"Venezuela, Bolivarian Republic of",Parks profiles,2001,For storage only,28,Guaramacal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14025,15135,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Guaramacal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14026,15135,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Guaramacal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14027,325,"Venezuela, Bolivarian Republic of",Parks profiles,2004,For storage only,28,Guatopo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14028,325,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Guatopo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14029,325,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Guatopo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14030,323,"Venezuela, Bolivarian Republic of",Parks profiles,2005,For storage only,28,Henri Pittier,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14031,323,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Henri Pittier,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14032,323,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Henri Pittier,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14033,4368,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Jaua Sarisariñama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14034,4368,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Jaua Sarisariñama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14035,30673,"Venezuela, Bolivarian Republic of",METT,0,For storage only,28,Laguna de Boca de Caño,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14036,336,"Venezuela, Bolivarian Republic of",Parks profiles,2002,For storage only,28,Laguna de la Restinga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14037,336,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Laguna de la Restinga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14038,336,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Laguna de la Restinga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14039,336,"Venezuela, Bolivarian Republic of",METT,2010,For storage only,28,Laguna de la Restinga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14040,308,"Venezuela, Bolivarian Republic of",METT,2010,For storage only,28,Laguna de las Marites,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14041,308,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Laguna de las Marites,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14042,331,"Venezuela, Bolivarian Republic of",METT,2010,For storage only,28,Laguna de Tacarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14043,331,"Venezuela, Bolivarian Republic of",Parks profiles,2002,For storage only,28,Laguna de Tacarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14045,331,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Laguna de Tacarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14046,331,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Laguna de Tacarigua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14047,4363,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Laguna de Urao,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14048,311,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Tetas de Maria Guevara,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14049,19280,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Loma de León,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14050,19280,"Venezuela, Bolivarian Republic of",Parks profiles,2003,For storage only,28,Loma de León,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14051,2245,"Venezuela, Bolivarian Republic of",Parks profiles,2004,For storage only,28,National Park Archipielago de Los Roques,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14052,334,"Venezuela, Bolivarian Republic of",Parks profiles,2001,For storage only,28,Macarao,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14053,334,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Macarao,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14054,334,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Macarao,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14055,146676,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Mariusa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14056,2246,"Venezuela, Bolivarian Republic of",METT,0,For storage only,28,Medanos de Coro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14057,2246,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Medanos de Coro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14058,2246,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Medanos de Coro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14059,324,"Venezuela, Bolivarian Republic of",METT,0,For storage only,28,Mochima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14060,324,"Venezuela, Bolivarian Republic of",Parks profiles,2002,For storage only,28,Mochima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14061,324,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Mochima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14062,324,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Mochima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14063,2247,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Morrocoy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14064,2247,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Morrocoy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14065,2247,"Venezuela, Bolivarian Republic of",METT,2010,For storage only,28,Morrocoy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14066,4369,"Venezuela, Bolivarian Republic of",Parks profiles,2003,For storage only,28,Morros de Macaira,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14067,4369,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Morros de Macaira,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14068,19290,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Morros de San Juan (Arístides Rojas),Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14069,19285,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Páramos del Batallón y La Negra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14070,19285,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Páramos del Batallón y La Negra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14071,328,"Venezuela, Bolivarian Republic of",METT,2010,For storage only,28,Península de Paria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14072,30026,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Parima-Tapirapecó,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14073,323,"Venezuela, Bolivarian Republic of",METT,0,For storage only,28,Henri Pittier,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14074,2245,"Venezuela, Bolivarian Republic of",METT,0,For storage only,28,National Park Archipielago de Los Roques,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14075,328,"Venezuela, Bolivarian Republic of",Parks profiles,2004,For storage only,28,Península de Paria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14076,328,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Península de Paria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14077,328,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Península de Paria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14078,318,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Perijá,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14079,318,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Perijá,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14080,10782,"Venezuela, Bolivarian Republic of",Parks profiles,2004,For storage only,28,San Camilo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14081,10782,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,San Camilo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14082,10782,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,San Camilo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14083,10767,"Venezuela, Bolivarian Republic of",WWF/CATIE,2003,For storage only,28,San Esteban,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14084,10767,"Venezuela, Bolivarian Republic of",METT,2010,For storage only,28,San Esteban,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14085,4367,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Serranía de la Neblina,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14086,4367,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Serranía de la Neblina,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14087,30033,"Venezuela, Bolivarian Republic of",METT,2005,For storage only,28,Sierra de la Culata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14088,30635,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Serranía de San Luis,Protective Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -14089,30635,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Serranía de San Luis,Protective Zone,"GD-PAME, version pre-2017",Not Reported,2018,English -14090,30033,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Sierra de la Culata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14091,30033,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Sierra de la Culata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14092,321,"Venezuela, Bolivarian Republic of;Bolivia, Plurinational State of",METT,2005,For storage only,28,Sierra Nevada,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14093,321,"Venezuela, Bolivarian Republic of;Bolivia, Plurinational State of",Venezuela Vision,1991,For storage only,28,Sierra Nevada,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14094,321,"Venezuela, Bolivarian Republic of;Bolivia, Plurinational State of",Venezuela Vision,2001,For storage only,28,Sierra Nevada,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14095,30030,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Formaciones de Tepuyes,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14096,332,"Venezuela, Bolivarian Republic of",Parks profiles,2003,For storage only,28,Terepaima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14097,332,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Terepaima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14098,332,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Terepaima,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14099,30024,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Turuepano,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14100,30024,"Venezuela, Bolivarian Republic of",Parks profiles,2004,For storage only,28,Turuepano,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14101,30024,"Venezuela, Bolivarian Republic of",METT,2010,For storage only,28,Turuepano,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14102,327,"Venezuela, Bolivarian Republic of",METT,2010,For storage only,28,El Avila,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14103,335,"Venezuela, Bolivarian Republic of",Parks profiles,2003,For storage only,28,Yacambú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14104,335,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Yacambú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14105,335,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Yacambú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14106,317,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Yapacana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14107,317,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Yapacana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14108,330,"Venezuela, Bolivarian Republic of",Parks profiles,2004,For storage only,28,Yurubí,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14109,330,"Venezuela, Bolivarian Republic of",Venezuela Vision,1991,For storage only,28,Yurubí,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14110,330,"Venezuela, Bolivarian Republic of",Venezuela Vision,2001,For storage only,28,Yurubí,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14111,10188,Viet Nam,Birdlife IBA,2007,For storage only,28,Ba Be,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14112,10188,Viet Nam,METT,2005,For storage only,28,Ba Be,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14113,10188,Viet Nam,METT,2010,For storage only,28,Ba Be,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14114,10110,Viet Nam,Birdlife IBA,2007,For storage only,28,Bach Ma,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14115,10110,Viet Nam,METT,2010,For storage only,28,Bach Ma,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14116,10110,Viet Nam,METT,2011,For storage only,28,Bach Ma,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14117,10110,Viet Nam,RAPPAM,2004,For storage only,28,Bach Ma,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14118,10369,Viet Nam,METT,2006,For storage only,28,Ben En,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14119,10369,Viet Nam,METT,2010,For storage only,28,Ben En,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14120,10369,Viet Nam,METT,2011,For storage only,28,Ben En,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14121,10369,Viet Nam,RAPPAM,2004,For storage only,28,Ben En,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14122,303067,Viet Nam,METT,2003,For storage only,28,Bidoup-Nui Ba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14123,303067,Viet Nam,METT,2010,For storage only,28,Bidoup-Nui Ba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14124,303067,Viet Nam,METT,2011,For storage only,28,Bidoup-Nui Ba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14125,303067,Viet Nam,METT,2005,For storage only,28,Bidoup-Nui Ba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14126,303067,Viet Nam,RAPPAM,2004,For storage only,28,Bidoup-Nui Ba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14127,303069,Viet Nam,METT,2003,For storage only,28,Bu Gia Map,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14128,303069,Viet Nam,METT,2005,For storage only,28,Bu Gia Map,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14129,303069,Viet Nam,RAPPAM,2004,For storage only,28,Bu Gia Map,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14130,478146,Viet Nam,GOBI Survey,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -14131,7877,Viet Nam,Birdlife IBA,2007,For storage only,28,Cat Ba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14132,478147,Viet Nam,GOBI Survey,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -14133,478148,Viet Nam,GOBI Survey,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -14134,303072,Viet Nam,METT,2003,For storage only,28,Cat Tien,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14135,303072,Viet Nam,METT,2005,For storage only,28,Cat Tien,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14136,303072,Viet Nam,RAPPAM,2004,For storage only,28,Cat Tien,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14137,12171,Viet Nam,METT,2006,For storage only,28,Chu Mom Ray,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14138,12171,Viet Nam,RAPPAM,2004,For storage only,28,Chu Mom Ray,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14139,10380,Viet Nam,METT,2006,For storage only,28,Chu Yang Sin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14140,10380,Viet Nam,RAPPAM,2004,For storage only,28,Chu Yang Sin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14141,10111,Viet Nam,METT,2005,For storage only,28,Con Dao,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14142,10111,Viet Nam,METT,2009,For storage only,28,Con Dao,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14143,10111,Viet Nam,METT,2011,For storage only,28,Con Dao,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14144,303075,Viet Nam,METT,2013,For storage only,28,Cu Mong,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14145,7878,Viet Nam,RAPPAM,2004,For storage only,28,Cuc Phuong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14146,10384,Viet Nam,METT,2004,For storage only,28,Dakrong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14147,10384,Viet Nam,RAPPAM,2004,For storage only,28,Dakrong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14148,303029,Viet Nam,METT,2009,For storage only,28,Du Gia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14149,900889,Viet Nam,WHA Outlook Report,2014,For storage only,28,Ha Long Bay,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14150,10357,Viet Nam,METT,2005,For storage only,28,Hoang Lien,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14151,71337,Viet Nam,METT,2010,For storage only,28,Hoang Lien-Van Ban,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14152,71337,Viet Nam,METT,2011,For storage only,28,Hoang Lien-Van Ban,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14153,303032,Viet Nam,METT,2013,For storage only,28,Hon Me (marine),Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14154,10377,Viet Nam,METT,2005,For storage only,28,Kon Chu Rang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14155,10377,Viet Nam,METT,2010,For storage only,28,Kon Chu Rang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14156,10378,Viet Nam,METT,2005,For storage only,28,Kon Ka Kinh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14157,10378,Viet Nam,Birdlife IBA,2007,For storage only,28,Kon Ka Kinh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14159,10378,Viet Nam,METT,2008,For storage only,28,Kon Ka Kinh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14160,10378,Viet Nam,METT,2010,For storage only,28,Kon Ka Kinh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14161,10378,Viet Nam,METT,2011,For storage only,28,Kon Ka Kinh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14162,10378,Viet Nam,RAPPAM,2004,For storage only,28,Kon Ka Kinh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14163,10379,Viet Nam,METT,2004,For storage only,28,Krong Trai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14164,10395,Viet Nam,METT,2006,For storage only,28,Lo Go-Xa Mat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14165,10395,Viet Nam,METT,2003,For storage only,28,Lo Go-Xa Mat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14166,10395,Viet Nam,METT,2010,For storage only,28,Lo Go-Xa Mat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14167,10395,Viet Nam,METT,2011,For storage only,28,Lo Go-Xa Mat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14168,10395,Viet Nam,RAPPAM,2004,For storage only,28,Lo Go-Xa Mat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14169,478151,Viet Nam,METT,2013,For storage only,28,Mui Ca Mau,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14170,302848,Viet Nam,METT,2006,For storage only,28,Na Hang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14171,302848,Viet Nam,METT,2008,For storage only,28,Na Hang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14172,303065,Viet Nam,METT,2005,For storage only,28,Ngoc Linh (Kon Tum),Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14173,303076,Viet Nam,METT,2013,For storage only,28,O Loan,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14174,303039,Viet Nam,METT,2003,For storage only,28,Phong Dien,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14175,303039,Viet Nam,METT,2007,For storage only,28,Phong Dien,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14176,303039,Viet Nam,RAPPAM,2004,For storage only,28,Phong Dien,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14177,900883,Viet Nam,RAPPAM,2004,For storage only,28,Phong Nha-Ke Bang National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14178,900883,Viet Nam,METT,2006,For storage only,28,Phong Nha-Ke Bang National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14179,900883,Viet Nam,WHA Outlook Report,2014,For storage only,28,Phong Nha-Ke Bang National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14180,10398,Viet Nam,METT,2007,For storage only,28,Phu Quoc,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14181,303030,Viet Nam,METT,2005,For storage only,28,Pu Hu,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14182,303024,Viet Nam,METT,2005,For storage only,28,Pu Huong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14183,303059,Viet Nam,METT,2001,For storage only,28,Pu Luong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14184,303059,Viet Nam,METT,2004,For storage only,28,Pu Luong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14185,303059,Viet Nam,METT,2005,For storage only,28,Pu Luong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14186,303059,Viet Nam,METT,2010,For storage only,28,Pu Luong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14187,303059,Viet Nam,METT,2011,For storage only,28,Pu Luong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14188,61595,Viet Nam,METT,2005,For storage only,28,Pu Mat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14189,61595,Viet Nam,RAPPAM,2004,For storage only,28,Pu Mat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14190,303074,Viet Nam,METT,2013,For storage only,28,Quy Nhon,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14191,303066,Viet Nam,METT,2003,For storage only,28,Song Thanh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14192,303066,Viet Nam,METT,2006,For storage only,28,Song Thanh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14193,303066,Viet Nam,RAPPAM,2004,For storage only,28,Song Thanh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14194,10363,Viet Nam,METT,2005,For storage only,28,Sop Cop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14195,303068,Viet Nam,RAPPAM,2004,For storage only,28,Ta Dung,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14196,303080,Viet Nam,METT,2010,For storage only,28,Ta Kou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14197,303080,Viet Nam,METT,2011,For storage only,28,Ta Kou,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14198,303020,Viet Nam,Birdlife IBA,2007,For storage only,28,Tien Hai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14199,555577559,Viet Nam,WHA Outlook Report,2014,For storage only,28,Trang An Landscape Complex,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14201,10360,Viet Nam,METT,2010,For storage only,28,Trung Khanh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14202,303045,Viet Nam,METT,2004,For storage only,28,Van Long,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14203,303045,Viet Nam,METT,2005,For storage only,28,Van Long,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14204,10375,Viet Nam,RAPPAM,2004,For storage only,28,Vu Quang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14205,303022,Viet Nam,METT,2006,For storage only,28,Xuan Lien,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14206,303022,Viet Nam,METT,2010,For storage only,28,Xuan Lien,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14207,303022,Viet Nam,METT,2011,For storage only,28,Xuan Lien,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14208,61551,Viet Nam,Birdlife IBA,2003,For storage only,28,Xuan Thuy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14209,61551,Viet Nam,METT,2006,For storage only,28,Xuan Thuy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14210,61551,Viet Nam,METT,2009,For storage only,28,Xuan Thuy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14211,61551,Viet Nam,METT,2011,For storage only,28,Xuan Thuy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14212,18033,Viet Nam,METT,2005,For storage only,28,Yok Don,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14213,18033,Viet Nam,RAPPAM,2004,For storage only,28,Yok Don,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14214,18274,Vanuatu,METT,2010,For storage only,28,Erromango Kauri,Forest Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14215,18919,Vanuatu,METT,2010,For storage only,28,Lake Letas,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14216,305082,Vanuatu,METT,2009,For storage only,28,Nguna-Pele,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14217,555542725,Yemen,Birdlife IBA,2013,For storage only,28,Detwah Lagoon,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14218,903138,Yemen,WHA Outlook Report,2014,For storage only,28,Socotra Archipelago,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14219,4106,Zambia,METT,2009,For storage only,28,Bangweulu,Game Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14220,4106,Zambia,METT,2012,For storage only,28,Bangweulu,Game Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14222,1097,Zambia,METT,2003,For storage only,28,Blue Lagoon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14223,1097,Zambia,METT,2004,For storage only,28,Blue Lagoon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14224,1097,Zambia,METT,2005,For storage only,28,Blue Lagoon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14225,1097,Zambia,METT,2006,For storage only,28,Blue Lagoon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14226,1097,Zambia,METT,2009,For storage only,28,Blue Lagoon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14227,62095,Zambia,METT,2004,For storage only,28,Chiawa,Game Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14228,62095,Zambia,METT,2009,For storage only,28,Chiawa,Game Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14229,62095,Zambia,METT,2012,For storage only,28,Chiawa,Game Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14231,4105,Zambia,METT,2004,For storage only,28,Kafinda,Game Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14232,1085,Zambia,METT,2003,For storage only,28,Kafue,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14233,1085,Zambia,METT,2004,For storage only,28,Kafue,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14234,1085,Zambia,METT,2005,For storage only,28,Kafue,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14235,1085,Zambia,METT,2006,For storage only,28,Kafue,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14236,1085,Zambia,METT,2009,For storage only,28,Kafue,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14237,4091,Zambia,Birdlife IBA,2001,For storage only,28,Kafue Flats,Game Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14238,1085,Zambia,Birdlife IBA,2001,For storage only,28,Kafue,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14239,1099,Zambia,METT,2003,For storage only,28,Kasanka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14240,1099,Zambia,METT,2004,For storage only,28,Kasanka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14241,1099,Zambia,METT,2005,For storage only,28,Kasanka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14242,1099,Zambia,METT,2006,For storage only,28,Kasanka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14243,1099,Zambia,METT,2009,For storage only,28,Kasanka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14244,1099,Zambia,Birdlife IBA,2001,For storage only,28,Kasanka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14245,1094,Zambia,METT,2004,For storage only,28,Lavushi Manda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14246,1089,Zambia,Birdlife IBA,2001,For storage only,28,Liuwa Plain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14247,1089,Zambia,METT,2004,For storage only,28,Liuwa Plain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14248,1098,Zambia,METT,2003,For storage only,28,Lochinvar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14249,1098,Zambia,METT,2004,For storage only,28,Lochinvar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14250,1098,Zambia,METT,2005,For storage only,28,Lochinvar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14251,1098,Zambia,METT,2006,For storage only,28,Lochinvar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14252,1098,Zambia,METT,2009,For storage only,28,Lochinvar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14253,7962,Zambia,METT,2003,For storage only,28,Lower Zambezi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14254,7962,Zambia,METT,2004,For storage only,28,Lower Zambezi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14255,7962,Zambia,METT,2005,For storage only,28,Lower Zambezi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14256,7962,Zambia,METT,2006,For storage only,28,Lower Zambezi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14257,7962,Zambia,METT,2009,For storage only,28,Lower Zambezi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14258,7962,Zambia,METT,2007,For storage only,28,Lower Zambezi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14259,7962,Zambia,METT,2012,For storage only,28,Lower Zambezi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14261,7962,Zambia,Birdlife IBA,2001,For storage only,28,Lower Zambezi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14262,1086,Zambia,METT,2003,For storage only,28,South Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14263,1086,Zambia,METT,2005,For storage only,28,South Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14264,1091,Zambia,Birdlife IBA,2001,For storage only,28,Lukusuzi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14265,1095,Zambia,Birdlife IBA,2005,For storage only,28,Lusenga Plain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14266,2347,Zambia,METT,2003,For storage only,28,Mosi-Oa-Tunya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14267,2347,Zambia,METT,2005,For storage only,28,Mosi-Oa-Tunya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14268,20399,Zimbabwe;Zambia,WHA Outlook Report,2014,For storage only,28,Mosi-oa-Tunya / Victoria Falls,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14269,1088,Zambia,METT,2004,For storage only,28,North Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14270,1088,Zambia,METT,2006,For storage only,28,North Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14271,1088,Zambia,METT,2009,For storage only,28,North Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14272,1088,Zambia,Birdlife IBA,2001,For storage only,28,North Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14273,27022,Zambia,Birdlife IBA,2001,For storage only,28,Mitenge,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14274,1087,Zambia,Birdlife IBA,2001,For storage only,28,Sioma Ngwezi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14275,1086,Zambia,METT,2004,For storage only,28,South Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14276,1086,Zambia,METT,2006,For storage only,28,South Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14277,1086,Zambia,METT,2009,For storage only,28,South Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14278,1086,Zambia,Birdlife IBA,2001,For storage only,28,South Luangwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14279,1092,Zambia,Birdlife IBA,2005,For storage only,28,Nsumbu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14280,4081,Zambia,METT,2004,For storage only,28,West Zambezi,Game Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14281,2532,Zimbabwe,Birdlife IBA,2001,For storage only,28,Chimanimani,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14282,20341,Zimbabwe,Birdlife IBA,2001,For storage only,28,Chirinda,State Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -14283,1105,Zimbabwe,Birdlife IBA,2001,For storage only,28,Chizarira,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14284,1991,Zimbabwe,METT,2014,For storage only,28,Hwange,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14285,1991,Zimbabwe,Birdlife IBA,2001,For storage only,28,Hwange,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14286,10907,Zimbabwe,WHA Outlook Report,2014,For storage only,28,"Mana Pools National Park, Sapi and Chewore Safari Areas",World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14288,1111,Zimbabwe,Birdlife IBA,2001,For storage only,28,Nyanga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14289,3064,Zimbabwe,Birdlife IBA,2001,For storage only,28,Lake Chivero,Recreation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14290,26589,Zimbabwe,Birdlife IBA,2001,For storage only,28,Stapleford,State Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -14291,1120,Afghanistan,Birdlife IBA,1994,For storage only,28,Abe-e-Estada,Flamingo and Water Fowl Sanctuaries,"GD-PAME, version pre-2017",Not Reported,2018,English -14292,1122,Afghanistan,Birdlife IBA,2008,For storage only,28,Band-e-Amir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14293,7510,Botswana,Birdlife IBA,2001,For storage only,28,Central Kalahari,Game Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14294,600,Botswana,METT,2013,For storage only,28,Chobe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14295,600,Botswana,Birdlife IBA,2001,For storage only,28,Chobe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14296,7450,Botswana,METT,2013,For storage only,28,Chobe,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14297,7508,South Africa;Botswana,Birdlife IBA,2001,For storage only,28,Gemsbok,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14298,303628,Botswana,METT,2008,For storage only,28,Nata,Bird Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14299,555577555,Botswana,WHA Outlook Report,2014,For storage only,28,Okavango Delta,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14300,7909,Chile,METT,2004,For storage only,28,Alerce Andino,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14301,7909,Chile,METT,2010,For storage only,28,Alerce Andino,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14302,555558308,Chile,METT,2004,For storage only,28,Alerce Costero,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14303,555558308,Chile,METT,2010,For storage only,28,Alerce Costero,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14304,555558308,Chile,RAPPAM,2005,For storage only,28,Alerce Costero,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14305,112,Chile,METT,0,For storage only,28,Alto Biobio,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14306,112,Chile,METT,2010,For storage only,28,Alto Biobio,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14307,112,Chile,RAPPAM,2005,For storage only,28,Alto Biobio,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14308,555543793,Chile,METT,2005,For storage only,28,Predio Sector Altos de Cantillana - Horcón de Piedra y Roblería Cajón de Lisboa,Nature Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14309,555543793,Chile,METT,2010,For storage only,28,Predio Sector Altos de Cantillana - Horcón de Piedra y Roblería Cajón de Lisboa,Nature Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14310,94111,Chile,RAPPAM,2005,For storage only,28,Altos de Lircay,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14311,94116,Chile,METT,2010,For storage only,28,Bellotos El Melado,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14312,101,Chile,METT,0,For storage only,28,Bosque Fray Jorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14313,101,Chile,METT,2010,For storage only,28,Bosque Fray Jorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14314,902496,Chile,GOBI Survey,2006,For storage only,28,Cabo de Hornos,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14315,110,Chile,METT,2007,For storage only,28,Cerro Castillo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14316,110,Chile,METT,2010,For storage only,28,Cerro Castillo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14317,110,Chile,RAPPAM,2005,For storage only,28,Cerro Castillo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14318,20052,Chile,METT,2010,For storage only,28,Cerro Nielol,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14319,20052,Chile,METT,0,For storage only,28,Cerro Nielol,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14320,20052,Chile,RAPPAM,2005,For storage only,28,Cerro Nielol,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14321,7910,Chile,METT,0,For storage only,28,Chiloe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14322,7910,Chile,METT,2010,For storage only,28,Chiloe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14324,7910,Chile,RAPPAM,2005,For storage only,28,Chiloe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14325,117,Chile,RAPPAM,2005,For storage only,28,China Muerta,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14326,2227,Chile,RAPPAM,2005,For storage only,28,Conguillio,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14327,2227,Chile,METT,2010,For storage only,28,Conguillio,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14328,2227,Chile,METT,0,For storage only,28,Conguillio,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14329,9426,Chile,RAPPAM,2005,For storage only,28,Contulmo,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14330,9421,Chile,METT,2010,For storage only,28,El Morado,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14331,9421,Chile,METT,0,For storage only,28,El Morado,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14332,9450,Chile,METT,2010,For storage only,28,Federico Albert,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14333,9450,Chile,METT,0,For storage only,28,Federico Albert,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14334,317329,Chile,METT,2010,For storage only,28,Francisco Coloane,Marine and Coastal Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14335,95209,Chile,METT,2004,For storage only,28,Futaleufu,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14336,95209,Chile,RAPPAM,2005,For storage only,28,Futaleufu,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14337,95209,Chile,METT,2010,For storage only,28,Futaleufu,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14338,16806,Chile,RAPPAM,2005,For storage only,28,Hornopiren,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14339,16806,Chile,METT,2004,For storage only,28,Hornopiren,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14340,16806,Chile,METT,2010,For storage only,28,Hornopiren,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14341,9418,Chile,RAPPAM,2005,For storage only,28,Huerquehue,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14342,555543809,Chile,METT,2010,For storage only,28,Punta Morro - Desembocadura río Copiapó - Isla grande de Atacama,Marine and Coastal Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14343,317183,Chile,METT,0,For storage only,28,Islotes de Punihuil,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14344,317183,Chile,METT,2010,For storage only,28,Islotes de Punihuil,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14346,121,Chile,GOBI Survey,2006,For storage only,28,Archipielago Juan Fernández,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14347,97,Chile,METT,2009,For storage only,28,Archipielago Juan Fernadez,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14348,100,Chile,METT,2010,For storage only,28,La Campana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14349,100,Chile,METT,0,For storage only,28,La Campana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14350,555543807,Chile,METT,2010,For storage only,28,Lafken Mapu Lahual,Marine and Coastal Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14351,9441,Chile,METT,2010,For storage only,28,Lago Palena,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14352,9441,Chile,METT,0,For storage only,28,Lago Palena,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14354,9441,Chile,RAPPAM,2005,For storage only,28,Lago Palena,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14355,9415,Chile,METT,2010,For storage only,28,Laguna del Laja,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14356,9415,Chile,METT,0,For storage only,28,Laguna del Laja,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14357,9415,Chile,RAPPAM,2005,For storage only,28,Laguna del Laja,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14358,83,Chile,METT,2007,For storage only,28,Laguna San Rafael,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14359,83,Chile,METT,2010,For storage only,28,Laguna San Rafael,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14360,83,Chile,RAPPAM,2005,For storage only,28,Laguna San Rafael,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14361,9449,Chile,RAPPAM,2005,For storage only,28,Laguna Torca,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14362,94110,Chile,METT,2004,For storage only,28,Lahuen Nadi,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14363,94110,Chile,METT,2010,For storage only,28,Lahuen Nadi,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14364,9435,Chile,METT,2010,For storage only,28,Las Vicunas,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14365,9435,Chile,METT,0,For storage only,28,Las Vicunas,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14366,3013,Chile,GOBI Survey,2006,For storage only,28,Lauca,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14367,86,Chile,METT,2010,For storage only,28,Lauca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14368,86,Chile,METT,0,For storage only,28,Lauca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14369,9439,Chile,METT,2010,For storage only,28,Llanquihue,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14370,9439,Chile,METT,0,For storage only,28,Llanquihue,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14372,94116,Chile,METT,0,For storage only,28,Bellotos El Melado,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14373,94116,Chile,RAPPAM,2005,For storage only,28,Bellotos El Melado,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14374,30043,Chile,METT,2010,For storage only,28,Los Flamencos,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14375,30043,Chile,METT,0,For storage only,28,Los Flamencos,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14376,94117,Chile,RAPPAM,2005,For storage only,28,Los Queules,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14377,4769,Chile,METT,2010,For storage only,28,Los Ruiles,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14378,4769,Chile,METT,0,For storage only,28,Los Ruiles,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14379,4769,Chile,RAPPAM,2005,For storage only,28,Los Ruiles,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14380,113,Chile,RAPPAM,2005,For storage only,28,Malalcahuello,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14381,9433,Chile,RAPPAM,2005,For storage only,28,Malleco,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14382,94118,Chile,METT,0,For storage only,28,Mocho - Choshuenco,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14383,94118,Chile,METT,2010,For storage only,28,Mocho - Choshuenco,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14385,104,Chile,RAPPAM,2005,For storage only,28,Nahuelbuta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14386,115,Chile,RAPPAM,2005,For storage only,28,Nalcas,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14387,94115,Chile,METT,2010,For storage only,28,Nevado Tres Cruces,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14388,94115,Chile,METT,0,For storage only,28,Nevado Tres Cruces,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14389,111,Chile,METT,0,For storage only,28,Nuble,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14390,111,Chile,METT,2010,For storage only,28,Nuble,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14391,111,Chile,RAPPAM,2005,For storage only,28,Nuble,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14392,9436,Chile,METT,2010,For storage only,28,Pampa del Tamarugal,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14393,9436,Chile,METT,0,For storage only,28,Pampa del Tamarugal,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14394,317184,Chile,METT,0,For storage only,28,Pan De Azucar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14395,317184,Chile,METT,2010,For storage only,28,Pan De Azucar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14396,30044,Chile,METT,2010,For storage only,28,Pinguino de Humbolt,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14397,30044,Chile,METT,0,For storage only,28,Pinguino de Humbolt,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14398,90,Chile,METT,2004,For storage only,28,Puyehue,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14399,90,Chile,METT,2010,For storage only,28,Puyehue,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14400,9424,Chile,RAPPAM,2005,For storage only,28,Queulat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14401,94119,Chile,METT,0,For storage only,28,Radal Siete Tazas,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14402,555543714,Chile,METT,2010,For storage only,28,Radal Siete Tazas,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14403,94119,Chile,RAPPAM,2005,For storage only,28,Radal Siete Tazas,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14404,9423,Chile,RAPPAM,2005,For storage only,28,Ralco,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14405,9432,Chile,METT,2010,For storage only,28,Rio Clarillo,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14406,9432,Chile,METT,0,For storage only,28,Rio Clarillo,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14407,555543766,Chile,METT,2004,For storage only,28,Río Cruces y Chorocomayo,Nature Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14408,555543766,Chile,RAPPAM,2005,For storage only,28,Río Cruces y Chorocomayo,Nature Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14409,555543766,Chile,METT,2010,For storage only,28,Río Cruces y Chorocomayo,Nature Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14410,9448,Chile,METT,2010,For storage only,28,Rio Los Cipreses,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14411,9448,Chile,METT,0,For storage only,28,Rio Los Cipreses,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14412,9444,Chile,RAPPAM,2005,For storage only,28,Rio Simpsom,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14413,9425,Chile,METT,2010,For storage only,28,Salar De Surire,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14414,9425,Chile,METT,0,For storage only,28,Salar De Surire,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14415,9417,Chile,RAPPAM,2005,For storage only,28,Tolhuaca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14416,89,Chile,METT,2007,For storage only,28,Torres del Paine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14417,89,Chile,METT,2010,For storage only,28,Torres del Paine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14418,88,Chile,METT,2010,For storage only,28,Vicente Perez Rosales,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14419,88,Chile,METT,0,For storage only,28,Vicente Perez Rosales,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14421,88,Chile,RAPPAM,2005,For storage only,28,Vicente Perez Rosales,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14422,91,Chile,RAPPAM,2005,For storage only,28,Villarrica,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14423,10706,Chile,RAPPAM,2005,For storage only,28,Villarrica,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14424,9416,Chile,METT,2010,For storage only,28,Volcan Isluga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14425,9416,Chile,METT,0,For storage only,28,Volcan Isluga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14426,81073,Ecuador,Ecuador MEE,1999,For storage only,28,Antisana,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14427,81073,Ecuador,PIP Site Consolidation,2004,For storage only,28,Antisana,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14428,7913,Ecuador,Ecuador MEE,1999,For storage only,28,Cajas,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14429,183,Ecuador,Ecuador MEE,1999,For storage only,28,Cayambe Coca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14430,183,Ecuador,PIP Site Consolidation,2004,For storage only,28,Cayambe Coca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14431,183,Ecuador,METT,2005,For storage only,28,Cayambe Coca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14432,97513,Ecuador,Ecuador MEE,1999,For storage only,28,Manglares Cayapas Mataje,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14433,32717,Ecuador,Ecuador MEE,1999,For storage only,28,Chimborazo,Fauna Production Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14434,32717,Ecuador,METT,2005,For storage only,28,Chimborazo,Fauna Production Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14435,32717,Ecuador,METT,2009,For storage only,28,Chimborazo,Fauna Production Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14436,184,Ecuador,Ecuador MEE,1999,For storage only,28,Cotacachi Cayapas,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14437,190,Ecuador,Ecuador MEE,1999,For storage only,28,Cotopaxi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14438,190,Ecuador,PIP Site Consolidation,2004,For storage only,28,Cotopaxi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14439,2499,Ecuador,Ecuador MEE,1999,For storage only,28,Cuyabeno,Fauna Production Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14440,97513,Ecuador,METT,2009,For storage only,28,Manglares Cayapas Mataje,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14441,67623,Ecuador,Ecuador MEE,1999,For storage only,28,El Ángel,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14442,67623,Ecuador,METT,2005,For storage only,28,El Ángel,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14443,7914,Ecuador,Ecuador MEE,1999,For storage only,28,El Boliche,National Recreation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14444,187,Ecuador,Ecuador MEE,1999,For storage only,28,Galápagos,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14445,11753,Ecuador,Ecuador MEE,1999,For storage only,28,Galápagos,Marine Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14446,187,Ecuador,Galapagos MEE,2004,For storage only,28,Galápagos,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14447,11753,Ecuador,WWF/CATIE,0,For storage only,28,Galápagos,Marine Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14448,187,Ecuador,MPA MEE,0,For storage only,28,Galápagos,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14449,191,Ecuador,MPA MEE,2003,For storage only,28,Galápagos Islands,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14450,191,Ecuador,WHA Outlook Report,2014,For storage only,28,Galápagos Islands,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14451,186,Ecuador,Birdlife IBA,1990,For storage only,28,Yasuní,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14452,20003,Ecuador,Ecuador MEE,1999,For storage only,28,Limoncocha,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14453,97512,Ecuador,Ecuador MEE,1999,For storage only,28,Llanganates,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14454,97512,Ecuador,PIP Site Consolidation,2004,For storage only,28,Llanganates,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14455,129914,Ecuador,Ecuador MEE,1999,For storage only,28,Los ILinizas,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14456,129914,Ecuador,METT,2009,For storage only,28,Los ILinizas,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14457,189,Ecuador,Ecuador MEE,1999,For storage only,28,Machalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14458,189,Ecuador,PIP Site Consolidation,1992,For storage only,28,Machalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14459,189,Ecuador,PIP Site Consolidation,1996,For storage only,28,Machalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14460,189,Ecuador,PIP Site Consolidation,1997,For storage only,28,Machalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14461,189,Ecuador,PIP Site Consolidation,1998,For storage only,28,Machalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14462,189,Ecuador,PIP Site Consolidation,1999,For storage only,28,Machalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14463,189,Ecuador,PIP Site Consolidation,2000,For storage only,28,Machalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14464,189,Ecuador,PIP Site Consolidation,2001,For storage only,28,Machalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14465,129915,Ecuador,Ecuador MEE,1999,For storage only,28,Mache Chindul,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14466,2238,Ecuador,Ecuador MEE,1999,For storage only,28,Manglares Churute,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14467,555547537,Ecuador,GOBI Survey,2006,For storage only,28,Podocarpus-El Condor,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14468,7912,Ecuador,Ecuador MEE,1999,For storage only,28,Podocarpus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14469,7912,Ecuador,PIP Site Consolidation,1992,For storage only,28,Podocarpus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14470,7912,Ecuador,PIP Site Consolidation,1996,For storage only,28,Podocarpus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14471,7912,Ecuador,PIP Site Consolidation,1997,For storage only,28,Podocarpus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14472,7912,Ecuador,PIP Site Consolidation,1998,For storage only,28,Podocarpus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14473,7912,Ecuador,PIP Site Consolidation,1999,For storage only,28,Podocarpus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14474,7912,Ecuador,PIP Site Consolidation,2000,For storage only,28,Podocarpus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14475,7912,Ecuador,PIP Site Consolidation,2001,For storage only,28,Podocarpus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14476,168274,Ecuador,Ecuador MEE,1999,For storage only,28,Pululahua,Geobotanical Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14477,2499,Ecuador,Birdlife IBA,1990,For storage only,28,Cuyabeno,Fauna Production Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14478,2499,Ecuador,METT,2009,For storage only,28,Cuyabeno,Fauna Production Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14479,183,Ecuador,METT,2009,For storage only,28,Cayambe Coca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14480,188,Ecuador,Ecuador MEE,1999,For storage only,28,Sangay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14481,188,Ecuador,Enhancing Our Heritage,2003,For storage only,28,Sangay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14482,188,Ecuador,Enhancing Our Heritage,2005,For storage only,28,Sangay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14483,188,Ecuador,Enhancing Our Heritage,2007,For storage only,28,Sangay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14484,9614,Ecuador,WHA Outlook Report,2014,For storage only,28,Sangay National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14485,81072,Ecuador,Ecuador MEE,1999,For storage only,28,Sumaco Napo-Galeras,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14486,220263,Ecuador,GOBI Survey,2006,For storage only,28,Sumaco,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14487,186,Ecuador,Ecuador MEE,1999,For storage only,28,Yasuní,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14488,186,Ecuador,GOBI Survey,2006,For storage only,28,Yasuní,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14489,389074,Spain,Catalonia MEE,2002,For storage only,28,Aiguabarreig Segre-Cinca,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14490,389075,Spain,Catalonia MEE,2002,For storage only,28,Aiguabarreig Segre-Noguera Pallaresa,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14492,389076,Spain,Catalonia MEE,2002,For storage only,28,Aiguabarreig Segre-Noguera Ribagorçana,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14493,151247,Spain,Catalonia MEE,2002,For storage only,28,Aiguamolls de l`Empordà,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14496,389077,Spain,Catalonia MEE,2002,For storage only,28,Aiguamolls de l`Alt Empordà,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14497,196014,Spain,Catalonia MEE,2002,For storage only,28,Aigüestortes i Estany de Sant Maurici,Nacional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14499,389079,Spain,Catalonia MEE,2002,For storage only,28,Aigüestortes,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14500,389080,Spain,Catalonia MEE,2002,For storage only,28,Riu Gai├á-Albereda de Santes Creus,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14501,389005,Spain,Catalonia MEE,2002,For storage only,28,Alt Àneu,Nature Reserve (Parcial),"GD-PAME, version pre-2017",Not Reported,2018,English -14503,389082,Spain,Catalonia MEE,2002,For storage only,28,"Alta Garrotxa, l`",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14505,902522,Spain,GOBI Survey,2006,For storage only,28,Alto de Bernesga,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14506,555523471,Spain,Birdlife IBA,2008,For storage only,28,Altos De Barahona,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14507,555538338,Spain,Birdlife IBA,2008,For storage only,28,Altos de Barahona - ZEPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14508,902518,Spain,GOBI Survey,2006,For storage only,28,Área de Allariz,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14509,389083,Spain,Catalonia MEE,2002,For storage only,28,Arribèra deth Garona,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14510,389084,Spain,Catalonia MEE,2002,For storage only,28,"Artiga de Lin, Era",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14512,389085,Spain,Catalonia MEE,2002,For storage only,28,Barrancs de Sant Antoni-Lloret-la Galera,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14513,349405,Spain,Birdlife IBA,2007,For storage only,28,Valles Occidentales,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14514,555523227,Spain,Birdlife IBA,2007,For storage only,28,Los Valles,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14515,555538277,Spain,Birdlife IBA,2007,For storage only,28,Los Valles,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14516,389086,Spain,Catalonia MEE,2002,For storage only,28,"Bessons, els",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14517,349094,Spain,Birdlife IBA,2007,For storage only,28,Cañón del Río Lobos,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14518,555523463,Spain,Birdlife IBA,2007,For storage only,28,Cañón del Río Lobos,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14519,555538159,Spain,Birdlife IBA,2007,For storage only,28,Cañón del Río Lobos - ZEPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14520,145809,Spain,Stockholm BR Survey,2008,For storage only,28,Cabo de Gata-Nijar,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14521,349127,Spain,Catalonia MEE,2002,For storage only,28,Cap de Creus,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14524,389006,Spain,Catalonia MEE,2002,For storage only,28,Cap de Creus,Nature Reserve (Integral),"GD-PAME, version pre-2017",Not Reported,2018,English -14525,389087,Spain,Catalonia MEE,2002,For storage only,28,Cap de Creus,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14526,389088,Spain,Catalonia MEE,2002,For storage only,28,Cap de Santes Creus-Litoral meridional tarragoní,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14527,389089,Spain,Catalonia MEE,2002,For storage only,28,Capçalera de la Noguera Ribagorçana,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14528,389090,Spain,Catalonia MEE,2002,For storage only,28,Capçaleres del Ter i del Freser,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14529,389091,Spain,Catalonia MEE,2002,For storage only,28,Carbasí,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14530,555538262,Spain,Birdlife IBA,2007,For storage only,28,Carrizales y sotos de Aranjuez,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14531,389208,Spain,Birdlife IBA,2008,For storage only,28,Tossa Plana de Lles-Puigpedrós,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14532,555538659,Spain,Birdlife IBA,2008,For storage only,28,Tossa Plana de Lles-Puigpedrós,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14533,555549049,Spain,Birdlife IBA,2008,For storage only,28,Tossa Plana de Lles-Puigpedrós,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14534,389092,Spain,Catalonia MEE,2002,For storage only,28,Cingles de Bertí,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14535,389093,Spain,Catalonia MEE,2002,For storage only,28,Collegats-Queralt,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14537,389094,Spain,Catalonia MEE,2002,For storage only,28,Collsacabra,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14538,389095,Spain,Catalonia MEE,2002,For storage only,28,"Conreria-Sant Mateu-Céllecs, la",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14539,389096,Spain,Catalonia MEE,2002,For storage only,28,Costoja,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14540,196213,Spain,Catalonia MEE,2002,For storage only,28,Delta de l`Ebre,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14543,389097,Spain,Catalonia MEE,2002,For storage only,28,Delta de l`Ebre,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14544,389098,Spain,Catalonia MEE,2002,For storage only,28,Delta del Llobregat,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14547,349265,Spain,Catalonia MEE,2002,For storage only,28,Desembocadura del Riu Gaià,Nature Reserve (Wildlife),"GD-PAME, version pre-2017",Not Reported,2018,English -14548,389099,Spain,Catalonia MEE,2002,For storage only,28,Desembocadura del Riu Gaià,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14549,893,Spain,European Diploma,1985,For storage only,28,Ordesa y Monte Perdido,Nacional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14550,67752,Spain,GOBI Survey,2006,For storage only,28,Doñana,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14551,67752,Spain,Stockholm BR Survey,2008,For storage only,28,Doñana,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14552,890,Spain,Wetland tracking tool,2005,For storage only,28,Marismas del Río Palmones,Nature Place,"GD-PAME, version pre-2017",Not Reported,2018,English -14553,61611,Spain,WHA Outlook Report,2014,For storage only,28,Doñana National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14554,555538235,Spain,Birdlife IBA,2008,For storage only,28,Valle del Tiétar y embalses de Rosarito y Navalcán,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14555,389100,Spain,Catalonia MEE,2002,For storage only,28,Erms d`Aitona,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14556,389101,Spain,Catalonia MEE,2002,For storage only,28,Estanh de Vielha,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14557,389229,Spain,Catalonia MEE,2002,For storage only,28,Estany d`Ivars-Vilasana,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14558,389102,Spain,Catalonia MEE,2002,For storage only,28,Estany de Banyoles,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14559,389103,Spain,Catalonia MEE,2002,For storage only,28,Estany de Montcortès,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14560,389104,Spain,Catalonia MEE,2002,For storage only,28,Estany de Sils,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14562,389105,Spain,Catalonia MEE,2002,For storage only,28,Estanys de Basturs,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14563,348858,Spain,Catalonia MEE,2002,For storage only,28,Estanys de la Jonquera,Nature Reserve (Wildlife),"GD-PAME, version pre-2017",Not Reported,2018,English -14564,389106,Spain,Catalonia MEE,2002,For storage only,28,Basses de l`Albera,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14565,389107,Spain,Catalonia MEE,2002,For storage only,28,Riu i estanys de Tordera,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14566,389108,Spain,Catalonia MEE,2002,For storage only,28,Eth Portilhon,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14567,389109,Spain,Catalonia MEE,2002,For storage only,28,"Faiada de Malpàs, la",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14568,389110,Spain,Catalonia MEE,2002,For storage only,28,Filià,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14569,389111,Spain,Catalonia MEE,2002,For storage only,28,"Foix, el",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14571,196147,Spain,Birdlife IBA,2007,For storage only,28,Fuentes Carrionas y Fuente Cobre - Montaña Palentina,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14572,555538620,Spain,Birdlife IBA,2007,For storage only,28,Fuentes Carrionas y Fuente Cobre - Montaña Palentina,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14573,555549019,Spain,Birdlife IBA,2007,For storage only,28,Fuentes Carrionas y Fuente Cobre - Montaña Palentina,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14574,389117,Spain,Catalonia MEE,2002,For storage only,28,Gallifa,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14575,12206,Spain,WHA Outlook Report,2014,For storage only,28,Garajonay National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14576,389118,Spain,Catalonia MEE,2002,For storage only,28,"Gavarres, les",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14577,389119,Spain,Catalonia MEE,2002,For storage only,28,Gelada,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14578,902519,Spain,GOBI Survey,2006,For storage only,28,Gran Canaria,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14579,2098,Spain,GOBI Survey,2006,For storage only,28,Reserva de Grazalema,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14580,389120,Spain,Catalonia MEE,2002,For storage only,28,"Guilleries, les",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14581,389028,Spain,Birdlife IBA,2007,For storage only,28,Hoces del Alto Ebro y Rudrón,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14582,555523405,Spain,Birdlife IBA,2007,For storage only,28,Hoces del Alto Ebro y Rudrón,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14583,555538614,Spain,Birdlife IBA,2007,For storage only,28,Hoces del Alto Ebro y Rudrón - ZEPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14584,555523409,Spain,Birdlife IBA,2007,For storage only,28,Humada-Peña Amaya,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14585,555538327,Spain,Birdlife IBA,2007,For storage only,28,Humada - Peña Amaya - ZEPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14586,198303,Spain,WHA Outlook Report,2014,For storage only,28,"Ibiza, Biodiversity and Culture",World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14587,389121,Spain,Catalonia MEE,2002,For storage only,28,Illa de Canet,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14589,349062,Spain,Catalonia MEE,2002,For storage only,28,L`illa de Fluvià,Nature Reserve (Wildlife),"GD-PAME, version pre-2017",Not Reported,2018,English -14590,389122,Spain,Catalonia MEE,2002,For storage only,28,Riberes i illes de l`Ebre,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14592,389123,Spain,Catalonia MEE,2002,For storage only,28,Illes Medes,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14594,348781,Spain,Birdlife IBA,2008,For storage only,28,Islote de Lobos,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14595,555524077,Spain,Birdlife IBA,2008,For storage only,28,Islote de Lobos,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14596,142934,Spain,Birdlife IBA,2008,For storage only,28,Corralejo,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14597,555524078,Spain,Birdlife IBA,2008,For storage only,28,Corralejo,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14598,555538192,Spain,Birdlife IBA,2008,For storage only,28,Dunas de Corralejo e Isla de Lobos,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14599,5199,Spain,GOBI Survey,2006,For storage only,28,La Palma,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14600,5199,Spain,Stockholm BR Survey,2008,For storage only,28,La Palma,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14601,61526,Spain,GOBI Survey,2006,For storage only,28,Reserva de la Biósfera Lanzarote,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14602,389124,Spain,Catalonia MEE,2002,For storage only,28,Mare de Déu de la Roca,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14603,389125,Spain,Catalonia MEE,2002,For storage only,28,Marimanha,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14605,15446,Spain,Catalonia MEE,2002,For storage only,28,Mas de Melons,Nature Reserve (Parcial),"GD-PAME, version pre-2017",Not Reported,2018,English -14607,555552489,Spain,Catalonia MEE,2002,For storage only,28,Reserva Marina de Masía Blanca,Marine Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14608,348962,Spain,Catalonia MEE,2002,For storage only,28,Massís de l`Albera,Nature Place (National Interest),"GD-PAME, version pre-2017",Not Reported,2018,English -14609,389126,Spain,Catalonia MEE,2002,For storage only,28,Massís de l`Albera,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14611,389127,Spain,Catalonia MEE,2002,For storage only,28,Massís de les Cadiretes,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14612,389128,Spain,Catalonia MEE,2002,For storage only,28,Massís de les Salines,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14613,389129,Spain,Catalonia MEE,2002,For storage only,28,Massís del Garraf,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14615,15429,Spain,Catalonia MEE,2002,For storage only,28,Muntanya de Montserrat,Nature Reserve (Parcial),"GD-PAME, version pre-2017",Not Reported,2018,English -14618,61525,Spain,GOBI Survey,2006,For storage only,28,Menorca,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14619,61525,Spain,Stockholm BR Survey,2008,For storage only,28,Menorca,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14620,389131,Spain,Catalonia MEE,2002,For storage only,28,"Miracle, el",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14621,901257,Spain,GOBI Survey,2006,For storage only,28,Monfragüe,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14622,389133,Spain,Catalonia MEE,2002,For storage only,28,Montanhes de Les e Bossòst,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14624,348798,Spain,Birdlife IBA,2008,For storage only,28,Izki,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14625,555538605,Spain,Birdlife IBA,2008,For storage only,28,Izki,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14626,555549010,Spain,Birdlife IBA,2008,For storage only,28,Izki,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14627,389134,Spain,Catalonia MEE,2002,For storage only,28,Montesquiu,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14629,389135,Spain,Catalonia MEE,2002,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -14631,389136,Spain,Catalonia MEE,2002,For storage only,28,Montllober,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14633,389137,Spain,Catalonia MEE,2002,For storage only,28,El Montmell-Marmellar,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14634,389138,Spain,Catalonia MEE,2002,For storage only,28,Montserrat,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14639,220269,Spain,GOBI Survey,2006,For storage only,28,Muniellos,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14640,389139,Spain,Catalonia MEE,2002,For storage only,28,Muntanya de Sal de Cardona,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14641,389140,Spain,Catalonia MEE,2002,For storage only,28,Muntanyes de Begur,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14643,389142,Spain,Catalonia MEE,2002,For storage only,28,Muntanyes de Prades,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14646,389143,Spain,Catalonia MEE,2002,For storage only,28,Muntanyes de Rocacorba,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14647,389144,Spain,Catalonia MEE,2002,For storage only,28,Muntanyes de Tivissa-Vandellòs,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14648,389145,Spain,Catalonia MEE,2002,For storage only,28,Naut Aran,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14649,389146,Spain,Catalonia MEE,2002,For storage only,28,Vall del Rigart,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14650,389147,Spain,Catalonia MEE,2002,For storage only,28,Obagues del Riu Corb,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14651,389148,Spain,Catalonia MEE,2002,For storage only,28,Olèrdola,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14653,905,Sweden;Spain,European Diploma,1988,For storage only,28,Padjelanta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14654,348789,Spain,Birdlife IBA,2008,For storage only,28,La Caldera de Taburiente,Nacional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14655,555538193,Spain,Birdlife IBA,2008,For storage only,28,Caldera de Taburiente,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14656,555548898,Spain,Birdlife IBA,2008,For storage only,28,Caldera de Taburiente,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14657,196099,Spain,Birdlife IBA,2008,For storage only,28,Jandía,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14658,555524079,Spain,Birdlife IBA,2008,For storage only,28,Jandía,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14659,555538189,Spain,Birdlife IBA,2008,For storage only,28,Jandía,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14660,389149,Spain,Catalonia MEE,2002,For storage only,28,Penya-segats de la Muga,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14661,901256,Spain,GOBI Survey,2006,For storage only,28,"Picos de Europe, Gran Cant├íbrica",UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14662,389151,Spain,Catalonia MEE,2002,For storage only,28,"Plana de Sant Jordi, la",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14663,389152,Spain,Catalonia MEE,2002,For storage only,28,Platja de Torredembarra i Creixell,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14665,389153,Spain,Catalonia MEE,2002,For storage only,28,"Ports, els",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14668,389154,Spain,Catalonia MEE,2002,For storage only,28,Puig de la Banya del Boc,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14670,68185,Spain,Birdlife IBA,2008,For storage only,28,Complejo intermareal Umia-Grove,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14671,349318,Spain,Birdlife IBA,2008,For storage only,28,"Complexo intermareal Umia-O Grove A Lanzada, punta Carreir├│n e lagoa Bodeira",Natura 2000,"GD-PAME, version pre-2017",Not Reported,2018,English -14672,349347,Spain,Birdlife IBA,2008,For storage only,28,"Complexo intermareal Umia-O Grove, A Lanzada, punta Carreir├│n e lagoa Bodeira",Protected Wetland,"GD-PAME, version pre-2017",Not Reported,2018,English -14673,555538233,Spain,Birdlife IBA,2008,For storage only,28,"Complexo intermareal Umia - O Grove, A Lanzada, punta Carreir├│n e lagoa Bodeira",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14674,900547,Spain,GOBI Survey,2006,For storage only,28,Redes,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14675,4840,Spain,Birdlife IBA,2008,For storage only,28,Picos de Europa en Castilla y León,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14676,555538615,Spain,Birdlife IBA,2008,For storage only,28,Picos de Europa en Castilla y León,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14677,555549016,Spain,Birdlife IBA,2008,For storage only,28,Picos de Europa en Castilla y León,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14678,389155,Spain,Catalonia MEE,2002,For storage only,28,Riba-roja,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14679,349256,Spain,Catalonia MEE,2002,For storage only,28,Ribera de l`Algars,Nature Reserve (Parcial),"GD-PAME, version pre-2017",Not Reported,2018,English -14680,389156,Spain,Catalonia MEE,2002,For storage only,28,Ribera de l`Algars,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14681,349700,Spain,Catalonia MEE,2002,For storage only,28,Ribera de l`Ebre a Flix,Nature Reserve (Wildlife),"GD-PAME, version pre-2017",Not Reported,2018,English -14682,389157,Spain,Catalonia MEE,2002,For storage only,28,Ribera de l`Ebre a Flix,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14683,389158,Spain,Catalonia MEE,2002,For storage only,28,Ribera Salada,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14684,389159,Spain,Catalonia MEE,2002,For storage only,28,Riberes de l`Alt Segre,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14686,349712,Spain,Catalonia MEE,2002,For storage only,28,Riera d`Arbucies-Hostalric,Nature Reserve (Parcial),"GD-PAME, version pre-2017",Not Reported,2018,English -14687,389160,Spain,Catalonia MEE,2002,For storage only,28,Riera d`Arbúcies,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14688,349711,Spain,Catalonia MEE,2002,For storage only,28,Riera de Merlés,Nature Reserve (Parcial),"GD-PAME, version pre-2017",Not Reported,2018,English -14689,389073,Spain,Catalonia MEE,2002,For storage only,28,Riera de Merlés,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14690,389161,Spain,Catalonia MEE,2002,For storage only,28,Riera de Navel,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14691,389162,Spain,Catalonia MEE,2002,For storage only,28,Riera de Santa Coloma,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14693,389163,Spain,Catalonia MEE,2002,For storage only,28,Riera de Sorreigs,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14695,389164,Spain,Catalonia MEE,2002,For storage only,28,"Rojala-Platja del Torn, la",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14697,349647,Spain,Birdlife IBA,2008,For storage only,28,Roque de Garachico,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14698,555538746,Spain,Birdlife IBA,2008,For storage only,28,Roque de Garachico,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14699,555549134,Spain,Birdlife IBA,2008,For storage only,28,Roque de Garachico,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14700,389165,Spain,Catalonia MEE,2002,For storage only,28,Roques Blanques,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14701,389166,Spain,Catalonia MEE,2002,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -14702,389167,Spain,Catalonia MEE,2002,For storage only,28,Sant Joan de Toran,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14703,389168,Spain,Catalonia MEE,2002,For storage only,28,Sant Llorenç del Munt i l`Obac,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14706,389169,Spain,Catalonia MEE,2002,For storage only,28,"Sauva Negra, la",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14707,389170,Spain,Catalonia MEE,2002,For storage only,28,Savassona,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14708,389171,Spain,Catalonia MEE,2002,For storage only,28,Sèquia Major,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14709,389172,Spain,Catalonia MEE,2002,For storage only,28,Serra Cavallera,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14710,389173,Spain,Catalonia MEE,2002,For storage only,28,Serra d`Aubenç i Roc de Cogul,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14711,389174,Spain,Catalonia MEE,2002,For storage only,28,Serra d`Ensija-els Rasos de Peguera,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14712,389177,Spain,Catalonia MEE,2002,For storage only,28,Serra de Carreu-Sant Corneli,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14713,389178,Spain,Catalonia MEE,2002,For storage only,28,Serra de Castelltallat,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14714,389179,Spain,Catalonia MEE,2002,For storage only,28,Serra de Collserola,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14716,389180,Spain,Catalonia MEE,2002,For storage only,28,Serra de Llaberia,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14717,389181,Spain,Catalonia MEE,2002,For storage only,28,Serra de Montgrony,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14718,389182,Spain,Catalonia MEE,2002,For storage only,28,Serra de Montsià,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14720,389183,Spain,Catalonia MEE,2002,For storage only,28,Serra de Picancel,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14721,389184,Spain,Catalonia MEE,2002,For storage only,28,Serra de Queralt i Els Tossals,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14722,389249,Spain,Catalonia MEE,2002,For storage only,28,Vall Alta de Serradell-Terreta-Serra de Sant Gervàs,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14723,389185,Spain,Catalonia MEE,2002,For storage only,28,Serra de Turp i Mora Condal-Valldaran,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14724,389186,Spain,Catalonia MEE,2002,For storage only,28,Serra del Catllaràs,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14725,389187,Spain,Catalonia MEE,2002,For storage only,28,Serra del Montsant,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14726,389188,Spain,Catalonia MEE,2002,For storage only,28,Serra del Montsec,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14728,389189,Spain,Catalonia MEE,2002,For storage only,28,Serra del Verd,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14729,389190,Spain,Catalonia MEE,2002,For storage only,28,Serra Llarga-Secans de la Noguera,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14730,389191,Spain,Catalonia MEE,2002,For storage only,28,Serra Mitjana,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14731,389192,Spain,Catalonia MEE,2002,For storage only,28,Serres d`Odèn-Port del Comte,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14732,389193,Spain,Catalonia MEE,2002,For storage only,28,Serres de Busa-els Bastets-Lord,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14733,389194,Spain,Catalonia MEE,2002,For storage only,28,Serres de Cardó-el Boix,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14734,389195,Spain,Catalonia MEE,2002,For storage only,28,Serres de Milany-Santa Magdalena i Puigsacalm-Bellmunt,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14735,389206,Spain,Catalonia MEE,2002,For storage only,28,Serres del Montnegre i el Corredor,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14737,389196,Spain,Catalonia MEE,2002,For storage only,28,Serres de Pàndols-Cavalls,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14738,389204,Spain,Catalonia MEE,2002,For storage only,28,Serres de Pradell-l`Argentera,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14739,389205,Spain,Catalonia MEE,2002,For storage only,28,Serres del Cadí-Moixeró,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14743,134940,Spain,GOBI Survey,2006,For storage only,28,Sierra de las Nieves y su Entorno,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14744,902520,Spain,GOBI Survey,2006,For storage only,28,Sierra del Rincón,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14745,220270,Spain,GOBI Survey,2006,For storage only,28,Somiedo,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14746,389207,Spain,Catalonia MEE,2002,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -14748,903132,Spain,European Diploma,1989,For storage only,28,Teide National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14749,903132,Spain,WHA Outlook Report,2014,For storage only,28,Teide National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14750,900724,Spain,GOBI Survey,2006,For storage only,28,Terras do Mino,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14751,349482,Spain,Catalonia MEE,2002,For storage only,28,Torrent del Pi,Nature Reserve (Wildlife),"GD-PAME, version pre-2017",Not Reported,2018,English -14752,389208,Spain,Catalonia MEE,2002,For storage only,28,Tossa Plana de Lles-Puigpedrós,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14754,389209,Spain,Catalonia MEE,2002,For storage only,28,Tossal Gros de Miramar,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14755,389210,Spain,Catalonia MEE,2002,For storage only,28,Tossals d` Almatret,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14756,389211,Spain,Catalonia MEE,2002,For storage only,28,Tossals d`Isòvol i Olopte,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14758,389212,Spain,Catalonia MEE,2002,For storage only,28,Serós-Tossals de Montmeneu,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14759,389214,Spain,Catalonia MEE,2002,For storage only,28,"Tres Hereus, els",Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14760,389215,Spain,Catalonia MEE,2002,For storage only,28,Turons de la Plana Ausetana,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14761,389216,Spain,Catalonia MEE,2002,For storage only,28,Turons de Maçanet,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14763,196192,Spain,Catalonia MEE,2002,For storage only,28,Utxesa,Nature Reserve (Wildlife),"GD-PAME, version pre-2017",Not Reported,2018,English -14764,389217,Spain,Catalonia MEE,2002,For storage only,28,Utxesa,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14766,349623,Spain,Birdlife IBA,2007,For storage only,28,Valle de Iruelas,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14767,555538260,Spain,Birdlife IBA,2007,For storage only,28,Valle de Iruelas,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14768,555548941,Spain,Birdlife IBA,2007,For storage only,28,Valle De Iruelas,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14769,901255,Spain,GOBI Survey,2006,For storage only,28,Valle de Laciana,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14770,901258,Spain,Stockholm BR Survey,2008,For storage only,28,"Valles del Jubera, Leza, Cidacos y Alhama",UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14771,389001,Spain,Birdlife IBA,2008,For storage only,28,Lagunas de Villafafila,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14772,555538158,Spain,Birdlife IBA,2008,For storage only,28,Lagunas de Villafafila,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14773,389219,Spain,Catalonia MEE,2002,For storage only,28,Volcà de la Crosa,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14775,196372,Spain,Catalonia MEE,2002,For storage only,28,Zona Volcànica de la Garrotxa,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14778,389220,Spain,Catalonia MEE,2002,For storage only,28,Zona Volcànica de la Garrotxa,Protection Plan,"GD-PAME, version pre-2017",Not Reported,2018,English -14779,2279,Ethiopia,Birdlife IBA,2013,For storage only,28,Abijatta-Shalla Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14780,342654,Ethiopia,METT,2005,For storage only,28,Alatish,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14781,10740,Ethiopia,METT,2011,For storage only,28,Alledeghi,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14782,652,Ethiopia,METT,2005,For storage only,28,Awash,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14783,652,Ethiopia,Birdlife IBA,2013,For storage only,28,Awash,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14784,18439,Ethiopia,METT,2005,For storage only,28,Babile Elephant,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14785,2281,Ethiopia,METT,2004,For storage only,28,Bale Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14786,2281,Ethiopia,METT,0,For storage only,28,Bale Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14787,342517,Ethiopia,METT,2005,For storage only,28,Chebera-Churchura,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14788,13704,Ethiopia,METT,2005,For storage only,28,Gambella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14789,2277,Ethiopia,Birdlife IBA,1996,For storage only,28,Mago,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14790,13766,Ethiopia,METT,2005,For storage only,28,Maze,Controlled Hunting Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14791,2278,Ethiopia,METT,2005,For storage only,28,Nechisar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14792,2280,Ethiopia,METT,2005,For storage only,28,Omo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14793,2280,Ethiopia,Birdlife IBA,1996,For storage only,28,Omo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14794,10739,Ethiopia,METT,2005,For storage only,28,Senkelle Swayne's Hartebeest,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14795,653,Ethiopia,METT,2005,For storage only,28,Simien Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14796,2006,Ethiopia,WHA Outlook Report,2014,For storage only,28,Simien National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14797,7401,Ethiopia,Birdlife IBA,1996,For storage only,28,Yabello,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14798,2276,Ethiopia,METT,2005,For storage only,28,Yangudi Rassa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14799,34878,Fiji,METT,2010,For storage only,28,Taveuni,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14800,1516,Fiji,METT,2010,For storage only,28,Tomaniivi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14801,67983,Guinea,RAPPAM,2007,For storage only,28,Ile Alcatraz,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14802,29069,Guinea,RAPPAM,2007,For storage only,28,Badiar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14803,900716,Guinea,RAPPAM,2006,For storage only,28,Badiar,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14804,903066,Guinea,RAPPAM,2007,For storage only,28,Bafing-Falémé,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14805,29484,Guinea,RAPPAM,2007,For storage only,28,Diécké,Classified Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -14806,29447,Guinea,RAPPAM,2007,For storage only,28,Haut Niger National Park - Kouya Core Area,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14807,67983,Guinea,METT,2006,For storage only,28,Ile Alcatraz,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14808,67984,Guinea,METT,2006,For storage only,28,Iles Tristao,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14809,67986,Guinea,METT,2006,For storage only,28,Rio Pongo,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14812,67987,Guinea,Birdlife IBA,2001,For storage only,28,Konkouré,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14814,29066,Guinea,Birdlife IBA,2001,For storage only,28,Massif du Ziama,Classified Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -14815,29067,Guinea;Côte d'Ivoire,RAPPAM,2009,For storage only,28,Mount Nimba,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14816,2574,Guinea,Birdlife IBA,2001,For storage only,28,Mount Nimba Strict Nature Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14817,29067,Côte d'Ivoire;Guinea,Birdlife IBA,2001,For storage only,28,Mount Nimba,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14818,29067,Côte d'Ivoire;Guinea,RAPPAM,2007,For storage only,28,Mount Nimba,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14819,3027,Guinea,METT,2004,For storage only,28,Réserve de la biosphère des Monts Nimba,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14820,3027,Guinea,METT,2010,For storage only,28,Réserve de la biosphère des Monts Nimba,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14821,29067,Côte d'Ivoire;Guinea,METT,2004,For storage only,28,Mount Nimba,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14823,67986,Guinea,Birdlife IBA,2001,For storage only,28,Rio Pongo,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14824,19980,Guinea,RAPPAM,2007,For storage only,28,Tristao,Faunal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14825,29066,Guinea,RAPPAM,2007,For storage only,28,Massif du Ziama,Classified Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -14827,313354,Equatorial Guinea,METT,0,For storage only,28,Caldera de Luba,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14828,20267,Equatorial Guinea,METT,0,For storage only,28,Monte Alén,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14829,20267,Equatorial Guinea,Africa Rainforest Study,2001,For storage only,28,Monte Alén,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14830,20267,Equatorial Guinea,RAPPAM,2010,For storage only,28,Monte Alén,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14831,20264,Equatorial Guinea,METT,0,For storage only,28,Pico de Basilé,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14832,2189,Grenada,RAPPAM,2006,For storage only,28,Grand Etang Forest Corridors Addition,Local Area Planning,"GD-PAME, version pre-2017",Not Reported,2018,English -14833,14182,Grenada,RAPPAM,2006,For storage only,28,High North,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14834,12705,Grenada,RAPPAM,2006,For storage only,28,Levera,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14835,14191,Grenada,RAPPAM,2006,For storage only,28,Molinier-Beausejour,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14836,116321,Grenada,RAPPAM,2006,For storage only,28,Mt. Hartman,Surveyed/Undesignated Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14837,14181,Grenada,RAPPAM,2006,For storage only,28,Mt. St. Catherine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14838,116322,Grenada,RAPPAM,2006,For storage only,28,Perseverance,Designated Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14839,41045,Honduras,METT,2010,For storage only,28,"Tawahka Asangni _x000D_ -_x000D_ -",Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14840,41011,Honduras,PROARCA/CAPAS,2002,For storage only,28,Capiro Calentura,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14841,18805,Honduras,PROARCA/CAPAS,2000,For storage only,28,Celaque,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14842,18807,Honduras,PROARCA/CAPAS,2000,For storage only,28,Azul Meámbar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14843,23306,Honduras,PROARCA/CAPAS,2000,For storage only,28,Cusuco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14844,23308,Honduras,PROARCA/CAPAS,2000,For storage only,28,El Armado,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14845,18828,Honduras,PROARCA/CAPAS,2000,For storage only,28,El Chile,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14846,18828,Honduras,PROARCA/CAPAS,2001,For storage only,28,El Chile,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14847,18828,Honduras,PROARCA/CAPAS,2002,For storage only,28,El Chile,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14848,41019,Honduras,PROARCA/CAPAS,2000,For storage only,28,El Jicarito,Habitat Management Area by Species,"GD-PAME, version pre-2017",Not Reported,2018,English -14849,555582978,Honduras,METT,2006,For storage only,28,Guanaja 2,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14850,555582978,Honduras,METT,2008,For storage only,28,Guanaja 2,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14851,555582978,Honduras,METT,2012,For storage only,28,Guanaja 2,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14852,18847,Honduras,PROARCA/CAPAS,2000,For storage only,28,La Muralla,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14853,18847,Honduras,PROARCA/CAPAS,2002,For storage only,28,La Muralla,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14854,30625,Honduras,PROARCA/CAPAS,2000,For storage only,28,Laguna de Karatasca,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14855,36051,Honduras,PROARCA/CAPAS,2002,For storage only,28,Laguna de Guaimoreto,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14856,18811,Honduras,PROARCA/CAPAS,2001,For storage only,28,Montañade Yoro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14857,41013,Honduras,METT,2005,For storage only,28,Patuca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14858,41013,Honduras,PROARCA/CAPAS,2000,For storage only,28,Patuca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14859,41013,Honduras,METT,2010,For storage only,28,Patuca,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14860,18810,Honduras,PROARCA/CAPAS,2000,For storage only,28,Pico Bonito,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14861,18812,Honduras,PROARCA/CAPAS,2000,For storage only,28,Pico Pijol,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14862,18812,Honduras,PROARCA/CAPAS,2002,For storage only,28,Pico Pijol,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14863,18812,Honduras,PROARCA/CAPAS,2005,For storage only,28,Pico Pijol,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14864,41027,Honduras,METT,2006,For storage only,28,Port Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14865,41027,Honduras,METT,2008,For storage only,28,Port Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14866,41027,Honduras,METT,2012,For storage only,28,Port Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14867,41014,Honduras,METT,2010,For storage only,28,Río Plátano,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14868,36053,Honduras,PROARCA/CAPAS,2000,For storage only,28,Río Kruta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14870,5002,Honduras,Enhancing Our Heritage,2002,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14871,5002,Honduras,Enhancing Our Heritage,2005,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14872,5002,Honduras,Enhancing Our Heritage,2007,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14873,5002,Honduras,PIP Site Consolidation,1997,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14874,5002,Honduras,PIP Site Consolidation,1998,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14875,5002,Honduras,PIP Site Consolidation,1999,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14876,5002,Honduras,PIP Site Consolidation,2000,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14877,5002,Honduras,PIP Site Consolidation,2001,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14878,5002,Honduras,PIP Site Consolidation,2002,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14879,5002,Honduras,PROARCA/CAPAS,2000,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14880,5002,Honduras,PROARCA/CAPAS,2003,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14881,5002,Honduras,PROARCA/CAPAS,2006,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14882,5002,Honduras,GOBI Survey,2006,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14883,5002,Honduras,METT,2005,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14884,5002,Honduras,WHA Outlook Report,2014,For storage only,28,Río Plátano Biosphere Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14885,62046,Honduras,PROARCA/CAPAS,2000,For storage only,28,Rus-Rus,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14886,555582985,Honduras,PROARCA/CAPAS,2000,For storage only,28,Warunta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14887,555582985,Honduras,PROARCA/CAPAS,2001,For storage only,28,Warunta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14888,18808,Honduras,PROARCA/CAPAS,2000,For storage only,28,Agalta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14889,2213,Belize;Honduras,METT,2006,For storage only,28,Halfmoon Caye,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14890,2213,Belize;Honduras,METT,2008,For storage only,28,Halfmoon Caye,Natural Monument,"GD-PAME, version pre-2017",Not Reported,2018,English -14891,41045,Honduras,METT,2005,For storage only,28,"Tawahka Asangni _x000D_ -_x000D_ -",Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14893,62052,Honduras,METT,2006,For storage only,28,Turtle Harbor,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14894,62052,Honduras,METT,2008,For storage only,28,Turtle Harbor,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14895,62052,Honduras,METT,2012,For storage only,28,Turtle Harbor,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14896,302119,Honduras,PROARCA/CAPAS,2000,For storage only,28,Yuscarán,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14897,302119,Honduras,PROARCA/CAPAS,2001,For storage only,28,Yuscarán,Biological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14898,7880,Haiti,METT,2009,For storage only,28,La Visite,Natural National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14899,7879,Haiti,METT,2009,For storage only,28,Parc Macaya,Natural National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14900,13653,Hungary,Stockholm BR Survey,2008,For storage only,28,Aggtelek Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14901,13652,Hungary,GOBI Survey,2006,For storage only,28,Aggleki,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14902,93292,Hungary,WHA Outlook Report,2014,For storage only,28,Caves of Aggtelek Karst and Slovak Karst,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -14903,100798,Hungary,Wetland tracking tool,2005,For storage only,28,Duna-Dráva,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14904,2072,Hungary,GOBI Survey,2006,For storage only,28,Lake Fertö Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14905,2069,Hungary,GOBI Survey,2006,For storage only,28,Hortobágy National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14906,2069,Hungary,Stockholm BR Survey,2008,For storage only,28,Hortobágy National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14907,9705,Hungary,European Diploma,1995,For storage only,28,Ipolytarnóci ősmaradványok,Nature Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14908,2070,Hungary,GOBI Survey,2006,For storage only,28,Kiskunság Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14909,2070,Hungary,Stockholm BR Survey,2008,For storage only,28,Kiskunság Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14910,2072,Hungary,Stockholm BR Survey,2008,For storage only,28,Lake Fertö Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14911,3029,Hungary,GOBI Survey,2006,For storage only,28,Pilis Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14912,3029,Hungary,Stockholm BR Survey,2008,For storage only,28,Pilis Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14913,555527181,Hungary,European Diploma,1995,For storage only,28,Tihanyi-félsziget,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -14914,17120,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Amirkelayeh,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14915,17156,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Anzali Mordab (Talab) complex,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14916,708,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Arjan or Ajan and Parishan,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14917,17162,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Bujagh National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14918,313251,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Bojagh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14919,17162,"Iran, Islamic Republic of",METT,2007,For storage only,28,Bujagh National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14920,17162,"Iran, Islamic Republic of",METT,2008,For storage only,28,Bujagh National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14921,902321,"Iran, Islamic Republic of",METT,2005,For storage only,28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14922,902321,"Iran, Islamic Republic of",METT,2007,For storage only,28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14923,902321,"Iran, Islamic Republic of",METT,2008,For storage only,28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14924,902321,"Iran, Islamic Republic of",METT,2009,For storage only,28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14925,68014,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Lake Gori,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14926,17131,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Hamoun,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14927,17158,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Hamun-e-Saberi & Hamun-e-Helmand,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14928,709,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Hara,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14929,17166,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Khuran Straits,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14930,17159,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Lake Kobi,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14931,708,"Iran, Islamic Republic of",METT,2009,For storage only,28,Arjan or Ajan and Parishan,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14932,68012,"Iran, Islamic Republic of",METT,2013,For storage only,28,Lake Parishan & Dasht-e-Arjan,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14933,17154,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Lake Urmia [or Orumiyeh],"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14934,313261,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Urumieh lake,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14935,17154,"Iran, Islamic Republic of",METT,2009,For storage only,28,Lake Urmia [or Orumiyeh],"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14936,17154,"Iran, Islamic Republic of",METT,2013,For storage only,28,Lake Urmia [or Orumiyeh],"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14937,17154,"Iran, Islamic Republic of",METT,0,For storage only,28,Lake Urmia [or Orumiyeh],"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14938,17175,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Miankaleh,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14939,313406,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Hara-e Roud-e Gaz,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14940,17167,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,"Deltas of Rud-e-Shur, Rud-e-Shirin and Rud-e-Minab","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14941,17128,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Shadegan,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -14942,17157,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,Shadegan Marshes & mudflats of Khor-al Amaya & Khor Musa,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14943,17161,"Iran, Islamic Republic of",Birdlife IBA,1994,For storage only,28,"Shurgol, Yadegarlu & Dorgeh Sangi Lakes","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14944,145816,Jamaica,METT,2009,For storage only,28,Black River Lower Morass,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14945,145816,Jamaica,RAPPAM,2006,For storage only,28,Black River Lower Morass,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14946,28856,Jamaica,METT,2009,For storage only,28,Blue and John Crow Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14947,28856,Jamaica,PIP Site Consolidation,1997,For storage only,28,Blue and John Crow Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14948,28856,Jamaica,PIP Site Consolidation,1998,For storage only,28,Blue and John Crow Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14949,28856,Jamaica,PIP Site Consolidation,1999,For storage only,28,Blue and John Crow Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14950,28856,Jamaica,PIP Site Consolidation,2000,For storage only,28,Blue and John Crow Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14951,28856,Jamaica,PIP Site Consolidation,2001,For storage only,28,Blue and John Crow Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14952,28856,Jamaica,RAPPAM,2006,For storage only,28,Blue and John Crow Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14953,555542822,Jamaica,METT,2009,For storage only,28,Bluefields Bay,Fish Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14954,13675,Jamaica,METT,2009,For storage only,28,Bogue Islands Lagoon,Fish Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14955,28982,Jamaica,RAPPAM,2006,For storage only,28,Bull Head,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14956,28941,Jamaica,PIP Site Consolidation,2001,For storage only,28,Cockpit Country,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14957,28941,Jamaica,PIP Site Consolidation,2002,For storage only,28,Cockpit Country,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14958,28941,Jamaica,PIP Site Consolidation,2003,For storage only,28,Cockpit Country,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14959,28941,Jamaica,PIP Site Consolidation,2004,For storage only,28,Cockpit Country,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14960,28941,Jamaica,PIP Site Consolidation,2005,For storage only,28,Cockpit Country,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14961,28941,Jamaica,RAPPAM,2006,For storage only,28,Cockpit Country,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14962,555542828,Jamaica,METT,2009,For storage only,28,Coral Spring,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14963,305460,Australia;Jamaica,METT,2009,For storage only,28,Discovery Bay,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14964,555542840,Jamaica,RAPPAM,2006,For storage only,28,Dolphin Head,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14965,555542821,Jamaica,METT,2009,For storage only,28,Galleon - Black River,Fish Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14966,555542818,Jamaica,METT,2009,For storage only,28,Galleon Harbour,Fish Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14967,28941,Jamaica,METT,2002,For storage only,28,Cockpit Country,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14968,555542827,Jamaica,METT,2009,For storage only,28,Mason River Savanna,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14970,555542827,Jamaica,RAPPAM,2006,For storage only,28,Mason River Savanna,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14971,203,Jamaica,METT,2009,For storage only,28,Montego Bay,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14973,203,Jamaica,RAPPAM,2006,For storage only,28,Montego Bay,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14974,28995,Jamaica,RAPPAM,2006,For storage only,28,Mount Diablo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14975,13676,Jamaica,RAPPAM,2006,For storage only,28,Negril,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14977,13676,Jamaica,METT,2009,For storage only,28,Negril,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14979,202,Jamaica,RAPPAM,2006,For storage only,28,Ocho Rios,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14980,202,Jamaica,METT,2009,For storage only,28,Ocho Rios,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14981,555542823,Jamaica,METT,2009,For storage only,28,Orange Bay,Fish Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14982,14871,Jamaica,RAPPAM,2006,For storage only,28,Palisadoes,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14983,902403,Jamaica,METT,2009,For storage only,28,Palisadoes - Port Royal,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14984,220101,Jamaica,RAPPAM,2006,For storage only,28,Portland Bight,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14985,220101,Jamaica,METT,2009,For storage only,28,Portland Bight,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -14986,555542900,Jamaica,METT,2009,For storage only,28,Salt Harbour (revised),Fish Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14987,555542820,Jamaica,METT,2009,For storage only,28,Three Bay Area,Fish Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -14988,902908,Liberia,RAPPAM,2009,For storage only,28,Kpatawee Wetlands,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14989,901219,Liberia,METT,2013,For storage only,28,Lake Piso,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14991,902909,Liberia,RAPPAM,2009,For storage only,28,Marshall Wetlands,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14992,902910,Liberia,RAPPAM,2009,For storage only,28,Mesurado Wetlands,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14993,9176,Liberia,Birdlife IBA,2013,For storage only,28,East Nimba Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -14994,901219,Liberia,RAPPAM,2009,For storage only,28,Lake Piso,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -14996,555512169,Liberia,METT,2009,For storage only,28,Grand Kru-River Gee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14997,9170,Liberia,METT,2009,For storage only,28,Grebo National Forest Park,National Forest Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14998,7409,Liberia,Birdlife IBA,2013,For storage only,28,Sapo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -14999,7409,Liberia,METT,2002,For storage only,28,Sapo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15000,7409,Liberia,METT,2011,For storage only,28,Sapo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15001,97461,Saint Lucia,RAPPAM,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15002,11846,Saint Lucia,RAPPAM,2009,For storage only,28,Pigeon Island,National Landmark,"GD-PAME, version pre-2017",Not Reported,2018,English -15003,902367,Saint Lucia,RAPPAM,2009,For storage only,28,Pitons Management Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15004,902367,Saint Lucia,WHA Outlook Report,2014,For storage only,28,Pitons Management Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15005,97463,Saint Lucia,RAPPAM,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15006,71020,Saint Lucia,RAPPAM,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15007,555542221,Luxembourg,Birdlife IBA,2009,For storage only,28,"Aspelt - Lannebur, Am Kessel",Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15008,16296,Luxembourg,Birdlife IBA,2009,For storage only,28,Haardt-Hesselbierg-Staebierg (Dudelange-Kayl-Rumelange),Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15009,337473,Luxembourg,Birdlife IBA,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15010,337500,Luxembourg,Birdlife IBA,2009,For storage only,28,Dudelange Haard,ZSC - Natura 2000,"GD-PAME, version pre-2017",Not Reported,2018,English -15011,555536895,Luxembourg,Birdlife IBA,2009,For storage only,28,Dudelange Haard,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15012,555542220,Luxembourg,Birdlife IBA,2009,For storage only,28,Dudelange Haard,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15013,555577784,Luxembourg,Birdlife IBA,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15014,555578875,Luxembourg,Birdlife IBA,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15015,337472,Luxembourg,Birdlife IBA,2009,For storage only,28,Esch-sur-Alzette Sud-est - Anciennes minières / Ellergronn 2,ZPS - Natura 2000,"GD-PAME, version pre-2017",Not Reported,2018,English -15016,337499,Luxembourg,Birdlife IBA,2009,For storage only,28,Esch-sur-Alzette Sud-est - Anciennes minières / Ellergronn 1,ZSC - Natura 2000,"GD-PAME, version pre-2017",Not Reported,2018,English -15017,555536894,Luxembourg,Birdlife IBA,2009,For storage only,28,Esch-sur-Alzette Sud-est - Anciennes minières / Ellegronn,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15018,555542219,Luxembourg,Birdlife IBA,2009,For storage only,28,Esch-sur-Alzette Sud-est - Anciennes minières / Ellegronn,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15019,16358,Luxembourg,European Diploma,1973,For storage only,28,Parc Naturel de l'Our,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15020,337457,Luxembourg,Birdlife IBA,2009,For storage only,28,Vallée de la Syre de Moutfort à Roodt/Syre,ZPS - Natura 2000,"GD-PAME, version pre-2017",Not Reported,2018,English -15021,555542216,Luxembourg,Birdlife IBA,2009,For storage only,28,Vallée de la Syre de Moutfort à Roodt/Syre,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15022,337455,Luxembourg,Birdlife IBA,2009,For storage only,28,Vallée supérieure de la Sûre et affluents de la frontière belge à Esch-sur-Sûre,ZPS - Natura 2000,"GD-PAME, version pre-2017",Not Reported,2018,English -15023,337481,Luxembourg,Birdlife IBA,2009,For storage only,28,Vallée supérieure de la Sûre / Lac du barrage,ZSC - Natura 2000,"GD-PAME, version pre-2017",Not Reported,2018,English -15024,555536875,Luxembourg,Birdlife IBA,2009,For storage only,28,Vallée supérieure de la Sûre / Lac du barrage,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15025,555542214,Luxembourg,Birdlife IBA,2009,For storage only,28,Vallée supérieure de la Sûre et affluents de la frontière belge à Esch-sur-Sûre,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15026,337454,Luxembourg,Birdlife IBA,2009,For storage only,28,Vallée supérieure de l'Our et affluents de Lieler à Dasbourg,ZPS - Natura 2000,"GD-PAME, version pre-2017",Not Reported,2018,English -15027,555542213,Luxembourg,Birdlife IBA,2009,For storage only,28,Vallée supérieure de l'Our et affluents de Lieler à Dasbourg,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15028,2327,Mali,RAPPAM,2008,For storage only,28,Réserve partielle de faune d'Ansongo-Ménaka,Partial Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15029,555556061,Mali,RAPPAM,2008,For storage only,28,Réserve partielle de faune du Banifing-Baoulé,Partial Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15030,5086,Mali,RAPPAM,2008,For storage only,28,Réserve de Biosphère du Baoulé,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15032,5086,Mali,GOBI Survey,2006,For storage only,28,Réserve de Biosphère du Baoulé,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15034,20171,Mali,WHA Outlook Report,2014,For storage only,28,Cliff of Bandiagara (Land of the Dogons),World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15035,902264,Mali,RAPPAM,2009,For storage only,28,Delta Intérieur du Niger,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -15036,20171,Mali,Birdlife IBA,2001,For storage only,28,Cliff of Bandiagara (Land of the Dogons),World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15037,2321,Mali,RAPPAM,2008,For storage only,28,Réserve partielle de faune dite des Eléphants du Gourma,Partial Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15038,2325,Mali,RAPPAM,2008,For storage only,28,Réserve totale de faune de Kéniébaoulé,Total Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15041,317195,Mali,METT,2009,For storage only,28,Parc National Kouroufing,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15042,317193,Mali,METT,2009,For storage only,28,Parc National de Wongo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15043,555556064,Mali,METT,2009,For storage only,28,Réserve totale de faune de Mandé Wula,Total Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15044,317194,Mali,METT,2009,For storage only,28,Sanctuaire des Chimpanzés du Bafing,Chimpanzee Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15045,3213,Mali,RAPPAM,2008,For storage only,28,Réserve totale de faune de Sounsan,Total Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15047,555556053,Mali,RAPPAM,2008,For storage only,28,Zone d'Intérêt Cynégétique de Tidermene-Alata,Hunting Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15048,14818,Malta,Birdlife IBA,2013,For storage only,28,"L-inħawi fuq l-Għoljiet ta' Ċenċ, Għawdex",Bird Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15049,330746,Malta,Birdlife IBA,2013,For storage only,28,"Ta' Ċenċ (Sannat, Għawdex)",Site of Scientific Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -15050,330726,Malta,Birdlife IBA,2013,For storage only,28,L-Inħawi tar-Ramla tat-Torri / Rdum tal-Madonna,Special Areas of Conservation - International Importance,"GD-PAME, version pre-2017",Not Reported,2018,English -15051,555540716,Malta,Birdlife IBA,2013,For storage only,28,L-Inhawi tar-Ramla tat-Torri u tal-Irdum tal-Madonna,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15052,555552403,Malta,Birdlife IBA,2013,For storage only,28,L-Inhawi tar-Ramla tat-Torri u tal-Irdum tal-Madonna,Special Protection Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -15053,555580324,Malta,Birdlife IBA,2013,For storage only,28,L-Inhawi tar-Ramla tat-Torri u tal-Irdum tal-Madonna,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15054,555540727,Malta,Birdlife IBA,2013,For storage only,28,Rdumijiet ta' Malta: Wied Moqbol sal-Ponta ta' Benghisa,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -15055,555552414,Malta,Birdlife IBA,2013,For storage only,28,Rdumijiet ta' Malta: Wied Moqbol sal-Ponta ta' Benghisa,Special Protection Areas,"GD-PAME, version pre-2017",Not Reported,2018,English -15056,33184,Malawi,Birdlife IBA,2013,For storage only,28,Dzalanyama,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15057,780,Malawi,RAPPAM,2006,For storage only,28,Kasungu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15058,145538,Malawi,Birdlife IBA,2001,For storage only,28,Lake Chilwa,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -15059,2317,Malawi,RAPPAM,2006,For storage only,28,Lake Malawi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15060,10904,Malawi,WHA Outlook Report,2014,For storage only,28,Lake Malawi National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15061,2315,Malawi,RAPPAM,2006,For storage only,28,Lengwe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15062,2315,Malawi,METT,2012,For storage only,28,Lengwe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15063,2316,Malawi,METT,2012,For storage only,28,Liwonde,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15064,2316,Malawi,RAPPAM,2006,For storage only,28,Liwonde,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15065,2319,Malawi,RAPPAM,2006,For storage only,28,Majete,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15066,220264,Malawi,GOBI Survey,2006,For storage only,28,Mount Mulanje,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15067,2320,Malawi,RAPPAM,2006,For storage only,28,Mwabvi,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15068,2318,Malawi,METT,2010,For storage only,28,Nkhota-Kota,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15069,2318,Malawi,RAPPAM,2006,For storage only,28,Nkhota-Kota,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15071,33185,Malawi,Birdlife IBA,2013,For storage only,28,Ntchisi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15072,779,Malawi,RAPPAM,2006,For storage only,28,Nyika,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15073,33167,Malawi,Birdlife IBA,2013,For storage only,28,Soche,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15074,33172,Malawi,Birdlife IBA,2013,For storage only,28,Thyolo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15075,4648,Malawi,METT,2010,For storage only,28,Vwaza Marsh,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15076,4648,Malawi,RAPPAM,2006,For storage only,28,Vwaza Marsh,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15077,20299,Nigeria,Africa Rainforest Study,2001,For storage only,28,Cross River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15078,37009,Nigeria,METT,2003,For storage only,28,Cross River North,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15079,7873,Nigeria,Birdlife IBA,2013,For storage only,28,Gashaka-Gumti,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15080,36813,Nigeria,Birdlife IBA,2009,For storage only,28,Ibadan,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15081,36808,Nigeria,RAPPAM,2002,For storage only,28,Oba Hills,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15082,36979,Nigeria,METT,2003,For storage only,28,Okomu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15083,36979,Nigeria,RAPPAM,2002,For storage only,28,Okomu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15084,7465,Nigeria,Birdlife IBA,2009,For storage only,28,Okomu,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15085,36979,Nigeria,Birdlife IBA,2009,For storage only,28,Okomu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15086,37009,Nigeria,RAPPAM,2002,For storage only,28,Cross River North,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15087,36820,Nigeria,Birdlife IBA,2001,For storage only,28,Omo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15088,1332,Nigeria,Birdlife IBA,2013,For storage only,28,Yankari,Game Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15089,36534,Nigeria,Birdlife IBA,2013,For storage only,28,Yankari,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15090,902489,Norway,WHA Outlook Report,2014,For storage only,28,West Norwegian Fjords – Geirangerfjord and Nærøyfjord,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15091,198328,Philippines,Birdlife IBA,2001,For storage only,28,Agusan Marsh Wildlife Sanctuary,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -15092,306406,Philippines,METT,2006,For storage only,28,Angat,Watershed Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15093,555549240,Philippines,METT,2010,For storage only,28,Balabag,Marine Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15094,5216,Philippines,METT,2009,For storage only,28,Balbalasang-Balbalan National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15095,5211,Philippines,METT,2006,For storage only,28,Bicol,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15096,313617,Philippines,Asean MEE,2012,For storage only,28,Mount Iglit Baco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15097,7237,Philippines,METT,2006,For storage only,28,Libmanan Caves,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15098,555577558,Philippines,WHA Outlook Report,2014,For storage only,28,Mount Hamiguitan Range Wildlife Sanctuary,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15099,64412,Philippines,Asean MEE,2012,For storage only,28,Mount Kitanglad Range,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15100,10326,Philippines,Asean MEE,2012,For storage only,28,Mount Malindang,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15101,1337,Philippines,METT,2008,For storage only,28,Mts. Iglit-Baco National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15102,317296,Philippines,METT,2006,For storage only,28,Northern Sierra Madre Mountain Range,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15103,555549244,Philippines,METT,2008,For storage only,28,Poblacion,Fish Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15104,317298,Philippines,METT,2009,For storage only,28,Polilio,Watershed Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15105,198299,Philippines,WHA Outlook Report,2014,For storage only,28,Puerto-Princesa Subterranean River National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15106,555549230,Philippines,MPA MEE,2003,For storage only,28,Tubbataha Reef,Natural Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15107,68917,Philippines,WHA Outlook Report,2014,For storage only,28,Tubbataha Reefs Natural Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15108,862,Rwanda,Birdlife IBA,2013,For storage only,28,Akagera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15109,9148,Rwanda,METT,2004,For storage only,28,Nyungwe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15110,9148,Rwanda,Birdlife IBA,2013,For storage only,28,Nyungwe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15111,863,Rwanda,METT,2004,For storage only,28,Volcans,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15112,863,Rwanda,Birdlife IBA,2001,For storage only,28,Volcans,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15113,2337,Sudan,METT,2009,For storage only,28,Badingilo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15114,1371,Sudan,METT,2009,For storage only,28,Boma,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15115,2336,Sudan,Birdlife IBA,2001,For storage only,28,Dinder,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15116,902398,Sudan,GOBI Survey,2006,For storage only,28,Dinder National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -15118,903,Sudan,METT,2009,For storage only,28,Southern,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15119,1368,Sudan,METT,2009,For storage only,28,Zeraf,Game Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15120,168242,Solomon Islands,WHA Outlook Report,2014,For storage only,28,East Rennell,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15121,302579,Syrian Arab Republic,METT,2008,For storage only,28,Abu Kubeiss,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15122,302579,Syrian Arab Republic,METT,2012,For storage only,28,Abu Kubeiss,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15123,350,Angola,METT,2012,For storage only,28,National Park Bicuar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15124,351,Angola,METT,2012,For storage only,28,National Park Cangandala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15125,347,Angola,METT,2011,For storage only,28,National Park Iona,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15126,348,Angola,METT,2012,For storage only,28,National Park Quiçãma,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15313,354093,Australia,NSW SOP,2005,For storage only,28,Aberbaldie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15314,354093,Australia,NSW SOP,2007,For storage only,28,Aberbaldie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15315,354093,Australia,NSW SOP,2010,For storage only,28,Aberbaldie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15316,354093,Australia,NSW SOP,2013,For storage only,28,Aberbaldie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15317,354093,Australia,NSW SOP,2004,For storage only,28,Aberbaldie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15318,555543266,Australia,NSW SOP,2007,For storage only,28,Abercrombie,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15319,555543266,Australia,NSW SOP,2010,For storage only,28,Abercrombie,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15320,555543266,Australia,NSW SOP,2013,For storage only,28,Abercrombie,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15321,102535,Australia,NSW SOP,2005,For storage only,28,Abercrombie River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15322,102535,Australia,NSW SOP,2007,For storage only,28,Abercrombie River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15323,102535,Australia,NSW SOP,2010,For storage only,28,Abercrombie River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15324,102535,Australia,NSW SOP,2013,For storage only,28,Abercrombie River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15325,555548695,Australia,NSW SOP,2013,For storage only,28,Abercrombie River,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15326,102535,Australia,NSW SOP,2004,For storage only,28,Abercrombie River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15327,313747,Australia,Birdlife IBA,2008,For storage only,28,Adele Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15328,555576608,Australia,NSW SOP,2013,For storage only,28,Adelyne,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15329,23405,Australia,NSW SOP,2005,For storage only,28,Agnes Banks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15330,23405,Australia,NSW SOP,2007,For storage only,28,Agnes Banks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15331,23405,Australia,NSW SOP,2010,For storage only,28,Agnes Banks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15332,23405,Australia,NSW SOP,2013,For storage only,28,Agnes Banks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15333,23405,Australia,NSW SOP,2004,For storage only,28,Agnes Banks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15334,314543,Australia,Victorian SOP,2010,For storage only,28,Aire River W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15335,314543,Australia,Victorian SOP,2005,For storage only,28,Aire River W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15336,314543,Australia,Victorian SOP,2013,For storage only,28,Aire River W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15337,311243,Australia,Birdlife IBA,2008,For storage only,28,Black Pyramid Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15338,555548789,Australia,Qld Rapid Assessment,2010,For storage only,28,Albinia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15339,555548789,Australia,Qld Rapid Assessment,2012,For storage only,28,Albinia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15340,550,Australia,Victorian SOP,2010,For storage only,28,Alfred National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15341,550,Australia,Victorian SOP,2005,For storage only,28,Alfred National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15342,550,Australia,Victorian SOP,2013,For storage only,28,Alfred National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15343,313811,Australia,NTMEE,2013,For storage only,28,Alice Springs Telegraph Station,Historical Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15344,309250,Australia,NSW SOP,2010,For storage only,28,Alma Tier,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15345,354115,Australia,NSW SOP,2007,For storage only,28,Alma B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15346,354115,Australia,NSW SOP,2013,For storage only,28,Alma B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15347,62941,Australia,Victorian SOP,2005,For storage only,28,Alpine National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15348,62941,Australia,Victorian SOP,2010,For storage only,28,Alpine National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15349,62941,Australia,Victorian SOP,2013,For storage only,28,Alpine National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15350,23792,Australia,Qld Rapid Assessment,2010,For storage only,28,Alton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15351,23792,Australia,Qld Rapid Assessment,2012,For storage only,28,Alton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15352,555548821,Australia,Qld Rapid Assessment,2012,For storage only,28,Alwal (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -15353,354118,Australia,Qld Rapid Assessment,2010,For storage only,28,Amamoor,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15354,354118,Australia,Qld Rapid Assessment,2012,For storage only,28,Amamoor,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15355,125956,Australia,NSW SOP,2005,For storage only,28,Andrew Johnston Big Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15356,125956,Australia,NSW SOP,2007,For storage only,28,Andrew Johnston Big Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15357,125956,Australia,NSW SOP,2010,For storage only,28,Andrew Johnston Big Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15358,125956,Australia,NSW SOP,2013,For storage only,28,Andrew Johnston Big Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15359,125956,Australia,NSW SOP,2004,For storage only,28,Andrew Johnston Big Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15360,125957,Australia,Victorian SOP,2005,For storage only,28,Anglesea B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15362,125957,Australia,Victorian SOP,2010,For storage only,28,Anglesea B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15363,125957,Australia,Victorian SOP,2013,For storage only,28,Anglesea B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15364,354128,Australia,Qld Rapid Assessment,2010,For storage only,28,Annan River (Yuku Baja-Muliku),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15365,354128,Australia,Qld Rapid Assessment,2012,For storage only,28,Annan River (Yuku Baja-Muliku),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15366,314711,Australia,Victorian SOP,2010,For storage only,28,Annuello F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15367,314711,Australia,Victorian SOP,2013,For storage only,28,Annuello F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15368,314104,Australia,Victorian SOP,2005,For storage only,28,Apsley B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15369,309969,Australia,NSW SOP,2005,For storage only,28,Arakoola,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15370,309969,Australia,NSW SOP,2007,For storage only,28,Arakoola,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15371,309969,Australia,NSW SOP,2010,For storage only,28,Arakoola,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15372,309969,Australia,NSW SOP,2013,For storage only,28,Arakoola,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15373,309969,Australia,NSW SOP,2004,For storage only,28,Arakoola,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15374,354135,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15375,354135,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15376,354135,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15377,354135,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15378,354135,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15379,309970,Australia,NSW SOP,2005,For storage only,28,Arakwal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15380,309970,Australia,NSW SOP,2007,For storage only,28,Arakwal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15381,309970,Australia,NSW SOP,2010,For storage only,28,Arakwal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15382,309970,Australia,NSW SOP,2013,For storage only,28,Arakwal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15383,309970,Australia,NSW SOP,2004,For storage only,28,Arakwal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15384,309971,Australia,NSW SOP,2005,For storage only,28,Araluen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15385,309971,Australia,NSW SOP,2007,For storage only,28,Araluen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15386,309971,Australia,NSW SOP,2010,For storage only,28,Araluen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15387,309971,Australia,NSW SOP,2004,For storage only,28,Araluen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15388,309971,Australia,NSW SOP,2013,For storage only,28,Araluen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15389,24574,Australia,Victorian SOP,2005,For storage only,28,Arthurs Seat,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15390,24574,Australia,Victorian SOP,2010,For storage only,28,Arthurs Seat,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15391,24574,Australia,Victorian SOP,2013,For storage only,28,Arthurs Seat,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15392,24568,Australia,Birdlife IBA,2008,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15393,900733,Australia,Birdlife IBA,2008,For storage only,28,Ashmore Reef National Nature Reserve,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -15394,555556870,Australia,Birdlife IBA,2008,For storage only,28,Ashmore Reef,Commonwealth Marine Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15395,309856,Australia,Qld Rapid Assessment,2010,For storage only,28,Astrebla Downs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15396,309856,Australia,Qld Rapid Assessment,2012,For storage only,28,Astrebla Downs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15397,23798,Australia,Qld Rapid Assessment,2010,For storage only,28,Auburn River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15398,23798,Australia,Qld Rapid Assessment,2012,For storage only,28,Auburn River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15399,61604,Australia,WHA Outlook Report,2014,For storage only,28,Australian Fossil Mammal Sites (Riversleigh / Naracoorte),World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -15400,23409,Australia,NSW SOP,2005,For storage only,28,Avisford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15401,23409,Australia,NSW SOP,2007,For storage only,28,Avisford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15402,23409,Australia,NSW SOP,2010,For storage only,28,Avisford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15403,23409,Australia,NSW SOP,2013,For storage only,28,Avisford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15404,23409,Australia,NSW SOP,2004,For storage only,28,Avisford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15405,24576,Australia,Victorian SOP,2005,For storage only,28,Avon,Wilderness Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15406,24576,Australia,Victorian SOP,2010,For storage only,28,Avon,Wilderness Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15407,24576,Australia,Victorian SOP,2013,For storage only,28,Avon,Wilderness Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15408,127332,Australia,Victorian SOP,2005,For storage only,28,Avon - Mt Hedrick N.F.S.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15409,354159,Australia,NSW SOP,2005,For storage only,28,Avondale,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15410,354159,Australia,NSW SOP,2007,For storage only,28,Avondale,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15411,354159,Australia,NSW SOP,2010,For storage only,28,Avondale,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15412,354159,Australia,NSW SOP,2013,For storage only,28,Avondale,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15413,354159,Australia,NSW SOP,2004,For storage only,28,Avondale,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15414,23410,Australia,NSW SOP,2005,For storage only,28,Awabakal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15415,23410,Australia,NSW SOP,2007,For storage only,28,Awabakal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15416,23410,Australia,NSW SOP,2010,For storage only,28,Awabakal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15417,23410,Australia,NSW SOP,2013,For storage only,28,Awabakal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15418,23410,Australia,NSW SOP,2004,For storage only,28,Awabakal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15419,309972,Australia,NSW SOP,2005,For storage only,28,Baalijin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15420,309972,Australia,NSW SOP,2007,For storage only,28,Baalijin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15421,309972,Australia,NSW SOP,2010,For storage only,28,Baalijin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15422,309972,Australia,NSW SOP,2004,For storage only,28,Baalijin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15423,309972,Australia,NSW SOP,2013,For storage only,28,Baalijin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15424,555576617,Australia,NSW SOP,2013,For storage only,28,Back Arm,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15425,309973,Australia,NSW SOP,2005,For storage only,28,Back River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15426,309973,Australia,NSW SOP,2007,For storage only,28,Back River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15427,309973,Australia,NSW SOP,2010,For storage only,28,Back River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15428,309973,Australia,NSW SOP,2013,For storage only,28,Back River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15429,309973,Australia,NSW SOP,2004,For storage only,28,Back River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15430,23411,Australia,NSW SOP,2005,For storage only,28,Badja Swamps,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15431,23411,Australia,NSW SOP,2007,For storage only,28,Badja Swamps,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15432,23411,Australia,NSW SOP,2010,For storage only,28,Badja Swamps,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15433,23411,Australia,NSW SOP,2013,For storage only,28,Badja Swamps,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15434,23411,Australia,NSW SOP,2004,For storage only,28,Badja Swamps,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15435,555548726,Australia,Victorian SOP,2010,For storage only,28,Bael Bael Grassland N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15436,555548726,Australia,Victorian SOP,2013,For storage only,28,Bael Bael Grassland N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15437,311178,Australia,NSW SOP,2005,For storage only,28,Bago Bluff,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15438,311178,Australia,NSW SOP,2007,For storage only,28,Bago Bluff,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15439,311178,Australia,NSW SOP,2010,For storage only,28,Bago Bluff,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15440,311178,Australia,NSW SOP,2013,For storage only,28,Bago Bluff,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15441,313679,Australia,NSW SOP,2004,For storage only,28,Mutawintji,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15442,309974,Australia,NSW SOP,2005,For storage only,28,Bagul Waajaarr,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15443,309974,Australia,NSW SOP,2007,For storage only,28,Bagul Waajaarr,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15444,309974,Australia,NSW SOP,2010,For storage only,28,Bagul Waajaarr,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15445,309974,Australia,NSW SOP,2013,For storage only,28,Bagul Waajaarr,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15446,309974,Australia,NSW SOP,2004,For storage only,28,Bagul Waajaarr,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15447,387,Australia,NSW SOP,2005,For storage only,28,Bald Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15448,387,Australia,NSW SOP,2007,For storage only,28,Bald Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15449,387,Australia,NSW SOP,2010,For storage only,28,Bald Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15450,387,Australia,NSW SOP,2013,For storage only,28,Bald Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15451,387,Australia,NSW SOP,2004,For storage only,28,Bald Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15452,125976,Australia,NSW SOP,2005,For storage only,28,Ballina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15453,125976,Australia,NSW SOP,2007,For storage only,28,Ballina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15454,125976,Australia,NSW SOP,2010,For storage only,28,Ballina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15455,125976,Australia,NSW SOP,2013,For storage only,28,Ballina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15456,125976,Australia,NSW SOP,2004,For storage only,28,Ballina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15457,555576619,Australia,NSW SOP,2013,For storage only,28,Balowra,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15458,127429,Australia,Victorian SOP,2005,For storage only,28,Baluk Willam N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15459,309976,Australia,NSW SOP,2005,For storage only,28,Bamarang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15460,309976,Australia,NSW SOP,2007,For storage only,28,Bamarang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15461,309976,Australia,NSW SOP,2010,For storage only,28,Bamarang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15462,309976,Australia,NSW SOP,2013,For storage only,28,Bamarang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15463,309976,Australia,NSW SOP,2004,For storage only,28,Bamarang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15464,354177,Australia,Qld Rapid Assessment,2010,For storage only,28,Ban Ban,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15465,354177,Australia,Qld Rapid Assessment,2012,For storage only,28,Ban Ban,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15466,23414,Australia,NSW SOP,2005,For storage only,28,Bandicoot Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15467,23414,Australia,NSW SOP,2007,For storage only,28,Bandicoot Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15468,23414,Australia,NSW SOP,2010,For storage only,28,Bandicoot Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15469,23414,Australia,NSW SOP,2004,For storage only,28,Bandicoot Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15470,23414,Australia,NSW SOP,2013,For storage only,28,Bandicoot Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15471,309979,Australia,NSW SOP,2005,For storage only,28,Barool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15472,309979,Australia,NSW SOP,2007,For storage only,28,Barool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15473,309979,Australia,NSW SOP,2010,For storage only,28,Barool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15474,309979,Australia,NSW SOP,2013,For storage only,28,Barool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15475,309979,Australia,NSW SOP,2004,For storage only,28,Barool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15476,555576620,Australia,NSW SOP,2013,For storage only,28,Bango,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15477,354180,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15478,354180,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15479,127448,Australia,Victorian SOP,2005,For storage only,28,Bannockburn B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15480,311187,Australia,NSW SOP,2005,For storage only,28,Banyabba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15481,311187,Australia,NSW SOP,2007,For storage only,28,Banyabba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15482,311187,Australia,NSW SOP,2010,For storage only,28,Banyabba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15484,311187,Australia,NSW SOP,2013,For storage only,28,Banyabba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15486,354182,Australia,NSW SOP,2005,For storage only,28,Banyabba,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15487,354182,Australia,NSW SOP,2007,For storage only,28,Banyabba,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15488,311187,Australia,NSW SOP,2004,For storage only,28,Banyabba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15489,354182,Australia,NSW SOP,2004,For storage only,28,Banyabba,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15490,309978,Australia,NSW SOP,2005,For storage only,28,Barakee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15491,309978,Australia,NSW SOP,2007,For storage only,28,Barakee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15492,309978,Australia,NSW SOP,2010,For storage only,28,Barakee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15493,309978,Australia,NSW SOP,2013,For storage only,28,Barakee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15494,311178,Australia,NSW SOP,2004,For storage only,28,Bago Bluff,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15495,555543697,Australia,NSW SOP,2010,For storage only,28,Barayamal,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15496,555543697,Australia,NSW SOP,2013,For storage only,28,Barayamal,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15497,354189,Australia,NSW SOP,2005,For storage only,28,Bargo,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15498,354189,Australia,NSW SOP,2007,For storage only,28,Bargo,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15499,354189,Australia,NSW SOP,2010,For storage only,28,Bargo,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15500,354189,Australia,NSW SOP,2013,For storage only,28,Bargo,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15501,354189,Australia,NSW SOP,2004,For storage only,28,Bargo,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15502,555543698,Australia,NSW SOP,2010,For storage only,28,Bargo River,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15503,555543698,Australia,NSW SOP,2013,For storage only,28,Bargo River,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15504,555548814,Australia,Victorian SOP,2005,For storage only,28,Barmah National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15505,555548814,Australia,Victorian SOP,2010,For storage only,28,Barmah National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15506,555548814,Australia,Victorian SOP,2013,For storage only,28,Barmah National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15507,125983,Australia,Qld Rapid Assessment,2010,For storage only,28,Barnard Island Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15508,125983,Australia,Qld Rapid Assessment,2012,For storage only,28,Barnard Island Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15514,314713,Australia,Victorian SOP,2005,For storage only,28,Barrabool F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15515,314713,Australia,Victorian SOP,2013,For storage only,28,Barrabool F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15516,555543700,Australia,NSW SOP,2007,For storage only,28,Barrakee,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15517,555543700,Australia,NSW SOP,2010,For storage only,28,Barrakee,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15518,555543700,Australia,NSW SOP,2013,For storage only,28,Barrakee,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15519,1153,Australia,NSW SOP,2005,For storage only,28,Barren Grounds,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15520,1153,Australia,NSW SOP,2007,For storage only,28,Barren Grounds,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15521,1153,Australia,NSW SOP,2010,For storage only,28,Barren Grounds,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15522,1153,Australia,NSW SOP,2013,For storage only,28,Barren Grounds,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15523,1153,Australia,NSW SOP,2004,For storage only,28,Barren Grounds,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15524,309981,Australia,NSW SOP,2005,For storage only,28,Barrengarry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15525,309981,Australia,NSW SOP,2007,For storage only,28,Barrengarry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15526,309981,Australia,NSW SOP,2010,For storage only,28,Barrengarry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15527,309981,Australia,NSW SOP,2013,For storage only,28,Barrengarry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15528,309981,Australia,NSW SOP,2004,For storage only,28,Barrengarry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15529,308670,Australia,NSW SOP,2010,For storage only,28,Barrenjoey,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15530,313669,Australia,NSW SOP,2005,For storage only,28,Barrington Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15531,313669,Australia,NSW SOP,2007,For storage only,28,Barrington Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15532,313669,Australia,NSW SOP,2010,For storage only,28,Barrington Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15533,313669,Australia,NSW SOP,2013,For storage only,28,Barrington Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15534,354195,Australia,NSW SOP,2005,For storage only,28,Barrington Tops,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15535,354195,Australia,NSW SOP,2007,For storage only,28,Barrington Tops,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15536,354195,Australia,NSW SOP,2010,For storage only,28,Barrington Tops,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15537,354195,Australia,NSW SOP,2013,For storage only,28,Barrington Tops,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15538,313669,Australia,NSW SOP,2004,For storage only,28,Barrington Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15539,354195,Australia,NSW SOP,2004,For storage only,28,Barrington Tops,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15540,444,Australia,Qld Rapid Assessment,2010,For storage only,28,Barron Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15541,444,Australia,Qld Rapid Assessment,2012,For storage only,28,Barron Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15542,354196,Australia,Birdlife IBA,2008,For storage only,28,Barrow Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15543,311196,Australia,NSW SOP,2005,For storage only,28,Barton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15544,311196,Australia,NSW SOP,2007,For storage only,28,Barton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15545,311196,Australia,NSW SOP,2010,For storage only,28,Barton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15546,311196,Australia,NSW SOP,2004,For storage only,28,Barton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15547,311196,Australia,NSW SOP,2013,For storage only,28,Barton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15548,555576624,Australia,NSW SOP,2013,For storage only,28,Barwon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15549,555576625,Australia,NSW SOP,2013,For storage only,28,Barwon,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15550,305387,Australia,Victorian SOP,2010,For storage only,28,Barwon Bluff,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15551,305387,Australia,Victorian SOP,2005,For storage only,28,Barwon Bluff,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15552,305387,Australia,Victorian SOP,2013,For storage only,28,Barwon Bluff,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15553,555548741,Australia,Qld Rapid Assessment,2012,For storage only,28,Basilisk Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15554,309982,Australia,NSW SOP,2005,For storage only,28,Basket Swamp,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15555,309982,Australia,NSW SOP,2007,For storage only,28,Basket Swamp,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15556,309982,Australia,NSW SOP,2010,For storage only,28,Basket Swamp,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15557,309982,Australia,NSW SOP,2013,For storage only,28,Basket Swamp,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15558,309982,Australia,NSW SOP,2004,For storage only,28,Basket Swamp,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15559,555548008,Australia,NSW SOP,2010,For storage only,28,Batemans,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15560,314802,Australia,Victorian SOP,2010,For storage only,28,Bald Hills Creek W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15561,314803,Australia,Victorian SOP,2005,For storage only,28,Bats Ridge W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15562,314803,Australia,Victorian SOP,2013,For storage only,28,Bats Ridge W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15563,24580,Australia,Victorian SOP,2005,For storage only,28,Baw Baw National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15564,24580,Australia,Victorian SOP,2010,For storage only,28,Baw Baw National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15565,24580,Australia,Victorian SOP,2013,For storage only,28,Baw Baw National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15566,314861,Australia,Victorian SOP,2010,For storage only,28,Yatmerone Swamp W.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15567,314862,Australia,Victorian SOP,2005,For storage only,28,Bay of Islands Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15568,314862,Australia,Victorian SOP,2013,For storage only,28,Bay of Islands Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15569,555576628,Australia,NSW SOP,2013,For storage only,28,Bedooba,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15570,63907,Australia,Birdlife IBA,2008,For storage only,28,Bedout Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15571,354211,Australia,Victorian SOP,2005,For storage only,28,Beechworth B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15572,555548785,Australia,Qld Rapid Assessment,2010,For storage only,28,Beeron,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15573,555548785,Australia,Qld Rapid Assessment,2012,For storage only,28,Beeron,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15574,309983,Australia,NSW SOP,2005,For storage only,28,Bees Nest,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15575,309983,Australia,NSW SOP,2007,For storage only,28,Bees Nest,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15576,309983,Australia,NSW SOP,2010,For storage only,28,Bees Nest,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15577,309983,Australia,NSW SOP,2013,For storage only,28,Bees Nest,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15578,309983,Australia,NSW SOP,2004,For storage only,28,Bees Nest,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15579,354220,Australia,NSW SOP,2005,For storage only,28,Belford,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15580,354220,Australia,NSW SOP,2007,For storage only,28,Belford,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15581,354220,Australia,NSW SOP,2010,For storage only,28,Belford,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15582,354220,Australia,NSW SOP,2013,For storage only,28,Belford,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15583,354220,Australia,NSW SOP,2004,For storage only,28,Belford,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15584,23417,Australia,NSW SOP,2005,For storage only,28,Bell Bird Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15585,23417,Australia,NSW SOP,2007,For storage only,28,Bell Bird Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15586,23417,Australia,NSW SOP,2010,For storage only,28,Bell Bird Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15587,23417,Australia,NSW SOP,2004,For storage only,28,Bell Bird Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15588,23417,Australia,NSW SOP,2013,For storage only,28,Bell Bird Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15589,314605,Australia,Birdlife IBA,2008,For storage only,28,Lake Connewarre W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15590,309984,Australia,NSW SOP,2005,For storage only,28,Bellinger River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15591,309984,Australia,NSW SOP,2007,For storage only,28,Bellinger River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15592,309984,Australia,NSW SOP,2010,For storage only,28,Bellinger River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15593,309984,Australia,NSW SOP,2013,For storage only,28,Bellinger River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15594,310114,Australia,NSW SOP,2004,For storage only,28,Willi Willi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15595,555548790,Australia,Qld Rapid Assessment,2010,For storage only,28,Bellthorpe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15596,555548790,Australia,Qld Rapid Assessment,2012,For storage only,28,Bellthorpe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15597,555576629,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15598,23418,Australia,NSW SOP,2005,For storage only,28,Belowla Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15599,23418,Australia,NSW SOP,2007,For storage only,28,Belowla Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15600,23418,Australia,NSW SOP,2010,For storage only,28,Belowla Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15601,23418,Australia,NSW SOP,2013,For storage only,28,Belowla Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15602,23418,Australia,NSW SOP,2004,For storage only,28,Belowla Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15603,311220,Australia,Victorian SOP,2005,For storage only,28,Bemm River S.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15604,311220,Australia,Victorian SOP,2010,For storage only,28,Bemm River S.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15605,311220,Australia,Victorian SOP,2013,For storage only,28,Bemm River S.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15606,372,Australia,NSW SOP,2005,For storage only,28,Ben Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15607,372,Australia,NSW SOP,2007,For storage only,28,Ben Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15608,372,Australia,NSW SOP,2010,For storage only,28,Ben Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15609,372,Australia,NSW SOP,2013,For storage only,28,Ben Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15610,372,Australia,NSW SOP,2004,For storage only,28,Ben Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15611,102537,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15612,102537,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15613,102537,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15614,102537,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15615,102537,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15616,517,Australia,Birdlife IBA,2008,For storage only,28,Ben Lomond,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15617,309986,Australia,NSW SOP,2005,For storage only,28,Benambra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15618,309986,Australia,NSW SOP,2007,For storage only,28,Benambra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15619,309986,Australia,NSW SOP,2010,For storage only,28,Benambra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15620,309986,Australia,NSW SOP,2013,For storage only,28,Benambra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15621,309986,Australia,NSW SOP,2004,For storage only,28,Benambra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15622,354233,Australia,Qld Rapid Assessment,2010,For storage only,28,Benarkin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15623,354233,Australia,Qld Rapid Assessment,2012,For storage only,28,Benarkin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15624,555576630,Australia,NSW SOP,2013,For storage only,28,Bendick Murrell,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15625,23810,Australia,Qld Rapid Assessment,2010,For storage only,28,Bendidee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15626,23810,Australia,Qld Rapid Assessment,2012,For storage only,28,Bendidee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15627,63926,Australia,Birdlife IBA,2008,For storage only,28,Benger Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15628,555543706,Australia,NSW SOP,2010,For storage only,28,Beni,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15629,555543706,Australia,NSW SOP,2013,For storage only,28,Beni,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15630,354237,Australia,Qld Rapid Assessment,2010,For storage only,28,Beninbi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15631,354237,Australia,Qld Rapid Assessment,2012,For storage only,28,Beninbi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15632,354239,Australia,NSW SOP,2005,For storage only,28,Bents Basin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15633,354239,Australia,NSW SOP,2007,For storage only,28,Bents Basin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15634,354239,Australia,NSW SOP,2010,For storage only,28,Bents Basin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15635,354239,Australia,NSW SOP,2013,For storage only,28,Bents Basin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15636,354239,Australia,NSW SOP,2004,For storage only,28,Bents Basin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15637,23419,Australia,NSW SOP,2005,For storage only,28,Berkeley,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15638,23419,Australia,NSW SOP,2007,For storage only,28,Berkeley,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15639,23419,Australia,NSW SOP,2010,For storage only,28,Berkeley,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15640,23419,Australia,NSW SOP,2013,For storage only,28,Berkeley,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15641,23419,Australia,NSW SOP,2004,For storage only,28,Berkeley,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15642,354240,Australia,NSW SOP,2005,For storage only,28,Berlang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15643,354240,Australia,NSW SOP,2007,For storage only,28,Berlang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15644,354240,Australia,NSW SOP,2010,For storage only,28,Berlang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15645,354240,Australia,NSW SOP,2013,For storage only,28,Berlang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15646,354240,Australia,NSW SOP,2004,For storage only,28,Berlang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15647,309987,Australia,NSW SOP,2005,For storage only,28,Bermaguee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15648,309987,Australia,NSW SOP,2007,For storage only,28,Bermaguee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15649,309987,Australia,NSW SOP,2010,For storage only,28,Bermaguee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15650,309987,Australia,NSW SOP,2013,For storage only,28,Bermaguee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15651,309987,Australia,NSW SOP,2004,For storage only,28,Bermaguee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15652,354242,Australia,NSW SOP,2005,For storage only,28,Berowra Valley,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15653,354242,Australia,NSW SOP,2007,For storage only,28,Berowra Valley,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15654,354242,Australia,NSW SOP,2010,For storage only,28,Berowra Valley,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15655,354242,Australia,NSW SOP,2013,For storage only,28,Berowra Valley,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15656,555576632,Australia,NSW SOP,2013,For storage only,28,Berowra Valley,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15657,4696,Australia,Birdlife IBA,2008,For storage only,28,Betsey Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15658,305407,Australia,Victorian SOP,2010,For storage only,28,Beware Reef,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15659,305407,Australia,Victorian SOP,2005,For storage only,28,Beware Reef,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15660,305407,Australia,Victorian SOP,2013,For storage only,28,Beware Reef,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -15661,126017,Australia,NSW SOP,2005,For storage only,28,Biamanga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15662,126017,Australia,NSW SOP,2007,For storage only,28,Biamanga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15663,126017,Australia,NSW SOP,2010,For storage only,28,Biamanga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15664,126017,Australia,NSW SOP,2013,For storage only,28,Biamanga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15665,126017,Australia,NSW SOP,2004,For storage only,28,Biamanga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15666,555543296,Australia,NSW SOP,2010,For storage only,28,Biddon,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15667,555543296,Australia,NSW SOP,2013,For storage only,28,Biddon,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15668,23421,Australia,NSW SOP,2005,For storage only,28,Big Bush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15669,23421,Australia,NSW SOP,2007,For storage only,28,Big Bush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15670,23421,Australia,NSW SOP,2010,For storage only,28,Big Bush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15671,23421,Australia,NSW SOP,2013,For storage only,28,Big Bush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15672,23421,Australia,NSW SOP,2004,For storage only,28,Big Bush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15673,528,Australia,Victorian SOP,2005,For storage only,28,Big Desert,Wilderness Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15674,528,Australia,Victorian SOP,2010,For storage only,28,Big Desert,Wilderness Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15675,528,Australia,Victorian SOP,2013,For storage only,28,Big Desert,Wilderness Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15676,311337,Australia,Victorian SOP,2010,For storage only,28,Big Reedy Lagoon W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15677,311337,Australia,Victorian SOP,2005,For storage only,28,Big Reedy Lagoon W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15678,555543297,Australia,Birdlife IBA,2008,For storage only,28,Billiatt,Wilderness Protection Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15679,309988,Australia,NSW SOP,2005,For storage only,28,Billinudgel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15680,309988,Australia,NSW SOP,2007,For storage only,28,Billinudgel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15681,309988,Australia,NSW SOP,2010,For storage only,28,Billinudgel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15682,309988,Australia,NSW SOP,2013,For storage only,28,Billinudgel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15683,309988,Australia,NSW SOP,2004,For storage only,28,Billinudgel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15684,309989,Australia,NSW SOP,2005,For storage only,28,Bimberamala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15685,309989,Australia,NSW SOP,2007,For storage only,28,Bimberamala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15686,309989,Australia,NSW SOP,2010,For storage only,28,Bimberamala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15687,309989,Australia,NSW SOP,2013,For storage only,28,Bimberamala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15688,309989,Australia,NSW SOP,2004,For storage only,28,Bimberamala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15689,23425,Australia,NSW SOP,2005,For storage only,28,Bimberi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15690,23425,Australia,NSW SOP,2007,For storage only,28,Bimberi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15691,23425,Australia,NSW SOP,2010,For storage only,28,Bimberi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15692,23425,Australia,NSW SOP,2013,For storage only,28,Bimberi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15693,23425,Australia,NSW SOP,2004,For storage only,28,Bimberi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15694,309990,Australia,NSW SOP,2005,For storage only,28,Bindarri,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15695,309990,Australia,NSW SOP,2007,For storage only,28,Bindarri,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15696,309990,Australia,NSW SOP,2010,For storage only,28,Bindarri,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15697,309990,Australia,NSW SOP,2013,For storage only,28,Bindarri,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15698,354256,Australia,NSW SOP,2005,For storage only,28,Bindarri,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15699,354256,Australia,NSW SOP,2007,For storage only,28,Bindarri,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15700,354256,Australia,NSW SOP,2010,For storage only,28,Bindarri,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15701,354256,Australia,NSW SOP,2013,For storage only,28,Bindarri,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15703,354256,Australia,NSW SOP,2004,For storage only,28,Bindarri,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15705,555543298,Australia,NSW SOP,2010,For storage only,28,Bingara,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15706,555543298,Australia,NSW SOP,2013,For storage only,28,Bingara,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15707,354257,Australia,Qld Rapid Assessment,2010,For storage only,28,Bingera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15708,354257,Australia,Qld Rapid Assessment,2012,For storage only,28,Bingera,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15709,309991,Australia,NSW SOP,2005,For storage only,28,Binjura,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15710,309991,Australia,NSW SOP,2007,For storage only,28,Binjura,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15711,309991,Australia,NSW SOP,2010,For storage only,28,Binjura,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15712,309991,Australia,NSW SOP,2013,For storage only,28,Binjura,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15713,309991,Australia,NSW SOP,2004,For storage only,28,Binjura,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15714,1144,Australia,NSW SOP,2005,For storage only,28,Binnaway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15715,1144,Australia,NSW SOP,2007,For storage only,28,Binnaway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15716,1144,Australia,NSW SOP,2010,For storage only,28,Binnaway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15717,1144,Australia,NSW SOP,2013,For storage only,28,Binnaway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15718,1144,Australia,NSW SOP,2004,For storage only,28,Binnaway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15719,555548805,Australia,Qld Rapid Assessment,2010,For storage only,28,Binya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15720,555548805,Australia,Qld Rapid Assessment,2012,For storage only,28,Binya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15721,24299,Australia,NSW SOP,2005,For storage only,28,Bird Islands,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15722,24299,Australia,NSW SOP,2007,For storage only,28,Bird Islands,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15723,24299,Australia,NSW SOP,2010,For storage only,28,Bird Islands,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15724,24299,Australia,NSW SOP,2004,For storage only,28,Bird Islands,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15725,24299,Australia,NSW SOP,2013,For storage only,28,Bird Islands,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15726,314714,Australia,Victorian SOP,2010,For storage only,28,Birdcage F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15727,309992,Australia,NSW SOP,2005,For storage only,28,Biriwal Bulga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15728,309992,Australia,NSW SOP,2007,For storage only,28,Biriwal Bulga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15729,309992,Australia,NSW SOP,2010,For storage only,28,Biriwal Bulga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15730,309992,Australia,NSW SOP,2013,For storage only,28,Biriwal Bulga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15731,313674,Australia,NSW SOP,2004,For storage only,28,Coorabakh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15732,313684,Australia,NSW SOP,2005,For storage only,28,Black Andrew,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15733,313684,Australia,NSW SOP,2007,For storage only,28,Black Andrew,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15734,313684,Australia,NSW SOP,2010,For storage only,28,Black Andrew,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15735,313684,Australia,NSW SOP,2013,For storage only,28,Black Andrew,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15736,313684,Australia,NSW SOP,2004,For storage only,28,Black Andrew,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15737,354264,Australia,NSW SOP,2005,For storage only,28,Black Bulga,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15738,354264,Australia,NSW SOP,2007,For storage only,28,Black Bulga,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15739,354264,Australia,NSW SOP,2010,For storage only,28,Black Bulga,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15740,354264,Australia,NSW SOP,2013,For storage only,28,Black Bulga,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15741,309861,Australia,Qld Rapid Assessment,2010,For storage only,28,Black Mountain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15742,309861,Australia,Qld Rapid Assessment,2012,For storage only,28,Black Mountain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15743,24586,Australia,Victorian SOP,2005,For storage only,28,Black Range,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15744,24586,Australia,Victorian SOP,2010,For storage only,28,Black Range,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15745,24586,Australia,Victorian SOP,2013,For storage only,28,Black Range,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15746,314499,Australia,Victorian SOP,2005,For storage only,28,Black Range S.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15747,314499,Australia,Victorian SOP,2010,For storage only,28,Black Range S.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15748,127240,Australia,Victorian SOP,2010,For storage only,28,Black Dog Creek K30 SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15749,127240,Australia,Victorian SOP,2005,For storage only,28,Black Dog Creek K30 SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15750,127240,Australia,Victorian SOP,2013,For storage only,28,Black Dog Creek K30 SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15751,313894,Australia,Qld Rapid Assessment,2010,For storage only,28,Blackbraes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15752,313894,Australia,Qld Rapid Assessment,2012,For storage only,28,Blackbraes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15753,428,Australia,Qld Rapid Assessment,2010,For storage only,28,Blackdown Tableland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15754,428,Australia,Qld Rapid Assessment,2012,For storage only,28,Blackdown Tableland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15755,62952,Australia,Qld Rapid Assessment,2010,For storage only,28,Blackwood,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15756,62952,Australia,Qld Rapid Assessment,2012,For storage only,28,Blackwood,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15757,23823,Australia,Qld Rapid Assessment,2010,For storage only,28,Bladensburg,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15758,23823,Australia,Qld Rapid Assessment,2012,For storage only,28,Bladensburg,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15759,311246,Australia,Victorian SOP,2005,For storage only,28,Blond Bay G.L.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15760,314491,Australia,Victorian SOP,2010,For storage only,28,Blond Bay W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15761,314491,Australia,Victorian SOP,2005,For storage only,28,Blond Bay W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15762,314491,Australia,Victorian SOP,2013,For storage only,28,Blond Bay W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15763,313761,Australia,NSW SOP,2007,For storage only,28,Blue Gum Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15764,313761,Australia,NSW SOP,2010,For storage only,28,Blue Gum Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15765,313761,Australia,NSW SOP,2013,For storage only,28,Blue Gum Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15766,314552,Australia,Qld Rapid Assessment,2010,For storage only,28,Blue Lake W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15767,356,Australia,NSW SOP,2005,For storage only,28,Blue Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15768,356,Australia,NSW SOP,2007,For storage only,28,Blue Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15769,356,Australia,NSW SOP,2010,For storage only,28,Blue Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15770,356,Australia,NSW SOP,2004,For storage only,28,Blue Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15771,356,Australia,NSW SOP,2013,For storage only,28,Blue Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15774,555548727,Australia,Qld Rapid Assessment,2010,For storage only,28,Bluff Hill,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15775,555548727,Australia,Qld Rapid Assessment,2012,For storage only,28,Bluff Hill,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15776,309993,Australia,NSW SOP,2005,For storage only,28,Bluff River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15777,309993,Australia,NSW SOP,2007,For storage only,28,Bluff River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15778,309993,Australia,NSW SOP,2010,For storage only,28,Bluff River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15779,309993,Australia,NSW SOP,2013,For storage only,28,Bluff River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15780,309993,Australia,NSW SOP,2004,For storage only,28,Bluff River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15781,308672,Australia,NSW SOP,2010,For storage only,28,Boat Harbour,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15782,23435,Australia,NSW SOP,2005,For storage only,28,Boatharbour,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15783,23435,Australia,NSW SOP,2007,For storage only,28,Boatharbour,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15784,23435,Australia,NSW SOP,2010,For storage only,28,Boatharbour,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15785,23435,Australia,NSW SOP,2013,For storage only,28,Boatharbour,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15786,23435,Australia,NSW SOP,2004,For storage only,28,Boatharbour,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15787,555543306,Australia,NSW SOP,2010,For storage only,28,Bobbiwaa,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15788,555543306,Australia,NSW SOP,2013,For storage only,28,Bobbiwaa,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15789,309994,Australia,NSW SOP,2005,For storage only,28,Bobundara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15790,309994,Australia,NSW SOP,2007,For storage only,28,Bobundara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15791,309994,Australia,NSW SOP,2010,For storage only,28,Bobundara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15792,309994,Australia,NSW SOP,2013,For storage only,28,Bobundara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15793,309994,Australia,NSW SOP,2004,For storage only,28,Bobundara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15794,309995,Australia,NSW SOP,2005,For storage only,28,Bogandyera,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15795,309995,Australia,NSW SOP,2007,For storage only,28,Bogandyera,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15796,309995,Australia,NSW SOP,2010,For storage only,28,Bogandyera,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15797,309995,Australia,NSW SOP,2013,For storage only,28,Bogandyera,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15798,309995,Australia,NSW SOP,2004,For storage only,28,Bogandyera,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15799,23436,Australia,NSW SOP,2005,For storage only,28,Boginderra Hills,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15800,23436,Australia,NSW SOP,2007,For storage only,28,Boginderra Hills,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15801,23436,Australia,NSW SOP,2010,For storage only,28,Boginderra Hills,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15802,23436,Australia,NSW SOP,2013,For storage only,28,Boginderra Hills,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15803,23436,Australia,NSW SOP,2004,For storage only,28,Boginderra Hills,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15804,309996,Australia,NSW SOP,2005,For storage only,28,Bolivia Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15805,309996,Australia,NSW SOP,2007,For storage only,28,Bolivia Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15806,309996,Australia,NSW SOP,2010,For storage only,28,Bolivia Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15807,309996,Australia,NSW SOP,2013,For storage only,28,Bolivia Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15808,309996,Australia,NSW SOP,2004,For storage only,28,Bolivia Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15809,309997,Australia,NSW SOP,2005,For storage only,28,Bollanolla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15810,309997,Australia,NSW SOP,2007,For storage only,28,Bollanolla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15811,309997,Australia,NSW SOP,2010,For storage only,28,Bollanolla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15812,309997,Australia,NSW SOP,2013,For storage only,28,Bollanolla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15813,309997,Australia,NSW SOP,2004,For storage only,28,Bollanolla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15814,354292,Australia,NSW SOP,2005,For storage only,28,Bomaderry Creek,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15815,354292,Australia,NSW SOP,2007,For storage only,28,Bomaderry Creek,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15816,354292,Australia,NSW SOP,2010,For storage only,28,Bomaderry Creek,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15817,354292,Australia,NSW SOP,2013,For storage only,28,Bomaderry Creek,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15818,102538,Australia,NSW SOP,2005,For storage only,28,Bondi Gulf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15819,102538,Australia,NSW SOP,2007,For storage only,28,Bondi Gulf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15820,102538,Australia,NSW SOP,2010,For storage only,28,Bondi Gulf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15821,102538,Australia,NSW SOP,2013,For storage only,28,Bondi Gulf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15822,102538,Australia,NSW SOP,2004,For storage only,28,Bondi Gulf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15823,102539,Australia,NSW SOP,2005,For storage only,28,Bongil Bongil,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15824,102539,Australia,NSW SOP,2007,For storage only,28,Bongil Bongil,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15825,102539,Australia,NSW SOP,2010,For storage only,28,Bongil Bongil,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15826,102539,Australia,NSW SOP,2013,For storage only,28,Bongil Bongil,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15827,102539,Australia,NSW SOP,2004,For storage only,28,Bongil Bongil,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15828,354299,Australia,Birdlife IBA,2008,For storage only,28,Boodjamulla (Lawn Hill),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15829,354299,Australia,Qld Rapid Assessment,2010,For storage only,28,Boodjamulla (Lawn Hill),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15830,354299,Australia,Qld Rapid Assessment,2012,For storage only,28,Boodjamulla (Lawn Hill),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15831,23439,Australia,NSW SOP,2005,For storage only,28,Boomi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15832,23439,Australia,NSW SOP,2007,For storage only,28,Boomi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15833,23439,Australia,NSW SOP,2010,For storage only,28,Boomi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15834,23439,Australia,NSW SOP,2004,For storage only,28,Boomi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15835,23439,Australia,NSW SOP,2013,For storage only,28,Boomi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15836,23440,Australia,NSW SOP,2005,For storage only,28,Boomi West,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15837,23440,Australia,NSW SOP,2007,For storage only,28,Boomi West,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15838,23440,Australia,NSW SOP,2010,For storage only,28,Boomi West,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15839,23440,Australia,NSW SOP,2004,For storage only,28,Boomi West,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15840,23440,Australia,NSW SOP,2013,For storage only,28,Boomi West,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15841,555543308,Australia,NSW SOP,2007,For storage only,28,Boonanghi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15842,555543308,Australia,NSW SOP,2010,For storage only,28,Boonanghi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15843,555543308,Australia,NSW SOP,2013,For storage only,28,Boonanghi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15844,309999,Australia,NSW SOP,2005,For storage only,28,Boonanghi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15845,309999,Australia,NSW SOP,2007,For storage only,28,Boonanghi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15846,309999,Australia,NSW SOP,2010,For storage only,28,Boonanghi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15847,309999,Australia,NSW SOP,2013,For storage only,28,Boonanghi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15848,309999,Australia,NSW SOP,2004,For storage only,28,Boonanghi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15849,23441,Australia,NSW SOP,2005,For storage only,28,Boondelbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15850,23441,Australia,NSW SOP,2007,For storage only,28,Boondelbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15851,23441,Australia,NSW SOP,2010,For storage only,28,Boondelbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15852,23441,Australia,NSW SOP,2013,For storage only,28,Boondelbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15853,23441,Australia,NSW SOP,2004,For storage only,28,Boondelbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15854,354302,Australia,Victorian SOP,2005,For storage only,28,Boonderoo N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15855,9463,Australia,NSW SOP,2005,For storage only,28,Boonoo Boonoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15856,9463,Australia,NSW SOP,2007,For storage only,28,Boonoo Boonoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15857,9463,Australia,NSW SOP,2010,For storage only,28,Boonoo Boonoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15858,9463,Australia,NSW SOP,2013,For storage only,28,Boonoo Boonoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15859,9463,Australia,NSW SOP,2004,For storage only,28,Boonoo Boonoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15860,23442,Australia,NSW SOP,2005,For storage only,28,Boorganna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15861,23442,Australia,NSW SOP,2007,For storage only,28,Boorganna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15862,23442,Australia,NSW SOP,2010,For storage only,28,Boorganna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15863,23442,Australia,NSW SOP,2013,For storage only,28,Boorganna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15864,23442,Australia,NSW SOP,2004,For storage only,28,Boorganna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15865,310000,Australia,NSW SOP,2005,For storage only,28,Booroolong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15866,310000,Australia,NSW SOP,2007,For storage only,28,Booroolong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15867,310000,Australia,NSW SOP,2010,For storage only,28,Booroolong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15868,310000,Australia,NSW SOP,2013,For storage only,28,Booroolong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15869,310000,Australia,NSW SOP,2004,For storage only,28,Booroolong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15870,10615,Australia,NSW SOP,2005,For storage only,28,Booti Booti,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15871,10615,Australia,NSW SOP,2007,For storage only,28,Booti Booti,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15872,10615,Australia,NSW SOP,2010,For storage only,28,Booti Booti,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15873,10615,Australia,NSW SOP,2013,For storage only,28,Booti Booti,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15874,10615,Australia,NSW SOP,2004,For storage only,28,Booti Booti,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15875,9464,Australia,NSW SOP,2005,For storage only,28,Border Ranges,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15876,9464,Australia,NSW SOP,2007,For storage only,28,Border Ranges,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15877,9464,Australia,NSW SOP,2010,For storage only,28,Border Ranges,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15878,9464,Australia,NSW SOP,2013,For storage only,28,Border Ranges,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15879,9464,Australia,NSW SOP,2004,For storage only,28,Border Ranges,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15880,555543286,Australia,NSW SOP,2007,For storage only,28,Borenore,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15881,555543286,Australia,NSW SOP,2010,For storage only,28,Borenore,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15882,555543286,Australia,NSW SOP,2013,For storage only,28,Borenore,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15883,23443,Australia,NSW SOP,2005,For storage only,28,Boronga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15884,23443,Australia,NSW SOP,2007,For storage only,28,Boronga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15885,23443,Australia,NSW SOP,2010,For storage only,28,Boronga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15886,23443,Australia,NSW SOP,2004,For storage only,28,Boronga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15887,23443,Australia,NSW SOP,2013,For storage only,28,Boronga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15888,23445,Australia,NSW SOP,2004,For storage only,28,Botany Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15889,23445,Australia,NSW SOP,2005,For storage only,28,Botany Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15890,23445,Australia,NSW SOP,2007,For storage only,28,Botany Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15891,23445,Australia,NSW SOP,2013,For storage only,28,Botany Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15895,23445,Australia,NSW SOP,2010,For storage only,28,Botany Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15897,391,Australia,NSW SOP,2005,For storage only,28,Bouddi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15898,391,Australia,NSW SOP,2007,For storage only,28,Bouddi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15899,391,Australia,NSW SOP,2010,For storage only,28,Bouddi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15900,391,Australia,NSW SOP,2013,For storage only,28,Bouddi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15901,391,Australia,NSW SOP,2004,For storage only,28,Bouddi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15902,1139,Australia,NSW SOP,2005,For storage only,28,Bournda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15904,1139,Australia,NSW SOP,2007,For storage only,28,Bournda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15906,1139,Australia,NSW SOP,2010,For storage only,28,Bournda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15908,1139,Australia,NSW SOP,2013,For storage only,28,Bournda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15910,1139,Australia,NSW SOP,2004,For storage only,28,Bournda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15912,404,Australia,Qld Rapid Assessment,2010,For storage only,28,Bowling Green Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15913,404,Australia,Qld Rapid Assessment,2012,For storage only,28,Bowling Green Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15914,23446,Australia,NSW SOP,2005,For storage only,28,Bowraville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15915,23446,Australia,NSW SOP,2007,For storage only,28,Bowraville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15916,23446,Australia,NSW SOP,2010,For storage only,28,Bowraville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15917,23446,Australia,NSW SOP,2013,For storage only,28,Bowraville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15918,23446,Australia,NSW SOP,2004,For storage only,28,Bowraville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15919,314805,Australia,Victorian SOP,2005,For storage only,28,Bradshaw Swamp N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15920,309690,Australia,Qld Rapid Assessment,2010,For storage only,28,Brampton Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15921,309690,Australia,Qld Rapid Assessment,2012,For storage only,28,Brampton Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15922,314717,Australia,Victorian SOP,2010,For storage only,28,Breamlea F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15923,314717,Australia,Victorian SOP,2013,For storage only,28,Breamlea F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15924,555543291,Australia,NSW SOP,2010,For storage only,28,Breelong,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15925,555543291,Australia,NSW SOP,2013,For storage only,28,Breelong,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15926,310002,Australia,NSW SOP,2005,For storage only,28,Bretti,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15927,310002,Australia,NSW SOP,2007,For storage only,28,Bretti,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15928,310002,Australia,NSW SOP,2010,For storage only,28,Bretti,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15929,310002,Australia,NSW SOP,2013,For storage only,28,Bretti,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15930,310002,Australia,NSW SOP,2004,For storage only,28,Bretti,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15931,126061,Australia,Qld Rapid Assessment,2010,For storage only,28,Bribie Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15932,126061,Australia,Qld Rapid Assessment,2012,For storage only,28,Bribie Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15933,555543293,Australia,NSW SOP,2007,For storage only,28,Bridal Veil Falls,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15935,555543293,Australia,NSW SOP,2010,For storage only,28,Bridal Veil Falls,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15937,555543293,Australia,NSW SOP,2013,For storage only,28,Bridal Veil Falls,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15938,555576645,Australia,NSW SOP,2013,For storage only,28,Brigalow,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -15939,310003,Australia,NSW SOP,2005,For storage only,28,Brigalow,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15940,310003,Australia,NSW SOP,2007,For storage only,28,Brigalow,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15941,310003,Australia,NSW SOP,2010,For storage only,28,Brigalow,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15942,310003,Australia,NSW SOP,2013,For storage only,28,Brigalow,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15943,310003,Australia,NSW SOP,2004,For storage only,28,Brigalow,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15944,310004,Australia,NSW SOP,2005,For storage only,28,Brimbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15945,310004,Australia,NSW SOP,2007,For storage only,28,Brimbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15946,310004,Australia,NSW SOP,2010,For storage only,28,Brimbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15947,310004,Australia,NSW SOP,2013,For storage only,28,Brimbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15948,310004,Australia,NSW SOP,2004,For storage only,28,Brimbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15949,310005,Australia,NSW SOP,2005,For storage only,28,Brindabella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15950,310005,Australia,NSW SOP,2007,For storage only,28,Brindabella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15951,310005,Australia,NSW SOP,2010,For storage only,28,Brindabella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15952,310005,Australia,NSW SOP,2013,For storage only,28,Brindabella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15953,354331,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15954,354331,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15955,354331,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15956,310005,Australia,NSW SOP,2004,For storage only,28,Brindabella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15957,354331,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15958,354331,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15959,546,Australia,Victorian SOP,2005,For storage only,28,Brisbane Ranges National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15960,546,Australia,Victorian SOP,2010,For storage only,28,Brisbane Ranges National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15961,546,Australia,Victorian SOP,2013,For storage only,28,Brisbane Ranges National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15962,375,Australia,NSW SOP,2005,For storage only,28,Brisbane Water,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15963,375,Australia,NSW SOP,2007,For storage only,28,Brisbane Water,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15964,375,Australia,NSW SOP,2010,For storage only,28,Brisbane Water,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15965,375,Australia,NSW SOP,2013,For storage only,28,Brisbane Water,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15966,375,Australia,NSW SOP,2004,For storage only,28,Brisbane Water,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15967,309891,Australia,Qld Rapid Assessment,2010,For storage only,28,Broad Sound Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15968,309891,Australia,Qld Rapid Assessment,2012,For storage only,28,Broad Sound Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15969,63740,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15970,63740,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15971,63740,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15972,63740,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15973,63740,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15974,63740,Australia,Victorian SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -15975,314718,Australia,Victorian SOP,2005,For storage only,28,Brodribb River F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15976,23449,Australia,NSW SOP,2005,For storage only,28,Broken Head,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15977,23449,Australia,NSW SOP,2007,For storage only,28,Broken Head,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15978,23449,Australia,NSW SOP,2010,For storage only,28,Broken Head,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15979,23449,Australia,NSW SOP,2013,For storage only,28,Broken Head,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15980,23449,Australia,NSW SOP,2004,For storage only,28,Broken Head,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15981,354342,Australia,Victorian SOP,2005,For storage only,28,Broken-Boosey,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15982,354342,Australia,Victorian SOP,2010,For storage only,28,Broken-Boosey,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15983,354342,Australia,Victorian SOP,2013,For storage only,28,Broken-Boosey,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15984,308674,Australia,NSW SOP,2010,For storage only,28,Bronte-Coogee,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15985,2690,Australia,Victorian SOP,2005,For storage only,28,Bronzewing B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15987,2690,Australia,Victorian SOP,2013,For storage only,28,Bronzewing B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15988,126080,Australia,Qld Rapid Assessment,2010,For storage only,28,Brook Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15989,126080,Australia,Qld Rapid Assessment,2012,For storage only,28,Brook Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15990,23450,Australia,NSW SOP,2005,For storage only,28,Broulee Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15991,23450,Australia,NSW SOP,2007,For storage only,28,Broulee Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15992,23450,Australia,NSW SOP,2010,For storage only,28,Broulee Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15993,23450,Australia,NSW SOP,2013,For storage only,28,Broulee Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15994,23450,Australia,NSW SOP,2004,For storage only,28,Broulee Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15995,310007,Australia,NSW SOP,2005,For storage only,28,Brundee Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15996,310007,Australia,NSW SOP,2007,For storage only,28,Brundee Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15997,310007,Australia,NSW SOP,2010,For storage only,28,Brundee Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15998,310007,Australia,NSW SOP,2013,For storage only,28,Brundee Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -15999,310007,Australia,NSW SOP,2004,For storage only,28,Brundee Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16000,23452,Australia,NSW SOP,2005,For storage only,28,Brunswick Heads,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16001,23452,Australia,NSW SOP,2007,For storage only,28,Brunswick Heads,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16002,23452,Australia,NSW SOP,2010,For storage only,28,Brunswick Heads,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16003,23452,Australia,NSW SOP,2013,For storage only,28,Brunswick Heads,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16004,23452,Australia,NSW SOP,2004,For storage only,28,Brunswick Heads,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16005,23453,Australia,NSW SOP,2005,For storage only,28,Brush Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16006,23453,Australia,NSW SOP,2007,For storage only,28,Brush Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16007,23453,Australia,NSW SOP,2010,For storage only,28,Brush Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16008,23453,Australia,NSW SOP,2013,For storage only,28,Brush Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16009,23453,Australia,NSW SOP,2004,For storage only,28,Brush Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16010,314560,Australia,Victorian SOP,2005,For storage only,28,Bryan Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16011,555576646,Australia,NSW SOP,2013,For storage only,28,Bubalahla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16012,314476,Australia,Victorian SOP,2005,For storage only,28,Buchan Caves Reserve,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16013,314476,Australia,Victorian SOP,2010,For storage only,28,Buchan Caves Reserve,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16014,314476,Australia,Victorian SOP,2013,For storage only,28,Buchan Caves Reserve,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16015,2613,Australia,NSW SOP,2005,For storage only,28,Budawang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16016,2613,Australia,NSW SOP,2007,For storage only,28,Budawang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16017,2613,Australia,NSW SOP,2010,For storage only,28,Budawang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16018,2613,Australia,NSW SOP,2013,For storage only,28,Budawang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16019,2613,Australia,NSW SOP,2004,For storage only,28,Budawang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16020,23456,Australia,NSW SOP,2005,For storage only,28,Budderoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16021,23456,Australia,NSW SOP,2007,For storage only,28,Budderoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16022,23456,Australia,NSW SOP,2010,For storage only,28,Budderoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16023,23456,Australia,NSW SOP,2013,For storage only,28,Budderoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16024,23456,Australia,NSW SOP,2004,For storage only,28,Budderoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16025,23457,Australia,NSW SOP,2005,For storage only,28,Buddigower,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16026,23457,Australia,NSW SOP,2007,For storage only,28,Buddigower,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16027,23457,Australia,NSW SOP,2010,For storage only,28,Buddigower,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16028,23457,Australia,NSW SOP,2013,For storage only,28,Buddigower,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16029,23457,Australia,NSW SOP,2004,For storage only,28,Buddigower,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16030,555543314,Australia,NSW SOP,2007,For storage only,28,Budelah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16031,555543314,Australia,NSW SOP,2010,For storage only,28,Budelah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16032,555543314,Australia,NSW SOP,2013,For storage only,28,Budelah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16033,310008,Australia,NSW SOP,2005,For storage only,28,Bugan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16034,310008,Australia,NSW SOP,2007,For storage only,28,Bugan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16035,310008,Australia,NSW SOP,2010,For storage only,28,Bugan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16036,310008,Australia,NSW SOP,2013,For storage only,28,Bugan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16037,310008,Australia,NSW SOP,2004,For storage only,28,Bugan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16038,313671,Australia,NSW SOP,2005,For storage only,28,Bugong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16039,313671,Australia,NSW SOP,2007,For storage only,28,Bugong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16040,313671,Australia,NSW SOP,2010,For storage only,28,Bugong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16041,313671,Australia,NSW SOP,2013,For storage only,28,Bugong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16042,313671,Australia,NSW SOP,2004,For storage only,28,Bugong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16043,555543315,Australia,NSW SOP,2010,For storage only,28,Bulahdelah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16044,555543315,Australia,NSW SOP,2013,For storage only,28,Bulahdelah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16045,354355,Australia,Qld Rapid Assessment,2010,For storage only,28,Bulburin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16046,354355,Australia,Qld Rapid Assessment,2012,For storage only,28,Bulburin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16047,24602,Australia,Victorian SOP,2010,For storage only,28,Bull Beef Creek N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16048,24602,Australia,Victorian SOP,2013,For storage only,28,Bull Beef Creek N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16049,555543316,Australia,NSW SOP,2010,For storage only,28,Bull Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16050,555543316,Australia,NSW SOP,2013,For storage only,28,Bull Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16051,555543317,Australia,NSW SOP,2010,For storage only,28,Bullala,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16052,555543317,Australia,NSW SOP,2013,For storage only,28,Bullala,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16053,555543318,Australia,NSW SOP,2010,For storage only,28,Bullawa Creek,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16054,555543318,Australia,NSW SOP,2013,For storage only,28,Bullawa Creek,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16055,64390,Australia,Qld Rapid Assessment,2010,For storage only,28,Bulleringa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16056,64390,Australia,Qld Rapid Assessment,2012,For storage only,28,Bulleringa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16057,9465,Australia,NSW SOP,2005,For storage only,28,Bundjalung,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16058,9465,Australia,NSW SOP,2007,For storage only,28,Bundjalung,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16059,9465,Australia,NSW SOP,2010,For storage only,28,Bundjalung,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16060,9465,Australia,NSW SOP,2013,For storage only,28,Bundjalung,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16061,354364,Australia,NSW SOP,2005,For storage only,28,Bundjalung,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16062,354364,Australia,NSW SOP,2007,For storage only,28,Bundjalung,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16063,354364,Australia,NSW SOP,2010,For storage only,28,Bundjalung,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16064,354364,Australia,NSW SOP,2013,For storage only,28,Bundjalung,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16065,9465,Australia,NSW SOP,2004,For storage only,28,Bundjalung,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16066,354364,Australia,NSW SOP,2004,For storage only,28,Bundjalung,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16067,310011,Australia,NSW SOP,2005,For storage only,28,Bungabbee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16068,310011,Australia,NSW SOP,2007,For storage only,28,Bungabbee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16069,310011,Australia,NSW SOP,2010,For storage only,28,Bungabbee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16070,310011,Australia,NSW SOP,2013,For storage only,28,Bungabbee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16071,310011,Australia,NSW SOP,2004,For storage only,28,Bungabbee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16072,23461,Australia,NSW SOP,2005,For storage only,28,Bungawalbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16073,23461,Australia,NSW SOP,2007,For storage only,28,Bungawalbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16074,23461,Australia,NSW SOP,2010,For storage only,28,Bungawalbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16075,23461,Australia,NSW SOP,2013,For storage only,28,Bungawalbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16076,313686,Australia,NSW SOP,2005,For storage only,28,Bungawalbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16077,313686,Australia,NSW SOP,2007,For storage only,28,Bungawalbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16078,313686,Australia,NSW SOP,2010,For storage only,28,Bungawalbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16079,354367,Australia,NSW SOP,2005,For storage only,28,Bungawalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16080,354367,Australia,NSW SOP,2007,For storage only,28,Bungawalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16081,354367,Australia,NSW SOP,2010,For storage only,28,Bungawalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16082,354367,Australia,NSW SOP,2013,For storage only,28,Bungawalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16083,23461,Australia,NSW SOP,2004,For storage only,28,Bungawalbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16084,313686,Australia,NSW SOP,2004,For storage only,28,Bungawalbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16085,354367,Australia,NSW SOP,2004,For storage only,28,Bungawalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16086,313686,Australia,NSW SOP,2013,For storage only,28,Bungawalbin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16087,354372,Australia,NSW SOP,2005,For storage only,28,Bungonia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16088,354372,Australia,NSW SOP,2007,For storage only,28,Bungonia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16089,354372,Australia,NSW SOP,2010,For storage only,28,Bungonia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16090,354372,Australia,NSW SOP,2013,For storage only,28,Bungonia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16091,555548684,Australia,NSW SOP,2013,For storage only,28,Bungonia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16092,354372,Australia,NSW SOP,2004,For storage only,28,Bungonia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16093,70967,Australia,Victorian SOP,2010,For storage only,28,Bunurong Marine Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16095,70967,Australia,Victorian SOP,2005,For storage only,28,Bunurong Marine Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16097,70967,Australia,Victorian SOP,2013,For storage only,28,Bunurong Marine Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16099,309893,Australia,Qld Rapid Assessment,2010,For storage only,28,Bunya Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16100,309893,Australia,Qld Rapid Assessment,2012,For storage only,28,Bunya Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16101,354374,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16102,354374,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16103,64353,Australia,Victorian SOP,2010,For storage only,28,Bunyip,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16104,64353,Australia,Victorian SOP,2005,For storage only,28,Bunyip,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16105,354376,Australia,Victorian SOP,2005,For storage only,28,Bunyip B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16106,64353,Australia,Victorian SOP,2013,For storage only,28,Bunyip,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16107,23835,Australia,Qld Rapid Assessment,2010,For storage only,28,Burleigh Head,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16108,23835,Australia,Qld Rapid Assessment,2012,For storage only,28,Burleigh Head,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16109,310012,Australia,NSW SOP,2005,For storage only,28,Burning Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16110,310012,Australia,NSW SOP,2007,For storage only,28,Burning Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16111,310012,Australia,NSW SOP,2010,For storage only,28,Burning Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16112,310012,Australia,NSW SOP,2013,For storage only,28,Burning Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16113,310012,Australia,NSW SOP,2004,For storage only,28,Burning Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16114,310016,Australia,NSW SOP,2005,For storage only,28,Burnt School,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16115,310016,Australia,NSW SOP,2007,For storage only,28,Burnt School,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16116,310016,Australia,NSW SOP,2010,For storage only,28,Burnt School,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16117,310016,Australia,NSW SOP,2004,For storage only,28,Burnt School,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16118,310016,Australia,NSW SOP,2013,For storage only,28,Burnt School,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16119,310013,Australia,NSW SOP,2005,For storage only,28,Burnt-Down Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16120,310013,Australia,NSW SOP,2007,For storage only,28,Burnt-Down Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16121,310013,Australia,NSW SOP,2010,For storage only,28,Burnt-Down Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16122,310013,Australia,NSW SOP,2004,For storage only,28,Burnt-Down Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16123,310013,Australia,NSW SOP,2013,For storage only,28,Burnt-Down Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16124,310020,Australia,NSW SOP,2005,For storage only,28,Burra Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16125,310020,Australia,NSW SOP,2007,For storage only,28,Burra Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16126,310020,Australia,NSW SOP,2010,For storage only,28,Burra Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16127,310020,Australia,NSW SOP,2013,For storage only,28,Burra Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16128,310020,Australia,NSW SOP,2004,For storage only,28,Burra Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16129,354388,Australia,NSW SOP,2005,For storage only,28,Burragorang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16130,354388,Australia,NSW SOP,2007,For storage only,28,Burragorang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16131,354388,Australia,NSW SOP,2010,For storage only,28,Burragorang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16132,354388,Australia,NSW SOP,2013,For storage only,28,Burragorang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16133,354388,Australia,NSW SOP,2004,For storage only,28,Burragorang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16134,555548709,Australia,NSW SOP,2010,For storage only,28,Burral Yurrul,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16135,555548709,Australia,NSW SOP,2013,For storage only,28,Burral Yurrul,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16136,555543273,Australia,NSW SOP,2010,For storage only,28,Burral Yurrul,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16137,555543273,Australia,NSW SOP,2013,For storage only,28,Burral Yurrul,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16138,10585,Australia,NSW SOP,2005,For storage only,28,Burrinjuck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16139,10585,Australia,NSW SOP,2007,For storage only,28,Burrinjuck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16140,10585,Australia,NSW SOP,2010,For storage only,28,Burrinjuck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16141,10585,Australia,NSW SOP,2013,For storage only,28,Burrinjuck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16142,10585,Australia,NSW SOP,2004,For storage only,28,Burrinjuck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16143,311340,Australia,Victorian SOP,2005,For storage only,28,Burrowa - Pine Mountain National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16144,311340,Australia,Victorian SOP,2010,For storage only,28,Burrowa - Pine Mountain National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16145,311340,Australia,Victorian SOP,2013,For storage only,28,Burrowa - Pine Mountain National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16146,23837,Australia,Qld Rapid Assessment,2010,For storage only,28,Burrum Coast,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16147,23837,Australia,Qld Rapid Assessment,2012,For storage only,28,Burrum Coast,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16148,555576651,Australia,NSW SOP,2013,For storage only,28,Burwood Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16149,12958,Australia,NSW SOP,2010,For storage only,28,Bushrangers Bay,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16150,354391,Australia,NSW SOP,2005,For storage only,28,Bushy Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16151,354391,Australia,NSW SOP,2007,For storage only,28,Bushy Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16152,354391,Australia,NSW SOP,2010,For storage only,28,Bushy Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16153,354391,Australia,NSW SOP,2004,For storage only,28,Bushy Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16154,354391,Australia,NSW SOP,2013,For storage only,28,Bushy Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16155,310021,Australia,NSW SOP,2005,For storage only,28,Butterleaf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16156,310021,Australia,NSW SOP,2007,For storage only,28,Butterleaf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16157,310021,Australia,NSW SOP,2010,For storage only,28,Butterleaf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16158,310021,Australia,NSW SOP,2013,For storage only,28,Butterleaf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16159,354392,Australia,NSW SOP,2005,For storage only,28,Butterleaf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16160,354392,Australia,NSW SOP,2007,For storage only,28,Butterleaf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16161,354392,Australia,NSW SOP,2010,For storage only,28,Butterleaf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16162,354392,Australia,NSW SOP,2013,For storage only,28,Butterleaf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16163,310021,Australia,NSW SOP,2004,For storage only,28,Butterleaf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16164,354392,Australia,NSW SOP,2004,For storage only,28,Butterleaf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16165,127268,Australia,Victorian SOP,2010,For storage only,28,Buxton Silver Gum N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16166,127268,Australia,Victorian SOP,2005,For storage only,28,Buxton Silver Gum N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16167,127268,Australia,Victorian SOP,2013,For storage only,28,Buxton Silver Gum N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16168,23841,Australia,Qld Rapid Assessment,2010,For storage only,28,Byfield,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16169,23841,Australia,Qld Rapid Assessment,2012,For storage only,28,Byfield,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16170,310022,Australia,NSW SOP,2005,For storage only,28,Byrnes Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16171,310022,Australia,NSW SOP,2007,For storage only,28,Byrnes Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16172,310022,Australia,NSW SOP,2010,For storage only,28,Byrnes Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16173,310022,Australia,NSW SOP,2013,For storage only,28,Byrnes Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16174,310022,Australia,NSW SOP,2004,For storage only,28,Byrnes Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16175,308673,Australia,NSW SOP,2010,For storage only,28,Cabbage Tree Bay,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16176,310025,Australia,NSW SOP,2005,For storage only,28,Cambewarra Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16177,310025,Australia,NSW SOP,2007,For storage only,28,Cambewarra Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16178,310025,Australia,NSW SOP,2010,For storage only,28,Cambewarra Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16179,310025,Australia,NSW SOP,2013,For storage only,28,Cambewarra Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16180,310025,Australia,NSW SOP,2004,For storage only,28,Cambewarra Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16181,23467,Australia,NSW SOP,2005,For storage only,28,Camels Hump,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16182,23467,Australia,NSW SOP,2007,For storage only,28,Camels Hump,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16183,23467,Australia,NSW SOP,2010,For storage only,28,Camels Hump,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16184,23467,Australia,NSW SOP,2004,For storage only,28,Camels Hump,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16185,23467,Australia,NSW SOP,2013,For storage only,28,Camels Hump,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16186,23468,Australia,NSW SOP,2005,For storage only,28,Camerons Gorge,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16187,23468,Australia,NSW SOP,2007,For storage only,28,Camerons Gorge,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16188,23468,Australia,NSW SOP,2010,For storage only,28,Camerons Gorge,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16189,23468,Australia,NSW SOP,2013,For storage only,28,Camerons Gorge,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16190,555543279,Australia,NSW SOP,2007,For storage only,28,Camerons Gorge,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16191,555543279,Australia,NSW SOP,2010,For storage only,28,Camerons Gorge,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16192,555543279,Australia,NSW SOP,2013,For storage only,28,Camerons Gorge,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16193,23468,Australia,NSW SOP,2004,For storage only,28,Camerons Gorge,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16194,23844,Australia,Qld Rapid Assessment,2010,For storage only,28,Camooweal Caves,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16195,23844,Australia,Qld Rapid Assessment,2012,For storage only,28,Camooweal Caves,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16196,9483,Australia,Qld Rapid Assessment,2010,For storage only,28,Cania Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16197,9483,Australia,Qld Rapid Assessment,2012,For storage only,28,Cania Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16198,127239,Australia,Victorian SOP,2005,For storage only,28,Cann River B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16199,308675,Australia,NSW SOP,2010,For storage only,28,Cape Banks,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16200,354414,Australia,NSW SOP,2005,For storage only,28,Cape Byron,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16201,354414,Australia,NSW SOP,2007,For storage only,28,Cape Byron,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16202,354414,Australia,NSW SOP,2010,For storage only,28,Cape Byron,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16204,354414,Australia,NSW SOP,2013,For storage only,28,Cape Byron,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16205,354414,Australia,NSW SOP,2004,For storage only,28,Cape Byron,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16206,127242,Australia,Victorian SOP,2010,For storage only,28,Cape Conran Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16207,127242,Australia,Victorian SOP,2005,For storage only,28,Cape Conran Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16208,127242,Australia,Victorian SOP,2013,For storage only,28,Cape Conran Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16209,458,Australia,Qld Rapid Assessment,2010,For storage only,28,Cape Hillsborough,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16210,458,Australia,Qld Rapid Assessment,2012,For storage only,28,Cape Hillsborough,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16211,305326,Australia,Victorian SOP,2010,For storage only,28,Cape Howe,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16212,305326,Australia,Victorian SOP,2005,For storage only,28,Cape Howe,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16213,305326,Australia,Victorian SOP,2013,For storage only,28,Cape Howe,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16214,127244,Australia,Victorian SOP,2005,For storage only,28,Cape Liptrap Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16215,127244,Australia,Victorian SOP,2010,For storage only,28,Cape Liptrap Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16216,127244,Australia,Victorian SOP,2013,For storage only,28,Cape Liptrap Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16217,410,Australia,Qld Rapid Assessment,2010,For storage only,28,Cape Melville (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -16218,410,Australia,Qld Rapid Assessment,2012,For storage only,28,Cape Melville (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -16219,9506,Australia,Victorian SOP,2010,For storage only,28,Cape Nelson,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16220,9506,Australia,Victorian SOP,2005,For storage only,28,Cape Nelson,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16221,9506,Australia,Victorian SOP,2013,For storage only,28,Cape Nelson,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16222,23846,Australia,Qld Rapid Assessment,2010,For storage only,28,Cape Palmerston,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16223,23846,Australia,Qld Rapid Assessment,2012,For storage only,28,Cape Palmerston,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16224,431,Australia,Qld Rapid Assessment,2010,For storage only,28,Cape Upstart,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16225,431,Australia,Qld Rapid Assessment,2012,For storage only,28,Cape Upstart,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16226,555548756,Australia,NSW SOP,2010,For storage only,28,Capertee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16227,555548756,Australia,NSW SOP,2013,For storage only,28,Capertee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16228,310027,Australia,NSW SOP,2005,For storage only,28,Capoompeta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16229,310027,Australia,NSW SOP,2007,For storage only,28,Capoompeta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16230,310027,Australia,NSW SOP,2010,For storage only,28,Capoompeta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16231,310027,Australia,NSW SOP,2013,For storage only,28,Capoompeta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16232,310027,Australia,NSW SOP,2004,For storage only,28,Capoompeta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16233,126133,Australia,Qld Rapid Assessment,2010,For storage only,28,Capricorn Coast,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16234,126133,Australia,Qld Rapid Assessment,2012,For storage only,28,Capricorn Coast,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16235,126134,Australia,Qld Rapid Assessment,2010,For storage only,28,Capricornia Cays,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16236,126134,Australia,Qld Rapid Assessment,2012,For storage only,28,Capricornia Cays,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16237,313898,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16238,313898,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16239,310028,Australia,NSW SOP,2005,For storage only,28,Captains Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16240,310028,Australia,NSW SOP,2007,For storage only,28,Captains Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16241,310028,Australia,NSW SOP,2010,For storage only,28,Captains Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16242,310028,Australia,NSW SOP,2013,For storage only,28,Captains Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16243,310028,Australia,NSW SOP,2004,For storage only,28,Captains Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16244,23471,Australia,NSW SOP,2005,For storage only,28,Careunga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16245,23471,Australia,NSW SOP,2007,For storage only,28,Careunga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16246,23471,Australia,NSW SOP,2010,For storage only,28,Careunga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16247,23471,Australia,NSW SOP,2013,For storage only,28,Careunga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16248,23471,Australia,NSW SOP,2004,For storage only,28,Careunga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16249,63710,Australia,Birdlife IBA,2008,For storage only,28,Carnac Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16250,403,Australia,Qld Rapid Assessment,2010,For storage only,28,Carnarvon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16251,403,Australia,Qld Rapid Assessment,2012,For storage only,28,Carnarvon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16252,357748,Australia,Victorian SOP,2005,For storage only,28,Carpendeit B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16253,555576655,Australia,NSW SOP,2013,For storage only,28,Carrabear,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16254,313672,Australia,NSW SOP,2005,For storage only,28,Carrai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16255,313672,Australia,NSW SOP,2007,For storage only,28,Carrai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16256,313672,Australia,NSW SOP,2010,For storage only,28,Carrai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16257,313672,Australia,NSW SOP,2013,For storage only,28,Carrai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16258,354434,Australia,NSW SOP,2005,For storage only,28,Carrai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16259,354434,Australia,NSW SOP,2007,For storage only,28,Carrai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16260,354434,Australia,NSW SOP,2010,For storage only,28,Carrai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16261,354434,Australia,NSW SOP,2013,For storage only,28,Carrai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16262,309992,Australia,NSW SOP,2004,For storage only,28,Biriwal Bulga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16263,354434,Australia,NSW SOP,2004,For storage only,28,Carrai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16264,126140,Australia,NSW SOP,2005,For storage only,28,Cascade,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16265,126140,Australia,NSW SOP,2007,For storage only,28,Cascade,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16266,126140,Australia,NSW SOP,2010,For storage only,28,Cascade,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16267,126140,Australia,NSW SOP,2013,For storage only,28,Cascade,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16268,354439,Australia,NSW SOP,2005,For storage only,28,Cascade,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16269,354439,Australia,NSW SOP,2007,For storage only,28,Cascade,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16270,354439,Australia,NSW SOP,2010,For storage only,28,Cascade,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16271,354439,Australia,NSW SOP,2013,For storage only,28,Cascade,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16272,313672,Australia,NSW SOP,2004,For storage only,28,Carrai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16273,354439,Australia,NSW SOP,2004,For storage only,28,Cascade,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16274,354439,Australia,Victorian SOP,2005,For storage only,28,Cascade,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16275,435,Australia,Qld Rapid Assessment,2010,For storage only,28,Castle Tower,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16276,435,Australia,Qld Rapid Assessment,2012,For storage only,28,Castle Tower,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16277,555548421,Australia,Victorian SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16278,313687,Australia,NSW SOP,2005,For storage only,28,Castlereagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16279,313687,Australia,NSW SOP,2007,For storage only,28,Castlereagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16280,313687,Australia,NSW SOP,2010,For storage only,28,Castlereagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16281,313687,Australia,NSW SOP,2013,For storage only,28,Castlereagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16282,313687,Australia,NSW SOP,2004,For storage only,28,Castlereagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16283,313850,Australia,NTMEE,2013,For storage only,28,Casuarina,Coastal Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16284,354444,Australia,NSW SOP,2005,For storage only,28,Cataract,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16285,354444,Australia,NSW SOP,2007,For storage only,28,Cataract,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16286,354444,Australia,NSW SOP,2010,For storage only,28,Cataract,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16287,354444,Australia,NSW SOP,2013,For storage only,28,Cataract,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16288,555543285,Australia,NSW SOP,2007,For storage only,28,Cataract,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16289,555543285,Australia,NSW SOP,2010,For storage only,28,Cataract,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16290,555543285,Australia,NSW SOP,2013,For storage only,28,Cataract,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16291,354444,Australia,NSW SOP,2004,For storage only,28,Cataract,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16292,127207,Australia,Victorian SOP,2005,For storage only,28,Cathedral Range,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16293,127207,Australia,Victorian SOP,2010,For storage only,28,Cathedral Range,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16294,127207,Australia,Victorian SOP,2013,For storage only,28,Cathedral Range,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16295,2610,Australia,NSW SOP,2005,For storage only,28,Cathedral Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16296,2610,Australia,NSW SOP,2007,For storage only,28,Cathedral Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16297,2610,Australia,NSW SOP,2010,For storage only,28,Cathedral Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16298,2610,Australia,NSW SOP,2013,For storage only,28,Cathedral Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16299,2610,Australia,NSW SOP,2004,For storage only,28,Cathedral Rock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16300,10620,Australia,NSW SOP,2005,For storage only,28,Cattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16301,10620,Australia,NSW SOP,2007,For storage only,28,Cattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16302,10620,Australia,NSW SOP,2010,For storage only,28,Cattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16303,10620,Australia,NSW SOP,2013,For storage only,28,Cattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16304,10620,Australia,NSW SOP,2004,For storage only,28,Cattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16305,23473,Australia,NSW SOP,2005,For storage only,28,Cecil Hoskins,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16306,23473,Australia,NSW SOP,2007,For storage only,28,Cecil Hoskins,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16307,23473,Australia,NSW SOP,2010,For storage only,28,Cecil Hoskins,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16308,23473,Australia,NSW SOP,2013,For storage only,28,Cecil Hoskins,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16309,23473,Australia,NSW SOP,2004,For storage only,28,Cecil Hoskins,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16310,430,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16311,23474,Australia,NSW SOP,2005,For storage only,28,Cedar Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16312,23474,Australia,NSW SOP,2007,For storage only,28,Cedar Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16313,23474,Australia,NSW SOP,2010,For storage only,28,Cedar Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16314,23474,Australia,NSW SOP,2013,For storage only,28,Cedar Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16315,23474,Australia,NSW SOP,2004,For storage only,28,Cedar Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16316,102674,Australia,Tasmanian WHA,2004,For storage only,28,Central Plateau,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16317,313673,Australia,NSW SOP,2005,For storage only,28,Chaelundi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16318,313673,Australia,NSW SOP,2007,For storage only,28,Chaelundi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16319,313673,Australia,NSW SOP,2010,For storage only,28,Chaelundi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16320,313673,Australia,NSW SOP,2013,For storage only,28,Chaelundi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16321,354447,Australia,NSW SOP,2005,For storage only,28,Chaelundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16322,354447,Australia,NSW SOP,2007,For storage only,28,Chaelundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16323,354447,Australia,NSW SOP,2010,For storage only,28,Chaelundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16324,354447,Australia,NSW SOP,2013,For storage only,28,Chaelundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16325,309984,Australia,NSW SOP,2004,For storage only,28,Bellinger River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16326,354447,Australia,NSW SOP,2004,For storage only,28,Chaelundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16327,313688,Australia,NSW SOP,2005,For storage only,28,Chambigne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16328,313688,Australia,NSW SOP,2007,For storage only,28,Chambigne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16329,313688,Australia,NSW SOP,2010,For storage only,28,Chambigne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16330,313688,Australia,NSW SOP,2013,For storage only,28,Chambigne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16332,313688,Australia,NSW SOP,2004,For storage only,28,Chambigne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16333,310029,Australia,NSW SOP,2005,For storage only,28,Chapmans Peak,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16334,310029,Australia,NSW SOP,2007,For storage only,28,Chapmans Peak,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16335,310029,Australia,NSW SOP,2010,For storage only,28,Chapmans Peak,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16336,310029,Australia,NSW SOP,2004,For storage only,28,Chapmans Peak,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16337,310029,Australia,NSW SOP,2013,For storage only,28,Chapmans Peak,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16338,354452,Australia,NSW SOP,2005,For storage only,28,Chatsworth Hill,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16339,354452,Australia,NSW SOP,2007,For storage only,28,Chatsworth Hill,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16340,354452,Australia,NSW SOP,2010,For storage only,28,Chatsworth Hill,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16341,354452,Australia,NSW SOP,2013,For storage only,28,Chatsworth Hill,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16342,354452,Australia,NSW SOP,2004,For storage only,28,Chatsworth Hill,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16343,354454,Australia,Qld Rapid Assessment,2010,For storage only,28,Cherbourg,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16344,354454,Australia,Qld Rapid Assessment,2012,For storage only,28,Cherbourg,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16345,64389,Australia,Qld Rapid Assessment,2010,For storage only,28,Chesterton Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16346,64389,Australia,Qld Rapid Assessment,2012,For storage only,28,Chesterton Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16347,126152,Australia,Qld Rapid Assessment,2010,For storage only,28,Chillagoe-Mungana Caves,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16348,126152,Australia,Qld Rapid Assessment,2012,For storage only,28,Chillagoe-Mungana Caves,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16349,354464,Australia,Victorian SOP,2005,For storage only,28,Chiltern-Mt Pilot National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16350,354464,Australia,Victorian SOP,2010,For storage only,28,Chiltern-Mt Pilot National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16351,354464,Australia,Victorian SOP,2013,For storage only,28,Chiltern-Mt Pilot National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16352,24617,Australia,Victorian SOP,2005,For storage only,28,Churchill National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16353,24617,Australia,Victorian SOP,2010,For storage only,28,Churchill National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16354,24617,Australia,Victorian SOP,2013,For storage only,28,Churchill National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16355,305470,Australia,Victorian SOP,2010,For storage only,28,Churchill Island,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16356,305470,Australia,Victorian SOP,2005,For storage only,28,Churchill Island,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16357,305470,Australia,Victorian SOP,2013,For storage only,28,Churchill Island,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16358,126159,Australia,Qld Rapid Assessment,2010,For storage only,28,Claremont Isles,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16359,126159,Australia,Qld Rapid Assessment,2012,For storage only,28,Claremont Isles,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16360,310030,Australia,NSW SOP,2005,For storage only,28,Clarence Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16361,310030,Australia,NSW SOP,2007,For storage only,28,Clarence Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16362,310030,Australia,NSW SOP,2010,For storage only,28,Clarence Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16363,310030,Australia,NSW SOP,2013,For storage only,28,Clarence Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16364,310030,Australia,NSW SOP,2004,For storage only,28,Clarence Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16365,310031,Australia,NSW SOP,2005,For storage only,28,Clarkes Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16366,310031,Australia,NSW SOP,2007,For storage only,28,Clarkes Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16367,310031,Australia,NSW SOP,2010,For storage only,28,Clarkes Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16368,310031,Australia,NSW SOP,2013,For storage only,28,Clarkes Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16369,310031,Australia,NSW SOP,2004,For storage only,28,Clarkes Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16370,451,Australia,Qld Rapid Assessment,2010,For storage only,28,Clump Mountain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16371,451,Australia,Qld Rapid Assessment,2012,For storage only,28,Clump Mountain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16372,310032,Australia,NSW SOP,2005,For storage only,28,Clyde River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16373,310032,Australia,NSW SOP,2007,For storage only,28,Clyde River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16374,310032,Australia,NSW SOP,2010,For storage only,28,Clyde River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16375,310032,Australia,NSW SOP,2013,For storage only,28,Clyde River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16376,310032,Australia,NSW SOP,2004,For storage only,28,Clyde River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16377,314566,Australia,Victorian SOP,2005,For storage only,28,Clydebank Morass W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16378,23855,Australia,Qld Rapid Assessment,2010,For storage only,28,Coalstoun Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16379,23855,Australia,Qld Rapid Assessment,2012,For storage only,28,Coalstoun Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16380,555543337,Australia,Victorian SOP,2010,For storage only,28,Cobboboonee National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16381,555543337,Australia,Victorian SOP,2013,For storage only,28,Cobboboonee National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16382,555576658,Australia,NSW SOP,2013,For storage only,28,Cobbora,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16383,314812,Australia,Victorian SOP,2013,For storage only,28,Cobra Killuc W.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16384,64182,Australia,NSW SOP,2005,For storage only,28,Cockle Bay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16385,64182,Australia,NSW SOP,2007,For storage only,28,Cockle Bay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16386,64182,Australia,NSW SOP,2010,For storage only,28,Cockle Bay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16387,64182,Australia,NSW SOP,2013,For storage only,28,Cockle Bay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16388,64182,Australia,NSW SOP,2004,For storage only,28,Cockle Bay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16389,373,Australia,NSW SOP,2005,For storage only,28,Cocoparra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16390,373,Australia,NSW SOP,2007,For storage only,28,Cocoparra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16391,373,Australia,NSW SOP,2010,For storage only,28,Cocoparra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16392,373,Australia,NSW SOP,2013,For storage only,28,Cocoparra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16393,1140,Australia,NSW SOP,2005,For storage only,28,Cocopara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16394,1140,Australia,NSW SOP,2007,For storage only,28,Cocopara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16395,1140,Australia,NSW SOP,2010,For storage only,28,Cocopara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16396,1140,Australia,NSW SOP,2013,For storage only,28,Cocopara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16397,373,Australia,NSW SOP,2004,For storage only,28,Cocoparra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16398,1140,Australia,NSW SOP,2004,For storage only,28,Cocopara,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16399,10606,Australia,Birdlife IBA,2008,For storage only,28,Coffin Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16400,354482,Australia,NSW SOP,2005,For storage only,28,Coffs Coast,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16401,354482,Australia,NSW SOP,2007,For storage only,28,Coffs Coast,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16402,354482,Australia,NSW SOP,2010,For storage only,28,Coffs Coast,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16403,354482,Australia,NSW SOP,2013,For storage only,28,Coffs Coast,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16404,555543340,Australia,NSW SOP,2010,For storage only,28,Colongra Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16405,555543340,Australia,NSW SOP,2013,For storage only,28,Colongra Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16406,555543341,Australia,NSW SOP,2010,For storage only,28,Columbey,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16407,555543341,Australia,NSW SOP,2013,For storage only,28,Columbey,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16408,555576662,Australia,NSW SOP,2013,For storage only,28,Columbey,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16409,354487,Australia,NSW SOP,2005,For storage only,28,Colymea,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16410,354487,Australia,NSW SOP,2007,For storage only,28,Colymea,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16411,354487,Australia,NSW SOP,2010,For storage only,28,Colymea,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16412,354487,Australia,NSW SOP,2013,For storage only,28,Colymea,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16413,354487,Australia,NSW SOP,2004,For storage only,28,Colymea,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16414,555576663,Australia,NSW SOP,2013,For storage only,28,Combaning,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16415,555543342,Australia,NSW SOP,2007,For storage only,28,Comboyne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16416,555543342,Australia,NSW SOP,2010,For storage only,28,Comboyne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16417,555543342,Australia,NSW SOP,2013,For storage only,28,Comboyne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16418,70931,Australia,NSW SOP,2005,For storage only,28,Comerong Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16419,70931,Australia,NSW SOP,2007,For storage only,28,Comerong Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16420,70931,Australia,NSW SOP,2010,For storage only,28,Comerong Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16421,70931,Australia,NSW SOP,2013,For storage only,28,Comerong Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16422,70931,Australia,NSW SOP,2004,For storage only,28,Comerong Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16423,354496,Australia,NSW SOP,2005,For storage only,28,Coneac,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16424,354496,Australia,NSW SOP,2007,For storage only,28,Coneac,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16425,354496,Australia,NSW SOP,2010,For storage only,28,Coneac,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16426,354496,Australia,NSW SOP,2013,For storage only,28,Coneac,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16427,354496,Australia,NSW SOP,2004,For storage only,28,Coneac,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16428,146692,Australia,NSW SOP,2005,For storage only,28,Conimbla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16429,146692,Australia,NSW SOP,2007,For storage only,28,Conimbla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16430,146692,Australia,NSW SOP,2010,For storage only,28,Conimbla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16431,146692,Australia,NSW SOP,2013,For storage only,28,Conimbla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16432,146692,Australia,NSW SOP,2004,For storage only,28,Conimbla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16433,102541,Australia,NSW SOP,2005,For storage only,28,Conjola,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16434,102541,Australia,NSW SOP,2007,For storage only,28,Conjola,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16435,102541,Australia,NSW SOP,2010,For storage only,28,Conjola,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16436,102541,Australia,NSW SOP,2013,For storage only,28,Conjola,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16437,102541,Australia,NSW SOP,2004,For storage only,28,Conjola,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16438,62983,Australia,Qld Rapid Assessment,2010,For storage only,28,Conondale,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16439,62983,Australia,Qld Rapid Assessment,2012,For storage only,28,Conondale,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16440,2630,Australia,Qld Rapid Assessment,2010,For storage only,28,Conway,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16441,2630,Australia,Qld Rapid Assessment,2012,For storage only,28,Conway,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16442,555577030,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16443,23481,Australia,NSW SOP,2005,For storage only,28,Coocumbac Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16444,23481,Australia,NSW SOP,2007,For storage only,28,Coocumbac Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16445,23481,Australia,NSW SOP,2010,For storage only,28,Coocumbac Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16446,23481,Australia,NSW SOP,2013,For storage only,28,Coocumbac Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16447,23481,Australia,NSW SOP,2004,For storage only,28,Coocumbac Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16448,23482,Australia,NSW SOP,2005,For storage only,28,Cook Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16449,23482,Australia,NSW SOP,2007,For storage only,28,Cook Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16450,23482,Australia,NSW SOP,2010,For storage only,28,Cook Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16451,23482,Australia,NSW SOP,2013,For storage only,28,Cook Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16452,315022,Australia,NSW SOP,2010,For storage only,28,Cook Island,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16453,23482,Australia,NSW SOP,2004,For storage only,28,Cook Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16454,555576665,Australia,NSW SOP,2013,For storage only,28,Cookbundoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16455,310038,Australia,NSW SOP,2005,For storage only,28,Coolah Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16456,310038,Australia,NSW SOP,2007,For storage only,28,Coolah Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16457,310038,Australia,NSW SOP,2010,For storage only,28,Coolah Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16458,310038,Australia,NSW SOP,2013,For storage only,28,Coolah Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16459,310038,Australia,NSW SOP,2004,For storage only,28,Coolah Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16460,1156,Australia,NSW SOP,2005,For storage only,28,Coolbaggie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16461,1156,Australia,NSW SOP,2007,For storage only,28,Coolbaggie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16462,1156,Australia,NSW SOP,2010,For storage only,28,Coolbaggie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16463,1156,Australia,NSW SOP,2013,For storage only,28,Coolbaggie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16464,1156,Australia,NSW SOP,2004,For storage only,28,Coolbaggie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16465,555576666,Australia,NSW SOP,2013,For storage only,28,Cooleburba,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16466,23484,Australia,NSW SOP,2005,For storage only,28,Coolongolook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16467,23484,Australia,NSW SOP,2007,For storage only,28,Coolongolook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16468,23484,Australia,NSW SOP,2013,For storage only,28,Coolongolook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16469,23484,Australia,NSW SOP,2004,For storage only,28,Coolongolook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16470,23484,Australia,NSW SOP,2010,For storage only,28,Coolongolook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16471,67730,Australia,Birdlife IBA,2008,For storage only,28,Fraser Island,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -16472,309914,Australia,Birdlife IBA,2008,For storage only,28,Great Sandy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16473,102543,Australia,NSW SOP,2005,For storage only,28,Coolumbooka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16474,102543,Australia,NSW SOP,2007,For storage only,28,Coolumbooka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16475,102543,Australia,NSW SOP,2010,For storage only,28,Coolumbooka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16476,102543,Australia,NSW SOP,2004,For storage only,28,Coolumbooka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16477,102543,Australia,NSW SOP,2013,For storage only,28,Coolumbooka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16478,310039,Australia,NSW SOP,2005,For storage only,28,Cooperabung Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16479,310039,Australia,NSW SOP,2007,For storage only,28,Cooperabung Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16480,310039,Australia,NSW SOP,2010,For storage only,28,Cooperabung Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16481,310039,Australia,NSW SOP,2013,For storage only,28,Cooperabung Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16482,310039,Australia,NSW SOP,2004,For storage only,28,Cooperabung Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16483,541,Australia,Victorian SOP,2005,For storage only,28,Coopracambra National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16484,541,Australia,Victorian SOP,2010,For storage only,28,Coopracambra National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16485,541,Australia,Victorian SOP,2013,For storage only,28,Coopracambra National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16486,313674,Australia,NSW SOP,2005,For storage only,28,Coorabakh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16487,313674,Australia,NSW SOP,2007,For storage only,28,Coorabakh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16488,313674,Australia,NSW SOP,2010,For storage only,28,Coorabakh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16489,313674,Australia,NSW SOP,2013,For storage only,28,Coorabakh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16490,310095,Australia,NSW SOP,2004,For storage only,28,Junuy Juluum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16491,311457,Australia,Victorian SOP,2005,For storage only,28,Cooriemungle Creek F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16492,311457,Australia,Victorian SOP,2010,For storage only,28,Cooriemungle Creek F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16493,311457,Australia,Victorian SOP,2013,For storage only,28,Cooriemungle Creek F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16494,310040,Australia,NSW SOP,2005,For storage only,28,Coornartha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16495,310040,Australia,NSW SOP,2007,For storage only,28,Coornartha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16496,310040,Australia,NSW SOP,2010,For storage only,28,Coornartha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16497,310040,Australia,NSW SOP,2004,For storage only,28,Coornartha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16498,310040,Australia,NSW SOP,2013,For storage only,28,Coornartha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16499,26012,Australia,Birdlife IBA,2008,For storage only,28,Coorong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16500,354514,Australia,NSW SOP,2005,For storage only,28,Copeland Tops,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16501,354514,Australia,NSW SOP,2007,For storage only,28,Copeland Tops,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16502,354514,Australia,NSW SOP,2010,For storage only,28,Copeland Tops,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16503,354514,Australia,NSW SOP,2013,For storage only,28,Copeland Tops,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16504,1147,Australia,NSW SOP,2005,For storage only,28,Copperhannia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16505,1147,Australia,NSW SOP,2010,For storage only,28,Copperhannia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16506,1147,Australia,NSW SOP,2013,For storage only,28,Copperhannia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16507,1147,Australia,NSW SOP,2004,For storage only,28,Copperhannia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16508,354516,Australia,Victorian SOP,2010,For storage only,28,Coradjil N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16509,354516,Australia,Victorian SOP,2013,For storage only,28,Coradjil N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16510,23485,Australia,NSW SOP,2005,For storage only,28,Coramba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16511,23485,Australia,NSW SOP,2007,For storage only,28,Coramba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16512,23485,Australia,NSW SOP,2010,For storage only,28,Coramba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16513,23485,Australia,NSW SOP,2013,For storage only,28,Coramba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16514,23485,Australia,NSW SOP,2004,For storage only,28,Coramba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16515,354517,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16516,354517,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16517,24629,Australia,Victorian SOP,2010,For storage only,28,Corner Inlet Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16518,24629,Australia,Victorian SOP,2005,For storage only,28,Corner Inlet Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16519,24629,Australia,Victorian SOP,2013,For storage only,28,Corner Inlet Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16523,354520,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16524,354520,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16525,354520,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16526,555576669,Australia,NSW SOP,2013,For storage only,28,Corramy,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16527,354520,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16528,310041,Australia,NSW SOP,2005,For storage only,28,Corrie Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16529,310041,Australia,NSW SOP,2007,For storage only,28,Corrie Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16530,310041,Australia,NSW SOP,2010,For storage only,28,Corrie Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16531,310041,Australia,NSW SOP,2013,For storage only,28,Corrie Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16532,310041,Australia,NSW SOP,2004,For storage only,28,Corrie Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16533,354523,Australia,NSW SOP,2005,For storage only,28,Corymbia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16534,354523,Australia,NSW SOP,2007,For storage only,28,Corymbia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16535,354523,Australia,NSW SOP,2010,For storage only,28,Corymbia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16536,354523,Australia,NSW SOP,2013,For storage only,28,Corymbia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16537,354523,Australia,NSW SOP,2004,For storage only,28,Corymbia,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16538,310043,Australia,NSW SOP,2005,For storage only,28,Cottan-Bimbang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16539,310043,Australia,NSW SOP,2007,For storage only,28,Cottan-Bimbang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16540,310043,Australia,NSW SOP,2010,For storage only,28,Cottan-Bimbang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16542,310043,Australia,NSW SOP,2013,For storage only,28,Cottan-Bimbang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16543,354527,Australia,NSW SOP,2005,For storage only,28,Cottan-Bimbang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16544,354527,Australia,NSW SOP,2007,For storage only,28,Cottan-Bimbang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16545,310043,Australia,NSW SOP,2004,For storage only,28,Cottan-Bimbang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16546,310188,Australia,NSW SOP,2004,For storage only,28,Tapin Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16548,310044,Australia,NSW SOP,2005,For storage only,28,Couchy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16549,310044,Australia,NSW SOP,2007,For storage only,28,Couchy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16550,310044,Australia,NSW SOP,2010,For storage only,28,Couchy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16551,310044,Australia,NSW SOP,2013,For storage only,28,Couchy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16552,310044,Australia,NSW SOP,2004,For storage only,28,Couchy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16553,310046,Australia,NSW SOP,2005,For storage only,28,Courabyra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16554,310046,Australia,NSW SOP,2007,For storage only,28,Courabyra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16555,310046,Australia,NSW SOP,2010,For storage only,28,Courabyra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16556,310046,Australia,NSW SOP,2013,For storage only,28,Courabyra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16557,310046,Australia,NSW SOP,2004,For storage only,28,Courabyra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16558,555543328,Australia,NSW SOP,2010,For storage only,28,Couradda,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16559,555543328,Australia,NSW SOP,2013,For storage only,28,Couradda,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16560,310047,Australia,NSW SOP,2005,For storage only,28,Coxcomb,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16561,310047,Australia,NSW SOP,2007,For storage only,28,Coxcomb,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16562,310047,Australia,NSW SOP,2010,For storage only,28,Coxcomb,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16563,310047,Australia,NSW SOP,2013,For storage only,28,Coxcomb,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16564,310047,Australia,NSW SOP,2004,For storage only,28,Coxcomb,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16565,309349,Australia,Birdlife IBA,2008,For storage only,28,Cradle Mountain-Lake St Clair,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16566,309349,Australia,Tasmanian WHA,2004,For storage only,28,Cradle Mountain-Lake St Clair,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16567,311499,Australia,Victorian SOP,2010,For storage only,28,Craigieburn Grassland N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16568,311499,Australia,Victorian SOP,2005,For storage only,28,Craigieburn Grassland N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16569,311499,Australia,Victorian SOP,2013,For storage only,28,Craigieburn Grassland N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16570,126199,Australia,Qld Rapid Assessment,2010,For storage only,28,Crater Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16571,126199,Australia,Qld Rapid Assessment,2012,For storage only,28,Crater Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16572,555543330,Australia,NSW SOP,2010,For storage only,28,Crawney Pass,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16573,555543330,Australia,NSW SOP,2013,For storage only,28,Crawney Pass,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16574,900002,Australia,GOBI Survey,2006,For storage only,28,Croajingolong National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16575,2029,Australia,Victorian SOP,2005,For storage only,28,Croajingolong National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16576,2029,Australia,Victorian SOP,2010,For storage only,28,Croajingolong National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16577,2029,Australia,Victorian SOP,2013,For storage only,28,Croajingolong National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16578,555576672,Australia,NSW SOP,2013,For storage only,28,Crooked Creek,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16579,378,Australia,NSW SOP,2005,For storage only,28,Crowdy Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16580,378,Australia,NSW SOP,2007,For storage only,28,Crowdy Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16581,378,Australia,NSW SOP,2010,For storage only,28,Crowdy Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16582,378,Australia,NSW SOP,2013,For storage only,28,Crowdy Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16583,378,Australia,NSW SOP,2004,For storage only,28,Crowdy Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16584,23883,Australia,Qld Rapid Assessment,2010,For storage only,28,Crows Nest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16585,23883,Australia,Qld Rapid Assessment,2012,For storage only,28,Crows Nest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16586,102544,Australia,NSW SOP,2005,For storage only,28,Cudgen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16587,102544,Australia,NSW SOP,2007,For storage only,28,Cudgen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16588,102544,Australia,NSW SOP,2010,For storage only,28,Cudgen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16589,102544,Australia,NSW SOP,2013,For storage only,28,Cudgen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16590,102544,Australia,NSW SOP,2004,For storage only,28,Cudgen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16591,555543332,Australia,NSW SOP,2010,For storage only,28,Cudgera Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16592,555543332,Australia,NSW SOP,2013,For storage only,28,Cudgera Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16593,309902,Australia,Qld Rapid Assessment,2010,For storage only,28,Cudmore (Limited Depth),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16594,309902,Australia,Qld Rapid Assessment,2012,For storage only,28,Cudmore (Limited Depth),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16595,126205,Australia,NSW SOP,2005,For storage only,28,Culgoa Floodplain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16596,126205,Australia,NSW SOP,2007,For storage only,28,Culgoa Floodplain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16597,126205,Australia,NSW SOP,2010,For storage only,28,Culgoa Floodplain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16598,126205,Australia,NSW SOP,2013,For storage only,28,Culgoa Floodplain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16599,126205,Australia,NSW SOP,2004,For storage only,28,Culgoa Floodplain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16600,126205,Australia,Qld Rapid Assessment,2010,For storage only,28,Culgoa Floodplain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16601,126205,Australia,Qld Rapid Assessment,2012,For storage only,28,Culgoa Floodplain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16602,310050,Australia,NSW SOP,2005,For storage only,28,Cullendulla Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16603,310050,Australia,NSW SOP,2007,For storage only,28,Cullendulla Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16604,310050,Australia,NSW SOP,2010,For storage only,28,Cullendulla Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16605,310050,Australia,NSW SOP,2013,For storage only,28,Cullendulla Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16606,310050,Australia,NSW SOP,2004,For storage only,28,Cullendulla Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16607,354552,Australia,Victorian SOP,2010,For storage only,28,Cullens Lake W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16608,354552,Australia,Victorian SOP,2005,For storage only,28,Cullens Lake W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16609,354552,Australia,Victorian SOP,2013,For storage only,28,Cullens Lake W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16610,310051,Australia,NSW SOP,2005,For storage only,28,Cumbebin Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16611,310051,Australia,NSW SOP,2007,For storage only,28,Cumbebin Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16612,310051,Australia,NSW SOP,2010,For storage only,28,Cumbebin Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16613,310051,Australia,NSW SOP,2013,For storage only,28,Cumbebin Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16614,310051,Australia,NSW SOP,2004,For storage only,28,Cumbebin Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16615,310052,Australia,NSW SOP,2005,For storage only,28,Cunnawarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16616,310052,Australia,NSW SOP,2007,For storage only,28,Cunnawarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16617,310052,Australia,NSW SOP,2010,For storage only,28,Cunnawarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16618,310052,Australia,NSW SOP,2013,For storage only,28,Cunnawarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16619,126140,Australia,NSW SOP,2004,For storage only,28,Cascade,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16620,354554,Australia,NSW SOP,2005,For storage only,28,Curracabundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16621,354554,Australia,NSW SOP,2007,For storage only,28,Curracabundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16622,354554,Australia,NSW SOP,2010,For storage only,28,Curracabundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16623,555543333,Australia,NSW SOP,2007,For storage only,28,Curracabundi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16624,555543333,Australia,NSW SOP,2010,For storage only,28,Curracabundi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16625,555543333,Australia,NSW SOP,2013,For storage only,28,Curracabundi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16626,354554,Australia,NSW SOP,2004,For storage only,28,Curracabundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16627,354554,Australia,NSW SOP,2013,For storage only,28,Curracabundi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16628,62990,Australia,Qld Rapid Assessment,2010,For storage only,28,Currawinya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16629,62990,Australia,Qld Rapid Assessment,2012,For storage only,28,Currawinya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16630,354555,Australia,NSW SOP,2005,For storage only,28,Currys Gap,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16631,354555,Australia,NSW SOP,2007,For storage only,28,Currys Gap,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16632,354555,Australia,NSW SOP,2010,For storage only,28,Currys Gap,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16633,354555,Australia,NSW SOP,2013,For storage only,28,Currys Gap,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16634,354555,Australia,NSW SOP,2004,For storage only,28,Currys Gap,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16635,354557,Australia,Qld Rapid Assessment,2010,For storage only,28,Curtain Fig,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16636,354557,Australia,Qld Rapid Assessment,2012,For storage only,28,Curtain Fig,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16637,311522,Australia,Birdlife IBA,2008,For storage only,28,Curtis Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16638,64387,Australia,Qld Rapid Assessment,2010,For storage only,28,Curtis Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16639,64387,Australia,Qld Rapid Assessment,2012,For storage only,28,Curtis Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16640,310053,Australia,NSW SOP,2005,For storage only,28,Cuumbeun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16641,310053,Australia,NSW SOP,2007,For storage only,28,Cuumbeun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16642,310053,Australia,NSW SOP,2010,For storage only,28,Cuumbeun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16643,310053,Australia,NSW SOP,2013,For storage only,28,Cuumbeun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16644,310053,Australia,NSW SOP,2004,For storage only,28,Cuumbeun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16645,313895,Australia,Qld Rapid Assessment,2010,For storage only,28,D'Aguilar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16646,313895,Australia,Qld Rapid Assessment,2012,For storage only,28,D'Aguilar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16647,555548734,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16648,555548734,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16649,405,Australia,Qld Rapid Assessment,2010,For storage only,28,Daintree,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16650,405,Australia,Qld Rapid Assessment,2012,For storage only,28,Daintree,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16651,62993,Australia,Qld Rapid Assessment,2010,For storage only,28,Dalrymple,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16652,62993,Australia,Qld Rapid Assessment,2012,For storage only,28,Dalrymple,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16653,310054,Australia,NSW SOP,2005,For storage only,28,Dalrymple-Hay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16654,310054,Australia,NSW SOP,2007,For storage only,28,Dalrymple-Hay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16655,310054,Australia,NSW SOP,2010,For storage only,28,Dalrymple-Hay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16656,310054,Australia,NSW SOP,2013,For storage only,28,Dalrymple-Hay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16657,310054,Australia,NSW SOP,2004,For storage only,28,Dalrymple-Hay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16658,311539,Australia,Victorian SOP,2010,For storage only,28,Dalyenong N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16659,311539,Australia,Victorian SOP,2005,For storage only,28,Dalyenong N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16660,311539,Australia,Victorian SOP,2013,For storage only,28,Dalyenong N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16661,354567,Australia,Qld Rapid Assessment,2010,For storage only,28,Dan Dan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16662,354567,Australia,Qld Rapid Assessment,2012,For storage only,28,Dan Dan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16663,10586,Australia,NSW SOP,2005,For storage only,28,Dananbilla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16664,10586,Australia,NSW SOP,2007,For storage only,28,Dananbilla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16665,10586,Australia,NSW SOP,2010,For storage only,28,Dananbilla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16666,10586,Australia,NSW SOP,2013,For storage only,28,Dananbilla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16667,10586,Australia,NSW SOP,2004,For storage only,28,Dananbilla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16668,354570,Australia,Qld Rapid Assessment,2010,For storage only,28,Danbulla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16670,354570,Australia,Qld Rapid Assessment,2012,For storage only,28,Danbulla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16671,24633,Australia,Victorian SOP,2005,For storage only,28,Dandenong Ranges National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16672,24633,Australia,Victorian SOP,2010,For storage only,28,Dandenong Ranges National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16673,24633,Australia,Victorian SOP,2013,For storage only,28,Dandenong Ranges National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16674,555548640,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16675,310055,Australia,NSW SOP,2005,For storage only,28,Dangelong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16676,310055,Australia,NSW SOP,2007,For storage only,28,Dangelong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16677,310055,Australia,NSW SOP,2010,For storage only,28,Dangelong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16678,310055,Australia,NSW SOP,2013,For storage only,28,Dangelong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16679,310055,Australia,NSW SOP,2004,For storage only,28,Dangelong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16680,23489,Australia,NSW SOP,2005,For storage only,28,Dapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16681,23489,Australia,NSW SOP,2007,For storage only,28,Dapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16682,23489,Australia,NSW SOP,2010,For storage only,28,Dapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16683,23489,Australia,NSW SOP,2013,For storage only,28,Dapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16684,23489,Australia,NSW SOP,2004,For storage only,28,Dapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16685,310056,Australia,NSW SOP,2005,For storage only,28,Darawank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16686,310056,Australia,NSW SOP,2007,For storage only,28,Darawank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16687,310056,Australia,NSW SOP,2010,For storage only,28,Darawank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16688,310056,Australia,NSW SOP,2013,For storage only,28,Darawank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16689,310056,Australia,NSW SOP,2004,For storage only,28,Darawank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16690,26013,Australia,Qld Rapid Assessment,2010,For storage only,28,Davies Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16691,26013,Australia,Qld Rapid Assessment,2012,For storage only,28,Davies Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16692,310057,Australia,NSW SOP,2005,For storage only,28,Davis Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16693,310057,Australia,NSW SOP,2007,For storage only,28,Davis Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16694,310057,Australia,NSW SOP,2010,For storage only,28,Davis Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16695,310057,Australia,NSW SOP,2013,For storage only,28,Davis Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16696,310057,Australia,NSW SOP,2004,For storage only,28,Davis Scrub,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16697,354586,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16698,354586,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16699,354587,Australia,Qld Rapid Assessment,2010,For storage only,28,Dawes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16700,354587,Australia,Qld Rapid Assessment,2012,For storage only,28,Dawes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16701,354593,Australia,Victorian SOP,2010,For storage only,28,Deep Lead Nature Conservation Reserve (No. 2),Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16702,354593,Australia,Victorian SOP,2005,For storage only,28,Deep Lead Nature Conservation Reserve (No. 2),Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16703,354593,Australia,Victorian SOP,2013,For storage only,28,Deep Lead Nature Conservation Reserve (No. 2),Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16704,23892,Australia,Qld Rapid Assessment,2010,For storage only,28,Deepwater,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16705,23892,Australia,Qld Rapid Assessment,2012,For storage only,28,Deepwater,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16706,354594,Australia,Qld Rapid Assessment,2010,For storage only,28,Deer Reserve,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16707,354594,Australia,Qld Rapid Assessment,2012,For storage only,28,Deer Reserve,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16708,23492,Australia,NSW SOP,2005,For storage only,28,Deer Vale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16709,23492,Australia,NSW SOP,2007,For storage only,28,Deer Vale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16710,23492,Australia,NSW SOP,2010,For storage only,28,Deer Vale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16711,23492,Australia,NSW SOP,2013,For storage only,28,Deer Vale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16712,23492,Australia,NSW SOP,2004,For storage only,28,Deer Vale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16713,102546,Australia,NSW SOP,2005,For storage only,28,Demon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16714,102546,Australia,NSW SOP,2007,For storage only,28,Demon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16715,102546,Australia,NSW SOP,2010,For storage only,28,Demon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16716,102546,Australia,NSW SOP,2004,For storage only,28,Demon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16717,102546,Australia,NSW SOP,2013,For storage only,28,Demon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16718,62994,Australia,Qld Rapid Assessment,2010,For storage only,28,Denham Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16719,62994,Australia,Qld Rapid Assessment,2012,For storage only,28,Denham Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16720,64354,Australia,Victorian SOP,2005,For storage only,28,Dergholm,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16721,64354,Australia,Victorian SOP,2010,For storage only,28,Dergholm,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16722,64354,Australia,Victorian SOP,2013,For storage only,28,Dergholm,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16723,555548742,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16724,311587,Australia,Victorian SOP,2010,For storage only,28,Derrimut Grassland N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16725,311587,Australia,Victorian SOP,2005,For storage only,28,Derrimut Grassland N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16726,311587,Australia,Victorian SOP,2013,For storage only,28,Derrimut Grassland N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16727,2606,Australia,NSW SOP,2005,For storage only,28,Deua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16728,2606,Australia,NSW SOP,2007,For storage only,28,Deua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16729,2606,Australia,NSW SOP,2010,For storage only,28,Deua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16730,2606,Australia,NSW SOP,2013,For storage only,28,Deua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16731,2606,Australia,NSW SOP,2004,For storage only,28,Deua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16732,310058,Australia,NSW SOP,2005,For storage only,28,Dharawal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16733,310058,Australia,NSW SOP,2007,For storage only,28,Dharawal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16734,310058,Australia,NSW SOP,2010,For storage only,28,Dharawal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16736,310058,Australia,NSW SOP,2013,For storage only,28,Dharawal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16738,354604,Australia,NSW SOP,2005,For storage only,28,Dharawal,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16739,354604,Australia,NSW SOP,2007,For storage only,28,Dharawal,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16740,555576680,Australia,NSW SOP,2013,For storage only,28,Dharawal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16741,310058,Australia,NSW SOP,2004,For storage only,28,Dharawal,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16742,354604,Australia,NSW SOP,2004,For storage only,28,Dharawal,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16743,371,Australia,NSW SOP,2005,For storage only,28,Dharug,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16744,371,Australia,NSW SOP,2007,For storage only,28,Dharug,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16745,371,Australia,NSW SOP,2010,For storage only,28,Dharug,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16746,371,Australia,NSW SOP,2013,For storage only,28,Dharug,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16747,371,Australia,NSW SOP,2004,For storage only,28,Dharug,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16748,126240,Australia,Qld Rapid Assessment,2010,For storage only,28,Diamantina,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16749,126240,Australia,Qld Rapid Assessment,2012,For storage only,28,Diamantina,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16750,126240,Australia,Birdlife IBA,2008,For storage only,28,Diamantina,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16751,354611,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16752,354611,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16753,354612,Australia,Qld Rapid Assessment,2010,For storage only,28,Dinden,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16754,354612,Australia,Qld Rapid Assessment,2012,For storage only,28,Dinden,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16755,420,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16756,420,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16757,2697,Australia,Victorian SOP,2010,For storage only,28,Discovery Bay Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16758,2697,Australia,Victorian SOP,2005,For storage only,28,Discovery Bay Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16759,2697,Australia,Victorian SOP,2013,For storage only,28,Discovery Bay Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16760,305460,Australia;Jamaica,Victorian SOP,2005,For storage only,28,Discovery Bay,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16761,305460,Australia;Jamaica,Victorian SOP,2010,For storage only,28,Discovery Bay,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16762,305460,Jamaica;Australia,Victorian SOP,2013,For storage only,28,Discovery Bay,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16763,2697,Australia,Birdlife IBA,2008,For storage only,28,Discovery Bay Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16764,357295,Australia,Qld Rapid Assessment,2010,For storage only,28,Djiru,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16765,357295,Australia,Qld Rapid Assessment,2012,For storage only,28,Djiru,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16766,555543351,Australia,NSW SOP,2010,For storage only,28,Doctors Nose Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16767,555543351,Australia,NSW SOP,2013,For storage only,28,Doctors Nose Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16768,354615,Australia,Victorian SOP,2010,For storage only,28,Doctors Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16769,354615,Australia,Victorian SOP,2005,For storage only,28,Doctors Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16770,354615,Australia,Victorian SOP,2013,For storage only,28,Doctors Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16771,126252,Australia,NSW SOP,2005,For storage only,28,Donnybrook Boyup Brook Road,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16772,126252,Australia,NSW SOP,2007,For storage only,28,Donnybrook Boyup Brook Road,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16773,126252,Australia,NSW SOP,2010,For storage only,28,Donnybrook Boyup Brook Road,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16774,126252,Australia,NSW SOP,2013,For storage only,28,Donnybrook Boyup Brook Road,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16775,126252,Australia,NSW SOP,2004,For storage only,28,Donnybrook Boyup Brook Road,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16776,555576683,Australia,NSW SOP,2013,For storage only,28,Doodle Comer Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16777,310059,Australia,NSW SOP,2005,For storage only,28,Dooragan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16778,310059,Australia,NSW SOP,2007,For storage only,28,Dooragan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16779,310059,Australia,NSW SOP,2010,For storage only,28,Dooragan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16780,310059,Australia,NSW SOP,2013,For storage only,28,Dooragan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16781,309574,Australia,NSW SOP,2004,For storage only,28,Mount Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16782,379,Australia,NSW SOP,2005,For storage only,28,Dorrigo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16783,379,Australia,NSW SOP,2007,For storage only,28,Dorrigo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16784,379,Australia,NSW SOP,2010,For storage only,28,Dorrigo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16785,379,Australia,NSW SOP,2013,For storage only,28,Dorrigo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16786,379,Australia,NSW SOP,2004,For storage only,28,Dorrigo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16787,309403,Australia,Birdlife IBA,2008,For storage only,28,Douglas-Apsley,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16788,314573,Australia,Victorian SOP,2010,For storage only,28,Dowd Morass W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16789,314573,Australia,Victorian SOP,2005,For storage only,28,Dowd Morass W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16790,314573,Australia,Victorian SOP,2013,For storage only,28,Dowd Morass W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16791,314574,Australia,Victorian SOP,2010,For storage only,28,Dowdle Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16792,314574,Australia,Victorian SOP,2005,For storage only,28,Dowdle Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16793,555543354,Australia,NSW SOP,2010,For storage only,28,Dowe,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16794,555543354,Australia,NSW SOP,2013,For storage only,28,Dowe,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16795,310060,Australia,NSW SOP,2005,For storage only,28,Downfall,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16796,310060,Australia,NSW SOP,2007,For storage only,28,Downfall,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16797,310060,Australia,NSW SOP,2010,For storage only,28,Downfall,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16798,310060,Australia,NSW SOP,2013,For storage only,28,Downfall,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16799,310060,Australia,NSW SOP,2004,For storage only,28,Downfall,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16800,63940,Australia,Birdlife IBA,2008,For storage only,28,Dragon Rocks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16801,354632,Australia,Victorian SOP,2013,For storage only,28,Dreeite N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16802,555543355,Australia,NSW SOP,2010,For storage only,28,Drillwarrina,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16803,555543355,Australia,NSW SOP,2013,For storage only,28,Drillwarrina,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16804,63001,Australia,Qld Rapid Assessment,2010,For storage only,28,Dryander,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16805,63001,Australia,Qld Rapid Assessment,2012,For storage only,28,Dryander,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16806,555543359,Australia,NSW SOP,2007,For storage only,28,Dthinna Dthinnawan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16807,555543359,Australia,NSW SOP,2010,For storage only,28,Dthinna Dthinnawan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16808,555543359,Australia,NSW SOP,2013,For storage only,28,Dthinna Dthinnawan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16809,555543358,Australia,NSW SOP,2010,For storage only,28,Dthinna Dthinnawan,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16810,555543358,Australia,NSW SOP,2013,For storage only,28,Dthinna Dthinnawan,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16811,23899,Australia,Qld Rapid Assessment,2010,For storage only,28,Dularcha,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16812,23899,Australia,Qld Rapid Assessment,2012,For storage only,28,Dularcha,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16813,126263,Australia,Victorian SOP,2005,For storage only,28,Dundas,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16814,310061,Australia,NSW SOP,2005,For storage only,28,Dunggir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16815,310061,Australia,NSW SOP,2007,For storage only,28,Dunggir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16816,310061,Australia,NSW SOP,2010,For storage only,28,Dunggir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16817,310061,Australia,NSW SOP,2013,For storage only,28,Dunggir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16818,313673,Australia,NSW SOP,2004,For storage only,28,Chaelundi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16819,354651,Australia,NSW SOP,2007,For storage only,28,Dural,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16820,354651,Australia,NSW SOP,2010,For storage only,28,Dural,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16821,354651,Australia,NSW SOP,2013,For storage only,28,Dural,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16822,555543393,Australia,NSW SOP,2010,For storage only,28,Durands Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16823,555543393,Australia,NSW SOP,2013,For storage only,28,Durands Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16824,555543395,Australia,NSW SOP,2007,For storage only,28,Duroby,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16825,555543395,Australia,NSW SOP,2010,For storage only,28,Duroby,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16826,555543395,Australia,NSW SOP,2013,For storage only,28,Duroby,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16827,555543396,Australia,NSW SOP,2010,For storage only,28,Durridgere,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16828,555543396,Australia,NSW SOP,2013,For storage only,28,Durridgere,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16829,310062,Australia,NSW SOP,2005,For storage only,28,Duval,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16830,310062,Australia,NSW SOP,2007,For storage only,28,Duval,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16831,310062,Australia,NSW SOP,2010,For storage only,28,Duval,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16832,310062,Australia,NSW SOP,2013,For storage only,28,Duval,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16833,310062,Australia,NSW SOP,2004,For storage only,28,Duval,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16834,305309,Australia,Victorian SOP,2010,For storage only,28,Eagle Rock,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -16835,305309,Australia,Victorian SOP,2005,For storage only,28,Eagle Rock,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -16836,305309,Australia,Victorian SOP,2013,For storage only,28,Eagle Rock,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -16837,23499,Australia,NSW SOP,2005,For storage only,28,Eagles Claw,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16838,23499,Australia,NSW SOP,2007,For storage only,28,Eagles Claw,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16839,23499,Australia,NSW SOP,2010,For storage only,28,Eagles Claw,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16840,23499,Australia,NSW SOP,2013,For storage only,28,Eagles Claw,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16841,23499,Australia,NSW SOP,2004,For storage only,28,Eagles Claw,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16842,555543400,Australia,Victorian SOP,2013,For storage only,28,Ecklin South Swamp N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16843,314878,Australia,Birdlife IBA,2008,For storage only,28,Eclipse Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16844,1152,Australia,NSW SOP,2005,For storage only,28,Egan Peaks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16845,1152,Australia,NSW SOP,2007,For storage only,28,Egan Peaks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16846,1152,Australia,NSW SOP,2010,For storage only,28,Egan Peaks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16847,1152,Australia,NSW SOP,2013,For storage only,28,Egan Peaks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16848,1152,Australia,NSW SOP,2004,For storage only,28,Egan Peaks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16849,309734,Australia,Birdlife IBA,2008,For storage only,28,Wright and Egg Islands,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16850,23903,Australia,Qld Rapid Assessment,2010,For storage only,28,Ella Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16851,23903,Australia,Qld Rapid Assessment,2012,For storage only,28,Ella Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16852,310063,Australia,NSW SOP,2005,For storage only,28,Ellerslie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16853,310063,Australia,NSW SOP,2007,For storage only,28,Ellerslie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16854,310063,Australia,NSW SOP,2010,For storage only,28,Ellerslie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16855,310063,Australia,NSW SOP,2013,For storage only,28,Ellerslie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16856,310063,Australia,NSW SOP,2004,For storage only,28,Ellerslie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16857,313834,Australia,NTMEE,2013,For storage only,28,Elsey,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16858,447,Australia,Qld Rapid Assessment,2010,For storage only,28,Endeavour River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16859,447,Australia,Qld Rapid Assessment,2012,For storage only,28,Endeavour River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16860,311659,Australia,Victorian SOP,2005,For storage only,28,Enfield,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16861,311659,Australia,Victorian SOP,2010,For storage only,28,Enfield,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16862,311659,Australia,Victorian SOP,2013,For storage only,28,Enfield,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16863,445,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16864,445,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16865,309907,Australia,Qld Rapid Assessment,2010,For storage only,28,Erringibba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16866,309907,Australia,Qld Rapid Assessment,2012,For storage only,28,Erringibba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16867,24645,Australia,Victorian SOP,2005,For storage only,28,Errinundra National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16868,24645,Australia,Victorian SOP,2010,For storage only,28,Errinundra National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16869,24645,Australia,Victorian SOP,2013,For storage only,28,Errinundra National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16870,555548820,Australia,Qld Rapid Assessment,2012,For storage only,28,Errk Oykangand (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -16871,555548820,Australia,Qld Rapid Assessment,2010,For storage only,28,Errk Oykangand (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -16872,354687,Australia,Qld Rapid Assessment,2010,For storage only,28,Esk,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16873,354687,Australia,Qld Rapid Assessment,2012,For storage only,28,Esk,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16874,9477,Australia,Qld Rapid Assessment,2010,For storage only,28,Eubenangee Swamp,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16875,9477,Australia,Qld Rapid Assessment,2012,For storage only,28,Eubenangee Swamp,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16876,313896,Australia,Qld Rapid Assessment,2010,For storage only,28,Eudlo Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16877,313896,Australia,Qld Rapid Assessment,2012,For storage only,28,Eudlo Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16878,23501,Australia,NSW SOP,2005,For storage only,28,Eugowra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16879,23501,Australia,NSW SOP,2007,For storage only,28,Eugowra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16880,23501,Australia,NSW SOP,2013,For storage only,28,Eugowra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16881,23501,Australia,NSW SOP,2010,For storage only,28,Eugowra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16882,23501,Australia,NSW SOP,2004,For storage only,28,Eugowra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16883,407,Australia,Qld Rapid Assessment,2010,For storage only,28,Eungella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16884,407,Australia,Qld Rapid Assessment,2012,For storage only,28,Eungella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16885,432,Australia,Qld Rapid Assessment,2010,For storage only,28,Eurimbula,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16886,432,Australia,Qld Rapid Assessment,2012,For storage only,28,Eurimbula,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16887,102547,Australia,NSW SOP,2005,For storage only,28,Eurobodalla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16888,102547,Australia,NSW SOP,2007,For storage only,28,Eurobodalla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16889,102547,Australia,NSW SOP,2010,For storage only,28,Eurobodalla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16890,102547,Australia,NSW SOP,2013,For storage only,28,Eurobodalla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16891,102547,Australia,NSW SOP,2004,For storage only,28,Eurobodalla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16892,555543408,Australia,NSW SOP,2010,For storage only,28,Eusdale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16893,555543408,Australia,NSW SOP,2013,For storage only,28,Eusdale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16894,555576691,Australia,NSW SOP,2013,For storage only,28,Euston,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16895,23502,Australia,NSW SOP,2005,For storage only,28,Evans Crown,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16896,23502,Australia,NSW SOP,2007,For storage only,28,Evans Crown,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16897,23502,Australia,NSW SOP,2010,For storage only,28,Evans Crown,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16898,23502,Australia,NSW SOP,2013,For storage only,28,Evans Crown,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16899,23502,Australia,NSW SOP,2004,For storage only,28,Evans Crown,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16900,555543409,Australia,NSW SOP,2007,For storage only,28,Everlasting Swamp,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16901,555543409,Australia,NSW SOP,2010,For storage only,28,Everlasting Swamp,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16902,555543409,Australia,NSW SOP,2013,For storage only,28,Everlasting Swamp,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -16903,314576,Australia,Victorian SOP,2005,For storage only,28,Ewing Morass W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16904,314576,Australia,Victorian SOP,2010,For storage only,28,Ewing Morass W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16905,126281,Australia,Qld Rapid Assessment,2010,For storage only,28,Expedition (Limited Depth),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16906,126281,Australia,Qld Rapid Assessment,2012,For storage only,28,Expedition (Limited Depth),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16907,23909,Australia,Qld Rapid Assessment,2010,For storage only,28,Fairlies Knob,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16908,23909,Australia,Qld Rapid Assessment,2012,For storage only,28,Fairlies Knob,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16909,126284,Australia,Qld Rapid Assessment,2010,For storage only,28,Family Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16910,126284,Australia,Qld Rapid Assessment,2012,For storage only,28,Family Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16911,23910,Australia,Qld Rapid Assessment,2010,For storage only,28,Ferntree Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16912,23910,Australia,Qld Rapid Assessment,2012,For storage only,28,Ferntree Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16913,310064,Australia,NSW SOP,2005,For storage only,28,Fifes Knob,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16914,310064,Australia,NSW SOP,2007,For storage only,28,Fifes Knob,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16915,310064,Australia,NSW SOP,2010,For storage only,28,Fifes Knob,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16916,310064,Australia,NSW SOP,2013,For storage only,28,Fifes Knob,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16917,310064,Australia,NSW SOP,2004,For storage only,28,Fifes Knob,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16918,354710,Australia,Qld Rapid Assessment,2010,For storage only,28,Finucane Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16919,354710,Australia,Qld Rapid Assessment,2012,For storage only,28,Finucane Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16920,310065,Australia,NSW SOP,2005,For storage only,28,Fishermans Bend,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16921,310065,Australia,NSW SOP,2007,For storage only,28,Fishermans Bend,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16922,310065,Australia,NSW SOP,2010,For storage only,28,Fishermans Bend,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16923,310065,Australia,NSW SOP,2013,For storage only,28,Fishermans Bend,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16924,310065,Australia,NSW SOP,2004,For storage only,28,Fishermans Bend,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16925,558,Australia,Birdlife IBA,2008,For storage only,28,Fitzgerald River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16926,63014,Australia,Qld Rapid Assessment,2010,For storage only,28,Fitzroy Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16927,63014,Australia,Qld Rapid Assessment,2012,For storage only,28,Fitzroy Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16928,23506,Australia,NSW SOP,2005,For storage only,28,Five Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16929,23506,Australia,NSW SOP,2007,For storage only,28,Five Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16930,23506,Australia,NSW SOP,2010,For storage only,28,Five Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16931,23506,Australia,NSW SOP,2013,For storage only,28,Five Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16932,23506,Australia,NSW SOP,2004,For storage only,28,Five Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16933,900737,Australia,Birdlife IBA,2008,For storage only,28,Fivebough and Tuckerbil Swamps,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -16934,555543387,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16935,555543387,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16936,310066,Australia,NSW SOP,2005,For storage only,28,Flaggy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16937,310066,Australia,NSW SOP,2007,For storage only,28,Flaggy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16938,310066,Australia,NSW SOP,2010,For storage only,28,Flaggy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16939,310066,Australia,NSW SOP,2013,For storage only,28,Flaggy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16940,310066,Australia,NSW SOP,2004,For storage only,28,Flaggy Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16941,23507,Australia,NSW SOP,2005,For storage only,28,Flagstaff Memorial,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16942,23507,Australia,NSW SOP,2007,For storage only,28,Flagstaff Memorial,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16943,23507,Australia,NSW SOP,2010,For storage only,28,Flagstaff Memorial,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16944,23507,Australia,NSW SOP,2013,For storage only,28,Flagstaff Memorial,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16945,23507,Australia,NSW SOP,2004,For storage only,28,Flagstaff Memorial,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16946,555543388,Australia,NSW SOP,2010,For storage only,28,Flat Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16947,555543388,Australia,NSW SOP,2013,For storage only,28,Flat Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16948,2632,Australia,Qld Rapid Assessment,2010,For storage only,28,Flinders Group (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -16949,2632,Australia,Qld Rapid Assessment,2012,For storage only,28,Flinders Group (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -16950,475,Australia,Birdlife IBA,2008,For storage only,28,Ikara-Flinders Ranges,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16951,313804,Australia,NTMEE,2013,For storage only,28,Fogg Dam,Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16952,63020,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16953,126295,Australia,Qld Rapid Assessment,2010,For storage only,28,Forest Den,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16954,126295,Australia,Qld Rapid Assessment,2012,For storage only,28,Forest Den,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16955,63021,Australia,Qld Rapid Assessment,2010,For storage only,28,Fort Lytton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16956,63021,Australia,Qld Rapid Assessment,2012,For storage only,28,Fort Lytton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16957,310067,Australia,NSW SOP,2005,For storage only,28,Fortis Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16958,310067,Australia,NSW SOP,2007,For storage only,28,Fortis Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16959,310067,Australia,NSW SOP,2010,For storage only,28,Fortis Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16960,310067,Australia,NSW SOP,2013,For storage only,28,Fortis Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16961,310061,Australia,NSW SOP,2004,For storage only,28,Dunggir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16962,434,Australia,Qld Rapid Assessment,2010,For storage only,28,Forty Mile Scrub,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16963,434,Australia,Qld Rapid Assessment,2012,For storage only,28,Forty Mile Scrub,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16964,126304,Australia,Qld Rapid Assessment,2010,For storage only,28,Frankland Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16965,126304,Australia,Qld Rapid Assessment,2012,For storage only,28,Frankland Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16966,309430,Australia,Tasmanian WHA,2004,For storage only,28,Franklin-Gordon Wild Rivers,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16967,67730,Australia,WHA Outlook Report,2014,For storage only,28,Fraser Island,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -16968,23508,Australia,NSW SOP,2005,For storage only,28,Freemantle,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16969,23508,Australia,NSW SOP,2007,For storage only,28,Freemantle,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16970,23508,Australia,NSW SOP,2010,For storage only,28,Freemantle,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16971,23508,Australia,NSW SOP,2013,For storage only,28,Freemantle,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16972,23508,Australia,NSW SOP,2004,For storage only,28,Freemantle,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16973,2710,Australia,Victorian SOP,2010,For storage only,28,French Island National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16974,305458,Australia,Victorian SOP,2010,For storage only,28,French Island,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16975,2710,Australia,Victorian SOP,2005,For storage only,28,French Island National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16976,305458,Australia,Victorian SOP,2005,For storage only,28,French Island,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16977,2710,Australia,Victorian SOP,2013,For storage only,28,French Island National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16978,305458,Australia,Victorian SOP,2013,For storage only,28,French Island,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16979,23914,Australia,Qld Rapid Assessment,2010,For storage only,28,Freshwater,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16980,23914,Australia,Qld Rapid Assessment,2012,For storage only,28,Freshwater,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16981,354742,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16982,354742,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16983,354742,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16984,354742,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16985,354742,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -16986,555548673,Australia,NSW SOP,2010,For storage only,28,Gaagal Wanggaan (South Beach),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16987,555548673,Australia,NSW SOP,2013,For storage only,28,Gaagal Wanggaan (South Beach),National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16988,555548797,Australia,Qld Rapid Assessment,2012,For storage only,28,Gadgarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16989,310068,Australia,NSW SOP,2005,For storage only,28,Gads Sugarloaf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16990,310068,Australia,NSW SOP,2007,For storage only,28,Gads Sugarloaf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16991,310068,Australia,NSW SOP,2010,For storage only,28,Gads Sugarloaf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16992,310068,Australia,NSW SOP,2004,For storage only,28,Gads Sugarloaf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16993,310068,Australia,NSW SOP,2013,For storage only,28,Gads Sugarloaf,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16994,555548717,Australia,Victorian SOP,2010,For storage only,28,Gadsen Bend Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16995,555548717,Australia,Victorian SOP,2013,For storage only,28,Gadsen Bend Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -16996,102548,Australia,NSW SOP,2005,For storage only,28,Gamilaroi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16997,102548,Australia,NSW SOP,2007,For storage only,28,Gamilaroi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16998,102548,Australia,NSW SOP,2010,For storage only,28,Gamilaroi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -16999,102548,Australia,NSW SOP,2013,For storage only,28,Gamilaroi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17000,102548,Australia,NSW SOP,2004,For storage only,28,Gamilaroi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17001,310069,Australia,NSW SOP,2005,For storage only,28,Ganay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17002,310069,Australia,NSW SOP,2007,For storage only,28,Ganay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17003,310069,Australia,NSW SOP,2010,For storage only,28,Ganay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17004,310069,Australia,NSW SOP,2013,For storage only,28,Ganay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17005,310069,Australia,NSW SOP,2004,For storage only,28,Ganay,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17006,555576696,Australia,NSW SOP,2013,For storage only,28,Gandangara,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17007,354751,Australia,NSW SOP,2005,For storage only,28,Garawarra,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17008,354751,Australia,NSW SOP,2007,For storage only,28,Garawarra,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17009,354751,Australia,NSW SOP,2010,For storage only,28,Garawarra,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17010,354751,Australia,NSW SOP,2013,For storage only,28,Garawarra,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17011,354751,Australia,NSW SOP,2004,For storage only,28,Garawarra,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17012,555543411,Australia,NSW SOP,2007,For storage only,28,Garby,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17013,555543411,Australia,NSW SOP,2010,For storage only,28,Garby,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17014,555543411,Australia,NSW SOP,2013,For storage only,28,Garby,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17015,555543411,Australia,NSW SOP,2005,For storage only,28,Garby,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17016,313675,Australia,NSW SOP,2005,For storage only,28,Gardens of Stone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17017,313675,Australia,NSW SOP,2007,For storage only,28,Gardens of Stone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17018,313675,Australia,NSW SOP,2010,For storage only,28,Gardens of Stone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17019,313675,Australia,NSW SOP,2013,For storage only,28,Gardens of Stone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17020,313675,Australia,NSW SOP,2004,For storage only,28,Gardens of Stone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17021,315029,Australia,NTMEE,2013,For storage only,28,Garig Gunak Barlu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17022,63026,Australia,NSW SOP,2005,For storage only,28,Garigal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17023,63026,Australia,NSW SOP,2007,For storage only,28,Garigal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17024,63026,Australia,NSW SOP,2010,For storage only,28,Garigal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17025,63026,Australia,NSW SOP,2013,For storage only,28,Garigal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17026,63026,Australia,NSW SOP,2004,For storage only,28,Garigal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17027,555543412,Australia,NSW SOP,2010,For storage only,28,Garrawilla,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17028,555543412,Australia,NSW SOP,2013,For storage only,28,Garrawilla,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17029,354757,Australia,Qld Rapid Assessment,2010,For storage only,28,Gatton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17030,354757,Australia,Qld Rapid Assessment,2012,For storage only,28,Gatton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17031,126313,Australia,Birdlife IBA,2008,For storage only,28,Gawler Ranges,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17032,314578,Australia,Victorian SOP,2010,For storage only,28,Gaynor Swamp W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17033,314578,Australia,Victorian SOP,2013,For storage only,28,Gaynor Swamp W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17034,354760,Australia,Qld Rapid Assessment,2010,For storage only,28,Geham,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17035,354760,Australia,Qld Rapid Assessment,2012,For storage only,28,Geham,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17036,314817,Australia,Victorian SOP,2010,For storage only,28,Gemmill Swamp W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17037,314817,Australia,Victorian SOP,2005,For storage only,28,Gemmill Swamp W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17038,314817,Australia,Victorian SOP,2013,For storage only,28,Gemmill Swamp W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17039,1159,Australia,NSW SOP,2005,For storage only,28,Georges Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17040,1159,Australia,NSW SOP,2007,For storage only,28,Georges Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17041,1159,Australia,NSW SOP,2010,For storage only,28,Georges Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17042,1159,Australia,NSW SOP,2013,For storage only,28,Georges Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17043,1159,Australia,NSW SOP,2004,For storage only,28,Georges Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17044,10623,Australia,NSW SOP,2005,For storage only,28,Georges River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17046,10623,Australia,NSW SOP,2007,For storage only,28,Georges River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17047,10623,Australia,NSW SOP,2010,For storage only,28,Georges River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17048,10623,Australia,NSW SOP,2013,For storage only,28,Georges River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17049,10623,Australia,NSW SOP,2004,For storage only,28,Georges River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17051,310070,Australia,NSW SOP,2005,For storage only,28,Ghin-Doo-Ee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17052,310070,Australia,NSW SOP,2007,For storage only,28,Ghin-Doo-Ee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17053,310070,Australia,NSW SOP,2010,For storage only,28,Ghin-Doo-Ee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17054,310070,Australia,NSW SOP,2013,For storage only,28,Ghin-Doo-Ee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17055,310111,Australia,NSW SOP,2004,For storage only,28,Kumbatine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17056,310071,Australia,NSW SOP,2005,For storage only,28,Gibraltar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17057,310071,Australia,NSW SOP,2007,For storage only,28,Gibraltar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17058,310071,Australia,NSW SOP,2010,For storage only,28,Gibraltar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17059,310071,Australia,NSW SOP,2013,For storage only,28,Gibraltar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17060,310071,Australia,NSW SOP,2004,For storage only,28,Gibraltar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17061,366,Australia,NSW SOP,2005,For storage only,28,Gibraltar Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17062,366,Australia,NSW SOP,2007,For storage only,28,Gibraltar Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17063,366,Australia,NSW SOP,2010,For storage only,28,Gibraltar Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17064,366,Australia,NSW SOP,2013,For storage only,28,Gibraltar Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17065,366,Australia,NSW SOP,2004,For storage only,28,Gibraltar Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17066,555576697,Australia,NSW SOP,2013,For storage only,28,Gillindich,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17067,555576698,Australia,NSW SOP,2013,For storage only,28,Gilwarny,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17068,555576699,Australia,NSW SOP,2013,For storage only,28,Ginghet,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17069,2687,Australia,Victorian SOP,2010,For storage only,28,Gippsland Lakes Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17070,2687,Australia,Victorian SOP,2005,For storage only,28,Gippsland Lakes Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17071,2687,Australia,Victorian SOP,2013,For storage only,28,Gippsland Lakes Coastal Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17072,310072,Australia,NSW SOP,2005,For storage only,28,Girralang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17073,310072,Australia,NSW SOP,2007,For storage only,28,Girralang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17074,310072,Australia,NSW SOP,2010,For storage only,28,Girralang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17075,310072,Australia,NSW SOP,2013,For storage only,28,Girralang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17076,310072,Australia,NSW SOP,2004,For storage only,28,Girralang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17077,555548817,Australia,Qld Rapid Assessment,2010,For storage only,28,Girramay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17078,555548817,Australia,Qld Rapid Assessment,2012,For storage only,28,Girramay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17079,421,Australia,Qld Rapid Assessment,2010,For storage only,28,Girraween,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17080,421,Australia,Qld Rapid Assessment,2012,For storage only,28,Girraween,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17081,354779,Australia,Qld Rapid Assessment,2010,For storage only,28,Girringun,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17082,354779,Australia,Qld Rapid Assessment,2012,For storage only,28,Girringun,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17083,555543417,Australia,NSW SOP,2010,For storage only,28,Gir-um-bit,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17084,555543417,Australia,NSW SOP,2013,For storage only,28,Gir-um-bit,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17085,555543418,Australia,NSW SOP,2010,For storage only,28,Gir-um-bit,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17086,555543418,Australia,NSW SOP,2013,For storage only,28,Gir-um-bit,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17087,309911,Australia,Qld Rapid Assessment,2010,For storage only,28,Glass House Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17088,309911,Australia,Qld Rapid Assessment,2012,For storage only,28,Glass House Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17089,354782,Australia,Qld Rapid Assessment,2010,For storage only,28,Glastonbury,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17090,354782,Australia,Qld Rapid Assessment,2012,For storage only,28,Glastonbury,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17091,354785,Australia,Qld Rapid Assessment,2010,For storage only,28,Glenbar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17092,354785,Australia,Qld Rapid Assessment,2012,For storage only,28,Glenbar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17093,127514,Australia,Victorian SOP,2005,For storage only,28,Glenelg River (8) SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17094,127518,Australia,Victorian SOP,2005,For storage only,28,"Glenelg River, Fulham SS.R.",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17095,127518,Australia,Victorian SOP,2010,For storage only,28,"Glenelg River, Fulham SS.R.",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17096,127518,Australia,Victorian SOP,2013,For storage only,28,"Glenelg River, Fulham SS.R.",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17097,127426,Australia,Victorian SOP,2005,For storage only,28,Glenorchy I5 B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17098,354794,Australia,NSW SOP,2005,For storage only,28,Glenrock,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17099,354794,Australia,NSW SOP,2007,For storage only,28,Glenrock,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17100,354794,Australia,NSW SOP,2010,For storage only,28,Glenrock,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17101,354794,Australia,NSW SOP,2013,For storage only,28,Glenrock,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17102,354794,Australia,NSW SOP,2004,For storage only,28,Glenrock,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17103,127565,Australia,Victorian SOP,2010,For storage only,28,Glenrowan I69 B.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17104,127565,Australia,Victorian SOP,2005,For storage only,28,Glenrowan I69 B.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17105,126331,Australia,Qld Rapid Assessment,2010,For storage only,28,Gloucester Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17106,126331,Australia,Qld Rapid Assessment,2012,For storage only,28,Gloucester Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17107,126333,Australia,Victorian SOP,2005,For storage only,28,Gobarup N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17108,126333,Australia,Victorian SOP,2010,For storage only,28,Gobarup N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17109,126333,Australia,Victorian SOP,2013,For storage only,28,Gobarup N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17110,12202,Australia,WHA Outlook Report,2014,For storage only,28,Gondwana Rainforests of Australia,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -17111,126335,Australia,Qld Rapid Assessment,2010,For storage only,28,Goneaway,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17112,126335,Australia,Qld Rapid Assessment,2012,For storage only,28,Goneaway,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17113,102551,Australia,NSW SOP,2005,For storage only,28,Goobang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17114,102551,Australia,NSW SOP,2007,For storage only,28,Goobang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17115,102551,Australia,NSW SOP,2010,For storage only,28,Goobang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17116,102551,Australia,NSW SOP,2013,For storage only,28,Goobang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17117,102551,Australia,NSW SOP,2004,For storage only,28,Goobang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17118,310073,Australia,NSW SOP,2005,For storage only,28,Good Good,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17119,310073,Australia,NSW SOP,2007,For storage only,28,Good Good,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17120,310073,Australia,NSW SOP,2010,For storage only,28,Good Good,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17121,310073,Australia,NSW SOP,2013,For storage only,28,Good Good,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17122,310073,Australia,NSW SOP,2004,For storage only,28,Good Good,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17123,309913,Australia,Qld Rapid Assessment,2010,For storage only,28,Good Night Scrub,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17124,309913,Australia,Qld Rapid Assessment,2012,For storage only,28,Good Night Scrub,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17125,126336,Australia,Qld Rapid Assessment,2010,For storage only,28,Goodedulla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17126,126336,Australia,Qld Rapid Assessment,2012,For storage only,28,Goodedulla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17127,555543376,Australia,NSW SOP,2010,For storage only,28,Goodiman,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17128,555543376,Australia,NSW SOP,2013,For storage only,28,Goodiman,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17129,555548494,Australia,NSW SOP,2010,For storage only,28,Goolawah,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17130,555548494,Australia,NSW SOP,2013,For storage only,28,Goolawah,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17131,555548663,Australia,NSW SOP,2010,For storage only,28,Goolawah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17132,555548663,Australia,NSW SOP,2013,For storage only,28,Goolawah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17133,23924,Australia,Qld Rapid Assessment,2010,For storage only,28,Goold Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17134,23924,Australia,Qld Rapid Assessment,2012,For storage only,28,Goold Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17135,314729,Australia,Victorian SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17136,555548318,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17137,555548318,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17138,555548728,Australia,Qld Rapid Assessment,2010,For storage only,28,Goomboorian,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17139,555548728,Australia,Qld Rapid Assessment,2012,For storage only,28,Goomboorian,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17140,23514,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17141,23514,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17142,23514,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17143,23514,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17144,310074,Australia,NSW SOP,2005,For storage only,28,Goonengerry,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17145,310074,Australia,NSW SOP,2007,For storage only,28,Goonengerry,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17146,310074,Australia,NSW SOP,2010,For storage only,28,Goonengerry,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17147,310074,Australia,NSW SOP,2013,For storage only,28,Goonengerry,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17148,310074,Australia,NSW SOP,2004,For storage only,28,Goonengerry,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17149,555543377,Australia,NSW SOP,2010,For storage only,28,Goonoo,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17150,555543377,Australia,NSW SOP,2013,For storage only,28,Goonoo,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17151,555543378,Australia,NSW SOP,2010,For storage only,28,Goonoo,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17152,555543378,Australia,NSW SOP,2013,For storage only,28,Goonoo,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17153,310075,Australia,NSW SOP,2005,For storage only,28,Goonook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17154,310075,Australia,NSW SOP,2007,For storage only,28,Goonook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17155,310075,Australia,NSW SOP,2010,For storage only,28,Goonook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17156,310075,Australia,NSW SOP,2013,For storage only,28,Goonook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17157,310075,Australia,NSW SOP,2004,For storage only,28,Goonook,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17158,555543379,Australia,NSW SOP,2010,For storage only,28,Goonoowigal,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17159,555543379,Australia,NSW SOP,2013,For storage only,28,Goonoowigal,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17160,23515,Australia,NSW SOP,2005,For storage only,28,Goorooyarroo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17161,23515,Australia,NSW SOP,2007,For storage only,28,Goorooyarroo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17162,23515,Australia,NSW SOP,2010,For storage only,28,Goorooyarroo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17163,23515,Australia,NSW SOP,2013,For storage only,28,Goorooyarroo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17164,23515,Australia,NSW SOP,2004,For storage only,28,Goorooyarroo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17165,313919,Australia,Birdlife IBA,2008,For storage only,28,Goose Island,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17166,146691,Australia,NSW SOP,2005,For storage only,28,Goulburn River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17167,146691,Australia,NSW SOP,2007,For storage only,28,Goulburn River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17168,146691,Australia,NSW SOP,2010,For storage only,28,Goulburn River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17169,146691,Australia,NSW SOP,2013,For storage only,28,Goulburn River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17170,146691,Australia,NSW SOP,2004,For storage only,28,Goulburn River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17171,310076,Australia,NSW SOP,2005,For storage only,28,Gourock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17172,310076,Australia,NSW SOP,2007,For storage only,28,Gourock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17173,310076,Australia,NSW SOP,2010,For storage only,28,Gourock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17174,310076,Australia,NSW SOP,2013,For storage only,28,Gourock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17175,310076,Australia,NSW SOP,2004,For storage only,28,Gourock,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17176,10607,Australia,Victorian SOP,2010,For storage only,28,Grampians National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17177,10607,Australia,Victorian SOP,2005,For storage only,28,Grampians National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17178,10607,Australia,Victorian SOP,2013,For storage only,28,Grampians National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17179,127512,Australia,Victorian SOP,2005,For storage only,28,Grants B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17180,2628,Australia,WHA Outlook Report,2009,For storage only,28,Great Barrier Reef,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17181,2571,Australia,WHA Outlook Report,2014,For storage only,28,Great Barrier Reef,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -17182,23928,Australia,Qld Rapid Assessment,2010,For storage only,28,Great Basalt Wall,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17183,23928,Australia,Qld Rapid Assessment,2012,For storage only,28,Great Basalt Wall,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17184,354835,Australia,Victorian SOP,2010,For storage only,28,Great Otway National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17185,354835,Australia,Victorian SOP,2013,For storage only,28,Great Otway National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17186,309914,Australia,Qld Rapid Assessment,2010,For storage only,28,Great Sandy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17187,309914,Australia,Qld Rapid Assessment,2012,For storage only,28,Great Sandy,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17188,354837,Australia,Victorian SOP,2010,For storage only,28,"Great Spectacle, Little Spectacle, Round Lake, Tobacco Lake",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17189,354837,Australia,Victorian SOP,2013,For storage only,28,"Great Spectacle, Little Spectacle, Round Lake, Tobacco Lake",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17190,354841,Australia,Victorian SOP,2005,For storage only,28,Greater Bendigo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17191,354841,Australia,Victorian SOP,2010,For storage only,28,Greater Bendigo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17192,354841,Australia,Victorian SOP,2013,For storage only,28,Greater Bendigo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17193,220294,Australia,WHA Outlook Report,2014,For storage only,28,Greater Blue Mountains Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -17194,126356,Australia,Qld Rapid Assessment,2010,For storage only,28,Green Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17195,126356,Australia,Qld Rapid Assessment,2012,For storage only,28,Green Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17196,313836,Australia,Birdlife IBA,2008,For storage only,28,Judbarra / Gregory,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17197,127143,Australia,Victorian SOP,2013,For storage only,28,Gresswell Forest (part a) N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17198,463,Australia,Qld Rapid Assessment,2010,For storage only,28,Grey Peaks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17199,463,Australia,Qld Rapid Assessment,2012,For storage only,28,Grey Peaks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17200,555548811,Australia,Qld Rapid Assessment,2010,For storage only,28,Grongah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17201,555548811,Australia,Qld Rapid Assessment,2012,For storage only,28,Grongah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17202,23518,Australia,NSW SOP,2005,For storage only,28,Gubbata,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17203,23518,Australia,NSW SOP,2007,For storage only,28,Gubbata,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17204,23518,Australia,NSW SOP,2010,For storage only,28,Gubbata,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17205,23518,Australia,NSW SOP,2004,For storage only,28,Gubbata,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17206,23518,Australia,NSW SOP,2013,For storage only,28,Gubbata,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17207,310077,Australia,NSW SOP,2005,For storage only,28,Gulaga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17208,310077,Australia,NSW SOP,2007,For storage only,28,Gulaga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17209,310077,Australia,NSW SOP,2010,For storage only,28,Gulaga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17210,310077,Australia,NSW SOP,2013,For storage only,28,Gulaga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17211,310077,Australia,NSW SOP,2004,For storage only,28,Gulaga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17212,102552,Australia,NSW SOP,2005,For storage only,28,Gulguer,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17213,102552,Australia,NSW SOP,2007,For storage only,28,Gulguer,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17214,102552,Australia,NSW SOP,2010,For storage only,28,Gulguer,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17215,102552,Australia,NSW SOP,2013,For storage only,28,Gulguer,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17216,102552,Australia,NSW SOP,2004,For storage only,28,Gulguer,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17217,494,Australia,Birdlife IBA,2008,For storage only,28,Gum Lagoon,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17218,354858,Australia,NSW SOP,2005,For storage only,28,Gumbaynggirr,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17219,354858,Australia,NSW SOP,2007,For storage only,28,Gumbaynggirr,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17220,354858,Australia,NSW SOP,2010,For storage only,28,Gumbaynggirr,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17221,354858,Australia,NSW SOP,2013,For storage only,28,Gumbaynggirr,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17222,555543366,Australia,NSW SOP,2010,For storage only,28,Gumbaynggirr,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17223,555543366,Australia,NSW SOP,2013,For storage only,28,Gumbaynggirr,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17224,555543366,Australia,Victorian SOP,2010,For storage only,28,Gumbaynggirr,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17225,555543366,Australia,Victorian SOP,2013,For storage only,28,Gumbaynggirr,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17226,310078,Australia,NSW SOP,2005,For storage only,28,Gundabooka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17227,310078,Australia,NSW SOP,2007,For storage only,28,Gundabooka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17229,310078,Australia,NSW SOP,2010,For storage only,28,Gundabooka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17231,310078,Australia,NSW SOP,2013,For storage only,28,Gundabooka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17233,310078,Australia,NSW SOP,2004,For storage only,28,Gundabooka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17234,555543368,Australia,NSW SOP,2007,For storage only,28,Gungewalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17235,555543368,Australia,NSW SOP,2010,For storage only,28,Gungewalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17236,555543368,Australia,NSW SOP,2013,For storage only,28,Gungewalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17237,127155,Australia,Victorian SOP,2005,For storage only,28,Gunners Tank B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17238,555543369,Australia,NSW SOP,2010,For storage only,28,Gunyerwarildi,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17239,555543369,Australia,NSW SOP,2013,For storage only,28,Gunyerwarildi,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17240,354864,Australia,NSW SOP,2005,For storage only,28,Gurranang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17241,354864,Australia,NSW SOP,2007,For storage only,28,Gurranang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17242,354864,Australia,NSW SOP,2010,For storage only,28,Gurranang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17243,354864,Australia,NSW SOP,2013,For storage only,28,Gurranang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17244,354864,Australia,NSW SOP,2004,For storage only,28,Gurranang,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17245,361,Australia,NSW SOP,2005,For storage only,28,Guy Fawkes River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17246,361,Australia,NSW SOP,2007,For storage only,28,Guy Fawkes River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17247,361,Australia,NSW SOP,2010,For storage only,28,Guy Fawkes River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17248,361,Australia,NSW SOP,2013,For storage only,28,Guy Fawkes River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17249,313689,Australia,NSW SOP,2005,For storage only,28,Guy Fawkes River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17250,313689,Australia,NSW SOP,2007,For storage only,28,Guy Fawkes River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17251,313689,Australia,NSW SOP,2010,For storage only,28,Guy Fawkes River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17252,354866,Australia,NSW SOP,2005,For storage only,28,Guy Fawkes River,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17253,354866,Australia,NSW SOP,2007,For storage only,28,Guy Fawkes River,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17254,354866,Australia,NSW SOP,2010,For storage only,28,Guy Fawkes River,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17255,354866,Australia,NSW SOP,2013,For storage only,28,Guy Fawkes River,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17256,361,Australia,NSW SOP,2004,For storage only,28,Guy Fawkes River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17257,354866,Australia,NSW SOP,2004,For storage only,28,Guy Fawkes River,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17258,313689,Australia,NSW SOP,2013,For storage only,28,Guy Fawkes River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17259,313689,Australia,NSW SOP,2004,For storage only,28,Guy Fawkes River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17260,555543370,Australia,NSW SOP,2010,For storage only,28,Gwydir River,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17261,555543370,Australia,NSW SOP,2013,For storage only,28,Gwydir River,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17262,555543371,Australia,NSW SOP,2010,For storage only,28,Gwydir River,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17263,555543371,Australia,NSW SOP,2013,For storage only,28,Gwydir River,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17264,555576711,Australia,NSW SOP,2013,For storage only,28,Gwydir Wetlands,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17265,354869,Australia,Qld Rapid Assessment,2010,For storage only,28,Gympie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17266,354869,Australia,Qld Rapid Assessment,2012,For storage only,28,Gympie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17267,126363,Australia,Qld Rapid Assessment,2010,For storage only,28,Halifax Bay Wetlands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17268,126363,Australia,Qld Rapid Assessment,2012,For storage only,28,Halifax Bay Wetlands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17269,354873,Australia,Qld Rapid Assessment,2010,For storage only,28,Hampton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17270,354873,Australia,Qld Rapid Assessment,2012,For storage only,28,Hampton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17271,63040,Australia,Qld Rapid Assessment,2010,For storage only,28,Hann Tableland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17272,63040,Australia,Qld Rapid Assessment,2012,For storage only,28,Hann Tableland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17273,309453,Australia,Tasmanian WHA,2004,For storage only,28,Hartz Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17274,23936,Australia,Qld Rapid Assessment,2010,For storage only,28,Hasties Swamp,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17275,23936,Australia,Qld Rapid Assessment,2012,For storage only,28,Hasties Swamp,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17276,384,Australia,NSW SOP,2005,For storage only,28,Hat Head,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17277,384,Australia,NSW SOP,2007,For storage only,28,Hat Head,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17278,384,Australia,NSW SOP,2010,For storage only,28,Hat Head,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17279,384,Australia,NSW SOP,2013,For storage only,28,Hat Head,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17280,384,Australia,NSW SOP,2004,For storage only,28,Hat Head,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17281,314586,Australia,Victorian SOP,2005,For storage only,28,Hateleys Lake W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17282,533,Australia,Victorian SOP,2005,For storage only,28,Hattah - Kulkyne National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17283,533,Australia,Victorian SOP,2010,For storage only,28,Hattah - Kulkyne National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17284,533,Australia,Victorian SOP,2013,For storage only,28,Hattah - Kulkyne National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17285,310080,Australia,NSW SOP,2005,For storage only,28,Hattons Bluff,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17286,310080,Australia,NSW SOP,2007,For storage only,28,Hattons Bluff,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17287,310080,Australia,NSW SOP,2010,For storage only,28,Hattons Bluff,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17288,310080,Australia,NSW SOP,2004,For storage only,28,Hattons Bluff,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17289,310080,Australia,NSW SOP,2013,For storage only,28,Hattons Bluff,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17290,23521,Australia,NSW SOP,2005,For storage only,28,Hattons Corner,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17291,23521,Australia,NSW SOP,2007,For storage only,28,Hattons Corner,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17292,23521,Australia,NSW SOP,2010,For storage only,28,Hattons Corner,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17293,23521,Australia,NSW SOP,2013,For storage only,28,Hattons Corner,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17294,23521,Australia,NSW SOP,2004,For storage only,28,Hattons Corner,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17295,63046,Australia,NSW SOP,2005,For storage only,28,Hayters Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17296,63046,Australia,NSW SOP,2007,For storage only,28,Hayters Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17297,63046,Australia,NSW SOP,2010,For storage only,28,Hayters Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17298,63046,Australia,NSW SOP,2013,For storage only,28,Hayters Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17299,63046,Australia,NSW SOP,2004,For storage only,28,Hayters Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17300,145576,Australia,WHA Outlook Report,2014,For storage only,28,Heard and McDonald Islands,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -17301,314587,Australia,Victorian SOP,2005,For storage only,28,Heard Lake W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17302,314588,Australia,Victorian SOP,2005,For storage only,28,Heart Morass W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17303,313676,Australia,NSW SOP,2005,For storage only,28,Heathcote,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17304,313676,Australia,NSW SOP,2007,For storage only,28,Heathcote,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17305,313676,Australia,NSW SOP,2010,For storage only,28,Heathcote,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17306,313676,Australia,NSW SOP,2013,For storage only,28,Heathcote,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17307,313676,Australia,NSW SOP,2004,For storage only,28,Heathcote,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17308,354890,Australia,Victorian SOP,2010,For storage only,28,Heathcote-Graytown National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17309,354890,Australia,Victorian SOP,2005,For storage only,28,Heathcote-Graytown National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17310,354890,Australia,Victorian SOP,2013,For storage only,28,Heathcote-Graytown National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17311,64393,Australia,Qld Rapid Assessment,2010,For storage only,28,Hell Hole Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17312,64393,Australia,Qld Rapid Assessment,2012,For storage only,28,Hell Hole Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17313,555548603,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17314,555548603,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17315,555548783,Australia,Qld Rapid Assessment,2010,For storage only,28,Herberton Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17316,555548783,Australia,Qld Rapid Assessment,2012,For storage only,28,Herberton Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17317,555576713,Australia,NSW SOP,2005,For storage only,28,Hexham Swamp,NRS Addition - Gazettal in Progress,"GD-PAME, version pre-2017",Not Reported,2018,English -17318,555576713,Australia,NSW SOP,2007,For storage only,28,Hexham Swamp,NRS Addition - Gazettal in Progress,"GD-PAME, version pre-2017",Not Reported,2018,English -17319,555576713,Australia,NSW SOP,2004,For storage only,28,Hexham Swamp,NRS Addition - Gazettal in Progress,"GD-PAME, version pre-2017",Not Reported,2018,English -17320,409,Australia,Qld Rapid Assessment,2010,For storage only,28,Hinchinbrook Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17321,409,Australia,Qld Rapid Assessment,2012,For storage only,28,Hinchinbrook Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17322,314589,Australia,Victorian SOP,2010,For storage only,28,Hird Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17323,314589,Australia,Victorian SOP,2005,For storage only,28,Hird Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17324,314589,Australia,Victorian SOP,2013,For storage only,28,Hird Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17325,555576715,Australia,NSW SOP,2013,For storage only,28,Hobden Hill,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17326,310081,Australia,NSW SOP,2005,For storage only,28,Hogarth Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17327,310081,Australia,NSW SOP,2007,For storage only,28,Hogarth Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17328,310081,Australia,NSW SOP,2010,For storage only,28,Hogarth Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17329,310081,Australia,NSW SOP,2013,For storage only,28,Hogarth Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17330,310081,Australia,NSW SOP,2004,For storage only,28,Hogarth Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17331,23944,Australia,Qld Rapid Assessment,2010,For storage only,28,Holbourne Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17332,23944,Australia,Qld Rapid Assessment,2012,For storage only,28,Holbourne Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17333,24670,Australia,Victorian SOP,2010,For storage only,28,Holden F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17334,24670,Australia,Victorian SOP,2005,For storage only,28,Holden F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17335,24670,Australia,Victorian SOP,2013,For storage only,28,Holden F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17336,544,Australia,Victorian SOP,2005,For storage only,28,Holey Plains,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17337,544,Australia,Victorian SOP,2010,For storage only,28,Holey Plains,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17338,544,Australia,Victorian SOP,2013,For storage only,28,Holey Plains,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17339,313897,Australia,Qld Rapid Assessment,2010,For storage only,28,Homevale,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17340,313897,Australia,Qld Rapid Assessment,2012,For storage only,28,Homevale,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17341,23946,Australia,Qld Rapid Assessment,2010,For storage only,28,Hope Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17342,23946,Australia,Qld Rapid Assessment,2012,For storage only,28,Hope Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17343,555543431,Australia,NSW SOP,2010,For storage only,28,Horton Falls,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17344,555543431,Australia,NSW SOP,2013,For storage only,28,Horton Falls,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17345,126397,Australia,NSW SOP,2005,For storage only,28,Hortons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17346,126397,Australia,NSW SOP,2007,For storage only,28,Hortons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17347,126397,Australia,NSW SOP,2010,For storage only,28,Hortons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17348,126397,Australia,NSW SOP,2013,For storage only,28,Hortons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17349,126397,Australia,NSW SOP,2004,For storage only,28,Hortons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17350,306583,Australia,Victorian SOP,2005,For storage only,28,Hotspur B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17351,63057,Australia,Qld Rapid Assessment,2010,For storage only,28,Howick Group (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17352,63057,Australia,Qld Rapid Assessment,2012,For storage only,28,Howick Group (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17353,311672,Australia,Victorian SOP,2010,For storage only,28,Hughes Creek Hill B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17354,311672,Australia,Victorian SOP,2005,For storage only,28,Hughes Creek Hill B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17355,311672,Australia,Victorian SOP,2013,For storage only,28,Hughes Creek Hill B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17356,462,Australia,Qld Rapid Assessment,2010,For storage only,28,Hull River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17357,462,Australia,Qld Rapid Assessment,2012,For storage only,28,Hull River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17358,555548791,Australia,Qld Rapid Assessment,2010,For storage only,28,Humboldt,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17359,555548791,Australia,Qld Rapid Assessment,2012,For storage only,28,Humboldt,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17360,555543432,Australia,NSW SOP,2010,For storage only,28,Hunter Wetlands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17361,555543432,Australia,NSW SOP,2013,For storage only,28,Hunter Wetlands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17362,63058,Australia,Qld Rapid Assessment,2010,For storage only,28,Idalia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17363,63058,Australia,Qld Rapid Assessment,2012,For storage only,28,Idalia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17364,356376,Australia,NSW SOP,2005,For storage only,28,Illawarra Escarpment,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17365,356376,Australia,NSW SOP,2007,For storage only,28,Illawarra Escarpment,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17366,356376,Australia,NSW SOP,2010,For storage only,28,Illawarra Escarpment,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17367,356376,Australia,NSW SOP,2013,For storage only,28,Illawarra Escarpment,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17368,356376,Australia,NSW SOP,2004,For storage only,28,Illawarra Escarpment,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17369,23524,Australia,NSW SOP,2005,For storage only,28,Illawong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17370,23524,Australia,NSW SOP,2007,For storage only,28,Illawong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17371,23524,Australia,NSW SOP,2010,For storage only,28,Illawong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17372,23524,Australia,NSW SOP,2013,For storage only,28,Illawong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17373,23524,Australia,NSW SOP,2004,For storage only,28,Illawong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17374,555543435,Australia,NSW SOP,2007,For storage only,28,Illunie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17375,555543435,Australia,NSW SOP,2010,For storage only,28,Illunie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17376,555543435,Australia,NSW SOP,2013,For storage only,28,Illunie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17377,11137,Australia,NSW SOP,2005,For storage only,28,Iluka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17378,11137,Australia,NSW SOP,2007,For storage only,28,Iluka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17379,11137,Australia,NSW SOP,2010,For storage only,28,Iluka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17380,11137,Australia,NSW SOP,2013,For storage only,28,Iluka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17381,11137,Australia,NSW SOP,2004,For storage only,28,Iluka,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17382,310082,Australia,NSW SOP,2005,For storage only,28,Imbota,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17383,310082,Australia,NSW SOP,2007,For storage only,28,Imbota,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17384,310082,Australia,NSW SOP,2010,For storage only,28,Imbota,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17385,310082,Australia,NSW SOP,2013,For storage only,28,Imbota,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17386,310082,Australia,NSW SOP,2004,For storage only,28,Imbota,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17387,310083,Australia,NSW SOP,2005,For storage only,28,Indwarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17388,310083,Australia,NSW SOP,2007,For storage only,28,Indwarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17389,310083,Australia,NSW SOP,2010,For storage only,28,Indwarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17390,310083,Australia,NSW SOP,2013,For storage only,28,Indwarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17391,310083,Australia,NSW SOP,2004,For storage only,28,Indwarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17392,1145,Australia,NSW SOP,2005,For storage only,28,Ingalba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17393,1145,Australia,NSW SOP,2007,For storage only,28,Ingalba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17394,1145,Australia,NSW SOP,2010,For storage only,28,Ingalba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17395,1145,Australia,NSW SOP,2013,For storage only,28,Ingalba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17396,1145,Australia,NSW SOP,2004,For storage only,28,Ingalba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17397,311677,Australia,Victorian SOP,2010,For storage only,28,Inglewood N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17398,311677,Australia,Victorian SOP,2005,For storage only,28,Inglewood N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17399,311677,Australia,Victorian SOP,2013,For storage only,28,Inglewood N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17400,64183,Australia,NSW SOP,2005,For storage only,28,Inner Pocket,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17401,64183,Australia,NSW SOP,2007,For storage only,28,Inner Pocket,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17402,64183,Australia,NSW SOP,2010,For storage only,28,Inner Pocket,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17403,64183,Australia,NSW SOP,2013,For storage only,28,Inner Pocket,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17404,64183,Australia,NSW SOP,2004,For storage only,28,Inner Pocket,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17405,64244,Australia,Victorian SOP,2010,For storage only,28,Inverleigh F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17406,64244,Australia,Victorian SOP,2005,For storage only,28,Inverleigh F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17407,64244,Australia,Victorian SOP,2013,For storage only,28,Inverleigh F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17408,311882,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17409,23525,Australia,NSW SOP,2005,For storage only,28,Ironbark,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17410,23525,Australia,NSW SOP,2007,For storage only,28,Ironbark,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17411,23525,Australia,NSW SOP,2010,For storage only,28,Ironbark,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17412,23525,Australia,NSW SOP,2013,For storage only,28,Ironbark,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17413,23525,Australia,NSW SOP,2004,For storage only,28,Ironbark,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17414,310084,Australia,NSW SOP,2005,For storage only,28,Ironmungy,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17415,310084,Australia,NSW SOP,2007,For storage only,28,Ironmungy,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17416,310084,Australia,NSW SOP,2010,For storage only,28,Ironmungy,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17417,310084,Australia,NSW SOP,2013,For storage only,28,Ironmungy,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17418,310084,Australia,NSW SOP,2004,For storage only,28,Ironmungy,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17419,433,Australia,Qld Rapid Assessment,2010,For storage only,28,Isla Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17420,433,Australia,Qld Rapid Assessment,2012,For storage only,28,Isla Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17421,310086,Australia,NSW SOP,2005,For storage only,28,Jaaningga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17422,310086,Australia,NSW SOP,2007,For storage only,28,Jaaningga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17423,310086,Australia,NSW SOP,2010,For storage only,28,Jaaningga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17424,310086,Australia,NSW SOP,2013,For storage only,28,Jaaningga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17425,310086,Australia,NSW SOP,2004,For storage only,28,Jaaningga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17426,356397,Australia,Qld Rapid Assessment,2010,For storage only,28,Muundhi (Jack River) (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17427,356397,Australia,Qld Rapid Assessment,2012,For storage only,28,Muundhi (Jack River) (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17428,314590,Australia,Victorian SOP,2005,For storage only,28,Jack Smith Lake W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17429,314590,Australia,Victorian SOP,2010,For storage only,28,Jack Smith Lake W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17430,314590,Australia,Victorian SOP,2013,For storage only,28,Jack Smith Lake W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17431,356398,Australia,Victorian SOP,2005,For storage only,28,Jacka Lake & lakes to north W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17432,356406,Australia,NSW SOP,2004,For storage only,28,Jackywalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17433,356406,Australia,NSW SOP,2005,For storage only,28,Jackywalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17434,356406,Australia,NSW SOP,2007,For storage only,28,Jackywalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17435,356406,Australia,NSW SOP,2010,For storage only,28,Jackywalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17436,356406,Australia,NSW SOP,2013,For storage only,28,Jackywalbin,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17437,310087,Australia,NSW SOP,2005,For storage only,28,Jagun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17438,310087,Australia,NSW SOP,2007,For storage only,28,Jagun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17439,310087,Australia,NSW SOP,2010,For storage only,28,Jagun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17440,310087,Australia,NSW SOP,2013,For storage only,28,Jagun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17441,310087,Australia,NSW SOP,2004,For storage only,28,Jagun,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17442,356409,Australia,Victorian SOP,2013,For storage only,28,Jallukar N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17443,356413,Australia,Victorian SOP,2010,For storage only,28,Jancourt N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17444,356413,Australia,Victorian SOP,2013,For storage only,28,Jancourt N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17445,64392,Australia,Qld Rapid Assessment,2010,For storage only,28,Japoon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17446,64392,Australia,Qld Rapid Assessment,2012,For storage only,28,Japoon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17447,311880,Australia,Qld Rapid Assessment,2010,For storage only,28,Jardine River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17448,311880,Australia,Qld Rapid Assessment,2012,For storage only,28,Jardine River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17449,23526,Australia,NSW SOP,2005,For storage only,28,Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17450,23526,Australia,NSW SOP,2007,For storage only,28,Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17451,23526,Australia,NSW SOP,2010,For storage only,28,Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17452,23526,Australia,NSW SOP,2004,For storage only,28,Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17453,23526,Australia,NSW SOP,2013,For storage only,28,Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17454,356417,Australia,Victorian SOP,2010,For storage only,28,Jawbone F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17455,356417,Australia,Victorian SOP,2005,For storage only,28,Jawbone F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17456,356417,Australia,Victorian SOP,2013,For storage only,28,Jawbone F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17457,305405,Australia,Victorian SOP,2010,For storage only,28,Jawbone,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -17458,305405,Australia,Victorian SOP,2005,For storage only,28,Jawbone,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -17459,305405,Australia,Victorian SOP,2013,For storage only,28,Jawbone,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -17460,555543422,Australia,NSW SOP,2007,For storage only,28,Jenolan,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17461,555543422,Australia,NSW SOP,2010,For storage only,28,Jenolan,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17462,555543422,Australia,NSW SOP,2013,For storage only,28,Jenolan,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17463,310089,Australia,NSW SOP,2005,For storage only,28,Jerilderie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17464,310089,Australia,NSW SOP,2007,For storage only,28,Jerilderie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17465,310089,Australia,NSW SOP,2010,For storage only,28,Jerilderie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17466,310089,Australia,NSW SOP,2013,For storage only,28,Jerilderie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17467,310089,Australia,NSW SOP,2004,For storage only,28,Jerilderie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17468,310090,Australia,NSW SOP,2005,For storage only,28,Jerralong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17469,310090,Australia,NSW SOP,2007,For storage only,28,Jerralong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17470,310090,Australia,NSW SOP,2010,For storage only,28,Jerralong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17471,310090,Australia,NSW SOP,2004,For storage only,28,Jerralong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17472,310090,Australia,NSW SOP,2013,For storage only,28,Jerralong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17473,310091,Australia,NSW SOP,2005,For storage only,28,Jerrawangala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17474,310091,Australia,NSW SOP,2007,For storage only,28,Jerrawangala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17475,310091,Australia,NSW SOP,2010,For storage only,28,Jerrawangala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17476,310091,Australia,NSW SOP,2013,For storage only,28,Jerrawangala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17477,310091,Australia,NSW SOP,2004,For storage only,28,Jerrawangala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17478,308676,Australia,NSW SOP,2010,For storage only,28,Jervis Bay,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17479,356422,Australia,NSW SOP,2005,For storage only,28,Jervis Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17480,356422,Australia,NSW SOP,2007,For storage only,28,Jervis Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17481,356422,Australia,NSW SOP,2010,For storage only,28,Jervis Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17482,356422,Australia,NSW SOP,2013,For storage only,28,Jervis Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17483,356422,Australia,NSW SOP,2004,For storage only,28,Jervis Bay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17484,356424,Australia,NSW SOP,2005,For storage only,28,Jilliby,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17485,356424,Australia,NSW SOP,2007,For storage only,28,Jilliby,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17486,356424,Australia,NSW SOP,2010,For storage only,28,Jilliby,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17487,356424,Australia,NSW SOP,2013,For storage only,28,Jilliby,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17488,314733,Australia,Victorian SOP,2005,For storage only,28,Jilpanger N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17489,314733,Australia,Victorian SOP,2013,For storage only,28,Jilpanger N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17490,555576719,Australia,NSW SOP,2013,For storage only,28,Jimberoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17491,555576720,Australia,NSW SOP,2013,For storage only,28,Jinangong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17492,555576721,Australia,NSW SOP,2013,For storage only,28,Jindalee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17493,310092,Australia,NSW SOP,2005,For storage only,28,Jingellic,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17494,310092,Australia,NSW SOP,2007,For storage only,28,Jingellic,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17495,310092,Australia,NSW SOP,2010,For storage only,28,Jingellic,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17496,310092,Australia,NSW SOP,2013,For storage only,28,Jingellic,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17497,310092,Australia,NSW SOP,2004,For storage only,28,Jingellic,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17498,310093,Australia,NSW SOP,2005,For storage only,28,Joadja,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17499,310093,Australia,NSW SOP,2007,For storage only,28,Joadja,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17500,310093,Australia,NSW SOP,2010,For storage only,28,Joadja,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17501,310093,Australia,NSW SOP,2013,For storage only,28,Joadja,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17502,310093,Australia,NSW SOP,2004,For storage only,28,Joadja,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17503,310094,Australia,NSW SOP,2005,For storage only,28,Jobs Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17504,310094,Australia,NSW SOP,2007,For storage only,28,Jobs Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17505,310094,Australia,NSW SOP,2010,For storage only,28,Jobs Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17506,310094,Australia,NSW SOP,2004,For storage only,28,Jobs Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17507,310094,Australia,NSW SOP,2013,For storage only,28,Jobs Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17508,23530,Australia,NSW SOP,2005,For storage only,28,John Gould,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17509,23530,Australia,NSW SOP,2007,For storage only,28,John Gould,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17510,23530,Australia,NSW SOP,2010,For storage only,28,John Gould,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17511,23530,Australia,NSW SOP,2013,For storage only,28,John Gould,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17512,23530,Australia,NSW SOP,2004,For storage only,28,John Gould,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17513,314591,Australia,Victorian SOP,2010,For storage only,28,Johnson Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17514,314591,Australia,Victorian SOP,2005,For storage only,28,Johnson Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17515,314591,Australia,Victorian SOP,2013,For storage only,28,Johnson Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17516,306600,Australia,Victorian SOP,2010,For storage only,28,Jones Bay G.L.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17517,306600,Australia,Victorian SOP,2005,For storage only,28,Jones Bay G.L.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17518,314592,Australia,Victorian SOP,2005,For storage only,28,Jones Bay W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17519,313836,Australia,NTMEE,2013,For storage only,28,Judbarra / Gregory,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17520,23531,Australia,NSW SOP,2005,For storage only,28,Julian Rocks Nguthungulli,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17521,23531,Australia,NSW SOP,2007,For storage only,28,Julian Rocks Nguthungulli,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17522,23531,Australia,NSW SOP,2010,For storage only,28,Julian Rocks Nguthungulli,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17523,23531,Australia,NSW SOP,2013,For storage only,28,Julian Rocks Nguthungulli,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17524,23531,Australia,NSW SOP,2004,For storage only,28,Julian Rocks Nguthungulli,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17525,309323,Australia,Qld Rapid Assessment,2010,For storage only,28,Junee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17526,309323,Australia,Qld Rapid Assessment,2012,For storage only,28,Junee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17527,310095,Australia,NSW SOP,2005,For storage only,28,Junuy Juluum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17528,310095,Australia,NSW SOP,2007,For storage only,28,Junuy Juluum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17529,310095,Australia,NSW SOP,2010,For storage only,28,Junuy Juluum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17530,310095,Australia,NSW SOP,2013,For storage only,28,Junuy Juluum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17531,309978,Australia,NSW SOP,2004,For storage only,28,Barakee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17532,310097,Australia,NSW SOP,2005,For storage only,28,Juugawaarri,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17533,310097,Australia,NSW SOP,2007,For storage only,28,Juugawaarri,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17534,310097,Australia,NSW SOP,2010,For storage only,28,Juugawaarri,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17535,310097,Australia,NSW SOP,2013,For storage only,28,Juugawaarri,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17536,310097,Australia,NSW SOP,2004,For storage only,28,Juugawaarri,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17537,2614,Australia,NSW SOP,2005,For storage only,28,Kajuligah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17538,2614,Australia,NSW SOP,2007,For storage only,28,Kajuligah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17539,2614,Australia,NSW SOP,2010,For storage only,28,Kajuligah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17540,2614,Australia,NSW SOP,2013,For storage only,28,Kajuligah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17541,2614,Australia,NSW SOP,2004,For storage only,28,Kajuligah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17542,2572,Australia,WHA Outlook Report,2014,For storage only,28,Kakadu National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -17543,393,Australia,Birdlife IBA,2008,For storage only,28,Kakadu,National Park (Commonwealth),"GD-PAME, version pre-2017",Not Reported,2018,English -17544,2572,Australia,Birdlife IBA,2008,For storage only,28,Kakadu National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -17545,67763,Australia,Birdlife IBA,2008,For storage only,28,Kakadu National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -17546,314820,Australia,Victorian SOP,2010,For storage only,28,Kaladbro W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17547,314820,Australia,Victorian SOP,2005,For storage only,28,Kaladbro W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17548,314820,Australia,Victorian SOP,2013,For storage only,28,Kaladbro W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17549,555543428,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17550,555543428,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17551,555543429,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17552,555543429,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17553,310098,Australia,NSW SOP,2005,For storage only,28,Kanangra-Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17554,310098,Australia,NSW SOP,2007,For storage only,28,Kanangra-Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17555,310098,Australia,NSW SOP,2010,For storage only,28,Kanangra-Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17556,310098,Australia,NSW SOP,2004,For storage only,28,Kanangra-Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17557,310098,Australia,NSW SOP,2013,For storage only,28,Kanangra-Boyd,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17559,126427,Australia,Victorian SOP,2005,For storage only,28,Kanawinka F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17560,310099,Australia,NSW SOP,2005,For storage only,28,Kangaroo River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17561,310099,Australia,NSW SOP,2007,For storage only,28,Kangaroo River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17562,310099,Australia,NSW SOP,2010,For storage only,28,Kangaroo River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17563,310099,Australia,NSW SOP,2013,For storage only,28,Kangaroo River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17564,310099,Australia,NSW SOP,2004,For storage only,28,Kangaroo River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17565,64251,Australia,Victorian SOP,2005,For storage only,28,Kangerong N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17566,356455,Australia,Victorian SOP,2010,For storage only,28,Kanyapella W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17567,356455,Australia,Victorian SOP,2013,For storage only,28,Kanyapella W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17568,313802,Australia,NTMEE,2013,For storage only,28,Karlu Karlu / Devils Marbles,Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17569,126434,Australia,Birdlife IBA,2008,For storage only,28,Karroun Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17570,310100,Australia,NSW SOP,2005,For storage only,28,Karuah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17571,310100,Australia,NSW SOP,2007,For storage only,28,Karuah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17572,310100,Australia,NSW SOP,2010,For storage only,28,Karuah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17574,310100,Australia,NSW SOP,2013,For storage only,28,Karuah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17576,356457,Australia,NSW SOP,2005,For storage only,28,Karuah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17577,356457,Australia,NSW SOP,2007,For storage only,28,Karuah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17578,555543437,Australia,NSW SOP,2010,For storage only,28,Karuah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17579,555543437,Australia,NSW SOP,2013,For storage only,28,Karuah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17580,310100,Australia,NSW SOP,2004,For storage only,28,Karuah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17581,356457,Australia,NSW SOP,2004,For storage only,28,Karuah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17582,23532,Australia,NSW SOP,2005,For storage only,28,Kattang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17583,23532,Australia,NSW SOP,2007,For storage only,28,Kattang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17584,23532,Australia,NSW SOP,2010,For storage only,28,Kattang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17585,23532,Australia,NSW SOP,2013,For storage only,28,Kattang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17586,23532,Australia,NSW SOP,2004,For storage only,28,Kattang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17587,313837,Australia,NTMEE,2013,For storage only,28,Keep River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17588,555548456,Australia,Qld Rapid Assessment,2010,For storage only,28,Kelvin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17589,555548456,Australia,Qld Rapid Assessment,2012,For storage only,28,Kelvin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17590,23533,Australia,NSW SOP,2005,For storage only,28,Kemendok,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17591,23533,Australia,NSW SOP,2007,For storage only,28,Kemendok,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17592,23533,Australia,NSW SOP,2010,For storage only,28,Kemendok,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17593,23533,Australia,NSW SOP,2013,For storage only,28,Kemendok,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17594,555576727,Australia,NSW SOP,2013,For storage only,28,Kemendok,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17595,23533,Australia,NSW SOP,2004,For storage only,28,Kemendok,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17596,356463,Australia,NSW SOP,2005,For storage only,28,Kemps Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17597,356463,Australia,NSW SOP,2007,For storage only,28,Kemps Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17598,356463,Australia,NSW SOP,2010,For storage only,28,Kemps Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17599,356463,Australia,NSW SOP,2013,For storage only,28,Kemps Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17600,356463,Australia,NSW SOP,2004,For storage only,28,Kemps Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17601,126446,Australia,Qld Rapid Assessment,2010,For storage only,28,Keppel Bay Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17602,126446,Australia,Qld Rapid Assessment,2012,For storage only,28,Keppel Bay Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17603,313899,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17604,313899,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17605,314594,Australia,Victorian SOP,2005,For storage only,28,Kerr Swamp W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17606,555576730,Australia,NSW SOP,2013,For storage only,28,Kerrawary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17607,555548696,Australia,NSW SOP,2010,For storage only,28,Keverstone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17608,555548696,Australia,NSW SOP,2013,For storage only,28,Keverstone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17609,555576731,Australia,NSW SOP,2013,For storage only,28,Keverstone,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17610,126448,Australia,NSW SOP,2005,For storage only,28,Khappinghat,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17611,126448,Australia,NSW SOP,2007,For storage only,28,Khappinghat,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17612,126448,Australia,NSW SOP,2010,For storage only,28,Khappinghat,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17613,126448,Australia,NSW SOP,2013,For storage only,28,Khappinghat,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17614,126448,Australia,NSW SOP,2004,For storage only,28,Khappinghat,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17615,310101,Australia,NSW SOP,2005,For storage only,28,Khatambuhl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17616,310101,Australia,NSW SOP,2007,For storage only,28,Khatambuhl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17617,310101,Australia,NSW SOP,2010,For storage only,28,Khatambuhl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17618,310101,Australia,NSW SOP,2013,For storage only,28,Khatambuhl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17619,310101,Australia,NSW SOP,2004,For storage only,28,Khatambuhl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17620,310102,Australia,NSW SOP,2005,For storage only,28,Killabakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17621,310102,Australia,NSW SOP,2007,For storage only,28,Killabakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17622,310102,Australia,NSW SOP,2010,For storage only,28,Killabakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17623,310102,Australia,NSW SOP,2013,For storage only,28,Killabakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17624,310102,Australia,NSW SOP,2004,For storage only,28,Killabakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17625,313690,Australia,NSW SOP,2005,For storage only,28,Killarney,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17626,313690,Australia,NSW SOP,2007,For storage only,28,Killarney,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17627,313690,Australia,NSW SOP,2010,For storage only,28,Killarney,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17628,313690,Australia,NSW SOP,2013,For storage only,28,Killarney,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17629,313690,Australia,NSW SOP,2004,For storage only,28,Killarney,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17630,555543442,Australia,NSW SOP,2010,For storage only,28,Killarney,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17631,555543442,Australia,NSW SOP,2013,For storage only,28,Killarney,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17632,359,Australia,NSW SOP,2005,For storage only,28,Kinchega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17633,359,Australia,NSW SOP,2007,For storage only,28,Kinchega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17634,359,Australia,NSW SOP,2010,For storage only,28,Kinchega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17635,359,Australia,NSW SOP,2013,For storage only,28,Kinchega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17636,359,Australia,NSW SOP,2004,For storage only,28,Kinchega,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17637,543,Australia,Victorian SOP,2005,For storage only,28,Kinglake National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17638,543,Australia,Victorian SOP,2010,For storage only,28,Kinglake National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17639,543,Australia,Victorian SOP,2013,For storage only,28,Kinglake National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17640,555548740,Australia,Victorian SOP,2005,For storage only,28,Kings Billabong Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17641,555548740,Australia,Victorian SOP,2010,For storage only,28,Kings Billabong Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17642,555548740,Australia,Victorian SOP,2013,For storage only,28,Kings Billabong Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17643,23537,Australia,NSW SOP,2005,For storage only,28,Kings Plains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17644,23537,Australia,NSW SOP,2007,For storage only,28,Kings Plains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17645,23537,Australia,NSW SOP,2010,For storage only,28,Kings Plains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17646,23537,Australia,NSW SOP,2013,For storage only,28,Kings Plains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17647,23537,Australia,NSW SOP,2004,For storage only,28,Kings Plains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17648,356491,Australia,Qld Rapid Assessment,2010,For storage only,28,Kinrara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17649,356491,Australia,Qld Rapid Assessment,2012,For storage only,28,Kinrara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17650,356494,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17651,356495,Australia,Qld Rapid Assessment,2010,For storage only,28,Kirrama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17652,356495,Australia,Qld Rapid Assessment,2012,For storage only,28,Kirrama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17653,356496,Australia,NSW SOP,2005,For storage only,28,Kirramingly,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17654,356496,Australia,NSW SOP,2007,For storage only,28,Kirramingly,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17655,356496,Australia,NSW SOP,2010,For storage only,28,Kirramingly,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17656,356496,Australia,NSW SOP,2013,For storage only,28,Kirramingly,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17657,356496,Australia,NSW SOP,2004,For storage only,28,Kirramingly,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17658,23975,Australia,Qld Rapid Assessment,2010,For storage only,28,Kondalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17659,23975,Australia,Qld Rapid Assessment,2012,For storage only,28,Kondalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17660,555548815,Australia,Qld Rapid Assessment,2012,For storage only,28,Koombooloomba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17661,310103,Australia,NSW SOP,2005,For storage only,28,Kooraban,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17662,310103,Australia,NSW SOP,2007,For storage only,28,Kooraban,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17663,310103,Australia,NSW SOP,2010,For storage only,28,Kooraban,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17664,310103,Australia,NSW SOP,2013,For storage only,28,Kooraban,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17665,310103,Australia,NSW SOP,2004,For storage only,28,Kooraban,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17666,356505,Australia,Victorian SOP,2010,For storage only,28,Koorangie W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17667,356505,Australia,Victorian SOP,2005,For storage only,28,Koorangie W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17668,356505,Australia,Victorian SOP,2013,For storage only,28,Koorangie W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17669,310104,Australia,NSW SOP,2005,For storage only,28,Koorawatha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17670,310104,Australia,NSW SOP,2007,For storage only,28,Koorawatha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17671,310104,Australia,NSW SOP,2010,For storage only,28,Koorawatha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17672,310104,Australia,NSW SOP,2013,For storage only,28,Koorawatha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17673,310104,Australia,NSW SOP,2004,For storage only,28,Koorawatha,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17674,314822,Australia,Victorian SOP,2005,For storage only,28,Kooraweera Lakes W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17675,310105,Australia,NSW SOP,2005,For storage only,28,Koorebang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17676,310105,Australia,NSW SOP,2007,For storage only,28,Koorebang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17677,310105,Australia,NSW SOP,2010,For storage only,28,Koorebang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17678,310105,Australia,NSW SOP,2004,For storage only,28,Koorebang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17679,310105,Australia,NSW SOP,2013,For storage only,28,Koorebang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17680,356507,Australia,NSW SOP,2005,For storage only,28,Kooyong,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17681,356507,Australia,NSW SOP,2007,For storage only,28,Kooyong,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17682,356507,Australia,NSW SOP,2010,For storage only,28,Kooyong,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17683,356507,Australia,NSW SOP,2013,For storage only,28,Kooyong,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17684,356507,Australia,NSW SOP,2004,For storage only,28,Kooyong,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17685,24694,Australia,Victorian SOP,2005,For storage only,28,Kooyoora,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17686,24694,Australia,Victorian SOP,2010,For storage only,28,Kooyoora,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17687,24694,Australia,Victorian SOP,2013,For storage only,28,Kooyoora,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17688,310106,Australia,NSW SOP,2005,For storage only,28,Koreelah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17689,310106,Australia,NSW SOP,2007,For storage only,28,Koreelah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17690,310106,Australia,NSW SOP,2010,For storage only,28,Koreelah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17691,310106,Australia,NSW SOP,2013,For storage only,28,Koreelah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17692,310106,Australia,NSW SOP,2004,For storage only,28,Koreelah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17693,23539,Australia,NSW SOP,2005,For storage only,28,Kororo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17694,23539,Australia,NSW SOP,2007,For storage only,28,Kororo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17695,23539,Australia,NSW SOP,2010,For storage only,28,Kororo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17696,23539,Australia,NSW SOP,2013,For storage only,28,Kororo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17697,23539,Australia,NSW SOP,2004,For storage only,28,Kororo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17698,2022,Australia,GOBI Survey,2006,For storage only,28,Kosciuszko National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17699,310108,Australia,NSW SOP,2004,For storage only,28,Kosciuszko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17700,310108,Australia,NSW SOP,2005,For storage only,28,Kosciuszko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17701,310108,Australia,NSW SOP,2007,For storage only,28,Kosciuszko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17711,310108,Australia,NSW SOP,2010,For storage only,28,Kosciuszko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17712,310108,Australia,NSW SOP,2013,For storage only,28,Kosciuszko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17719,310109,Australia,NSW SOP,2005,For storage only,28,Koukandowie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17720,310109,Australia,NSW SOP,2007,For storage only,28,Koukandowie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17721,310109,Australia,NSW SOP,2010,For storage only,28,Koukandowie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17722,310109,Australia,NSW SOP,2013,For storage only,28,Koukandowie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17723,310109,Australia,NSW SOP,2004,For storage only,28,Koukandowie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17724,23976,Australia,Qld Rapid Assessment,2010,For storage only,28,Kroombit Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17725,23976,Australia,Qld Rapid Assessment,2012,For storage only,28,Kroombit Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17726,555548834,Australia,Qld Rapid Assessment,2012,For storage only,28,Kulla (McIlwraith Range) (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17727,555548834,Australia,Qld Rapid Assessment,2010,For storage only,28,Kulla (McIlwraith Range) (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17728,356514,Australia,NSW SOP,2005,For storage only,28,Kuma,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17729,356514,Australia,NSW SOP,2007,For storage only,28,Kuma,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17730,356514,Australia,NSW SOP,2010,For storage only,28,Kuma,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17731,356514,Australia,NSW SOP,2013,For storage only,28,Kuma,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17732,356514,Australia,NSW SOP,2004,For storage only,28,Kuma,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17733,310111,Australia,NSW SOP,2005,For storage only,28,Kumbatine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17734,310111,Australia,NSW SOP,2007,For storage only,28,Kumbatine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17735,310111,Australia,NSW SOP,2010,For storage only,28,Kumbatine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17736,310111,Australia,NSW SOP,2013,For storage only,28,Kumbatine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17737,356515,Australia,NSW SOP,2005,For storage only,28,Kumbatine,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17738,356515,Australia,NSW SOP,2007,For storage only,28,Kumbatine,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17739,356515,Australia,NSW SOP,2010,For storage only,28,Kumbatine,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17741,356515,Australia,NSW SOP,2004,For storage only,28,Kumbatine,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17742,356515,Australia,NSW SOP,2013,For storage only,28,Kumbatine,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17743,356518,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17744,356519,Australia,Qld Rapid Assessment,2010,For storage only,28,Kuranda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17745,356519,Australia,Qld Rapid Assessment,2012,For storage only,28,Kuranda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17746,310110,Australia,NSW SOP,2005,For storage only,28,Ku-ring-gai Chase,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17747,310110,Australia,NSW SOP,2007,For storage only,28,Ku-ring-gai Chase,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17748,310110,Australia,NSW SOP,2010,For storage only,28,Ku-ring-gai Chase,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17749,310110,Australia,NSW SOP,2013,For storage only,28,Ku-ring-gai Chase,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17750,310110,Australia,NSW SOP,2004,For storage only,28,Ku-ring-gai Chase,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17751,23979,Australia,Qld Rapid Assessment,2010,For storage only,28,Kurrimine Beach,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17752,23979,Australia,Qld Rapid Assessment,2012,For storage only,28,Kurrimine Beach,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17753,555577147,Australia,Qld Rapid Assessment,2012,For storage only,28,Kutini-Payamu (Iron Range) (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17754,310112,Australia,NSW SOP,2005,For storage only,28,Kwiambal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17755,310112,Australia,NSW SOP,2007,For storage only,28,Kwiambal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17756,310112,Australia,NSW SOP,2010,For storage only,28,Kwiambal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17757,310112,Australia,NSW SOP,2013,For storage only,28,Kwiambal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17758,310112,Australia,NSW SOP,2004,For storage only,28,Kwiambal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17759,555543446,Australia,NSW SOP,2010,For storage only,28,Kwiambal,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17760,555543446,Australia,NSW SOP,2013,For storage only,28,Kwiambal,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17761,313691,Australia,NSW SOP,2005,For storage only,28,Kybeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17762,313691,Australia,NSW SOP,2007,For storage only,28,Kybeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17763,313691,Australia,NSW SOP,2010,For storage only,28,Kybeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17764,313691,Australia,NSW SOP,2013,For storage only,28,Kybeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17765,356521,Australia,NSW SOP,2005,For storage only,28,Kybeyan,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17766,356521,Australia,NSW SOP,2007,For storage only,28,Kybeyan,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17767,356521,Australia,NSW SOP,2010,For storage only,28,Kybeyan,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17768,356521,Australia,NSW SOP,2013,For storage only,28,Kybeyan,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17769,313691,Australia,NSW SOP,2004,For storage only,28,Kybeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17770,356521,Australia,NSW SOP,2004,For storage only,28,Kybeyan,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17771,63268,Australia,Birdlife IBA,2008,For storage only,28,Lacepede Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17772,555576738,Australia,NSW SOP,2013,For storage only,28,Lachlan Valley,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17773,555576739,Australia,NSW SOP,2013,For storage only,28,Lachlan Valley,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17774,555576740,Australia,NSW SOP,2013,For storage only,28,Lachlan Valley,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17775,555576741,Australia,NSW SOP,2013,For storage only,28,Lachlan Valley,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17776,314826,Australia,Victorian SOP,2005,For storage only,28,Lake Beeac W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17777,314826,Australia,Victorian SOP,2013,For storage only,28,Lake Beeac W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17778,64385,Australia,Qld Rapid Assessment,2010,For storage only,28,Lake Bindegolly,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17779,64385,Australia,Qld Rapid Assessment,2012,For storage only,28,Lake Bindegolly,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17780,314599,Australia,Victorian SOP,2005,For storage only,28,Lake Bookar W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17781,314827,Australia,Victorian SOP,2005,For storage only,28,Lake Carchap W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17782,356528,Australia,Victorian SOP,2005,For storage only,28,Lake Clarke W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17783,314602,Australia,Victorian SOP,2005,For storage only,28,Lake Coleman W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17784,555548721,Australia,Victorian SOP,2005,For storage only,28,Lake Condah,Indigenous Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17785,314605,Australia,Victorian SOP,2005,For storage only,28,Lake Connewarre W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17786,314605,Australia,Victorian SOP,2010,For storage only,28,Lake Connewarre W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17787,314605,Australia,Victorian SOP,2013,For storage only,28,Lake Connewarre W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17788,314606,Australia,Victorian SOP,2010,For storage only,28,Lake Corringle W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17789,314606,Australia,Victorian SOP,2005,For storage only,28,Lake Corringle W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17790,314606,Australia,Victorian SOP,2013,For storage only,28,Lake Corringle W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17791,314828,Australia,Victorian SOP,2005,For storage only,28,Lake Cundare W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17792,314608,Australia,Victorian SOP,2010,For storage only,28,Lake Curlip W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17793,314608,Australia,Victorian SOP,2005,For storage only,28,Lake Curlip W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17794,314608,Australia,Victorian SOP,2013,For storage only,28,Lake Curlip W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17795,306650,Australia,Victorian SOP,2005,For storage only,28,Lake Eildon National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17796,306650,Australia,Victorian SOP,2010,For storage only,28,Lake Eildon National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17797,306650,Australia,Victorian SOP,2013,For storage only,28,Lake Eildon National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17798,24372,Australia,Birdlife IBA,2008,For storage only,28,Kati Thanda-Lake Eyre,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17799,314614,Australia,Victorian SOP,2010,For storage only,28,Lake Gillear W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17800,10588,Australia,NSW SOP,2005,For storage only,28,Lake Innes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17801,10588,Australia,NSW SOP,2007,For storage only,28,Lake Innes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17802,10588,Australia,NSW SOP,2010,For storage only,28,Lake Innes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17803,10588,Australia,NSW SOP,2013,For storage only,28,Lake Innes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17804,356534,Australia,NSW SOP,2005,For storage only,28,Lake Innes,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17805,356534,Australia,NSW SOP,2007,For storage only,28,Lake Innes,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17806,356534,Australia,NSW SOP,2010,For storage only,28,Lake Innes,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17807,356534,Australia,NSW SOP,2013,For storage only,28,Lake Innes,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17808,10588,Australia,NSW SOP,2004,For storage only,28,Lake Innes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17809,314618,Australia,Victorian SOP,2005,For storage only,28,Lake Jollicum W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17810,356537,Australia,Victorian SOP,2005,For storage only,28,Lake Kanagulk W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17811,314619,Australia,Victorian SOP,2005,For storage only,28,Lake Karnak W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17812,356538,Australia,Victorian SOP,2010,For storage only,28,Lake Lalbert W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17813,356538,Australia,Victorian SOP,2005,For storage only,28,Lake Lalbert W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17814,356538,Australia,Victorian SOP,2013,For storage only,28,Lake Lalbert W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17815,356541,Australia,NSW SOP,2005,For storage only,28,Lake Macquarie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17816,356541,Australia,NSW SOP,2007,For storage only,28,Lake Macquarie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17817,356541,Australia,NSW SOP,2010,For storage only,28,Lake Macquarie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17818,356541,Australia,NSW SOP,2013,For storage only,28,Lake Macquarie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17819,356541,Australia,NSW SOP,2004,For storage only,28,Lake Macquarie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17820,314886,Australia,Birdlife IBA,2008,For storage only,28,Lake McLarty,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17821,314625,Australia,Victorian SOP,2005,For storage only,28,Lake Muirhead W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17822,64362,Australia,Birdlife IBA,2008,For storage only,28,Lake Newland,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17823,314829,Australia,Victorian SOP,2005,For storage only,28,Lake Oundell W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17824,314830,Australia,Victorian SOP,2005,For storage only,28,Lake Purrumbete W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17825,314832,Australia,Victorian SOP,2010,For storage only,28,Lake Terangpom W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17826,314832,Australia,Victorian SOP,2005,For storage only,28,Lake Terangpom W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17827,555543487,Australia,Victorian SOP,2005,For storage only,28,Lake Thurrumbong W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17828,64360,Australia,Birdlife IBA,2008,For storage only,28,Lake Torrens,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17829,356547,Australia,Victorian SOP,2005,For storage only,28,Lake Tyrrell W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17830,313692,Australia,NSW SOP,2005,For storage only,28,Lake Urana,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17831,313692,Australia,NSW SOP,2007,For storage only,28,Lake Urana,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17832,313692,Australia,NSW SOP,2010,For storage only,28,Lake Urana,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17833,313692,Australia,NSW SOP,2013,For storage only,28,Lake Urana,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17834,313692,Australia,NSW SOP,2004,For storage only,28,Lake Urana,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17835,314632,Australia,Victorian SOP,2005,For storage only,28,Lake Wongan W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17836,398,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17837,314833,Australia,Victorian SOP,2010,For storage only,28,Lakes Powell and Carpul W.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17838,314833,Australia,Victorian SOP,2013,For storage only,28,Lakes Powell and Carpul W.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17839,555548818,Australia,Qld Rapid Assessment,2012,For storage only,28,Lama Lama (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17840,555548818,Australia,Qld Rapid Assessment,2010,For storage only,28,Lama Lama (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17841,126510,Australia,Victorian SOP,2010,For storage only,28,Lambert Island N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17842,311888,Australia,Qld Rapid Assessment,2010,For storage only,28,Lamington,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17843,24736,Australia,Victorian SOP,2010,For storage only,28,Landsborough N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17844,24736,Australia,Victorian SOP,2005,For storage only,28,Landsborough N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17845,10628,Australia,NSW SOP,2005,For storage only,28,Lane Cove,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17846,10628,Australia,NSW SOP,2007,For storage only,28,Lane Cove,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17847,10628,Australia,NSW SOP,2010,For storage only,28,Lane Cove,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17848,10628,Australia,NSW SOP,2013,For storage only,28,Lane Cove,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17849,10628,Australia,NSW SOP,2004,For storage only,28,Lane Cove,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17850,2695,Australia,Victorian SOP,2005,For storage only,28,Langi Ghiran,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17851,2695,Australia,Victorian SOP,2010,For storage only,28,Langi Ghiran,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17852,2695,Australia,Victorian SOP,2013,For storage only,28,Langi Ghiran,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17853,102553,Australia,NSW SOP,2005,For storage only,28,Langtree,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17854,102553,Australia,NSW SOP,2007,For storage only,28,Langtree,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17855,102553,Australia,NSW SOP,2010,For storage only,28,Langtree,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17856,102553,Australia,NSW SOP,2013,For storage only,28,Langtree,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17857,102553,Australia,NSW SOP,2004,For storage only,28,Langtree,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17858,306662,Australia,Victorian SOP,2010,For storage only,28,Langwarrin Flora & Fauna Reserve,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17859,306662,Australia,Victorian SOP,2005,For storage only,28,Langwarrin Flora & Fauna Reserve,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17860,306662,Australia,Victorian SOP,2013,For storage only,28,Langwarrin Flora & Fauna Reserve,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17861,555543489,Australia,NSW SOP,2010,For storage only,28,Lansdowne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17862,555543489,Australia,NSW SOP,2013,For storage only,28,Lansdowne,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17863,356564,Australia,Victorian SOP,2005,For storage only,28,Laverton Grasslands F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17864,356567,Australia,NSW SOP,2005,For storage only,28,Leacock,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17865,356567,Australia,NSW SOP,2007,For storage only,28,Leacock,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17866,356567,Australia,NSW SOP,2010,For storage only,28,Leacock,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17867,356567,Australia,NSW SOP,2013,For storage only,28,Leacock,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17868,306668,Australia,Victorian SOP,2010,For storage only,28,Leaghur,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17869,306668,Australia,Victorian SOP,2005,For storage only,28,Leaghur,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17870,306668,Australia,Victorian SOP,2013,For storage only,28,Leaghur,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17871,555543480,Australia,NSW SOP,2010,For storage only,28,Leard,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17872,555543480,Australia,NSW SOP,2013,For storage only,28,Leard,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17873,356569,Australia,NSW SOP,2005,For storage only,28,Ledknapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17874,356569,Australia,NSW SOP,2007,For storage only,28,Ledknapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17875,356569,Australia,NSW SOP,2010,For storage only,28,Ledknapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17876,356569,Australia,NSW SOP,2013,For storage only,28,Ledknapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17877,356569,Australia,NSW SOP,2004,For storage only,28,Ledknapper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17878,24738,Australia,Victorian SOP,2005,For storage only,28,Lerderderg,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17879,24738,Australia,Victorian SOP,2010,For storage only,28,Lerderderg,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17880,24738,Australia,Victorian SOP,2013,For storage only,28,Lerderderg,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17881,314639,Australia,Victorian SOP,2005,For storage only,28,Lignum Swamp W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17882,1137,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17883,1137,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17884,1137,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17885,555576747,Australia,NSW SOP,2013,For storage only,28,Limeburners Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17886,1137,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17887,356589,Australia,Victorian SOP,2010,For storage only,28,Limeburners Lagoon (Hovells Creek) F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17888,356589,Australia,Victorian SOP,2005,For storage only,28,Limeburners Lagoon (Hovells Creek) F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17889,356589,Australia,Victorian SOP,2013,For storage only,28,Limeburners Lagoon (Hovells Creek) F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17890,313839,Australia,NTMEE,2013,For storage only,28,Limmen,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17891,1149,Australia,NSW SOP,2005,For storage only,28,Limpinwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17892,1149,Australia,NSW SOP,2007,For storage only,28,Limpinwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17893,1149,Australia,NSW SOP,2010,For storage only,28,Limpinwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17894,1149,Australia,NSW SOP,2013,For storage only,28,Limpinwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17895,1149,Australia,NSW SOP,2004,For storage only,28,Limpinwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17896,552,Australia,Victorian SOP,2010,For storage only,28,Lind National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17897,552,Australia,Victorian SOP,2005,For storage only,28,Lind National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17898,552,Australia,Victorian SOP,2013,For storage only,28,Lind National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17899,9484,Australia,Qld Rapid Assessment,2010,For storage only,28,Lindeman Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17900,9484,Australia,Qld Rapid Assessment,2012,For storage only,28,Lindeman Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17901,24739,Australia,NSW SOP,2005,For storage only,28,Linton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17902,24739,Australia,NSW SOP,2007,For storage only,28,Linton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17903,24739,Australia,NSW SOP,2010,For storage only,28,Linton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17904,24739,Australia,NSW SOP,2013,For storage only,28,Linton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17905,24739,Australia,NSW SOP,2004,For storage only,28,Linton,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17906,23546,Australia,NSW SOP,2005,For storage only,28,Lion Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17907,23546,Australia,NSW SOP,2007,For storage only,28,Lion Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17908,23546,Australia,NSW SOP,2010,For storage only,28,Lion Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17909,23546,Australia,NSW SOP,2013,For storage only,28,Lion Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17910,23546,Australia,NSW SOP,2004,For storage only,28,Lion Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17911,313840,Australia,NTMEE,2013,For storage only,28,Litchfield,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17912,9475,Australia,Qld Rapid Assessment,2010,For storage only,28,Littabella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17913,9475,Australia,Qld Rapid Assessment,2012,For storage only,28,Littabella,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17914,314738,Australia,Victorian SOP,2010,For storage only,28,Little Bog Creek F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17915,314738,Australia,Victorian SOP,2005,For storage only,28,Little Bog Creek F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17916,23547,Australia,NSW SOP,2005,For storage only,28,Little Broughton Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17917,23547,Australia,NSW SOP,2007,For storage only,28,Little Broughton Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17918,23547,Australia,NSW SOP,2013,For storage only,28,Little Broughton Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17919,23547,Australia,NSW SOP,2010,For storage only,28,Little Broughton Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17920,23547,Australia,NSW SOP,2004,For storage only,28,Little Broughton Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17921,126538,Australia,Birdlife IBA,2008,For storage only,28,Little Desert National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17922,126538,Australia,Victorian SOP,2005,For storage only,28,Little Desert National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17923,126538,Australia,Victorian SOP,2010,For storage only,28,Little Desert National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17924,126538,Australia,Victorian SOP,2013,For storage only,28,Little Desert National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17925,23549,Australia,NSW SOP,2005,For storage only,28,Little Llangothlin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17926,23549,Australia,NSW SOP,2007,For storage only,28,Little Llangothlin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17927,23549,Australia,NSW SOP,2010,For storage only,28,Little Llangothlin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17928,23549,Australia,NSW SOP,2013,For storage only,28,Little Llangothlin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17929,23549,Australia,NSW SOP,2004,For storage only,28,Little Llangothlin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17930,555548802,Australia,Qld Rapid Assessment,2012,For storage only,28,Little Mulgrave,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17931,23550,Australia,NSW SOP,2005,For storage only,28,Little Pimlico Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17932,23550,Australia,NSW SOP,2007,For storage only,28,Little Pimlico Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17933,23550,Australia,NSW SOP,2010,For storage only,28,Little Pimlico Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17934,23550,Australia,NSW SOP,2004,For storage only,28,Little Pimlico Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17935,23550,Australia,NSW SOP,2013,For storage only,28,Little Pimlico Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17936,311952,Australia,NSW SOP,2005,For storage only,28,Livingstone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17937,311952,Australia,NSW SOP,2007,For storage only,28,Livingstone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17938,311952,Australia,NSW SOP,2010,For storage only,28,Livingstone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17939,311952,Australia,NSW SOP,2013,For storage only,28,Livingstone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17940,311952,Australia,NSW SOP,2004,For storage only,28,Livingstone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17941,555543492,Australia,NSW SOP,2007,For storage only,28,Livingstone,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17942,555543492,Australia,NSW SOP,2010,For storage only,28,Livingstone,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17943,555543492,Australia,NSW SOP,2013,For storage only,28,Livingstone,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17944,460,Australia,Qld Rapid Assessment,2010,For storage only,28,Lizard Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17945,460,Australia,Qld Rapid Assessment,2012,For storage only,28,Lizard Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17946,126547,Australia,Qld Rapid Assessment,2010,For storage only,28,Lochern,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17947,126547,Australia,Qld Rapid Assessment,2012,For storage only,28,Lochern,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17948,306683,Australia,Victorian SOP,2005,For storage only,28,Locksley B.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17949,306683,Australia,Victorian SOP,2013,For storage only,28,Locksley B.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17950,555548752,Australia,Qld Rapid Assessment,2010,For storage only,28,Lockyer,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17951,555548752,Australia,Qld Rapid Assessment,2012,For storage only,28,Lockyer,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17952,555548792,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17953,555548792,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -17954,314739,Australia,Victorian SOP,2005,For storage only,28,Long Forest F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17955,314739,Australia,Victorian SOP,2010,For storage only,28,Long Forest F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17956,314739,Australia,Victorian SOP,2013,For storage only,28,Long Forest F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17957,23551,Australia,NSW SOP,2005,For storage only,28,Long Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17958,23551,Australia,NSW SOP,2007,For storage only,28,Long Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17959,23551,Australia,NSW SOP,2010,For storage only,28,Long Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17960,23551,Australia,NSW SOP,2013,For storage only,28,Long Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17961,23551,Australia,NSW SOP,2004,For storage only,28,Long Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17962,12961,Australia,NSW SOP,2010,For storage only,28,Long Reef,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17963,356621,Australia,Victorian SOP,2005,For storage only,28,Longerenong B.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17964,314835,Australia,Victorian SOP,2010,For storage only,28,Lonsdale Lakes W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17965,314835,Australia,Victorian SOP,2013,For storage only,28,Lonsdale Lakes W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17966,308667,Australia,Birdlife IBA,2008,For storage only,28,Lord Howe Island,Permanent Park Preserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17967,315023,Australia,NSW SOP,2010,For storage only,28,Lord Howe Island,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17968,5001,Australia,WHA Outlook Report,2014,For storage only,28,Lord Howe Island Group,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -17969,313693,Australia,NSW SOP,2005,For storage only,28,Loughnan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17970,313693,Australia,NSW SOP,2007,For storage only,28,Loughnan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17971,313693,Australia,NSW SOP,2010,For storage only,28,Loughnan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17972,313693,Australia,NSW SOP,2013,For storage only,28,Loughnan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17973,313693,Australia,NSW SOP,2004,For storage only,28,Loughnan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17974,63912,Australia,Birdlife IBA,2008,For storage only,28,Lowendal Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17975,24745,Australia,Victorian SOP,2005,For storage only,28,Lower Glenelg National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17976,24745,Australia,Victorian SOP,2010,For storage only,28,Lower Glenelg National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17977,24745,Australia,Victorian SOP,2013,For storage only,28,Lower Glenelg National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17978,555548798,Australia,Victorian SOP,2010,For storage only,28,Lower Goulburn National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17979,555548798,Australia,Victorian SOP,2013,For storage only,28,Lower Goulburn National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17980,555577173,Australia,Qld Rapid Assessment,2012,For storage only,28,Ma'alpiku Island (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -17981,555548777,Australia,Qld Rapid Assessment,2012,For storage only,28,Macalister Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -17982,356647,Australia,NSW SOP,2005,For storage only,28,Macanally,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17983,356647,Australia,NSW SOP,2007,For storage only,28,Macanally,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17984,356647,Australia,NSW SOP,2010,For storage only,28,Macanally,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17985,356647,Australia,NSW SOP,2013,For storage only,28,Macanally,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17986,356647,Australia,NSW SOP,2004,For storage only,28,Macanally,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -17987,126559,Australia,Victorian SOP,2005,For storage only,28,Macfarlane Lookout N.F.S.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17988,314642,Australia,Victorian SOP,2010,For storage only,28,Macleod Morass W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17989,314642,Australia,Victorian SOP,2005,For storage only,28,Macleod Morass W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17990,314642,Australia,Victorian SOP,2013,For storage only,28,Macleod Morass W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17991,310119,Australia,NSW SOP,2005,For storage only,28,Macquarie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17992,310119,Australia,NSW SOP,2007,For storage only,28,Macquarie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17993,310119,Australia,NSW SOP,2010,For storage only,28,Macquarie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17994,310119,Australia,NSW SOP,2013,For storage only,28,Macquarie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17995,310119,Australia,NSW SOP,2004,For storage only,28,Macquarie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17996,63115,Australia,Tasmanian WHA,2004,For storage only,28,Macquarie Harbour,Historic Site,"GD-PAME, version pre-2017",Not Reported,2018,English -17997,145579,Australia,WHA Outlook Report,2014,For storage only,28,Macquarie Island,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -17998,146690,Australia,NSW SOP,2005,For storage only,28,Macquarie Marshes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -17999,146690,Australia,NSW SOP,2007,For storage only,28,Macquarie Marshes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18000,146690,Australia,NSW SOP,2010,For storage only,28,Macquarie Marshes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18001,146690,Australia,NSW SOP,2013,For storage only,28,Macquarie Marshes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18002,555576755,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18003,146690,Australia,NSW SOP,2004,For storage only,28,Macquarie Marshes,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18004,392,Australia,NSW SOP,2005,For storage only,28,Macquarie Pass,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18005,392,Australia,NSW SOP,2007,For storage only,28,Macquarie Pass,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18006,392,Australia,NSW SOP,2010,For storage only,28,Macquarie Pass,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18007,392,Australia,NSW SOP,2013,For storage only,28,Macquarie Pass,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18008,555543498,Australia,NSW SOP,2005,For storage only,28,Macquarie Pass,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18009,555543498,Australia,NSW SOP,2007,For storage only,28,Macquarie Pass,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18010,555543498,Australia,NSW SOP,2010,For storage only,28,Macquarie Pass,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18011,392,Australia,NSW SOP,2004,For storage only,28,Macquarie Pass,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18012,555543498,Australia,NSW SOP,2013,For storage only,28,Macquarie Pass,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18013,446,Australia,Qld Rapid Assessment,2010,For storage only,28,Magnetic Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18014,446,Australia,Qld Rapid Assessment,2012,For storage only,28,Magnetic Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18015,9481,Australia,Qld Rapid Assessment,2010,For storage only,28,Main Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18016,9481,Australia,Qld Rapid Assessment,2012,For storage only,28,Main Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18017,306694,Australia,NSW SOP,2005,For storage only,28,Major Creek SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18018,306694,Australia,NSW SOP,2007,For storage only,28,Major Creek SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18019,306694,Australia,NSW SOP,2010,For storage only,28,Major Creek SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18020,306694,Australia,NSW SOP,2013,For storage only,28,Major Creek SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18021,306694,Australia,NSW SOP,2004,For storage only,28,Major Creek SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18022,356655,Australia,Qld Rapid Assessment,2010,For storage only,28,Malaan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18023,356655,Australia,Qld Rapid Assessment,2012,For storage only,28,Malaan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18024,555576757,Australia,NSW SOP,2013,For storage only,28,Malabar Headland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18025,356657,Australia,Victorian SOP,2005,For storage only,28,Maldon B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18026,356658,Australia,Qld Rapid Assessment,2010,For storage only,28,Maleny,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18027,356658,Australia,Qld Rapid Assessment,2012,For storage only,28,Maleny,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18028,314301,Australia,Victorian SOP,2005,For storage only,28,Mallacoota B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18029,314740,Australia,Victorian SOP,2010,For storage only,28,Mallanbool F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18030,314740,Australia,Victorian SOP,2013,For storage only,28,Mallanbool F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18031,310120,Australia,NSW SOP,2005,For storage only,28,Mallanganee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18032,310120,Australia,NSW SOP,2007,For storage only,28,Mallanganee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18033,310120,Australia,NSW SOP,2010,For storage only,28,Mallanganee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18034,310120,Australia,NSW SOP,2013,For storage only,28,Mallanganee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18035,310120,Australia,NSW SOP,2004,For storage only,28,Mallanganee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18036,358,Australia,NSW SOP,2005,For storage only,28,Mallee Cliffs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18037,358,Australia,NSW SOP,2007,For storage only,28,Mallee Cliffs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18038,358,Australia,NSW SOP,2010,For storage only,28,Mallee Cliffs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18039,358,Australia,NSW SOP,2013,For storage only,28,Mallee Cliffs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18040,358,Australia,NSW SOP,2004,For storage only,28,Mallee Cliffs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18041,23557,Australia,NSW SOP,2005,For storage only,28,Mann River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18042,23557,Australia,NSW SOP,2007,For storage only,28,Mann River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18043,23557,Australia,NSW SOP,2010,For storage only,28,Mann River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18044,23557,Australia,NSW SOP,2013,For storage only,28,Mann River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18045,23557,Australia,NSW SOP,2004,For storage only,28,Mann River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18046,1143,Australia,NSW SOP,2005,For storage only,28,Manobalai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18047,1143,Australia,NSW SOP,2007,For storage only,28,Manobalai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18048,1143,Australia,NSW SOP,2010,For storage only,28,Manobalai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18049,1143,Australia,NSW SOP,2013,For storage only,28,Manobalai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18050,1143,Australia,NSW SOP,2004,For storage only,28,Manobalai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18051,555577184,Australia,Qld Rapid Assessment,2012,For storage only,28,Mapleton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18053,24000,Australia,Qld Rapid Assessment,2010,For storage only,28,Mapleton Falls,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18054,24000,Australia,Qld Rapid Assessment,2012,For storage only,28,Mapleton Falls,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18055,356666,Australia,Victorian SOP,2010,For storage only,28,Marble Gully - Mount Tambo N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18056,356666,Australia,Victorian SOP,2013,For storage only,28,Marble Gully - Mount Tambo N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18057,305390,Australia,Victorian SOP,2010,For storage only,28,Marengo Reefs,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18058,305390,Australia,Victorian SOP,2005,For storage only,28,Marengo Reefs,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18059,305390,Australia,Victorian SOP,2013,For storage only,28,Marengo Reefs,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18060,555576759,Australia,NSW SOP,2013,For storage only,28,Mares Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18061,311947,Australia,NSW SOP,2005,For storage only,28,Maria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18062,311947,Australia,NSW SOP,2007,For storage only,28,Maria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18063,311947,Australia,NSW SOP,2010,For storage only,28,Maria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18064,311947,Australia,NSW SOP,2013,For storage only,28,Maria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18065,311947,Australia,NSW SOP,2004,For storage only,28,Maria,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18066,24002,Australia,Qld Rapid Assessment,2010,For storage only,28,Maria Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18067,24002,Australia,Qld Rapid Assessment,2012,For storage only,28,Maria Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18068,522,Australia,Birdlife IBA,2008,For storage only,28,Maria Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18069,64391,Australia,Qld Rapid Assessment,2010,For storage only,28,Mariala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18070,64391,Australia,Qld Rapid Assessment,2012,For storage only,28,Mariala,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18071,555543469,Australia,NSW SOP,2010,For storage only,28,Maroomba,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18072,555543469,Australia,NSW SOP,2013,For storage only,28,Maroomba,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18073,555543470,Australia,NSW SOP,2007,For storage only,28,Maroota Ridge,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18074,555543470,Australia,NSW SOP,2010,For storage only,28,Maroota Ridge,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18075,555543470,Australia,NSW SOP,2013,For storage only,28,Maroota Ridge,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18076,555548455,Australia,Qld Rapid Assessment,2012,For storage only,28,Marpa (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -18077,2605,Australia,NSW SOP,2005,For storage only,28,Marramarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18078,2605,Australia,NSW SOP,2007,For storage only,28,Marramarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18079,2605,Australia,NSW SOP,2010,For storage only,28,Marramarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18080,2605,Australia,NSW SOP,2013,For storage only,28,Marramarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18081,2605,Australia,NSW SOP,2004,For storage only,28,Marramarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18082,555543471,Australia,NSW SOP,2007,For storage only,28,Marrangaroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18083,555543471,Australia,NSW SOP,2010,For storage only,28,Marrangaroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18084,555543471,Australia,NSW SOP,2013,For storage only,28,Marrangaroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18085,313694,Australia,NSW SOP,2005,For storage only,28,Marshalls Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18086,313694,Australia,NSW SOP,2007,For storage only,28,Marshalls Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18087,313694,Australia,NSW SOP,2010,For storage only,28,Marshalls Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18088,313694,Australia,NSW SOP,2013,For storage only,28,Marshalls Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18089,313694,Australia,NSW SOP,2004,For storage only,28,Marshalls Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18090,313542,Australia,NTMEE,2013,For storage only,28,Mary River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18091,310122,Australia,NSW SOP,2005,For storage only,28,Maryland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18092,310122,Australia,NSW SOP,2007,For storage only,28,Maryland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18093,310122,Australia,NSW SOP,2010,For storage only,28,Maryland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18094,310122,Australia,NSW SOP,2013,For storage only,28,Maryland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18095,310122,Australia,NSW SOP,2004,For storage only,28,Maryland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18096,436,Australia,Qld Rapid Assessment,2010,For storage only,28,Mazeppa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18097,436,Australia,Qld Rapid Assessment,2012,For storage only,28,Mazeppa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18098,555576763,Australia,NSW SOP,2013,For storage only,28,Mcleods Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18099,310123,Australia,NSW SOP,2005,For storage only,28,Mebbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18100,310123,Australia,NSW SOP,2007,For storage only,28,Mebbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18101,310123,Australia,NSW SOP,2010,For storage only,28,Mebbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18102,310123,Australia,NSW SOP,2013,For storage only,28,Mebbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18103,310123,Australia,NSW SOP,2004,For storage only,28,Mebbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18104,356696,Australia,NSW SOP,2005,For storage only,28,Medowie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18105,356696,Australia,NSW SOP,2007,For storage only,28,Medowie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18106,356696,Australia,NSW SOP,2010,For storage only,28,Medowie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18107,356696,Australia,NSW SOP,2013,For storage only,28,Medowie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18108,555543477,Australia,NSW SOP,2010,For storage only,28,Medowie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18109,356696,Australia,NSW SOP,2004,For storage only,28,Medowie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18110,555543477,Australia,NSW SOP,2013,For storage only,28,Medowie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18111,311718,Australia,Victorian SOP,2005,For storage only,28,Meereek F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18112,311718,Australia,Victorian SOP,2013,For storage only,28,Meereek F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18113,356700,Australia,Qld Rapid Assessment,2010,For storage only,28,Melsonby (Gaarraay) (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -18114,356700,Australia,Qld Rapid Assessment,2012,For storage only,28,Melsonby (Gaarraay) (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -18115,310124,Australia,NSW SOP,2005,For storage only,28,Melville Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18116,310124,Australia,NSW SOP,2007,For storage only,28,Melville Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18117,310124,Australia,NSW SOP,2010,For storage only,28,Melville Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18118,310124,Australia,NSW SOP,2013,For storage only,28,Melville Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18119,310124,Australia,NSW SOP,2004,For storage only,28,Melville Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18120,313695,Australia,NSW SOP,2005,For storage only,28,Meringo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18121,313695,Australia,NSW SOP,2007,For storage only,28,Meringo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18122,313695,Australia,NSW SOP,2010,For storage only,28,Meringo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18123,313695,Australia,NSW SOP,2013,For storage only,28,Meringo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18124,313695,Australia,NSW SOP,2004,For storage only,28,Meringo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18125,310126,Australia,NSW SOP,2005,For storage only,28,Mernot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18126,310126,Australia,NSW SOP,2007,For storage only,28,Mernot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18127,310126,Australia,NSW SOP,2010,For storage only,28,Mernot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18128,310126,Australia,NSW SOP,2004,For storage only,28,Mernot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18129,310126,Australia,NSW SOP,2013,For storage only,28,Mernot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18130,310127,Australia,NSW SOP,2005,For storage only,28,Meroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18131,310127,Australia,NSW SOP,2007,For storage only,28,Meroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18132,310127,Australia,NSW SOP,2010,For storage only,28,Meroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18133,310127,Australia,NSW SOP,2013,For storage only,28,Meroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18134,310127,Australia,NSW SOP,2004,For storage only,28,Meroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18135,305377,Australia,Victorian SOP,2010,For storage only,28,Merri,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18136,305377,Australia,Victorian SOP,2005,For storage only,28,Merri,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18137,305377,Australia,Victorian SOP,2013,For storage only,28,Merri,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18138,313696,Australia,NSW SOP,2005,For storage only,28,Merriangaah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18139,313696,Australia,NSW SOP,2007,For storage only,28,Merriangaah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18140,313696,Australia,NSW SOP,2010,For storage only,28,Merriangaah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18141,313696,Australia,NSW SOP,2013,For storage only,28,Merriangaah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18142,313696,Australia,NSW SOP,2004,For storage only,28,Merriangaah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18143,555543456,Australia,NSW SOP,2010,For storage only,28,Merriwindi,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18144,555543456,Australia,NSW SOP,2013,For storage only,28,Merriwindi,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18145,309929,Australia,Qld Rapid Assessment,2010,For storage only,28,Michaelmas and Upolu Cays,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18146,309929,Australia,Qld Rapid Assessment,2012,For storage only,28,Michaelmas and Upolu Cays,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18147,356713,Australia,NSW SOP,2005,For storage only,28,Middle Brother,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18148,356713,Australia,NSW SOP,2007,For storage only,28,Middle Brother,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18149,356713,Australia,NSW SOP,2010,For storage only,28,Middle Brother,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18150,356713,Australia,NSW SOP,2013,For storage only,28,Middle Brother,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18151,356713,Australia,NSW SOP,2004,For storage only,28,Middle Brother,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18152,23564,Australia,NSW SOP,2005,For storage only,28,Midkin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18153,23564,Australia,NSW SOP,2007,For storage only,28,Midkin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18154,23564,Australia,NSW SOP,2010,For storage only,28,Midkin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18155,23564,Australia,NSW SOP,2013,For storage only,28,Midkin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18156,23564,Australia,NSW SOP,2004,For storage only,28,Midkin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18157,314836,Australia,Victorian SOP,2010,For storage only,28,Milangil Lake W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18158,314836,Australia,Victorian SOP,2005,For storage only,28,Milangil Lake W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18159,23565,Australia,NSW SOP,2005,For storage only,28,Mills Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18160,23565,Australia,NSW SOP,2007,For storage only,28,Mills Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18161,23565,Australia,NSW SOP,2004,For storage only,28,Mills Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18162,23565,Australia,NSW SOP,2010,For storage only,28,Mills Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18163,23565,Australia,NSW SOP,2013,For storage only,28,Mills Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18164,24018,Australia,Qld Rapid Assessment,2010,For storage only,28,Millstream Falls,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18165,24018,Australia,Qld Rapid Assessment,2012,For storage only,28,Millstream Falls,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18166,2612,Australia,NSW SOP,2005,For storage only,28,Mimosa Rocks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18167,2612,Australia,NSW SOP,2007,For storage only,28,Mimosa Rocks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18168,2612,Australia,NSW SOP,2010,For storage only,28,Mimosa Rocks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18169,2612,Australia,NSW SOP,2013,For storage only,28,Mimosa Rocks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18170,2612,Australia,NSW SOP,2004,For storage only,28,Mimosa Rocks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18171,64394,Australia,Qld Rapid Assessment,2010,For storage only,28,Minerva Hills,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18172,64394,Australia,Qld Rapid Assessment,2012,For storage only,28,Minerva Hills,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18173,555548563,Australia,NSW SOP,2013,For storage only,28,Minimbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18174,555548563,Australia,NSW SOP,2010,For storage only,28,Minimbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18175,313677,Australia,NSW SOP,2005,For storage only,28,Minjary,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18176,313677,Australia,NSW SOP,2007,For storage only,28,Minjary,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18177,313677,Australia,NSW SOP,2010,For storage only,28,Minjary,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18178,313677,Australia,NSW SOP,2013,For storage only,28,Minjary,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18179,313677,Australia,NSW SOP,2004,For storage only,28,Minjary,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18180,127186,Australia,Victorian SOP,2005,For storage only,28,Mitchell River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18181,127186,Australia,Victorian SOP,2010,For storage only,28,Mitchell River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18182,127186,Australia,Victorian SOP,2013,For storage only,28,Mitchell River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18183,555577198,Australia,Qld Rapid Assessment,2012,For storage only,28,Mitirinchi Island (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -18184,314324,Australia,Victorian SOP,2005,For storage only,28,Mitta Mitta B.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18185,555543520,Australia,NSW SOP,2010,For storage only,28,Moema,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18186,555543520,Australia,NSW SOP,2013,For storage only,28,Moema,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18187,23569,Australia,NSW SOP,2005,For storage only,28,Moffats Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18188,23569,Australia,NSW SOP,2007,For storage only,28,Moffats Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18189,23569,Australia,NSW SOP,2010,For storage only,28,Moffats Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18190,23569,Australia,NSW SOP,2013,For storage only,28,Moffats Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18191,23569,Australia,NSW SOP,2004,For storage only,28,Moffats Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18194,126598,Australia,Qld Rapid Assessment,2010,For storage only,28,Molle Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18195,126598,Australia,Qld Rapid Assessment,2012,For storage only,28,Molle Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18196,313678,Australia,NSW SOP,2005,For storage only,28,Monga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18197,313678,Australia,NSW SOP,2007,For storage only,28,Monga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18198,313678,Australia,NSW SOP,2010,For storage only,28,Monga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18199,313678,Australia,NSW SOP,2013,For storage only,28,Monga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18200,555543526,Australia,NSW SOP,2007,For storage only,28,Monga,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18201,555543526,Australia,NSW SOP,2010,For storage only,28,Monga,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18202,555543526,Australia,NSW SOP,2013,For storage only,28,Monga,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18203,313678,Australia,NSW SOP,2004,For storage only,28,Monga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18204,313697,Australia,NSW SOP,2005,For storage only,28,Monkerai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18205,313697,Australia,NSW SOP,2007,For storage only,28,Monkerai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18206,313697,Australia,NSW SOP,2010,For storage only,28,Monkerai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18207,313697,Australia,NSW SOP,2013,For storage only,28,Monkerai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18208,313697,Australia,NSW SOP,2004,For storage only,28,Monkerai,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18209,310133,Australia,NSW SOP,2005,For storage only,28,Monkeycot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18210,310133,Australia,NSW SOP,2007,For storage only,28,Monkeycot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18211,310133,Australia,NSW SOP,2010,For storage only,28,Monkeycot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18212,310133,Australia,NSW SOP,2013,For storage only,28,Monkeycot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18213,310133,Australia,NSW SOP,2004,For storage only,28,Monkeycot,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18214,63136,Australia,NSW SOP,2005,For storage only,28,Montague Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18215,63136,Australia,NSW SOP,2007,For storage only,28,Montague Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18216,63136,Australia,NSW SOP,2010,For storage only,28,Montague Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18217,63136,Australia,NSW SOP,2013,For storage only,28,Montague Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18218,63136,Australia,NSW SOP,2004,For storage only,28,Montague Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18219,310134,Australia,NSW SOP,2005,For storage only,28,Mooball,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18220,310134,Australia,NSW SOP,2007,For storage only,28,Mooball,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18221,310134,Australia,NSW SOP,2010,For storage only,28,Mooball,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18222,310134,Australia,NSW SOP,2013,For storage only,28,Mooball,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18223,310134,Australia,NSW SOP,2004,For storage only,28,Mooball,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18224,126608,Australia,Qld Rapid Assessment,2010,For storage only,28,Moogerah Peaks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18225,126608,Australia,Qld Rapid Assessment,2012,For storage only,28,Moogerah Peaks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18226,24025,Australia,Qld Rapid Assessment,2010,For storage only,28,Mooloolah River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18227,24025,Australia,Qld Rapid Assessment,2012,For storage only,28,Mooloolah River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18228,23573,Australia,NSW SOP,2005,For storage only,28,Moon Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18229,23573,Australia,NSW SOP,2007,For storage only,28,Moon Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18230,23573,Australia,NSW SOP,2010,For storage only,28,Moon Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18231,23573,Australia,NSW SOP,2013,For storage only,28,Moon Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18232,23573,Australia,NSW SOP,2004,For storage only,28,Moon Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18233,24761,Australia,Victorian SOP,2010,For storage only,28,Moondarra,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18234,24761,Australia,Victorian SOP,2005,For storage only,28,Moondarra,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18235,24761,Australia,Victorian SOP,2013,For storage only,28,Moondarra,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18236,23574,Australia,NSW SOP,2005,For storage only,28,Moonee Beach,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18237,23574,Australia,NSW SOP,2007,For storage only,28,Moonee Beach,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18238,23574,Australia,NSW SOP,2010,For storage only,28,Moonee Beach,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18239,23574,Australia,NSW SOP,2013,For storage only,28,Moonee Beach,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18240,23574,Australia,NSW SOP,2004,For storage only,28,Moonee Beach,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18241,310135,Australia,NSW SOP,2005,For storage only,28,Moore Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18242,310135,Australia,NSW SOP,2007,For storage only,28,Moore Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18243,310135,Australia,NSW SOP,2010,For storage only,28,Moore Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18244,310135,Australia,NSW SOP,2013,For storage only,28,Moore Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18245,310135,Australia,NSW SOP,2004,For storage only,28,Moore Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18246,24762,Australia,Victorian SOP,2010,For storage only,28,Moormurng F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18247,24762,Australia,Victorian SOP,2005,For storage only,28,Moormurng F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18248,24762,Australia,Victorian SOP,2013,For storage only,28,Moormurng F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18249,126614,Australia,Qld Rapid Assessment,2010,For storage only,28,Moorrinya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18250,126614,Australia,Qld Rapid Assessment,2012,For storage only,28,Moorrinya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18251,314746,Australia,Victorian SOP,2005,For storage only,28,Morass Creek F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18252,24026,Australia,Qld Rapid Assessment,2010,For storage only,28,Moresby Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18253,24026,Australia,Qld Rapid Assessment,2012,For storage only,28,Moresby Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18254,24027,Australia,Qld Rapid Assessment,2010,For storage only,28,Moreton Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18255,24027,Australia,Qld Rapid Assessment,2012,For storage only,28,Moreton Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18256,126620,Australia,Victorian SOP,2010,For storage only,28,Mornington Peninsula National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18257,126620,Australia,Victorian SOP,2005,For storage only,28,Mornington Peninsula National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18258,126620,Australia,Victorian SOP,2013,For storage only,28,Mornington Peninsula National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18259,313698,Australia,NSW SOP,2005,For storage only,28,Mororo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18260,313698,Australia,NSW SOP,2007,For storage only,28,Mororo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18261,313698,Australia,NSW SOP,2010,For storage only,28,Mororo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18262,313698,Australia,NSW SOP,2013,For storage only,28,Mororo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18263,313698,Australia,NSW SOP,2004,For storage only,28,Mororo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18264,23577,Australia,NSW SOP,2005,For storage only,28,Morrisons Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18265,23577,Australia,NSW SOP,2007,For storage only,28,Morrisons Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18266,23577,Australia,NSW SOP,2010,For storage only,28,Morrisons Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18267,23577,Australia,NSW SOP,2013,For storage only,28,Morrisons Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18268,23577,Australia,NSW SOP,2004,For storage only,28,Morrisons Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18269,306756,Australia,Victorian SOP,2005,For storage only,28,Mortimers Paddock B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18270,356775,Australia,Victorian SOP,2005,For storage only,28,Mortlake Common F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18271,356775,Australia,Victorian SOP,2013,For storage only,28,Mortlake Common F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18272,63863,Australia,NSW SOP,2005,For storage only,28,Morton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18273,63863,Australia,NSW SOP,2007,For storage only,28,Morton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18274,63863,Australia,NSW SOP,2010,For storage only,28,Morton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18275,63863,Australia,NSW SOP,2013,For storage only,28,Morton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18276,555543506,Australia,NSW SOP,2005,For storage only,28,Morton,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18277,555543506,Australia,NSW SOP,2007,For storage only,28,Morton,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18278,555543506,Australia,NSW SOP,2010,For storage only,28,Morton,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18279,555543506,Australia,NSW SOP,2013,For storage only,28,Morton,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18280,63863,Australia,NSW SOP,2004,For storage only,28,Morton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18281,24765,Australia,Victorian SOP,2010,For storage only,28,Morwell National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18282,24765,Australia,Victorian SOP,2005,For storage only,28,Morwell National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18283,24765,Australia,Victorian SOP,2013,For storage only,28,Morwell National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18284,23579,Australia,NSW SOP,2005,For storage only,28,Mother Of Ducks Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18285,23579,Australia,NSW SOP,2007,For storage only,28,Mother Of Ducks Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18286,23579,Australia,NSW SOP,2010,For storage only,28,Mother Of Ducks Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18287,23579,Australia,NSW SOP,2013,For storage only,28,Mother Of Ducks Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18288,23579,Australia,NSW SOP,2004,For storage only,28,Mother Of Ducks Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18289,5331,Australia,Birdlife IBA,2008,For storage only,28,Moulting Lagoon,Game Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18290,67764,Australia,Birdlife IBA,2008,For storage only,28,Moulting Lagoon,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -18291,555548713,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18292,442,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Aberdeen,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18293,442,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Aberdeen,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18294,356777,Australia,Victorian SOP,2005,For storage only,28,Mount Arapiles-Tooan,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18295,356777,Australia,Victorian SOP,2010,For storage only,28,Mount Arapiles-Tooan,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18296,356777,Australia,Victorian SOP,2013,For storage only,28,Mount Arapiles-Tooan,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18297,126624,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Archer,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18298,126624,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Archer,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18299,423,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Barney,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18300,423,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Barney,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18301,24029,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18302,24029,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18303,126627,Australia,Victorian SOP,2005,For storage only,28,Mount Beckworth S.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18304,356780,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Binga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18305,356780,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Binga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18306,2694,Australia,Victorian SOP,2010,For storage only,28,Mount Bolangum N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18307,2694,Australia,Victorian SOP,2005,For storage only,28,Mount Bolangum N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18308,63144,Australia,Victorian SOP,2005,For storage only,28,Mount Buangor,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18309,63144,Australia,Victorian SOP,2010,For storage only,28,Mount Buangor,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18310,63144,Australia,Victorian SOP,2013,For storage only,28,Mount Buangor,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18311,535,Australia,Victorian SOP,2005,For storage only,28,Mount Buffalo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18312,535,Australia,Victorian SOP,2010,For storage only,28,Mount Buffalo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18313,535,Australia,Victorian SOP,2013,For storage only,28,Mount Buffalo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18314,356783,Australia,NSW SOP,2005,For storage only,28,Mount Canobolas,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18315,356783,Australia,NSW SOP,2007,For storage only,28,Mount Canobolas,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18316,356783,Australia,NSW SOP,2010,For storage only,28,Mount Canobolas,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18317,356783,Australia,NSW SOP,2013,For storage only,28,Mount Canobolas,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18318,356783,Australia,NSW SOP,2004,For storage only,28,Mount Canobolas,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18319,24033,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Chinghee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18320,24033,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Chinghee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18321,310138,Australia,NSW SOP,2005,For storage only,28,Mount Clifford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18322,310138,Australia,NSW SOP,2007,For storage only,28,Mount Clifford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18323,310138,Australia,NSW SOP,2010,For storage only,28,Mount Clifford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18324,310138,Australia,NSW SOP,2013,For storage only,28,Mount Clifford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18325,310138,Australia,NSW SOP,2004,For storage only,28,Mount Clifford,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18326,310139,Australia,NSW SOP,2005,For storage only,28,Mount Clunie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18327,310139,Australia,NSW SOP,2007,For storage only,28,Mount Clunie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18328,310139,Australia,NSW SOP,2010,For storage only,28,Mount Clunie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18329,310139,Australia,NSW SOP,2013,For storage only,28,Mount Clunie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18330,310139,Australia,NSW SOP,2004,For storage only,28,Mount Clunie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18331,24034,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Colosseum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18332,24034,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Colosseum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18333,24035,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Cook,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18334,24035,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Cook,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18335,63145,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Coolum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18336,63145,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Coolum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18337,555576778,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18338,126642,Australia,Victorian SOP,2005,For storage only,28,Mount Delegate S.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18339,306764,Australia,Victorian SOP,2010,For storage only,28,Mount Doboobetic B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18340,306764,Australia,Victorian SOP,2005,For storage only,28,Mount Doboobetic B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18341,31040,Australia;Switzerland,NSW SOP,2005,For storage only,28,Kärpf,Federal Hunting Reserves,"GD-PAME, version pre-2017",Not Reported,2018,English -18342,31040,Australia;Switzerland,NSW SOP,2007,For storage only,28,Kärpf,Federal Hunting Reserves,"GD-PAME, version pre-2017",Not Reported,2018,English -18343,31040,Switzerland;Australia,NSW SOP,2010,For storage only,28,Kärpf,Federal Hunting Reserves,"GD-PAME, version pre-2017",Not Reported,2018,English -18344,31040,Australia;Switzerland,NSW SOP,2013,For storage only,28,Kärpf,Federal Hunting Reserves,"GD-PAME, version pre-2017",Not Reported,2018,English -18345,310140,Australia,NSW SOP,2004,For storage only,28,Mount Dowling,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18346,24767,Australia,Victorian SOP,2005,For storage only,28,Mount Eccles National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18347,24767,Australia,Victorian SOP,2010,For storage only,28,Mount Eccles National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18348,24767,Australia,Victorian SOP,2013,For storage only,28,Mount Eccles National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18349,356790,Australia,Victorian SOP,2010,For storage only,28,Mount Elizabeth N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18350,356790,Australia,Victorian SOP,2005,For storage only,28,Mount Elizabeth N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18351,356790,Australia,Victorian SOP,2013,For storage only,28,Mount Elizabeth N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18352,126643,Australia,Victorian SOP,2005,For storage only,28,Mount Erip F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18353,126644,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Etna Caves,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18354,126644,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Etna Caves,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18355,126648,Australia,Victorian SOP,2005,For storage only,28,Mount Gibbo N.F.S.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18356,102569,Australia,Victorian SOP,2005,For storage only,28,Mount Granya,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18357,102569,Australia,Victorian SOP,2010,For storage only,28,Mount Granya,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18358,102569,Australia,Victorian SOP,2013,For storage only,28,Mount Granya,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18359,10589,Australia,NSW SOP,2005,For storage only,28,Mount Hyland,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18360,10589,Australia,NSW SOP,2007,For storage only,28,Mount Hyland,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18361,10589,Australia,NSW SOP,2010,For storage only,28,Mount Hyland,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18363,10589,Australia,NSW SOP,2013,For storage only,28,Mount Hyland,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18365,356797,Australia,NSW SOP,2005,For storage only,28,Mount Hyland,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18366,356797,Australia,NSW SOP,2007,For storage only,28,Mount Hyland,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18367,10589,Australia,NSW SOP,2004,For storage only,28,Mount Hyland,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18368,356797,Australia,NSW SOP,2004,For storage only,28,Mount Hyland,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18369,24042,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Hypipamee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18370,24042,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Hypipamee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18371,382,Australia,NSW SOP,2005,For storage only,28,Mount Imlay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18372,382,Australia,NSW SOP,2007,For storage only,28,Mount Imlay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18373,382,Australia,NSW SOP,2010,For storage only,28,Mount Imlay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18374,382,Australia,NSW SOP,2013,For storage only,28,Mount Imlay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18375,382,Australia,NSW SOP,2004,For storage only,28,Mount Imlay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18376,314749,Australia,Victorian SOP,2010,For storage only,28,Mount Jeffcott F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18377,314749,Australia,Victorian SOP,2005,For storage only,28,Mount Jeffcott F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18378,102554,Australia,NSW SOP,2004,For storage only,28,Mount Jerusalem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18379,102554,Australia,NSW SOP,2005,For storage only,28,Mount Jerusalem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18380,102554,Australia,NSW SOP,2007,For storage only,28,Mount Jerusalem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18381,102554,Australia,NSW SOP,2010,For storage only,28,Mount Jerusalem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18382,102554,Australia,NSW SOP,2013,For storage only,28,Mount Jerusalem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18383,24043,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Jim Crow,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18384,24043,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Jim Crow,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18385,360,Australia,NSW SOP,2005,For storage only,28,Mount Kaputar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18386,360,Australia,NSW SOP,2007,For storage only,28,Mount Kaputar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18387,360,Australia,NSW SOP,2010,For storage only,28,Mount Kaputar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18388,360,Australia,NSW SOP,2013,For storage only,28,Mount Kaputar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18389,360,Australia,NSW SOP,2004,For storage only,28,Mount Kaputar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18390,126656,Australia,Victorian SOP,2005,For storage only,28,Mount Korong N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18391,24769,Australia,Victorian SOP,2005,For storage only,28,Mount Lawson,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18392,24769,Australia,Victorian SOP,2010,For storage only,28,Mount Lawson,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18393,24769,Australia,Victorian SOP,2013,For storage only,28,Mount Lawson,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18394,555548628,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18395,555548813,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Lewis,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18396,555548813,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Lewis,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18397,356802,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Mackay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18398,356802,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Mackay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18399,310141,Australia,NSW SOP,2005,For storage only,28,Mount Mackenzie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18400,310141,Australia,NSW SOP,2007,For storage only,28,Mount Mackenzie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18401,310141,Australia,NSW SOP,2010,For storage only,28,Mount Mackenzie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18402,310141,Australia,NSW SOP,2013,For storage only,28,Mount Mackenzie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18403,310141,Australia,NSW SOP,2004,For storage only,28,Mount Mackenzie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18404,126657,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Martin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18405,126657,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Martin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18406,310141,Australia,Victorian SOP,2005,For storage only,28,Mount Mackenzie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18407,64277,Australia,Victorian SOP,2005,For storage only,28,Mount Mitta Mitta F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18408,24770,Australia,Victorian SOP,2005,For storage only,28,Mount Napier,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18409,24770,Australia,Victorian SOP,2010,For storage only,28,Mount Napier,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18410,24770,Australia,Victorian SOP,2013,For storage only,28,Mount Napier,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18411,23581,Australia,NSW SOP,2005,For storage only,28,Mount Neville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18412,23581,Australia,NSW SOP,2007,For storage only,28,Mount Neville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18413,23581,Australia,NSW SOP,2010,For storage only,28,Mount Neville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18414,23581,Australia,NSW SOP,2013,For storage only,28,Mount Neville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18415,23581,Australia,NSW SOP,2004,For storage only,28,Mount Neville,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18416,309932,Australia,NSW SOP,2005,For storage only,28,Mount Nothofagus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18417,309932,Australia,NSW SOP,2007,For storage only,28,Mount Nothofagus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18418,309932,Australia,NSW SOP,2010,For storage only,28,Mount Nothofagus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18419,309932,Australia,NSW SOP,2013,For storage only,28,Mount Nothofagus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18420,309932,Australia,NSW SOP,2004,For storage only,28,Mount Nothofagus,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18421,310142,Australia,NSW SOP,2005,For storage only,28,Mount Nullum,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18422,310142,Australia,NSW SOP,2007,For storage only,28,Mount Nullum,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18423,310142,Australia,NSW SOP,2010,For storage only,28,Mount Nullum,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18424,310142,Australia,NSW SOP,2004,For storage only,28,Mount Nullum,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18425,310142,Australia,NSW SOP,2013,For storage only,28,Mount Nullum,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18426,309933,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount O'Connell,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18427,309933,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount O'Connell,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18428,126660,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Ossa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18429,126660,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Ossa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18430,310143,Australia,NSW SOP,2005,For storage only,28,Mount Pikapene,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18431,310143,Australia,NSW SOP,2007,For storage only,28,Mount Pikapene,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18432,310143,Australia,NSW SOP,2010,For storage only,28,Mount Pikapene,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18433,310143,Australia,NSW SOP,2013,For storage only,28,Mount Pikapene,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18434,555543504,Australia,NSW SOP,2010,For storage only,28,Mount Pikapene,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18435,555543504,Australia,NSW SOP,2013,For storage only,28,Mount Pikapene,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18436,310143,Australia,NSW SOP,2004,For storage only,28,Mount Pikapene,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18437,24049,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Pinbarren,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18438,24049,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Pinbarren,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18439,306773,Australia,Victorian SOP,2010,For storage only,28,Mount Piper N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18440,306773,Australia,Victorian SOP,2005,For storage only,28,Mount Piper N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18441,306773,Australia,Victorian SOP,2013,For storage only,28,Mount Piper N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18442,551,Australia,Victorian SOP,2005,For storage only,28,Mount Richmond National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18443,551,Australia,Victorian SOP,2010,For storage only,28,Mount Richmond National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18444,551,Australia,Victorian SOP,2013,For storage only,28,Mount Richmond National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18445,309574,Australia,NSW SOP,2005,For storage only,28,Mount Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18446,309574,Australia,NSW SOP,2007,For storage only,28,Mount Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18447,309574,Australia,NSW SOP,2010,For storage only,28,Mount Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18448,309574,Australia,NSW SOP,2013,For storage only,28,Mount Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18449,310067,Australia,NSW SOP,2004,For storage only,28,Fortis Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18450,545,Australia,Victorian SOP,2005,For storage only,28,Mount Samaria,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18451,545,Australia,Victorian SOP,2010,For storage only,28,Mount Samaria,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18452,545,Australia,Victorian SOP,2013,For storage only,28,Mount Samaria,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18453,10590,Australia,NSW SOP,2005,For storage only,28,Mount Seaview,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18454,10590,Australia,NSW SOP,2007,For storage only,28,Mount Seaview,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18455,10590,Australia,NSW SOP,2010,For storage only,28,Mount Seaview,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18456,10590,Australia,NSW SOP,2013,For storage only,28,Mount Seaview,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18457,10590,Australia,NSW SOP,2004,For storage only,28,Mount Seaview,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18458,555548702,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Spurgeon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18459,555548702,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Spurgeon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18460,356666,Australia,Victorian SOP,2005,For storage only,28,Marble Gully - Mount Tambo N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18461,440,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Walsh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18462,440,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Walsh,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18463,24051,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18464,24051,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18465,314655,Australia,Victorian SOP,2005,For storage only,28,Mount William Swamp (The Big Swamp) W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18466,356825,Australia,Qld Rapid Assessment,2010,For storage only,28,Mount Windsor,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18468,356825,Australia,Qld Rapid Assessment,2012,For storage only,28,Mount Windsor,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18470,308010,Australia,Victorian SOP,2005,For storage only,28,Mount Wombat-Garden Range F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18471,308010,Australia,Victorian SOP,2010,For storage only,28,Mount Wombat-Garden Range F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18472,308010,Australia,Victorian SOP,2013,For storage only,28,Mount Wombat-Garden Range F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18473,9508,Australia,Victorian SOP,2010,For storage only,28,Mount Worth,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18474,9508,Australia,Victorian SOP,2005,For storage only,28,Mount Worth,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18475,9508,Australia,Victorian SOP,2013,For storage only,28,Mount Worth,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18476,23582,Australia,NSW SOP,2005,For storage only,28,Mount Yarrowyck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18477,23582,Australia,NSW SOP,2007,For storage only,28,Mount Yarrowyck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18478,23582,Australia,NSW SOP,2010,For storage only,28,Mount Yarrowyck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18479,23582,Australia,NSW SOP,2013,For storage only,28,Mount Yarrowyck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18480,23582,Australia,NSW SOP,2004,For storage only,28,Mount Yarrowyck,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18481,309936,Australia,Qld Rapid Assessment,2010,For storage only,28,Mowbray,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18482,309936,Australia,Qld Rapid Assessment,2012,For storage only,28,Mowbray,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18483,555548607,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18484,555548607,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18485,310145,Australia,NSW SOP,2005,For storage only,28,Muckleewee Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18486,310145,Australia,NSW SOP,2007,For storage only,28,Muckleewee Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18487,310145,Australia,NSW SOP,2010,For storage only,28,Muckleewee Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18488,310145,Australia,NSW SOP,2013,For storage only,28,Muckleewee Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18489,310145,Australia,NSW SOP,2004,For storage only,28,Muckleewee Mountain,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18490,310146,Australia,NSW SOP,2005,For storage only,28,Mudjarn,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18491,310146,Australia,NSW SOP,2007,For storage only,28,Mudjarn,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18492,310146,Australia,NSW SOP,2010,For storage only,28,Mudjarn,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18493,310146,Australia,NSW SOP,2004,For storage only,28,Mudjarn,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18494,310146,Australia,NSW SOP,2013,For storage only,28,Mudjarn,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18495,555548739,Australia,Qld Rapid Assessment,2010,For storage only,28,Mudlo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18496,555548739,Australia,Qld Rapid Assessment,2012,For storage only,28,Mudlo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18497,555576782,Australia,NSW SOP,2013,For storage only,28,Mugii Murum-ban,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18498,23585,Australia,NSW SOP,2005,For storage only,28,Muldiva,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18499,23585,Australia,NSW SOP,2007,For storage only,28,Muldiva,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18500,23585,Australia,NSW SOP,2010,For storage only,28,Muldiva,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18501,23585,Australia,NSW SOP,2004,For storage only,28,Muldiva,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18502,23585,Australia,NSW SOP,2013,For storage only,28,Muldiva,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18503,102555,Australia,NSW SOP,2005,For storage only,28,Mulgoa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18504,102555,Australia,NSW SOP,2007,For storage only,28,Mulgoa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18505,102555,Australia,NSW SOP,2010,For storage only,28,Mulgoa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18506,102555,Australia,NSW SOP,2013,For storage only,28,Mulgoa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18507,102555,Australia,NSW SOP,2004,For storage only,28,Mulgoa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18508,555548615,Australia,NSW SOP,2010,For storage only,28,Mullengandra,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18509,310147,Australia,NSW SOP,2004,For storage only,28,Mullengandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18510,555548615,Australia,NSW SOP,2013,For storage only,28,Mullengandra,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18511,310147,Australia,NSW SOP,2005,For storage only,28,Mullengandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18512,310147,Australia,NSW SOP,2007,For storage only,28,Mullengandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18513,310147,Australia,NSW SOP,2010,For storage only,28,Mullengandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18514,310147,Australia,NSW SOP,2013,For storage only,28,Mullengandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18515,356849,Australia,NSW SOP,2005,For storage only,28,Mullion Range,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18516,356849,Australia,NSW SOP,2007,For storage only,28,Mullion Range,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18517,356849,Australia,NSW SOP,2010,For storage only,28,Mullion Range,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18518,356849,Australia,NSW SOP,2013,For storage only,28,Mullion Range,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18519,356849,Australia,NSW SOP,2004,For storage only,28,Mullion Range,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18520,314751,Australia,Victorian SOP,2010,For storage only,28,Mullungdung F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18521,314751,Australia,Victorian SOP,2005,For storage only,28,Mullungdung F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18522,314751,Australia,Victorian SOP,2013,For storage only,28,Mullungdung F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18523,310148,Australia,NSW SOP,2005,For storage only,28,Mummel Gulf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18524,310148,Australia,NSW SOP,2007,For storage only,28,Mummel Gulf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18525,310148,Australia,NSW SOP,2010,For storage only,28,Mummel Gulf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18526,310148,Australia,NSW SOP,2013,For storage only,28,Mummel Gulf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18527,356852,Australia,NSW SOP,2005,For storage only,28,Mummel Gulf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18528,356852,Australia,NSW SOP,2007,For storage only,28,Mummel Gulf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18529,356852,Australia,NSW SOP,2010,For storage only,28,Mummel Gulf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18530,310148,Australia,NSW SOP,2004,For storage only,28,Mummel Gulf,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18531,356852,Australia,NSW SOP,2004,For storage only,28,Mummel Gulf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18532,356852,Australia,NSW SOP,2013,For storage only,28,Mummel Gulf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18533,1160,Australia,NSW SOP,2005,For storage only,28,Mundoonen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18534,1160,Australia,NSW SOP,2007,For storage only,28,Mundoonen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18535,1160,Australia,NSW SOP,2010,For storage only,28,Mundoonen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18536,1160,Australia,NSW SOP,2013,For storage only,28,Mundoonen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18537,1160,Australia,NSW SOP,2004,For storage only,28,Mundoonen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18538,311889,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18539,1138,Australia,NSW SOP,2005,For storage only,28,Munghorn Gap,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18540,1138,Australia,NSW SOP,2007,For storage only,28,Munghorn Gap,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18541,1138,Australia,NSW SOP,2010,For storage only,28,Munghorn Gap,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18542,1138,Australia,NSW SOP,2013,For storage only,28,Munghorn Gap,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18543,1138,Australia,NSW SOP,2004,For storage only,28,Munghorn Gap,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18544,126692,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18545,2608,Australia,NSW SOP,2005,For storage only,28,Mungo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18546,2608,Australia,NSW SOP,2007,For storage only,28,Mungo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18547,2608,Australia,NSW SOP,2010,For storage only,28,Mungo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18548,2608,Australia,NSW SOP,2013,For storage only,28,Mungo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18549,555576783,Australia,NSW SOP,2013,For storage only,28,Mungo,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18550,2608,Australia,NSW SOP,2004,For storage only,28,Mungo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18551,356856,Australia,NSW SOP,2005,For storage only,28,Munmorah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18552,356856,Australia,NSW SOP,2007,For storage only,28,Munmorah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18553,356856,Australia,NSW SOP,2010,For storage only,28,Munmorah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18554,356856,Australia,NSW SOP,2013,For storage only,28,Munmorah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18555,356856,Australia,NSW SOP,2004,For storage only,28,Munmorah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18556,310149,Australia,NSW SOP,2005,For storage only,28,Munro Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18557,310149,Australia,NSW SOP,2007,For storage only,28,Munro Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18558,310149,Australia,NSW SOP,2010,For storage only,28,Munro Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18559,310149,Australia,NSW SOP,2013,For storage only,28,Munro Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18560,310149,Australia,NSW SOP,2004,For storage only,28,Munro Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18561,1151,Australia,NSW SOP,2005,For storage only,28,Muogamarra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18562,1151,Australia,NSW SOP,2007,For storage only,28,Muogamarra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18563,1151,Australia,NSW SOP,2010,For storage only,28,Muogamarra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18564,1151,Australia,NSW SOP,2013,For storage only,28,Muogamarra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18565,1151,Australia,NSW SOP,2004,For storage only,28,Muogamarra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18566,389,Australia,NSW SOP,2005,For storage only,28,Murramarang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18567,389,Australia,NSW SOP,2007,For storage only,28,Murramarang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18568,389,Australia,NSW SOP,2010,For storage only,28,Murramarang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18569,389,Australia,NSW SOP,2013,For storage only,28,Murramarang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18570,389,Australia,NSW SOP,2004,For storage only,28,Murramarang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18571,314863,Australia,Victorian SOP,2005,For storage only,28,Murray - Kulkyne Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18572,314863,Australia,Victorian SOP,2010,For storage only,28,Murray - Kulkyne Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18573,314863,Australia,Victorian SOP,2013,For storage only,28,Murray - Kulkyne Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18574,63165,Australia,Victorian SOP,2005,For storage only,28,Murray - Sunset National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18575,63165,Australia,Victorian SOP,2010,For storage only,28,Murray - Sunset National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18576,63165,Australia,Victorian SOP,2013,For storage only,28,Murray - Sunset National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18577,555576785,Australia,NSW SOP,2013,For storage only,28,Murray Valley,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18578,555576786,Australia,NSW SOP,2013,For storage only,28,Murray Valley,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18579,314792,Australia,Victorian SOP,2005,For storage only,28,Murrindal F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18580,555576790,Australia,NSW SOP,2013,For storage only,28,Yanga,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18581,555576787,Australia,NSW SOP,2013,For storage only,28,Murrumbidgee Valley,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18583,555576788,Australia,NSW SOP,2013,For storage only,28,Yanga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18585,555576789,Australia,NSW SOP,2013,For storage only,28,Murrumbidgee Valley,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18587,555543517,Australia,NSW SOP,2010,For storage only,28,Murrurundi Pass,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18588,555543517,Australia,NSW SOP,2013,For storage only,28,Murrurundi Pass,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18589,305375,Australia,Victorian SOP,2010,For storage only,28,Mushroom Reef,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18590,305375,Australia,Victorian SOP,2005,For storage only,28,Mushroom Reef,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18591,305375,Australia,Victorian SOP,2013,For storage only,28,Mushroom Reef,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18592,310150,Australia,NSW SOP,2005,For storage only,28,Mutawintji,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18593,310150,Australia,NSW SOP,2007,For storage only,28,Mutawintji,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18594,310150,Australia,NSW SOP,2010,For storage only,28,Mutawintji,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18595,310150,Australia,NSW SOP,2013,For storage only,28,Mutawintji,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18596,313679,Australia,NSW SOP,2005,For storage only,28,Mutawintji,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18597,313679,Australia,NSW SOP,2007,For storage only,28,Mutawintji,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18598,313679,Australia,NSW SOP,2010,For storage only,28,Mutawintji,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18599,313679,Australia,NSW SOP,2013,For storage only,28,Mutawintji,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18600,310150,Australia,NSW SOP,2004,For storage only,28,Mutawintji,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18601,313681,Australia,NSW SOP,2004,For storage only,28,Towarri,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18602,23588,Australia,NSW SOP,2005,For storage only,28,Muttonbird Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18603,23588,Australia,NSW SOP,2007,For storage only,28,Muttonbird Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18604,23588,Australia,NSW SOP,2010,For storage only,28,Muttonbird Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18605,23588,Australia,NSW SOP,2013,For storage only,28,Muttonbird Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18606,23588,Australia,NSW SOP,2004,For storage only,28,Muttonbird Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18607,363,Australia,NSW SOP,2005,For storage only,28,Myall Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18608,363,Australia,NSW SOP,2007,For storage only,28,Myall Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18609,363,Australia,NSW SOP,2010,For storage only,28,Myall Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18610,363,Australia,NSW SOP,2013,For storage only,28,Myall Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18611,363,Australia,NSW SOP,2004,For storage only,28,Myall Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18612,310151,Australia,NSW SOP,2005,For storage only,28,Myalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18613,310151,Australia,NSW SOP,2007,For storage only,28,Myalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18614,310151,Australia,NSW SOP,2010,For storage only,28,Myalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18615,310151,Australia,NSW SOP,2013,For storage only,28,Myalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18616,310151,Australia,NSW SOP,2004,For storage only,28,Myalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18617,1132,Australia,NSW SOP,2005,For storage only,28,Nadgee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18618,1132,Australia,NSW SOP,2007,For storage only,28,Nadgee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18619,1132,Australia,NSW SOP,2010,For storage only,28,Nadgee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18620,1132,Australia,NSW SOP,2013,For storage only,28,Nadgee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18621,1132,Australia,NSW SOP,2004,For storage only,28,Nadgee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18622,1132,Australia,Birdlife IBA,2008,For storage only,28,Nadgee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18623,356886,Australia,NSW SOP,2005,For storage only,28,Nadgigomar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18624,356886,Australia,NSW SOP,2007,For storage only,28,Nadgigomar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18625,356886,Australia,NSW SOP,2010,For storage only,28,Nadgigomar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18626,356886,Australia,NSW SOP,2013,For storage only,28,Nadgigomar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18627,356886,Australia,NSW SOP,2004,For storage only,28,Nadgigomar,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18628,356888,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18629,356888,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18630,356889,Australia,Qld Rapid Assessment,2010,For storage only,28,Nairana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18631,356889,Australia,Qld Rapid Assessment,2012,For storage only,28,Nairana,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18632,10594,Australia,NSW SOP,2005,For storage only,28,Nangar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18633,10594,Australia,NSW SOP,2007,For storage only,28,Nangar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18634,10594,Australia,NSW SOP,2010,For storage only,28,Nangar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18635,10594,Australia,NSW SOP,2013,For storage only,28,Nangar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18636,10594,Australia,NSW SOP,2004,For storage only,28,Nangar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18637,357722,Australia,Qld Rapid Assessment,2010,For storage only,28,Nangur,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18638,357722,Australia,Qld Rapid Assessment,2012,For storage only,28,Nangur,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18639,555548776,Australia,Qld Rapid Assessment,2012,For storage only,28,Naree Budjong Djara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18640,555577221,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18641,555548744,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18642,555548744,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18643,555548804,Australia,Qld Rapid Assessment,2010,For storage only,28,Narkoola,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18644,555548804,Australia,Qld Rapid Assessment,2012,For storage only,28,Narkoola,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18645,315024,Australia,NSW SOP,2010,For storage only,28,Narrabeen,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18646,23591,Australia,NSW SOP,2005,For storage only,28,Narran Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18647,23591,Australia,NSW SOP,2007,For storage only,28,Narran Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18648,23591,Australia,NSW SOP,2010,For storage only,28,Narran Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18649,23591,Australia,NSW SOP,2013,For storage only,28,Narran Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18650,23591,Australia,NSW SOP,2004,For storage only,28,Narran Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18651,23592,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18652,23592,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18653,23592,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18654,23592,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18655,555576796,Australia,NSW SOP,2013,For storage only,28,Narrangarril,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18656,23590,Australia,NSW SOP,2005,For storage only,28,Narrawallee Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18657,23590,Australia,NSW SOP,2007,For storage only,28,Narrawallee Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18658,23590,Australia,NSW SOP,2010,For storage only,28,Narrawallee Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18659,23590,Australia,NSW SOP,2013,For storage only,28,Narrawallee Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18660,23590,Australia,NSW SOP,2004,For storage only,28,Narrawallee Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18661,126709,Australia,Victorian SOP,2010,For storage only,28,Narrawong F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18662,126709,Australia,Victorian SOP,2005,For storage only,28,Narrawong F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18663,126709,Australia,Victorian SOP,2013,For storage only,28,Narrawong F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18664,64383,Australia,Qld Rapid Assessment,2010,For storage only,28,Narrien Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18665,64383,Australia,Qld Rapid Assessment,2012,For storage only,28,Narrien Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18666,126711,Australia,NSW SOP,2005,For storage only,28,Nattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18667,126711,Australia,NSW SOP,2007,For storage only,28,Nattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18668,126711,Australia,NSW SOP,2010,For storage only,28,Nattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18669,126711,Australia,NSW SOP,2013,For storage only,28,Nattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18670,356896,Australia,NSW SOP,2005,For storage only,28,Nattai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18671,356896,Australia,NSW SOP,2007,For storage only,28,Nattai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18672,356896,Australia,NSW SOP,2010,For storage only,28,Nattai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18673,356896,Australia,NSW SOP,2013,For storage only,28,Nattai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18674,126711,Australia,NSW SOP,2004,For storage only,28,Nattai,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18675,356896,Australia,NSW SOP,2004,For storage only,28,Nattai,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18676,1142,Australia,NSW SOP,2005,For storage only,28,Nearie Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18677,1142,Australia,NSW SOP,2007,For storage only,28,Nearie Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18678,1142,Australia,NSW SOP,2010,For storage only,28,Nearie Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18679,1142,Australia,NSW SOP,2013,For storage only,28,Nearie Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18680,1142,Australia,NSW SOP,2004,For storage only,28,Nearie Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18681,356904,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18682,356904,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18683,314658,Australia,Victorian SOP,2005,For storage only,28,Nerrin Nerrin Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18684,310153,Australia,NSW SOP,2005,For storage only,28,Nest Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18685,310153,Australia,NSW SOP,2007,For storage only,28,Nest Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18686,310153,Australia,NSW SOP,2010,For storage only,28,Nest Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18687,310153,Australia,NSW SOP,2013,For storage only,28,Nest Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18688,310153,Australia,NSW SOP,2004,For storage only,28,Nest Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18689,362,Australia,Birdlife IBA,2008,For storage only,28,New England,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18690,362,Australia,NSW SOP,2005,For storage only,28,New England,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18691,362,Australia,NSW SOP,2007,For storage only,28,New England,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18692,362,Australia,NSW SOP,2010,For storage only,28,New England,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18693,362,Australia,NSW SOP,2013,For storage only,28,New England,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18694,362,Australia,NSW SOP,2004,For storage only,28,New England,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18695,310154,Australia,NSW SOP,2005,For storage only,28,Newington,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18696,310154,Australia,NSW SOP,2007,For storage only,28,Newington,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18697,310154,Australia,NSW SOP,2013,For storage only,28,Newington,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18698,310154,Australia,NSW SOP,2004,For storage only,28,Newington,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18699,9480,Australia,Qld Rapid Assessment,2010,For storage only,28,Newry Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18700,9480,Australia,Qld Rapid Assessment,2012,For storage only,28,Newry Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18701,310155,Australia,NSW SOP,2005,For storage only,28,Ngadang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18702,310155,Australia,NSW SOP,2007,For storage only,28,Ngadang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18703,310155,Australia,NSW SOP,2010,For storage only,28,Ngadang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18704,310155,Australia,NSW SOP,2013,For storage only,28,Ngadang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18705,310155,Australia,NSW SOP,2004,For storage only,28,Ngadang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18706,555577231,Australia,Qld Rapid Assessment,2012,For storage only,28,Ngalba Bulal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18707,310156,Australia,NSW SOP,2005,For storage only,28,Ngambaa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18708,310156,Australia,NSW SOP,2007,For storage only,28,Ngambaa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18709,310156,Australia,NSW SOP,2010,For storage only,28,Ngambaa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18710,310156,Australia,NSW SOP,2013,For storage only,28,Ngambaa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18711,310156,Australia,NSW SOP,2004,For storage only,28,Ngambaa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18712,310157,Australia,NSW SOP,2005,For storage only,28,Ngulin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18713,310157,Australia,NSW SOP,2007,For storage only,28,Ngulin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18714,310157,Australia,NSW SOP,2010,For storage only,28,Ngulin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18715,310157,Australia,NSW SOP,2013,For storage only,28,Ngulin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18716,310157,Australia,NSW SOP,2004,For storage only,28,Ngulin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18717,24062,Australia,Qld Rapid Assessment,2010,For storage only,28,Nicoll Scrub,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18718,24062,Australia,Qld Rapid Assessment,2012,For storage only,28,Nicoll Scrub,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18719,10595,Australia,NSW SOP,2005,For storage only,28,Nightcap,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18720,10595,Australia,NSW SOP,2007,For storage only,28,Nightcap,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18721,10595,Australia,NSW SOP,2010,For storage only,28,Nightcap,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18722,10595,Australia,NSW SOP,2013,For storage only,28,Nightcap,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18723,10595,Australia,NSW SOP,2004,For storage only,28,Nightcap,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18724,310158,Australia,NSW SOP,2005,For storage only,28,Nimmo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18725,310158,Australia,NSW SOP,2007,For storage only,28,Nimmo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18726,310158,Australia,NSW SOP,2010,For storage only,28,Nimmo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18727,310158,Australia,NSW SOP,2013,For storage only,28,Nimmo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18728,310158,Australia,NSW SOP,2004,For storage only,28,Nimmo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18729,305444,Australia,Victorian SOP,2010,For storage only,28,Ninety Mile Beach,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18730,305444,Australia,Victorian SOP,2005,For storage only,28,Ninety Mile Beach,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18731,305444,Australia,Victorian SOP,2013,For storage only,28,Ninety Mile Beach,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18732,555542338,Australia,WHA Outlook Report,2014,For storage only,28,Ningaloo Coast,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -18733,313845,Australia,NTMEE,2013,For storage only,28,Nitmiluk,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18734,2615,Australia,NSW SOP,2005,For storage only,28,Nocoleche,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18735,2615,Australia,NSW SOP,2007,For storage only,28,Nocoleche,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18736,2615,Australia,NSW SOP,2010,For storage only,28,Nocoleche,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18737,2615,Australia,NSW SOP,2013,For storage only,28,Nocoleche,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18738,2615,Australia,NSW SOP,2004,For storage only,28,Nocoleche,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18739,23596,Australia,NSW SOP,2005,For storage only,28,Nombinnie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18740,23596,Australia,NSW SOP,2007,For storage only,28,Nombinnie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18741,23596,Australia,NSW SOP,2010,For storage only,28,Nombinnie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18742,23596,Australia,NSW SOP,2013,For storage only,28,Nombinnie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18743,555543552,Australia,NSW SOP,2005,For storage only,28,Nombinnie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18744,555543552,Australia,NSW SOP,2007,For storage only,28,Nombinnie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18745,555543552,Australia,NSW SOP,2010,For storage only,28,Nombinnie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18746,555543552,Australia,NSW SOP,2013,For storage only,28,Nombinnie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18747,23596,Australia,NSW SOP,2004,For storage only,28,Nombinnie,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18748,2688,Australia,Victorian SOP,2010,For storage only,28,Nooramunga Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18749,2688,Australia,Victorian SOP,2005,For storage only,28,Nooramunga Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18750,2688,Australia,Victorian SOP,2013,For storage only,28,Nooramunga Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18751,24160,Australia,Qld Rapid Assessment,2010,For storage only,28,Noosa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18752,24160,Australia,Qld Rapid Assessment,2012,For storage only,28,Noosa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18753,12962,Australia,NSW SOP,2010,For storage only,28,North Sydney Harbour,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18754,310160,Australia,NSW SOP,2005,For storage only,28,North Obelisk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18755,310160,Australia,NSW SOP,2007,For storage only,28,North Obelisk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18756,310160,Australia,NSW SOP,2010,For storage only,28,North Obelisk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18757,310160,Australia,NSW SOP,2013,For storage only,28,North Obelisk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18758,310160,Australia,NSW SOP,2004,For storage only,28,North Obelisk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18759,23599,Australia,NSW SOP,2005,For storage only,28,North Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18760,23599,Australia,NSW SOP,2007,For storage only,28,North Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18761,23599,Australia,NSW SOP,2010,For storage only,28,North Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18762,23599,Australia,NSW SOP,2004,For storage only,28,North Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18763,23599,Australia,NSW SOP,2013,For storage only,28,North Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18764,23600,Australia,NSW SOP,2005,For storage only,28,North Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18765,23600,Australia,NSW SOP,2007,For storage only,28,North Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18766,23600,Australia,NSW SOP,2010,For storage only,28,North Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18767,23600,Australia,NSW SOP,2013,For storage only,28,North Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18768,23600,Australia,NSW SOP,2004,For storage only,28,North Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18769,308845,Australia,Victorian SOP,2010,For storage only,28,North Western Port N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18770,308845,Australia,Victorian SOP,2005,For storage only,28,North Western Port N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18771,308845,Australia,Victorian SOP,2013,For storage only,28,North Western Port N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18772,314659,Australia,Victorian SOP,2005,For storage only,28,"North, Centre and other Lakes W.R",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18773,126746,Australia,Qld Rapid Assessment,2010,For storage only,28,Northumberland Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18774,126746,Australia,Qld Rapid Assessment,2012,For storage only,28,Northumberland Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18775,310159,Australia,NSW SOP,2005,For storage only,28,North-West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18776,310159,Australia,NSW SOP,2007,For storage only,28,North-West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18777,310159,Australia,NSW SOP,2010,For storage only,28,North-West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18778,310159,Australia,NSW SOP,2004,For storage only,28,North-West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18779,310159,Australia,NSW SOP,2013,For storage only,28,North-West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18780,555548775,Australia,Qld Rapid Assessment,2010,For storage only,28,Nour Nour,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18781,555548775,Australia,Qld Rapid Assessment,2012,For storage only,28,Nour Nour,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18782,313680,Australia,NSW SOP,2005,For storage only,28,Nowendoc,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18783,313680,Australia,NSW SOP,2007,For storage only,28,Nowendoc,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18784,313680,Australia,NSW SOP,2010,For storage only,28,Nowendoc,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18785,313680,Australia,NSW SOP,2013,For storage only,28,Nowendoc,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18786,313680,Australia,NSW SOP,2004,For storage only,28,Nowendoc,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18787,126747,Australia,Qld Rapid Assessment,2010,For storage only,28,Nuga Nuga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18788,126747,Australia,Qld Rapid Assessment,2012,For storage only,28,Nuga Nuga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18789,555576803,Australia,NSW SOP,2013,For storage only,28,Nuggetty,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18790,555543563,Australia,NSW SOP,2010,For storage only,28,Nullamanna,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18791,555543563,Australia,NSW SOP,2013,For storage only,28,Nullamanna,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18792,310161,Australia,NSW SOP,2005,For storage only,28,Numeralla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18793,310161,Australia,NSW SOP,2007,For storage only,28,Numeralla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18794,310161,Australia,NSW SOP,2010,For storage only,28,Numeralla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18795,310161,Australia,NSW SOP,2013,For storage only,28,Numeralla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18796,310161,Australia,NSW SOP,2004,For storage only,28,Numeralla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18797,11135,Australia,NSW SOP,2005,For storage only,28,Numinbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18798,11135,Australia,NSW SOP,2007,For storage only,28,Numinbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18799,11135,Australia,NSW SOP,2010,For storage only,28,Numinbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18800,11135,Australia,NSW SOP,2013,For storage only,28,Numinbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18801,11135,Australia,NSW SOP,2004,For storage only,28,Numinbah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18802,126754,Australia,Victorian SOP,2005,For storage only,28,Nunniong Plain N.F.S.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18803,555548712,Australia,Victorian SOP,2010,For storage only,28,Nyah-Vinifera Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18804,555548712,Australia,Victorian SOP,2013,For storage only,28,Nyah-Vinifera Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18805,305358,Australia,Victorian SOP,2010,For storage only,28,Nyerimilang Park G.L.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18806,305358,Australia,Victorian SOP,2013,For storage only,28,Nyerimilang Park G.L.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18807,356941,Australia,NSW SOP,2005,For storage only,28,Nymboi-Binderay,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18808,356941,Australia,NSW SOP,2007,For storage only,28,Nymboi-Binderay,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18809,356941,Australia,NSW SOP,2010,For storage only,28,Nymboi-Binderay,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18810,356941,Australia,NSW SOP,2013,For storage only,28,Nymboi-Binderay,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18811,356941,Australia,NSW SOP,2004,For storage only,28,Nymboi-Binderay,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18812,310162,Australia,NSW SOP,2005,For storage only,28,Nymboi-Binderay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18813,310162,Australia,NSW SOP,2007,For storage only,28,Nymboi-Binderay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18814,310162,Australia,NSW SOP,2010,For storage only,28,Nymboi-Binderay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18815,310162,Australia,NSW SOP,2013,For storage only,28,Nymboi-Binderay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18816,310059,Australia,NSW SOP,2004,For storage only,28,Dooragan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18817,9467,Australia,NSW SOP,2005,For storage only,28,Nymboida,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18818,9467,Australia,NSW SOP,2007,For storage only,28,Nymboida,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18819,9467,Australia,NSW SOP,2010,For storage only,28,Nymboida,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18821,9467,Australia,NSW SOP,2013,For storage only,28,Nymboida,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18823,356942,Australia,NSW SOP,2005,For storage only,28,Nymboida,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18824,356942,Australia,NSW SOP,2007,For storage only,28,Nymboida,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18825,9467,Australia,NSW SOP,2004,For storage only,28,Nymboida,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18827,311951,Australia,NSW SOP,2005,For storage only,28,Oak Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18828,311951,Australia,NSW SOP,2007,For storage only,28,Oak Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18829,311951,Australia,NSW SOP,2010,For storage only,28,Oak Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18830,311951,Australia,NSW SOP,2013,For storage only,28,Oak Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18831,311951,Australia,NSW SOP,2004,For storage only,28,Oak Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18832,555576805,Australia,NSW SOP,2013,For storage only,28,Oakdale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18833,356944,Australia,Qld Rapid Assessment,2010,For storage only,28,Oakview,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18834,356944,Australia,Qld Rapid Assessment,2012,For storage only,28,Oakview,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18835,356946,Australia,Victorian SOP,2005,For storage only,28,Olangolah Creek,Reference Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18836,126763,Australia,NSW SOP,2005,For storage only,28,One Tree Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18837,126763,Australia,NSW SOP,2007,For storage only,28,One Tree Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18838,126763,Australia,NSW SOP,2010,For storage only,28,One Tree Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18839,126763,Australia,NSW SOP,2013,For storage only,28,One Tree Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18840,126763,Australia,NSW SOP,2004,For storage only,28,One Tree Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18841,356955,Australia,NSW SOP,2004,For storage only,28,Oolambeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18842,356955,Australia,NSW SOP,2005,For storage only,28,Oolambeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18843,356955,Australia,NSW SOP,2007,For storage only,28,Oolambeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18844,356955,Australia,NSW SOP,2010,For storage only,28,Oolambeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18845,356955,Australia,NSW SOP,2013,For storage only,28,Oolambeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18846,24787,Australia,Victorian SOP,2010,For storage only,28,Organ Pipes National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18847,24787,Australia,Victorian SOP,2005,For storage only,28,Organ Pipes National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18848,24787,Australia,Victorian SOP,2013,For storage only,28,Organ Pipes National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18849,456,Australia,Qld Rapid Assessment,2010,For storage only,28,Orpheus Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18850,456,Australia,Qld Rapid Assessment,2012,For storage only,28,Orpheus Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18851,354835,Australia,Birdlife IBA,2008,For storage only,28,Great Otway National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18852,23606,Australia,NSW SOP,2005,For storage only,28,Oxley Wild Rivers,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18853,23606,Australia,NSW SOP,2007,For storage only,28,Oxley Wild Rivers,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18854,23606,Australia,NSW SOP,2010,For storage only,28,Oxley Wild Rivers,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18855,23606,Australia,NSW SOP,2013,For storage only,28,Oxley Wild Rivers,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18856,356967,Australia,NSW SOP,2005,For storage only,28,Oxley Wild Rivers,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18857,356967,Australia,NSW SOP,2007,For storage only,28,Oxley Wild Rivers,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18858,356967,Australia,NSW SOP,2010,For storage only,28,Oxley Wild Rivers,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18859,356967,Australia,NSW SOP,2013,For storage only,28,Oxley Wild Rivers,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18860,23606,Australia,NSW SOP,2004,For storage only,28,Oxley Wild Rivers,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18861,356967,Australia,NSW SOP,2004,For storage only,28,Oxley Wild Rivers,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18862,555577244,Australia,Qld Rapid Assessment,2012,For storage only,28,Oyala Thumotang (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -18863,555576809,Australia,NSW SOP,2013,For storage only,28,Paddington,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18864,64015,Australia,Victorian SOP,2010,For storage only,28,Paddys Ranges,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18865,64015,Australia,Victorian SOP,2005,For storage only,28,Paddys Ranges,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18866,64015,Australia,Victorian SOP,2013,For storage only,28,Paddys Ranges,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18867,555543549,Australia,NSW SOP,2007,For storage only,28,Palm Grove,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18868,555543549,Australia,NSW SOP,2010,For storage only,28,Palm Grove,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18869,555543549,Australia,NSW SOP,2013,For storage only,28,Palm Grove,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18870,24175,Australia,Qld Rapid Assessment,2010,For storage only,28,Palmerston Rocks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18871,24175,Australia,Qld Rapid Assessment,2012,For storage only,28,Palmerston Rocks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18872,1162,Australia,Birdlife IBA,2008,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18873,1162,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18874,1162,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18875,309943,Australia,Birdlife IBA,2008,For storage only,28,Paluma Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18876,309943,Australia,Qld Rapid Assessment,2010,For storage only,28,Paluma Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18877,309943,Australia,Qld Rapid Assessment,2012,For storage only,28,Paluma Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18878,310167,Australia,NSW SOP,2005,For storage only,28,Pambalong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18879,310167,Australia,NSW SOP,2007,For storage only,28,Pambalong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18880,310167,Australia,NSW SOP,2010,For storage only,28,Pambalong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18881,310167,Australia,NSW SOP,2013,For storage only,28,Pambalong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18882,310167,Australia,NSW SOP,2004,For storage only,28,Pambalong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18883,313699,Australia,NSW SOP,2005,For storage only,28,Parma Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18884,313699,Australia,NSW SOP,2007,For storage only,28,Parma Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18885,313699,Australia,NSW SOP,2010,For storage only,28,Parma Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18886,313699,Australia,NSW SOP,2013,For storage only,28,Parma Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18887,313699,Australia,NSW SOP,2004,For storage only,28,Parma Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18888,356985,Australia,NSW SOP,2005,For storage only,28,Paroo-Darling,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18889,356985,Australia,NSW SOP,2007,For storage only,28,Paroo-Darling,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18890,356985,Australia,NSW SOP,2010,For storage only,28,Paroo-Darling,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18891,356985,Australia,NSW SOP,2013,For storage only,28,Paroo-Darling,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18892,356986,Australia,NSW SOP,2005,For storage only,28,Paroo-Darling,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18893,356986,Australia,NSW SOP,2007,For storage only,28,Paroo-Darling,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18894,356986,Australia,NSW SOP,2010,For storage only,28,Paroo-Darling,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18895,356986,Australia,NSW SOP,2013,For storage only,28,Paroo-Darling,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18896,356985,Australia,NSW SOP,2004,For storage only,28,Paroo-Darling,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18897,356986,Australia,NSW SOP,2004,For storage only,28,Paroo-Darling,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18898,356987,Australia,NSW SOP,2005,For storage only,28,Parr,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18899,356987,Australia,NSW SOP,2007,For storage only,28,Parr,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18900,356987,Australia,NSW SOP,2010,For storage only,28,Parr,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18901,356987,Australia,NSW SOP,2013,For storage only,28,Parr,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18902,356987,Australia,NSW SOP,2004,For storage only,28,Parr,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18903,356988,Australia,NSW SOP,2005,For storage only,28,Parramatta River,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18904,356988,Australia,NSW SOP,2007,For storage only,28,Parramatta River,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18905,356988,Australia,NSW SOP,2010,For storage only,28,Parramatta River,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18906,356988,Australia,NSW SOP,2013,For storage only,28,Parramatta River,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18907,313700,Australia,NSW SOP,2005,For storage only,28,Paupong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18908,313700,Australia,NSW SOP,2007,For storage only,28,Paupong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18909,313700,Australia,NSW SOP,2010,For storage only,28,Paupong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18910,313700,Australia,NSW SOP,2013,For storage only,28,Paupong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18911,313700,Australia,NSW SOP,2004,For storage only,28,Paupong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18912,24179,Australia,Qld Rapid Assessment,2010,For storage only,28,Peak Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18913,24179,Australia,Qld Rapid Assessment,2012,For storage only,28,Peak Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18914,311946,Australia,NSW SOP,2005,For storage only,28,Pee Dee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18915,311946,Australia,NSW SOP,2007,For storage only,28,Pee Dee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18916,311946,Australia,NSW SOP,2010,For storage only,28,Pee Dee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18917,311946,Australia,NSW SOP,2004,For storage only,28,Pee Dee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18918,311946,Australia,NSW SOP,2013,For storage only,28,Pee Dee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18919,498,Australia,Birdlife IBA,2008,For storage only,28,Peebinga,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18920,29784,Australia,NSW SOP,2005,For storage only,28,Pelican Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18921,29784,Australia,NSW SOP,2007,For storage only,28,Pelican Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18922,29784,Australia,NSW SOP,2010,For storage only,28,Pelican Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18923,29784,Australia,NSW SOP,2013,For storage only,28,Pelican Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18924,29784,Australia,NSW SOP,2004,For storage only,28,Pelican Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18925,309944,Australia,Qld Rapid Assessment,2010,For storage only,28,Percy Isles,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18926,309944,Australia,Qld Rapid Assessment,2012,For storage only,28,Percy Isles,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18927,555548599,Australia,Birdlife IBA,2008,For storage only,28,Norfolk Island (Phillip Island),National Park (Commonwealth),"GD-PAME, version pre-2017",Not Reported,2018,English -18928,357014,Australia,Qld Rapid Assessment,2010,For storage only,28,Pidna,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18929,357014,Australia,Qld Rapid Assessment,2012,For storage only,28,Pidna,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18930,1130,Australia,NSW SOP,2005,For storage only,28,Pilliga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18931,1130,Australia,NSW SOP,2007,For storage only,28,Pilliga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18932,1130,Australia,NSW SOP,2010,For storage only,28,Pilliga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18933,1130,Australia,NSW SOP,2013,For storage only,28,Pilliga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18934,1130,Australia,NSW SOP,2004,For storage only,28,Pilliga,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18935,555543571,Australia,NSW SOP,2010,For storage only,28,Pilliga,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18936,555543571,Australia,NSW SOP,2013,For storage only,28,Pilliga,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18937,555543572,Australia,NSW SOP,2010,For storage only,28,Pilliga,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18938,555543572,Australia,NSW SOP,2013,For storage only,28,Pilliga,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18939,555543573,Australia,NSW SOP,2010,For storage only,28,Pilliga East,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18941,555543573,Australia,NSW SOP,2013,For storage only,28,Pilliga East,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18942,555543574,Australia,NSW SOP,2010,For storage only,28,Pilliga West,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18943,555543574,Australia,NSW SOP,2013,For storage only,28,Pilliga West,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18944,555543575,Australia,NSW SOP,2010,For storage only,28,Pilliga West,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18945,555543575,Australia,NSW SOP,2013,For storage only,28,Pilliga West,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -18946,555548700,Australia,Qld Rapid Assessment,2012,For storage only,28,Pinnacles,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18947,126817,Australia,Qld Rapid Assessment,2010,For storage only,28,Pioneer Peaks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18948,126817,Australia,Qld Rapid Assessment,2012,For storage only,28,Pioneer Peaks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18949,24189,Australia,Qld Rapid Assessment,2010,For storage only,28,Pipeclay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18950,24189,Australia,Qld Rapid Assessment,2012,For storage only,28,Pipeclay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18951,64022,Australia,Qld Rapid Assessment,2010,For storage only,28,Piper Islands (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -18952,64022,Australia,Qld Rapid Assessment,2012,For storage only,28,Piper Islands (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -18953,23612,Australia,NSW SOP,2005,For storage only,28,Pitt Town,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18954,23612,Australia,NSW SOP,2007,For storage only,28,Pitt Town,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18955,23612,Australia,NSW SOP,2010,For storage only,28,Pitt Town,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18956,23612,Australia,NSW SOP,2013,For storage only,28,Pitt Town,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18957,23612,Australia,NSW SOP,2004,For storage only,28,Pitt Town,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18958,310168,Australia,NSW SOP,2005,For storage only,28,Planchonella,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18959,310168,Australia,NSW SOP,2007,For storage only,28,Planchonella,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18960,310168,Australia,NSW SOP,2010,For storage only,28,Planchonella,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18961,310168,Australia,NSW SOP,2013,For storage only,28,Planchonella,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18962,310168,Australia,NSW SOP,2004,For storage only,28,Planchonella,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18963,126820,Australia,Victorian SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -18964,305439,Australia,Victorian SOP,2010,For storage only,28,Point Addis,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18965,305439,Australia,Victorian SOP,2005,For storage only,28,Point Addis,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18966,305439,Australia,Victorian SOP,2013,For storage only,28,Point Addis,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18967,305374,Australia,Victorian SOP,2010,For storage only,28,Point Cooke,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18968,305374,Australia,Victorian SOP,2005,For storage only,28,Point Cooke,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18969,305374,Australia,Victorian SOP,2013,For storage only,28,Point Cooke,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18970,305372,Australia,Victorian SOP,2010,For storage only,28,Point Danger,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18971,305372,Australia,Victorian SOP,2005,For storage only,28,Point Danger,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18972,305372,Australia,Victorian SOP,2013,For storage only,28,Point Danger,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -18973,305438,Australia,Victorian SOP,2010,For storage only,28,Point Hicks,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18974,305438,Australia,Victorian SOP,2005,For storage only,28,Point Hicks,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18975,305438,Australia,Victorian SOP,2013,For storage only,28,Point Hicks,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18976,357026,Australia,Victorian SOP,2010,For storage only,28,Point Nepean National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18977,357026,Australia,Victorian SOP,2013,For storage only,28,Point Nepean National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18978,555576818,Australia,NSW SOP,2013,For storage only,28,Pomaderris,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18979,126826,Australia,Qld Rapid Assessment,2010,For storage only,28,Poona,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18980,126826,Australia,Qld Rapid Assessment,2012,For storage only,28,Poona,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18981,102556,Australia,NSW SOP,2005,For storage only,28,Popran,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18982,102556,Australia,NSW SOP,2007,For storage only,28,Popran,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18983,102556,Australia,NSW SOP,2010,For storage only,28,Popran,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18984,102556,Australia,NSW SOP,2013,For storage only,28,Popran,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18985,102556,Australia,NSW SOP,2004,For storage only,28,Popran,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18986,441,Australia,Qld Rapid Assessment,2010,For storage only,28,Porcupine Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18987,441,Australia,Qld Rapid Assessment,2012,For storage only,28,Porcupine Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18988,2403,Australia,Victorian SOP,2005,For storage only,28,Port Campbell National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18989,2403,Australia,Victorian SOP,2010,For storage only,28,Port Campbell National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18990,2403,Australia,Victorian SOP,2013,For storage only,28,Port Campbell National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18991,305993,Australia,Victorian SOP,2010,For storage only,28,Port Phillip Heads,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18992,305993,Australia,Victorian SOP,2005,For storage only,28,Port Phillip Heads,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18993,305993,Australia,Victorian SOP,2013,For storage only,28,Port Phillip Heads,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18994,555548201,Australia,NSW SOP,2010,For storage only,28,Port Stephens - Great Lakes,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18995,465,Australia,Qld Rapid Assessment,2010,For storage only,28,Possession Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18996,465,Australia,Qld Rapid Assessment,2012,For storage only,28,Possession Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18997,314665,Australia,Victorian SOP,2005,For storage only,28,Pot Brook W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -18998,64028,Australia,Qld Rapid Assessment,2010,For storage only,28,Precipice,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -18999,64028,Australia,Qld Rapid Assessment,2012,For storage only,28,Precipice,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19000,314898,Australia,Birdlife IBA,2008,For storage only,28,Prince Regent,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19001,314666,Australia,Victorian SOP,2010,For storage only,28,Princetown W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19002,314666,Australia,Victorian SOP,2005,For storage only,28,Princetown W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19004,314666,Australia,Victorian SOP,2013,For storage only,28,Princetown W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19006,555543528,Australia,NSW SOP,2007,For storage only,28,Prospect,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19007,555543528,Australia,NSW SOP,2010,For storage only,28,Prospect,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19008,555543528,Australia,NSW SOP,2013,For storage only,28,Prospect,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19009,314756,Australia,Victorian SOP,2010,For storage only,28,Providence Ponds F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19010,314756,Australia,Victorian SOP,2005,For storage only,28,Providence Ponds F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19011,314756,Australia,Victorian SOP,2013,For storage only,28,Providence Ponds F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19012,23614,Australia,NSW SOP,2004,For storage only,28,Pucawan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19013,23614,Australia,NSW SOP,2005,For storage only,28,Pucawan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19014,23614,Australia,NSW SOP,2007,For storage only,28,Pucawan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19015,23614,Australia,NSW SOP,2010,For storage only,28,Pucawan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19016,23614,Australia,NSW SOP,2013,For storage only,28,Pucawan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19017,23615,Australia,NSW SOP,2005,For storage only,28,Pulbah Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19018,23615,Australia,NSW SOP,2007,For storage only,28,Pulbah Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19019,23615,Australia,NSW SOP,2010,For storage only,28,Pulbah Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19020,23615,Australia,NSW SOP,2013,For storage only,28,Pulbah Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19021,23615,Australia,NSW SOP,2004,For storage only,28,Pulbah Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19022,23616,Australia,NSW SOP,2005,For storage only,28,Pulletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19023,23616,Australia,NSW SOP,2007,For storage only,28,Pulletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19024,23616,Australia,NSW SOP,2010,For storage only,28,Pulletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19025,23616,Australia,NSW SOP,2013,For storage only,28,Pulletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19026,23616,Australia,NSW SOP,2004,For storage only,28,Pulletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19027,555548588,Australia,Qld Rapid Assessment,2012,For storage only,28,Pumicestone,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19028,900878,Australia,WHA Outlook Report,2014,For storage only,28,Purnululu National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -19029,23618,Australia,NSW SOP,2005,For storage only,28,Quanda,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19030,23618,Australia,NSW SOP,2007,For storage only,28,Quanda,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19031,23618,Australia,NSW SOP,2010,For storage only,28,Quanda,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19032,23618,Australia,NSW SOP,2013,For storage only,28,Quanda,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19033,23618,Australia,NSW SOP,2004,For storage only,28,Quanda,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19034,64031,Australia,NSW SOP,2005,For storage only,28,Queanbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19035,64031,Australia,NSW SOP,2007,For storage only,28,Queanbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19036,64031,Australia,NSW SOP,2010,For storage only,28,Queanbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19037,64031,Australia,NSW SOP,2013,For storage only,28,Queanbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19038,64031,Australia,NSW SOP,2004,For storage only,28,Queanbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19039,310169,Australia,NSW SOP,2005,For storage only,28,Queens Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19040,310169,Australia,NSW SOP,2007,For storage only,28,Queens Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19041,310169,Australia,NSW SOP,2010,For storage only,28,Queens Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19042,310169,Australia,NSW SOP,2013,For storage only,28,Queens Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19043,357053,Australia,NSW SOP,2005,For storage only,28,Queens Lake,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19044,357053,Australia,NSW SOP,2007,For storage only,28,Queens Lake,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19045,357053,Australia,NSW SOP,2010,For storage only,28,Queens Lake,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19046,357053,Australia,NSW SOP,2013,For storage only,28,Queens Lake,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19047,310169,Australia,NSW SOP,2004,For storage only,28,Queens Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19048,313701,Australia,NSW SOP,2005,For storage only,28,Quidong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19049,313701,Australia,NSW SOP,2007,For storage only,28,Quidong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19050,313701,Australia,NSW SOP,2010,For storage only,28,Quidong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19051,313701,Australia,NSW SOP,2013,For storage only,28,Quidong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19052,313701,Australia,NSW SOP,2004,For storage only,28,Quidong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19053,64032,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19054,555548463,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19055,555548463,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19056,310172,Australia,NSW SOP,2005,For storage only,28,Ramornie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19057,310172,Australia,NSW SOP,2007,For storage only,28,Ramornie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19058,310172,Australia,NSW SOP,2010,For storage only,28,Ramornie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19059,310172,Australia,NSW SOP,2013,For storage only,28,Ramornie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19060,310172,Australia,NSW SOP,2004,For storage only,28,Ramornie,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19061,24196,Australia,Qld Rapid Assessment,2010,For storage only,28,Ravensbourne,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19062,24196,Australia,Qld Rapid Assessment,2012,For storage only,28,Ravensbourne,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19063,310173,Australia,NSW SOP,2005,For storage only,28,Rawdon Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19064,310173,Australia,NSW SOP,2007,For storage only,28,Rawdon Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19065,310173,Australia,NSW SOP,2010,For storage only,28,Rawdon Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19066,310173,Australia,NSW SOP,2013,For storage only,28,Rawdon Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19067,310173,Australia,NSW SOP,2004,For storage only,28,Rawdon Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19068,23620,Australia,NSW SOP,2005,For storage only,28,Razorback,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19069,23620,Australia,NSW SOP,2007,For storage only,28,Razorback,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19070,23620,Australia,NSW SOP,2010,For storage only,28,Razorback,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19071,23620,Australia,NSW SOP,2013,For storage only,28,Razorback,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19072,23620,Australia,NSW SOP,2004,For storage only,28,Razorback,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19073,314899,Australia,Birdlife IBA,2008,For storage only,28,Recherche Archipelago,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19074,314757,Australia,Victorian SOP,2010,For storage only,28,Red Bluff F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19075,314757,Australia,Victorian SOP,2013,For storage only,28,Red Bluff F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19076,357095,Australia,Victorian SOP,2010,For storage only,28,"Reedy Lake, Nagambie W.R",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19077,357095,Australia,Victorian SOP,2005,For storage only,28,"Reedy Lake, Nagambie W.R",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19078,357095,Australia,Victorian SOP,2013,For storage only,28,"Reedy Lake, Nagambie W.R",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19079,24813,Australia,Victorian SOP,2005,For storage only,28,Reef Hills,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19080,24813,Australia,Victorian SOP,2010,For storage only,28,Reef Hills,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19081,24813,Australia,Victorian SOP,2013,For storage only,28,Reef Hills,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19082,308912,Australia,Victorian SOP,2010,For storage only,28,Reef Island and Bass River Mouth N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19083,308912,Australia,Victorian SOP,2005,For storage only,28,Reef Island and Bass River Mouth N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19084,308912,Australia,Victorian SOP,2013,For storage only,28,Reef Island and Bass River Mouth N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19085,23623,Australia,NSW SOP,2005,For storage only,28,Regatta Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19086,23623,Australia,NSW SOP,2007,For storage only,28,Regatta Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19087,23623,Australia,NSW SOP,2010,For storage only,28,Regatta Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19088,23623,Australia,NSW SOP,2013,For storage only,28,Regatta Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19089,23623,Australia,NSW SOP,2004,For storage only,28,Regatta Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19090,24197,Australia,Qld Rapid Assessment,2010,For storage only,28,Reliance Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19091,24197,Australia,Qld Rapid Assessment,2012,For storage only,28,Reliance Creek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19092,309945,Australia,Qld Rapid Assessment,2010,For storage only,28,Repulse Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19093,309945,Australia,Qld Rapid Assessment,2012,For storage only,28,Repulse Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19094,64038,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19095,310174,Australia,NSW SOP,2005,For storage only,28,Richmond Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19096,310174,Australia,NSW SOP,2007,For storage only,28,Richmond Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19097,310174,Australia,NSW SOP,2010,For storage only,28,Richmond Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19098,310174,Australia,NSW SOP,2013,For storage only,28,Richmond Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19099,310162,Australia,NSW SOP,2004,For storage only,28,Nymboi-Binderay,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19100,23624,Australia,NSW SOP,2005,For storage only,28,Richmond River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19101,23624,Australia,NSW SOP,2007,For storage only,28,Richmond River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19102,23624,Australia,NSW SOP,2010,For storage only,28,Richmond River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19103,23624,Australia,NSW SOP,2013,For storage only,28,Richmond River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19104,23624,Australia,NSW SOP,2004,For storage only,28,Richmond River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19105,305353,Australia,Victorian SOP,2010,For storage only,28,Ricketts Point,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -19106,305353,Australia,Victorian SOP,2005,For storage only,28,Ricketts Point,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -19107,305353,Australia,Victorian SOP,2013,For storage only,28,Ricketts Point,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -19108,308916,Australia,Victorian SOP,2010,For storage only,28,Rigby Island G.L.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19109,64039,Australia,NSW SOP,2005,For storage only,28,Rileys Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19110,64039,Australia,NSW SOP,2007,For storage only,28,Rileys Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19111,64039,Australia,NSW SOP,2010,For storage only,28,Rileys Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19112,64039,Australia,NSW SOP,2013,For storage only,28,Rileys Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19113,64039,Australia,NSW SOP,2004,For storage only,28,Rileys Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19114,398,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19115,308919,Australia,Victorian SOP,2005,For storage only,28,River Murray Reserve,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19116,2024,Australia,GOBI Survey,2006,For storage only,28,Riverland,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19117,310175,Australia,NSW SOP,2005,For storage only,28,Robertson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19118,310175,Australia,NSW SOP,2007,For storage only,28,Robertson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19119,310175,Australia,NSW SOP,2010,For storage only,28,Robertson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19120,310175,Australia,NSW SOP,2013,For storage only,28,Robertson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19121,310175,Australia,NSW SOP,2004,For storage only,28,Robertson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19122,555576822,Australia,NSW SOP,2013,For storage only,28,Rocky Glen,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19123,23628,Australia,NSW SOP,2005,For storage only,28,Rodway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19124,23628,Australia,NSW SOP,2007,For storage only,28,Rodway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19125,23628,Australia,NSW SOP,2010,For storage only,28,Rodway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19126,23628,Australia,NSW SOP,2013,For storage only,28,Rodway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19127,23628,Australia,NSW SOP,2004,For storage only,28,Rodway,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19128,146693,Australia,NSW SOP,2005,For storage only,28,Round Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19129,146693,Australia,NSW SOP,2007,For storage only,28,Round Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19130,146693,Australia,NSW SOP,2010,For storage only,28,Round Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19131,146693,Australia,NSW SOP,2013,For storage only,28,Round Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19132,146693,Australia,NSW SOP,2004,For storage only,28,Round Hill,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19133,357137,Australia,NSW SOP,2005,For storage only,28,Rouse Hill,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19134,357137,Australia,NSW SOP,2007,For storage only,28,Rouse Hill,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19135,357137,Australia,NSW SOP,2010,For storage only,28,Rouse Hill,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19136,357137,Australia,NSW SOP,2013,For storage only,28,Rouse Hill,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19137,314671,Australia,Victorian SOP,2010,For storage only,28,Rowan Swamp W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19138,314671,Australia,Victorian SOP,2005,For storage only,28,Rowan Swamp W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19139,368,Australia,NSW SOP,2005,For storage only,28,Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19140,368,Australia,NSW SOP,2007,For storage only,28,Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19141,368,Australia,NSW SOP,2010,For storage only,28,Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19142,368,Australia,NSW SOP,2013,For storage only,28,Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19143,368,Australia,NSW SOP,2004,For storage only,28,Royal,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19144,126906,Australia,Qld Rapid Assessment,2010,For storage only,28,Rundle Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19145,126906,Australia,Qld Rapid Assessment,2012,For storage only,28,Rundle Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19146,555543597,Australia,NSW SOP,2005,For storage only,28,Running Creek,Nature Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -19147,555543597,Australia,NSW SOP,2007,For storage only,28,Running Creek,Nature Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -19148,555543597,Australia,NSW SOP,2010,For storage only,28,Running Creek,Nature Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -19149,555543597,Australia,NSW SOP,2013,For storage only,28,Running Creek,Nature Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -19150,555543597,Australia,NSW SOP,2004,For storage only,28,Running Creek,Nature Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -19151,454,Australia,Qld Rapid Assessment,2010,For storage only,28,Russell River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19152,454,Australia,Qld Rapid Assessment,2012,For storage only,28,Russell River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19153,314844,Australia,Victorian SOP,2010,For storage only,28,Sale Common N.C.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19154,314844,Australia,Victorian SOP,2005,For storage only,28,Sale Common N.C.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19155,314844,Australia,Victorian SOP,2013,For storage only,28,Sale Common N.C.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19156,357150,Australia,NSW SOP,2005,For storage only,28,Saltwater,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19157,357150,Australia,NSW SOP,2007,For storage only,28,Saltwater,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19158,357150,Australia,NSW SOP,2010,For storage only,28,Saltwater,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19159,357150,Australia,NSW SOP,2013,For storage only,28,Saltwater,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19160,310178,Australia,NSW SOP,2005,For storage only,28,Saltwater Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19161,310178,Australia,NSW SOP,2007,For storage only,28,Saltwater Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19162,310178,Australia,NSW SOP,2010,For storage only,28,Saltwater Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19163,310178,Australia,NSW SOP,2013,For storage only,28,Saltwater Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19164,310178,Australia,NSW SOP,2004,For storage only,28,Saltwater Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19165,64046,Australia,Qld Rapid Assessment,2010,For storage only,28,Sandbanks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19166,64046,Australia,Qld Rapid Assessment,2012,For storage only,28,Sandbanks,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19167,126842,Australia,Birdlife IBA,2008,For storage only,28,Quagering,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19168,555576825,Australia,NSW SOP,2013,For storage only,28,Sappa Bulga,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19169,24214,Australia,Qld Rapid Assessment,2010,For storage only,28,Sarabah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19170,24214,Australia,Qld Rapid Assessment,2012,For storage only,28,Sarabah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19171,555543603,Australia,NSW SOP,2007,For storage only,28,Saratoga Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19172,555543603,Australia,NSW SOP,2010,For storage only,28,Saratoga Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19173,555543603,Australia,NSW SOP,2013,For storage only,28,Saratoga Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19174,308933,Australia,Victorian SOP,2005,For storage only,28,Sassafras Creek N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19175,308933,Australia,Victorian SOP,2010,For storage only,28,Sassafras Creek N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19176,308933,Australia,Victorian SOP,2013,For storage only,28,Sassafras Creek N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19177,126921,Australia,Qld Rapid Assessment,2010,For storage only,28,Saunders Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19178,126921,Australia,Qld Rapid Assessment,2012,For storage only,28,Saunders Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19179,10591,Australia,NSW SOP,2005,For storage only,28,Scabby Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19180,10591,Australia,NSW SOP,2007,For storage only,28,Scabby Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19181,10591,Australia,NSW SOP,2010,For storage only,28,Scabby Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19182,10591,Australia,NSW SOP,2013,For storage only,28,Scabby Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19183,10591,Australia,NSW SOP,2004,For storage only,28,Scabby Range,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19184,310179,Australia,NSW SOP,2005,For storage only,28,Scheyville,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19185,310179,Australia,NSW SOP,2007,For storage only,28,Scheyville,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19186,310179,Australia,NSW SOP,2010,For storage only,28,Scheyville,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19187,310179,Australia,NSW SOP,2013,For storage only,28,Scheyville,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19189,555543605,Australia,NSW SOP,2007,For storage only,28,Scone Mountain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19190,555543605,Australia,NSW SOP,2010,For storage only,28,Scone Mountain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19191,555543605,Australia,NSW SOP,2013,For storage only,28,Scone Mountain,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19192,24450,Australia,NSW SOP,2005,For storage only,28,Scott,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19193,24450,Australia,NSW SOP,2007,For storage only,28,Scott,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19194,24450,Australia,NSW SOP,2010,For storage only,28,Scott,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19195,24450,Australia,NSW SOP,2013,For storage only,28,Scott,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19196,24450,Australia,NSW SOP,2004,For storage only,28,Scott,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19197,23635,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19198,23635,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19199,23635,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19200,555576830,Australia,NSW SOP,2013,For storage only,28,Sea Acres,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19201,23635,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19202,23636,Australia,NSW SOP,2005,For storage only,28,Seaham Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19203,23636,Australia,NSW SOP,2007,For storage only,28,Seaham Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19204,23636,Australia,NSW SOP,2010,For storage only,28,Seaham Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19205,23636,Australia,NSW SOP,2013,For storage only,28,Seaham Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19206,23636,Australia,NSW SOP,2004,For storage only,28,Seaham Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19207,23637,Australia,NSW SOP,2005,For storage only,28,Seal Rocks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19208,23637,Australia,NSW SOP,2007,For storage only,28,Seal Rocks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19209,23637,Australia,NSW SOP,2004,For storage only,28,Seal Rocks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19210,23637,Australia,NSW SOP,2010,For storage only,28,Seal Rocks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19211,23637,Australia,NSW SOP,2013,For storage only,28,Seal Rocks,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19212,23640,Australia,NSW SOP,2005,For storage only,28,Serpentine,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19213,23640,Australia,NSW SOP,2007,For storage only,28,Serpentine,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19214,23640,Australia,NSW SOP,2010,For storage only,28,Serpentine,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19215,23640,Australia,NSW SOP,2013,For storage only,28,Serpentine,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19216,23640,Australia,NSW SOP,2004,For storage only,28,Serpentine,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19217,555576832,Australia,NSW SOP,2013,For storage only,28,Serpentine Ridge,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19218,314848,Australia,Victorian SOP,2010,For storage only,28,Seven Creeks W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19219,314848,Australia,Victorian SOP,2005,For storage only,28,Seven Creeks W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19220,314848,Australia,Victorian SOP,2013,For storage only,28,Seven Creeks W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19221,9468,Australia,NSW SOP,2005,For storage only,28,Seven Mile Beach,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19222,9468,Australia,NSW SOP,2007,For storage only,28,Seven Mile Beach,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19223,9468,Australia,NSW SOP,2010,For storage only,28,Seven Mile Beach,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19224,9468,Australia,NSW SOP,2013,For storage only,28,Seven Mile Beach,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19225,9468,Australia,NSW SOP,2004,For storage only,28,Seven Mile Beach,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19226,1154,Australia,NSW SOP,2005,For storage only,28,Severn River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19227,1154,Australia,NSW SOP,2007,For storage only,28,Severn River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19228,1154,Australia,NSW SOP,2010,For storage only,28,Severn River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19229,1154,Australia,NSW SOP,2013,For storage only,28,Severn River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19230,1154,Australia,NSW SOP,2004,For storage only,28,Severn River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19231,24829,Australia,Birdlife IBA,2008,For storage only,28,Shallow Inlet Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19232,24829,Australia,Victorian SOP,2010,For storage only,28,Shallow Inlet Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19233,24829,Australia,Victorian SOP,2005,For storage only,28,Shallow Inlet Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19234,24829,Australia,Victorian SOP,2013,For storage only,28,Shallow Inlet Marine and Coastal Park,National Parks Act Schedule 4 park or reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19235,67724,Australia,WHA Outlook Report,2014,For storage only,28,"Shark Bay, Western Australia",World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -19236,555543606,Australia,NSW SOP,2010,For storage only,28,Shark Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19237,555543606,Australia,NSW SOP,2013,For storage only,28,Shark Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19238,1148,Australia,NSW SOP,2005,For storage only,28,Sherwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19239,1148,Australia,NSW SOP,2007,For storage only,28,Sherwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19240,1148,Australia,NSW SOP,2010,For storage only,28,Sherwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19241,1148,Australia,NSW SOP,2013,For storage only,28,Sherwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19242,1148,Australia,NSW SOP,2004,For storage only,28,Sherwood,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19243,12963,Australia,NSW SOP,2010,For storage only,28,Shiprock,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19244,311889,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19245,310182,Australia,NSW SOP,2005,For storage only,28,Single,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19246,310182,Australia,NSW SOP,2007,For storage only,28,Single,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19247,310182,Australia,NSW SOP,2010,For storage only,28,Single,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19248,310182,Australia,NSW SOP,2013,For storage only,28,Single,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19249,310182,Australia,NSW SOP,2004,For storage only,28,Single,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19250,64055,Australia,Qld Rapid Assessment,2010,For storage only,28,Sir Charles Hardy Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19251,64055,Australia,Qld Rapid Assessment,2012,For storage only,28,Sir Charles Hardy Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19252,310181,Australia,NSW SOP,2005,For storage only,28,Skillion,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19253,310181,Australia,NSW SOP,2007,For storage only,28,Skillion,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19254,310181,Australia,NSW SOP,2010,For storage only,28,Skillion,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19255,310181,Australia,NSW SOP,2013,For storage only,28,Skillion,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19256,310181,Australia,NSW SOP,2004,For storage only,28,Skillion,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19257,24226,Australia,Qld Rapid Assessment,2010,For storage only,28,Smith Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19258,24226,Australia,Qld Rapid Assessment,2012,For storage only,28,Smith Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19259,555543594,Australia,NSW SOP,2010,For storage only,28,Smiths Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19260,555543594,Australia,NSW SOP,2013,For storage only,28,Smiths Lake,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19261,459,Australia,Qld Rapid Assessment,2010,For storage only,28,Snake Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19262,459,Australia,Qld Rapid Assessment,2012,For storage only,28,Snake Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19263,23644,Australia,NSW SOP,2005,For storage only,28,Snapper Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19264,23644,Australia,NSW SOP,2007,For storage only,28,Snapper Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19265,23644,Australia,NSW SOP,2010,For storage only,28,Snapper Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19266,23644,Australia,NSW SOP,2013,For storage only,28,Snapper Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19267,23644,Australia,NSW SOP,2004,For storage only,28,Snapper Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19268,64184,Australia,NSW SOP,2005,For storage only,28,Snows Gully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19269,64184,Australia,NSW SOP,2007,For storage only,28,Snows Gully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19270,64184,Australia,NSW SOP,2010,For storage only,28,Snows Gully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19271,64184,Australia,NSW SOP,2004,For storage only,28,Snows Gully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19272,64184,Australia,NSW SOP,2013,For storage only,28,Snows Gully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19273,314100,Australia,Victorian SOP,2010,For storage only,28,Snowy River National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19274,314100,Australia,Victorian SOP,2005,For storage only,28,Snowy River National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19275,314100,Australia,Victorian SOP,2013,For storage only,28,Snowy River National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19276,64056,Australia,NSW SOP,2010,For storage only,28,Solitary Islands,Marine Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19277,555543596,Australia,NSW SOP,2010,For storage only,28,Somerton,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19278,555543596,Australia,NSW SOP,2013,For storage only,28,Somerton,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19279,126973,Australia,Qld Rapid Assessment,2010,For storage only,28,South Cumberland Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19280,126973,Australia,Qld Rapid Assessment,2012,For storage only,28,South Cumberland Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19281,310183,Australia,NSW SOP,2005,For storage only,28,South East Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19282,310183,Australia,NSW SOP,2007,For storage only,28,South East Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19283,310183,Australia,NSW SOP,2010,For storage only,28,South East Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19284,310183,Australia,NSW SOP,2013,For storage only,28,South East Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19285,310174,Australia,NSW SOP,2004,For storage only,28,Richmond Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19286,12859,Australia,NSW SOP,2005,For storage only,28,South West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19287,12859,Australia,NSW SOP,2007,For storage only,28,South West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19288,12859,Australia,NSW SOP,2010,For storage only,28,South West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19289,12859,Australia,NSW SOP,2013,For storage only,28,South West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19290,12859,Australia,NSW SOP,2004,For storage only,28,South West Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19291,555576834,Australia,NSW SOP,2013,For storage only,28,South West Woodland,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19294,309952,Australia,Qld Rapid Assessment,2010,For storage only,28,Southern Moreton Bay Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19295,309952,Australia,Qld Rapid Assessment,2012,For storage only,28,Southern Moreton Bay Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19296,126987,Australia,Tasmanian WHA,2004,For storage only,28,Southwest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19297,426,Australia,Qld Rapid Assessment,2010,For storage only,28,Southwood,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19298,426,Australia,Qld Rapid Assessment,2012,For storage only,28,Southwood,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19299,23645,Australia,NSW SOP,2005,For storage only,28,Spectacle Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19300,23645,Australia,NSW SOP,2007,For storage only,28,Spectacle Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19301,23645,Australia,NSW SOP,2010,For storage only,28,Spectacle Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19302,23645,Australia,NSW SOP,2013,For storage only,28,Spectacle Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19303,23645,Australia,NSW SOP,2004,For storage only,28,Spectacle Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19304,23646,Australia,NSW SOP,2005,For storage only,28,Split Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19305,23646,Australia,NSW SOP,2007,For storage only,28,Split Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19306,23646,Australia,NSW SOP,2010,For storage only,28,Split Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19307,23646,Australia,NSW SOP,2013,For storage only,28,Split Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19308,23646,Australia,NSW SOP,2004,For storage only,28,Split Solitary Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19309,126991,Australia,Qld Rapid Assessment,2010,For storage only,28,Springbrook,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19310,126991,Australia,Qld Rapid Assessment,2012,For storage only,28,Springbrook,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19311,357233,Australia,Victorian SOP,2010,For storage only,28,Kara Kara National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19312,357233,Australia,Victorian SOP,2005,For storage only,28,Kara Kara National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19313,357233,Australia,Victorian SOP,2013,For storage only,28,Kara Kara National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19314,24229,Australia,Qld Rapid Assessment,2010,For storage only,28,St Helena Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19315,24229,Australia,Qld Rapid Assessment,2012,For storage only,28,St Helena Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19316,400,Australia,Birdlife IBA,2008,For storage only,28,Staaten River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19317,400,Australia,Qld Rapid Assessment,2010,For storage only,28,Staaten River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19318,400,Australia,Qld Rapid Assessment,2012,For storage only,28,Staaten River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19319,424,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19320,424,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19321,356817,Australia,Victorian SOP,2005,For storage only,28,Mount Steiglitz S.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19322,562,Australia,Birdlife IBA,2008,For storage only,28,Stirling Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19323,357248,Australia,Victorian SOP,2005,For storage only,28,Stokes River (3) SS.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19324,310184,Australia,NSW SOP,2005,For storage only,28,Stony Batter Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19325,310184,Australia,NSW SOP,2007,For storage only,28,Stony Batter Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19326,310184,Australia,NSW SOP,2010,For storage only,28,Stony Batter Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19327,310184,Australia,NSW SOP,2013,For storage only,28,Stony Batter Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19328,310184,Australia,NSW SOP,2004,For storage only,28,Stony Batter Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19329,127010,Australia,NSW SOP,2005,For storage only,28,Stony Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19330,127010,Australia,NSW SOP,2007,For storage only,28,Stony Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19331,127010,Australia,NSW SOP,2010,For storage only,28,Stony Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19332,127010,Australia,NSW SOP,2013,For storage only,28,Stony Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19333,127010,Australia,NSW SOP,2004,For storage only,28,Stony Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19334,23650,Australia,NSW SOP,2005,For storage only,28,Stormpetrel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19335,23650,Australia,NSW SOP,2007,For storage only,28,Stormpetrel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19336,23650,Australia,NSW SOP,2013,For storage only,28,Stormpetrel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19337,23650,Australia,NSW SOP,2010,For storage only,28,Stormpetrel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19338,23650,Australia,NSW SOP,2004,For storage only,28,Stormpetrel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19339,23651,Australia,NSW SOP,2005,For storage only,28,Stotts Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19340,23651,Australia,NSW SOP,2007,For storage only,28,Stotts Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19341,23651,Australia,NSW SOP,2010,For storage only,28,Stotts Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19342,23651,Australia,NSW SOP,2013,For storage only,28,Stotts Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19343,23651,Australia,NSW SOP,2004,For storage only,28,Stotts Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19344,314760,Australia,Victorian SOP,2005,For storage only,28,Stradbroke F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19345,313782,Australia,NSW SOP,2005,For storage only,28,Strike-a-Light,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19346,313782,Australia,NSW SOP,2007,For storage only,28,Strike-a-Light,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19347,313782,Australia,NSW SOP,2010,For storage only,28,Strike-a-Light,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19348,313782,Australia,NSW SOP,2013,For storage only,28,Strike-a-Light,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19349,313782,Australia,NSW SOP,2004,For storage only,28,Strike-a-Light,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19350,354,Australia,NSW SOP,2005,For storage only,28,Sturt,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19351,354,Australia,NSW SOP,2007,For storage only,28,Sturt,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19352,354,Australia,NSW SOP,2010,For storage only,28,Sturt,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19353,354,Australia,NSW SOP,2013,For storage only,28,Sturt,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19354,354,Australia,NSW SOP,2004,For storage only,28,Sturt,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19355,555543620,Australia,NSW SOP,2010,For storage only,28,Sugarloaf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19356,555543620,Australia,NSW SOP,2013,For storage only,28,Sugarloaf,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19357,311892,Australia,Qld Rapid Assessment,2010,For storage only,28,Sundown,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19358,311892,Australia,Qld Rapid Assessment,2012,For storage only,28,Sundown,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19359,23654,Australia,NSW SOP,2005,For storage only,28,Susan Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19360,23654,Australia,NSW SOP,2007,For storage only,28,Susan Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19361,23654,Australia,NSW SOP,2010,For storage only,28,Susan Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19362,23654,Australia,NSW SOP,2004,For storage only,28,Susan Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19363,23654,Australia,NSW SOP,2013,For storage only,28,Susan Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19364,357275,Australia,Qld Rapid Assessment,2010,For storage only,28,Swain Reefs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19365,357275,Australia,Qld Rapid Assessment,2012,For storage only,28,Swain Reefs,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19366,308968,Australia,Victorian SOP,2005,For storage only,28,Swan Bay - Edwards Point W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19367,308968,Australia,Victorian SOP,2010,For storage only,28,Swan Bay - Edwards Point W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19368,308968,Australia,Victorian SOP,2013,For storage only,28,Swan Bay - Edwards Point W.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19369,9469,Australia,NSW SOP,2004,For storage only,28,Sydney Harbour,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19370,9469,Australia,NSW SOP,2005,For storage only,28,Sydney Harbour,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19371,9469,Australia,NSW SOP,2007,For storage only,28,Sydney Harbour,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19374,9469,Australia,NSW SOP,2013,For storage only,28,Sydney Harbour,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19375,9469,Australia,NSW SOP,2010,For storage only,28,Sydney Harbour,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19377,310185,Australia,NSW SOP,2005,For storage only,28,Tabbimoble Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19378,310185,Australia,NSW SOP,2007,For storage only,28,Tabbimoble Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19379,310185,Australia,NSW SOP,2010,For storage only,28,Tabbimoble Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19380,310185,Australia,NSW SOP,2013,For storage only,28,Tabbimoble Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19381,310185,Australia,NSW SOP,2004,For storage only,28,Tabbimoble Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19382,357285,Australia,Victorian SOP,2005,For storage only,28,Tabilk Lagoon W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19383,23655,Australia,NSW SOP,2005,For storage only,28,Tabletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19384,23655,Australia,NSW SOP,2007,For storage only,28,Tabletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19385,23655,Australia,NSW SOP,2010,For storage only,28,Tabletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19386,23655,Australia,NSW SOP,2004,For storage only,28,Tabletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19387,23655,Australia,NSW SOP,2013,For storage only,28,Tabletop,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19388,310186,Australia,NSW SOP,2005,For storage only,28,Talawahl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19389,310186,Australia,NSW SOP,2007,For storage only,28,Talawahl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19390,310186,Australia,NSW SOP,2010,For storage only,28,Talawahl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19392,310186,Australia,NSW SOP,2013,For storage only,28,Talawahl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19394,357286,Australia,NSW SOP,2005,For storage only,28,Talawahl,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19395,357286,Australia,NSW SOP,2007,For storage only,28,Talawahl,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19396,310186,Australia,NSW SOP,2004,For storage only,28,Talawahl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19397,357286,Australia,NSW SOP,2004,For storage only,28,Talawahl,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19398,310187,Australia,NSW SOP,2005,For storage only,28,Tallaganda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19399,310187,Australia,NSW SOP,2007,For storage only,28,Tallaganda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19400,310187,Australia,NSW SOP,2010,For storage only,28,Tallaganda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19401,310187,Australia,NSW SOP,2013,For storage only,28,Tallaganda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19402,357289,Australia,NSW SOP,2005,For storage only,28,Tallaganda,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19403,357289,Australia,NSW SOP,2007,For storage only,28,Tallaganda,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19404,357289,Australia,NSW SOP,2010,For storage only,28,Tallaganda,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19405,357289,Australia,NSW SOP,2013,For storage only,28,Tallaganda,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19406,310187,Australia,NSW SOP,2004,For storage only,28,Tallaganda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19407,357289,Australia,NSW SOP,2004,For storage only,28,Tallaganda,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19408,310189,Australia,NSW SOP,2005,For storage only,28,Tallawudjah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19409,310189,Australia,NSW SOP,2007,For storage only,28,Tallawudjah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19410,310189,Australia,NSW SOP,2010,For storage only,28,Tallawudjah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19411,310189,Australia,NSW SOP,2004,For storage only,28,Tallawudjah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19412,310189,Australia,NSW SOP,2013,For storage only,28,Tallawudjah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19413,311868,Australia,Birdlife IBA,2008,For storage only,28,Tamar,Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19414,64065,Australia,Qld Rapid Assessment,2010,For storage only,28,Tamborine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19415,64065,Australia,Qld Rapid Assessment,2012,For storage only,28,Tamborine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19416,314681,Australia,Victorian SOP,2005,For storage only,28,Tang Tang Swamp W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19417,310188,Australia,NSW SOP,2005,For storage only,28,Tapin Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19418,310188,Australia,NSW SOP,2007,For storage only,28,Tapin Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19419,310188,Australia,NSW SOP,2010,For storage only,28,Tapin Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19420,310188,Australia,NSW SOP,2013,For storage only,28,Tapin Tops,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19421,310052,Australia,NSW SOP,2004,For storage only,28,Cunnawarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19422,310190,Australia,NSW SOP,2005,For storage only,28,Tapitallee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19423,310190,Australia,NSW SOP,2007,For storage only,28,Tapitallee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19424,310190,Australia,NSW SOP,2010,For storage only,28,Tapitallee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19425,310190,Australia,NSW SOP,2013,For storage only,28,Tapitallee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19426,310190,Australia,NSW SOP,2004,For storage only,28,Tapitallee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19427,310191,Australia,NSW SOP,2005,For storage only,28,Tarawi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19428,310191,Australia,NSW SOP,2007,For storage only,28,Tarawi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19429,310191,Australia,NSW SOP,2010,For storage only,28,Tarawi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19430,310191,Australia,NSW SOP,2013,For storage only,28,Tarawi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19431,310191,Australia,NSW SOP,2004,For storage only,28,Tarawi,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19432,555543583,Australia,NSW SOP,2007,For storage only,28,Taringa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19433,555543583,Australia,NSW SOP,2010,For storage only,28,Taringa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19434,555543583,Australia,NSW SOP,2013,For storage only,28,Taringa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19435,555543583,Australia,NSW SOP,2004,For storage only,28,Taringa,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19436,9470,Australia,NSW SOP,2005,For storage only,28,Tarlo River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19437,9470,Australia,NSW SOP,2007,For storage only,28,Tarlo River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19438,9470,Australia,NSW SOP,2010,For storage only,28,Tarlo River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19439,9470,Australia,NSW SOP,2013,For storage only,28,Tarlo River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19440,9470,Australia,NSW SOP,2004,For storage only,28,Tarlo River,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19441,309955,Australia,Qld Rapid Assessment,2010,For storage only,28,Tarong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19442,309955,Australia,Qld Rapid Assessment,2012,For storage only,28,Tarong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19443,24845,Australia,Victorian SOP,2005,For storage only,28,Tarra-Bulga National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19444,24845,Australia,Victorian SOP,2010,For storage only,28,Tarra-Bulga National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19445,24845,Australia,Victorian SOP,2013,For storage only,28,Tarra-Bulga National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19446,5000,Australia,WHA Outlook Report,2014,For storage only,28,Tasmanian Wilderness,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -19447,127039,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19448,127039,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19449,555548649,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19450,555548649,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19451,311828,Australia,Victorian SOP,2005,For storage only,28,Terrick Terrick National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19452,311828,Australia,Victorian SOP,2010,For storage only,28,Terrick Terrick National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19453,311828,Australia,Victorian SOP,2013,For storage only,28,Terrick Terrick National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19454,555548808,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19455,555548676,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19456,555548706,Australia,Qld Rapid Assessment,2012,For storage only,28,Tewantin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19457,555576844,Australia,NSW SOP,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19458,305369,Australia,Victorian SOP,2010,For storage only,28,The Arches,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -19459,305369,Australia,Victorian SOP,2005,For storage only,28,The Arches,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -19460,305369,Australia,Victorian SOP,2013,For storage only,28,The Arches,Marine Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -19461,1150,Australia,NSW SOP,2005,For storage only,28,The Basin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19462,1150,Australia,NSW SOP,2007,For storage only,28,The Basin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19463,1150,Australia,NSW SOP,2010,For storage only,28,The Basin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19464,1150,Australia,NSW SOP,2013,For storage only,28,The Basin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19465,1150,Australia,NSW SOP,2004,For storage only,28,The Basin,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19466,310192,Australia,NSW SOP,2005,For storage only,28,The Castles,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19467,310192,Australia,NSW SOP,2007,For storage only,28,The Castles,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19468,310192,Australia,NSW SOP,2010,For storage only,28,The Castles,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19469,310192,Australia,NSW SOP,2013,For storage only,28,The Castles,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19470,310192,Australia,NSW SOP,2004,For storage only,28,The Castles,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19471,357332,Australia,NSW SOP,2005,For storage only,28,The Cells,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19472,357332,Australia,NSW SOP,2007,For storage only,28,The Cells,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19473,357332,Australia,NSW SOP,2010,For storage only,28,The Cells,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19474,357332,Australia,NSW SOP,2013,For storage only,28,The Cells,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19475,357332,Australia,NSW SOP,2004,For storage only,28,The Cells,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19476,23659,Australia,NSW SOP,2005,For storage only,28,The Charcoal Tank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19477,23659,Australia,NSW SOP,2007,For storage only,28,The Charcoal Tank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19478,23659,Australia,NSW SOP,2010,For storage only,28,The Charcoal Tank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19479,23659,Australia,NSW SOP,2013,For storage only,28,The Charcoal Tank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19480,23659,Australia,NSW SOP,2004,For storage only,28,The Charcoal Tank,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19481,311950,Australia,NSW SOP,2005,For storage only,28,The Glen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19482,311950,Australia,NSW SOP,2007,For storage only,28,The Glen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19483,311950,Australia,NSW SOP,2010,For storage only,28,The Glen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19484,311950,Australia,NSW SOP,2013,For storage only,28,The Glen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19485,311950,Australia,NSW SOP,2004,For storage only,28,The Glen,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19486,549,Australia,Victorian SOP,2010,For storage only,28,The Lakes National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19487,549,Australia,Victorian SOP,2005,For storage only,28,The Lakes National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19488,549,Australia,Victorian SOP,2013,For storage only,28,The Lakes National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19489,24247,Australia,Qld Rapid Assessment,2010,For storage only,28,The Palms,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19490,24247,Australia,Qld Rapid Assessment,2012,For storage only,28,The Palms,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19491,357341,Australia,Victorian SOP,2010,For storage only,28,The Pines F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19492,357341,Australia,Victorian SOP,2013,For storage only,28,The Pines F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19493,23660,Australia,NSW SOP,2005,For storage only,28,The Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19494,23660,Australia,NSW SOP,2007,For storage only,28,The Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19495,23660,Australia,NSW SOP,2010,For storage only,28,The Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19496,23660,Australia,NSW SOP,2013,For storage only,28,The Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19497,23660,Australia,NSW SOP,2004,For storage only,28,The Rock,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19498,314852,Australia,Victorian SOP,2005,For storage only,28,The Spit W.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19499,314852,Australia,Victorian SOP,2010,For storage only,28,The Spit W.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19500,314852,Australia,Victorian SOP,2013,For storage only,28,The Spit W.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19501,9471,Australia,NSW SOP,2005,For storage only,28,Thirlmere Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19502,9471,Australia,NSW SOP,2007,For storage only,28,Thirlmere Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19503,9471,Australia,NSW SOP,2010,For storage only,28,Thirlmere Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19504,9471,Australia,NSW SOP,2013,For storage only,28,Thirlmere Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19505,9471,Australia,NSW SOP,2004,For storage only,28,Thirlmere Lakes,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19506,309956,Australia,Qld Rapid Assessment,2010,For storage only,28,Three Islands Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19507,309956,Australia,Qld Rapid Assessment,2012,For storage only,28,Three Islands Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19508,64070,Australia,Qld Rapid Assessment,2010,For storage only,28,Thrushton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19509,64070,Australia,Qld Rapid Assessment,2012,For storage only,28,Thrushton,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19510,555543590,Australia,NSW SOP,2010,For storage only,28,Tilligerry,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19511,555543590,Australia,NSW SOP,2013,For storage only,28,Tilligerry,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19512,555543591,Australia,NSW SOP,2013,For storage only,28,Tilligerry,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19513,310193,Australia,NSW SOP,2004,For storage only,28,Tilligerry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19514,555543591,Australia,NSW SOP,2010,For storage only,28,Tilligerry,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19515,310193,Australia,NSW SOP,2005,For storage only,28,Tilligerry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19516,310193,Australia,NSW SOP,2007,For storage only,28,Tilligerry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19517,310193,Australia,NSW SOP,2010,For storage only,28,Tilligerry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19518,310193,Australia,NSW SOP,2013,For storage only,28,Tilligerry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19519,555543592,Australia,NSW SOP,2010,For storage only,28,Timmallallie,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19520,555543592,Australia,NSW SOP,2013,For storage only,28,Timmallallie,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19521,357359,Australia,NSW SOP,2005,For storage only,28,Timbarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19522,357359,Australia,NSW SOP,2007,For storage only,28,Timbarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19523,357359,Australia,NSW SOP,2010,For storage only,28,Timbarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19524,357359,Australia,NSW SOP,2004,For storage only,28,Timbarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19525,357359,Australia,NSW SOP,2013,For storage only,28,Timbarra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19526,314762,Australia,Victorian SOP,2013,For storage only,28,Timberoo F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19527,310194,Australia,NSW SOP,2005,For storage only,28,Tinderry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19528,310194,Australia,NSW SOP,2007,For storage only,28,Tinderry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19529,310194,Australia,NSW SOP,2010,For storage only,28,Tinderry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19530,310194,Australia,NSW SOP,2013,For storage only,28,Tinderry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19531,310194,Australia,NSW SOP,2004,For storage only,28,Tinderry,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19532,555576850,Australia,NSW SOP,2013,For storage only,28,Tingha Plateau,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19533,64185,Australia,NSW SOP,2005,For storage only,28,Tingira Heights,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19534,64185,Australia,NSW SOP,2007,For storage only,28,Tingira Heights,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19535,64185,Australia,NSW SOP,2010,For storage only,28,Tingira Heights,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19536,64185,Australia,NSW SOP,2013,For storage only,28,Tingira Heights,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19537,64185,Australia,NSW SOP,2004,For storage only,28,Tingira Heights,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19538,555543593,Australia,NSW SOP,2010,For storage only,28,Tinkrameanah,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19539,555543593,Australia,NSW SOP,2013,For storage only,28,Tinkrameanah,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19540,23665,Australia,NSW SOP,2005,For storage only,28,Tollgate Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19541,23665,Australia,NSW SOP,2007,For storage only,28,Tollgate Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19542,23665,Australia,NSW SOP,2010,For storage only,28,Tollgate Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19543,23665,Australia,NSW SOP,2013,For storage only,28,Tollgate Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19544,23665,Australia,NSW SOP,2004,For storage only,28,Tollgate Islands,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19545,23666,Australia,NSW SOP,2005,For storage only,28,Tollingo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19546,23666,Australia,NSW SOP,2007,For storage only,28,Tollingo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19547,23666,Australia,NSW SOP,2010,For storage only,28,Tollingo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19548,23666,Australia,NSW SOP,2013,For storage only,28,Tollingo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19549,23666,Australia,NSW SOP,2004,For storage only,28,Tollingo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19550,357369,Australia,Victorian SOP,2005,For storage only,28,Tomahawk Creek,Reference Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19551,310195,Australia,NSW SOP,2005,For storage only,28,Tomalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19552,310195,Australia,NSW SOP,2007,For storage only,28,Tomalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19553,310195,Australia,NSW SOP,2010,For storage only,28,Tomalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19554,310195,Australia,NSW SOP,2013,For storage only,28,Tomalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19555,310195,Australia,NSW SOP,2004,For storage only,28,Tomalla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19556,23667,Australia,NSW SOP,2005,For storage only,28,Tomaree,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19557,23667,Australia,NSW SOP,2007,For storage only,28,Tomaree,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19558,23667,Australia,NSW SOP,2010,For storage only,28,Tomaree,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19559,23667,Australia,NSW SOP,2013,For storage only,28,Tomaree,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19560,23667,Australia,NSW SOP,2004,For storage only,28,Tomaree,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19561,102558,Australia,NSW SOP,2005,For storage only,28,Tooloom,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19562,102558,Australia,NSW SOP,2007,For storage only,28,Tooloom,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19563,102558,Australia,NSW SOP,2010,For storage only,28,Tooloom,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19564,102558,Australia,NSW SOP,2013,For storage only,28,Tooloom,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19565,102558,Australia,NSW SOP,2004,For storage only,28,Tooloom,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19566,127091,Australia,Victorian SOP,2005,For storage only,28,Tooloy F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19567,309033,Australia,Victorian SOP,2010,For storage only,28,Tooloy-Lake Mundi W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19568,309033,Australia,Victorian SOP,2005,For storage only,28,Tooloy-Lake Mundi W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19569,309033,Australia,Victorian SOP,2013,For storage only,28,Tooloy-Lake Mundi W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19570,127094,Australia,NSW SOP,2005,For storage only,28,Toonumbar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19571,127094,Australia,NSW SOP,2007,For storage only,28,Toonumbar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19572,127094,Australia,NSW SOP,2010,For storage only,28,Toonumbar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19574,127094,Australia,NSW SOP,2013,For storage only,28,Toonumbar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19575,357382,Australia,NSW SOP,2005,For storage only,28,Toonumbar,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19576,357382,Australia,NSW SOP,2007,For storage only,28,Toonumbar,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19577,127094,Australia,NSW SOP,2004,For storage only,28,Toonumbar,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19578,357382,Australia,NSW SOP,2004,For storage only,28,Toonumbar,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19580,555576851,Australia,NSW SOP,2010,For storage only,28,Toorale,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19581,555576851,Australia,NSW SOP,2013,For storage only,28,Toorale,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19582,555576852,Australia,NSW SOP,2013,For storage only,28,Toorale,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19583,24257,Australia,Qld Rapid Assessment,2010,For storage only,28,Topaz Road,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19584,24257,Australia,Qld Rapid Assessment,2012,For storage only,28,Topaz Road,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19585,357386,Australia,NSW SOP,2005,For storage only,28,Torrington,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19586,357386,Australia,NSW SOP,2007,For storage only,28,Torrington,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19587,357386,Australia,NSW SOP,2010,For storage only,28,Torrington,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19588,357386,Australia,NSW SOP,2013,For storage only,28,Torrington,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19589,357386,Australia,NSW SOP,2004,For storage only,28,Torrington,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19590,313681,Australia,NSW SOP,2005,For storage only,28,Towarri,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19591,313681,Australia,NSW SOP,2007,For storage only,28,Towarri,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19592,313681,Australia,NSW SOP,2010,For storage only,28,Towarri,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19593,313681,Australia,NSW SOP,2013,For storage only,28,Towarri,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19594,310183,Australia,NSW SOP,2004,For storage only,28,South East Forest,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19595,314685,Australia,Victorian SOP,2005,For storage only,28,Tower Hill W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19596,314685,Australia,Victorian SOP,2010,For storage only,28,Tower Hill W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19597,314685,Australia,Victorian SOP,2013,For storage only,28,Tower Hill W.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19598,310196,Australia,NSW SOP,2005,For storage only,28,Towibakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19599,310196,Australia,NSW SOP,2007,For storage only,28,Towibakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19600,310196,Australia,NSW SOP,2010,For storage only,28,Towibakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19601,310196,Australia,NSW SOP,2013,For storage only,28,Towibakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19602,310196,Australia,NSW SOP,2004,For storage only,28,Towibakh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19603,12965,Australia,NSW SOP,2005,For storage only,28,Towra Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19604,12965,Australia,NSW SOP,2007,For storage only,28,Towra Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19605,12965,Australia,NSW SOP,2010,For storage only,28,Towra Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19606,12965,Australia,NSW SOP,2013,For storage only,28,Towra Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19607,23670,Australia,NSW SOP,2010,For storage only,28,Towra Point,Aquatic Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19608,12965,Australia,NSW SOP,2004,For storage only,28,Towra Point,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19609,314855,Australia,Victorian SOP,2005,For storage only,28,Tragowel Swamp N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19610,127108,Australia,Qld Rapid Assessment,2010,For storage only,28,Tregole,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19611,127108,Australia,Qld Rapid Assessment,2012,For storage only,28,Tregole,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19612,555543623,Australia,NSW SOP,2010,For storage only,28,Trinkey,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19613,555543623,Australia,NSW SOP,2013,For storage only,28,Trinkey,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19614,310197,Australia,NSW SOP,2005,For storage only,28,Triplarina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19615,310197,Australia,NSW SOP,2007,For storage only,28,Triplarina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19616,310197,Australia,NSW SOP,2010,For storage only,28,Triplarina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19617,310197,Australia,NSW SOP,2013,For storage only,28,Triplarina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19618,310197,Australia,NSW SOP,2004,For storage only,28,Triplarina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19619,127111,Australia,Qld Rapid Assessment,2010,For storage only,28,Triunia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19620,127111,Australia,Qld Rapid Assessment,2012,For storage only,28,Triunia,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19621,555548638,Australia,Qld Rapid Assessment,2010,For storage only,28,Tuchekoi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19622,555548638,Australia,Qld Rapid Assessment,2012,For storage only,28,Tuchekoi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19623,23671,Australia,NSW SOP,2005,For storage only,28,Tuckean,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19624,23671,Australia,NSW SOP,2007,For storage only,28,Tuckean,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19625,23671,Australia,NSW SOP,2010,For storage only,28,Tuckean,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19626,23671,Australia,NSW SOP,2004,For storage only,28,Tuckean,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19627,23671,Australia,NSW SOP,2013,For storage only,28,Tuckean,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19628,23672,Australia,NSW SOP,2005,For storage only,28,Tucki Tucki,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19629,23672,Australia,NSW SOP,2007,For storage only,28,Tucki Tucki,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19630,23672,Australia,NSW SOP,2010,For storage only,28,Tucki Tucki,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19631,23672,Australia,NSW SOP,2013,For storage only,28,Tucki Tucki,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19632,23672,Australia,NSW SOP,2004,For storage only,28,Tucki Tucki,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19633,555543624,Australia,NSW SOP,2007,For storage only,28,Tuggerah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19634,555543624,Australia,NSW SOP,2010,For storage only,28,Tuggerah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19635,555543624,Australia,NSW SOP,2013,For storage only,28,Tuggerah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19636,555543625,Australia,NSW SOP,2010,For storage only,28,Tuggerah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19637,555543625,Australia,NSW SOP,2013,For storage only,28,Tuggerah,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19638,310198,Australia,NSW SOP,2005,For storage only,28,Tuggolo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19639,310198,Australia,NSW SOP,2007,For storage only,28,Tuggolo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19640,310198,Australia,NSW SOP,2010,For storage only,28,Tuggolo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19641,310198,Australia,NSW SOP,2013,For storage only,28,Tuggolo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19642,310198,Australia,NSW SOP,2004,For storage only,28,Tuggolo Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19643,357401,Australia,Qld Rapid Assessment,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19644,357401,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19645,357402,Australia,Qld Rapid Assessment,2010,For storage only,28,Tully Falls,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19646,357402,Australia,Qld Rapid Assessment,2012,For storage only,28,Tully Falls,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19647,9482,Australia,Qld Rapid Assessment,2010,For storage only,28,Tully Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19648,9482,Australia,Qld Rapid Assessment,2012,For storage only,28,Tully Gorge,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19650,555548639,Australia,Qld Rapid Assessment,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -19651,555543627,Australia,NSW SOP,2005,For storage only,28,Tumblong,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19652,555543627,Australia,NSW SOP,2007,For storage only,28,Tumblong,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19653,555543627,Australia,NSW SOP,2010,For storage only,28,Tumblong,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19654,555543627,Australia,NSW SOP,2013,For storage only,28,Tumblong,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19655,357408,Australia,NSW SOP,2005,For storage only,28,Turallo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19656,357408,Australia,NSW SOP,2007,For storage only,28,Turallo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19657,357408,Australia,NSW SOP,2010,For storage only,28,Turallo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19658,357408,Australia,NSW SOP,2013,For storage only,28,Turallo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19659,357408,Australia,NSW SOP,2004,For storage only,28,Turallo,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19660,357410,Australia,NSW SOP,2005,For storage only,28,Turon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19661,357410,Australia,NSW SOP,2007,For storage only,28,Turon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19662,357410,Australia,NSW SOP,2010,For storage only,28,Turon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19663,357410,Australia,NSW SOP,2013,For storage only,28,Turon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19664,357410,Australia,NSW SOP,2004,For storage only,28,Turon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19665,24261,Australia,Qld Rapid Assessment,2010,For storage only,28,Turtle Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19666,24261,Australia,Qld Rapid Assessment,2012,For storage only,28,Turtle Group,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19667,356546,Australia,Victorian SOP,2010,For storage only,28,Tutchewop W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19668,356546,Australia,Victorian SOP,2013,For storage only,28,Tutchewop W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19669,311949,Australia,NSW SOP,2005,For storage only,28,Tweed Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19670,311949,Australia,NSW SOP,2007,For storage only,28,Tweed Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19671,311949,Australia,NSW SOP,2010,For storage only,28,Tweed Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19672,311949,Australia,NSW SOP,2013,For storage only,28,Tweed Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19673,311949,Australia,NSW SOP,2004,For storage only,28,Tweed Estuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19674,305351,Australia,Victorian SOP,2010,For storage only,28,Twelve Apostles,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19675,305351,Australia,Victorian SOP,2005,For storage only,28,Twelve Apostles,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19676,305351,Australia,Victorian SOP,2013,For storage only,28,Twelve Apostles,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19677,23676,Australia,NSW SOP,2005,For storage only,28,Tyagarah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19678,23676,Australia,NSW SOP,2007,For storage only,28,Tyagarah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19679,23676,Australia,NSW SOP,2010,For storage only,28,Tyagarah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19680,23676,Australia,NSW SOP,2013,For storage only,28,Tyagarah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19681,23676,Australia,NSW SOP,2004,For storage only,28,Tyagarah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19682,309061,Australia,Victorian SOP,2010,For storage only,28,Tyers Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19683,309061,Australia,Victorian SOP,2005,For storage only,28,Tyers Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19684,309061,Australia,Victorian SOP,2013,For storage only,28,Tyers Park,Conservation Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19685,127129,Australia,Victorian SOP,2005,For storage only,28,Tyrendarra F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19686,23677,Australia,NSW SOP,2005,For storage only,28,Ukerebagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19687,23677,Australia,NSW SOP,2007,For storage only,28,Ukerebagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19688,23677,Australia,NSW SOP,2010,For storage only,28,Ukerebagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19689,23677,Australia,NSW SOP,2013,For storage only,28,Ukerebagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19690,555576854,Australia,NSW SOP,2013,For storage only,28,Ukerbarley,NRS Addition - Gazettal in Progress,"GD-PAME, version pre-2017",Not Reported,2018,English -19691,23677,Australia,NSW SOP,2004,For storage only,28,Ukerebagh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19692,310199,Australia,NSW SOP,2005,For storage only,28,Ulandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19693,310199,Australia,NSW SOP,2007,For storage only,28,Ulandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19694,310199,Australia,NSW SOP,2010,For storage only,28,Ulandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19695,310199,Australia,NSW SOP,2013,For storage only,28,Ulandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19696,310199,Australia,NSW SOP,2004,For storage only,28,Ulandra,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19702,900010,Australia,WHA Outlook Report,2014,For storage only,28,Uluru-Kata Tjuta National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -19703,64080,Australia,Qld Rapid Assessment,2010,For storage only,28,Undara Volcanic,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19704,64080,Australia,Qld Rapid Assessment,2012,For storage only,28,Undara Volcanic,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19705,310121,Australia,NSW SOP,2005,For storage only,28,Wooyung,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19706,310121,Australia,NSW SOP,2007,For storage only,28,Wooyung,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19707,310121,Australia,NSW SOP,2010,For storage only,28,Wooyung,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19708,310121,Australia,NSW SOP,2013,For storage only,28,Wooyung,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19709,310121,Australia,NSW SOP,2004,For storage only,28,Wooyung,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19710,555543653,Australia,NSW SOP,2010,For storage only,28,Upper Nepean,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19711,555543653,Australia,NSW SOP,2013,For storage only,28,Upper Nepean,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19712,23678,Australia,NSW SOP,2005,For storage only,28,Uralba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19713,23678,Australia,NSW SOP,2007,For storage only,28,Uralba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19714,23678,Australia,NSW SOP,2013,For storage only,28,Uralba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19715,23678,Australia,NSW SOP,2004,For storage only,28,Uralba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19716,310202,Australia,NSW SOP,2005,For storage only,28,Valla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19717,310202,Australia,NSW SOP,2007,For storage only,28,Valla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19718,310202,Australia,NSW SOP,2010,For storage only,28,Valla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19719,310202,Australia,NSW SOP,2013,For storage only,28,Valla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19720,310202,Australia,NSW SOP,2004,For storage only,28,Valla,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19721,127581,Australia,Qld Rapid Assessment,2010,For storage only,28,Venman Bushland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19722,127581,Australia,Qld Rapid Assessment,2012,For storage only,28,Venman Bushland,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19723,23679,Australia,NSW SOP,2005,For storage only,28,Victoria Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19724,23679,Australia,NSW SOP,2007,For storage only,28,Victoria Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19725,23679,Australia,NSW SOP,2010,For storage only,28,Victoria Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19726,23679,Australia,NSW SOP,2013,For storage only,28,Victoria Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19727,23679,Australia,NSW SOP,2004,For storage only,28,Victoria Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19728,357523,Australia,Victorian SOP,2010,For storage only,28,Waanyarra N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19729,357523,Australia,Victorian SOP,2005,For storage only,28,Waanyarra N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19730,64100,Australia,Victorian SOP,2010,For storage only,28,Wabba,Wilderness Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19731,64100,Australia,Victorian SOP,2005,For storage only,28,Wabba,Wilderness Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19732,64100,Australia,Victorian SOP,2013,For storage only,28,Wabba,Wilderness Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19733,2607,Australia,NSW SOP,2005,For storage only,28,Wadbilliga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19734,2607,Australia,NSW SOP,2007,For storage only,28,Wadbilliga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19735,2607,Australia,NSW SOP,2010,For storage only,28,Wadbilliga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19736,2607,Australia,NSW SOP,2013,For storage only,28,Wadbilliga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19737,2607,Australia,NSW SOP,2004,For storage only,28,Wadbilliga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19738,310203,Australia,NSW SOP,2005,For storage only,28,Wadjan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19739,310203,Australia,NSW SOP,2007,For storage only,28,Wadjan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19740,310203,Australia,NSW SOP,2010,For storage only,28,Wadjan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19741,310203,Australia,NSW SOP,2004,For storage only,28,Wadjan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19742,310203,Australia,NSW SOP,2013,For storage only,28,Wadjan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19743,1161,Australia,NSW SOP,2005,For storage only,28,Wallabadah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19744,1161,Australia,NSW SOP,2007,For storage only,28,Wallabadah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19745,1161,Australia,NSW SOP,2010,For storage only,28,Wallabadah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19746,1161,Australia,NSW SOP,2004,For storage only,28,Wallabadah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19747,1161,Australia,NSW SOP,2013,For storage only,28,Wallabadah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19748,555576898,Australia,NSW SOP,2013,For storage only,28,Wallabadah,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19749,310204,Australia,NSW SOP,2005,For storage only,28,Wallamba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19750,310204,Australia,NSW SOP,2007,For storage only,28,Wallamba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19751,310204,Australia,NSW SOP,2010,For storage only,28,Wallamba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19752,310204,Australia,NSW SOP,2013,For storage only,28,Wallamba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19753,310204,Australia,NSW SOP,2004,For storage only,28,Wallamba,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19754,357530,Australia,NSW SOP,2005,For storage only,28,Wallarah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19755,357530,Australia,NSW SOP,2007,For storage only,28,Wallarah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19756,357530,Australia,NSW SOP,2010,For storage only,28,Wallarah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19757,357530,Australia,NSW SOP,2013,For storage only,28,Wallarah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19758,357530,Australia,NSW SOP,2004,For storage only,28,Wallarah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19759,555543634,Australia,NSW SOP,2010,For storage only,28,Wallaroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19760,555543634,Australia,NSW SOP,2013,For storage only,28,Wallaroo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19761,555548655,Australia,NSW SOP,2005,For storage only,28,Wallaroo,Flora Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19762,555548655,Australia,NSW SOP,2007,For storage only,28,Wallaroo,Flora Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19763,555548655,Australia,NSW SOP,2004,For storage only,28,Wallaroo,Flora Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19764,310206,Australia,NSW SOP,2005,For storage only,28,Wallingat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19765,310206,Australia,NSW SOP,2007,For storage only,28,Wallingat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19766,310206,Australia,NSW SOP,2010,For storage only,28,Wallingat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19767,310206,Australia,NSW SOP,2013,For storage only,28,Wallingat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19768,310206,Australia,NSW SOP,2004,For storage only,28,Wallingat,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19769,23682,Australia,NSW SOP,2005,For storage only,28,Wallis Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19770,23682,Australia,NSW SOP,2007,For storage only,28,Wallis Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19771,23682,Australia,NSW SOP,2010,For storage only,28,Wallis Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19772,23682,Australia,NSW SOP,2013,For storage only,28,Wallis Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19773,23682,Australia,NSW SOP,2004,For storage only,28,Wallis Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19774,309715,Australia,Tasmanian WHA,2004,For storage only,28,Walls of Jerusalem,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19775,64087,Australia,NSW SOP,2005,For storage only,28,Wallumatta,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19776,64087,Australia,NSW SOP,2007,For storage only,28,Wallumatta,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19777,64087,Australia,NSW SOP,2010,For storage only,28,Wallumatta,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19778,64087,Australia,NSW SOP,2013,For storage only,28,Wallumatta,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19779,64087,Australia,NSW SOP,2004,For storage only,28,Wallumatta,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19780,23683,Australia,NSW SOP,2005,For storage only,28,Wamberal Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19781,23683,Australia,NSW SOP,2007,For storage only,28,Wamberal Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19782,23683,Australia,NSW SOP,2010,For storage only,28,Wamberal Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19783,23683,Australia,NSW SOP,2013,For storage only,28,Wamberal Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19784,23683,Australia,NSW SOP,2004,For storage only,28,Wamberal Lagoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19785,310207,Australia,NSW SOP,2005,For storage only,28,Wambina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19786,310207,Australia,NSW SOP,2007,For storage only,28,Wambina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19787,310207,Australia,NSW SOP,2010,For storage only,28,Wambina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19788,310207,Australia,NSW SOP,2013,For storage only,28,Wambina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19789,310207,Australia,NSW SOP,2004,For storage only,28,Wambina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19790,23684,Australia,NSW SOP,2005,For storage only,28,Wambool,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19791,23684,Australia,NSW SOP,2007,For storage only,28,Wambool,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19792,23684,Australia,NSW SOP,2010,For storage only,28,Wambool,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19793,23684,Australia,NSW SOP,2013,For storage only,28,Wambool,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19794,23684,Australia,NSW SOP,2004,For storage only,28,Wambool,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19795,310208,Australia,NSW SOP,2005,For storage only,28,Wanna Wanna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19796,310208,Australia,NSW SOP,2007,For storage only,28,Wanna Wanna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19797,310208,Australia,NSW SOP,2010,For storage only,28,Wanna Wanna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19798,310208,Australia,NSW SOP,2013,For storage only,28,Wanna Wanna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19800,310209,Australia,NSW SOP,2005,For storage only,28,Warragai Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19801,310209,Australia,NSW SOP,2007,For storage only,28,Warragai Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19802,310209,Australia,NSW SOP,2010,For storage only,28,Warragai Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19803,310209,Australia,NSW SOP,2013,For storage only,28,Warragai Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19804,310209,Australia,NSW SOP,2004,For storage only,28,Warragai Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19805,357549,Australia,Victorian SOP,2005,For storage only,28,Warby Range,Reference Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19806,555548807,Australia,Victorian SOP,2010,For storage only,28,Warby-Ovens National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19807,555548807,Australia,Victorian SOP,2013,For storage only,28,Warby-Ovens National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19808,555543638,Australia,NSW SOP,2010,For storage only,28,Warialda,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19809,555543638,Australia,NSW SOP,2013,For storage only,28,Warialda,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19810,555543639,Australia,NSW SOP,2010,For storage only,28,Warialda,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19811,555543639,Australia,NSW SOP,2013,For storage only,28,Warialda,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19812,310210,Australia,NSW SOP,2005,For storage only,28,Warra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19813,310210,Australia,NSW SOP,2007,For storage only,28,Warra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19814,310210,Australia,NSW SOP,2010,For storage only,28,Warra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19815,310210,Australia,NSW SOP,2013,For storage only,28,Warra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19816,310210,Australia,NSW SOP,2004,For storage only,28,Warra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19817,23685,Australia,NSW SOP,2005,For storage only,28,Warrabah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19818,23685,Australia,NSW SOP,2007,For storage only,28,Warrabah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19819,23685,Australia,NSW SOP,2010,For storage only,28,Warrabah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19820,23685,Australia,NSW SOP,2013,For storage only,28,Warrabah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19821,23685,Australia,NSW SOP,2004,For storage only,28,Warrabah,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19822,314709,Australia,Victorian SOP,2005,For storage only,28,Warramate Hills N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19823,24871,Australia,Victorian SOP,2005,For storage only,28,Warrandyte,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19824,24871,Australia,Victorian SOP,2010,For storage only,28,Warrandyte,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19825,24871,Australia,Victorian SOP,2013,For storage only,28,Warrandyte,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19826,308976,Australia,Victorian SOP,2010,For storage only,28,Warrandyte - Kinglake N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19827,308976,Australia,Victorian SOP,2013,For storage only,28,Warrandyte - Kinglake N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19828,357742,Australia,Qld Rapid Assessment,2010,For storage only,28,Warro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19829,357742,Australia,Qld Rapid Assessment,2012,For storage only,28,Warro,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19830,365,Australia,NSW SOP,2005,For storage only,28,Warrumbungle,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19831,365,Australia,NSW SOP,2007,For storage only,28,Warrumbungle,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19832,365,Australia,NSW SOP,2010,For storage only,28,Warrumbungle,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19833,365,Australia,NSW SOP,2013,For storage only,28,Warrumbungle,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19834,365,Australia,NSW SOP,2004,For storage only,28,Warrumbungle,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19835,10596,Australia,NSW SOP,2005,For storage only,28,Washpool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19836,10596,Australia,NSW SOP,2007,For storage only,28,Washpool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19837,10596,Australia,NSW SOP,2010,For storage only,28,Washpool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19838,10596,Australia,NSW SOP,2013,For storage only,28,Washpool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19839,357557,Australia,NSW SOP,2005,For storage only,28,Washpool,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19840,357557,Australia,NSW SOP,2007,For storage only,28,Washpool,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19841,357557,Australia,NSW SOP,2010,For storage only,28,Washpool,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19842,357557,Australia,NSW SOP,2013,For storage only,28,Washpool,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19843,10596,Australia,NSW SOP,2004,For storage only,28,Washpool,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19844,357557,Australia,NSW SOP,2004,For storage only,28,Washpool,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19845,310211,Australia,NSW SOP,2005,For storage only,28,Watagans,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19846,310211,Australia,NSW SOP,2007,For storage only,28,Watagans,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19847,310211,Australia,NSW SOP,2010,For storage only,28,Watagans,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19848,310211,Australia,NSW SOP,2013,For storage only,28,Watagans,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19849,310211,Australia,NSW SOP,2004,For storage only,28,Watagans,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19850,313841,Australia,NTMEE,2013,For storage only,28,Watarrka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19851,555543642,Australia,NSW SOP,2007,For storage only,28,Watchimbark,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19852,555543642,Australia,NSW SOP,2010,For storage only,28,Watchimbark,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19853,555543642,Australia,NSW SOP,2013,For storage only,28,Watchimbark,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19854,314770,Australia,Victorian SOP,2005,For storage only,28,Wathe F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19855,314770,Australia,Victorian SOP,2013,For storage only,28,Wathe F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19856,9458,Australia,NSW SOP,2005,For storage only,28,Watsons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19857,9458,Australia,NSW SOP,2007,For storage only,28,Watsons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19858,9458,Australia,NSW SOP,2010,For storage only,28,Watsons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19859,9458,Australia,NSW SOP,2013,For storage only,28,Watsons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19860,555543644,Australia,NSW SOP,2007,For storage only,28,Watsons Creek,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19861,555543644,Australia,NSW SOP,2010,For storage only,28,Watsons Creek,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19862,9458,Australia,NSW SOP,2004,For storage only,28,Watsons Creek,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19863,555543644,Australia,NSW SOP,2013,For storage only,28,Watsons Creek,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19864,555576908,Australia,NSW SOP,2013,For storage only,28,Watsons Creek,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19865,374,Australia,NSW SOP,2005,For storage only,28,Weddin Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19866,374,Australia,NSW SOP,2007,For storage only,28,Weddin Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19867,374,Australia,NSW SOP,2010,For storage only,28,Weddin Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19868,374,Australia,NSW SOP,2013,For storage only,28,Weddin Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19869,374,Australia,NSW SOP,2004,For storage only,28,Weddin Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19870,23690,Australia,NSW SOP,2005,For storage only,28,Wee Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19871,23690,Australia,NSW SOP,2007,For storage only,28,Wee Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19872,23690,Australia,NSW SOP,2010,For storage only,28,Wee Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19873,23690,Australia,NSW SOP,2013,For storage only,28,Wee Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19874,23690,Australia,NSW SOP,2004,For storage only,28,Wee Jasper,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19875,23691,Australia,NSW SOP,2005,For storage only,28,Weelah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19876,23691,Australia,NSW SOP,2007,For storage only,28,Weelah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19877,23691,Australia,NSW SOP,2010,For storage only,28,Weelah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19878,23691,Australia,NSW SOP,2013,For storage only,28,Weelah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19879,23691,Australia,NSW SOP,2004,For storage only,28,Weelah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19880,23692,Australia,NSW SOP,2005,For storage only,28,Weetalibah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19881,23692,Australia,NSW SOP,2007,For storage only,28,Weetalibah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19882,23692,Australia,NSW SOP,2010,For storage only,28,Weetalibah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19883,23692,Australia,NSW SOP,2013,For storage only,28,Weetalibah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19884,23692,Australia,NSW SOP,2004,For storage only,28,Weetalibah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19885,127667,Australia,Qld Rapid Assessment,2010,For storage only,28,Welford,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19886,127667,Australia,Qld Rapid Assessment,2012,For storage only,28,Welford,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19887,310113,Australia,NSW SOP,2005,For storage only,28,Werakata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19888,310113,Australia,NSW SOP,2007,For storage only,28,Werakata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19889,310113,Australia,NSW SOP,2010,For storage only,28,Werakata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19890,310113,Australia,NSW SOP,2013,For storage only,28,Werakata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19891,555543649,Australia,NSW SOP,2010,For storage only,28,Werakata,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19892,555543649,Australia,NSW SOP,2013,For storage only,28,Werakata,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19893,310070,Australia,NSW SOP,2004,For storage only,28,Ghin-Doo-Ee,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19894,357572,Australia,NSW SOP,2005,For storage only,28,Wereboldera,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19895,357572,Australia,NSW SOP,2007,For storage only,28,Wereboldera,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19896,357572,Australia,NSW SOP,2010,For storage only,28,Wereboldera,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19897,357572,Australia,NSW SOP,2013,For storage only,28,Wereboldera,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19898,357572,Australia,NSW SOP,2004,For storage only,28,Wereboldera,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19899,24874,Australia,Victorian SOP,2005,For storage only,28,Werribee Gorge,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19900,24874,Australia,Victorian SOP,2010,For storage only,28,Werribee Gorge,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19901,24874,Australia,Victorian SOP,2013,For storage only,28,Werribee Gorge,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19902,370,Australia,Birdlife IBA,2008,For storage only,28,Werrikimbe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19903,370,Australia,NSW SOP,2005,For storage only,28,Werrikimbe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19904,370,Australia,NSW SOP,2007,For storage only,28,Werrikimbe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19905,370,Australia,NSW SOP,2010,For storage only,28,Werrikimbe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19906,370,Australia,NSW SOP,2013,For storage only,28,Werrikimbe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19907,555543650,Australia,NSW SOP,2007,For storage only,28,Werrikimbe,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19908,555543650,Australia,NSW SOP,2010,For storage only,28,Werrikimbe,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19909,370,Australia,NSW SOP,2004,For storage only,28,Werrikimbe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19910,555543650,Australia,NSW SOP,2013,For storage only,28,Werrikimbe,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19911,24271,Australia,Qld Rapid Assessment,2010,For storage only,28,West Hill,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19912,24271,Australia,Qld Rapid Assessment,2012,For storage only,28,West Hill,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19913,314772,Australia,Victorian SOP,2013,For storage only,28,West Wail F.F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19914,17757,Australia,WHA Outlook Report,2014,For storage only,28,Wet Tropics of Queensland,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -19915,357580,Australia,NSW SOP,2005,For storage only,28,Whian Whian,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19916,357580,Australia,NSW SOP,2007,For storage only,28,Whian Whian,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19917,357580,Australia,NSW SOP,2010,For storage only,28,Whian Whian,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19918,357580,Australia,NSW SOP,2013,For storage only,28,Whian Whian,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -19919,314696,Australia,Victorian SOP,2005,For storage only,28,"White Lake, Douglas W.R",Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19920,311895,Australia,Qld Rapid Assessment,2010,For storage only,28,White Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19921,311895,Australia,Qld Rapid Assessment,2012,For storage only,28,White Mountains,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19922,406,Australia,Qld Rapid Assessment,2010,For storage only,28,Whitsunday Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19923,406,Australia,Qld Rapid Assessment,2012,For storage only,28,Whitsunday Islands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19924,357592,Australia,Victorian SOP,2005,For storage only,28,Whroo N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19925,555543657,Australia,NSW SOP,2010,For storage only,28,Wianamatta,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19926,555543657,Australia,NSW SOP,2013,For storage only,28,Wianamatta,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19928,555548735,Australia,NSW SOP,2013,For storage only,28,Wiarborough,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19929,555548571,Australia,Qld Rapid Assessment,2010,For storage only,28,Wickham,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19930,555548571,Australia,Qld Rapid Assessment,2012,For storage only,28,Wickham,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19931,313783,Australia,NSW SOP,2005,For storage only,28,Wiesners Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19932,313783,Australia,NSW SOP,2007,For storage only,28,Wiesners Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19933,313783,Australia,NSW SOP,2010,For storage only,28,Wiesners Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19934,313783,Australia,NSW SOP,2013,For storage only,28,Wiesners Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19935,313783,Australia,NSW SOP,2004,For storage only,28,Wiesners Swamp,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19936,357596,Australia,Qld Rapid Assessment,2010,For storage only,28,Wietalaba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19937,357596,Australia,Qld Rapid Assessment,2012,For storage only,28,Wietalaba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19938,64388,Australia,Qld Rapid Assessment,2010,For storage only,28,Wild Cattle Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19939,64388,Australia,Qld Rapid Assessment,2012,For storage only,28,Wild Cattle Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19940,24876,Australia,Victorian SOP,2005,For storage only,28,Wilkin F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19941,24876,Australia,Victorian SOP,2010,For storage only,28,Wilkin F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19942,24876,Australia,Victorian SOP,2013,For storage only,28,Wilkin F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19943,146695,Australia,NSW SOP,2005,For storage only,28,Willandra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19944,146695,Australia,NSW SOP,2007,For storage only,28,Willandra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19945,146695,Australia,NSW SOP,2010,For storage only,28,Willandra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19946,146695,Australia,NSW SOP,2013,For storage only,28,Willandra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19947,146695,Australia,NSW SOP,2004,For storage only,28,Willandra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19948,2573,Australia,WHA Outlook Report,2014,For storage only,28,Willandra Lakes Region,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -19949,310114,Australia,NSW SOP,2005,For storage only,28,Willi Willi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19950,310114,Australia,NSW SOP,2007,For storage only,28,Willi Willi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19951,310114,Australia,NSW SOP,2010,For storage only,28,Willi Willi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19952,310114,Australia,NSW SOP,2013,For storage only,28,Willi Willi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19953,310179,Australia,NSW SOP,2004,For storage only,28,Scheyville,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19954,23696,Australia,NSW SOP,2005,For storage only,28,Willi Willi Caves,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19955,23696,Australia,NSW SOP,2007,For storage only,28,Willi Willi Caves,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19956,23696,Australia,NSW SOP,2010,For storage only,28,Willi Willi Caves,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19957,23696,Australia,NSW SOP,2013,For storage only,28,Willi Willi Caves,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19958,23696,Australia,NSW SOP,2004,For storage only,28,Willi Willi Caves,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19959,357607,Australia,NSW SOP,2005,For storage only,28,William Howe,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19960,357607,Australia,NSW SOP,2007,For storage only,28,William Howe,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19961,357607,Australia,NSW SOP,2010,For storage only,28,William Howe,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19962,357607,Australia,NSW SOP,2013,For storage only,28,William Howe,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19963,127696,Australia,Victorian SOP,2005,For storage only,28,William Hunter F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19964,127703,Australia,NSW SOP,2005,For storage only,28,Wilson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19965,127703,Australia,NSW SOP,2007,For storage only,28,Wilson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19966,127703,Australia,NSW SOP,2010,For storage only,28,Wilson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19967,127703,Australia,NSW SOP,2013,For storage only,28,Wilson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19968,127703,Australia,NSW SOP,2004,For storage only,28,Wilson,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19969,314101,Australia,Victorian SOP,2005,For storage only,28,Wilsons Promontory National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19970,314101,Australia,Victorian SOP,2010,For storage only,28,Wilsons Promontory National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19971,314101,Australia,Victorian SOP,2013,For storage only,28,Wilsons Promontory National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19972,357613,Australia,Birdlife IBA,2008,For storage only,28,Wilsons Promontory Islands,"Remote and Natural Area - Schedule 6, National Parks Act","GD-PAME, version pre-2017",Not Reported,2018,English -19973,305425,Australia,Victorian SOP,2010,For storage only,28,Wilsons Promontory,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19974,305425,Australia,Victorian SOP,2005,For storage only,28,Wilsons Promontory,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19975,305425,Australia,Victorian SOP,2013,For storage only,28,Wilsons Promontory,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -19982,1136,Australia,NSW SOP,2005,For storage only,28,Winburndale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19983,1136,Australia,NSW SOP,2007,For storage only,28,Winburndale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19984,1136,Australia,NSW SOP,2010,For storage only,28,Winburndale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19985,1136,Australia,NSW SOP,2013,For storage only,28,Winburndale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19986,1136,Australia,NSW SOP,2004,For storage only,28,Winburndale,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19987,64103,Australia,NSW SOP,2005,For storage only,28,Windsor Downs,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19988,64103,Australia,NSW SOP,2007,For storage only,28,Windsor Downs,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19989,64103,Australia,NSW SOP,2010,For storage only,28,Windsor Downs,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19990,64103,Australia,NSW SOP,2013,For storage only,28,Windsor Downs,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19991,64103,Australia,NSW SOP,2004,For storage only,28,Windsor Downs,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19992,555576916,Australia,NSW SOP,2013,For storage only,28,Wingadee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19993,9462,Australia,NSW SOP,2005,For storage only,28,Wingen Maid,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19994,9462,Australia,NSW SOP,2007,For storage only,28,Wingen Maid,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19995,9462,Australia,NSW SOP,2010,For storage only,28,Wingen Maid,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19996,9462,Australia,NSW SOP,2013,For storage only,28,Wingen Maid,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19997,9462,Australia,NSW SOP,2004,For storage only,28,Wingen Maid,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19998,313784,Australia,NSW SOP,2005,For storage only,28,Wingham Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -19999,313784,Australia,NSW SOP,2007,For storage only,28,Wingham Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20000,313784,Australia,NSW SOP,2010,For storage only,28,Wingham Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20001,313784,Australia,NSW SOP,2013,For storage only,28,Wingham Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20002,313784,Australia,NSW SOP,2004,For storage only,28,Wingham Brush,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20003,313785,Australia,NSW SOP,2005,For storage only,28,Wogamia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20004,313785,Australia,NSW SOP,2007,For storage only,28,Wogamia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20005,313785,Australia,NSW SOP,2010,For storage only,28,Wogamia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20006,313785,Australia,NSW SOP,2013,For storage only,28,Wogamia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20007,313785,Australia,NSW SOP,2004,For storage only,28,Wogamia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20008,1141,Australia,NSW SOP,2005,For storage only,28,Woggoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20009,1141,Australia,NSW SOP,2007,For storage only,28,Woggoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20010,1141,Australia,NSW SOP,2010,For storage only,28,Woggoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20011,1141,Australia,NSW SOP,2013,For storage only,28,Woggoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20012,1141,Australia,NSW SOP,2004,For storage only,28,Woggoon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20013,9472,Australia,NSW SOP,2005,For storage only,28,Woko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20014,9472,Australia,NSW SOP,2007,For storage only,28,Woko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20015,9472,Australia,NSW SOP,2010,For storage only,28,Woko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20016,9472,Australia,NSW SOP,2013,For storage only,28,Woko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20017,9472,Australia,NSW SOP,2004,For storage only,28,Woko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20018,127721,Australia,NSW SOP,2005,For storage only,28,Wollemi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20019,127721,Australia,NSW SOP,2007,For storage only,28,Wollemi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20020,127721,Australia,NSW SOP,2010,For storage only,28,Wollemi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20021,127721,Australia,NSW SOP,2013,For storage only,28,Wollemi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20022,127721,Australia,NSW SOP,2004,For storage only,28,Wollemi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20023,357625,Australia,NSW SOP,2005,For storage only,28,Wolli Creek,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20024,357625,Australia,NSW SOP,2007,For storage only,28,Wolli Creek,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20025,357625,Australia,NSW SOP,2010,For storage only,28,Wolli Creek,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20026,357625,Australia,NSW SOP,2013,For storage only,28,Wolli Creek,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20027,310116,Australia,NSW SOP,2005,For storage only,28,Wollondilly River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20028,310116,Australia,NSW SOP,2007,For storage only,28,Wollondilly River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20029,310116,Australia,NSW SOP,2010,For storage only,28,Wollondilly River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20030,310116,Australia,NSW SOP,2013,For storage only,28,Wollondilly River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20031,310116,Australia,NSW SOP,2004,For storage only,28,Wollondilly River,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20032,357627,Australia,NSW SOP,2005,For storage only,28,Wollumbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20033,357627,Australia,NSW SOP,2007,For storage only,28,Wollumbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20034,357627,Australia,NSW SOP,2010,For storage only,28,Wollumbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20035,357627,Australia,NSW SOP,2013,For storage only,28,Wollumbin,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20036,357631,Australia,NSW SOP,2005,For storage only,28,Wombat Creek,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20037,357631,Australia,NSW SOP,2007,For storage only,28,Wombat Creek,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20038,357631,Australia,NSW SOP,2010,For storage only,28,Wombat Creek,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20039,357631,Australia,NSW SOP,2013,For storage only,28,Wombat Creek,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20044,357631,Australia,NSW SOP,2004,For storage only,28,Wombat Creek,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20045,555543660,Australia,NSW SOP,2010,For storage only,28,Wombeyan,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20046,555543660,Australia,NSW SOP,2013,For storage only,28,Wombeyan,Karst Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20047,555543662,Australia,NSW SOP,2010,For storage only,28,Wondoba,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20048,555543662,Australia,NSW SOP,2013,For storage only,28,Wondoba,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20049,64395,Australia,Qld Rapid Assessment,2010,For storage only,28,Wondul Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20050,64395,Australia,Qld Rapid Assessment,2012,For storage only,28,Wondul Range,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20051,23702,Australia,NSW SOP,2005,For storage only,28,Wongarbon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20052,23702,Australia,NSW SOP,2007,For storage only,28,Wongarbon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20053,23702,Australia,NSW SOP,2010,For storage only,28,Wongarbon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20054,23702,Australia,NSW SOP,2013,For storage only,28,Wongarbon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20055,23702,Australia,NSW SOP,2004,For storage only,28,Wongarbon,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20056,357637,Australia,Qld Rapid Assessment,2010,For storage only,28,Wongi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20057,357637,Australia,Qld Rapid Assessment,2012,For storage only,28,Wongi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20058,309223,Australia,Victorian SOP,2005,For storage only,28,Wonthaggi Heathlands N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20059,309223,Australia,Victorian SOP,2010,For storage only,28,Wonthaggi Heathlands N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20060,309223,Australia,Victorian SOP,2013,For storage only,28,Wonthaggi Heathlands N.C.R,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20061,357641,Australia,Qld Rapid Assessment,2010,For storage only,28,Woocoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20062,357641,Australia,Qld Rapid Assessment,2012,For storage only,28,Woocoo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20063,357642,Australia,Victorian SOP,2005,For storage only,28,Wood Point F.R,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20064,310118,Australia,NSW SOP,2005,For storage only,28,Woodford Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20065,310118,Australia,NSW SOP,2007,For storage only,28,Woodford Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20066,310118,Australia,NSW SOP,2010,For storage only,28,Woodford Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20067,310118,Australia,NSW SOP,2013,For storage only,28,Woodford Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20068,310118,Australia,NSW SOP,2004,For storage only,28,Woodford Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20069,555548185,Australia,Victorian SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -20070,309236,Australia,Victorian SOP,2005,For storage only,28,Woodnaggerak B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20071,555576920,Australia,NSW SOP,2013,For storage only,28,Woodsreef,CCA Zone 3 State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20072,313786,Australia,NSW SOP,2005,For storage only,28,Woollamia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20073,313786,Australia,NSW SOP,2007,For storage only,28,Woollamia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20074,313786,Australia,NSW SOP,2010,For storage only,28,Woollamia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20075,313786,Australia,NSW SOP,2013,For storage only,28,Woollamia,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20077,314699,Australia,Victorian SOP,2005,For storage only,28,Woolshed Swamp W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20078,309244,Australia,NSW SOP,2005,For storage only,28,Woomargama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20079,309244,Australia,NSW SOP,2007,For storage only,28,Woomargama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20080,309244,Australia,NSW SOP,2010,For storage only,28,Woomargama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20081,309244,Australia,NSW SOP,2013,For storage only,28,Woomargama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20082,555548787,Australia,NSW SOP,2010,For storage only,28,Woomargama,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20083,555548787,Australia,NSW SOP,2013,For storage only,28,Woomargama,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20084,309244,Australia,NSW SOP,2004,For storage only,28,Woomargama,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20085,555548769,Australia,Qld Rapid Assessment,2010,For storage only,28,Woondum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20086,555548769,Australia,Qld Rapid Assessment,2012,For storage only,28,Woondum,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20087,357660,Australia,Victorian SOP,2010,For storage only,28,Wooroonook Lakes (Middle and East) W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20088,357660,Australia,Victorian SOP,2005,For storage only,28,Wooroonook Lakes (Middle and East) W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20089,357660,Australia,Victorian SOP,2013,For storage only,28,Wooroonook Lakes (Middle and East) W.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20090,127739,Australia,Qld Rapid Assessment,2010,For storage only,28,Wooroonooran,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20092,127739,Australia,Qld Rapid Assessment,2012,For storage only,28,Wooroonooran,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20094,357668,Australia,Qld Rapid Assessment,2010,For storage only,28,Woowoonga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20095,357668,Australia,Qld Rapid Assessment,2012,For storage only,28,Woowoonga,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20102,555543665,Australia,NSW SOP,2007,For storage only,28,Woregore,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20103,555543665,Australia,NSW SOP,2010,For storage only,28,Woregore,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20104,555543665,Australia,NSW SOP,2013,For storage only,28,Woregore,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20105,555543666,Australia,NSW SOP,2010,For storage only,28,Worimi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20106,555543666,Australia,NSW SOP,2013,For storage only,28,Worimi,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20107,555543667,Australia,NSW SOP,2010,For storage only,28,Worimi,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20108,555543667,Australia,NSW SOP,2013,For storage only,28,Worimi,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20109,555543668,Australia,NSW SOP,2010,For storage only,28,Worimi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20110,555543668,Australia,NSW SOP,2013,For storage only,28,Worimi,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20111,357671,Australia,Qld Rapid Assessment,2010,For storage only,28,Woroon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20112,357671,Australia,Qld Rapid Assessment,2012,For storage only,28,Woroon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20114,313788,Australia,NSW SOP,2005,For storage only,28,Worrigee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20115,313788,Australia,NSW SOP,2007,For storage only,28,Worrigee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20116,313788,Australia,NSW SOP,2010,For storage only,28,Worrigee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20117,313788,Australia,NSW SOP,2013,For storage only,28,Worrigee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20118,313788,Australia,NSW SOP,2004,For storage only,28,Worrigee,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20119,555548810,Australia,Qld Rapid Assessment,2010,For storage only,28,Wrattens,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20120,555548810,Australia,Qld Rapid Assessment,2012,For storage only,28,Wrattens,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20122,313789,Australia,NSW SOP,2005,For storage only,28,Wullwye,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20123,313789,Australia,NSW SOP,2007,For storage only,28,Wullwye,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20124,313789,Australia,NSW SOP,2010,For storage only,28,Wullwye,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20125,313789,Australia,NSW SOP,2013,For storage only,28,Wullwye,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20126,313789,Australia,NSW SOP,2004,For storage only,28,Wullwye,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20127,357674,Australia,Victorian SOP,2005,For storage only,28,Wurdi Youyang B.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20128,555577371,Australia,Qld Rapid Assessment,2012,For storage only,28,Wuthara Island (Cape York Peninsula Aboriginal Land),National Park Aboriginal,"GD-PAME, version pre-2017",Not Reported,2018,English -20130,314774,Australia,Victorian SOP,2010,For storage only,28,Wychitella N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20131,314774,Australia,Victorian SOP,2005,For storage only,28,Wychitella N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20132,314774,Australia,Victorian SOP,2013,For storage only,28,Wychitella N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20133,529,Australia,Victorian SOP,2005,For storage only,28,Wyperfeld National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20134,529,Australia,Victorian SOP,2010,For storage only,28,Wyperfeld National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20135,529,Australia,Victorian SOP,2013,For storage only,28,Wyperfeld National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20136,353,Australia,NSW SOP,2005,For storage only,28,Wyrrabalong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20137,353,Australia,NSW SOP,2007,For storage only,28,Wyrrabalong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20138,353,Australia,NSW SOP,2010,For storage only,28,Wyrrabalong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20139,353,Australia,NSW SOP,2013,For storage only,28,Wyrrabalong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20140,353,Australia,NSW SOP,2004,For storage only,28,Wyrrabalong,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20141,310125,Australia,NSW SOP,2005,For storage only,28,Yabbra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20142,310125,Australia,NSW SOP,2007,For storage only,28,Yabbra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20143,310125,Australia,NSW SOP,2010,For storage only,28,Yabbra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20144,310125,Australia,NSW SOP,2013,For storage only,28,Yabbra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20145,310125,Australia,NSW SOP,2004,For storage only,28,Yabbra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20146,357688,Australia,NSW SOP,2005,For storage only,28,Yaegl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20147,357688,Australia,NSW SOP,2007,For storage only,28,Yaegl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20148,357688,Australia,NSW SOP,2010,For storage only,28,Yaegl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20149,357688,Australia,NSW SOP,2013,For storage only,28,Yaegl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20150,357688,Australia,NSW SOP,2004,For storage only,28,Yaegl,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20151,23704,Australia,NSW SOP,2005,For storage only,28,Yahoo Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20152,23704,Australia,NSW SOP,2007,For storage only,28,Yahoo Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20153,23704,Australia,NSW SOP,2010,For storage only,28,Yahoo Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20154,23704,Australia,NSW SOP,2004,For storage only,28,Yahoo Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20155,23704,Australia,NSW SOP,2013,For storage only,28,Yahoo Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20156,24878,Australia,Victorian SOP,2005,For storage only,28,Yambuk F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20157,1155,Australia,NSW SOP,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -20158,1155,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -20159,1155,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -20160,555543672,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -20161,555543672,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -20162,555543673,Australia,NSW SOP,2007,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -20163,555543673,Australia,NSW SOP,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -20164,1155,Australia,NSW SOP,2004,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -20165,313682,Australia,NSW SOP,2005,For storage only,28,Yanununbeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20166,313682,Australia,NSW SOP,2007,For storage only,28,Yanununbeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20167,313682,Australia,NSW SOP,2010,For storage only,28,Yanununbeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20168,313682,Australia,NSW SOP,2013,For storage only,28,Yanununbeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20169,313790,Australia,NSW SOP,2005,For storage only,28,Yanununbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20170,313790,Australia,NSW SOP,2007,For storage only,28,Yanununbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20171,313790,Australia,NSW SOP,2010,For storage only,28,Yanununbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20173,313790,Australia,NSW SOP,2013,For storage only,28,Yanununbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20175,357695,Australia,NSW SOP,2005,For storage only,28,Yanununbeyan,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20176,357695,Australia,NSW SOP,2007,For storage only,28,Yanununbeyan,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20177,313682,Australia,NSW SOP,2004,For storage only,28,Yanununbeyan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20178,313790,Australia,NSW SOP,2004,For storage only,28,Yanununbeyan,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20179,357695,Australia,NSW SOP,2004,For storage only,28,Yanununbeyan,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20180,313791,Australia,NSW SOP,2005,For storage only,28,Yaouk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20181,313791,Australia,NSW SOP,2007,For storage only,28,Yaouk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20182,313791,Australia,NSW SOP,2010,For storage only,28,Yaouk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20183,313791,Australia,NSW SOP,2013,For storage only,28,Yaouk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20184,313791,Australia,NSW SOP,2004,For storage only,28,Yaouk,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20185,305418,Australia,Victorian SOP,2010,For storage only,28,Yaringa,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20186,305418,Australia,Victorian SOP,2005,For storage only,28,Yaringa,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20187,305418,Australia,Victorian SOP,2013,For storage only,28,Yaringa,Marine National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20188,102573,Australia,Victorian SOP,2005,For storage only,28,Yarra Ranges National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20189,102573,Australia,Victorian SOP,2010,For storage only,28,Yarra Ranges National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20190,102573,Australia,Victorian SOP,2013,For storage only,28,Yarra Ranges National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20191,555543675,Australia,NSW SOP,2010,For storage only,28,Yarrigan,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20192,555543675,Australia,NSW SOP,2013,For storage only,28,Yarrigan,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20193,555543676,Australia,NSW SOP,2007,For storage only,28,Yarrahapinni Wetlands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20194,555543676,Australia,NSW SOP,2010,For storage only,28,Yarrahapinni Wetlands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20195,555543676,Australia,NSW SOP,2013,For storage only,28,Yarrahapinni Wetlands,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20196,24882,Australia,Victorian SOP,2010,For storage only,28,Yarrara F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20197,24882,Australia,Victorian SOP,2013,For storage only,28,Yarrara F.F.R.,Nature Conservation Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20198,23706,Australia,NSW SOP,2005,For storage only,28,Yarravel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20199,23706,Australia,NSW SOP,2007,For storage only,28,Yarravel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20200,23706,Australia,NSW SOP,2010,For storage only,28,Yarravel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20201,23706,Australia,NSW SOP,2013,For storage only,28,Yarravel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20202,23706,Australia,NSW SOP,2004,For storage only,28,Yarravel,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20203,357702,Australia,NSW SOP,2005,For storage only,28,Yarriabini,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20204,357702,Australia,NSW SOP,2007,For storage only,28,Yarriabini,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20205,357702,Australia,NSW SOP,2010,For storage only,28,Yarriabini,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20206,357702,Australia,NSW SOP,2013,For storage only,28,Yarriabini,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20207,357702,Australia,NSW SOP,2004,For storage only,28,Yarriabini,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20208,357703,Australia,NSW SOP,2005,For storage only,28,Yarringully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20209,357703,Australia,NSW SOP,2007,For storage only,28,Yarringully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20210,357703,Australia,NSW SOP,2010,For storage only,28,Yarringully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20211,357703,Australia,NSW SOP,2013,For storage only,28,Yarringully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20212,357704,Australia,NSW SOP,2005,For storage only,28,Yarringully,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20213,357704,Australia,NSW SOP,2007,For storage only,28,Yarringully,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20214,357704,Australia,NSW SOP,2010,For storage only,28,Yarringully,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20215,357704,Australia,NSW SOP,2013,For storage only,28,Yarringully,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20216,357703,Australia,NSW SOP,2004,For storage only,28,Yarringully,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20217,555543679,Australia,NSW SOP,2010,For storage only,28,Yarrobil,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20218,555543679,Australia,NSW SOP,2013,For storage only,28,Yarrobil,CCA Zone 1 National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20219,2030,Australia,GOBI Survey,2006,For storage only,28,Yathong Nature Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20220,1129,Australia,NSW SOP,2005,For storage only,28,Yathong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20221,1129,Australia,NSW SOP,2007,For storage only,28,Yathong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20222,1129,Australia,NSW SOP,2010,For storage only,28,Yathong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20223,1129,Australia,NSW SOP,2013,For storage only,28,Yathong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20224,1129,Australia,NSW SOP,2004,For storage only,28,Yathong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20225,310128,Australia,NSW SOP,2005,For storage only,28,Yatteyattah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20226,310128,Australia,NSW SOP,2007,For storage only,28,Yatteyattah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20227,310128,Australia,NSW SOP,2010,For storage only,28,Yatteyattah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20228,310128,Australia,NSW SOP,2013,For storage only,28,Yatteyattah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20229,310128,Australia,NSW SOP,2004,For storage only,28,Yatteyattah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20230,24886,Australia,Victorian SOP,2010,For storage only,28,Yellingbo N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20231,24886,Australia,Victorian SOP,2005,For storage only,28,Yellingbo N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20232,24886,Australia,Victorian SOP,2013,For storage only,28,Yellingbo N.C.R.,Natural Features Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20233,357709,Australia,NSW SOP,2005,For storage only,28,Yellomundee,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20234,357709,Australia,NSW SOP,2007,For storage only,28,Yellomundee,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20235,357709,Australia,NSW SOP,2010,For storage only,28,Yellomundee,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20236,357709,Australia,NSW SOP,2013,For storage only,28,Yellomundee,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20237,23708,Australia,NSW SOP,2005,For storage only,28,Yengo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20238,23708,Australia,NSW SOP,2007,For storage only,28,Yengo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20239,23708,Australia,NSW SOP,2010,For storage only,28,Yengo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20240,23708,Australia,NSW SOP,2013,For storage only,28,Yengo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20241,23708,Australia,NSW SOP,2004,For storage only,28,Yengo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20242,555576927,Australia,NSW SOP,2013,For storage only,28,Yerranderie,Regional Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20243,357711,Australia,NSW SOP,2004,For storage only,28,Yerranderie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20244,357711,Australia,NSW SOP,2005,For storage only,28,Yerranderie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20245,357711,Australia,NSW SOP,2007,For storage only,28,Yerranderie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20246,357711,Australia,NSW SOP,2010,For storage only,28,Yerranderie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20247,357711,Australia,NSW SOP,2013,For storage only,28,Yerranderie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20248,310129,Australia,NSW SOP,2005,For storage only,28,Yessabah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20249,310129,Australia,NSW SOP,2007,For storage only,28,Yessabah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20250,310129,Australia,NSW SOP,2010,For storage only,28,Yessabah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20251,310129,Australia,NSW SOP,2013,For storage only,28,Yessabah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20252,310129,Australia,NSW SOP,2004,For storage only,28,Yessabah,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20253,310130,Australia,NSW SOP,2005,For storage only,28,Yina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20254,310130,Australia,NSW SOP,2007,For storage only,28,Yina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20255,310130,Australia,NSW SOP,2010,For storage only,28,Yina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20256,310130,Australia,NSW SOP,2013,For storage only,28,Yina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20257,310130,Australia,NSW SOP,2004,For storage only,28,Yina,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20258,555576928,Australia,NSW SOP,2013,For storage only,28,Young,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20259,24281,Australia,Qld Rapid Assessment,2010,For storage only,28,Yungaburra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20260,24281,Australia,Qld Rapid Assessment,2012,For storage only,28,Yungaburra,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20262,357716,Australia,NSW SOP,2004,For storage only,28,Yurammie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20263,2395,Australia,NSW SOP,2005,For storage only,28,Yuraygir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20264,2395,Australia,NSW SOP,2007,For storage only,28,Yuraygir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20265,2395,Australia,NSW SOP,2010,For storage only,28,Yuraygir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20266,2395,Australia,NSW SOP,2013,For storage only,28,Yuraygir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20267,357717,Australia,NSW SOP,2005,For storage only,28,Yuraygir,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20268,357717,Australia,NSW SOP,2007,For storage only,28,Yuraygir,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20269,357717,Australia,NSW SOP,2010,For storage only,28,Yuraygir,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20270,357717,Australia,NSW SOP,2013,For storage only,28,Yuraygir,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20271,2395,Australia,NSW SOP,2004,For storage only,28,Yuraygir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20272,357717,Australia,NSW SOP,2004,For storage only,28,Yuraygir,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20273,357716,Australia,NSW SOP,2005,For storage only,28,Yurammie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20274,357716,Australia,NSW SOP,2007,For storage only,28,Yurammie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20275,357716,Australia,NSW SOP,2010,For storage only,28,Yurammie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20276,357716,Australia,NSW SOP,2013,For storage only,28,Yurammie,State Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20277,555548445,Australia,Qld Rapid Assessment,2012,For storage only,28,Yuwi Paree Toolkoon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20595,11752,Myanmar,Asean MEE,2012,For storage only,28,Alaungdaw Kathapa,National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20596,312901,Myanmar,Asean MEE,2012,For storage only,28,Indawgyi Lake,Wildlife Sanctuary and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20597,11813,Myanmar,Asean MEE,2012,For storage only,28,Inlay Lake ,Bird Sanctuary and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20598,71350,Myanmar,Asean MEE,2012,For storage only,28,Khakaborazi,National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20599,8035,Myanmar,Asean MEE,2012,For storage only,28,Lampi Island,National Park and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20600,8033,Myanmar,Asean MEE,2012,For storage only,28,Mainmahla Kyun,Wildlife Sanctuary and ASEAN Heritage Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20601,8024,Myanmar,Birdlife IBA,2003,For storage only,28,Moyingyi Wetland,Bird Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -20602,902413,Myanmar,Birdlife IBA,2003,For storage only,28,Moyingyi Wetland Wildlife Sanctuary,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -20603,17266,Kuwait,Birdlife IBA,1994,For storage only,28,Sabah Al-Ahmad Natural Reserve,Natural Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20604,94072,Lithuania,METT,2007,For storage only,28,Cepkeliai,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -20605,555543199,Lithuania,METT,2006,For storage only,28,Curonian Spit National Park,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -20606,555541969,Lithuania,Birdlife IBA,2013,For storage only,28,Grybaulios žuvininkystės tvenkiniai,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -20607,326015,Lithuania,Birdlife IBA,2013,For storage only,28,Kalviu atkuriamasis sklypas,Recuperational plot,"GD-PAME, version pre-2017",Not Reported,2018,English -20608,555541919,Lithuania,Birdlife IBA,2013,For storage only,28,Kalvių karjeras,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -20609,94073,Lithuania,METT,2006,For storage only,28,Kamanos,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -20610,62282,Lithuania,METT,2006,For storage only,28,Labanoro regioninis parkas,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20611,62290,Lithuania,METT,2006,For storage only,28,Pajurio regioninis parkas,State Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20612,31550,Lithuania,METT,2006,For storage only,28,Viesviles valstybinis gamtinis rezervatas,State Strict Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20613,555547588,Lithuania,METT,2006,For storage only,28,Zuvintas,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20614,4205,Papua New Guinea,RAPPAM,2004,For storage only,28,Bagiai (I),Marine Managed Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20615,3146,Papua New Guinea,RAPPAM,2004,For storage only,28,Baiyer River,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -20616,4204,Papua New Guinea,RAPPAM,2004,For storage only,28,Balek Wildlife Sanctuary,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -20617,4201,Papua New Guinea,RAPPAM,2004,For storage only,28,Baniara Island,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20618,3145,Papua New Guinea,RAPPAM,2004,For storage only,28,Cape Wom Memorial Park,Protected Seascape,"GD-PAME, version pre-2017",Not Reported,2018,English -20619,106683,Papua New Guinea,RAPPAM,2004,For storage only,28,Crater Mountain,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20620,15789,Papua New Guinea,RAPPAM,2004,For storage only,28,Crown Island (III),Marine Managed Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20621,36172,Papua New Guinea,RAPPAM,2004,For storage only,28,Garu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20622,316895,Papua New Guinea,RAPPAM,2004,For storage only,28,Hombareta,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20623,377712,Papua New Guinea,RAPPAM,2004,For storage only,28,Hunstein Range,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20624,15782,Papua New Guinea,RAPPAM,2004,For storage only,28,Iomare,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20625,15797,Papua New Guinea,RAPPAM,2004,For storage only,28,Jimi Valley,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20626,220242,Papua New Guinea,RAPPAM,2004,For storage only,28,Kamiali,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20627,377717,Papua New Guinea,RAPPAM,2004,For storage only,28,Kavakuna Caves,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20628,377713,Papua New Guinea,RAPPAM,2004,For storage only,28,Klampun,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20629,377710,Papua New Guinea,RAPPAM,2004,For storage only,28,Kokoda Historical Track Reserve,Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20630,61533,Papua New Guinea,METT,2005,For storage only,28,Lake Kutubu,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20631,61533,Papua New Guinea,RAPPAM,2004,For storage only,28,Lake Kutubu,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20632,9718,Papua New Guinea,RAPPAM,2004,For storage only,28,Lake Lavu,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20633,316938,Papua New Guinea,RAPPAM,2004,For storage only,28,Laugum,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20634,15894,Papua New Guinea,RAPPAM,2004,For storage only,28,Lihir Island,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20635,61530,Papua New Guinea,RAPPAM,2004,For storage only,28,Loroko,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20636,4202,Papua New Guinea,RAPPAM,2004,For storage only,28,Maza (I),Marine Managed Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20637,838,Papua New Guinea,RAPPAM,2004,For storage only,28,Mc Adams,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20638,17823,Papua New Guinea,RAPPAM,2004,For storage only,28,Moitaka Wildlife Sanctuary,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -20639,9720,Papua New Guinea,RAPPAM,2004,For storage only,28,Mojirau,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20640,9714,Papua New Guinea,RAPPAM,2004,For storage only,28,Mt Gahavisuka,Provincial Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20641,316937,Papua New Guinea,RAPPAM,2004,For storage only,28,Mt Kaindi,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20642,4197,Papua New Guinea,RAPPAM,2004,For storage only,28,Mt Susu,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20643,71364,Papua New Guinea,RAPPAM,2004,For storage only,28,Mt Wilhelm National Reserve,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20644,4199,Papua New Guinea,RAPPAM,2004,For storage only,28,Namanatabu,Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -20645,3148,Papua New Guinea,RAPPAM,2004,For storage only,28,Nanuk Island District Park,Provincial Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20646,15781,Papua New Guinea,RAPPAM,2004,For storage only,28,Ndrolowa (I),Marine Managed Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20647,15783,Papua New Guinea,RAPPAM,2004,For storage only,28,Neiru (Aird Hills),Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20648,377715,Papua New Guinea,RAPPAM,2004,For storage only,28,Nusareng,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20649,15787,Papua New Guinea,RAPPAM,2004,For storage only,28,Oi Mada Wara,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20650,19716,Papua New Guinea,RAPPAM,2004,For storage only,28,Paga Hill National Park Scenic Reserve,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20651,15788,Papua New Guinea,RAPPAM,2004,For storage only,28,Pirung,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20652,4123,Papua New Guinea,RAPPAM,2004,For storage only,28,Pokili,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20653,12888,Papua New Guinea,RAPPAM,2004,For storage only,28,Ranba Wildlife Sanctuary,Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -20654,9719,Papua New Guinea,RAPPAM,2004,For storage only,28,Sawataitai,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20655,220246,Papua New Guinea,RAPPAM,2004,For storage only,28,Sinub,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20656,9721,Papua New Guinea,RAPPAM,2004,For storage only,28,Siwi-Utame,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20657,316932,Papua New Guinea,RAPPAM,2004,For storage only,28,Laugum,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20658,316933,Papua New Guinea,RAPPAM,2004,For storage only,28,Tabad,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20659,20057,Papua New Guinea,RAPPAM,2004,For storage only,28,Talele Island,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20660,377716,Papua New Guinea,RAPPAM,2004,For storage only,28,Tavalo,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20661,4200,Papua New Guinea,RAPPAM,2004,For storage only,28,Tonda,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20662,839,Papua New Guinea,RAPPAM,2004,For storage only,28,Variarata,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -20663,377711,Papua New Guinea,RAPPAM,2004,For storage only,28,Wewak Peace Memorial Park,Protected Seascape,"GD-PAME, version pre-2017",Not Reported,2018,English -20664,9717,Papua New Guinea,RAPPAM,2004,For storage only,28,Zo-oimaga,Wildlife Management Area,"GD-PAME, version pre-2017",Not Reported,2018,English -20665,555512000,Sri Lanka,WHA Outlook Report,2014,For storage only,28,Central Highlands of Sri Lanka,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -20666,16791,Sri Lanka,WHA Outlook Report,2014,For storage only,28,Sinharaja Forest Reserve,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -20667,5190,Sri Lanka,GOBI Survey,2006,For storage only,28,Parc national des Volcans,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21107,875,South Africa,METT,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21108,875,South Africa,METT,2005,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21109,875,South Africa,METT,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21110,875,South Africa,METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21111,301881,South Africa,METT,2004,For storage only,28,Agulhas National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21112,301881,South Africa,METT,2008,For storage only,28,Agulhas National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21113,301881,South Africa,METT,2010,For storage only,28,Agulhas National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21116,21158,South Africa,METT,2011,For storage only,28,Alice Glöckner Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21117,21158,South Africa,METT,2012,For storage only,28,Alice Glöckner Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21118,21158,South Africa,METT,2013,For storage only,28,Alice Glöckner Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21119,39745,South Africa,METT,2010,For storage only,28,Amatikulu Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21120,39745,South Africa,METT,2011,For storage only,28,Amatikulu Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21121,39745,South Africa,METT,2012,For storage only,28,Amatikulu Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21122,39745,South Africa,METT,2013,For storage only,28,Amatikulu Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21123,39745,South Africa,RAPPAM,2001,For storage only,28,Amatikulu Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21125,32825,South Africa,METT,2010,For storage only,28,Anysberg Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21126,555563501,South Africa,METT,2011,For storage only,28,Anysberg Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21127,555563501,South Africa,METT,2012,For storage only,28,Anysberg Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21128,555563501,South Africa,METT,2013,For storage only,28,Anysberg Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21129,32825,South Africa,Birdlife IBA,2013,For storage only,28,Anysberg Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21130,32883,South Africa,METT,2010,For storage only,28,Atherstone Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21131,555579295,South Africa,METT,2011,For storage only,28,Atherstone Protected Natural Environment,Protected Environment,"GD-PAME, version pre-2017",Not Reported,2018,English -21132,555579295,South Africa,METT,2012,For storage only,28,Atherstone Protected Natural Environment,Protected Environment,"GD-PAME, version pre-2017",Not Reported,2018,English -21133,555579295,South Africa,METT,2013,For storage only,28,Atherstone Protected Natural Environment,Protected Environment,"GD-PAME, version pre-2017",Not Reported,2018,English -21134,878,South Africa,METT,2010,For storage only,28,Augrabies Falls National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21135,878,South Africa,METT,2012,For storage only,28,Augrabies Falls National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21136,878,South Africa,METT,2013,For storage only,28,Augrabies Falls National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21137,7383,South Africa,METT,2010,For storage only,28,Barberspan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21138,7383,South Africa,METT,2012,For storage only,28,Barberspan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21139,7383,South Africa,METT,2013,For storage only,28,Barberspan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21140,351107,South Africa,METT,2010,For storage only,28,Mountainlands,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21141,351107,South Africa,METT,2011,For storage only,28,Mountainlands,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21142,351107,South Africa,METT,2012,For storage only,28,Mountainlands,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21143,351107,South Africa,METT,2013,For storage only,28,Mountainlands,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21148,62368,South Africa,METT,2005,For storage only,28,Baviaanskloof,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21149,62368,South Africa,METT,2007,For storage only,28,Baviaanskloof,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21150,62368,South Africa,METT,2010,For storage only,28,Baviaanskloof,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21152,62368,South Africa,METT,2011,For storage only,28,Baviaanskloof,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21153,62368,South Africa,METT,2012,For storage only,28,Baviaanskloof,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21154,62368,South Africa,METT,2013,For storage only,28,Baviaanskloof,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21155,351149,South Africa,METT,2010,For storage only,28,Beachwood Mangroves Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21156,351149,South Africa,METT,2011,For storage only,28,Beachwood Mangroves Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21157,351149,South Africa,METT,2012,For storage only,28,Beachwood Mangroves Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21158,351149,South Africa,METT,2013,For storage only,28,Beachwood Mangroves Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21159,351149,South Africa,RAPPAM,2001,For storage only,28,Beachwood Mangroves Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21160,555563589,South Africa,METT,2010,For storage only,28,Bewerwyk Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21161,555563589,South Africa,METT,2011,For storage only,28,Bewerwyk Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21162,555563589,South Africa,METT,2012,For storage only,28,Bewerwyk Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21163,555563589,South Africa,METT,2013,For storage only,28,Bewerwyk Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21164,555563846,South Africa,Birdlife IBA,2013,For storage only,28,Lambert's Bay Penguin Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21165,306180,South Africa,METT,2010,For storage only,28,Bird Island Group Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21166,9130,South Africa,METT,2010,For storage only,28,Blouberg Protea Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21167,9130,South Africa,METT,2011,For storage only,28,Blouberg Protea Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21168,9130,South Africa,METT,2012,For storage only,28,Blouberg Protea Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21169,9130,South Africa,METT,2013,For storage only,28,Blouberg Protea Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21170,4938,South Africa,METT,2010,For storage only,28,Bluff Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21171,4938,South Africa,METT,2011,For storage only,28,Bluff Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21172,4938,South Africa,METT,2012,For storage only,28,Bluff Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21173,4938,South Africa,METT,2013,For storage only,28,Bluff Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21174,4938,South Africa,RAPPAM,2001,For storage only,28,Bluff Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21175,1356,South Africa,METT,2011,For storage only,28,Blyderivierspoort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21176,1356,South Africa,METT,2012,For storage only,28,Blyderivierspoort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21177,1356,South Africa,METT,2013,For storage only,28,Blyderivierspoort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21178,1356,South Africa,METT,2010,For storage only,28,Blyderivierspoort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21179,882,South Africa,METT,2010,For storage only,28,Bontebok National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21180,882,South Africa,METT,2012,For storage only,28,Bontebok National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21181,882,South Africa,METT,2013,For storage only,28,Bontebok National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21182,300420,South Africa,METT,2010,For storage only,28,Borakalalo National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21183,300420,South Africa,METT,2012,For storage only,28,Borakalalo National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21184,300420,South Africa,METT,2013,For storage only,28,Borakalalo National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21185,555563761,South Africa,METT,2010,For storage only,28,Boschkop Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21186,555563761,South Africa,METT,2012,For storage only,28,Boschkop Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21187,555563761,South Africa,METT,2013,For storage only,28,Boschkop Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21188,351174,South Africa,METT,2010,For storage only,28,Bracken Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21189,555563455,South Africa,METT,2009,For storage only,28,Brenton Blue Butterfly Nature Reserve,Special Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21190,555563455,South Africa,METT,2010,For storage only,28,Brenton Blue Butterfly Nature Reserve,Special Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21191,555563455,South Africa,METT,2011,For storage only,28,Brenton Blue Butterfly Nature Reserve,Special Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21192,555563455,South Africa,METT,2012,For storage only,28,Brenton Blue Butterfly Nature Reserve,Special Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21193,555563455,South Africa,METT,2013,For storage only,28,Brenton Blue Butterfly Nature Reserve,Special Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21194,116337,South Africa,METT,2010,For storage only,28,Bosbokrand Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21195,32878,South Africa,METT,2010,For storage only,28,Caledon Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21196,32878,South Africa,METT,2011,For storage only,28,Caledon Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21197,32878,South Africa,METT,2012,For storage only,28,Caledon Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21198,32878,South Africa,METT,2013,For storage only,28,Caledon Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21199,4035,South Africa,Birdlife IBA,2013,For storage only,28,Camdeboo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21200,555563860,South Africa,Birdlife IBA,2013,For storage only,28,Karoo Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21201,4035,South Africa,METT,2010,For storage only,28,Camdeboo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21202,4035,South Africa,METT,2013,For storage only,28,Camdeboo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21203,4035,South Africa,METT,2012,For storage only,28,Camdeboo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21204,902347,South Africa,WHA Outlook Report,2014,For storage only,28,Cape Floral Region Protected Areas,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21205,220267,South Africa,GOBI Survey,2006,For storage only,28,Cape West Coast Biosphere Reserve,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21206,9107,South Africa,METT,2010,For storage only,28,Chelmsford Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21207,9107,South Africa,METT,2011,For storage only,28,Chelmsford Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21208,9107,South Africa,METT,2012,For storage only,28,Chelmsford Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21209,9107,South Africa,METT,2013,For storage only,28,Chelmsford Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21210,9107,South Africa,RAPPAM,2001,For storage only,28,Chelmsford Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21211,9107,South Africa,Birdlife IBA,2007,For storage only,28,Chelmsford Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21212,555563641,South Africa,RAPPAM,2001,For storage only,28,Coastal Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21213,9109,South Africa,METT,2010,For storage only,28,Coleford Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21214,9109,South Africa,METT,2011,For storage only,28,Coleford Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21215,9109,South Africa,METT,2012,For storage only,28,Coleford Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21216,9109,South Africa,METT,2013,For storage only,28,Coleford Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21217,9109,South Africa,RAPPAM,2001,For storage only,28,Coleford Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21218,555563657,South Africa,METT,2010,For storage only,28,Dassen Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21219,555563657,South Africa,METT,2011,For storage only,28,Dassen Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21220,555563657,South Africa,METT,2012,For storage only,28,Dassen Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21221,555563657,South Africa,METT,2013,For storage only,28,Dassen Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21222,4029,South Africa,METT,2004,For storage only,28,De Hoop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21223,4029,South Africa,METT,2008,For storage only,28,De Hoop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21224,4029,South Africa,METT,2010,For storage only,28,De Hoop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21225,4029,South Africa,METT,2011,For storage only,28,De Hoop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21226,4029,South Africa,METT,2012,For storage only,28,De Hoop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21227,4029,South Africa,METT,2013,For storage only,28,De Hoop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21228,4029,South Africa,Birdlife IBA,1998,For storage only,28,De Hoop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21229,555563510,South Africa,METT,2004,For storage only,28,De Mond Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21230,555563510,South Africa,METT,2008,For storage only,28,De Mond Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21231,555563510,South Africa,METT,2010,For storage only,28,De Mond Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21232,555563510,South Africa,METT,2011,For storage only,28,De Mond Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21233,555563510,South Africa,METT,2012,For storage only,28,De Mond Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21234,555563510,South Africa,METT,2013,For storage only,28,De Mond Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21235,351215,South Africa,METT,2010,For storage only,28,Hlinza Forest Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21236,351215,South Africa,RAPPAM,2001,For storage only,28,Hlinza Forest Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21237,555579267,South Africa,METT,2010,For storage only,28,Doornkloof Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21238,555579267,South Africa,METT,2011,For storage only,28,Doornkloof Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21239,555579267,South Africa,METT,2012,For storage only,28,Doornkloof Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21240,555579267,South Africa,METT,2013,For storage only,28,Doornkloof Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21241,4944,South Africa,METT,2010,For storage only,28,Doreen Clark Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21242,4944,South Africa,METT,2011,For storage only,28,Doreen Clark Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21243,4944,South Africa,METT,2012,For storage only,28,Doreen Clark Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21244,4944,South Africa,METT,2013,For storage only,28,Doreen Clark Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21245,4944,South Africa,RAPPAM,2001,For storage only,28,Doreen Clark Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21246,308688,South Africa,METT,2010,For storage only,28,Driftsands Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21247,308688,South Africa,METT,2011,For storage only,28,Driftsands Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21248,308688,South Africa,METT,2012,For storage only,28,Driftsands Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21249,308688,South Africa,METT,2013,For storage only,28,Driftsands Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21250,9081,South Africa,METT,2011,For storage only,28,Dwesa-Cwebe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21251,9081,South Africa,METT,2012,For storage only,28,Dwesa-Cwebe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21252,9081,South Africa,METT,2013,For storage only,28,Dwesa-Cwebe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21254,9081,South Africa,Birdlife IBA,2007,For storage only,28,Dwesa-Cwebe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21255,9081,South Africa,METT,2004,For storage only,28,Dwesa-Cwebe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21256,9081,South Africa,METT,2005,For storage only,28,Dwesa-Cwebe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21258,9081,South Africa,METT,2010,For storage only,28,Dwesa-Cwebe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21259,555563684,South Africa,METT,2010,For storage only,28,Dyer Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21260,555563684,South Africa,METT,2011,For storage only,28,Dyer Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21261,555563684,South Africa,METT,2012,For storage only,28,Dyer Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21262,555563684,South Africa,METT,2013,For storage only,28,Dyer Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21263,555563692,South Africa,METT,2010,For storage only,28,Emakhosini Heritage Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21264,26029,South Africa,METT,2010,For storage only,28,Enseleni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21265,26029,South Africa,METT,2011,For storage only,28,Enseleni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21266,26029,South Africa,METT,2012,For storage only,28,Enseleni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21267,26029,South Africa,METT,2013,For storage only,28,Enseleni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21268,26029,South Africa,RAPPAM,2001,For storage only,28,Enseleni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21270,4934,South Africa,METT,2011,For storage only,28,Entumeni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21271,4934,South Africa,METT,2012,For storage only,28,Entumeni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21272,4934,South Africa,METT,2013,For storage only,28,Entumeni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21273,4934,South Africa,RAPPAM,2001,For storage only,28,Entumeni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21274,555563696,South Africa,METT,2010,For storage only,28,Erfenis Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21275,555563696,South Africa,METT,2011,For storage only,28,Erfenis Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21276,555563696,South Africa,METT,2012,For storage only,28,Erfenis Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21277,555563696,South Africa,METT,2013,For storage only,28,Erfenis Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21278,555563700,South Africa,RAPPAM,2001,For storage only,28,False Bay Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21279,555563706,South Africa,METT,2010,For storage only,28,Formosa 203 JT,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21280,555563706,South Africa,METT,2011,For storage only,28,Formosa 203 JT,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21281,555563706,South Africa,METT,2012,For storage only,28,Formosa 203 JT,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21282,555563706,South Africa,METT,2013,For storage only,28,Formosa 203 JT,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21283,4027,South Africa,METT,2007,For storage only,28,Gamka Mountain Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21284,4027,South Africa,METT,2009,For storage only,28,Gamka Mountain Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21285,4027,South Africa,METT,2010,For storage only,28,Gamka Mountain Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21286,881,South Africa,METT,2010,For storage only,28,Garden Route National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21287,881,South Africa,METT,0,For storage only,28,Garden Route National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21288,881,South Africa,METT,2012,For storage only,28,Garden Route National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21289,881,South Africa,METT,2013,For storage only,28,Garden Route National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21290,351303,South Africa,METT,2010,For storage only,28,Gariep Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21291,351303,South Africa,METT,2011,For storage only,28,Gariep Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21292,351303,South Africa,METT,2012,For storage only,28,Gariep Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21293,351303,South Africa,METT,2013,For storage only,28,Gariep Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21294,351263,South Africa,METT,2010,For storage only,28,Geelkrans Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21295,555563513,South Africa,METT,2011,For storage only,28,Geelkrans Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21296,555563513,South Africa,METT,2012,For storage only,28,Geelkrans Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21297,555563513,South Africa,METT,2013,For storage only,28,Geelkrans Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21298,555563720,South Africa,RAPPAM,2001,For storage only,28,Giant's Castle Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21299,879,South Africa,METT,2010,For storage only,28,Golden Gate Highlands National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21300,879,South Africa,METT,2012,For storage only,28,Golden Gate Highlands National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21301,879,South Africa,METT,2013,For storage only,28,Golden Gate Highlands National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21302,879,South Africa,Birdlife IBA,2006,For storage only,28,Golden Gate Highlands National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21303,4026,South Africa,METT,2007,For storage only,28,Goukamma Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21304,4026,South Africa,METT,2009,For storage only,28,Goukamma Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21305,4026,South Africa,METT,2010,For storage only,28,Goukamma Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21306,4026,South Africa,METT,2011,For storage only,28,Goukamma Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21307,4026,South Africa,METT,2012,For storage only,28,Goukamma Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21308,4026,South Africa,METT,2013,For storage only,28,Goukamma Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21309,351273,South Africa,METT,2010,For storage only,28,Great Fish River Mouth Wetland Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21310,351273,South Africa,METT,2011,For storage only,28,Great Fish River Mouth Wetland Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21311,351273,South Africa,METT,2012,For storage only,28,Great Fish River Mouth Wetland Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21312,351273,South Africa,METT,2013,For storage only,28,Great Fish River Mouth Wetland Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21313,9109,South Africa,Birdlife IBA,2013,For storage only,28,Coleford Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21314,116275,South Africa,Enhancing Our Heritage,2003,For storage only,28,St. Lucia Game Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21315,555563491,South Africa,METT,2010,For storage only,28,Groendal Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21316,555563491,South Africa,METT,2011,For storage only,28,Groendal Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21317,555563491,South Africa,METT,2012,For storage only,28,Groendal Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21318,555563491,South Africa,METT,2013,For storage only,28,Groendal Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21319,555563492,South Africa,METT,2007,For storage only,28,Groot-Winterhoek Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21320,555563492,South Africa,METT,2010,For storage only,28,Groot-Winterhoek Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21321,555563514,South Africa,METT,2010,For storage only,28,Grootbosch Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21322,555563514,South Africa,METT,2011,For storage only,28,Grootbosch Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21323,555563514,South Africa,METT,2012,For storage only,28,Grootbosch Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21324,555563514,South Africa,METT,2013,For storage only,28,Grootbosch Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21326,555563492,South Africa,METT,2011,For storage only,28,Groot-Winterhoek Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21327,555563492,South Africa,METT,2012,For storage only,28,Groot-Winterhoek Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21328,555563492,South Africa,METT,2013,For storage only,28,Groot-Winterhoek Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21329,4764,South Africa,METT,2010,For storage only,28,Hans Merensky Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21330,4764,South Africa,METT,2011,For storage only,28,Hans Merensky Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21331,4764,South Africa,METT,2012,For storage only,28,Hans Merensky Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21332,4764,South Africa,METT,2013,For storage only,28,Hans Merensky Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21333,4766,South Africa,METT,2013,For storage only,28,Happy Rest Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21334,351296,South Africa,METT,2010,For storage only,28,Harmony Flats Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21335,4943,South Africa,METT,2010,For storage only,28,Harold Johnson Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21336,4943,South Africa,METT,2011,For storage only,28,Harold Johnson Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21337,4943,South Africa,METT,2012,For storage only,28,Harold Johnson Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21338,4943,South Africa,METT,2013,For storage only,28,Harold Johnson Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21339,4943,South Africa,RAPPAM,2001,For storage only,28,Harold Johnson Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21340,26035,South Africa,METT,2010,For storage only,28,Himeville Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21341,26035,South Africa,METT,2011,For storage only,28,Himeville Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21342,26035,South Africa,METT,2012,For storage only,28,Himeville Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21343,26035,South Africa,METT,2013,For storage only,28,Himeville Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21344,26035,South Africa,RAPPAM,2001,For storage only,28,Himeville Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21345,39746,South Africa,METT,2010,For storage only,28,Hlatikulu,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21346,555563517,South Africa,METT,2011,For storage only,28,Hlathikulu Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21347,555563517,South Africa,METT,2012,For storage only,28,Hlathikulu Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21348,555563517,South Africa,METT,2013,For storage only,28,Hlathikulu Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21349,39746,South Africa,RAPPAM,2001,For storage only,28,Hlatikulu,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21350,116189,South Africa,RAPPAM,2001,For storage only,28,Hluhluwe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21351,116189,South Africa,METT,2011,For storage only,28,Hluhluwe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21352,116189,South Africa,METT,2012,For storage only,28,Hluhluwe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21353,116189,South Africa,METT,2013,For storage only,28,Hluhluwe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21354,116189,South Africa,METT,2010,For storage only,28,Hluhluwe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21355,116251,South Africa,METT,2005,For storage only,28,Hluleka Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21356,116251,South Africa,METT,2010,For storage only,28,Hluleka Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21357,116251,South Africa,METT,2012,For storage only,28,Hluleka Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21358,116251,South Africa,METT,2011,For storage only,28,Hluleka Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21360,116251,South Africa,METT,2013,For storage only,28,Hluleka Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21361,32829,South Africa,METT,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21362,32829,South Africa,METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21363,32829,South Africa,METT,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21364,32829,South Africa,METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21365,351323,South Africa,METT,2010,For storage only,28,Impendle Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21366,351323,South Africa,METT,2011,For storage only,28,Impendle Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21367,351323,South Africa,METT,2012,For storage only,28,Impendle Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21368,351323,South Africa,METT,2013,For storage only,28,Impendle Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21369,351323,South Africa,RAPPAM,2001,For storage only,28,Impendle Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21370,351323,South Africa,Birdlife IBA,2013,For storage only,28,Impendle Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21371,198302,South Africa,METT,2009,For storage only,28,iSimangaliso Wetland Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21372,198302,South Africa,METT,2010,For storage only,28,iSimangaliso Wetland Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21373,198302,South Africa,WHA Outlook Report,2014,For storage only,28,iSimangaliso Wetland Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21374,1350,South Africa,RAPPAM,2001,For storage only,28,Itala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21375,1350,South Africa,METT,2010,For storage only,28,Itala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21376,1350,South Africa,METT,2011,For storage only,28,Itala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21377,1350,South Africa,METT,2012,For storage only,28,Itala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21378,1350,South Africa,METT,2013,For storage only,28,Itala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21379,1350,South Africa,Birdlife IBA,2006,For storage only,28,Itala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21381,7508,Botswana;South Africa,METT,2010,For storage only,28,Gemsbok,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21382,874,South Africa,METT,2012,For storage only,28,Kalahari Gemsbok National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21383,874,South Africa,METT,2013,For storage only,28,Kalahari Gemsbok National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21384,874,South Africa,Birdlife IBA,2008,For storage only,28,Kalahari Gemsbok National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21385,21149,South Africa,METT,2010,For storage only,28,Kalkfontein Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21386,21149,South Africa,METT,2011,For storage only,28,Kalkfontein Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21387,21149,South Africa,METT,2012,For storage only,28,Kalkfontein Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21388,21149,South Africa,METT,2013,For storage only,28,Kalkfontein Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21389,555563742,South Africa,RAPPAM,2001,For storage only,28,Kamberg Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21390,62389,South Africa,METT,2009,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21391,62389,South Africa,METT,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21392,62389,South Africa,METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21393,62389,South Africa,METT,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21394,62389,South Africa,METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21395,4936,South Africa,METT,2010,For storage only,28,Karkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21396,4936,South Africa,METT,2011,For storage only,28,Karkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21397,4936,South Africa,METT,2012,For storage only,28,Karkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21398,4936,South Africa,METT,2013,For storage only,28,Karkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21399,4936,South Africa,RAPPAM,2001,For storage only,28,Karkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21400,876,South Africa,METT,2010,For storage only,28,Karoo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21401,876,South Africa,METT,2012,For storage only,28,Karoo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21402,876,South Africa,Birdlife IBA,2007,For storage only,28,Karoo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21403,876,South Africa,METT,2013,For storage only,28,Karoo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21404,4940,South Africa,METT,2010,For storage only,28,Kenneth Stainbank Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21405,4940,South Africa,METT,2011,For storage only,28,Kenneth Stainbank Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21406,4940,South Africa,METT,2012,For storage only,28,Kenneth Stainbank Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21407,4940,South Africa,METT,2013,For storage only,28,Kenneth Stainbank Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21408,4940,South Africa,RAPPAM,2001,For storage only,28,Kenneth Stainbank Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21409,32830,South Africa,METT,2010,For storage only,28,Keurbooms River Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21410,32830,South Africa,METT,2011,For storage only,28,Keurbooms River Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21411,32830,South Africa,METT,2012,For storage only,28,Keurbooms River Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21412,32830,South Africa,METT,2013,For storage only,28,Keurbooms River Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21413,32830,South Africa,METT,2007,For storage only,28,Keurbooms River Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21415,168204,South Africa,GOBI Survey,2006,For storage only,28,Kogelberg Biosphere Reserve,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21416,7378,South Africa,METT,2006,For storage only,28,Kogelberg,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21417,7378,South Africa,METT,2007,For storage only,28,Kogelberg,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21418,7378,South Africa,METT,2009,For storage only,28,Kogelberg,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21419,7378,South Africa,METT,2010,For storage only,28,Kogelberg,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21420,7378,South Africa,METT,2011,For storage only,28,Kogelberg,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21421,7378,South Africa,METT,2012,For storage only,28,Kogelberg,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21422,7378,South Africa,METT,2013,For storage only,28,Kogelberg,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21424,555563835,South Africa,METT,2010,For storage only,28,Koppies Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21425,555563835,South Africa,METT,2011,For storage only,28,Koppies Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21426,555563835,South Africa,METT,2012,For storage only,28,Koppies Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21427,555563835,South Africa,METT,2013,For storage only,28,Koppies Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21428,26031,South Africa,METT,2010,For storage only,28,Krantzkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21429,26031,South Africa,METT,2011,For storage only,28,Krantzkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21430,26031,South Africa,METT,2012,For storage only,28,Krantzkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21431,26031,South Africa,METT,2013,For storage only,28,Krantzkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21432,26031,South Africa,RAPPAM,2001,For storage only,28,Krantzkloof Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21433,873,South Africa,METT,2010,For storage only,28,Kruger National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21434,873,South Africa,METT,2012,For storage only,28,Kruger National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21435,873,South Africa,METT,2013,For storage only,28,Kruger National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21436,900553,South Africa,GOBI Survey,2006,For storage only,28,Kruger to Canyons,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21437,555563839,South Africa,METT,2010,For storage only,28,Kruis River Wetland Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21438,555563839,South Africa,METT,2011,For storage only,28,Kruis River Wetland Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21439,555563839,South Africa,METT,2012,For storage only,28,Kruis River Wetland Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21440,555563839,South Africa,METT,2013,For storage only,28,Kruis River Wetland Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21441,26044,South Africa,METT,2010,For storage only,28,Lake Eteza Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21442,26044,South Africa,METT,2011,For storage only,28,Lake Eteza Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21443,26044,South Africa,METT,2012,For storage only,28,Lake Eteza Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21444,26044,South Africa,METT,2013,For storage only,28,Lake Eteza Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21445,68174,South Africa,Birdlife IBA,1998,For storage only,28,Lake Sibaya,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21446,555579296,South Africa,Birdlife IBA,1998,For storage only,28,Lake Sibayi Fresh Water Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21447,68168,South Africa,Birdlife IBA,2013,For storage only,28,St. Lucia System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21448,555563846,South Africa,METT,2005,For storage only,28,Lambert's Bay Penguin Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21449,555563846,South Africa,METT,2011,For storage only,28,Lambert's Bay Penguin Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21450,555563846,South Africa,METT,2012,For storage only,28,Lambert's Bay Penguin Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21451,555563846,South Africa,METT,2013,For storage only,28,Lambert's Bay Penguin Island Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21452,4767,South Africa,METT,2010,For storage only,28,Langjan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21453,4767,South Africa,METT,2011,For storage only,28,Langjan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21454,4767,South Africa,METT,2012,For storage only,28,Langjan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21455,4767,South Africa,METT,2013,For storage only,28,Langjan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21456,555563852,South Africa,METT,2010,For storage only,28,Leeuwfontein Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21457,555563852,South Africa,METT,2012,For storage only,28,Leeuwfontein Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21458,555563852,South Africa,METT,2011,For storage only,28,Leeuwfontein Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21459,555563852,South Africa,METT,2013,For storage only,28,Leeuwfontein Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21460,116363,South Africa,METT,2010,For storage only,28,Nature Reserve: Co-operation and Development,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21461,555563891,South Africa,METT,2010,For storage only,28,Letaba Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21462,555563891,South Africa,METT,2011,For storage only,28,Letaba Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21463,555563891,South Africa,METT,2012,For storage only,28,Letaba Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21464,555563891,South Africa,METT,2013,For storage only,28,Letaba Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21465,4763,South Africa,METT,2011,For storage only,28,Loskop Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21466,4763,South Africa,METT,2012,For storage only,28,Loskop Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21467,4763,South Africa,METT,2013,For storage only,28,Loskop Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21468,4763,South Africa,METT,2010,For storage only,28,Loskop Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21469,555563898,South Africa,RAPPAM,2001,For storage only,28,Loteni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21470,351099,South Africa,METT,2010,For storage only,28,Mabusa Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21471,351099,South Africa,METT,2011,For storage only,28,Mabusa Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21472,351099,South Africa,METT,2012,For storage only,28,Mabusa Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21473,351099,South Africa,METT,2013,For storage only,28,Mabusa Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21474,39832,South Africa,METT,2010,For storage only,28,Madikwe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21475,39832,South Africa,METT,2012,For storage only,28,Madikwe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21476,39832,South Africa,METT,2013,For storage only,28,Madikwe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21477,351100,South Africa,METT,2011,For storage only,28,Mahushe Shongwe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21478,351100,South Africa,METT,2012,For storage only,28,Mahushe Shongwe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21479,351100,South Africa,METT,2013,For storage only,28,Mahushe Shongwe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21480,351100,South Africa,METT,2010,For storage only,28,Mahushe Shongwe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21481,26822,South Africa,RAPPAM,2001,For storage only,28,Makasa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21483,351426,South Africa,METT,2010,For storage only,28,Manguzi Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21484,351426,South Africa,METT,2011,For storage only,28,Manguzi Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21485,351426,South Africa,METT,2012,For storage only,28,Manguzi Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21486,351426,South Africa,METT,2013,For storage only,28,Manguzi Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21487,351426,South Africa,RAPPAM,2001,For storage only,28,Manguzi Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21488,555563911,South Africa,METT,2010,For storage only,28,Mantrombi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21489,555563911,South Africa,METT,2011,For storage only,28,Mantrombi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21490,555563911,South Africa,METT,2012,For storage only,28,Mantrombi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21491,555563911,South Africa,METT,2013,For storage only,28,Mantrombi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21492,9072,South Africa,METT,2011,For storage only,28,Manyeleti Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21493,9072,South Africa,METT,2012,For storage only,28,Manyeleti Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21494,9072,South Africa,METT,2013,For storage only,28,Manyeleti Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21495,9072,South Africa,METT,2010,For storage only,28,Manyeleti Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21496,555563526,South Africa,RAPPAM,2001,For storage only,28,Maphelane Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21497,308687,South Africa,METT,2010,For storage only,28,Mapungupwe National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21498,308687,South Africa,METT,2012,For storage only,28,Mapungupwe National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21499,308687,South Africa,METT,2013,For storage only,28,Mapungupwe National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21500,116257,South Africa,METT,2010,For storage only,28,Marakele National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21501,116257,South Africa,METT,2012,For storage only,28,Marakele National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21502,116257,South Africa,METT,2013,For storage only,28,Marakele National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21503,555563913,South Africa,METT,2010,For storage only,28,Maria Moroka National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21504,555563913,South Africa,METT,2011,For storage only,28,Maria Moroka National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21505,555563913,South Africa,METT,2012,For storage only,28,Maria Moroka National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21506,555563913,South Africa,METT,2013,For storage only,28,Maria Moroka National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21507,21161,South Africa,METT,2011,For storage only,28,Marievale Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21508,21161,South Africa,METT,2012,For storage only,28,Marievale Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21509,21161,South Africa,METT,2013,For storage only,28,Marievale Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21510,555563527,South Africa,METT,2010,For storage only,28,Marloth Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21511,555563527,South Africa,METT,2011,For storage only,28,Marloth Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21512,555563527,South Africa,METT,2012,For storage only,28,Marloth Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21513,555563527,South Africa,METT,2013,For storage only,28,Marloth Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21514,300345,South Africa,METT,2005,For storage only,28,Matjies Rivier Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21515,300345,South Africa,METT,2007,For storage only,28,Matjies Rivier Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21516,300345,South Africa,METT,2010,For storage only,28,Matjies Rivier Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21518,300345,South Africa,METT,2011,For storage only,28,Matjies Rivier Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21519,300345,South Africa,METT,2012,For storage only,28,Matjies Rivier Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21520,300345,South Africa,METT,2013,For storage only,28,Matjies Rivier Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21521,62407,South Africa,RAPPAM,2001,For storage only,28,Matshitsholo Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21522,300529,South Africa,METT,2010,For storage only,28,Mbumbazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21523,300529,South Africa,METT,2011,For storage only,28,Mbumbazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21524,300529,South Africa,METT,2012,For storage only,28,Mbumbazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21525,300529,South Africa,METT,2013,For storage only,28,Mbumbazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21526,300529,South Africa,RAPPAM,2001,For storage only,28,Mbumbazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21527,351102,South Africa,METT,2010,For storage only,28,Mdala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21528,351102,South Africa,METT,2011,For storage only,28,Mdala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21529,351102,South Africa,METT,2012,For storage only,28,Mdala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21530,351102,South Africa,METT,2013,For storage only,28,Mdala Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21531,9103,South Africa,METT,2010,For storage only,28,Midmar Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21532,9103,South Africa,METT,2011,For storage only,28,Midmar Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21533,9103,South Africa,METT,2012,For storage only,28,Midmar Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21534,9103,South Africa,METT,2013,For storage only,28,Midmar Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21535,9103,South Africa,RAPPAM,2001,For storage only,28,Midmar Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21536,306181,South Africa,METT,2010,For storage only,28,Pondoland Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21537,555563494,South Africa,RAPPAM,2001,For storage only,28,Mkhomazi Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21538,351104,South Africa,METT,2010,For storage only,28,Mkhombo Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21539,351104,South Africa,METT,2011,For storage only,28,Mkhombo Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21540,351104,South Africa,METT,2012,For storage only,28,Mkhombo Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21541,351104,South Africa,METT,2013,For storage only,28,Mkhombo Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21542,555563944,South Africa,RAPPAM,2001,For storage only,28,Mkuzi Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21543,555563944,South Africa,Birdlife IBA,2006,For storage only,28,Mkuzi Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21544,32919,South Africa,METT,2010,For storage only,28,Modjadji Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21545,32919,South Africa,METT,2011,For storage only,28,Modjadji Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21546,32919,South Africa,METT,2012,For storage only,28,Modjadji Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21547,32919,South Africa,METT,2013,For storage only,28,Modjadji Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21548,555563463,South Africa,METT,2010,For storage only,28,Mokala National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21549,555563463,South Africa,METT,2012,For storage only,28,Mokala National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21550,555563463,South Africa,METT,2013,For storage only,28,Mokala National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21551,555563945,South Africa,METT,2010,For storage only,28,Moletzie Bird Sanctuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21552,555563945,South Africa,METT,2011,For storage only,28,Moletzie Bird Sanctuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21553,555563945,South Africa,METT,2012,For storage only,28,Moletzie Bird Sanctuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21554,555563945,South Africa,METT,2013,For storage only,28,Moletzie Bird Sanctuary,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21555,32834,South Africa,METT,2010,For storage only,28,Molopo Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21556,32834,South Africa,METT,2012,For storage only,28,Molopo Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21557,32834,South Africa,METT,2013,For storage only,28,Molopo Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21558,21154,South Africa,METT,2010,For storage only,28,Mount Currie Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21559,21154,South Africa,RAPPAM,2001,For storage only,28,Mount Currie Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21560,877,South Africa,METT,2010,For storage only,28,Mountain Zebra National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21561,877,South Africa,METT,2012,For storage only,28,Mountain Zebra National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21562,877,South Africa,METT,2013,For storage only,28,Mountain Zebra National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21563,21154,South Africa,METT,2011,For storage only,28,Mount Currie Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21564,21154,South Africa,METT,2012,For storage only,28,Mount Currie Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21565,21154,South Africa,METT,2013,For storage only,28,Mount Currie Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21566,351103,South Africa,METT,2011,For storage only,28,Mthethomusha Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21567,351103,South Africa,METT,2012,For storage only,28,Mthethomusha Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21568,351103,South Africa,METT,2013,For storage only,28,Mthethomusha Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21569,351103,South Africa,METT,2010,For storage only,28,Mthethomusha Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21570,555563951,South Africa,METT,2010,For storage only,28,Nababiep Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21571,308685,South Africa,METT,2010,For storage only,28,Namaqua National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21572,308685,South Africa,METT,2012,For storage only,28,Namaqua National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21573,308685,South Africa,METT,2013,For storage only,28,Namaqua National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21574,351458,South Africa,METT,2010,For storage only,28,Ncandu Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21575,351458,South Africa,METT,2011,For storage only,28,Ncandu Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21576,351458,South Africa,METT,2012,For storage only,28,Ncandu Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21577,351458,South Africa,METT,2013,For storage only,28,Ncandu Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21578,351458,South Africa,RAPPAM,2001,For storage only,28,Ncandu Nature Reserve,Forest Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21579,555563966,South Africa,METT,2011,For storage only,28,Nduli Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21580,555563966,South Africa,METT,2012,For storage only,28,Nduli Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21581,555563966,South Africa,METT,2013,For storage only,28,Nduli Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21582,555563966,South Africa,METT,2010,For storage only,28,Nduli Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21583,116329,South Africa,METT,2010,For storage only,28,Ndumu Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21584,116329,South Africa,METT,2011,For storage only,28,Ndumu Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21585,116329,South Africa,METT,2012,For storage only,28,Ndumu Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21586,116329,South Africa,METT,2013,For storage only,28,Ndumu Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21587,116329,South Africa,Birdlife IBA,1998,For storage only,28,Ndumu Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21588,145553,South Africa,Birdlife IBA,1998,For storage only,28,Ndumo Game Reserve,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21589,145553,South Africa,RAPPAM,2001,For storage only,28,Ndumo Game Reserve,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21590,555563973,South Africa,METT,2003,For storage only,28,Ngoya Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21591,555563973,South Africa,METT,2010,For storage only,28,Ngoya Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21592,555563973,South Africa,RAPPAM,2001,For storage only,28,Ngoya Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21593,39753,South Africa,METT,2010,For storage only,28,Nkandla Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21594,39753,South Africa,METT,2011,For storage only,28,Nkandla Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21595,39753,South Africa,METT,2012,For storage only,28,Nkandla Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21596,39753,South Africa,METT,2013,For storage only,28,Nkandla Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21597,39753,South Africa,RAPPAM,2001,For storage only,28,Nkandla Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21598,9126,South Africa,METT,2010,For storage only,28,Nooitgedacht Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21599,9126,South Africa,METT,2011,For storage only,28,Nooitgedacht Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21600,9126,South Africa,METT,2012,For storage only,28,Nooitgedacht Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21601,9126,South Africa,METT,2013,For storage only,28,Nooitgedacht Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21602,26040,South Africa,METT,2010,For storage only,28,North Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21603,26040,South Africa,METT,2011,For storage only,28,North Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21604,26040,South Africa,METT,2012,For storage only,28,North Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21605,26040,South Africa,METT,2013,For storage only,28,North Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21606,26040,South Africa,RAPPAM,2001,For storage only,28,North Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21607,351498,South Africa,METT,2010,For storage only,28,Nsikeni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21608,351498,South Africa,METT,2011,For storage only,28,Nsikeni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21609,351498,South Africa,METT,2012,For storage only,28,Nsikeni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21610,351498,South Africa,METT,2013,For storage only,28,Nsikeni Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21611,9115,South Africa,METT,2010,For storage only,28,Nwanedi National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21612,9115,South Africa,METT,2011,For storage only,28,Nwanedi National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21613,9115,South Africa,METT,2012,For storage only,28,Nwanedi National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21614,9115,South Africa,METT,2013,For storage only,28,Nwanedi National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21615,7384,South Africa,METT,2010,For storage only,28,Nylsvley Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21616,7384,South Africa,METT,2011,For storage only,28,Nylsvley Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21617,7384,South Africa,METT,2012,For storage only,28,Nylsvley Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21618,7384,South Africa,METT,2013,For storage only,28,Nylsvley Private Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21619,7386,South Africa,METT,2010,For storage only,28,Ohrigstad Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21620,7386,South Africa,METT,2011,For storage only,28,Ohrigstad Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21621,7386,South Africa,METT,2012,For storage only,28,Ohrigstad Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21622,7386,South Africa,METT,2013,For storage only,28,Ohrigstad Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21623,351423,South Africa,METT,2010,For storage only,28,Malekgalonyane Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21624,555563973,South Africa,Birdlife IBA,2009,For storage only,28,Ngoya Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21625,32835,South Africa,METT,2007,For storage only,28,Oorlogskloof Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21626,32835,South Africa,METT,2010,For storage only,28,Oorlogskloof Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21628,116330,South Africa,METT,2010,For storage only,28,Ophathe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21629,116330,South Africa,METT,2011,For storage only,28,Ophathe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21630,116330,South Africa,METT,2012,For storage only,28,Ophathe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21631,116330,South Africa,METT,2013,For storage only,28,Ophathe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21632,116330,South Africa,RAPPAM,2001,For storage only,28,Ophathe Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21633,4759,South Africa,RAPPAM,2001,For storage only,28,Oribi Gorge Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21634,4759,South Africa,METT,2010,For storage only,28,Oribi Gorge Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21635,4759,South Africa,METT,2011,For storage only,28,Oribi Gorge Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21636,4759,South Africa,METT,2012,For storage only,28,Oribi Gorge Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21637,4759,South Africa,METT,2013,For storage only,28,Oribi Gorge Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21638,4759,South Africa,Birdlife IBA,2007,For storage only,28,Oribi Gorge Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21639,4034,South Africa,METT,2010,For storage only,28,Oviston Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21640,4034,South Africa,METT,2011,For storage only,28,Oviston Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21641,4034,South Africa,METT,2012,For storage only,28,Oviston Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21642,4034,South Africa,METT,2013,For storage only,28,Oviston Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21643,7385,South Africa,METT,2010,For storage only,28,Percy Fyfe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21644,7385,South Africa,METT,2011,For storage only,28,Percy Fyfe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21645,7385,South Africa,METT,2012,For storage only,28,Percy Fyfe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21646,7385,South Africa,METT,2013,For storage only,28,Percy Fyfe Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21647,351522,South Africa,METT,2010,For storage only,28,Pongola Bush Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21648,9129,South Africa,METT,2010,For storage only,28,Pilanesberg National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21649,9129,South Africa,METT,2012,For storage only,28,Pilanesberg National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21650,9129,South Africa,METT,2013,For storage only,28,Pilanesberg National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21651,9129,South Africa,Birdlife IBA,2008,For storage only,28,Pilanesberg National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21652,351531,South Africa,RAPPAM,2001,For storage only,28,Poccolan Robinson's Bush Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21653,300440,South Africa,Birdlife IBA,2013,For storage only,28,Pietersburg Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21654,306181,South Africa,METT,2005,For storage only,28,Pondoland Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21655,306181,South Africa,METT,2012,For storage only,28,Pondoland Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21656,351522,South Africa,METT,2011,For storage only,28,Pongola Bush Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21657,351522,South Africa,METT,2012,For storage only,28,Pongola Bush Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21658,351522,South Africa,METT,2013,For storage only,28,Pongola Bush Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21659,351522,South Africa,RAPPAM,2001,For storage only,28,Pongola Bush Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21661,555564003,South Africa,METT,2010,For storage only,28,Potlake Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21662,555564003,South Africa,METT,2011,For storage only,28,Potlake Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21663,555564003,South Africa,METT,2012,For storage only,28,Potlake Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21664,555564003,South Africa,METT,2013,For storage only,28,Potlake Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21665,39755,South Africa,METT,2010,For storage only,28,Qudeni Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21666,39755,South Africa,RAPPAM,2001,For storage only,28,Qudeni Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21667,39755,South Africa,METT,2011,For storage only,28,Qudeni Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21668,39755,South Africa,METT,2012,For storage only,28,Qudeni Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21669,39755,South Africa,METT,2013,For storage only,28,Qudeni Forest Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21670,26036,South Africa,METT,2010,For storage only,28,Queen Elizabeth Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21671,26036,South Africa,METT,2011,For storage only,28,Queen Elizabeth Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21672,26036,South Africa,METT,2012,For storage only,28,Queen Elizabeth Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21673,26036,South Africa,METT,2013,For storage only,28,Queen Elizabeth Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21674,26036,South Africa,RAPPAM,2001,For storage only,28,Queen Elizabeth Park Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21675,13307,South Africa,METT,2010,For storage only,28,Richards Bay Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21676,13307,South Africa,METT,2011,For storage only,28,Richards Bay Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21677,13307,South Africa,METT,2012,For storage only,28,Richards Bay Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21678,13307,South Africa,METT,2013,For storage only,28,Richards Bay Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21679,30851,South Africa,METT,2010,For storage only,28,Richtersveld National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21680,30851,South Africa,METT,2005,For storage only,28,Richtersveld National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21681,30851,South Africa,METT,2012,For storage only,28,Richtersveld National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21682,30851,South Africa,METT,2013,For storage only,28,Richtersveld National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21683,555564015,South Africa,Birdlife IBA,2013,For storage only,28,Rietvlei Nature Area,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21684,32961,South Africa,METT,2010,For storage only,28,Riverlands Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21685,32961,South Africa,METT,2011,For storage only,28,Riverlands Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21686,32961,South Africa,METT,2012,For storage only,28,Riverlands Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21687,32961,South Africa,METT,2013,For storage only,28,Riverlands Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21688,32839,South Africa,METT,2007,For storage only,28,Robberg Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21689,32839,South Africa,METT,2010,For storage only,28,Robberg Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21690,32839,South Africa,METT,0,For storage only,28,Robberg Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21691,32839,South Africa,METT,2011,For storage only,28,Robberg Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21692,32839,South Africa,METT,2012,For storage only,28,Robberg Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21693,32839,South Africa,METT,2013,For storage only,28,Robberg Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21694,32840,South Africa,METT,2005,For storage only,28,Rocher Pan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21695,32840,South Africa,METT,2007,For storage only,28,Rocher Pan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21696,32840,South Africa,METT,2010,For storage only,28,Rocher Pan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21698,32840,South Africa,METT,2011,For storage only,28,Rocher Pan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21699,32840,South Africa,METT,2012,For storage only,28,Rocher Pan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21700,32840,South Africa,METT,2013,For storage only,28,Rocher Pan Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21701,4028,South Africa,METT,2010,For storage only,28,Rolfontein Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21702,7387,South Africa,METT,2010,For storage only,28,Roodeplaat Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21703,7387,South Africa,METT,2011,For storage only,28,Roodeplaat Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21704,7387,South Africa,METT,2012,For storage only,28,Roodeplaat Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21705,7387,South Africa,METT,2013,For storage only,28,Roodeplaat Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21706,555563964,South Africa,RAPPAM,2001,For storage only,28,Natal National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21707,555564026,South Africa,RAPPAM,2001,For storage only,28,Rugged Glen Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21708,21151,South Africa,METT,2010,For storage only,28,Rustfontein Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21709,21151,South Africa,METT,2011,For storage only,28,Rustfontein Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21710,21151,South Africa,METT,2012,For storage only,28,Rustfontein Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21711,21151,South Africa,METT,2013,For storage only,28,Rustfontein Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21712,145122,South Africa,METT,2012,For storage only,28,S. A. Lombard Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21713,145122,South Africa,METT,2013,For storage only,28,S. A. Lombard Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21714,32841,South Africa,METT,2010,For storage only,28,Salmonsdam Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21715,32841,South Africa,METT,2011,For storage only,28,Salmonsdam Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21716,32841,South Africa,METT,2012,For storage only,28,Salmonsdam Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21717,32841,South Africa,METT,2013,For storage only,28,Salmonsdam Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21718,9084,South Africa,METT,2010,For storage only,28,Sandveld Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21719,9084,South Africa,METT,2011,For storage only,28,Sandveld Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21720,9084,South Africa,METT,2012,For storage only,28,Sandveld Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21721,9084,South Africa,METT,2013,For storage only,28,Sandveld Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21722,300451,South Africa,METT,2010,For storage only,28,Schuinsdraai Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21723,300451,South Africa,METT,2011,For storage only,28,Schuinsdraai Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21724,300451,South Africa,METT,2012,For storage only,28,Schuinsdraai Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21725,300451,South Africa,METT,2013,For storage only,28,Schuinsdraai Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21726,145554,South Africa,METT,2010,For storage only,28,Seekoeivlei Nature Reserve,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21727,555564037,South Africa,METT,2011,For storage only,28,Seekoeivlei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21728,555564037,South Africa,METT,2012,For storage only,28,Seekoeivlei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21729,555564037,South Africa,METT,2013,For storage only,28,Seekoeivlei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21730,116333,South Africa,METT,2010,For storage only,28,Sileza Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21731,116333,South Africa,METT,2011,For storage only,28,Sileza Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21732,116333,South Africa,METT,2012,For storage only,28,Sileza Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21733,116333,South Africa,METT,2013,For storage only,28,Sileza Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21734,116333,South Africa,RAPPAM,2001,For storage only,28,Sileza Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21735,351583,South Africa,METT,2010,For storage only,28,Soada Forest Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21736,351583,South Africa,METT,2011,For storage only,28,Soada Forest Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21737,351583,South Africa,METT,2012,For storage only,28,Soada Forest Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21738,351583,South Africa,METT,2013,For storage only,28,Soada Forest Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21739,351583,South Africa,RAPPAM,2001,For storage only,28,Soada Forest Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21740,555564045,South Africa,RAPPAM,2001,For storage only,28,Sodwana Bay National Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21741,9089,South Africa,METT,2010,For storage only,28,Soetdoring Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21742,9089,South Africa,METT,2011,For storage only,28,Soetdoring Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21743,9089,South Africa,METT,2012,For storage only,28,Soetdoring Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21744,9089,South Africa,METT,2013,For storage only,28,Soetdoring Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21745,39744,South Africa,METT,2010,For storage only,28,Songimvelo Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21746,39744,South Africa,METT,2011,For storage only,28,Songimvelo Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21747,39744,South Africa,METT,2012,For storage only,28,Songimvelo Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21748,39744,South Africa,METT,2013,For storage only,28,Songimvelo Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21749,39744,South Africa,Birdlife IBA,2013,For storage only,28,Songimvelo Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21750,881,South Africa,METT,2005,For storage only,28,Garden Route National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21751,881,South Africa,METT,2007,For storage only,28,Garden Route National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21752,300393,South Africa,METT,2010,For storage only,28,Spioenkop Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21753,300393,South Africa,METT,2011,For storage only,28,Spioenkop Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21754,300393,South Africa,METT,2012,For storage only,28,Spioenkop Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21755,300393,South Africa,METT,2013,For storage only,28,Spioenkop Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21756,300393,South Africa,RAPPAM,2001,For storage only,28,Spioenkop Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21757,351117,South Africa,METT,2010,For storage only,28,S.S. Skosana Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21758,68168,South Africa,RAPPAM,2001,For storage only,28,St. Lucia System,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21759,315490,South Africa,RAPPAM,2001,For storage only,28,St Lucia Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21760,32879,South Africa,METT,2010,For storage only,28,Sterkfontein Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21761,32879,South Africa,METT,2011,For storage only,28,Sterkfontein Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21762,32879,South Africa,METT,2012,For storage only,28,Sterkfontein Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21763,32879,South Africa,METT,2013,For storage only,28,Sterkfontein Dam Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21764,9127,South Africa,METT,2010,For storage only,28,Sterkspruit Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21765,9127,South Africa,METT,2011,For storage only,28,Sterkspruit Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21766,9127,South Africa,METT,2012,For storage only,28,Sterkspruit Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21767,9127,South Africa,METT,2013,For storage only,28,Sterkspruit Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21768,1357,South Africa,METT,2010,For storage only,28,Suikerbosrand Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21769,1357,South Africa,METT,2011,For storage only,28,Suikerbosrand Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21770,1357,South Africa,METT,2012,For storage only,28,Suikerbosrand Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21771,1357,South Africa,METT,2013,For storage only,28,Suikerbosrand Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21772,62385,South Africa,METT,2009,For storage only,28,Groot Swartberg Mountain Catchment Area,Mountain Catchment Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21773,351604,South Africa,METT,2007,For storage only,28,Swartberg-Oos Mountain Catchment Area,Mountain Catchment Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21774,351604,South Africa,METT,2010,For storage only,28,Swartberg-Oos Mountain Catchment Area,Mountain Catchment Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21775,351604,South Africa,METT,2011,For storage only,28,Swartberg-Oos Mountain Catchment Area,Mountain Catchment Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21776,351604,South Africa,METT,2012,For storage only,28,Swartberg-Oos Mountain Catchment Area,Mountain Catchment Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21777,351604,South Africa,METT,2013,For storage only,28,Swartberg-Oos Mountain Catchment Area,Mountain Catchment Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21778,300408,South Africa,METT,2010,For storage only,28,Table Mountain National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21779,300408,South Africa,METT,2012,For storage only,28,Table Mountain National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21780,300408,South Africa,METT,2013,For storage only,28,Table Mountain National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21781,32816,South Africa,METT,2010,For storage only,28,Tankwa-Karoo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21783,32816,South Africa,METT,2012,For storage only,28,Tankwa-Karoo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21784,32816,South Africa,METT,2013,For storage only,28,Tankwa-Karoo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21785,32816,South Africa,METT,2005,For storage only,28,Tankwa-Karoo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21786,32816,South Africa,METT,2007,For storage only,28,Tankwa-Karoo National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21787,39758,South Africa,METT,2010,For storage only,28,Tembe Elephant Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21788,39758,South Africa,METT,2011,For storage only,28,Tembe Elephant Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21789,39758,South Africa,METT,2012,For storage only,28,Tembe Elephant Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21790,39758,South Africa,METT,2013,For storage only,28,Tembe Elephant Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21791,39758,South Africa,RAPPAM,2001,For storage only,28,Tembe Elephant Park,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21792,33108,South Africa,METT,2010,For storage only,28,The Swamp Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21793,33108,South Africa,METT,2011,For storage only,28,The Swamp Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21794,33108,South Africa,METT,2012,For storage only,28,The Swamp Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21795,33108,South Africa,METT,2013,For storage only,28,The Swamp Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21796,33108,South Africa,RAPPAM,2001,For storage only,28,The Swamp Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21797,9101,South Africa,METT,2011,For storage only,28,Thomas Baines Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21798,9101,South Africa,METT,2012,For storage only,28,Thomas Baines Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21799,9101,South Africa,METT,2013,For storage only,28,Thomas Baines Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21800,9101,South Africa,METT,2010,For storage only,28,Thomas Baines Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21802,9112,South Africa,METT,2011,For storage only,28,Tsolwana Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21803,9112,South Africa,METT,2012,For storage only,28,Tsolwana Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21804,9112,South Africa,METT,2013,For storage only,28,Tsolwana Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21805,9112,South Africa,METT,2010,For storage only,28,Tsolwana Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21806,351625,South Africa,METT,2010,For storage only,28,Tugela Drift Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21807,351625,South Africa,METT,2011,For storage only,28,Tugela Drift Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21808,351625,South Africa,METT,2012,For storage only,28,Tugela Drift Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21809,351625,South Africa,METT,2013,For storage only,28,Tugela Drift Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21810,1354,South Africa,METT,2011,For storage only,28,Tussen-die-Riviere Game Farm,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21811,1354,South Africa,METT,2012,For storage only,28,Tussen-die-Riviere Game Farm,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21812,1354,South Africa,METT,2013,For storage only,28,Tussen-die-Riviere Game Farm,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21813,1354,South Africa,METT,2010,For storage only,28,Tussen-die-Riviere Game Farm,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21814,351628,South Africa,METT,2011,For storage only,28,Ubombo Mountain Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21815,351628,South Africa,METT,2012,For storage only,28,Ubombo Mountain Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21816,351628,South Africa,METT,2013,For storage only,28,Ubombo Mountain Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21817,351628,South Africa,RAPPAM,2001,For storage only,28,Ubombo Mountain Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21818,351631,South Africa,METT,2010,For storage only,28,Ukhahlamba Drakensberg Park,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21819,555579297,South Africa,RAPPAM,2001,For storage only,28,Umfolozi Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21820,145120,South Africa,METT,2013,For storage only,28,Umgeni Vlei,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21821,145120,South Africa,Birdlife IBA,2013,For storage only,28,Umgeni Vlei,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21822,555558453,South Africa,Birdlife IBA,2013,For storage only,28,Umgeni Vlei Nature Reserve,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21823,145120,South Africa,RAPPAM,2001,For storage only,28,Umgeni Vlei,Provincial Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21824,351634,South Africa,METT,2010,For storage only,28,Umhlanga Lagoon Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21825,351634,South Africa,METT,2011,For storage only,28,Umhlanga Lagoon Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21826,351634,South Africa,METT,2012,For storage only,28,Umhlanga Lagoon Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21827,351634,South Africa,METT,2013,For storage only,28,Umhlanga Lagoon Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21828,351634,South Africa,RAPPAM,2001,For storage only,28,Umhlanga Lagoon Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21829,26030,South Africa,METT,2010,For storage only,28,Umlalazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21830,26030,South Africa,METT,2011,For storage only,28,Umlalazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21831,26030,South Africa,METT,2012,For storage only,28,Umlalazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21832,26030,South Africa,METT,2013,For storage only,28,Umlalazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21833,26030,South Africa,RAPPAM,2001,For storage only,28,Umlalazi Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21834,1353,South Africa,METT,2010,For storage only,28,Umtamvuna Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21835,1353,South Africa,METT,2011,For storage only,28,Umtamvuna Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21836,1353,South Africa,METT,2012,For storage only,28,Umtamvuna Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21837,1353,South Africa,METT,2013,For storage only,28,Umtamvuna Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21838,1353,South Africa,Birdlife IBA,2007,For storage only,28,Umtamvuna Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21839,1353,South Africa,RAPPAM,2001,For storage only,28,Umtamvuna Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21840,26043,South Africa,METT,2010,For storage only,28,Umvoti Vlei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21841,26043,South Africa,METT,2011,For storage only,28,Umvoti Vlei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21842,26043,South Africa,METT,2012,For storage only,28,Umvoti Vlei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21843,26043,South Africa,METT,2013,For storage only,28,Umvoti Vlei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21844,26043,South Africa,RAPPAM,2001,For storage only,28,Umvoti Vlei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21845,555564106,South Africa,RAPPAM,2001,For storage only,28,Vergelegen Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21846,9139,South Africa,METT,2010,For storage only,28,Verloren Vallei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21847,9139,South Africa,METT,2011,For storage only,28,Verloren Vallei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21848,9139,South Africa,METT,2012,For storage only,28,Verloren Vallei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21849,9139,South Africa,METT,2013,For storage only,28,Verloren Vallei Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21850,68171,South Africa,METT,2005,For storage only,28,Verlorenvlei,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21851,68171,South Africa,METT,2007,For storage only,28,Verlorenvlei,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21852,68171,South Africa,METT,2010,For storage only,28,Verlorenvlei,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -21854,9134,South Africa,METT,2010,For storage only,28,Vernon Crookes Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21855,9134,South Africa,METT,2011,For storage only,28,Vernon Crookes Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21856,9134,South Africa,METT,2012,For storage only,28,Vernon Crookes Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21857,9134,South Africa,METT,2013,For storage only,28,Vernon Crookes Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21858,9134,South Africa,RAPPAM,2001,For storage only,28,Vernon Crookes Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21859,902483,South Africa,WHA Outlook Report,2014,For storage only,28,Vredefort Dome,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21860,4031,South Africa,METT,2010,For storage only,28,Vrolijkheid Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21861,4031,South Africa,METT,2011,For storage only,28,Vrolijkheid Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21862,4031,South Africa,METT,2012,For storage only,28,Vrolijkheid Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21863,4031,South Africa,METT,2013,For storage only,28,Vrolijkheid Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21868,26042,South Africa,METT,2010,For storage only,28,Wagendrift Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21869,26042,South Africa,METT,2011,For storage only,28,Wagendrift Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21870,26042,South Africa,METT,2012,For storage only,28,Wagendrift Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21871,26042,South Africa,METT,2013,For storage only,28,Wagendrift Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21872,26042,South Africa,RAPPAM,2001,For storage only,28,Wagendrift Public Resort Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21873,555563467,South Africa,METT,2004,For storage only,28,Walker Bay Whale Sanctuary Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21875,555563467,South Africa,METT,2008,For storage only,28,Walker Bay Whale Sanctuary Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21877,555563467,South Africa,METT,2010,For storage only,28,Walker Bay Whale Sanctuary Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21878,555563467,South Africa,METT,2011,For storage only,28,Walker Bay Whale Sanctuary Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21879,555563467,South Africa,METT,2012,For storage only,28,Walker Bay Whale Sanctuary Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21880,555563467,South Africa,METT,2013,For storage only,28,Walker Bay Whale Sanctuary Marine Protected Area,Marine Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21881,900554,South Africa,GOBI Survey,2006,For storage only,28,Waterberg Biosphere Reserve,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21882,300367,South Africa,METT,2010,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21883,300367,South Africa,METT,2011,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21884,300367,South Africa,METT,2012,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21885,300367,South Africa,METT,2013,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21886,9106,South Africa,METT,2010,For storage only,28,Weenen Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21887,9106,South Africa,METT,2011,For storage only,28,Weenen Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21888,9106,South Africa,METT,2012,For storage only,28,Weenen Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21889,9106,South Africa,METT,2013,For storage only,28,Weenen Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21890,9106,South Africa,RAPPAM,2001,For storage only,28,Weenen Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21891,17368,South Africa,METT,2010,For storage only,28,West Coast National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21892,17368,South Africa,METT,2012,For storage only,28,West Coast National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21893,17368,South Africa,METT,2013,For storage only,28,West Coast National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21894,32817,South Africa,METT,2005,For storage only,28,Wilderness National Lakes Area,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21895,32817,South Africa,METT,2007,For storage only,28,Wilderness National Lakes Area,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -21896,1355,South Africa,METT,2010,For storage only,28,Willem Pretorius Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21897,1355,South Africa,METT,2011,For storage only,28,Willem Pretorius Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21898,1355,South Africa,METT,2012,For storage only,28,Willem Pretorius Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21899,1355,South Africa,METT,2013,For storage only,28,Willem Pretorius Game Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21900,116356,South Africa,METT,2010,For storage only,28,Witsand Provincial Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21901,555563500,South Africa,METT,2010,For storage only,28,Wolkberg Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21903,555563500,South Africa,METT,2011,For storage only,28,Wolkberg Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21904,555563500,South Africa,METT,2012,For storage only,28,Wolkberg Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21905,555563500,South Africa,METT,2013,For storage only,28,Wolkberg Wilderness Area,Forest Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21909,62304,South Africa,METT,2010,For storage only,28,Wonderkop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21910,62304,South Africa,METT,2011,For storage only,28,Wonderkop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21911,62304,South Africa,METT,2012,For storage only,28,Wonderkop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21912,62304,South Africa,METT,2013,For storage only,28,Wonderkop Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21913,615,Canada,Parks Canada,2008,For storage only,28,Banff National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21914,12801,Canada,Parks Canada,2004,For storage only,28,Bruce Peninsula National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21915,26689,Canada,WHA Outlook Report,2014,For storage only,28,Canadian Rocky Mountain Parks,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21916,18922,Canada,GOBI Survey,2006,For storage only,28,Réserve de la biosphère de Charlevoix,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21917,2004,Canada,WHA Outlook Report,2014,For storage only,28,Dinosaur Provincial Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21918,555516419,Canada,Parks Canada,2003,For storage only,28,Fathom Five National Marine Park of Canada,National Marine Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -21919,18534,Canada,Parks Canada,2006,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21920,66090,Canada,Parks Canada,2004,For storage only,28,Georgian Bay Islands National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21921,622,Canada,Parks Canada,2008,For storage only,28,Glacier National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21922,555516420,Canada,Parks Canada,2007,For storage only,28,Grasslands National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21923,619,Canada,Parks Canada,2005,For storage only,28,Gros Morne National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21924,17759,Canada,WHA Outlook Report,2014,For storage only,28,Gros Morne National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21925,327024,Canada,Parks Canada,2007,For storage only,28,Uhtjärve hoiuala,Limited-conservation area,"GD-PAME, version pre-2017",Not Reported,2018,English -21926,614,Canada,Parks Canada,2008,For storage only,28,Jasper National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21927,903133,Canada,WHA Outlook Report,2014,For storage only,28,Joggins Fossil Cliffs,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21928,612,Canada,Parks Canada,2008,For storage only,28,Kluane National Park Reserve of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21930,621,Canada,Parks Canada,2008,For storage only,28,Kootenay National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21931,11587,Canada,GOBI Survey,2006,For storage only,28,Long Point Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21932,198294,Canada,WHA Outlook Report,2014,For storage only,28,Miguasha National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21933,220257,Canada,GOBI Survey,2006,For storage only,28,Mount Arrowsmith,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21934,630,Canada,Parks Canada,2008,For storage only,28,Mount Revelstoke National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21935,2005,Canada,WHA Outlook Report,2014,For storage only,28,Nahanni National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21936,170353,Canada,Parks Canada,2006,For storage only,28,"Ohepalu LKA, Udriku skv.",Wilderness conservation zone of nature reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21937,617,Canada,Parks Canada,2005,For storage only,28,Prince Albert National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21938,198338,Canada,GOBI Survey,2006,For storage only,28,Redberry Lake,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21939,11586,Canada,GOBI Survey,2006,For storage only,28,Riding Mountain Biosphere Reserve,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21940,66628,Canada,MPA MEE,2003,For storage only,28,Not Reported,Not Reported,"GD-PAME, version pre-2017",Not Reported,2018,English -21941,900664,Canada,GOBI Survey,2006,For storage only,28,South West Nova,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21942,638,Canada,Parks Canada,2004,For storage only,28,St. Lawrence Islands National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21943,900714,Canada,GOBI Survey,2006,For storage only,28,Thousands Islands Frontenac Arch,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21944,2057,Canada,GOBI Survey,2006,For storage only,28,Waterton Lakes National Park,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21946,626,Canada,Parks Canada,2008,For storage only,28,Waterton Lakes National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21947,10902,Canada,WHA Outlook Report,2014,For storage only,28,Wood Buffalo National Park,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -21948,623,Canada,Parks Canada,2008,For storage only,28,Yoho National Park of Canada,National Park of Canada,"GD-PAME, version pre-2017",Not Reported,2018,English -21995,195092,Finland,Birdlife IBA,2010,For storage only,28,Ahmasjärven luonnonsuojelualue,Private Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21996,555539129,Finland,Birdlife IBA,2010,For storage only,28,Ahmasjärvi,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -21997,61523,Finland,PANPARKS,2007,For storage only,28,Archipelago Sea Area,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21998,61523,Finland,GOBI Survey,2006,For storage only,28,Archipelago Sea Area,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -21999,61523,Finland,Stockholm BR Survey,2008,For storage only,28,Archipelago Sea Area,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22000,555543216,Finland,RAPPAM,2004,For storage only,28,Itäisen Suomenlahden saaristo ja vedet/ Eastern Gulf of Finland Archipelago and waters,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -22001,40929,Finland,RAPPAM,2004,For storage only,28,Tammisaaren saariston kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22002,149666,Finland,Birdlife IBA,2010,For storage only,28,Elimyssalon luonnonsuojelualue (Ystävyyden puisto),State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22003,555539139,Finland,Birdlife IBA,2010,For storage only,28,Elimyssalon alue,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22004,555580286,Finland,Birdlife IBA,2010,For storage only,28,Elimyssalon alue,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22005,7480,Finland,RAPPAM,2004,For storage only,28,Häädetkeitaan luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22006,64507,Finland,RAPPAM,2004,For storage only,28,Hammastunturin erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22007,7497,Finland,RAPPAM,2004,For storage only,28,Helvetinjärven kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22008,7491,Finland,RAPPAM,2004,For storage only,28,Hiidenportin kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22009,555525396,Finland,RAPPAM,2004,For storage only,28,Hossa,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22010,7499,Finland,RAPPAM,2004,For storage only,28,Isojärven kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22011,555538865,Finland,Birdlife IBA,2010,For storage only,28,Itäisen Suomenlahden saaristo ja vedet,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22012,555543216,Finland,Birdlife IBA,2010,For storage only,28,Itäisen Suomenlahden saaristo ja vedet/ Eastern Gulf of Finland Archipelago and waters,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -22013,555580090,Finland,Birdlife IBA,2010,For storage only,28,Itäisen Suomenlahden saaristo ja vedet,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22014,64540,Finland,Birdlife IBA,2010,For storage only,28,Joutsenaavan-Kaita-aavan soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22015,555539181,Finland,Birdlife IBA,2010,For storage only,28,Joutsenaapa - Kaita-aapa,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22016,555580005,Finland,Birdlife IBA,2010,For storage only,28,Joutsenaapa - Kaita-aapa,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22017,102007,Finland,Birdlife IBA,2010,For storage only,28,Juortanansalon-Lapinsuon soidensuojelualue (Ystävyyden p.),Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22018,555539138,Finland,Birdlife IBA,2010,For storage only,28,Juortanansalon alue,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22019,555580285,Finland,Birdlife IBA,2010,For storage only,28,Juortanansalon alue,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22020,64508,Finland,Birdlife IBA,2010,For storage only,28,Käsivarren erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22021,555539151,Finland,Birdlife IBA,2010,For storage only,28,KÄSIVARREN ERÄMAA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22022,555579975,Finland,Birdlife IBA,2010,For storage only,28,Käsivarren Erämaa,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22023,64509,Finland,RAPPAM,2004,For storage only,28,Kaldoaivin erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22024,7482,Finland,RAPPAM,2004,For storage only,28,Karkalin luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22025,555539198,Finland,Birdlife IBA,2010,For storage only,28,Karunginjärvi,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22026,64508,Finland,RAPPAM,2004,For storage only,28,Käsivarren erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22027,7495,Finland,RAPPAM,2004,For storage only,28,Kauhanevan-Pohjankankaan kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22028,64500,Finland,RAPPAM,2004,For storage only,28,Kemihaaran erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22029,1517,Finland,Birdlife IBA,2010,For storage only,28,Kevon luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22030,555539199,Finland,Birdlife IBA,2010,For storage only,28,Kevo,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22031,555580021,Finland,Birdlife IBA,2010,For storage only,28,Kevo,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22032,1517,Finland,RAPPAM,2004,For storage only,28,Kevon luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22033,102005,Finland,Birdlife IBA,2010,For storage only,28,Kilsiaavan-Ristivuoman soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22034,555539194,Finland,Birdlife IBA,2010,For storage only,28,Kilsiaapa-Ristivuoma,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22035,555580015,Finland,Birdlife IBA,2010,For storage only,28,Kilsiaapa-Ristivuoma,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22036,555524234,Finland,Birdlife IBA,2010,For storage only,28,Kirkkonummen saaristo (SCI),Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22037,555538770,Finland,Birdlife IBA,2010,For storage only,28,Kirkkonummen saaristo (SPA),Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22038,555543228,Finland,Birdlife IBA,2010,For storage only,28,Kirkkonummen saaristo/ Kirkkonummi Archipelago,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -22039,329868,Finland,Birdlife IBA,2010,For storage only,28,Kirkon-Vilkkilänturan luonnonsuojelualue,Private Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22040,902767,Finland,Birdlife IBA,2010,For storage only,28,Kirkon-Vilkkiläntura Bay,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22041,555538884,Finland,Birdlife IBA,2010,For storage only,28,Kirkon-Vilkkiläntura,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22042,555539078,Finland,Birdlife IBA,2010,For storage only,28,Kitka,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22043,555580242,Finland,Birdlife IBA,2010,For storage only,28,Kitka,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22044,555538819,Finland,Birdlife IBA,2010,For storage only,28,Koijärvi,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22045,555580025,Finland,Birdlife IBA,2010,For storage only,28,Koijärvi,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22046,7489,Finland,RAPPAM,2004,For storage only,28,Koivusuon luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22047,40927,Finland,RAPPAM,2004,For storage only,28,Koloveden kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22048,67917,Finland,Birdlife IBA,2010,For storage only,28,Krunnit Islands,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22049,150220,Finland,Birdlife IBA,2010,For storage only,28,Krunnien luonnonsuojelualue,Private Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22050,555539156,Finland,Birdlife IBA,2010,For storage only,28,Perämeren saaret,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22051,555579982,Finland,Birdlife IBA,2010,For storage only,28,Perämeren saaret,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22052,175210,Finland,RAPPAM,2004,For storage only,28,Kurjenrahkan kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22053,64531,Finland,Birdlife IBA,2010,For storage only,28,Lämsänaavan-Sakkala-aavan soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22054,64542,Finland,Birdlife IBA,2010,For storage only,28,Lätäsenon-Hietajoen soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22055,902775,Finland,Birdlife IBA,2010,For storage only,28,Lätäseno-Hietajoki Mires,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22056,7496,Finland,RAPPAM,2004,For storage only,28,Lauhanvuoren kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22057,175212,Finland,RAPPAM,2004,For storage only,28,Leivonmäen kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22058,654,Finland,RAPPAM,2004,For storage only,28,Lemmenjoen kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22059,654,Finland,Birdlife IBA,2010,For storage only,28,Lemmenjoen kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22060,902776,Finland,Birdlife IBA,2010,For storage only,28,Lemmenjoki National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22061,555539153,Finland,Birdlife IBA,2010,For storage only,28,LEMMENJOEN KANSALLISPUISTO,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22062,555579978,Finland,Birdlife IBA,2010,For storage only,28,Lemmenjoen Kansallispuisto,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22063,7477,Finland,RAPPAM,2004,For storage only,28,Liesjärven kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22064,555524689,Finland,Birdlife IBA,2010,For storage only,28,Linnansaari,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22065,176188,Finland,RAPPAM,2004,For storage only,28,Linnansaari,Private Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22066,102003,Finland,Birdlife IBA,2010,For storage only,28,Lapiosuon-Ison Äijönsuon soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22067,555539112,Finland,Birdlife IBA,2010,For storage only,28,Litokaira,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22068,555580263,Finland,Birdlife IBA,2010,For storage only,28,Litokaira,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22069,657,Finland,Birdlife IBA,2010,For storage only,28,Pyhä-Luoston kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22070,555525497,Finland,Birdlife IBA,2010,For storage only,28,Luosto,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22071,555539171,Finland,Birdlife IBA,2010,For storage only,28,Pyhä-Luosto,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22072,1519,Finland,RAPPAM,2004,For storage only,28,Maltion luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22073,67921,Finland,Birdlife IBA,2010,For storage only,28,Martimoaapa - Lumiaapa - Penikat Mires,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22074,102004,Finland,Birdlife IBA,2010,For storage only,28,Martimoaavan-Lumiaavan-Penikoiden soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22075,555539183,Finland,Birdlife IBA,2010,For storage only,28,MARTIMOAAPA-LUMIAAPA-PENIKAT,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22076,555580009,Finland,Birdlife IBA,2010,For storage only,28,Martimoaapa-Lumiaapa-Penikat,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22077,64505,Finland,RAPPAM,2004,For storage only,28,Muotkatunturin erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22078,67739,Finland,GOBI Survey,2006,For storage only,28,North Karelian,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22079,101965,Finland,Birdlife IBA,2010,For storage only,28,Nuuksion kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22080,555538756,Finland,Birdlife IBA,2010,For storage only,28,Nuuksio,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22081,555580035,Finland,Birdlife IBA,2010,For storage only,28,Nuuksio,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22082,101965,Finland,RAPPAM,2004,For storage only,28,Nuuksion kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22083,7487,Finland,RAPPAM,2004,For storage only,28,Olvassuon luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22084,656,Finland,METT,2003,For storage only,28,Oulangan kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22085,902780,Finland,PANPARKS,2002,For storage only,28,Oulanka National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22086,902780,Finland,PANPARKS,2003,For storage only,28,Oulanka National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22087,902780,Finland,PANPARKS,2004,For storage only,28,Oulanka National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22088,902780,Finland,PANPARKS,2005,For storage only,28,Oulanka National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22089,902780,Finland,PANPARKS,2006,For storage only,28,Oulanka National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22090,902780,Finland,PANPARKS,2007,For storage only,28,Oulanka National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22091,902780,Finland,RAPPAM,2004,For storage only,28,Oulanka National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22092,656,Finland,Birdlife IBA,2010,For storage only,28,Oulangan kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22093,902780,Finland,Birdlife IBA,2010,For storage only,28,Oulanka National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22094,555539089,Finland,Birdlife IBA,2010,For storage only,28,Oulanka,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22095,555580244,Finland,Birdlife IBA,2010,For storage only,28,Oulanka,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22096,64532,Finland,Birdlife IBA,2010,For storage only,28,Pöyrisvuoman soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22097,101966,Finland,RAPPAM,2004,For storage only,28,Päijänteen kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22098,64506,Finland,RAPPAM,2004,For storage only,28,Paistunturin erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22099,7479,Finland,RAPPAM,2004,For storage only,28,Paljakan luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22100,655,Finland,RAPPAM,2004,For storage only,28,Pallas-Yllästunturin kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22101,555539149,Finland,Birdlife IBA,2010,For storage only,28,Pallas-Ounastunturi,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22102,555579976,Finland,Birdlife IBA,2010,For storage only,28,Pallas-Ounastunturi,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22103,7493,Finland,RAPPAM,2004,For storage only,28,Patvinsuon kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22104,7493,Finland,Birdlife IBA,2010,For storage only,28,Patvinsuon kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22105,67920,Finland,Birdlife IBA,2010,For storage only,28,Patvinsuo National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22106,555524874,Finland,Birdlife IBA,2010,For storage only,28,Patvinsuo,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22107,7488,Finland,RAPPAM,2004,For storage only,28,Pelson luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22108,40928,Finland,RAPPAM,2004,For storage only,28,Perämeren kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22109,7475,Finland,RAPPAM,2004,For storage only,28,Petkeljärven kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22110,1521,Finland,RAPPAM,2004,For storage only,28,Pisavaaran luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22111,64503,Finland,RAPPAM,2004,For storage only,28,Pöyrisjärven erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22112,64501,Finland,RAPPAM,2004,For storage only,28,Puljun erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22113,101964,Finland,Birdlife IBA,2010,For storage only,28,Puurijärven ja Isonsuon kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22114,555524293,Finland,Birdlife IBA,2010,For storage only,28,Puurijärvi-Isosuo,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22115,555538810,Finland,Birdlife IBA,2010,For storage only,28,Puurijärvi - Isosuo,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22116,101964,Finland,RAPPAM,2004,For storage only,28,Puurijärven ja Isonsuon kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22117,658,Finland,RAPPAM,2004,For storage only,28,Pyhä-Häkin kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22118,657,Finland,RAPPAM,2004,For storage only,28,Pyhä-Luoston kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22119,175211,Finland,RAPPAM,2004,For storage only,28,Repoveden kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22120,7490,Finland,Birdlife IBA,2010,For storage only,28,Riisitunturin kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22121,902783,Finland,Birdlife IBA,2010,For storage only,28,Riisitunturi National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22122,555525460,Finland,Birdlife IBA,2010,For storage only,28,Riisitunturin Kansallispuisto,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22123,7490,Finland,RAPPAM,2004,For storage only,28,Riisitunturin kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22124,7476,Finland,RAPPAM,2004,For storage only,28,Rokuan kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22125,102013,Finland,Birdlife IBA,2010,For storage only,28,Rumalan-Kuvajan-Oudonrimpien soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22126,555539145,Finland,Birdlife IBA,2010,For storage only,28,Rumala - Kuvaja - Oudonrimmet,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22127,555579972,Finland,Birdlife IBA,2010,For storage only,28,Rumala - Kuvaja - Oudonrimmet,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22128,397426,Finland,Birdlife IBA,2010,For storage only,28,Kokkolan saaristo ja Harrinniemi,Private Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22129,555539040,Finland,Birdlife IBA,2010,For storage only,28,Rummelön-Harrbådan,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22130,555580210,Finland,Birdlife IBA,2010,For storage only,28,Rummelön-Harrbådan,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22131,1520,Finland,RAPPAM,2004,For storage only,28,Runkauksen luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22132,101968,Finland,Birdlife IBA,2010,For storage only,28,Ruunaan luonnonsuojelualue,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22133,555538959,Finland,Birdlife IBA,2010,For storage only,28,Ruunaa,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22134,555580138,Finland,Birdlife IBA,2010,For storage only,28,Ruunaa,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22135,101968,Finland,RAPPAM,2004,For storage only,28,Ruunaan luonnonsuojelualue,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22136,2561,Finland,Birdlife IBA,2010,For storage only,28,Urho Kekkosen kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22137,555539188,Finland,Birdlife IBA,2010,For storage only,28,UK-PUISTO-SOMPIO-KEMIHAARA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22138,555580012,Finland,Birdlife IBA,2010,For storage only,28,Uk-Puisto-Sompio-Kemihaara,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22139,7494,Finland,RAPPAM,2004,For storage only,28,Salamajärven kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22140,1524,Finland,RAPPAM,2004,For storage only,28,Salamanperän luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22141,64544,Finland,Birdlife IBA,2010,For storage only,28,Sammuttijängän-Vaijoenjängän soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22142,902786,Finland,Birdlife IBA,2010,For storage only,28,Sammuttijänkä - Vaijoenjänkä Mires,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22143,7498,Finland,European Diploma,1996,For storage only,28,Seitsemisen kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22144,555524452,Finland,RAPPAM,2004,For storage only,28,Seitseminen,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22145,555524645,Finland,Birdlife IBA,2010,For storage only,28,Siikalahti,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22146,7483,Finland,RAPPAM,2004,For storage only,28,Sinivuoren luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22147,1518,Finland,RAPPAM,2004,For storage only,28,Sompion luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22148,7486,Finland,RAPPAM,2004,For storage only,28,Sukerijärven luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22149,175225,Finland,RAPPAM,2004,For storage only,28,Syötteen kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22150,127828,Finland,Birdlife IBA,2010,For storage only,28,Talaskankaan luonnonsuojelualue,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22151,555539147,Finland,Birdlife IBA,2010,For storage only,28,Talaskankaan alue,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22152,555579974,Finland,Birdlife IBA,2010,For storage only,28,Talaskankaan alue,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22153,64502,Finland,RAPPAM,2004,For storage only,28,Tarvantovaaran erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22154,7492,Finland,RAPPAM,2004,For storage only,28,Tiilikkajärven kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22155,555539197,Finland,Birdlife IBA,2010,For storage only,28,Pajukari-Uksei-Alkunkarinlahti,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22156,555580017,Finland,Birdlife IBA,2010,For storage only,28,Pajukari-Uksei-Alkunkarinlahti,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22157,40930,Finland,RAPPAM,2004,For storage only,28,Torronsuon kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22158,40930,Finland,Birdlife IBA,2010,For storage only,28,Torronsuon kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22159,902791,Finland,Birdlife IBA,2010,For storage only,28,Torronsuo National Park,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22160,555538843,Finland,Birdlife IBA,2010,For storage only,28,Torronsuo,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22161,555580083,Finland,Birdlife IBA,2010,For storage only,28,Torronsuo,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22162,64497,Finland,RAPPAM,2004,For storage only,28,Tsarmitunturin erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22163,64499,Finland,RAPPAM,2004,For storage only,28,Tuntsan erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22164,2561,Finland,RAPPAM,2004,For storage only,28,Urho Kekkosen kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22165,1523,Finland,RAPPAM,2004,For storage only,28,Ulvinsalon luonnonpuisto (Ystävyyden puisto),Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22166,64499,Finland,Birdlife IBA,2010,For storage only,28,Tuntsan erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22167,555525478,Finland,Birdlife IBA,2010,For storage only,28,Tuntsan erämaa,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22168,101951,Finland,RAPPAM,2004,For storage only,28,Valkmusan kansallispuisto,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22169,101976,Finland,Birdlife IBA,2010,For storage only,28,Valtavaaran ja Pyhävaaran luonnonsuojelualue,State Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22170,555539074,Finland,Birdlife IBA,2010,For storage only,28,Valtavaara - Pyhävaara,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22171,555580235,Finland,Birdlife IBA,2010,For storage only,28,Valtavaara - Pyhävaara,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22172,7485,Finland,RAPPAM,2004,For storage only,28,Värriön luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22173,7478,Finland,RAPPAM,2004,For storage only,28,Vaskijärven luonnonpuisto,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22174,64504,Finland,RAPPAM,2004,For storage only,28,Vätsärin erämaa,Wilderness Area,"GD-PAME, version pre-2017",Not Reported,2018,English -22175,102016,Finland,Birdlife IBA,2010,For storage only,28,Veittiaavan soidensuojelualue,Protected Mire,"GD-PAME, version pre-2017",Not Reported,2018,English -22176,555539184,Finland,Birdlife IBA,2010,For storage only,28,VEITTIAAPA,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22177,555580008,Finland,Birdlife IBA,2010,For storage only,28,Veittiaapa,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22178,1395,Sweden,European Diploma,1988,For storage only,28,Bullerö,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22179,182768,Sweden,PANPARKS,2002,For storage only,28,Fulufjället,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22180,182768,Sweden,PANPARKS,2003,For storage only,28,Fulufjället,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22181,182768,Sweden,PANPARKS,2004,For storage only,28,Fulufjället,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22182,182768,Sweden,PANPARKS,2005,For storage only,28,Fulufjället,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22183,182768,Sweden,PANPARKS,2006,For storage only,28,Fulufjället,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22184,182768,Sweden,PANPARKS,2007,For storage only,28,Fulufjället,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22185,182768,Sweden,METT,2005,For storage only,28,Fulufjället,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22186,478642,Sweden,WHA Outlook Report,2014,For storage only,28,High Coast / Kvarken Archipelago,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -22187,10440,Sweden,Birdlife IBA,2007,For storage only,28,Holmöarna,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22188,555541528,Sweden,Birdlife IBA,2007,For storage only,28,Holmöarna,Special Protection Area (Birds Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22189,555543185,Sweden,Birdlife IBA,2007,For storage only,28,Holmö Islands,Baltic Sea Protected Area (HELCOM),"GD-PAME, version pre-2017",Not Reported,2018,English -22190,555579805,Sweden,Birdlife IBA,2007,For storage only,28,Holmöarna,Site of Community Importance (Habitats Directive),"GD-PAME, version pre-2017",Not Reported,2018,English -22191,902525,Sweden,GOBI Survey,2006,For storage only,28,Kristianstad Vattenrike,UNESCO-MAB Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -22192,124388,Sweden,WHA Outlook Report,2014,For storage only,28,Laponian Area,World Heritage Site,"GD-PAME, version pre-2017",Not Reported,2018,English -22193,95339,Sweden;Latvia,European Diploma,1967,For storage only,28,Lake Engure,"Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017",Not Reported,2018,English -22194,905,Spain;Sweden,European Diploma,1967,For storage only,28,Padjelanta,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22195,906,Sweden,European Diploma,1967,For storage only,28,Sarek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -22196,3995,Sweden,European Diploma,1988,For storage only,28,Store Mosse,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28037,15,Argentina,METT,2003,For storage only,28,Iguazú,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28038,300069,Argentina,METT,2003,For storage only,28,Los Morrillos,Wildlife Refuge,"GD-PAME, version pre-2017",Not Reported,2018,English -28039,166725,Argentina,METT,2003,For storage only,28,Urugua-í,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28040,555577540,Argentina,METT,2003,For storage only,28,El Nogalar de Los Toldos,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28041,555593969,Bosnia and Herzegovina,METT,2008,For storage only,28,Kozara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28042,555593970,Bosnia and Herzegovina,METT,2008,For storage only,28,Sutjeska,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28043,7996,Bhutan,METT,2003,For storage only,28,Royal Manas,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28044,20445,Bhutan,METT,2003,For storage only,28,Phrumsengla ,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28045,317281,Central African Republic,METT,2007,For storage only,28,Mbaéré-Bodingué,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28046,29067,Guinea;Côte d'Ivoire,METT,2003,For storage only,28,Mount Nimba,Strict Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28047,308624,Cameroon,METT,2007,For storage only,28,Boumba Bek,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28049,555512069,"Congo, the Democratic Republic of the",METT,2010,For storage only,28,Parc Marin des Mangroves,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28051,555543713,Costa Rica,METT,2006,For storage only,28,Corcovado,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28052,164,Costa Rica,METT,2006,For storage only,28,Corcovado,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28053,167,Costa Rica,METT,2006,For storage only,28,Tortuguero,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28054,165,Costa Rica,METT,2006,For storage only,28,Braulio Carrillo,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28055,2235,Costa Rica,METT,2006,For storage only,28,Cahuita,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28056,157,Costa Rica,METT,2006,For storage only,28,Carara,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28057,163,Costa Rica,METT,2006,For storage only,28,Chirripó,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28058,2250,Costa Rica,METT,2006,For storage only,28,Manuel Antonio,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28059,4646,Costa Rica,METT,2006,For storage only,28,Palo Verde,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28060,102367,Costa Rica,METT,2006,For storage only,28,Piedras Blancas,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28061,168,Costa Rica,METT,2006,For storage only,28,Rincón De La Vieja,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28062,171,Costa Rica,METT,2006,For storage only,28,Volcán Irazú,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28063,169,Costa Rica,METT,2006,For storage only,28,Volcán Poás,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28064,102334,Costa Rica,METT,2006,For storage only,28,Volcán Tenorio,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28065,166,Costa Rica,METT,2006,For storage only,28,Santa Rosa,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28066,303875,Gabon,METT,2010,For storage only,28,Lopé,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28067,313361,Equatorial Guinea,METT,0,For storage only,28,Rio Campo,Natural Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28068,8673,Indonesia,METT,2003,For storage only,28,Betung Kerihun,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28069,8673,Indonesia,METT,2006,For storage only,28,Betung Kerihun,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28070,1899,Indonesia,METT,2003,For storage only,28,Kayan Mentarang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28071,1899,Indonesia,METT,2006,For storage only,28,Kayan Mentarang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28072,317262,Indonesia,METT,2006,For storage only,28,Sebangau,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28073,317197,Indonesia,METT,2006,For storage only,28,Tesso Nilo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28074,2349,Indonesia,METT,2003,For storage only,28,Ujung Kulon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28075,2349,Indonesia,METT,2006,For storage only,28,Ujung Kulon,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28076,1500,Indonesia,METT,2003,For storage only,28,Lorentz,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28077,1500,Indonesia,METT,2006,For storage only,28,Lorentz,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28078,1252,Indonesia,METT,2003,For storage only,28,Bukit Barisan Selatan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28079,1252,Indonesia,METT,2006,For storage only,28,Bukit Barisan Selatan,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28080,62609,Indonesia,METT,2000,For storage only,28,Karakelang,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28081,62609,Indonesia,METT,2006,For storage only,28,Karakelang,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28082,62609,Indonesia,METT,2007,For storage only,28,Karakelang,Wildlife Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28083,1968,Indonesia,METT,2000,For storage only,28,Komodo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28084,317197,Indonesia,METT,2009,For storage only,28,Tesso Nilo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28085,691,India,METT,2003,For storage only,28,Dudhwa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28086,1808,India,METT,2003,For storage only,28,Ranthambhore,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28087,687,India,METT,2003,For storage only,28,Gir,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28088,694,India,METT,2001,For storage only,28,Pench,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28089,694,India,METT,2002,For storage only,28,Pench,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28090,694,India,METT,2003,For storage only,28,Pench,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28091,694,India,METT,2004,For storage only,28,Pench,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28092,166969,Mexico,METT,2008,For storage only,28,La Sepultura,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28094,5394,Mexico,METT,2006,For storage only,28,Cumbres de Monterrey,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28095,166969,Mexico,METT,2006,For storage only,28,La Sepultura,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28097,18062,Mexico,METT,2006,For storage only,28,El Triunfo,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28099,196501,"Macedonia, the former Yugoslav Republic of",METT,2007,For storage only,28,Pelister,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28100,4652,Mozambique,METT,2006,For storage only,28,Maputo,Special Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28101,799,Mozambique,METT,2004,For storage only,28,Banhine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28102,799,Mozambique,METT,2006,For storage only,28,Banhine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28103,799,Mozambique,METT,1999,For storage only,28,Banhine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28104,799,Mozambique,METT,2002,For storage only,28,Banhine,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28105,9816,Malaysia,METT,0,For storage only,28,Loagan Bunut,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28106,303317,Peru,METT,2003,For storage only,28,Amarakaeri,Reservas Comunales,"GD-PAME, version pre-2017",Not Reported,2018,English -28107,127825,Peru,METT,2003,For storage only,28,Bahuaja Sonene,Parques Nacionales,"GD-PAME, version pre-2017",Not Reported,2018,English -28108,20178,Peru,METT,2003,For storage only,28,Tabaconas Namballe,Santuarios Nacionales,"GD-PAME, version pre-2017",Not Reported,2018,English -28109,127825,Peru,METT,0,For storage only,28,Bahuaja Sonene,Parques Nacionales,"GD-PAME, version pre-2017",Not Reported,2018,English -28110,3370,Peru,METT,2005,For storage only,28,Tambopata,Reservas Nacionales,"GD-PAME, version pre-2017",Not Reported,2018,English -28111,12215,Peru,METT,2005,For storage only,28,Los Manglares de Tumbes,Santuarios Nacionales,"GD-PAME, version pre-2017",Not Reported,2018,English -28112,1709,Russian Federation,METT,2003,For storage only,28,Bashkirsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -28113,1709,Russian Federation,METT,2005,For storage only,28,Bashkirsky,Zapovednik,"GD-PAME, version pre-2017",Not Reported,2018,English -28114,941,Tunisia,METT,2013,For storage only,28,Ichkeul,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28115,555624063,"Tanzania, United Republic of",METT,2005,For storage only,28,Litipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28116,555624097,"Tanzania, United Republic of",METT,2005,For storage only,28,Rondo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28117,555624100,"Tanzania, United Republic of",METT,2005,For storage only,28,Chome,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28118,7561,"Tanzania, United Republic of;Kenya",METT,2005,For storage only,28,Gonja,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28119,36591,"Tanzania, United Republic of",METT,2005,For storage only,28,Duma,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28120,40001,"Tanzania, United Republic of",METT,2005,For storage only,28,Mpanga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28121,478265,"Tanzania, United Republic of",METT,2005,For storage only,28,Mamboto,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28122,478264,"Tanzania, United Republic of",METT,2005,For storage only,28,Mamboto,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28123,478263,"Tanzania, United Republic of",METT,2005,For storage only,28,Mamboto,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28124,303507,"Tanzania, United Republic of",METT,2005,For storage only,28,Mamboto,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28125,303560,"Tanzania, United Republic of",METT,2005,For storage only,28,Ruvu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28126,555556084,"Tanzania, United Republic of",METT,2005,For storage only,28,Sali,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28129,555623855,"Tanzania, United Republic of",METT,2005,For storage only,28,Mafwomero,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28140,555624063,"Tanzania, United Republic of",METT,0,For storage only,28,Litipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28157,303041,Viet Nam,METT,2005,For storage only,28,Nui Chua,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28159,313683,South Africa,METT,2011,For storage only,28,Bird Island,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28160,2347,Zambia,METT,2006,For storage only,28,Mosi-Oa-Tunya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28161,2347,Zambia,METT,2009,For storage only,28,Mosi-Oa-Tunya,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28162,1094,Zambia,METT,2009,For storage only,28,Lavushi Manda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28163,555624075,"Tanzania, United Republic of",METT,2011,For storage only,28,Kikale,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28164,555624074,"Tanzania, United Republic of",METT,2011,For storage only,28,Kikoka,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28165,555624063,"Tanzania, United Republic of",METT,2011,For storage only,28,Litipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28166,301484,"Tanzania, United Republic of",METT,2011,For storage only,28,Manga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28167,555623860,"Tanzania, United Republic of",METT,2011,For storage only,28,Mchungu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28169,555623854,"Tanzania, United Republic of",METT,2011,For storage only,28,Ngarama North,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28170,555623841,"Tanzania, United Republic of",METT,2011,For storage only,28,Pugu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28171,555624097,"Tanzania, United Republic of",METT,2011,For storage only,28,Rondo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28172,555623837,"Tanzania, United Republic of",METT,2011,For storage only,28,Ruvu South,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28173,555623830,"Tanzania, United Republic of",METT,2011,For storage only,28,Vikindu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28174,555624064,"Tanzania, United Republic of",METT,2012,For storage only,28,Lionja,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28175,303059,Viet Nam,METT,2013,For storage only,28,Pu Luong,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28176,1251,Indonesia,METT,2013,For storage only,28,Gunung Leuser,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28177,5061,Bhutan,METT,2013,For storage only,28,Jigme Dorji ,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28178,303039,Viet Nam,METT,2013,For storage only,28,Phong Dien,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28179,303066,Viet Nam,METT,2007,For storage only,28,Song Thanh,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28180,1899,Indonesia,METT,2010,For storage only,28,Kayan Mentarang,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28181,303888,Suriname,METT,2010,For storage only,28,Central Suriname,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28182,281,Suriname,METT,2010,For storage only,28,Coppename Monding,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28183,5224,Suriname,METT,2010,For storage only,28,Hertenrits,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28184,1059,Montenegro,METT,2009,For storage only,28,Biogradska Gora,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28185,16385,Montenegro,METT,2009,For storage only,28,Skadarsko jezero,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28186,61506,Russian Federation,METT,2011,For storage only,28,Yugyd Va,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28187,166,Costa Rica,METT,2010,For storage only,28,Santa Rosa,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28188,164,Costa Rica,METT,2010,For storage only,28,Corcovado,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28189,2235,Costa Rica,METT,2010,For storage only,28,Cahuita,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28190,11849,Costa Rica,METT,2010,For storage only,28,Isla Del Caño,Reserva Biológica,"GD-PAME, version pre-2017",Not Reported,2018,English -28191,170,Costa Rica,METT,2011,For storage only,28,Isla Del Coco,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28193,313494,Congo,METT,2009,For storage only,28,Lac Télé,Community Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28194,28556,Burkina Faso,METT,2010,For storage only,28,Sissili,classified forest,"GD-PAME, version pre-2017",Not Reported,2018,English -28196,33157,Malawi,METT,2012,For storage only,28,Mangochi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28197,33230,Malawi,METT,2012,For storage only,28,Neno Eastern Escarpment,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28198,33160,Malawi,METT,2012,For storage only,28,Tsamba,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28199,861,Romania,METT,2009,For storage only,28,Retezat,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -28200,30028,"Venezuela, Bolivarian Republic of",METT,0,For storage only,28,Delta del Orinoco,Biosphere Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28201,555593969,Bosnia and Herzegovina,METT,2010,For storage only,28,Kozara,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28202,1059,Montenegro,METT,2012,For storage only,28,Biogradska Gora,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28203,861,Romania,METT,2012,For storage only,28,Retezat,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -28204,81224,Romania,METT,2012,For storage only,28,Semenic - Cheile Carasului,National park,"GD-PAME, version pre-2017",Not Reported,2018,English -28205,16399,Serbia,METT,2009,For storage only,28,Sicevacka klisura,Nature Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28206,1407,Thailand,METT,2009,For storage only,28,Huai Kha Khaeng,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -28207,303575,"Tanzania, United Republic of",METT,2009,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28208,555624063,"Tanzania, United Republic of",METT,2009,For storage only,28,Litipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28209,555623854,"Tanzania, United Republic of",METT,2008,For storage only,28,Ngarama North,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28210,555624097,"Tanzania, United Republic of",METT,2009,For storage only,28,Rondo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28211,126,Colombia,METT,2010,For storage only,28,Los Flamencos,Fauna and Flora Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -28212,303552,Colombia,METT,2010,For storage only,28,Malpelo,Fauna and Flora Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -28213,555592943,Ecuador,METT,2009,For storage only,28,Arenillas,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28214,189,Ecuador,METT,2009,For storage only,28,Machalilla,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28215,555624063,"Tanzania, United Republic of",METT,2014,For storage only,28,Litipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28216,555623854,"Tanzania, United Republic of",METT,2014,For storage only,28,Ngarama North,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28217,20679,Armenia,METT,2014,For storage only,28,Shikahogh,State Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28218,759,Kenya,METT,2013,For storage only,28,Shimba Hills,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28219,2417,Kenya,METT,2014,For storage only,28,Boni,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28220,2591,Kenya,METT,2014,For storage only,28,Dodori,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28221,759,Kenya,METT,2014,For storage only,28,Shimba Hills,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28222,350016,"Tanzania, United Republic of",METT,2015,For storage only,28,Derema,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28223,301615,"Tanzania, United Republic of",METT,2015,For storage only,28,Katundu,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28224,301484,"Tanzania, United Republic of",METT,2015,For storage only,28,Manga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28225,301656,"Tanzania, United Republic of",METT,2015,For storage only,28,Masagati,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28226,351705,"Tanzania, United Republic of",METT,2015,For storage only,28,Mlinga,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28227,301469,"Tanzania, United Republic of",METT,2015,For storage only,28,Mtai,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28228,303529,"Tanzania, United Republic of",METT,2015,For storage only,28,Rupiage,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28229,303575,"Tanzania, United Republic of",METT,2015,For storage only,28,Chitoa,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28230,555624063,"Tanzania, United Republic of",METT,2015,For storage only,28,Litipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28231,301685,"Tanzania, United Republic of",METT,2015,For storage only,28,Malehi,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28232,303387,"Tanzania, United Republic of",METT,2015,For storage only,28,Mitundumbea,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28233,555623854,"Tanzania, United Republic of",METT,2015,For storage only,28,Ngarama North,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28234,301676,"Tanzania, United Republic of",METT,2015,For storage only,28,Pindiro,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28235,301673,"Tanzania, United Republic of",METT,2015,For storage only,28,Rungo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28236,6675,Dominican Republic,METT,2013,For storage only,28,Sierra de Bahoruco,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28238,478128,Dominican Republic,METT,2012,For storage only,28,Montaña La Humeadora,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28239,478128,Dominican Republic,METT,2014,For storage only,28,Montaña La Humeadora,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28244,184,Ecuador,METT,2013,For storage only,28,Cotacachi Cayapas,Ecological Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28245,20679,Armenia,METT,2009,For storage only,28,Shikahogh,State Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28246,220101,Jamaica,METT,2015,For storage only,28,Portland Bight,Protected Area,"GD-PAME, version pre-2017",Not Reported,2018,English -28247,127825,Peru,METT,2012,For storage only,28,Bahuaja Sonene,Parques Nacionales,"GD-PAME, version pre-2017",Not Reported,2018,English -28248,10110,Viet Nam,METT,2012,For storage only,28,Bach Ma,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28249,7877,Viet Nam,METT,2012,For storage only,28,Cat Ba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28250,302848,Viet Nam,METT,2012,For storage only,28,Na Hang,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28251,759,Kenya,METT,2007,For storage only,28,Shimba Hills,National Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28252,555624097,"Tanzania, United Republic of",METT,2007,For storage only,28,Rondo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28253,555624063,"Tanzania, United Republic of",METT,2007,For storage only,28,Litipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28254,555624063,"Tanzania, United Republic of",METT,2006,For storage only,28,Litipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28255,555624097,"Tanzania, United Republic of",METT,2006,For storage only,28,Rondo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28256,555624063,"Tanzania, United Republic of",METT,2013,For storage only,28,Litipo,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28257,555623854,"Tanzania, United Republic of",METT,2013,For storage only,28,Ngarama North,Forest Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28258,259,Peru,METT,2013,For storage only,28,Cerros de Amotape,Parques Nacionales,"GD-PAME, version pre-2017",Not Reported,2018,English -28259,20187,Peru,METT,2013,For storage only,28,Laquipampa,Refugio de Vida Sivestre,"GD-PAME, version pre-2017",Not Reported,2018,English -28260,555555622,Peru,METT,2013,For storage only,28,Vilacota Maure,Regional Conservation Area,"GD-PAME, version pre-2017",Not Reported,2018,English -28261,7877,Viet Nam,METT,2011,For storage only,28,Cat Ba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28262,1099,Zambia,METT,2013,For storage only,28,Kasanka,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28263,1094,Zambia,METT,2013,For storage only,28,Lavushi Manda,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28264,34314,Belize,METT,2013,For storage only,28,Laughing Bird Caye National Park,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28265,12241,Belize,METT,2013,For storage only,28,Bladden Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28266,61943,Cambodia,METT,2012,For storage only,28,Kulen Promtep,Wildlife Sanctuary,"GD-PAME, version pre-2017",Not Reported,2018,English -28267,165,Costa Rica,METT,2011,For storage only,28,Braulio Carrillo,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28268,2235,Costa Rica,METT,2011,For storage only,28,Cahuita,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28269,157,Costa Rica,METT,2011,For storage only,28,Carara,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28270,163,Costa Rica,METT,2011,For storage only,28,Chirripó,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28271,164,Costa Rica,METT,2011,For storage only,28,Corcovado,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28272,156,Costa Rica,METT,2011,For storage only,28,Hitoy Cerere,Reserva Biológica,"GD-PAME, version pre-2017",Not Reported,2018,English -28273,171,Costa Rica,METT,2011,For storage only,28,Volcán Irazú,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28274,2250,Costa Rica,METT,2011,For storage only,28,Manuel Antonio,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28275,4646,Costa Rica,METT,2011,For storage only,28,Palo Verde,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28276,102367,Costa Rica,METT,2011,For storage only,28,Piedras Blancas,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28277,169,Costa Rica,METT,2011,For storage only,28,Volcán Poás,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28278,168,Costa Rica,METT,2011,For storage only,28,Rincón De La Vieja,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28279,166,Costa Rica,METT,2011,For storage only,28,Santa Rosa,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28280,102334,Costa Rica,METT,2011,For storage only,28,Volcán Tenorio,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28281,19384,Costa Rica,METT,2011,For storage only,28,Tivives,Zona Protectora,"GD-PAME, version pre-2017",Not Reported,2018,English -28282,167,Costa Rica,METT,2011,For storage only,28,Tortuguero,Parque Nacional,"GD-PAME, version pre-2017",Not Reported,2018,English -28283,303873,Gabon,METT,2013,For storage only,28,Ivindo,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28284,72324,Gabon,METT,2013,For storage only,28,Minkebe,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28285,303878,Gabon,METT,2013,For storage only,28,Mwagne,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28286,97566,"Moldova, Republic of",METT,2013,For storage only,28,Codru,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28287,97570,"Moldova, Republic of",METT,2013,For storage only,28,Plaiul fagului,Scientific Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28288,68348,Russian Federation,METT,2012,For storage only,28,Kurshskaya Kosa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28289,11577,Russian Federation,METT,2012,For storage only,28,Sochinsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28290,313443,Cambodia,METT,2012,For storage only,28,Preah Vihear,Protected Forest,"GD-PAME, version pre-2017",Not Reported,2018,English -28291,12241,Belize,METT,2010,For storage only,28,Bladden Nature Reserve,Nature Reserve,"GD-PAME, version pre-2017",Not Reported,2018,English -28292,61588,Georgia,METT,2010,For storage only,28,Borjomi-Kharagauli,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28293,11577,Russian Federation,METT,2008,For storage only,28,Sochinsky,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28294,555594121,Viet Nam,METT,2008,For storage only,28,Bai Tu Long,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28295,7877,Viet Nam,METT,2008,For storage only,28,Cat Ba,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -28296,68348,Russian Federation,METT,2008,For storage only,28,Kurshskaya Kosa,National Park,"GD-PAME, version pre-2017",Not Reported,2018,English -15127,29681,Belize,Belize MEE,2006,For storage only,29,Actun Tunichil Muknal,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15128,29681,Belize,METT,2010,For storage only,29,Actun Tunichil Muknal,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15129,29681,Belize,METT,2013,For storage only,29,Actun Tunichil Muknal,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15130,301992,Belize,Belize MEE,2006,For storage only,29,Aguacaliente Wildlife Sancutary ,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15131,301992,Belize,Belize MEE,2009,For storage only,29,Aguacaliente Wildlife Sancutary ,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15132,342385,Belize,Belize MEE,2009,For storage only,29,Aguacaliente Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15133,61957,Belize,Belize MEE,2006,For storage only,29,Aguas Turbias National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15134,61957,Belize,Belize MEE,2009,For storage only,29,Aguas Turbias National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15135,301985,Belize,Belize MEE,2006,For storage only,29,Bacalar Chico National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15136,99651,Belize,Belize MEE,2009,For storage only,29,Bacalar Chico Marine Reserve,Bacalar Chico Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15137,301985,Belize,Belize MEE,2009,For storage only,29,Bacalar Chico National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15138,301985,Belize,METT,2013,For storage only,29,Bacalar Chico National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15139,301985,Belize,METT,2010,For storage only,29,Bacalar Chico National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15140,124383,Belize,WHA Outlook Report,2014,For storage only,29,Belize Barrier Reef Reserve System (World Heritage Site),World Heritage Site,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15141,301930,Belize,Belize MEE,2006,For storage only,29,Billy Barquedier National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15142,301930,Belize,Belize MEE,2009,For storage only,29,Billy Barquedier National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15143,12241,Belize,Belize MEE,2006,For storage only,29,Bladden Nature Reserve,Nature Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15144,12241,Belize,Belize MEE,2009,For storage only,29,Bladden Nature Reserve,Nature Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15145,12241,Belize,METT,2011,For storage only,29,Bladden Nature Reserve,Nature Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15146,342396,Belize,METT,2005,For storage only,29,Tide Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15147,342396,Belize,METT,2009,For storage only,29,Tide Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15148,342396,Belize,METT,2011,For storage only,29,Tide Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15149,342396,Belize,Belize MEE,2009,For storage only,29,Tide Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15150,301906,Belize,Belize MEE,2006,For storage only,29,Blue Hole Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15151,301906,Belize,Belize MEE,2009,For storage only,29,Blue Hole Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15152,301906,Belize,METT,2010,For storage only,29,Blue Hole Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15153,301906,Belize,METT,2013,For storage only,29,Blue Hole Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15155,37253,Belize,Belize MEE,2006,For storage only,29,Burdon Canal Nature Reserve,Nature Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15156,37253,Belize,Belize MEE,2009,For storage only,29,Burdon Canal Nature Reserve,Nature Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15157,313424,Belize,Belize MEE,2006,For storage only,29,Caye Caulker Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15158,313424,Belize,Belize MEE,2009,For storage only,29,Caye Caulker Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15160,301908,Belize,METT,2013,For storage only,29,Caye Caulker Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15161,301908,Belize,METT,2010,For storage only,29,Caye Caulker Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15162,12243,Belize,Belize MEE,2009,For storage only,29,Hol Chan Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15163,3306,Belize,Belize MEE,2006,For storage only,29,Chiquibul Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15164,20230,Belize,Belize MEE,2006,For storage only,29,Chiquibul National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15165,3306,Belize,Belize MEE,2009,For storage only,29,Chiquibul Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15166,20230,Belize,Belize MEE,2009,For storage only,29,Chiquibul National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15167,10579,Belize,Belize MEE,2006,For storage only,29,Cockscomb Basin Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15168,10579,Belize,Belize MEE,2009,For storage only,29,Cockscomb Basin Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15169,10579,Belize,METT,2010,For storage only,29,Cockscomb Basin Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15170,10579,Belize,METT,2013,For storage only,29,Cockscomb Basin Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15171,3314,Belize,METT,2010,For storage only,29,Colombia River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15172,3314,Belize,METT,2013,For storage only,29,Colombia River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15173,3314,Belize,Belize MEE,2006,For storage only,29,Colombia River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15174,3314,Belize,Belize MEE,2009,For storage only,29,Colombia River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15175,3314,Belize,METT,2009,For storage only,29,Colombia River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15176,3314,Belize,METT,2005,For storage only,29,Colombia River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15177,3314,Belize,METT,2011,For storage only,29,Colombia River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15178,19553,Belize,METT,2010,For storage only,29,Bermudian Landing Community Baboon Sanctuary Private Reserve ,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15179,19553,Belize,METT,2013,For storage only,29,Bermudian Landing Community Baboon Sanctuary Private Reserve ,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15180,301909,Belize,Belize MEE,2006,For storage only,29,Corozal Bay Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15181,301909,Belize,Belize MEE,2009,For storage only,29,Corozal Bay Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15182,166863,Belize,Belize MEE,2006,For storage only,29,Crooked Tree Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15183,166863,Belize,Belize MEE,2009,For storage only,29,Crooked Tree Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15184,166863,Belize,METT,2010,For storage only,29,Crooked Tree Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15185,166863,Belize,METT,2013,For storage only,29,Crooked Tree Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15186,3311,Belize,Belize MEE,2006,For storage only,29,Deep River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15187,3311,Belize,Belize MEE,2009,For storage only,29,Deep River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15188,34313,Belize,Belize MEE,2006,For storage only,29,Five Blues Lake National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15189,34313,Belize,Belize MEE,2009,For storage only,29,Five Blues Lake National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15190,12225,Belize,Belize MEE,2006,For storage only,29,Freshwater Creek Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15191,12225,Belize,Belize MEE,2009,For storage only,29,Freshwater Creek Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15192,301911,Belize,Belize MEE,2006,For storage only,29,Gales Point Wildlife Sanctuary ,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15193,301911,Belize,Belize MEE,2009,For storage only,29,Gales Point Wildlife Sanctuary ,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15194,220039,Belize,Belize MEE,2009,For storage only,29,Gladden Spit and Silk Cayes Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15195,220039,Belize,METT,2013,For storage only,29,Gladden Spit and Silk Cayes Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15196,220039,Belize,METT,2010,For storage only,29,Gladden Spit and Silk Cayes Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15197,99653,Belize,Belize MEE,2009,For storage only,29,Glover's Reef Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15198,301941,Belize,Belize MEE,2009,For storage only,29,"Gloden Stream Corridor Presever,Private Reserve",Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15199,301941,Belize,METT,2005,For storage only,29,"Gloden Stream Corridor Presever,Private Reserve",Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15200,301941,Belize,METT,2009,For storage only,29,"Gloden Stream Corridor Presever,Private Reserve",Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15201,301941,Belize,METT,2011,For storage only,29,"Gloden Stream Corridor Presever,Private Reserve",Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15202,313426,Belize,Belize MEE,2006,For storage only,29,Gra Gra Lagoon National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15203,313426,Belize,Belize MEE,2009,For storage only,29,Gra Gra Lagoon National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15204,3308,Belize,Belize MEE,2006,For storage only,29,Grants Work Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15205,3308,Belize,Belize MEE,2009,For storage only,29,Grants Work Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15206,2212,Belize,Belize MEE,2006,For storage only,29,Guanacaste National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15207,2212,Belize,Belize MEE,2009,For storage only,29,Guanacaste National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15208,2212,Belize,METT,2010,For storage only,29,Guanacaste National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15209,2212,Belize,METT,2013,For storage only,29,Guanacaste National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15210,2213,Belize;Honduras,Belize MEE,2009,For storage only,29,Halfmoon Caye,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15211,2213,Belize;Honduras,METT,2010,For storage only,29,Halfmoon Caye,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15212,2213,Belize;Honduras,METT,2013,For storage only,29,Halfmoon Caye,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15213,2213,Belize;Honduras,Belize MEE,2006,For storage only,29,Halfmoon Caye,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15214,12243,Belize,METT,2013,For storage only,29,Hol Chan Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15215,12243,Belize,MPA MEE,2003,For storage only,29,Hol Chan Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15216,12243,Belize,METT,2010,For storage only,29,Hol Chan Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15217,301912,Belize,Belize MEE,2006,For storage only,29,Honey Camp National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15218,301912,Belize,Belize MEE,2009,For storage only,29,Honey Camp National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15219,34314,Belize,Belize MEE,2006,For storage only,29,Laughing Bird Caye National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15220,34314,Belize,Belize MEE,2009,For storage only,29,Laughing Bird Caye National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15221,99651,Belize,METT,2013,For storage only,29,Bacalar Chico Marine Reserve,Bacalar Chico Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15222,34314,Belize,METT,2010,For storage only,29,Laughing Bird Caye National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15223,3313,Belize,Belize MEE,2006,For storage only,29,Machaca Creek Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15224,3313,Belize,Belize MEE,2009,For storage only,29,Machaca Creek Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15225,3313,Belize,METT,2010,For storage only,29,Machaca Creek Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15226,3313,Belize,METT,2013,For storage only,29,Machaca Creek Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15227,12226,Belize,Belize MEE,2006,For storage only,29,Manatee Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15228,12226,Belize,Belize MEE,2009,For storage only,29,Manatee Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15229,12227,Belize,Belize MEE,2006,For storage only,29,Mango Creek 1 Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15230,12227,Belize,Belize MEE,2009,For storage only,29,Mango Creek 1 Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15233,28850,Belize,Belize MEE,2006,For storage only,29,Maya Mountian Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15234,28850,Belize,Belize MEE,2009,For storage only,29,Maya Mountian Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15235,301934,Belize,Belize MEE,2006,For storage only,29,MayflowerBocawina National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15236,301934,Belize,Belize MEE,2009,For storage only,29,MayflowerBocawina National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15237,301914,Belize,Belize MEE,2006,For storage only,29,Monkey Bay Naitonal Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15238,301914,Belize,Belize MEE,2009,For storage only,29,Monkey Bay Naitonal Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15240,301915,Belize,Belize MEE,2006,For storage only,29,Monkey Caye Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15241,301915,Belize,Belize MEE,2009,For storage only,29,Monkey Caye Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15242,3305,Belize,Belize MEE,2006,For storage only,29,Mountain Pine Ridge Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15243,3305,Belize,Belize MEE,2009,For storage only,29,Mountain Pine Ridge Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15244,3305,Belize,METT,2010,For storage only,29,Mountain Pine Ridge Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15245,3305,Belize,METT,2013,For storage only,29,Mountain Pine Ridge Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15246,301932,Belize,Belize MEE,2006,For storage only,29,Nojkaaxmeen Eligio Panti,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15247,301932,Belize,Belize MEE,2009,For storage only,29,Nojkaaxmeen Eligio Panti,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15248,61958,Belize,Belize MEE,2006,For storage only,29,Paynes Creek National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15249,61958,Belize,Belize MEE,2009,For storage only,29,Paynes Creek National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15250,61958,Belize,METT,2010,For storage only,29,Paynes Creek National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15251,61958,Belize,METT,2013,For storage only,29,Paynes Creek National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15252,342393,Belize,Belize MEE,2009,For storage only,29,Peccary Hills National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15253,220100,Belize,METT,2010,For storage only,29,Port Honduras Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15254,220100,Belize,METT,2013,For storage only,29,Port Honduras Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15255,220100,Belize,Belize MEE,2009,For storage only,29,Port Honduras Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15256,220100,Belize,METT,2005,For storage only,29,Port Honduras Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15257,220100,Belize,METT,2009,For storage only,29,Port Honduras Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15258,220100,Belize,METT,2011,For storage only,29,Port Honduras Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15259,61959,Belize,Belize MEE,2006,For storage only,29,Rio Blanco National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15260,61959,Belize,Belize MEE,2009,For storage only,29,Rio Blanco National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15261,20224,Belize,Belize MEE,2009,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15262,20224,Belize,METT,2010,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15263,20224,Belize,METT,2013,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15264,20224,Belize,PIP Site Consolidation,1993,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15265,20224,Belize,PIP Site Consolidation,1996,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15266,20224,Belize,PIP Site Consolidation,1997,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15267,20224,Belize,PIP Site Consolidation,1998,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15268,20224,Belize,PIP Site Consolidation,1999,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15269,20224,Belize,PIP Site Consolidation,2001,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15270,20224,Belize,PIP Site Consolidation,2000,For storage only,29,Rio Bravo Conservation & Management,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15271,342394,Belize,Belize MEE,2009,For storage only,29,Runaway Creek Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15272,99656,Belize,Belize MEE,2009,For storage only,29,Sapodilla Cayes Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15273,99656,Belize,METT,2013,For storage only,29,Sapodilla Cayes Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15274,99656,Belize,METT,2010,For storage only,29,Sapodilla Cayes Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15275,61956,Belize,Belize MEE,2009,For storage only,29,Sarstoon-Temash National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15276,902744,Belize,METT,2010,For storage only,29,Sarstoon-Temash National Park,"Ramsar Site, Wetland of International Importance",Belize Management Effectiveness Evaluation,Forest Department,2018,English -15277,902744,Belize,METT,2013,For storage only,29,Sarstoon-Temash National Park,"Ramsar Site, Wetland of International Importance",Belize Management Effectiveness Evaluation,Forest Department,2018,English -15278,61956,Belize,Belize MEE,2006,For storage only,29,Sarstoon-Temash National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15279,20226,Belize,Belize MEE,2009,For storage only,29,Shipstern Nature Reserve Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15280,20226,Belize,METT,2013,For storage only,29,Shipstern Nature Reserve Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15281,20226,Belize,METT,0,For storage only,29,Shipstern Nature Reserve Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15282,3307,Belize,Belize MEE,2006,For storage only,29,Sibun Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15283,3307,Belize,Belize MEE,2009,For storage only,29,Sibun Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15284,12229,Belize,Belize MEE,2006,For storage only,29,Sittee River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15285,12229,Belize,Belize MEE,2009,For storage only,29,Sittee River Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15286,99652,Belize,Belize MEE,2009,For storage only,29,South Water Caye Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15287,99652,Belize,METT,2013,For storage only,29,South Water Caye Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15288,99652,Belize,METT,2010,For storage only,29,South Water Caye Marine Reserve,Marine Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15289,313429,Belize,Belize MEE,2006,For storage only,29,Spanish Creek Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15290,313429,Belize,Belize MEE,2009,For storage only,29,Spanish Creek Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15291,20225,Belize,Belize MEE,2006,For storage only,29,St. Herman's Blue National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15292,20225,Belize,Belize MEE,2009,For storage only,29,St. Herman's Blue National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15293,20225,Belize,METT,2010,For storage only,29,St. Herman's Blue National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15294,20225,Belize,METT,2013,For storage only,29,St. Herman's Blue National Park,National Park,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15295,313431,Belize,Belize MEE,2006,For storage only,29,Swallow Caye Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15296,313431,Belize,Belize MEE,2009,For storage only,29,Swallow Caye Wildlife Sanctuary,Wildlife Sanctuary,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15297,3312,Belize,Belize MEE,2006,For storage only,29,Swasey-Balden Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15298,3312,Belize,Belize MEE,2009,For storage only,29,Swasey-Balden Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15299,301916,Belize,Belize MEE,2006,For storage only,29,Tapir Mountian Nature Reserve,Nature Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15300,301916,Belize,Belize MEE,2009,For storage only,29,Tapir Mountian Nature Reserve,Nature Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15301,301916,Belize,METT,2010,For storage only,29,Tapir Mountian Nature Reserve,Nature Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15302,301916,Belize,METT,2013,For storage only,29,Tapir Mountian Nature Reserve,Nature Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15303,313433,Belize,Belize MEE,2006,For storage only,29,Thousand Foot Falls Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15304,313433,Belize,Belize MEE,2009,For storage only,29,Thousand Foot Falls Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15305,342396,Belize,METT,2010,For storage only,29,Tide Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15306,342396,Belize,METT,2013,For storage only,29,Tide Private Reserve,Private Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15307,116297,Belize,Belize MEE,2006,For storage only,29,Vaca Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15308,116297,Belize,Belize MEE,2009,For storage only,29,Vaca Forest Reserve,Forest Reserve,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15309,301918,Belize,Belize MEE,2006,For storage only,29,Victoria Peak Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15310,301918,Belize,Belize MEE,2009,For storage only,29,Victoria Peak Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15311,301918,Belize,METT,2010,For storage only,29,Victoria Peak Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -15312,301918,Belize,METT,2013,For storage only,29,Victoria Peak Natural Monument,Natural Monument,Belize Management Effectiveness Evaluation,Forest Department,2018,English -20279,690,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Corbett,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20280,690,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Corbett,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20281,690,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Corbett,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20282,691,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Dudhwa,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20283,691,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Dudhwa,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20284,691,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Dudhwa,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20285,19701,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Melghat,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20286,19701,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Melghat,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20287,19701,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Melghat,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20288,1829,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Darrah,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20289,694,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Pench,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20290,694,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Pench,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20291,694,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Pench,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20292,1808,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Ranthambhore,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20293,1808,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Ranthambhore,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20294,1808,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Ranthambhore,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20297,10255,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Sariska,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20298,10255,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Sariska,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20299,10255,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Sariska,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20300,698,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Tadoba,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20301,698,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Tadoba,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20302,698,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Tadoba,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20303,699,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Bandhavgarh,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20304,699,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Bandhavgarh,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20305,699,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Bandhavgarh,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20306,686,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Kanha,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20307,686,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Kanha,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20308,686,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Kanha,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20309,10244,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Panna,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20310,10244,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Panna,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20311,10244,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Panna,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20312,1805,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Pench,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20313,1805,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Pench,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20314,1805,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Pench,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20315,9290,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Sanjay Dubri,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20316,9290,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Sanjay Dubri,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20317,9291,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Satpura,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20318,9291,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Satpura,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20319,1800,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Achanakmar,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20320,1800,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Achanakmar,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20321,9292,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Indravati,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20322,9292,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Indravati,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20323,9292,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Indravati,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20324,1788,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Kawal,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20325,1777,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Rajiv Gandhi (Nagarjunasagar-Srisailam),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20326,1777,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Rajiv Gandhi (Nagarjunasagar-Srisailam),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20327,1777,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Rajiv Gandhi (Nagarjunasagar-Srisailam),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20328,1835,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Palamau,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20329,1835,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Palamau,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20330,1835,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Palamau,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20331,1793,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Satkosia Gorge,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20332,1793,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Satkosia Gorge,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20333,1778,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Simlipal,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20334,1778,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Simlipal,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20335,1778,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Simlipal,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20336,10251,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Udanti Wild Buffalo,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20337,10251,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Udanti Wild Buffalo,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20338,26186,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Valmiki,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20339,26186,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Valmiki,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20340,26186,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Valmiki,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20341,19707,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Indira Gandhi (Annamalai),National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20342,19707,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Indira Gandhi (Annamalai),National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20343,4127,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Bandipur,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20344,4127,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Bandipur,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20345,4127,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Bandipur,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20346,4126,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Bhadra,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20347,4126,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Bhadra,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20348,4126,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Bhadra,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20349,4600,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Biligiri Rangaswami Temple,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20350,1779,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Dandeli,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20351,1779,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Dandeli,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20352,1826,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Kalakad,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20353,1826,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Kalakad,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20354,1826,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Kalakad,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20355,26383,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Mudumalai,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20356,26383,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Mudumalai,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20357,4128,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Rajiv Gandhi (Nagarhole),National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20358,4128,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Rajiv Gandhi (Nagarhole),National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20359,4128,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Rajiv Gandhi (Nagarhole),National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20360,1817,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Parambikulam,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20361,1817,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Parambikulam,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20362,19715,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Periyar,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20363,19715,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Periyar,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20364,19715,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Periyar,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20366,62663,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Buxa,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20367,62663,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Buxa,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20368,62663,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Buxa,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20369,1804,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Dampa,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20370,1804,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Dampa,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20371,1804,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Dampa,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20372,692,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Kaziranga,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20373,692,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Kaziranga,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20374,26164,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Manas,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20375,26164,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Manas,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20376,26164,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Manas,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20377,4527,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Namdapha,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20378,4527,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Namdapha,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20379,4527,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Namdapha,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20380,308536,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Nameri,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20381,308536,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Nameri,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20382,308536,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Nameri,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20383,4530,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Pakke (Pakhui),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20384,4530,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Pakke (Pakhui),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20385,4530,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Pakke (Pakhui),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20386,9960,India,First Cycle of MEE Tiger Reserve,2006,For storage only,30,Sundarban,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20387,9960,India,Second Cycle of MEE Tiger Reserve,2010,For storage only,30,Sundarban,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20388,9960,India,Third Cycle of MEE Tiger Reserve,2014,For storage only,30,Sundarban,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20389,26405,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Govind,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20390,26415,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Sohelwa,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20391,4559,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Kishtwar,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20392,9211,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Great Himalayan,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20393,17547,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Sultanpur,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20394,1796,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,National Chambal,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20395,1779,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Dandeli,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20396,1774,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Papikonda,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20397,308530,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Marine (Tamil Nadu),National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20398,26383,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Mudumalai,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20399,1812,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Wayanad,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20400,10092,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Mahatma Gandhi Marine,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20401,4633,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Mahananda,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20402,1847,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Jaldapara,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20403,4537,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Mahuadanr,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20404,10251,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Udanti Wild Buffalo,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20405,9959,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Sunabeda,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20406,1834,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Bhitarkanika,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20407,10241,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Sanjay Gandhi (Borivili),National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20408,1838,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Nagzira,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20409,9249,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Palpur,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20410,694,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Pench,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20411,9234,Benin;India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Barda,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20412,1862,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Keoladeo Ghana,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20413,9208,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Pabitora,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20414,62670,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Sessa Orchid,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20415,4609,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Keibul-Lamjao,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20416,689,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Khangchendzonga,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20417,14176,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Sepahijala,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20418,9220,India,MEE of National Parks and Wildlife Sanctuaries,2007,For storage only,30,Nongkhyllem,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20419,12813,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Rajaji,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20420,17545,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Kalesar,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20422,12137,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Changthang,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20423,62848,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Gundla Brahmeswaram,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20424,13220,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Interview Island,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20425,308533,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Mukurthi,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20426,308570,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Mollem,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20427,4129,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Mookambika,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20428,700,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Eravikulam,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20430,1806,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Semarsot,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20431,4538,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Dalma,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20432,4544,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Kaimur,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20433,14180,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Singalila,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20434,308541,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Gorumara,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20435,4553,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Gulf of Kutch,Marine National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20436,17386,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Desert,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20437,1801,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Ratapani,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20438,1802,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Kumbhalgarh,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20439,1857,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Wild Ass,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20440,19699,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Bhimashankar,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20441,143000,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Barsey Rhododendron,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20442,26341,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Murlen,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20443,26343,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Intanki,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20444,308535,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Orang (Rajiv Gandhi),National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20445,19710,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Gumti,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20446,62666,India,MEE of National Parks and Wildlife Sanctuaries,2009,For storage only,30,Eagle Nest,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20447,4618,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Abohar,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20448,13969,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Balphakram,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20449,1821,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Barnawapara,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20450,4600,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Biligiri Rangaswami Temple,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20451,1861,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Chandaka Dampara,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20452,19700,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Chandoli,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20453,19717,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Chaprala,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20455,308537,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Dibru-Saikhowa,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20456,1810,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Sanjay,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20457,1832,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Hazaribagh,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20458,4558,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Hemis,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20460,308575,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Kanwarjheel,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20461,308553,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Kibber,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20462,1813,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Nanda Devi,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20463,9230,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Neora Valley,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20465,26338,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Ngengpui,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20466,1784,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Noradehi,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20468,12420,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Pin Valley,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20470,13662,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Shendurney,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20471,9241,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Shoolpaneswar (Dhumkhal),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20472,4623,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Sitamata,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20473,26128,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Sri Venkateswara,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20474,14175,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Trishna,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20475,702,India,MEE of National Parks and Wildlife Sanctuaries,2010,For storage only,30,Velavadar (Blackbuck),National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20476,4556,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Dachigam,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20478,9244,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Rupi Bhaba,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20479,1785,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Kedarnath,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20480,17430,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Bhindawas,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20481,1846,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Mount Abu,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20482,12414,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Sohagibarwa,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20483,28385,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Gangotri,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20484,19693,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Kudremukh,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20485,9216,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Silent Valley,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20486,1781,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Coringa,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20487,1773,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Kolleru,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20488,10239,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Peppara,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20489,1859,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Point Calimere,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20490,19708,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Srivilliputhur Grizzled Squirrel,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20492,4632,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Chapramari,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20493,9252,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Hadgarh,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20494,1787,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Chilka (Nalaban),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20495,19678,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Nakti Dam,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20496,142995,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Vikramshila Gangetic Dolphin,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20497,4547,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Koderma,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20498,10258,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Fambong Lho,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20499,4607,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Great Indian Bustard,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20500,4604,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Karnala,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20501,9239,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Purna,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20502,4550,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Bondla,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20503,308570,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Mollem,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20504,9246,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Karera,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20505,687,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Gir,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20506,10242,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Kanger Valley,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20507,12412,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Mouling,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20508,14174,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Nokrek,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20509,26339,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Phawngpui Blue Mountain,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20512,4528,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,D' Ering Memorial (Lali),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20513,308560,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Hollongapar Gibbon,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20514,10252,India,MEE of National Parks and Wildlife Sanctuaries,2013,For storage only,30,Fakim,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20516,19687,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Chhilchila,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20517,4586,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Manali,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20518,12134,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Gulmarg,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20519,9962,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Harike Lake,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20520,308592,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Okhla,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20521,308596,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Sur Sarovar,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20522,19712,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Binsar,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20523,9260,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Mount Harriett,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20524,308542,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Rani Jhansi,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20525,1830,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Manjira Crocodile,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20526,1849,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Cotigaon,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20527,4592,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Bannerghatta,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20528,62665,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Gudavi Bird,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20529,4602,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Idukki,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20530,9255,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Pulicat Lake Bird,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20531,4539,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Gautam Budha,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20532,1848,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Badalkhol,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20533,1843,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Tamor Pingla,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20535,19704,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Lakhari Valley,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20536,9253,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Kothagarh,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20537,4628,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Lothian Island,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20538,9231,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Ramnabagan,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20540,4552,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Bansda,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20541,9235,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Khijadia,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20542,1868,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Nal Sarovar,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20543,10249,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Phen,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20544,9248,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Ken Gharial,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20545,19724,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Phansad,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20546,1864,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Radhanagari,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20547,62669,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Kane,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20548,19675,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Deepor Beel,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20550,19702,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Yangoupokpi-Lokchao,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20551,4610,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Siju,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20553,19706,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Maenam,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20554,19711,India,MEE of National Parks and Wildlife Sanctuaries,2016,For storage only,30,Roa,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20556,12416,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Pong Dam Lake,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20557,4579,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Shimla Water Catchment,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20558,12136,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Karakoram (Nubra Shyok),Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20560,1852,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Chandraprabha,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20561,12257,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Hastinapur,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20562,12256,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Askot Musk Deer,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20563,10093,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Lohabarrack,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20564,308538,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Mahaveer Harina Vanastha,National Park,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20565,1791,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Pakhal,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20566,308563,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Sri Penusila Narasimha,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20568,19694,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Cauvery,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20574,308551,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Palkot,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20576,1866,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Debrigarh,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20578,4635,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Ballavpur,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20581,33549,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Balaram Ambaji,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20582,9247,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Ghatigaon,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20583,1803,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Bagdara,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20585,1827,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Tansa,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20586,9225,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Bhensrodgarh,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20587,62668,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Kamlang,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20588,26179,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Barail,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20590,4535,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Sonai-Rupai,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20593,4612,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Puliebadze,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20594,13971,India,MEE of National Parks and Wildlife Sanctuaries,2017,For storage only,30,Kyongnosla Alpine,Sanctuary,MEE of India's protected areas,"Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,English -20668,4247,Palau,National PAME Assessment,2014,For storage only,31,Ngerukewid Islands,Wildlife Preserve,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20669,18256,Palau,National PAME Assessment,2014,For storage only,31,Ngerumekoal,Spawning Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20670,220005,Palau,National PAME Assessment,2014,For storage only,31,Ngeruangel,Reserve,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20671,313499,Palau,National PAME Assessment,2014,For storage only,31,Ngardok,Nature Reserve,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20672,220009,Palau,National PAME Assessment,2014,For storage only,31,Ebiil,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20673,555583370,Palau,National PAME Assessment,2014,For storage only,31,Teluleu,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20674,555585897,Palau,National PAME Assessment,2014,For storage only,31,Helen Reef,Reserve,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20675,555583339,Palau,National PAME Assessment,2014,For storage only,31,Mesekelat,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20676,555583346,Palau,National PAME Assessment,2014,For storage only,31,Ngelukes,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20677,555583348,Palau,National PAME Assessment,2014,For storage only,31,Ngerchelchuus,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20678,555583347,Palau,National PAME Assessment,2014,For storage only,31,Ngemai,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20679,555583156,Palau,National PAME Assessment,2014,For storage only,31,Ngermeskang,Bird Sanctuary,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20680,555583351,Palau,National PAME Assessment,2014,For storage only,31,Ngerkal Lake,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20681,555583375,Palau,National PAME Assessment,2014,For storage only,31,Ungelell,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20682,555583335,Palau,National PAME Assessment,2014,For storage only,31,Lleyakl Beluu/Omolei,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20683,220010,Palau,National PAME Assessment,2014,For storage only,31,Ngermasech,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20684,555584356,Palau,National PAME Assessment,2014,For storage only,31,Ngaraard Mangrove,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20685,555583317,Palau,National PAME Assessment,2014,For storage only,31,Diong Fra Ngerchokl,Conservation Area,Palau Management Effectiveness Evaluation,"Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,English -20686,1975,Slovakia,CCPAMET,2017,For storage only,32,Tatransky,National Park; third level of protection, third level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20687,173009,Slovakia,CCPAMET,2017,For storage only,32,Tatransky-OP,Buffer Zone of the National Park; second level/grade of protection, second level/grade of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20688,4375,Slovakia,CCPAMET,2017,For storage only,32,Mala Fatra,National Park; third level of protection, third level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20689,173002,Slovakia,CCPAMET,2017,For storage only,32,Mala Fatra-OP,Buffer Zone of the National Park; second level/grade of protection, second level/grade of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20690,4376,Slovakia,CCPAMET,2017,For storage only,32,Slovensky Kras,National Park; third level of protection, third level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20691,173007,Slovakia,CCPAMET,2017,For storage only,32,Slovensky Kras-OP,Buffer Zone of the National Park; second level/grade of protection, second level/grade of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20692,4377,Slovakia,CCPAMET,0,For storage only,32,Slovensky raj,National Park; third level of protection, third level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20693,173008,Slovakia,CCPAMET,0,For storage only,32,Slovensky Raj-OP,Buffer Zone of the National Park; second level/grade of protection, second level/grade of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20694,4378,Slovakia,CCPAMET,2017,For storage only,32,Velka Fatra,National Park; third level of protection, third level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20695,173010,Slovakia,CCPAMET,2017,For storage only,32,Velka Fatra-OP,Buffer Zone of the National Park; second level/grade of protection, second level/grade of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20696,4379,Slovakia,CCPAMET,2017,For storage only,32,Vihorlat,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20697,11811,Slovakia,CCPAMET,2017,For storage only,32,Ponitrie,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20698,11812,Slovakia,CCPAMET,2017,For storage only,32,Kysuce,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20699,12152,Slovakia,CCPAMET,2017,For storage only,32,Nizke Tatry,National Park; third level of protection, third level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20700,173004,Slovakia,CCPAMET,2017,For storage only,32,Nizke Tatry-OP,Buffer Zone of the National Park; second level/grade of protection, second level/grade of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20701,12155,Slovakia,CCPAMET,2017,For storage only,32,Male Karpaty,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20702,12156,Slovakia,CCPAMET,2017,For storage only,32,Muranska planina,National Park; third level of protection, third level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20703,173003,Slovakia,CCPAMET,2017,For storage only,32,Muranska Planina-OP,Buffer Zone of the National Park; second level/grade of protection, second level/grade of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20704,12157,Slovakia,CCPAMET,2017,For storage only,32,Vychodne Karpaty,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20705,12158,Slovakia,CCPAMET,2017,For storage only,32,Stiavnicke vrchy,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20706,12159,Slovakia,CCPAMET,2017,For storage only,32,Biele Karpaty,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20707,12160,Slovakia,CCPAMET,2017,For storage only,32,Horna Orava,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20708,12161,Slovakia,CCPAMET,2017,For storage only,32,Polana,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20709,14146,Slovakia,CCPAMET,2017,For storage only,32,Cerova vrchovina,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20710,19034,Slovakia,CCPAMET,0,For storage only,32,Zahorie,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20711,30723,Slovakia,CCPAMET,2017,For storage only,32,Latorica,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20712,93298,Slovakia,CCPAMET,2017,For storage only,32,Strazovske vrchy,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20713,148026,Slovakia,CCPAMET,2017,For storage only,32,Poloniny,National Park; third level of protection, third level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20714,173006,Slovakia,CCPAMET,2017,For storage only,32,Poloniny-OP,Buffer Zone of the National Park; second level/grade of protection, second level/grade of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20715,172823,Slovakia,CCPAMET,2011,For storage only,32,Dunajske luhy,Protected Landscape Area; second level of protection, second level of protection,Slovakia Management Effectiveness Evaluation,0,2018 -20716,1850,Mexico,RAPPAM,2005,For storage only,33,Sian Ka'an,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20717,1850,Mexico,How is your MPA doing?,2016,For storage only,33,Sian Ka'an,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20718,306808,Mexico,How is your MPA doing?,2014,For storage only,33,Isla San Pedro Mártir,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20719,306808,Mexico,Ecological Evaluation Score Cards,2007,For storage only,33,Isla San Pedro Mártir,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20720,306808,Mexico,Ecological Evaluation Score Cards,2010,For storage only,33,Isla San Pedro Mártir,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20721,108125,Mexico,How is your MPA doing?,2008,For storage only,33,Zona marina del Archipiélago de Espíritu Santo,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20722,108125,Mexico,Ecological Evaluation Score Cards,2010,For storage only,33,Zona marina del Archipiélago de Espíritu Santo,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20723,108125,Mexico,Ecological Evaluation Score Cards,2014,For storage only,33,Zona marina del Archipiélago de Espíritu Santo,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20724,68918,Mexico,Ecological Evaluation Score Cards,2008,For storage only,33,Whale Sanctuary of El Vizcaino,World Heritage Site,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20725,68918,Mexico,Ecological Evaluation Score Cards,2012,For storage only,33,Whale Sanctuary of El Vizcaino,World Heritage Site,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20726,68918,Mexico,How is your MPA doing?,2016,For storage only,33,Whale Sanctuary of El Vizcaino,World Heritage Site,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20727,342345,Mexico,Ecological Evaluation Score Cards,2008,For storage only,33,Isla Guadalupe,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20728,342345,Mexico,Ecological Evaluation Score Cards,2012,For storage only,33,Isla Guadalupe,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20729,101409,Mexico,Ecological Evaluation Score Cards,2008,For storage only,33,Alto Golfo de California y Delta del Río Colorado,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20730,101409,Mexico,Ecological Evaluation Score Cards,2013,For storage only,33,Alto Golfo de California y Delta del Río Colorado,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20731,306779,Mexico,Ecological Evaluation Score Cards,2008,For storage only,33,Cabo Pulmo,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20732,306779,Mexico,Ecological Evaluation Score Cards,2014,For storage only,33,Cabo Pulmo,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20733,306779,Mexico,How is your MPA doing?,2016,For storage only,33,Cabo Pulmo,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20734,306777,Mexico,Ecological Evaluation Score Cards,2012,For storage only,33,Bahía de Loreto,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20735,2583,Mexico,Ecological Evaluation Score Cards,2012,For storage only,33,Isla Isabel,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20736,2583,Mexico,METT,2017,For storage only,33,Isla Isabel,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20737,107706,Mexico,Ecological Evaluation Score Cards,2012,For storage only,33,Islas Marietas,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20738,107706,Mexico,METT,2017,For storage only,33,Islas Marietas,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20739,107537,Mexico,Ecological Evaluation Score Cards,2012,For storage only,33,"Zona marina Bahía de los Ángeles, canales de Ballenas y de Salsipuedes",Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20740,107537,Mexico,How is your MPA doing?,2016,For storage only,33,"Zona marina Bahía de los Ángeles, canales de Ballenas y de Salsipuedes",Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20741,555587174,Mexico,Ecological Evaluation Score Cards,2012,For storage only,33,Marismas Nacionales Nayarit,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20742,555587174,Mexico,How is your MPA doing?,2016,For storage only,33,Marismas Nacionales Nayarit,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20743,555587174,Mexico,METT,2017,For storage only,33,Marismas Nacionales Nayarit,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20744,103168,Mexico,RAPPAM,2013,For storage only,33,Yum Balam,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20745,103168,Mexico,METT,2014,For storage only,33,Yum Balam,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20746,555587171,Mexico,Ecological Evaluation Score Cards,2014,For storage only,33,Balandra,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20747,101457,Mexico,METT,2014,For storage only,33,Cañón de Santa Elena,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20748,306810,Mexico,Ecological Evaluation Score Cards,2014,For storage only,33,Islas del Golfo de California,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20749,101431,Mexico,METT,2014,For storage only,33,Maderas del Carmen,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20750,306850,Mexico,METT,2014,For storage only,33,Sistema Arrecifal Veracruzano,National Park,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20751,107806,Mexico,METT,2014,For storage only,33,Ocampo,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20752,167051,Mexico,METT,2014,For storage only,33,Los Tuxtlas,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20753,108073,Mexico,METT,2014,For storage only,33,Sistema Arrecifal Lobos-Tuxpan,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20754,107621,Mexico,METT,2014,For storage only,33,C.A.D.N.R. 004 Don Martín,Natural Resources Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20755,306787,Mexico,METT,2014,For storage only,33,Z.P.F.V. la Cuenca Hidrográfica del Río Necaxa,Natural Resources Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20756,101416,Mexico,METT,2014,For storage only,33,Sierra del Abra Tanchipa,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20757,103166,Mexico,METT,2014,For storage only,33,Sierra Gorda,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20758,306820,Mexico,Ecological Evaluation Score Cards,2015,For storage only,33,Meseta de Cacaxtla,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20759,306820,Mexico,How is your MPA doing?,2016,For storage only,33,Meseta de Cacaxtla,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20760,306820,Mexico,METT,2017,For storage only,33,Meseta de Cacaxtla,Flora and Fauna Protection Area,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20761,61401,Mexico,How is your MPA doing?,2016,For storage only,33,Región de Calakmul,UNESCO-MAB Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20762,306809,Mexico,METT,2017,For storage only,33,Islas Marías,Biosphere Reserve,Mexico Management Effectiveness Evaluation,Comision Nacional de Areas Naturales Protegidas,2018,English -20763,352239,Madagascar,SAPM,2016,For storage only,34,Ambatotsirongorongo,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20764,5037,Madagascar,IEG,2011,For storage only,34,Ambatovaky,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20765,555548868,Madagascar,SMART,2016,For storage only,34,Ambodivahibe,Locally Managed Marine Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20766,5031,Madagascar,SAPM,2015,For storage only,34,Bemarivo,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20767,6932,Madagascar,IEG,2016,For storage only,34,Ambohitantely,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20768,352252,Madagascar,SAPM,2016,For storage only,34,Montagne des Français,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20769,352253,Madagascar,SMART,2016,For storage only,34,Onilahy,Proposed Protected Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20770,352240,Madagascar,METT,2016,For storage only,34,Analalava,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20771,5021,Madagascar,IEG,2016,For storage only,34,Analamazoatra,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20772,5022,Madagascar,IEG,2003,For storage only,34,Analamerana,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20773,2303,Madagascar,IEG,2003,For storage only,34,Andohahela,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20774,5040,Madagascar,IEG,2003,For storage only,34,Andranomena,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20775,352241,Madagascar,SAPM,2016,For storage only,34,Andreba,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20776,2308,Madagascar,IEG,2003,For storage only,34,Andringitra,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20778,5023,Madagascar,IEG,2016,For storage only,34,Anjanaharibe-Sud,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20779,1299,Madagascar,IEG,2016,For storage only,34,Ankarafantsika,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20780,5024,Madagascar,IEG,2003,For storage only,34,Ankarana,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20781,555548848,Madagascar,SAPM,2016,For storage only,34,Ankarea,Locally Managed Marine Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20782,352243,Madagascar,PAMETT,2016,For storage only,34,Ankodida,Proposed Protected Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20783,303698,Madagascar,IEG,2011,For storage only,34,Baie de Baly,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20784,555549451,Madagascar,SAPM,2015,For storage only,34,Behara-Tranomaro,Proposed Protected Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20785,555549153,Madagascar,IEG,2016,For storage only,34,Belo-sur-mer,Locally Managed Marine Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20786,555624680,Madagascar,METT,2016,For storage only,34,Complexe des Zones Humides de Bemanevika,"Ramsar Site, Wetland of International Importance",Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20787,2302,Madagascar,IEG,2016,For storage only,34,Tsingy de Bemaraha,Strict Nature Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20788,26653,Madagascar,IEG,2016,For storage only,34,Tsingy de Bemaraha Strict Nature Reserve,World Heritage Site,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20790,2310,Madagascar,IEG,2016,For storage only,34,Betampona,Strict Nature Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20791,10634,Madagascar,IEG,2003,For storage only,34,Bezaha Mahafaly,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20792,5032,Madagascar,SAPM,2015,For storage only,34,Bora,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20793,5041,Madagascar,IEG,2003,For storage only,34,Cap Sainte-Marie,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20794,352242,Madagascar,SAPM,2015,For storage only,34,Anjozorobe,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20795,555549464,Madagascar,METT,2016,For storage only,34,Corridor Marojejy Tsaratanana,Proposed Protected Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20796,555571013,Madagascar,IEG,2016,For storage only,34,Complexe des lacs Ambondro et Sirave (CLAS),"Ramsar Site, Wetland of International Importance",Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20797,13968,Madagascar,SAPM,2016,For storage only,34,Tsimembo,Forest Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20798,352248,Madagascar,METT,2016,For storage only,34,Mahavavy Kinkony,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20799,352256,Madagascar,SGBD/SMART,2016,For storage only,34,Zahamena Ankeniheny,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20800,352246,Madagascar,SGBD/SMART,2016,For storage only,34,Fandrina Vondrozo,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20801,352244,Madagascar,SAPM,2015,For storage only,34,Bongolava,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20802,2312,Madagascar,IEG,2016,For storage only,34,Isalo,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20803,5027,Madagascar,IEG,2016,For storage only,34,Kalambatritra,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20804,5029,Madagascar,IEG,2016,For storage only,34,Pic d'Ivohibe,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20805,5033,Madagascar,SAPM,2015,For storage only,34,Kasijy,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20806,303700,Madagascar,IEG,2016,For storage only,34,Kirindy Mitea,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20807,901296,Madagascar,SAPM,2016,For storage only,34,Le Lac Alaotra: les zones humides et basin,"Ramsar Site, Wetland of International Importance",Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20808,2311,Madagascar,IEG,2003,For storage only,34,Lokobe,Strict Nature Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20809,352259,Madagascar,SAPM,2016,For storage only,34,Médio Rio Negro I,Indigenous Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20810,20017,Madagascar,IEG,2006,For storage only,34,Mananara Nord,UNESCO-MAB Biosphere Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20811,352250,Madagascar,SAPM,2016,For storage only,34,Mandena,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20812,555547961,Madagascar,SAPM,2016,For storage only,34,Zone Humide de Mandrozo,"Ramsar Site, Wetland of International Importance",Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20813,5038,Madagascar,IEG,2016,For storage only,34,Mangerivola,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20814,5034,Madagascar,SAPM,2016,For storage only,34,Maningoza,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20815,5028,Madagascar,IEG,2005,For storage only,34,Manombo,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20816,5026,Madagascar,IEG,2003,For storage only,34,Manongarivo,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20817,26070,Madagascar,IEG,2016,For storage only,34,Mantadia,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20818,2305,Madagascar,IEG,2016,For storage only,34,Marojejy,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20819,5035,Madagascar,IEG,2016,For storage only,34,Marotandrano,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20820,303695,Madagascar,IEG,2011,For storage only,34,Masoala,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20821,352251,Madagascar,METT,2016,For storage only,34,Menabe,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20822,354012,Madagascar,IEG,2005,For storage only,34,Mikea,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20823,2314,Madagascar,IEG,2016,For storage only,34,Montagne d'Ambre,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20824,5039,Madagascar,IEG,2016,For storage only,34,Nosy Mangabe,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20825,555624672,Madagascar,IEG,2016,For storage only,34,Barrière de Corail Nosy Ve Androka,"Ramsar Site, Wetland of International Importance",Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20827,555549460,Madagascar,SAPM,2016,For storage only,34,Ranobe PK 32,Proposed Protected Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20828,20287,Madagascar,IEG,2011,For storage only,34,Ranomafana,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20829,354011,Madagascar,SAPM,2016,For storage only,34,Tampolo,Forest Station,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20830,555542728,Madagascar,SAPM,2016,For storage only,34,Rivière Nosivolo et affluents,"Ramsar Site, Wetland of International Importance",Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20831,900667,Madagascar,IEG,2008,For storage only,34,Sahamalaza - Iles Radama,UNESCO-MAB Biosphere Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20832,352254,Madagascar,IEG,2005,For storage only,34,Sahamalaza,Not Reported,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20833,900667,Madagascar,IEG,2016,For storage only,34,Sahamalaza - Iles Radama,UNESCO-MAB Biosphere Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20834,555624666,Madagascar,SAPM,2016,For storage only,34,Site Bioculturel d'Antrema,"Ramsar Site, Wetland of International Importance",Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20835,555548845,Madagascar,SAPM,2016,For storage only,34,Soariake,Locally Managed Marine Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20836,555549452,Madagascar,PAMETT,2016,For storage only,34,Sud-Ouest Ifotaky,Proposed Protected Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20837,5036,Madagascar,SAPM,2016,For storage only,34,Tampoketsa Analamaitso,Special Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20838,902404,Madagascar,SAPM,2016,For storage only,34,Marais de Torotorofotsy avec leurs bassins versants,"Ramsar Site, Wetland of International Importance",Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20839,2306,Madagascar,IEG,2003,For storage only,34,Tsaratanana,Strict Nature Reserve,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20840,2307,Madagascar,IEG,2003,For storage only,34,Tsimanampetsotsa,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20841,166881,Madagascar,IEG,2001,For storage only,34,Parc national Tsimanampesotse,"Ramsar Site, Wetland of International Importance",Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20842,2309,Madagascar,IEG,2016,For storage only,34,Tsingy de Namoroka,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20843,555512161,Madagascar,SAPM,2015,For storage only,34,Velondriake,Locally Managed Marine Area,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20844,2304,Madagascar,IEG,2011,For storage only,34,Zahamena,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20845,20273,Madagascar,IEG,2003,For storage only,34,Zombitse-Vohibasia,National Park,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20846,903062,Madagascar,WHA Outlook Report,2014,For storage only,34,Rainforests of the Atsinanana,World Heritage Site,Madagascar Management Effectiveness Evaluation,Direction du Systeme des Aires Protégées,2018,French -20847,17994,Indonesia,METT,2015,For storage only,35,Pulau Sangiang,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20848,555571187,Indonesia,METT,2015,For storage only,35,Air Alas,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20849,555571195,Indonesia,METT,2015,For storage only,35,Air Seblat,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20850,8604,Indonesia,METT,2015,For storage only,35,Vak 55 Bantarbolang,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20851,555571207,Indonesia,METT,2015,For storage only,35,Batang Pangean II,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20852,1910,Indonesia,METT,2015,For storage only,35,Batukahu I-II-III,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20853,8610,Indonesia,METT,2015,For storage only,35,Bekutuk,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20854,555571208,Indonesia,METT,2015,For storage only,35,Bukit Bungkuk,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20855,555571256,Indonesia,METT,2015,For storage only,35,Cabak I/II,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20856,8530,Indonesia,METT,2015,For storage only,35,Cigenteng Cipanji,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20857,8633,Indonesia,METT,2015,For storage only,35,Curah Manis Sempolan I - VIII,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20858,8992,Indonesia,METT,2015,For storage only,35,Danau Dusun Besar,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20859,10314,Indonesia,METT,2015,For storage only,35,Dolok Sibual-buali,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20860,10312,Indonesia,METT,2015,For storage only,35,Dolok Sipirok,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20861,8914,Indonesia,METT,2015,For storage only,35,Tinggi Raja,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20862,555571301,Indonesia,METT,2015,For storage only,35,"Durian Luncuk I, II",Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20864,8849,Indonesia,METT,2015,For storage only,35,Pegunungan Faruhumpenai,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20865,8623,Indonesia,METT,2015,For storage only,35,Gua Nglirip,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20866,8590,Indonesia,METT,2015,For storage only,35,Guci,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20867,1491,Indonesia,METT,2016,For storage only,35,Gunung Ambang,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20868,10300,Indonesia,METT,2015,For storage only,35,Batu Gamping,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20869,8550,Indonesia,METT,2015,For storage only,35,Gunung Burangrang,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20870,8607,Indonesia,METT,2015,For storage only,35,Gunung Butak,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20871,1276,Indonesia,METT,2015,For storage only,35,Gunung Celering,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20872,555571285,Indonesia,METT,2015,For storage only,35,Gunung Dako,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20873,8694,Indonesia,METT,2015,For storage only,35,Gunung Kentawan,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20874,8532,Indonesia,METT,2015,For storage only,35,Papandayan,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20875,8624,Indonesia,METT,2015,For storage only,35,Picis,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20876,1913,Indonesia,METT,2015,For storage only,35,Gunung Raya Passi,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20877,8841,Indonesia,METT,2015,For storage only,35,Gunung Sojol,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20878,555571219,Indonesia,METT,2015,For storage only,35,Gunung Tangkuban Parahu,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20879,1906,Indonesia,METT,2015,For storage only,35,Gunung Tilu,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20880,555571286,Indonesia,METT,2015,For storage only,35,Tinombala,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20881,555587209,Indonesia,METT,2015,For storage only,35,Maubesi,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20882,8970,Indonesia,METT,2015,For storage only,35,Hutan Bakau Pantai Timur,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20883,555571223,Indonesia,METT,2015,For storage only,35,Imogiri,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20884,8602,Indonesia,METT,2015,For storage only,35,Sub Vak 18c 19b Jatinegara,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20885,555571220,Indonesia,METT,2015,For storage only,35,Junghun,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20886,555511999,Indonesia,METT,2015,For storage only,35,Ponda-Ponda,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20887,1272,Indonesia,METT,2015,For storage only,35,Kawah Ijen,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20888,8596,Indonesia,METT,2015,For storage only,35,Kecubung Ulolanang,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20889,17885,Indonesia,METT,2015,For storage only,35,Kakenauwe,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20890,8598,Indonesia,METT,2015,For storage only,35,Keling II/III,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20891,555571239,Indonesia,METT,2015,For storage only,35,Kembang,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20892,8926,Indonesia,METT,2015,For storage only,35,Lembah Anai,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20893,101407,Indonesia,METT,2015,For storage only,35,Lembah Harau,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20894,10303,Indonesia,METT,2015,For storage only,35,Lo Pat Fun Pi,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20895,10286,Indonesia,METT,2015,For storage only,35,Malabar,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20896,8627,Indonesia,METT,2015,For storage only,35,Manggis Gadungan,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20897,555571199,Indonesia,METT,2015,For storage only,35,Martelu Purba,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20898,10290,Indonesia,METT,2015,For storage only,35,Moga,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20899,1969,Indonesia,METT,2015,For storage only,35,Morowali,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20900,1917,Indonesia,METT,2015,For storage only,35,Muara Kaman Sedulang,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20901,8669,Indonesia,METT,2015,For storage only,35,Muara Kendawangan,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20902,8536,Indonesia,METT,2015,For storage only,35,Nusa Gede Panjalu,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20903,8648,Indonesia,METT,2015,For storage only,35,Nusakambangan Timur,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20904,101584,Indonesia,METT,2015,For storage only,35,Nusakambangan Barat,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20905,62495,Indonesia,METT,2015,For storage only,35,Gunung Nyiut Penrissen,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20906,1916,Indonesia,METT,2015,For storage only,35,Padang Luwai,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20907,17915,Indonesia,METT,2015,For storage only,35,Pagar Gunung I/II/III,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20909,8597,Indonesia,METT,2015,For storage only,35,Pagerwunung Darupono,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20910,555571275,Indonesia,METT,2015,For storage only,35,Pamona,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20911,8631,Indonesia,METT,2015,For storage only,35,Pancur Ijen I/II,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20912,8537,Indonesia,METT,2015,For storage only,35,Pananjung Pangandaran,Marine Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20913,11942,Indonesia,METT,2015,For storage only,35,Pangi Binangga,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20914,555571258,Indonesia,METT,2015,For storage only,35,Pantodomas,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20915,1914,Indonesia,METT,2015,For storage only,35,Pararawen I-II,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20916,555571196,Indonesia,METT,2015,For storage only,35,Pasar Ngalam Reg 92,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20917,555571197,Indonesia,METT,2015,For storage only,35,Pasar Talo Reg 94,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20918,1921,Indonesia,METT,2015,For storage only,35,Pegunungan Cyclops,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20919,20931,Indonesia,METT,2015,For storage only,35,Hutan Pinus/ Janthoi,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20921,17834,Indonesia,METT,2015,For storage only,35,P. Bawean,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20922,8943,Indonesia,METT,2015,For storage only,35,Pulau Berkeh,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20923,4720,Indonesia,METT,2015,For storage only,35,Pulau Bokor,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20924,101486,Indonesia,METT,2015,For storage only,35,Pulau Anak Krakatau,Marine Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20925,17867,Indonesia,METT,2015,For storage only,35,Mas Popaya Raja,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20926,1908,Indonesia,METT,2015,For storage only,35,Pulau Nusa Barung,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20927,8629,Indonesia,METT,2015,For storage only,35,Pulau Sempu,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20928,20971,Indonesia,METT,2015,For storage only,35,Rimbo Panti,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20929,317275,Indonesia,METT,2015,For storage only,35,Riung,Marine Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20930,10316,Indonesia,METT,2015,For storage only,35,Raflessia I/II Serbojadi,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20931,8913,Indonesia,METT,2015,For storage only,35,Sibolangit,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20932,17916,Indonesia,METT,2015,For storage only,35,Taba Penanjung,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20933,555571304,Indonesia,METT,2015,For storage only,35,"Talang Ulu I, II",Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20934,17868,Indonesia,METT,2016,For storage only,35,Gn. Duasaudara,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20935,11945,Indonesia,METT,2015,For storage only,35,Tangkuban Prahu Pel. Ratu,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20936,555571296,Indonesia,METT,2015,For storage only,35,Tanjung Wiay,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20937,11890,Indonesia,METT,2015,For storage only,35,Telaga Patengan,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20938,8521,Indonesia,METT,2015,For storage only,35,Telaga Warna,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20939,8594,Indonesia,METT,2015,For storage only,35,Telogo Dringo,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20940,8654,Indonesia,METT,2015,For storage only,35,Teluk Adang,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20941,20419,Indonesia,METT,2015,For storage only,35,Wai Wuul,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20942,10295,Indonesia,METT,2015,For storage only,35,Watangan Puger,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20943,555571249,Indonesia,METT,2015,For storage only,35,Watu Ata,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20944,8588,Indonesia,METT,2015,For storage only,35,Wijaya Kusuma,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20945,555571244,Indonesia,METT,2015,For storage only,35,Wolo Tadho,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20946,8846,Indonesia,METT,2015,For storage only,35,Bangkiriang,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20947,555571211,Indonesia,METT,2015,For storage only,35,Balai Raja,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20948,34163,Indonesia,METT,2015,For storage only,35,Barumun,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20949,8978,Indonesia,METT,2015,For storage only,35,Bentayan,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20950,8959,Indonesia,METT,2015,For storage only,35,Bukit Batu,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20951,8950,Indonesia,METT,2015,For storage only,35,Bukit Rimbang Bukit Baling,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20952,17976,Indonesia,METT,2015,For storage only,35,Danau Pulau Besar-Danau Pulau Bawah,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20953,8980,Indonesia,METT,2015,For storage only,35,Dangku,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20954,1929,Indonesia,METT,2015,For storage only,35,Dataran Tinggi Yang,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20955,1923,Indonesia,METT,2015,For storage only,35,Dolok Surungan,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20956,8953,Indonesia,METT,2015,For storage only,35,Giam Siak Kecil,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20957,1924,Indonesia,METT,2015,For storage only,35,Gumai Tebing Tinggi,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20958,1926,Indonesia,METT,2015,For storage only,35,Gunung Raya,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20959,62552,Indonesia,METT,2015,For storage only,35,Harlu,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20960,1925,Indonesia,METT,2015,For storage only,35,Isau Isau,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20961,1259,Indonesia,METT,2015,For storage only,35,Kerumutan,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20962,317257,Indonesia,METT,2015,For storage only,35,Komara,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20963,555511951,Indonesia,METT,2015,For storage only,35,Kuala Lupak,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20964,317260,Indonesia,METT,2015,For storage only,35,Lamandau,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20965,8883,Indonesia,METT,2015,For storage only,35,Lambusango,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20966,8552,Indonesia,METT,2015,For storage only,35,Muara Angke,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20967,62632,Indonesia,METT,2016,For storage only,35,Nantu,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20968,10320,Indonesia,METT,2015,For storage only,35,Padang Sugihan,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20969,555571224,Indonesia,METT,2015,For storage only,35,Paliyan,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20970,8838,Indonesia,METT,2015,For storage only,35,Pinjan/Tanjung Matop,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20971,1971,Indonesia,METT,2015,For storage only,35,P. Bawean,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20972,8839,Indonesia,METT,2015,For storage only,35,Dolangan,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20973,1898,Indonesia,METT,2015,For storage only,35,Pulau Kaget,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20974,4721,Indonesia,METT,2015,For storage only,35,Pulau Rambut,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20975,17962,Indonesia,METT,2015,For storage only,35,Rawa Singkil,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20976,555571225,Indonesia,METT,2015,For storage only,35,Sermo,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20977,11879,Indonesia,METT,2015,For storage only,35,Sidei Wibain,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20978,34130,Indonesia,METT,2015,For storage only,35,Siranggas,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20979,555571278,Indonesia,METT,2015,For storage only,35,Tanjung Batikolo,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20980,4727,Indonesia,METT,2015,For storage only,35,Tanjung Peropa,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20981,555571287,Indonesia,METT,2015,For storage only,35,Tanjung Santigi,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20982,8961,Indonesia,METT,2015,For storage only,35,Tasik Besar-Tasik Metas,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20983,30005,Indonesia,METT,2015,For storage only,35,Tasik Serkap-Tasik Sarang Burung,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20984,8960,Indonesia,METT,2015,For storage only,35,Tasik Tanjung Padang,Wildlife Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20985,8867,Indonesia,METT,2015,For storage only,35,Komara,Game Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20986,317256,Indonesia,METT,2015,For storage only,35,Landusa Tomata,Game Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20987,8897,Indonesia,METT,2015,For storage only,35,Lingga Isaq,Game Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20988,101798,Indonesia,METT,2015,For storage only,35,Pulau Moyo,Marine Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20989,101410,Indonesia,METT,2015,For storage only,35,Pulau Rempang,Game Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20990,17832,Indonesia,METT,2015,For storage only,35,Dr. Muhammad Hatta,Grand Forest Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20991,555571260,Indonesia,METT,2015,For storage only,35,KGPAA Mangkunegoro I,Grand Forest Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20992,34633,Indonesia,METT,2015,For storage only,35,Murhum,Grand Forest Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20993,101824,Indonesia,METT,2015,For storage only,35,Ngurah Rai,Grand Forest Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20994,1928,Indonesia,METT,2015,For storage only,35,Alas Purwo,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20995,1268,Indonesia,METT,2015,For storage only,35,Bali Barat,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20996,1967,Indonesia,METT,2015,For storage only,35,Baluran,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20997,317221,Indonesia,METT,2015,For storage only,35,Lam Nam Nan Phang Kha,Wildlife Sanctuary,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20998,34161,Indonesia,METT,2015,For storage only,35,Batang Gadis,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -20999,1254,Indonesia,METT,2015,For storage only,35,Berbak,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21000,8673,Indonesia,METT,2015,For storage only,35,Betung Kerihun,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21001,62621,Indonesia,METT,2016,For storage only,35,Bogani Nani Wartabone,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21002,1269,Indonesia,METT,2015,For storage only,35,Bromo Tengger Semeru,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21003,62496,Indonesia,METT,2015,For storage only,35,Bukit Baka - Bukit Raya,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21004,1252,Indonesia,METT,2015,For storage only,35,Bukit Barisan Selatan,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21005,317205,Indonesia,METT,2015,For storage only,35,Bukit Dua Belas,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21006,124434,Indonesia,METT,2015,For storage only,35,Bukit Tiga Puluh,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21007,317259,Indonesia,METT,2015,For storage only,35,Danau Sentarum,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21008,8559,Indonesia,METT,2015,For storage only,35,Gunung Ciremai,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21009,2350,Indonesia,METT,2015,For storage only,35,Gunung Gede - Pangrango,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21010,1496,Indonesia,METT,2015,For storage only,35,Gunung Halimun - Salak,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21011,4994,Indonesia,METT,2015,For storage only,35,Kerinci Seblat,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21012,1251,Indonesia,METT,2015,For storage only,35,Gunung Leuser,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21013,555571227,Indonesia,METT,2015,For storage only,35,Gunung Merapi,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21014,317251,Indonesia,METT,2015,For storage only,35,Gunung Merbabu,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21015,20378,Indonesia,METT,2015,For storage only,35,Gunung Palung,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21016,1930,Indonesia,METT,2015,For storage only,35,Gunung Rinjani,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21017,1899,Indonesia,METT,2015,For storage only,35,Kayan Mentarang,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21018,62567,Indonesia,METT,2015,For storage only,35,Kelimutu,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21019,1968,Indonesia,METT,2015,For storage only,35,Komodo,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21020,1256,Indonesia,METT,2015,For storage only,35,Kutai,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21021,555571253,Indonesia,METT,2015,For storage only,35,Laiwangi Wanggameti,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21022,3237,Indonesia,METT,2015,For storage only,35,Lore Lindu,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21023,1500,Indonesia,METT,2015,For storage only,35,Lorentz,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21024,8662,Indonesia,METT,2015,For storage only,35,Manupeu Tanadaru,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21025,1499,Indonesia,METT,2015,For storage only,35,Manusela,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21026,1495,Indonesia,METT,2015,For storage only,35,Meru Betiri,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21027,30013,Indonesia,METT,2015,For storage only,35,Rawa Aopa Watumohai,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21028,317262,Indonesia,METT,2015,For storage only,35,Sebangau,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21029,30000,Indonesia,METT,2015,For storage only,35,Sembilang,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21030,17972,Indonesia,METT,2015,For storage only,35,Siberut,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21031,1490,Indonesia,METT,2015,For storage only,35,Tanjung Puting,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21032,317197,Indonesia,METT,2015,For storage only,35,Tesso Nilo,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21033,2349,Indonesia,METT,2015,For storage only,35,Ujung Kulon,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21034,29966,Indonesia,METT,2015,For storage only,35,Wasur,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21035,17923,Indonesia,METT,2015,For storage only,35,Way Kambas,National Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21036,555571191,Indonesia,METT,2015,For storage only,35,Air Rami I,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21037,555571243,Indonesia,METT,2015,For storage only,35,Angke Kapuk,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21038,555587211,Indonesia,METT,2015,For storage only,35,Gunung Asuansang,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21039,62584,Indonesia,METT,2015,For storage only,35,Bangko-bangko,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21040,62500,Indonesia,METT,2015,For storage only,35,Baning,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21041,11882,Indonesia,METT,2015,For storage only,35,Beriat,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21042,17982,Indonesia,METT,2015,For storage only,35,Bukit Kaba,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21043,62637,Indonesia,METT,2015,For storage only,35,Cani Sirenreng,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21044,8542,Indonesia,METT,2015,For storage only,35,Cimanggu,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21045,17922,Indonesia,METT,2015,For storage only,35,Danau Buyan - Danau Tamblingan,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21046,555511953,Indonesia,METT,2015,For storage only,35,Danau Mahalona,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21047,8850,Indonesia,METT,2015,For storage only,35,Danau Matano,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21048,555571234,Indonesia,METT,2015,For storage only,35,Danau Rawa Taliwang,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21049,8851,Indonesia,METT,2015,For storage only,35,Danau Towuti,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21050,555587212,Indonesia,METT,2015,For storage only,35,Gunung Dungan/ Gunung Batu,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21051,8721,Indonesia,METT,2015,For storage only,35,KH Egon Ilewekoh Lewotobi,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21052,8605,Indonesia,METT,2015,For storage only,35,Grojogan Sewu,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21053,555571228,Indonesia,METT,2015,For storage only,35,Gunung Batur Bukit Payang,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21054,8630,Indonesia,METT,2015,For storage only,35,Gunung Baung,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21055,11914,Indonesia,METT,2015,For storage only,35,Gunung Guntur,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21056,8069,Indonesia,METT,2015,For storage only,35,Gunung Meja,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21057,8674,Indonesia,METT,2015,For storage only,35,Gunung Melintang,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21058,62486,Indonesia,METT,2015,For storage only,35,Gunung Pancar,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21059,8609,Indonesia,METT,2015,For storage only,35,Gunung Selok,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21060,555571300,Indonesia,METT,2015,For storage only,35,Gunung Tunak,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21061,1905,Indonesia,METT,2015,For storage only,35,Gunung Tangkuban Parahu,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21062,10302,Indonesia,METT,2015,For storage only,35,Kawah Ijen,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21063,8549,Indonesia,METT,2015,For storage only,35,Kawah Kamojang,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21064,198424,Indonesia,METT,2015,For storage only,35,Kepulauan Banyak,Marine Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21065,62585,Indonesia,METT,2015,For storage only,35,Kerandangan,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21066,8122,Indonesia,METT,2015,For storage only,35,Klamono,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21067,317255,Indonesia,METT,2015,For storage only,35,Lejja,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21068,8930,Indonesia,METT,2015,For storage only,35,Lembah Harau,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21069,8539,Indonesia,METT,2015,For storage only,35,Linggarjati,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21070,555571201,Indonesia,METT,2015,For storage only,35,Lubuk Tapi Kayu Ajaran,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21071,317253,Indonesia,METT,2015,For storage only,35,Mangolo,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21072,8928,Indonesia,METT,2015,For storage only,35,Mega Mendung,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21073,317200,Indonesia,METT,2015,For storage only,35,Muka Kuning,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21074,62488,Indonesia,METT,2015,For storage only,35,Pananjung Pangandaran,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21075,8757,Indonesia,METT,2015,For storage only,35,Panelokan,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21076,555571198,Indonesia,METT,2015,For storage only,35,Pantai Panjang dan P. Baai,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21077,8533,Indonesia,METT,2015,For storage only,35,Papandayan,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21078,62502,Indonesia,METT,2015,For storage only,35,Pleihari Tanah Laut,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21079,555571202,Indonesia,METT,2015,For storage only,35,Bukit Serelo,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21080,1900,Indonesia,METT,2015,For storage only,35,Pulau Kembang,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21081,555571273,Indonesia,METT,2015,For storage only,35,Pulau Pasoso,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21082,354070,Indonesia,METT,2015,For storage only,35,Pulau Satonda,Marine Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21083,8907,Indonesia,METT,2015,For storage only,35,Pulau Weh,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21084,62659,Indonesia,METT,2015,For storage only,35,Punti Kayu,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21085,10321,Indonesia,METT,2015,For storage only,35,Rimbo Panti,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21086,64446,Indonesia,METT,2015,For storage only,35,Ruteng,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21087,62491,Indonesia,METT,2015,For storage only,35,Sangeh,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21089,62660,Indonesia,METT,2015,For storage only,35,D. Sicikeh-cikeh,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21090,64445,Indonesia,METT,2015,For storage only,35,Sidrap,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21091,8066,Indonesia,METT,2015,For storage only,35,Sorong,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21092,62492,Indonesia,METT,2015,For storage only,35,Sukawayana,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21093,555571212,Indonesia,METT,2015,For storage only,35,Sungai Dumai,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21094,555571271,Indonesia,METT,2015,For storage only,35,Sungai Liku,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21095,8700,Indonesia,METT,2015,For storage only,35,Suranadi,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21096,8535,Indonesia,METT,2015,For storage only,35,Talaga Bodas,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21097,555571272,Indonesia,METT,2015,For storage only,35,Tanjung Belimbing,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21098,17842,Indonesia,METT,2015,For storage only,35,Tanjung Keluang-Teluk Keluang,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21099,555571299,Indonesia,METT,2015,For storage only,35,Tanjung Tampa,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21100,11900,Indonesia,METT,2015,For storage only,35,Telaga Warna,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21101,8591,Indonesia,METT,2015,For storage only,35,Telogo Warno Pengilon,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21102,8072,Indonesia,METT,2015,For storage only,35,Teluk Youtefa,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21103,8876,Indonesia,METT,2015,For storage only,35,Tirta Rimba Air Jatuh,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21104,8635,Indonesia,METT,2015,For storage only,35,Tretes,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21105,62636,Indonesia,METT,2015,For storage only,35,Wera,Nature Recreation Park,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21106,8117,Indonesia,METT,2015,For storage only,35,Yapen Tengah,Nature Reserve,METT data of Indonesia PA,Not Available,2018,Bahasa Indonesian -21949,615,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Banff National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21950,634,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Elk Island National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21951,614,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Jasper National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21952,626,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Waterton Lakes National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21953,621,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Kootenay National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21954,622,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Glacier National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21955,623,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Yoho National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21956,630,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Mount Revelstoke National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21957,16379,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Gwaii Haanas National Park Reserve of Canada and Haida Heritage Site,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21958,628,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Pacific Rim National Park Reserve of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21959,305157,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Gulf Islands National Park Reserve of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21960,618,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Riding Mountain National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21961,101586,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Wapusk National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21962,619,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Gros Morne National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21963,633,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Fundy National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21964,18668,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Terra Nova National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21965,632,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Kouchibouguac National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21966,555516421,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Torngat Mountains National Park Reserve of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21968,612,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Kluane National Park Reserve of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21969,624,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Cape Breton Highlands National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21970,629,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Kejimkujik National Park and National Historic Site of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21971,635,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Prince Edward Island National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21972,100673,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Vuntut National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21973,613,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Auyuittuq National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21974,13396,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Quttinirpaaq National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21975,555566941,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Sable Island National Park Reserve of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21976,555621660,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Qausuittuq National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21977,100660,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Kejimkujik National Park and National Historic Site of Canada (Seaside Adjunct),National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21978,100672,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Ivvavik National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21979,300103,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Sirmilik National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21980,555516422,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Ukkusiksalik National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21981,620,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Pukaskwa National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21982,636,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Point Pelee National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21983,12801,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Bruce Peninsula National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21984,66090,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Georgian Bay Islands National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21985,617,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Prince Albert National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21986,555516420,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Grasslands National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21987,616,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Nahanni National Park Reserve of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21988,101590,Canada,Ecological Integrity Monitoring,2016,For storage only,36,Tuktut Nogait National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21990,100676,Canada,Ecological Integrity Monitoring,2017,For storage only,36,Aulavik National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21991,638,Canada,Ecological Integrity Monitoring,2018,For storage only,36,St. Lawrence Islands National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -21992,611,Canada,Ecological Integrity Monitoring,2009,For storage only,36,Wood Buffalo National Park of Canada,National Park of Canada,Canada Management Effectiveness Evaluation,Natural Resource Conservation Branch - Parks Canada,2018,English -22197,915,Switzerland,Annual Report,2017,For storage only,37,Schweizerischer Nationalpark,Swiss National Park,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22198,31029,Switzerland,Annual Report,2017,For storage only,37,Augstmatthorn,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22199,31030,Switzerland,Annual Report,2017,For storage only,37,Combe-Grède,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22200,31031,Switzerland,Annual Report,2017,For storage only,37,Kiental,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22201,31032,Switzerland,Annual Report,2017,For storage only,37,Schwarzhorn,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22202,31033,Switzerland,Annual Report,2017,For storage only,37,Tannhorn,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22203,31034,Switzerland,Annual Report,2017,For storage only,37,Urirotstock,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22204,31035,Switzerland,Annual Report,2017,For storage only,37,Fellital,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22205,31036,Switzerland,Annual Report,2017,For storage only,37,Mythen,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22206,31037,Switzerland,Annual Report,2017,For storage only,37,Silbern-Jägern-Bödmerenwald,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22207,31038,Switzerland,Annual Report,2017,For storage only,37,Hahnen,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22208,31039,Switzerland,Annual Report,2017,For storage only,37,Hutstock,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22209,31040,Switzerland;Australia,Annual Report,2017,For storage only,37,Kärpf,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22210,31041,Switzerland,Annual Report,2017,For storage only,37,Schilt,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22211,31042,Switzerland,Annual Report,2017,For storage only,37,Rauti-Tros,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22212,31043,Switzerland,Annual Report,2017,For storage only,37,Graue Hörner,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22213,31044,Switzerland,Annual Report,2017,For storage only,37,Säntis,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22214,31045,Switzerland,Annual Report,2017,For storage only,37,Bernina-Albris,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22215,31046,Switzerland,Annual Report,2017,For storage only,37,Beverin,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22216,31047,Switzerland,Annual Report,2017,For storage only,37,Campasc,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22217,31048,Switzerland,Annual Report,2017,For storage only,37,Piz Ela,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22218,31049,Switzerland,Annual Report,2017,For storage only,37,Trescolmen,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22219,31050,Switzerland,Annual Report,2017,For storage only,37,Pez Vial/Greina,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22220,31051,Switzerland,Annual Report,2017,For storage only,37,Campo Tencia,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22221,31052,Switzerland,Annual Report,2017,For storage only,37,Greina,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22222,31053,Switzerland,Annual Report,2017,For storage only,37,Dent de Lys,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22223,31054,Switzerland,Annual Report,2017,For storage only,37,Hochmatt-Motélon,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22224,31055,Switzerland,Annual Report,2017,For storage only,37,Creux-du-Van,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22225,31056,Switzerland,Annual Report,2017,For storage only,37,Grand Muveran,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22226,31057,Switzerland,Annual Report,2017,For storage only,37,Les Bimis-Ciernes Picat,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22227,31058,Switzerland,Annual Report,2017,For storage only,37,Le Noirmont,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22228,31059,Switzerland,Annual Report,2017,For storage only,37,Pierreuse-Gummfluh,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22229,31060,Switzerland,Annual Report,2017,For storage only,37,Aletschwald,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22230,31061,Switzerland,Annual Report,2017,For storage only,37,Alpjuhorn,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22231,31062,Switzerland,Annual Report,2017,For storage only,37,Wilerhorn,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22232,31064,Switzerland,Annual Report,2017,For storage only,37,Mauvoisin,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22233,31065,Switzerland,Annual Report,2017,For storage only,37,Val Ferret / Combe de l'A,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22234,31066,Switzerland,Annual Report,2017,For storage only,37,Haut de Cry/Derborence,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22235,31067,Switzerland,Annual Report,2017,For storage only,37,Leukerbad,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22236,31068,Switzerland,Annual Report,2017,For storage only,37,Turtmanntal,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22237,31069,Switzerland,Annual Report,2017,For storage only,37,Dixence,Federal Hunting Reserves,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22238,62667,Switzerland,Annual Report,2015,For storage only,37,Rade et Rhône genevois,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22239,62673,Switzerland,Annual Report,2015,For storage only,37,Grandson jusqu'à Champ Pittet,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22240,62675,Switzerland,Annual Report,2015,For storage only,37,Yvonand jusqu'à Cheyres,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22241,62676,Switzerland,Annual Report,2015,For storage only,37,"Fanel - Chablais de Cudrefin, Pointe de Marin",Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22242,81074,Switzerland,Annual Report,2015,For storage only,37,Ermatinger Becken,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22243,81075,Switzerland,Annual Report,2015,For storage only,37,Stein am Rhein,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22244,81076,Switzerland,Annual Report,2015,For storage only,37,Klingnauerstausee,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22245,81077,Switzerland,Annual Report,2015,For storage only,37,Chevroux jusqu'à Portalban,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22246,81078,Switzerland,Annual Report,2015,For storage only,37,Col de Bretolet,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22247,81079,Switzerland,Annual Report,2015,For storage only,37,Witi,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22248,146766,Switzerland,Annual Report,2015,For storage only,37,Les Grangettes,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22249,178706,Switzerland,Annual Report,2015,For storage only,37,Zürich-Obersee: Guntliweid bis Bätzimatt,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22250,178707,Switzerland,Annual Report,2015,For storage only,37,Bolle di Magadino,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22251,178708,Switzerland,Annual Report,2015,For storage only,37,Versoix jusqu'à Genf,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22252,178709,Switzerland,Annual Report,2015,For storage only,37,Rorschacher Bucht / Arbon,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22253,178710,Switzerland,Annual Report,2015,For storage only,37,Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22254,178711,Switzerland,Annual Report,2015,For storage only,37,Kanderdelta bis Hilterfingen,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22255,178712,Switzerland,Annual Report,2015,For storage only,37,Wohlensee (Halenbrücke bis Wohleibrücke),Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22256,178713,Switzerland,Annual Report,2015,For storage only,37,Stausee Niederried,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22257,178714,Switzerland,Annual Report,2015,For storage only,37,Port Noir jusqu'à Hermance,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22258,178715,Switzerland,Annual Report,2015,For storage only,37,Häftli bei Büren,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22259,178716,Switzerland,Annual Report,2015,For storage only,37,Aare bei Solothurn und Naturschutzreservat Aare Flumenthal,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22260,178717,Switzerland,Annual Report,2015,For storage only,37,Plaine de l'Orbe: Chavornay jusqu'à Bochuz,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22261,178718,Switzerland,Annual Report,2015,For storage only,37,Salavaux,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22262,178719,Switzerland,Annual Report,2015,For storage only,37,Alter Rhein: Rheineck,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22263,178721,Switzerland,Annual Report,2015,For storage only,37,Pointe de Promenthoux,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22264,179001,Switzerland,Annual Report,2015,For storage only,37,Hagneckdelta und St. Petersinsel,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22265,555513630,Switzerland,Annual Report,2015,For storage only,37,Pfäffikersee,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22266,555513631,Switzerland,Annual Report,2015,For storage only,37,Greifensee,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22267,555513632,Switzerland,Annual Report,2015,For storage only,37,Neeracher Ried,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22268,555513633,Switzerland,Annual Report,2015,For storage only,37,Wauwilermoos,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22269,555513634,Switzerland,Annual Report,2015,For storage only,37,Lac de Pérolles,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22270,555513635,Switzerland,Annual Report,2015,For storage only,37,Lac de la Gruyère à Broc,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22271,555513636,Switzerland,Annual Report,2015,For storage only,37,Chablais (Lac de Morat),Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22272,555513637,Switzerland,Annual Report,2015,For storage only,37,Kaltbrunner Riet,Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22273,148580,Switzerland,National Inventory,2011,For storage only,37,Seldenhalde,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22274,148581,Switzerland,National Inventory,2011,For storage only,37,Koblenzer Rhein und Laufen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22275,148582,Switzerland,National Inventory,2011,For storage only,37,Auenreste Klingnauer Stausee,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22276,148583,Switzerland,National Inventory,2011,For storage only,37,Eggrank - Thurspitz,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22277,148584,Switzerland,National Inventory,2011,For storage only,37,Rossgarten,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22278,148585,Switzerland,National Inventory,2011,For storage only,37,Schäffäuli,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22279,148586,Switzerland,National Inventory,2011,For storage only,37,Wyden bei Pfyn,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22280,148587,Switzerland,National Inventory,2011,For storage only,37,Haumättli,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22281,148588,Switzerland,National Inventory,2011,For storage only,37,Hau - Äuli,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22282,148589,Switzerland,National Inventory,2011,For storage only,37,Wuer,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22283,148590,Switzerland,National Inventory,2011,For storage only,37,Wasserschloss Brugg - Stilli,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22284,148591,Switzerland,National Inventory,2011,For storage only,37,Altenrhein,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22285,148592,Switzerland,National Inventory,2011,For storage only,37,Unteres Ghögg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22286,148593,Switzerland,National Inventory,2011,For storage only,37,Ghöggerhütte,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22287,148594,Switzerland,National Inventory,2011,For storage only,37,Umiker Schachen - Stierenhölzli,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22288,148595,Switzerland,National Inventory,2011,For storage only,37,Gillhof - Glattbrugg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22289,148596,Switzerland,National Inventory,2011,For storage only,37,Thurauen Wil-Weieren,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22290,148597,Switzerland,National Inventory,2011,For storage only,37,Glatt nordwestlich Flawil,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22291,148598,Switzerland,National Inventory,2011,For storage only,37,Rüsshalden,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22292,148599,Switzerland,National Inventory,2011,For storage only,37,Reussinsel Risi,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22293,148600,Switzerland,National Inventory,2011,For storage only,37,Thur und Necker bei Lütisburg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22294,148601,Switzerland,National Inventory,2011,For storage only,37,Tote Reuss - Alte Reuss,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22295,148603,Switzerland,National Inventory,2011,For storage only,37,La Lomenne,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22296,148604,Switzerland,National Inventory,2011,For storage only,37,Rottenschwiler Moos,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22297,148605,Switzerland,National Inventory,2011,For storage only,37,La Réchesse,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22298,148606,Switzerland,National Inventory,2011,For storage only,37,Still Rüss - Rickenbach,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22299,148607,Switzerland,National Inventory,2011,For storage only,37,Ober Schachen - Rüssspitz,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22300,148608,Switzerland,National Inventory,2011,For storage only,37,Emmenschachen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22301,148609,Switzerland,National Inventory,2011,For storage only,37,Frauental,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22302,148610,Switzerland,National Inventory,2011,For storage only,37,Aahorn,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22303,148611,Switzerland,National Inventory,2011,For storage only,37,Aare bei Altreu,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22304,148612,Switzerland,National Inventory,2011,For storage only,37,Altwässer der Aare und der Zihl,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22305,148613,Switzerland,National Inventory,2011,For storage only,37,Biber im Ägeriried,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22306,148614,Switzerland,National Inventory,2011,For storage only,37,Alte Aare: Lyss - Dotzigen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22307,148615,Switzerland,National Inventory,2011,For storage only,37,Utzenstorfer Schachen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22308,148616,Switzerland,National Inventory,2011,For storage only,37,Alte Aare: Aarberg - Lyss,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22309,148617,Switzerland,National Inventory,2011,For storage only,37,Heidenweg / St. Petersinsel,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22310,148618,Switzerland,National Inventory,2011,For storage only,37,Hagneckdelta,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22311,148619,Switzerland,National Inventory,2011,For storage only,37,Oberburger Schachen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22312,148620,Switzerland,National Inventory,2011,For storage only,37,Ämmenmatt,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22313,148621,Switzerland,National Inventory,2011,For storage only,37,Hinter Klöntal,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22314,148622,Switzerland,National Inventory,2011,For storage only,37,Seewald - Fanel,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22315,148623,Switzerland,National Inventory,2011,For storage only,37,Niederried - Oltigenmatt,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22316,148624,Switzerland,National Inventory,2011,For storage only,37,Les Grèves du Chablais de Cudrefin,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22317,148625,Switzerland,National Inventory,2011,For storage only,37,Tristel,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22318,148626,Switzerland,National Inventory,2011,For storage only,37,Chrauchbach: Haris,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22319,148627,Switzerland,National Inventory,2011,For storage only,37,Les Grèves de Portalban - Cudrefin,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22320,148628,Switzerland,National Inventory,2011,For storage only,37,Städerried,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22321,148629,Switzerland,National Inventory,2011,For storage only,37,Laupenau,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22322,148630,Switzerland,National Inventory,2011,For storage only,37,Schlierenrüti,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22323,148631,Switzerland,National Inventory,2011,For storage only,37,Belper Giessen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22324,148632,Switzerland,National Inventory,2011,For storage only,37,Les Grèves de Chevroux - Portalban,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22325,148633,Switzerland,National Inventory,2011,For storage only,37,Reussdelta,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22326,148634,Switzerland,National Inventory,2011,For storage only,37,Les Grèves d'Estavayer-le-Lac - Chevroux,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22327,148635,Switzerland,National Inventory,2011,For storage only,37,Senseauen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22328,148636,Switzerland,National Inventory,2011,For storage only,37,Strada,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22329,148637,Switzerland,National Inventory,2011,For storage only,37,Steinibach,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22330,148638,Switzerland,National Inventory,2011,For storage only,37,Les Grèves de Concise,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22331,148639,Switzerland,National Inventory,2011,For storage only,37,Teuffengraben - Sackau,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22332,148640,Switzerland,National Inventory,2011,For storage only,37,Plan-Sot,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22333,148641,Switzerland,National Inventory,2011,For storage only,37,Laui,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22334,148643,Switzerland,National Inventory,2011,For storage only,37,Les Grèves de Cheyres - Font,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22335,148644,Switzerland,National Inventory,2011,For storage only,37,Panas-ch-Resgia,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22336,148645,Switzerland,National Inventory,2011,For storage only,37,Les Grèves de Grandson - Bonvillars - Onnens,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22337,148646,Switzerland,National Inventory,2011,For storage only,37,Rhäzünser Rheinauen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22338,148647,Switzerland,National Inventory,2011,For storage only,37,Les Grèves d'Yvonand - Cheyres,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22339,148648,Switzerland,National Inventory,2011,For storage only,37,Les Grèves d'Yverdon - Yvonand,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22340,148649,Switzerland,National Inventory,2011,For storage only,37,Les Grèves d'Yverdon - des Tuileries,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22341,148650,Switzerland,National Inventory,2011,For storage only,37,Lischana - Suronnas,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22342,148652,Switzerland,National Inventory,2011,For storage only,37,Cauma,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22343,148653,Switzerland,National Inventory,2011,For storage only,37,Bois du Dévin,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22344,148654,Switzerland,National Inventory,2011,For storage only,37,Stössi,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22345,148655,Switzerland,National Inventory,2011,For storage only,37,Plaun da Foppas,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22346,148656,Switzerland,National Inventory,2011,For storage only,37,Ogna da Pardiala,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22347,148657,Switzerland,National Inventory,2011,For storage only,37,La Sarine: Rossens - Fribourg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22348,148658,Switzerland,National Inventory,2011,For storage only,37,Ärgera: Plasselb - Marly,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22349,148659,Switzerland,National Inventory,2011,For storage only,37,Sotruinas,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22350,148660,Switzerland,National Inventory,2011,For storage only,37,Blaisch dal Piz dal Ras,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22351,148661,Switzerland,National Inventory,2011,For storage only,37,Les Iles de Villeneuve,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22352,148662,Switzerland,National Inventory,2011,For storage only,37,Sytenwald,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22353,148663,Switzerland,National Inventory,2011,For storage only,37,Jägglisglunte,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22354,148664,Switzerland,National Inventory,2011,For storage only,37,La Neirigue et la Glâne,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22355,148665,Switzerland,National Inventory,2011,For storage only,37,Cahuons,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22356,148666,Switzerland,National Inventory,2011,For storage only,37,Chandergrien,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22357,148667,Switzerland,National Inventory,2011,For storage only,37,Disla - Pardomat,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22358,148668,Switzerland,National Inventory,2011,For storage only,37,Cumparduns,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22359,148669,Switzerland,National Inventory,2011,For storage only,37,Augand,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22360,148670,Switzerland,National Inventory,2011,For storage only,37,Fontanivas - Sonduritg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22361,148671,Switzerland,National Inventory,2011,For storage only,37,Sandey,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22362,148672,Switzerland,National Inventory,2011,For storage only,37,Gravas,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22363,148673,Switzerland,National Inventory,2011,For storage only,37,Weissenau,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22364,148674,Switzerland,National Inventory,2011,For storage only,37,Brünnlisau,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22365,148675,Switzerland,National Inventory,2011,For storage only,37,Wilerau,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22366,148676,Switzerland,National Inventory,2011,For storage only,37,Niedermettlisau,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22367,148677,Switzerland,National Inventory,2011,For storage only,37,Heustrich,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22368,148678,Switzerland,National Inventory,2011,For storage only,37,Chappelistutz,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22369,148680,Switzerland,National Inventory,2011,For storage only,37,Bois de Vaux,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22370,148681,Switzerland,National Inventory,2011,For storage only,37,In Erlen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22371,148682,Switzerland,National Inventory,2011,For storage only,37,Il Rom Valchava - Graveras (Müstair),Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22372,148683,Switzerland,National Inventory,2011,For storage only,37,Widen bei Realp,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22373,148684,Switzerland,National Inventory,2011,For storage only,37,La Roujarde,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22374,148685,Switzerland,National Inventory,2011,For storage only,37,San Batrumieu,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22375,148686,Switzerland,National Inventory,2011,For storage only,37,Les Auges d'Estavannens,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22376,148687,Switzerland,National Inventory,2011,For storage only,37,Les Monod,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22377,148688,Switzerland,National Inventory,2011,For storage only,37,Engstlige: bim Stei - Oybedly,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22378,148689,Switzerland,National Inventory,2011,For storage only,37,Isla Glischa - Arvins - Seglias,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22379,148691,Switzerland,National Inventory,2011,For storage only,37,Sagnes de la Burtignière,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22380,148692,Switzerland,National Inventory,2011,For storage only,37,Les Iles de Bussigny,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22381,148693,Switzerland,National Inventory,2011,For storage only,37,Sand,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22382,148694,Switzerland,National Inventory,2011,For storage only,37,Les Auges de Neirivue,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22383,148695,Switzerland,National Inventory,2011,For storage only,37,Flaz,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22384,148696,Switzerland,National Inventory,2011,For storage only,37,Brenno di Blenio,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22385,148697,Switzerland,National Inventory,2011,For storage only,37,Campall,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22386,148698,Switzerland,National Inventory,2011,For storage only,37,Albinasca,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22387,148699,Switzerland,National Inventory,2011,For storage only,37,Geròra,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22388,148700,Switzerland,National Inventory,2011,For storage only,37,Soria,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22389,148701,Switzerland,National Inventory,2011,For storage only,37,Bosco dei Valloni,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22390,148702,Switzerland,National Inventory,2011,For storage only,37,La Sarine près Château-d'Oex,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22391,148703,Switzerland,National Inventory,2011,For storage only,37,Embouchure de l'Aubonne,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22392,148704,Switzerland,National Inventory,2011,For storage only,37,Gastereholz,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22393,148706,Switzerland,National Inventory,2011,For storage only,37,Matte,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22394,148707,Switzerland,National Inventory,2011,For storage only,37,Zeiterbode,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22395,148709,Switzerland,National Inventory,2011,For storage only,37,La Torneresse à l'Etivaz,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22396,148710,Switzerland,National Inventory,2011,For storage only,37,Chiemadmatte,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22397,148711,Switzerland,National Inventory,2011,For storage only,37,Tännmattu,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22398,148712,Switzerland,National Inventory,2011,For storage only,37,Rohr - Oey,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22399,148713,Switzerland,National Inventory,2011,For storage only,37,Sonlèrt - Sabbione,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22400,148714,Switzerland,National Inventory,2011,For storage only,37,Les Grangettes,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22401,148715,Switzerland,National Inventory,2011,For storage only,37,Bolla di Loderio,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22402,148716,Switzerland,National Inventory,2011,For storage only,37,Somprei - Lovalt,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22403,148717,Switzerland,National Inventory,2011,For storage only,37,Canton,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22404,148718,Switzerland,National Inventory,2011,For storage only,37,Pian di Alne,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22405,148719,Switzerland,National Inventory,2011,For storage only,37,Bilderne,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22406,148720,Switzerland,National Inventory,2011,For storage only,37,Pomareda,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22407,148721,Switzerland,National Inventory,2011,For storage only,37,Grand Bataillard,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22408,148722,Switzerland,National Inventory,2011,For storage only,37,Iles des Clous,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22409,148723,Switzerland,National Inventory,2011,For storage only,37,Maggia,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22410,148724,Switzerland,National Inventory,2011,For storage only,37,Pfynwald,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22411,148725,Switzerland,National Inventory,2011,For storage only,37,Rosera,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22412,148726,Switzerland,National Inventory,2011,For storage only,37,Grund,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22413,148727,Switzerland,National Inventory,2011,For storage only,37,Derborence,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22414,148728,Switzerland,National Inventory,2011,For storage only,37,Les Gravines,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22415,148729,Switzerland,National Inventory,2011,For storage only,37,Pascoletto,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22416,148730,Switzerland,National Inventory,2011,For storage only,37,Isola,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22417,148731,Switzerland,National Inventory,2011,For storage only,37,Ai Fornas,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22418,148732,Switzerland,National Inventory,2011,For storage only,37,Saleggio,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22419,148733,Switzerland,National Inventory,2011,For storage only,37,Bassa,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22420,148734,Switzerland,National Inventory,2011,For storage only,37,Vallon de l'Allondon,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22421,148735,Switzerland,National Inventory,2011,For storage only,37,Moulin de Vert,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22422,148736,Switzerland,National Inventory,2011,For storage only,37,Boschetti,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22423,148737,Switzerland,National Inventory,2011,For storage only,37,Bolle di Magadino,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22424,148738,Switzerland,National Inventory,2011,For storage only,37,Ciossa Antognini,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22425,148739,Switzerland,National Inventory,2011,For storage only,37,Foce della Maggia,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22426,148740,Switzerland,National Inventory,2011,For storage only,37,Vallon de la Laire,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22427,148741,Switzerland,National Inventory,2011,For storage only,37,Vers Vaux,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22428,148742,Switzerland,National Inventory,2011,For storage only,37,Lotrey,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22429,148743,Switzerland,National Inventory,2011,For storage only,37,Salay,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22430,148744,Switzerland,National Inventory,2011,For storage only,37,Ferpècle,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22431,148745,Switzerland,National Inventory,2011,For storage only,37,Pramousse - Satarma,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22432,148746,Switzerland,National Inventory,2011,For storage only,37,Source du Trient,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22433,148747,Switzerland,National Inventory,2011,For storage only,37,La Borgne en amont d'Arolla,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22434,148748,Switzerland,National Inventory,2011,For storage only,37,Madonna del Piano,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22435,148750,Switzerland,National Inventory,2011,For storage only,37,Chatzensee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22436,148751,Switzerland,National Inventory,2011,For storage only,37,Taumoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22437,148752,Switzerland,National Inventory,2011,For storage only,37,Moos Schoenenhof bei Wallisellen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22438,148753,Switzerland,National Inventory,2011,For storage only,37,Wildert,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22439,148754,Switzerland,National Inventory,2011,For storage only,37,Rotmoos 4,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22440,148755,Switzerland,National Inventory,2011,For storage only,37,Suruggen/Chellersegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22441,148756,Switzerland,National Inventory,2011,For storage only,37,Hofguetmoor,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22442,148757,Switzerland,National Inventory,2011,For storage only,37,Weid,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22443,148758,Switzerland,National Inventory,2011,For storage only,37,Torfriet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22444,148759,Switzerland,National Inventory,2011,For storage only,37,Fischbacher Moos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22445,148760,Switzerland,National Inventory,2011,For storage only,37,Forenmoos/Schachenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22446,148761,Switzerland,National Inventory,2011,For storage only,37,Robenhauserriet/Pfaeffikersee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22447,148762,Switzerland,National Inventory,2011,For storage only,37,Hirschberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22448,148763,Switzerland,National Inventory,2011,For storage only,37,Nisplismoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22449,148764,Switzerland,National Inventory,2011,For storage only,37,Moor suedoestlich Beldschwendi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22450,148765,Switzerland,National Inventory,2011,For storage only,37,Gontenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22451,148767,Switzerland,National Inventory,2011,For storage only,37,Barchetsee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22452,148768,Switzerland,National Inventory,2011,For storage only,37,Raeubrichseen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22453,148769,Switzerland,National Inventory,2011,For storage only,37,Gurisee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22454,148770,Switzerland,National Inventory,2011,For storage only,37,Hudelmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22455,148771,Switzerland,National Inventory,2011,For storage only,37,Mettmenhasler See,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22456,148772,Switzerland,National Inventory,2011,For storage only,37,Bergwis,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22457,148773,Switzerland,National Inventory,2011,For storage only,37,Chraeenriet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22458,148774,Switzerland,National Inventory,2011,For storage only,37,Huetten,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22459,148775,Switzerland,National Inventory,2011,For storage only,37,Moor nordwestlich Gisleren/Schoenauwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22460,148776,Switzerland,National Inventory,2011,For storage only,37,Helchen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22461,148777,Switzerland,National Inventory,2011,For storage only,37,Loechli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22462,148778,Switzerland,National Inventory,2011,For storage only,37,Ambitzgi/Boehnlerriet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22463,148779,Switzerland,National Inventory,2011,For storage only,37,Breitmoos 2,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22464,148780,Switzerland,National Inventory,2011,For storage only,37,Moor auf dem Schwarzenberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22465,148781,Switzerland,National Inventory,2011,For storage only,37,Stillert,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22466,148782,Switzerland,National Inventory,2011,For storage only,37,Untere Fischeren,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22467,148783,Switzerland,National Inventory,2011,For storage only,37,Hiwiler Riet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22468,148784,Switzerland,National Inventory,2011,For storage only,37,Oberhoefler Riet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22469,148785,Switzerland,National Inventory,2011,For storage only,37,Vordere Wartegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22470,148786,Switzerland,National Inventory,2011,For storage only,37,Forenmoesli/Burketwald/Paradisli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22471,148787,Switzerland,National Inventory,2011,For storage only,37,Guggenhalden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22472,148788,Switzerland,National Inventory,2011,For storage only,37,Bruggerenwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22473,148789,Switzerland,National Inventory,2011,For storage only,37,Moore noerdlich Guggeien,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22474,148790,Switzerland,National Inventory,2011,For storage only,37,La Tourbiere des Enfers,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22475,148791,Switzerland,National Inventory,2011,For storage only,37,Ober Bad,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22476,148792,Switzerland,National Inventory,2011,For storage only,37,Moore zwischen Alp Stoeck und Gschwend,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22477,148793,Switzerland,National Inventory,2011,For storage only,37,Moor zwischen Telleren und Chli Langboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22478,148794,Switzerland,National Inventory,2011,For storage only,37,Plain de Saigne,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22479,148795,Switzerland,National Inventory,2011,For storage only,37,Moor Rinderweiderhau/Hinter Bisliken,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22480,148796,Switzerland,National Inventory,2011,For storage only,37,Salomonstempel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22481,148797,Switzerland,National Inventory,2011,For storage only,37,Potersalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22482,148798,Switzerland,National Inventory,2011,For storage only,37,Chellen/Allmeindswald/Bendelried,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22483,148799,Switzerland,National Inventory,2011,For storage only,37,La Couaye,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22484,148800,Switzerland,National Inventory,2011,For storage only,37,Tourbiere a l'est des Neufs Pres,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22485,148801,Switzerland,National Inventory,2011,For storage only,37,Unterloch/Grundlosen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22486,148802,Switzerland,National Inventory,2011,For storage only,37,Derriere les Embreux,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22487,148803,Switzerland,National Inventory,2011,For storage only,37,Foret du Peche,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22488,148804,Switzerland,National Inventory,2011,For storage only,37,Moore auf dem Rickenpass,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22489,148805,Switzerland,National Inventory,2011,For storage only,37,Cholwald Schwaegalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22490,148806,Switzerland,National Inventory,2011,For storage only,37,Les Embreux,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22491,148807,Switzerland,National Inventory,2011,For storage only,37,Chlosterwald-Moore/Ampferenboedeli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22492,148808,Switzerland,National Inventory,2011,For storage only,37,Moore bei Steig und Schartegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22493,148809,Switzerland,National Inventory,2011,For storage only,37,Unter Huettenbueel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22494,148810,Switzerland,National Inventory,2011,For storage only,37,Egelsee 2,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22495,148811,Switzerland,National Inventory,2011,For storage only,37,Moore im Traemelloch,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22496,148812,Switzerland,National Inventory,2011,For storage only,37,La Saigne a l'est des Rouges-Terres,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22497,148813,Switzerland,National Inventory,2011,For storage only,37,Schoenbuehl,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22498,148814,Switzerland,National Inventory,2011,For storage only,37,Seeweidsee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22499,148815,Switzerland,National Inventory,2011,For storage only,37,La Sagne et les Tourbieres de Bellelay,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22500,148816,Switzerland,National Inventory,2011,For storage only,37,Moore auf dem Chraezerenpass,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22501,148817,Switzerland,National Inventory,2011,For storage only,37,Tourbiere a l'ouest de Predame,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22502,148818,Switzerland,National Inventory,2011,For storage only,37,Eggweid auf dem Ricken,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22503,148819,Switzerland,National Inventory,2011,For storage only,37,Moor zwischen Turn und Laub,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22504,148820,Switzerland,National Inventory,2011,For storage only,37,Ruetiwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22505,148821,Switzerland,National Inventory,2011,For storage only,37,Les Royes,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22506,148822,Switzerland,National Inventory,2011,For storage only,37,Bilchenriet/Unterwald/Schiltmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22507,148823,Switzerland,National Inventory,2011,For storage only,37,Unterrifferswilermoos/Chrutzelen/Oberrifferswilermoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22508,148824,Switzerland,National Inventory,2011,For storage only,37,La Tourbiere au sud des Veaux,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22509,148825,Switzerland,National Inventory,2011,For storage only,37,Etang de la Gruere,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22510,148826,Switzerland,National Inventory,2011,For storage only,37,Gruen/Neuhuettli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22511,148827,Switzerland,National Inventory,2011,For storage only,37,La Tourbiere/Ronde Sagne,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22512,148828,Switzerland,National Inventory,2011,For storage only,37,Aegelsee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22513,148829,Switzerland,National Inventory,2011,For storage only,37,Grindelmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22514,148830,Switzerland,National Inventory,2011,For storage only,37,Hochmoor bei Etzelwil,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22515,148831,Switzerland,National Inventory,2011,For storage only,37,Hinterschluchen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22516,148832,Switzerland,National Inventory,2011,For storage only,37,Hagenholz/Hagenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22517,148833,Switzerland,National Inventory,2011,For storage only,37,Rorholz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22518,148834,Switzerland,National Inventory,2011,For storage only,37,Paturage du Droit,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22519,148835,Switzerland,National Inventory,2011,For storage only,37,Friessen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22520,148836,Switzerland,National Inventory,2011,For storage only,37,Moore auf der Wolzenalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22521,148837,Switzerland,National Inventory,2011,For storage only,37,La Tourbiere de la Chaux-des-Breuleux,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22522,148838,Switzerland,National Inventory,2011,For storage only,37,Gubelspitz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22523,148839,Switzerland,National Inventory,2011,For storage only,37,Chrutzelenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22524,148840,Switzerland,National Inventory,2011,For storage only,37,Feldmoos/Moore auf dem Feldmooshubel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22525,148841,Switzerland,National Inventory,2011,For storage only,37,Luetisalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22526,148842,Switzerland,National Inventory,2011,For storage only,37,Ballmoos Lieli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22527,148843,Switzerland,National Inventory,2011,For storage only,37,Haeglimoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22528,148844,Switzerland,National Inventory,2011,For storage only,37,Dreihuetten/Gampluet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22529,148845,Switzerland,National Inventory,2011,For storage only,37,Tourbieres de Chanteraine,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22530,148846,Switzerland,National Inventory,2011,For storage only,37,Spitzenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22531,148847,Switzerland,National Inventory,2011,For storage only,37,Schoenenboden/Sommerigchopf,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22532,148848,Switzerland,National Inventory,2011,For storage only,37,Creux de l'Epral,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22533,148849,Switzerland,National Inventory,2011,For storage only,37,Moor noerdlich Heeg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22534,148850,Switzerland,National Inventory,2011,For storage only,37,Hinter Engi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22535,148851,Switzerland,National Inventory,2011,For storage only,37,Munzenriet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22536,148852,Switzerland,National Inventory,2011,For storage only,37,Moor zwischen Bueel uns Blattwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22537,148853,Switzerland,National Inventory,2011,For storage only,37,Hinterbergried,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22538,148854,Switzerland,National Inventory,2011,For storage only,37,Vorderwaengi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22539,148855,Switzerland,National Inventory,2011,For storage only,37,Au/Hinterlaad,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22540,148856,Switzerland,National Inventory,2011,For storage only,37,Gubelmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22541,148857,Switzerland,National Inventory,2011,For storage only,37,Vermoorungen um das Sagenhoelzli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22542,148858,Switzerland,National Inventory,2011,For storage only,37,Goldach,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22543,148859,Switzerland,National Inventory,2011,For storage only,37,Chaelenmoor,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22544,148860,Switzerland,National Inventory,2011,For storage only,37,Schwendiseen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22545,148861,Switzerland,National Inventory,2011,For storage only,37,Aelpli/Eggenriet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22546,148862,Switzerland,National Inventory,2011,For storage only,37,Egelsee 1,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22547,148863,Switzerland,National Inventory,2011,For storage only,37,Hirzenbaeder/Sommerweid,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22548,148864,Switzerland,National Inventory,2011,For storage only,37,Taennlimoos/Hintercher-Moos/Muserholz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22549,148865,Switzerland,National Inventory,2011,For storage only,37,Hinter Hoehi/Boenisriet/Stoecklerriet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22550,148866,Switzerland,National Inventory,2011,For storage only,37,Schaersboden-Moor,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22551,148867,Switzerland,National Inventory,2011,For storage only,37,Tourbieres de la Chaux d'Abel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22552,148868,Switzerland,National Inventory,2011,For storage only,37,Gamperfin/Turbenriet/Tischenriet/Gapels,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22553,148869,Switzerland,National Inventory,2011,For storage only,37,Westlich Etzel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22554,148870,Switzerland,National Inventory,2011,For storage only,37,Altstofel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22555,148871,Switzerland,National Inventory,2011,For storage only,37,Schoenboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22556,148872,Switzerland,National Inventory,2011,For storage only,37,Chlepfimoos/Burgmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22557,148873,Switzerland,National Inventory,2011,For storage only,37,Moor noerdlich Schwandegg/Twaerfallen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22558,148874,Switzerland,National Inventory,2011,For storage only,37,Neugrundmoor/Wuerzgarten,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22559,148875,Switzerland,National Inventory,2011,For storage only,37,Schwantenau,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22560,148876,Switzerland,National Inventory,2011,For storage only,37,Champ Meusel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22561,148877,Switzerland,National Inventory,2011,For storage only,37,Altschenchopf,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22562,148878,Switzerland,National Inventory,2011,For storage only,37,Witi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22563,148879,Switzerland,National Inventory,2011,For storage only,37,Roblosen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22564,148880,Switzerland,National Inventory,2011,For storage only,37,Schindellegi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22565,148881,Switzerland,National Inventory,2011,For storage only,37,Moore beim Chlausechappeli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22566,148882,Switzerland,National Inventory,2011,For storage only,37,Breitried 1,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22567,148883,Switzerland,National Inventory,2011,For storage only,37,Altmatt-Biberbrugg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22568,148884,Switzerland,National Inventory,2011,For storage only,37,Zigermoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22569,148885,Switzerland,National Inventory,2011,For storage only,37,Vorderer Geissboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22570,148886,Switzerland,National Inventory,2011,For storage only,37,Grossriet/Arvenbueel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22571,148887,Switzerland,National Inventory,2011,For storage only,37,Hessenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22572,148888,Switzerland,National Inventory,2011,For storage only,37,Braemenegg/Furen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22573,148889,Switzerland,National Inventory,2011,For storage only,37,Tubenloch/Huenggi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22574,148890,Switzerland,National Inventory,2011,For storage only,37,Les Pontins,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22575,148891,Switzerland,National Inventory,2011,For storage only,37,Eigenried/Birchried/Kellersforen/Frueebueelmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22576,148892,Switzerland,National Inventory,2011,For storage only,37,Le Marais de la Joux du Plane,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22577,148893,Switzerland,National Inventory,2011,For storage only,37,Gross Moos im Schwendital,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22578,148894,Switzerland,National Inventory,2011,For storage only,37,Chaesgaden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22579,148895,Switzerland,National Inventory,2011,For storage only,37,Im Fang,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22580,148896,Switzerland,National Inventory,2011,For storage only,37,Blimoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22581,148897,Switzerland,National Inventory,2011,For storage only,37,Moore / Huerital,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22582,148898,Switzerland,National Inventory,2011,For storage only,37,Boggenberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22583,148899,Switzerland,National Inventory,2011,For storage only,37,Chnoden/Heumoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22584,148900,Switzerland,National Inventory,2011,For storage only,37,Marais de Pouillerel/Marais Jean Colard,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22585,148901,Switzerland,National Inventory,2011,For storage only,37,Nuechenstoeck,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22586,148902,Switzerland,National Inventory,2011,For storage only,37,Les Saignolis,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22587,148903,Switzerland,National Inventory,2011,For storage only,37,Madils,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22588,148904,Switzerland,National Inventory,2011,For storage only,37,Tobelwald/Guetental,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22589,148905,Switzerland,National Inventory,2011,For storage only,37,Les Eplatures-Temple,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22590,148906,Switzerland,National Inventory,2011,For storage only,37,Breitried 2,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22591,148908,Switzerland,National Inventory,2011,For storage only,37,Schwarzsee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22592,148909,Switzerland,National Inventory,2011,For storage only,37,Naserina,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22593,148910,Switzerland,National Inventory,2011,For storage only,37,Prodriet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22594,148911,Switzerland,National Inventory,2011,For storage only,37,Ausfluss des Rotsees,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22595,148912,Switzerland,National Inventory,2011,For storage only,37,Tuetenseeli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22596,148913,Switzerland,National Inventory,2011,For storage only,37,Platten,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22597,148914,Switzerland,National Inventory,2011,For storage only,37,Muertschen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22598,148915,Switzerland,National Inventory,2011,For storage only,37,Maerzental,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22599,148916,Switzerland,National Inventory,2011,For storage only,37,Meienmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22600,148917,Switzerland,National Inventory,2011,For storage only,37,Heidmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22601,148918,Switzerland,National Inventory,2011,For storage only,37,Tierfaederen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22602,148919,Switzerland,National Inventory,2011,For storage only,37,Chapfensee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22603,148920,Switzerland,National Inventory,2011,For storage only,37,Forenmoos im Sigiger Wald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22604,148921,Switzerland,National Inventory,2011,For storage only,37,Rietlichopf im Murgtal,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22605,148922,Switzerland,National Inventory,2011,For storage only,37,Unter Murgsee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22606,148923,Switzerland,National Inventory,2011,For storage only,37,Furenwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22607,148924,Switzerland,National Inventory,2011,For storage only,37,Gross Underbaech,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22608,148925,Switzerland,National Inventory,2011,For storage only,37,Chli Underbaech,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22609,148926,Switzerland,National Inventory,2011,For storage only,37,Hobacher,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22610,148927,Switzerland,National Inventory,2011,For storage only,37,Tubenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22611,148928,Switzerland,National Inventory,2011,For storage only,37,Inner und Usser Schnabel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22612,148929,Switzerland,National Inventory,2011,For storage only,37,Les Chauchets,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22613,148930,Switzerland,National Inventory,2011,For storage only,37,Moos nordwestlich Gibelegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22614,148931,Switzerland,National Inventory,2011,For storage only,37,Furenmoos bei der Krienseregg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22615,148932,Switzerland,National Inventory,2011,For storage only,37,Gibelegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22616,148933,Switzerland,National Inventory,2011,For storage only,37,Tourbieres du Cachot,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22617,148934,Switzerland,National Inventory,2011,For storage only,37,Forrenmoos/Meienstossmoos im Eigental,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22618,148935,Switzerland,National Inventory,2011,For storage only,37,Follenwald im Krienser Hohwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22619,148936,Switzerland,National Inventory,2011,For storage only,37,Vallee des Ponts-de-Martel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22620,148937,Switzerland,National Inventory,2011,For storage only,37,Vers le Maix Rochat,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22621,148938,Switzerland,National Inventory,2011,For storage only,37,Obersaess,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22622,148939,Switzerland,National Inventory,2011,For storage only,37,Arven unter Fraekmuent,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22623,148941,Switzerland,National Inventory,2011,For storage only,37,Marais de la Chatagne,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22624,148942,Switzerland,National Inventory,2011,For storage only,37,Buesselimoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22625,148943,Switzerland,National Inventory,2011,For storage only,37,Mettilimoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22626,148944,Switzerland,National Inventory,2011,For storage only,37,Loermoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22627,148945,Switzerland,National Inventory,2011,For storage only,37,Rond Buisson,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22628,148946,Switzerland,National Inventory,2011,For storage only,37,Bruendlen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22629,148947,Switzerland,National Inventory,2011,For storage only,37,Grossriet/Gnappiriet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22630,148948,Switzerland,National Inventory,2011,For storage only,37,Teufboeni,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22631,148949,Switzerland,National Inventory,2011,For storage only,37,Ehemaliger Pilatussee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22632,148950,Switzerland,National Inventory,2011,For storage only,37,Fuchserenmoos/Geugelhusenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22633,148951,Switzerland,National Inventory,2011,For storage only,37,Tourbiere pres de la Cornee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22634,148952,Switzerland,National Inventory,2011,For storage only,37,Fuchseren,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22635,148953,Switzerland,National Inventory,2011,For storage only,37,Fulried am Stelserberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22636,148954,Switzerland,National Inventory,2011,For storage only,37,Balmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22637,148955,Switzerland,National Inventory,2011,For storage only,37,Bemont/Chez Petoud,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22638,148956,Switzerland,National Inventory,2011,For storage only,37,Muellerenmoesli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22639,148957,Switzerland,National Inventory,2011,For storage only,37,Garichti,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22640,148958,Switzerland,National Inventory,2011,For storage only,37,Moor noerdlich First,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22641,148959,Switzerland,National Inventory,2011,For storage only,37,Staechtenmoesli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22642,148960,Switzerland,National Inventory,2011,For storage only,37,Les Sagnes-Rouges,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22643,148961,Switzerland,National Inventory,2011,For storage only,37,Rongg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22644,148962,Switzerland,National Inventory,2011,For storage only,37,Riedzoepf,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22645,148963,Switzerland,National Inventory,2011,For storage only,37,Grotzenbueel (Braunwald),Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22646,148964,Switzerland,National Inventory,2011,For storage only,37,Le Brouillet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22647,148965,Switzerland,National Inventory,2011,For storage only,37,Matt oberhalb Stausee Garichti,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22648,148966,Switzerland,National Inventory,2011,For storage only,37,Riedboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22649,148967,Switzerland,National Inventory,2011,For storage only,37,Etzelhuesli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22650,148968,Switzerland,National Inventory,2011,For storage only,37,Juchmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22651,148969,Switzerland,National Inventory,2011,For storage only,37,Rischigenmatt - Rotibach,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22652,148970,Switzerland,National Inventory,2011,For storage only,37,Laengenfeldmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22653,148971,Switzerland,National Inventory,2011,For storage only,37,Horn bei Tratza,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22654,148972,Switzerland,National Inventory,2011,For storage only,37,Ober Lauenberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22655,148973,Switzerland,National Inventory,2011,For storage only,37,Seeliboden im Choltal,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22656,148974,Switzerland,National Inventory,2011,For storage only,37,Les Sagnettes sur Boveresse,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22657,148975,Switzerland,National Inventory,2011,For storage only,37,Taellenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22658,148976,Switzerland,National Inventory,2011,For storage only,37,Scheidegg im Choltal,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22659,148977,Switzerland,National Inventory,2011,For storage only,37,Aebnistetten,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22660,148978,Switzerland,National Inventory,2011,For storage only,37,Meiengraben,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22661,148979,Switzerland,National Inventory,2011,For storage only,37,Zwischen Horweli und Rossweid,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22662,148980,Switzerland,National Inventory,2011,For storage only,37,Zwischen Horweli und der Grossen Schliere,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22663,148981,Switzerland,National Inventory,2011,For storage only,37,Gerzensee im Kernwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22664,148982,Switzerland,National Inventory,2011,For storage only,37,Teilenboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22665,148983,Switzerland,National Inventory,2011,For storage only,37,Le Marais/Les Bochats,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22666,148984,Switzerland,National Inventory,2011,For storage only,37,Rosswaengenwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22667,148985,Switzerland,National Inventory,2011,For storage only,37,Unteres Schlierental,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22668,148986,Switzerland,National Inventory,2011,For storage only,37,Oestlich Brandchnubel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22669,148987,Switzerland,National Inventory,2011,For storage only,37,Zwischen Schwand und Guermschbach,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22670,148988,Switzerland,National Inventory,2011,For storage only,37,Guermschwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22671,148989,Switzerland,National Inventory,2011,For storage only,37,Wengli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22672,148990,Switzerland,National Inventory,2011,For storage only,37,Seeliwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22673,148991,Switzerland,National Inventory,2011,For storage only,37,Unter Wasserfallen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22674,148992,Switzerland,National Inventory,2011,For storage only,37,Hueenerguetsch,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22675,148993,Switzerland,National Inventory,2011,For storage only,37,Obere Schluecht/Untere Schluecht,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22676,148994,Switzerland,National Inventory,2011,For storage only,37,La Sagnette/Les Tourbieres,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22677,148995,Switzerland,National Inventory,2011,For storage only,37,Schwendi Kaltbad,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22678,148996,Switzerland,National Inventory,2011,For storage only,37,Marchmettlen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22679,148997,Switzerland,National Inventory,2011,For storage only,37,Haesiseggboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22680,148998,Switzerland,National Inventory,2011,For storage only,37,Gerenstock,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22681,148999,Switzerland,National Inventory,2011,For storage only,37,Duerrenboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22682,149000,Switzerland,National Inventory,2011,For storage only,37,Talhubel/Siterenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22683,149001,Switzerland,National Inventory,2011,For storage only,37,Urnerboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22684,149002,Switzerland,National Inventory,2011,For storage only,37,Zwischen Glaubenberg und Rossalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22685,149003,Switzerland,National Inventory,2011,For storage only,37,Obermattboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22686,149004,Switzerland,National Inventory,2011,For storage only,37,Gross Lucht,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22687,149005,Switzerland,National Inventory,2011,For storage only,37,Suedlich Groen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22688,149006,Switzerland,National Inventory,2011,For storage only,37,Ober Sewen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22689,149007,Switzerland,National Inventory,2011,For storage only,37,Trogenwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22690,149008,Switzerland,National Inventory,2011,For storage only,37,Muenchenboden/Grund/Ochsenalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22691,149009,Switzerland,National Inventory,2011,For storage only,37,Fangboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22692,149010,Switzerland,National Inventory,2011,For storage only,37,Zwischen Guggenen und Unter Aenggenlauenen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22693,149011,Switzerland,National Inventory,2011,For storage only,37,Unter Sewen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22694,149012,Switzerland,National Inventory,2011,For storage only,37,Gross Trogen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22695,149013,Switzerland,National Inventory,2011,For storage only,37,Schwand,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22696,149014,Switzerland,National Inventory,2011,For storage only,37,Ruechiwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22697,149015,Switzerland,National Inventory,2011,For storage only,37,Chli Trogen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22698,149016,Switzerland,National Inventory,2011,For storage only,37,Zwischen Fuersteinwald und Blattli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22699,149017,Switzerland,National Inventory,2011,For storage only,37,Nollen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22700,149018,Switzerland,National Inventory,2011,For storage only,37,Riedboden bei Zischlig,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22701,149019,Switzerland,National Inventory,2011,For storage only,37,Taellenmoos im Hilferental,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22702,149020,Switzerland,National Inventory,2011,For storage only,37,Doersmatt,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22703,149021,Switzerland,National Inventory,2011,For storage only,37,Riedmattschwand,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22704,149022,Switzerland,National Inventory,2011,For storage only,37,Daelenboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22705,149023,Switzerland,National Inventory,2011,For storage only,37,Hagleren,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22706,149024,Switzerland,National Inventory,2011,For storage only,37,Duedingermoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22707,149025,Switzerland,National Inventory,2011,For storage only,37,Mouille de la Vraconne,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22708,149026,Switzerland,National Inventory,2011,For storage only,37,Grossweid bei Laret,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22709,149027,Switzerland,National Inventory,2011,For storage only,37,Siehenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22710,149028,Switzerland,National Inventory,2011,For storage only,37,Staechelegg/Ghack,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22711,149029,Switzerland,National Inventory,2011,For storage only,37,Oberer Rorwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22712,149030,Switzerland,National Inventory,2011,For storage only,37,Cheiserschwand,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22713,149031,Switzerland,National Inventory,2011,For storage only,37,Rormettlen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22714,149032,Switzerland,National Inventory,2011,For storage only,37,Rorwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22715,149033,Switzerland,National Inventory,2011,For storage only,37,Pfaffenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22716,149034,Switzerland,National Inventory,2011,For storage only,37,Gaensenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22717,149035,Switzerland,National Inventory,2011,For storage only,37,Mouille au Sayet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22718,149036,Switzerland,National Inventory,2011,For storage only,37,Zwischen Schlund und Aenzihuetten,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22719,149037,Switzerland,National Inventory,2011,For storage only,37,Merliwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22720,149038,Switzerland,National Inventory,2011,For storage only,37,Les Mouilles,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22721,149039,Switzerland,National Inventory,2011,For storage only,37,Rischli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22722,149040,Switzerland,National Inventory,2011,For storage only,37,Wachseldornmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22723,149041,Switzerland,National Inventory,2011,For storage only,37,Zwischen Wagliseichnubel und Ghack,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22724,149042,Switzerland,National Inventory,2011,For storage only,37,Flueegfaeael/Steinmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22725,149043,Switzerland,National Inventory,2011,For storage only,37,Wagliseichnubel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22726,149044,Switzerland,National Inventory,2011,For storage only,37,Moos bei Wachseldorn/Untermoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22727,149045,Switzerland,National Inventory,2011,For storage only,37,Husegg-Hurnischwand,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22728,149046,Switzerland,National Inventory,2011,For storage only,37,Husegg-Ochsenweid,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22729,149047,Switzerland,National Inventory,2011,For storage only,37,Suedlich Ober Saffertberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22730,149048,Switzerland,National Inventory,2011,For storage only,37,Totmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22731,149049,Switzerland,National Inventory,2011,For storage only,37,Zopf/Salwiden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22732,149050,Switzerland,National Inventory,2011,For storage only,37,Les Araignys,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22733,149051,Switzerland,National Inventory,2011,For storage only,37,Guntlishuetten,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22734,149052,Switzerland,National Inventory,2011,For storage only,37,Gross Gfael,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22735,149053,Switzerland,National Inventory,2011,For storage only,37,Salwidili,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22736,149054,Switzerland,National Inventory,2011,For storage only,37,Mouille de la Sagne,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22737,149055,Switzerland,National Inventory,2011,For storage only,37,Husegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22738,149056,Switzerland,National Inventory,2011,For storage only,37,Rossweid,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22739,149057,Switzerland,National Inventory,2011,For storage only,37,Wagliseiboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22740,149058,Switzerland,National Inventory,2011,For storage only,37,Laubersmadghack,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22741,149059,Switzerland,National Inventory,2011,For storage only,37,Gerschni,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22742,149060,Switzerland,National Inventory,2011,For storage only,37,Feldmoos (Gerschni),Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22743,149061,Switzerland,National Inventory,2011,For storage only,37,Ried unter dem Raemisboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22744,149062,Switzerland,National Inventory,2011,For storage only,37,Tuernliwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22745,149063,Switzerland,National Inventory,2011,For storage only,37,Vorderes Steinetli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22746,149064,Switzerland,National Inventory,2011,For storage only,37,Mittlerschwarzenegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22747,149065,Switzerland,National Inventory,2011,For storage only,37,Fulensee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22748,149066,Switzerland,National Inventory,2011,For storage only,37,Fischbachmoos/Obermoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22749,149067,Switzerland,National Inventory,2011,For storage only,37,Rotmoos 3,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22750,149068,Switzerland,National Inventory,2011,For storage only,37,Baersel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22751,149069,Switzerland,National Inventory,2011,For storage only,37,Haengstmoor,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22752,149070,Switzerland,National Inventory,2011,For storage only,37,Schwandholz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22753,149071,Switzerland,National Inventory,2011,For storage only,37,Vorderes Rotmoesli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22754,149072,Switzerland,National Inventory,2011,For storage only,37,Usserberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22755,149073,Switzerland,National Inventory,2011,For storage only,37,Schwarzsee bei Arosa,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22756,149074,Switzerland,National Inventory,2011,For storage only,37,Moore im Steiniwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22757,149075,Switzerland,National Inventory,2011,For storage only,37,Moore oestlich Aellgaeuli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22758,149076,Switzerland,National Inventory,2011,For storage only,37,Moore zwischen Mirrenegg und Aellgaeuli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22759,149077,Switzerland,National Inventory,2011,For storage only,37,Lai Nair,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22760,149078,Switzerland,National Inventory,2011,For storage only,37,Clavadeler Berg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22761,149079,Switzerland,National Inventory,2011,For storage only,37,Esleren/Gummenalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22762,149080,Switzerland,National Inventory,2011,For storage only,37,Horneggwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22763,149081,Switzerland,National Inventory,2011,For storage only,37,Rotmoos 1,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22764,149082,Switzerland,National Inventory,2011,For storage only,37,Rueti am Arnisee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22765,149083,Switzerland,National Inventory,2011,For storage only,37,Stouffe,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22766,149084,Switzerland,National Inventory,2011,For storage only,37,Gmeine Schoeriz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22767,149085,Switzerland,National Inventory,2011,For storage only,37,Trogenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22768,149086,Switzerland,National Inventory,2011,For storage only,37,Moore noerdlich Gruenenbergpass,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22769,149087,Switzerland,National Inventory,2011,For storage only,37,Entenmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22770,149088,Switzerland,National Inventory,2011,For storage only,37,Moor westlich Steinige Schoeriz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22771,149089,Switzerland,National Inventory,2011,For storage only,37,Moor oestlich Unteres Hoernli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22772,149090,Switzerland,National Inventory,2011,For storage only,37,Moeser oestlich Widegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22773,149091,Switzerland,National Inventory,2011,For storage only,37,Moor suedwestlich Steinige Schoeriz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22774,149092,Switzerland,National Inventory,2011,For storage only,37,Hoehenschwandmoor,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22775,149093,Switzerland,National Inventory,2011,For storage only,37,Moore suedwestlich Gruenenbergpass,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22776,149094,Switzerland,National Inventory,2011,For storage only,37,Moor nordoestlich Oberes Hoernli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22777,149095,Switzerland,National Inventory,2011,For storage only,37,Schluchhole,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22778,149096,Switzerland,National Inventory,2011,For storage only,37,Moor suedlich Moeser,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22779,149097,Switzerland,National Inventory,2011,For storage only,37,Moore hinder der Egg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22780,149098,Switzerland,National Inventory,2011,For storage only,37,Moor nordoestlich Faerrich am Bol,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22781,149099,Switzerland,National Inventory,2011,For storage only,37,Moor noerdlich Oberes Hoernli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22782,149100,Switzerland,National Inventory,2011,For storage only,37,Moor zw. Lombachalp und Teufengraben,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22783,149101,Switzerland,National Inventory,2011,For storage only,37,Affeier/Pifal,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22784,149102,Switzerland,National Inventory,2011,For storage only,37,Moor oestlich Wissenbach/Gurnigel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22785,149103,Switzerland,National Inventory,2011,For storage only,37,Moore suedoestlich Faerrich am Bol,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22786,149104,Switzerland,National Inventory,2011,For storage only,37,Moor westlich Wissenbach/Gurnigel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22787,149105,Switzerland,National Inventory,2011,For storage only,37,Moor bei Lombachalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22788,149106,Switzerland,National Inventory,2011,For storage only,37,Zettenalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22789,149107,Switzerland,National Inventory,2011,For storage only,37,Seelein bei der Maegisalp/Seemad,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22790,149108,Switzerland,National Inventory,2011,For storage only,37,Moor oberhalb Cholischwand,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22791,149109,Switzerland,National Inventory,2011,For storage only,37,Schalenberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22792,149110,Switzerland,National Inventory,2011,For storage only,37,Moore im Schoepfewald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22793,149111,Switzerland,National Inventory,2011,For storage only,37,Lischboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22794,149112,Switzerland,National Inventory,2011,For storage only,37,Rotmoos 2,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22795,149113,Switzerland,National Inventory,2011,For storage only,37,Heidsee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22796,149114,Switzerland,National Inventory,2011,For storage only,37,Selenen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22797,149115,Switzerland,National Inventory,2011,For storage only,37,Feldmoos 2,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22798,149116,Switzerland,National Inventory,2011,For storage only,37,Sortel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22799,149117,Switzerland,National Inventory,2011,For storage only,37,Grossfischbaechen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22800,149118,Switzerland,National Inventory,2011,For storage only,37,Riederen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22801,149119,Switzerland,National Inventory,2011,For storage only,37,Moorwald Hinters Laeger,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22802,149120,Switzerland,National Inventory,2011,For storage only,37,In Miseren,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22803,149121,Switzerland,National Inventory,2011,For storage only,37,Schwaendlibachgraben,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22804,149122,Switzerland,National Inventory,2011,For storage only,37,Hinters Laeger,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22805,149123,Switzerland,National Inventory,2011,For storage only,37,Moore oestlich Gemmenalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22806,149124,Switzerland,National Inventory,2011,For storage only,37,Tgiern Grond,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22807,149125,Switzerland,National Inventory,2011,For storage only,37,Duerrentaennli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22808,149126,Switzerland,National Inventory,2011,For storage only,37,Luegiboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22809,149127,Switzerland,National Inventory,2011,For storage only,37,Sporz Davains,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22810,149128,Switzerland,National Inventory,2011,For storage only,37,Muschenegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22811,149129,Switzerland,National Inventory,2011,For storage only,37,Turen/Chaltenbrunnen/Staeckliwaeldli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22812,149130,Switzerland,National Inventory,2011,For storage only,37,Moor oberhalb Burgfeldfluee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22813,149131,Switzerland,National Inventory,2011,For storage only,37,Alp Nadels,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22814,149132,Switzerland,National Inventory,2011,For storage only,37,Moor zwischen Floesch und Haelibach,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22815,149133,Switzerland,National Inventory,2011,For storage only,37,Sewelimoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22816,149134,Switzerland,National Inventory,2011,For storage only,37,Caischavedra,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22817,149135,Switzerland,National Inventory,2011,For storage only,37,Ladengrat,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22818,149136,Switzerland,National Inventory,2011,For storage only,37,Rigeli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22819,149137,Switzerland,National Inventory,2011,For storage only,37,Moor im Unterholz/Waldegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22820,149139,Switzerland,National Inventory,2011,For storage only,37,Moore am Schwyberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22821,149140,Switzerland,National Inventory,2011,For storage only,37,Palius (Val Mutschnengia),Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22822,149141,Switzerland,National Inventory,2011,For storage only,37,La Spielmannda/Untertierliberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22823,149142,Switzerland,National Inventory,2011,For storage only,37,Tourbiere a l'ouest de la Joux d'Alliere,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22824,149143,Switzerland,National Inventory,2011,For storage only,37,Tourbiere au Paquier dessus,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22825,149145,Switzerland,National Inventory,2011,For storage only,37,Pre Colard,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22826,149146,Switzerland,National Inventory,2011,For storage only,37,La Sagne du Sechey,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22827,149147,Switzerland,National Inventory,2011,For storage only,37,Les Gurles/Les Communs de Maules,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22828,149148,Switzerland,National Inventory,2011,For storage only,37,Tourbieres dans la Foret du Frachy,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22829,149149,Switzerland,National Inventory,2011,For storage only,37,Berg beim Goescheneralpsee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22830,149150,Switzerland,National Inventory,2011,For storage only,37,Aegelsee-Moor auf dem Diemtigbergli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22831,149151,Switzerland,National Inventory,2011,For storage only,37,La Tourbiere d'Echarlens,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22832,149152,Switzerland,National Inventory,2011,For storage only,37,La Sagne au sud-ouest du Lieu,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22833,149153,Switzerland,National Inventory,2011,For storage only,37,Traejen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22834,149154,Switzerland,National Inventory,2011,For storage only,37,Les Mosses - Rosez,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22835,149155,Switzerland,National Inventory,2011,For storage only,37,Pontet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22836,149156,Switzerland,National Inventory,2011,For storage only,37,Moor nordoestlich Mettlen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22837,149157,Switzerland,National Inventory,2011,For storage only,37,Les Grands Marais,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22838,149158,Switzerland,National Inventory,2011,For storage only,37,Feldmoos 1,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22839,149159,Switzerland,National Inventory,2011,For storage only,37,Breitmoos 1,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22840,149160,Switzerland,National Inventory,2011,For storage only,37,Moor nordoestlich Hochraejen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22841,149161,Switzerland,National Inventory,2011,For storage only,37,Petit Sauvage,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22842,149162,Switzerland,National Inventory,2011,For storage only,37,La Mosse d'en Bas,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22843,149163,Switzerland,National Inventory,2011,For storage only,37,Les Sagnes du Sentier,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22844,149164,Switzerland,National Inventory,2011,For storage only,37,Les Bouleyres,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22845,149165,Switzerland,National Inventory,2011,For storage only,37,"Derriere la Cote, sud-est",Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22846,149166,Switzerland,National Inventory,2011,For storage only,37,Moore und Seen bei Brustplaetz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22847,149167,Switzerland,National Inventory,2011,For storage only,37,Chuchifang,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22848,149168,Switzerland,National Inventory,2011,For storage only,37,Ufem Sand,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22849,149169,Switzerland,National Inventory,2011,For storage only,37,"Derriere la Cote, sud-ouest",Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22850,149170,Switzerland,National Inventory,2011,For storage only,37,Les Tourbieres,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22851,149171,Switzerland,National Inventory,2011,For storage only,37,La Sagne du Campe,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22852,149172,Switzerland,National Inventory,2011,For storage only,37,Moor bei Aelbi Flue,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22853,149173,Switzerland,National Inventory,2011,For storage only,37,Moor beim Fysteren Graben,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22854,149174,Switzerland,National Inventory,2011,For storage only,37,La Thomassette,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22855,149175,Switzerland,National Inventory,2011,For storage only,37,Bruchsee auf dem Jaunpass,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22856,149176,Switzerland,National Inventory,2011,For storage only,37,Moor noerdlich Toffelsweid,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22857,149177,Switzerland,National Inventory,2011,For storage only,37,Station Wengernalp,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22858,149178,Switzerland,National Inventory,2011,For storage only,37,Tourbiere des Alpettes,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22859,149179,Switzerland,National Inventory,2011,For storage only,37,La Bursine,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22860,149180,Switzerland,National Inventory,2011,For storage only,37,Chaenelegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22861,149181,Switzerland,National Inventory,2011,For storage only,37,Sagne de Pre Rodet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22862,149182,Switzerland,National Inventory,2011,For storage only,37,Sagnes de la Burtigniere,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22863,149183,Switzerland,National Inventory,2011,For storage only,37,"Niremont, Arete nord",Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22864,149184,Switzerland,National Inventory,2011,For storage only,37,Sparemoos/Tots Maedli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22865,149185,Switzerland,National Inventory,2011,For storage only,37,Gros Mont,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22866,149186,Switzerland,National Inventory,2011,For storage only,37,Moore suedwestlich Tolmoos,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22867,149187,Switzerland,National Inventory,2011,For storage only,37,Bois du Carre,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22868,149188,Switzerland,National Inventory,2011,For storage only,37,"Niremont, Arete ouest",Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22869,149189,Switzerland,National Inventory,2011,For storage only,37,Cadagno di fuori,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22870,149190,Switzerland,National Inventory,2011,For storage only,37,Daelmoos Achseten,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22871,149191,Switzerland,National Inventory,2011,For storage only,37,Lac de Lussy,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22872,149192,Switzerland,National Inventory,2011,For storage only,37,Baerfel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22873,149193,Switzerland,National Inventory,2011,For storage only,37,Bois du Marchairuz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22874,149194,Switzerland,National Inventory,2011,For storage only,37,Petits Plats,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22875,149195,Switzerland,National Inventory,2011,For storage only,37,Lai Neir,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22876,149196,Switzerland,National Inventory,2011,For storage only,37,Bois des Cent Toises,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22877,149197,Switzerland,National Inventory,2011,For storage only,37,Pian Segno,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22878,149198,Switzerland,National Inventory,2011,For storage only,37,Pian Secco,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22879,149199,Switzerland,National Inventory,2011,For storage only,37,Paleis,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22880,149200,Switzerland,National Inventory,2011,For storage only,37,Frodalera,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22881,149201,Switzerland,National Inventory,2011,For storage only,37,Alp Flix,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22882,149202,Switzerland,National Inventory,2011,For storage only,37,Pe d'Munt/Prade,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22883,149203,Switzerland,National Inventory,2011,For storage only,37,Devin des Dailles,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22884,149204,Switzerland,National Inventory,2011,For storage only,37,Vall' Ambrosa,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22885,149205,Switzerland,National Inventory,2011,For storage only,37,Campra di la,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22886,149206,Switzerland,National Inventory,2011,For storage only,37,Tourbiere au sud-est de Fruence,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22887,149207,Switzerland,National Inventory,2011,For storage only,37,Understeinberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22888,149208,Switzerland,National Inventory,2011,For storage only,37,Saanenmoeser/Daelweid,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22889,149209,Switzerland,National Inventory,2011,For storage only,37,Choma Suot - Palued Chape,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22890,149210,Switzerland,National Inventory,2011,For storage only,37,Stazer Wald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22891,149211,Switzerland,National Inventory,2011,For storage only,37,Piano della Bolla,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22892,149212,Switzerland,National Inventory,2011,For storage only,37,Mottone di Garzonera,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22893,149213,Switzerland,National Inventory,2011,For storage only,37,Choma Sur,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22894,149214,Switzerland,National Inventory,2011,For storage only,37,Lej da Staz,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22895,149215,Switzerland,National Inventory,2011,For storage only,37,Creux du Croue,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22896,149216,Switzerland,National Inventory,2011,For storage only,37,Plaun da las Mujas,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22897,149217,Switzerland,National Inventory,2011,For storage only,37,Mauntschas,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22898,149218,Switzerland,National Inventory,2011,For storage only,37,Sass de la Golp (Lucomagno),Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22899,149219,Switzerland,National Inventory,2011,For storage only,37,Bedrina,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22900,149220,Switzerland,National Inventory,2011,For storage only,37,Filfalle,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22901,149221,Switzerland,National Inventory,2011,For storage only,37,Marais Rouge,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22902,149222,Switzerland,National Inventory,2011,For storage only,37,Ruewlispass,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22903,149223,Switzerland,National Inventory,2011,For storage only,37,God Surlej,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22904,149224,Switzerland,National Inventory,2011,For storage only,37,Bolle di Piana Selva,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22905,149225,Switzerland,National Inventory,2011,For storage only,37,Pian Casuleta,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22906,149226,Switzerland,National Inventory,2011,For storage only,37,Bosch de San Remo,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22907,149227,Switzerland,National Inventory,2011,For storage only,37,Riere la Givrine,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22908,149228,Switzerland,National Inventory,2011,For storage only,37,Vel (Gribbio),Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22909,149229,Switzerland,National Inventory,2011,For storage only,37,Moor oberhalb Geilsbueel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22910,149230,Switzerland,National Inventory,2011,For storage only,37,Lagh Doss,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22911,149231,Switzerland,National Inventory,2011,For storage only,37,La Trelasse,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22912,149232,Switzerland,National Inventory,2011,For storage only,37,Suossa,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22913,149233,Switzerland,National Inventory,2011,For storage only,37,Tourbiere sous les Plans,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22914,149234,Switzerland,National Inventory,2011,For storage only,37,Moore suedoestlich Haslerberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22915,149235,Switzerland,National Inventory,2011,For storage only,37,Moore auf Betelberg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22916,149236,Switzerland,National Inventory,2011,For storage only,37,Tourbiere a l'est de la Lecherette,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22917,149237,Switzerland,National Inventory,2011,For storage only,37,"Communs des Mosses, ouest",Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22918,149238,Switzerland,National Inventory,2011,For storage only,37,"Communs des Mosses, est",Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22919,149239,Switzerland,National Inventory,2011,For storage only,37,Tourbiere de Pra Cornet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22920,149240,Switzerland,National Inventory,2011,For storage only,37,Passo del Maloja/Aira da la Palza,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22921,149241,Switzerland,National Inventory,2011,For storage only,37,Zwischen Malojapass und Val da Pila,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22922,149242,Switzerland,National Inventory,2011,For storage only,37,Col des Mosses,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22923,149243,Switzerland,National Inventory,2011,For storage only,37,Lauenensee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22924,149245,Switzerland,National Inventory,2011,For storage only,37,Plansena (Val da Camp),Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22925,149246,Switzerland,National Inventory,2011,For storage only,37,Aletschwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22926,149247,Switzerland,National Inventory,2011,For storage only,37,Bosch da la Furcela,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22927,149248,Switzerland,National Inventory,2011,For storage only,37,Flesch,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22928,149249,Switzerland,National Inventory,2011,For storage only,37,Alpe di Sceng,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22929,149250,Switzerland,National Inventory,2011,For storage only,37,Bolle di Pianazzora,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22930,149251,Switzerland,National Inventory,2011,For storage only,37,Piano sopra Visletto,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22931,149252,Switzerland,National Inventory,2011,For storage only,37,Pian di Scignan,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22932,149253,Switzerland,National Inventory,2011,For storage only,37,Simplonpass/Hopschusee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22933,149254,Switzerland,National Inventory,2011,For storage only,37,Boniger See,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22934,149255,Switzerland,National Inventory,2011,For storage only,37,Pian Segna,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22935,149256,Switzerland,National Inventory,2011,For storage only,37,La Maraiche de Plex,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22936,149257,Switzerland,National Inventory,2011,For storage only,37,Gola di Lago,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22937,149258,Switzerland,National Inventory,2011,For storage only,37,Gouille Verte,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22938,149259,Switzerland,National Inventory,2011,For storage only,37,Lac de Champex,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22939,149260,Switzerland,National Inventory,2011,For storage only,37,Erbagni,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22940,149261,Switzerland,National Inventory,2011,For storage only,37,Les Mosses de la Rogivue,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22941,149262,Switzerland,National Inventory,2011,For storage only,37,Les Tenasses,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22942,149263,Switzerland,National Inventory,2011,For storage only,37,Plattner Berga,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22943,149264,Switzerland,National Inventory,2011,For storage only,37,Rüwlisepass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22944,149265,Switzerland,National Inventory,2011,For storage only,37,Alp Sura,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22945,149266,Switzerland,National Inventory,2011,For storage only,37,Filfalle,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22946,149267,Switzerland,National Inventory,2011,For storage only,37,Marais de Bercher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22947,149268,Switzerland,National Inventory,2011,For storage only,37,Cua Boussan,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22948,149269,Switzerland,National Inventory,2011,For storage only,37,Gletti / Hubelboda,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22949,149270,Switzerland,National Inventory,2011,For storage only,37,Bolle di Piana Selva,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22950,149271,Switzerland,National Inventory,2011,For storage only,37,Bolle di Paltano,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22951,149272,Switzerland,National Inventory,2011,For storage only,37,Fäng / Hinder der Egg / Göüch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22952,149273,Switzerland,National Inventory,2011,For storage only,37,Barscheinz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22953,149274,Switzerland,National Inventory,2011,For storage only,37,Addi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22954,149275,Switzerland,National Inventory,2011,For storage only,37,Carà-Foppa,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22955,149276,Switzerland,National Inventory,2011,For storage only,37,Vél (Gribbio),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22956,149277,Switzerland,National Inventory,2011,For storage only,37,Moore oberhalb Geilsbüel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22957,149278,Switzerland,National Inventory,2011,For storage only,37,Cò,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22958,149279,Switzerland,National Inventory,2011,For storage only,37,Büelberg / Würtnere,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22959,149280,Switzerland,National Inventory,2011,For storage only,37,Bosch de San Remo,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22960,149281,Switzerland,National Inventory,2011,For storage only,37,Alpe Zaria,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22961,149282,Switzerland,National Inventory,2011,For storage only,37,Tgavretga,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22962,149283,Switzerland,National Inventory,2011,For storage only,37,Cuolmens,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22963,149284,Switzerland,National Inventory,2011,For storage only,37,Cheerweid / Ufem Lähe,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22964,149285,Switzerland,National Inventory,2011,For storage only,37,Lagh Doss,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22965,149286,Switzerland,National Inventory,2011,For storage only,37,Chlusi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22966,149287,Switzerland,National Inventory,2011,For storage only,37,Spittelmatte,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22967,149288,Switzerland,National Inventory,2011,For storage only,37,Lochberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22968,149289,Switzerland,National Inventory,2011,For storage only,37,Mot Scalotta,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22969,149290,Switzerland,National Inventory,2011,For storage only,37,Jufer Alpa,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22970,149291,Switzerland,National Inventory,2011,For storage only,37,Tourbière sous les Plans - Les Tésailles,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22971,149292,Switzerland,National Inventory,2011,For storage only,37,Am Eva dal Sett,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22972,149293,Switzerland,National Inventory,2011,For storage only,37,Moore westlich Hubel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22973,149294,Switzerland,National Inventory,2011,For storage only,37,Klöpflisberg Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22974,149295,Switzerland,National Inventory,2011,For storage only,37,Monts Chevreuils,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22975,149296,Switzerland,National Inventory,2011,For storage only,37,Verengo,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22976,149297,Switzerland,National Inventory,2011,For storage only,37,Garti,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22977,149298,Switzerland,National Inventory,2011,For storage only,37,Moore auf Betelberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22978,149299,Switzerland,National Inventory,2011,For storage only,37,Chalcheras,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22979,149300,Switzerland,National Inventory,2011,For storage only,37,Moore südöstlich Haslerberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22980,149301,Switzerland,National Inventory,2011,For storage only,37,Alp Tgavretga,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22981,149302,Switzerland,National Inventory,2011,For storage only,37,Portweid Golderne,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22982,149303,Switzerland,National Inventory,2011,For storage only,37,"Grydmeder, Chaslepalgg",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22983,149304,Switzerland,National Inventory,2011,For storage only,37,Moor östlich Trütlisbergpass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22984,149305,Switzerland,National Inventory,2011,For storage only,37,"Communs des Mosses, est de la route",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22985,149306,Switzerland,National Inventory,2011,For storage only,37,Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22986,149307,Switzerland,National Inventory,2011,For storage only,37,Moore südwestlich Haslerberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22987,149308,Switzerland,National Inventory,2011,For storage only,37,Tourbière à l'ouest de la Lécherette,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22988,149309,Switzerland,National Inventory,2011,For storage only,37,La Mossette,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22989,149310,Switzerland,National Inventory,2011,For storage only,37,Sattel / Brüchi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22990,149311,Switzerland,National Inventory,2011,For storage only,37,Corne du Soere,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22991,149312,Switzerland,National Inventory,2011,For storage only,37,Col des Mosses,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22992,149313,Switzerland,National Inventory,2011,For storage only,37,Pöriswaldmedli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22993,149314,Switzerland,National Inventory,2011,For storage only,37,Trüthartsweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22994,149315,Switzerland,National Inventory,2011,For storage only,37,Rohr,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22995,149316,Switzerland,National Inventory,2011,For storage only,37,Muotta da Güvè / Chantunatsch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22996,149317,Switzerland,National Inventory,2011,For storage only,37,Uf de Schibene,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22997,149318,Switzerland,National Inventory,2011,For storage only,37,Anteinettes d'en Haut,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22998,149319,Switzerland,National Inventory,2011,For storage only,37,Güvè / Crasta,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -22999,149320,Switzerland,National Inventory,2011,For storage only,37,Ustigwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23000,149321,Switzerland,National Inventory,2011,For storage only,37,Chatzberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23001,149322,Switzerland,National Inventory,2011,For storage only,37,Schmidsfang / Satteleggbärgli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23002,149323,Switzerland,National Inventory,2011,For storage only,37,Rysch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23003,149324,Switzerland,National Inventory,2011,For storage only,37,"Val Madris, Preda",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23004,149325,Switzerland,National Inventory,2011,For storage only,37,Val Fedoz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23005,149326,Switzerland,National Inventory,2011,For storage only,37,Tourbière de Pra Cornet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23006,149327,Switzerland,National Inventory,2011,For storage only,37,Stigelbergmad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23007,149328,Switzerland,National Inventory,2011,For storage only,37,Pâquier Mottier,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23008,149329,Switzerland,National Inventory,2011,For storage only,37,Passo del Maloja / Aira da la Palza,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23009,149330,Switzerland,National Inventory,2011,For storage only,37,Pöris,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23010,149331,Switzerland,National Inventory,2011,For storage only,37,Fonds de l'Hongrin,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23011,149332,Switzerland,National Inventory,2011,For storage only,37,Grandes Charbonnières,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23012,149333,Switzerland,National Inventory,2011,For storage only,37,Falksmatte / Sodersegg / Dürri,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23013,149334,Switzerland,National Inventory,2011,For storage only,37,Sonna,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23014,149335,Switzerland,National Inventory,2011,For storage only,37,am ussere Saligrabe,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23015,149336,Switzerland,National Inventory,2011,For storage only,37,Tschärzis,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23016,149337,Switzerland,National Inventory,2011,For storage only,37,Lauenensee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23017,149338,Switzerland,National Inventory,2011,For storage only,37,La Muraz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23018,149339,Switzerland,National Inventory,2011,For storage only,37,Stieretungel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23019,149340,Switzerland,National Inventory,2011,For storage only,37,Gros Brasset,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23020,149341,Switzerland,National Inventory,2011,For storage only,37,Färrich,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23021,149342,Switzerland,National Inventory,2011,For storage only,37,Le Bucley,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23022,149343,Switzerland,National Inventory,2011,For storage only,37,Les Saviez,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23023,149344,Switzerland,National Inventory,2011,For storage only,37,"Val Fex, Alp Suot",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23024,149345,Switzerland,National Inventory,2011,For storage only,37,Clos Montet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23025,149346,Switzerland,National Inventory,2011,For storage only,37,Plansena,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23026,149347,Switzerland,National Inventory,2011,For storage only,37,L'Aulagniez,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23027,149348,Switzerland,National Inventory,2011,For storage only,37,Rohr Gsteig,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23028,149349,Switzerland,National Inventory,2011,For storage only,37,Munt da San Franzesch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23029,149350,Switzerland,National Inventory,2011,For storage only,37,Oxefeld,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23030,149351,Switzerland,National Inventory,2011,For storage only,37,Zubenweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23031,149352,Switzerland,National Inventory,2011,For storage only,37,Planzalard,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23032,149353,Switzerland,National Inventory,2011,For storage only,37,Reusch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23033,149354,Switzerland,National Inventory,2011,For storage only,37,Les Moilles (VD),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23034,149355,Switzerland,National Inventory,2011,For storage only,37,Retaud,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23035,149356,Switzerland,National Inventory,2011,For storage only,37,Les Rouvenes,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23036,149357,Switzerland,National Inventory,2011,For storage only,37,Alpe di Sceng,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23037,149358,Switzerland,National Inventory,2011,For storage only,37,Larasèd,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23038,149359,Switzerland,National Inventory,2011,For storage only,37,Les Nicolets,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23039,149360,Switzerland,National Inventory,2011,For storage only,37,Les Preises,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23040,149361,Switzerland,National Inventory,2011,For storage only,37,Grand Bataillard,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23041,149362,Switzerland,National Inventory,2011,For storage only,37,Lanche di Iragna nord,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23042,149363,Switzerland,National Inventory,2011,For storage only,37,Lanche di Iragna sud,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23043,149364,Switzerland,National Inventory,2011,For storage only,37,Marais d'Ensex,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23044,149365,Switzerland,National Inventory,2011,For storage only,37,Alpe Corte Nuovo,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23045,149366,Switzerland,National Inventory,2011,For storage only,37,Les Rigoles,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23046,149367,Switzerland,National Inventory,2011,For storage only,37,Mutt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23047,149368,Switzerland,National Inventory,2011,For storage only,37,Palü Granda,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23048,149369,Switzerland,National Inventory,2011,For storage only,37,Les Verneys,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23049,149370,Switzerland,National Inventory,2011,For storage only,37,Ninda,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23050,149371,Switzerland,National Inventory,2011,For storage only,37,Boniger See,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23051,149372,Switzerland,National Inventory,2011,For storage only,37,Prés de Villette,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23052,149373,Switzerland,National Inventory,2011,For storage only,37,Bieltini,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23053,149374,Switzerland,National Inventory,2011,For storage only,37,Poutafontana,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23054,149375,Switzerland,National Inventory,2011,For storage only,37,Lac de Morgins,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23055,149376,Switzerland,National Inventory,2011,For storage only,37,Vers le Marais,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23056,149377,Switzerland,National Inventory,2011,For storage only,37,Les Moilles (VS),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23057,149378,Switzerland,National Inventory,2011,For storage only,37,Bochasse,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23058,149379,Switzerland,National Inventory,2011,For storage only,37,Champoussin,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23059,149380,Switzerland,National Inventory,2011,For storage only,37,Ar du Tsan,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23060,149381,Switzerland,National Inventory,2011,For storage only,37,Marais d'Ardon et de Chamoson,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23061,149382,Switzerland,National Inventory,2011,For storage only,37,Pian Segna,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23062,149383,Switzerland,National Inventory,2011,For storage only,37,L'Echereuse,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23063,149384,Switzerland,National Inventory,2011,For storage only,37,Lanca Sant'Antonio,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23064,149385,Switzerland,National Inventory,2011,For storage only,37,Malcantone,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23065,149386,Switzerland,National Inventory,2011,For storage only,37,Stagno Piano di Arbigo 2,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23066,149387,Switzerland,National Inventory,2011,For storage only,37,Piano di Arbigo 5,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23067,149388,Switzerland,National Inventory,2011,For storage only,37,Vigna Lunga-Trebbione,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23068,149389,Switzerland,National Inventory,2011,For storage only,37,Isoletta,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23069,149390,Switzerland,National Inventory,2011,For storage only,37,Barbescio,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23070,149391,Switzerland,National Inventory,2011,For storage only,37,Bograsso / Bolette,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23071,149392,Switzerland,National Inventory,2011,For storage only,37,Lanche al Pizzante,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23072,149393,Switzerland,National Inventory,2011,For storage only,37,Canale Demanio,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23073,149394,Switzerland,National Inventory,2011,For storage only,37,Ciossa Antognini,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23074,149395,Switzerland,National Inventory,2011,For storage only,37,Stagno Cugnoli Curti,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23075,149396,Switzerland,National Inventory,2011,For storage only,37,Piattone-Lischedo,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23076,149397,Switzerland,National Inventory,2011,For storage only,37,Delta della Maggia,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23077,149398,Switzerland,National Inventory,2011,For storage only,37,Monti di Medeglia est,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23078,149399,Switzerland,National Inventory,2011,For storage only,37,Monti di Medeglia ovest,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23079,149400,Switzerland,National Inventory,2011,For storage only,37,Vouasson,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23080,149401,Switzerland,National Inventory,2011,For storage only,37,Les Esserts,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23081,149402,Switzerland,National Inventory,2011,For storage only,37,Gola di Lago,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23082,149403,Switzerland,National Inventory,2011,For storage only,37,Chevillard,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23083,149404,Switzerland,National Inventory,2011,For storage only,37,Villette,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23084,149405,Switzerland,National Inventory,2011,For storage only,37,Lac de Champex,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23085,149406,Switzerland,National Inventory,2011,For storage only,37,Bolle di S. Martino,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23086,149407,Switzerland,National Inventory,2011,For storage only,37,Pian Casoro,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23087,149408,Switzerland,National Inventory,2011,For storage only,37,Pre Murin,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23088,149409,Switzerland,National Inventory,2011,For storage only,37,Molino,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23089,149410,Switzerland,National Inventory,2011,For storage only,37,Colombera,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23090,149411,Switzerland,National Inventory,2011,For storage only,37,Pra Coltello,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23091,149412,Switzerland,National Inventory,2011,For storage only,37,Lischetto Fossèe Seseglio,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23092,166445,Switzerland,National Inventory,2011,For storage only,37,Frodalera,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23093,166446,Switzerland,National Inventory,2011,For storage only,37,Alteweier,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23094,166447,Switzerland,National Inventory,2011,For storage only,37,Weierwisen / Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23095,166448,Switzerland,National Inventory,2011,For storage only,37,Ramser Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23096,166449,Switzerland,National Inventory,2011,For storage only,37,Schaarenwis,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23097,166450,Switzerland,National Inventory,2011,For storage only,37,Espen Riet / Ermatinger Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23098,166451,Switzerland,National Inventory,2011,For storage only,37,Espi / Hölzli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23099,166452,Switzerland,National Inventory,2011,For storage only,37,Espen Riet bei Ziegelhof,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23100,166453,Switzerland,National Inventory,2011,For storage only,37,Etzwiler Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23101,166454,Switzerland,National Inventory,2011,For storage only,37,Eschenzer Horn,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23102,166455,Switzerland,National Inventory,2011,For storage only,37,Truttikerried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23103,166456,Switzerland,National Inventory,2011,For storage only,37,Neuweier,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23104,166457,Switzerland,National Inventory,2011,For storage only,37,Husemersee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23105,166458,Switzerland,National Inventory,2011,For storage only,37,Oerlinger Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23106,166459,Switzerland,National Inventory,2011,For storage only,37,Dachsenhuser Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23107,166460,Switzerland,National Inventory,2011,For storage only,37,Barchetsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23108,166461,Switzerland,National Inventory,2011,For storage only,37,Bommer Weier,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23109,166462,Switzerland,National Inventory,2011,For storage only,37,Gippinger Grien,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23110,166463,Switzerland,National Inventory,2011,For storage only,37,Verlandung im Klingnauer Stausee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23111,166464,Switzerland,National Inventory,2011,For storage only,37,Gurisee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23112,166465,Switzerland,National Inventory,2011,For storage only,37,Luxburger Bucht,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23113,166466,Switzerland,National Inventory,2011,For storage only,37,Dürrenbiel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23114,166467,Switzerland,National Inventory,2011,For storage only,37,Baldisriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23115,166468,Switzerland,National Inventory,2011,For storage only,37,Weinmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23116,166469,Switzerland,National Inventory,2011,For storage only,37,Friltschener Riet / Märwiler Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23117,166470,Switzerland,National Inventory,2011,For storage only,37,Mettlen Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23118,166471,Switzerland,National Inventory,2011,For storage only,37,Hudelmoos (SG),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23119,166472,Switzerland,National Inventory,2011,For storage only,37,Überg Mas,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23120,166473,Switzerland,National Inventory,2011,For storage only,37,Neerer See,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23121,166474,Switzerland,National Inventory,2011,For storage only,37,Neeracher Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23122,166475,Switzerland,National Inventory,2011,For storage only,37,Warpeltal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23123,166476,Switzerland,National Inventory,2011,For storage only,37,Altenrhein,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23124,166477,Switzerland,National Inventory,2011,For storage only,37,Wilener Moos / Hauptwiler Weiher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23125,166478,Switzerland,National Inventory,2011,For storage only,37,Gärtensberg / Oberholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23126,166479,Switzerland,National Inventory,2011,For storage only,37,Steinmaurer Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23127,166480,Switzerland,National Inventory,2011,For storage only,37,Winkler Allmend,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23128,166481,Switzerland,National Inventory,2011,For storage only,37,Buriet / Buechsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23129,166482,Switzerland,National Inventory,2011,For storage only,37,Huebermoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23130,166483,Switzerland,National Inventory,2011,For storage only,37,Mettmenhasler See,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23131,166484,Switzerland,National Inventory,2011,For storage only,37,Zuzwiler Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23132,166485,Switzerland,National Inventory,2011,For storage only,37,Klotener Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23133,166486,Switzerland,National Inventory,2011,For storage only,37,Goldenes Tor / Rüti Allmend,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23134,166487,Switzerland,National Inventory,2011,For storage only,37,Schlosswinkel / Peterli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23135,166488,Switzerland,National Inventory,2011,For storage only,37,Erztal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23136,166489,Switzerland,National Inventory,2011,For storage only,37,Neuf Etang,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23137,166490,Switzerland,National Inventory,2011,For storage only,37,Boppelser Weid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23138,166491,Switzerland,National Inventory,2011,For storage only,37,Lenggenwiler Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23139,166492,Switzerland,National Inventory,2011,For storage only,37,Gstöck / Ifang,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23140,166493,Switzerland,National Inventory,2011,For storage only,37,Hagelriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23141,166494,Switzerland,National Inventory,2011,For storage only,37,Eigental-Riede,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23142,166495,Switzerland,National Inventory,2011,For storage only,37,Schlossweier,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23143,166496,Switzerland,National Inventory,2011,For storage only,37,Bichelsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23144,166497,Switzerland,National Inventory,2011,For storage only,37,Ägelsee (TG),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23145,166498,Switzerland,National Inventory,2011,For storage only,37,Mooswangen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23146,166499,Switzerland,National Inventory,2011,For storage only,37,Andwiler Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23147,166500,Switzerland,National Inventory,2011,For storage only,37,Rüeggetschwiler Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23148,166501,Switzerland,National Inventory,2011,For storage only,37,Awiler Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23149,166502,Switzerland,National Inventory,2011,For storage only,37,Chatzensee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23150,166503,Switzerland,National Inventory,2011,For storage only,37,Chräenriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23151,166504,Switzerland,National Inventory,2011,For storage only,37,Allmend beim Chatzensee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23152,166505,Switzerland,National Inventory,2011,For storage only,37,Rod,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23153,166506,Switzerland,National Inventory,2011,For storage only,37,Hänsiried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23154,166507,Switzerland,National Inventory,2011,For storage only,37,Langenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23155,166508,Switzerland,National Inventory,2011,For storage only,37,Schachen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23156,166509,Switzerland,National Inventory,2011,For storage only,37,Moos Schönenhof,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23157,166510,Switzerland,National Inventory,2011,For storage only,37,Örmis,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23158,166511,Switzerland,National Inventory,2011,For storage only,37,Madetswiler Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23159,166512,Switzerland,National Inventory,2011,For storage only,37,Schnäggenwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23160,166513,Switzerland,National Inventory,2011,For storage only,37,Wollwisli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23161,166514,Switzerland,National Inventory,2011,For storage only,37,Nördli Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23162,166516,Switzerland,National Inventory,2011,For storage only,37,Höchstern,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23163,166517,Switzerland,National Inventory,2011,For storage only,37,Ried Reinisbachtal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23164,166518,Switzerland,National Inventory,2011,For storage only,37,Girenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23165,166519,Switzerland,National Inventory,2011,For storage only,37,Egelsee / Seematten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23166,166520,Switzerland,National Inventory,2011,For storage only,37,Wildert,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23167,166521,Switzerland,National Inventory,2011,For storage only,37,Moosanger,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23168,166522,Switzerland,National Inventory,2011,For storage only,37,Russiker Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23169,166523,Switzerland,National Inventory,2011,For storage only,37,Chrutzelried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23170,166524,Switzerland,National Inventory,2011,For storage only,37,Vordersenis,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23171,166525,Switzerland,National Inventory,2011,For storage only,37,Böschen / Suelen / Stritgfänn,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23172,166526,Switzerland,National Inventory,2011,For storage only,37,Hofguetmoor,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23173,166527,Switzerland,National Inventory,2011,For storage only,37,Tote Reuss,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23174,166528,Switzerland,National Inventory,2011,For storage only,37,Riet bei Ganterschwil,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23175,166529,Switzerland,National Inventory,2011,For storage only,37,Rütermoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23176,166530,Switzerland,National Inventory,2011,For storage only,37,Hinterbitzi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23177,166531,Switzerland,National Inventory,2011,For storage only,37,Hoperen / Hirzerenweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23178,166532,Switzerland,National Inventory,2011,For storage only,37,Hueb,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23179,166533,Switzerland,National Inventory,2011,For storage only,37,Giwitzenried / Bächliried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23180,166534,Switzerland,National Inventory,2011,For storage only,37,Glattenriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23181,166535,Switzerland,National Inventory,2011,For storage only,37,Storen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23182,166536,Switzerland,National Inventory,2011,For storage only,37,Fischbacher Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23183,166537,Switzerland,National Inventory,2011,For storage only,37,Robenhauserriet / Pfäffikersee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23184,166538,Switzerland,National Inventory,2011,For storage only,37,Bannriet Nordost,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23185,166539,Switzerland,National Inventory,2011,For storage only,37,Langmoos / Foren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23186,166540,Switzerland,National Inventory,2011,For storage only,37,Bannriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23187,166541,Switzerland,National Inventory,2011,For storage only,37,Gross Moos / Rietlerwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23188,166542,Switzerland,National Inventory,2011,For storage only,37,Hofschür,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23189,166543,Switzerland,National Inventory,2011,For storage only,37,Zisetsriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23190,166544,Switzerland,National Inventory,2011,For storage only,37,Grabenriet / Grossriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23191,166545,Switzerland,National Inventory,2011,For storage only,37,Pfaffenbrunnen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23192,166546,Switzerland,National Inventory,2011,For storage only,37,Spitzmäder,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23193,166547,Switzerland,National Inventory,2011,For storage only,37,Hofhalden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23194,166548,Switzerland,National Inventory,2011,For storage only,37,Höch Hirschberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23195,166549,Switzerland,National Inventory,2011,For storage only,37,Hüttenriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23196,166550,Switzerland,National Inventory,2011,For storage only,37,Näppenacher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23197,166551,Switzerland,National Inventory,2011,For storage only,37,Sackriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23198,166552,Switzerland,National Inventory,2011,For storage only,37,Seewisen / Hostig,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23199,166553,Switzerland,National Inventory,2011,For storage only,37,Bergholzriet / Ankenriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23200,166554,Switzerland,National Inventory,2011,For storage only,37,Beerimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23201,166555,Switzerland,National Inventory,2011,For storage only,37,Gontenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23202,166556,Switzerland,National Inventory,2011,For storage only,37,Rottenschwilermoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23203,166557,Switzerland,National Inventory,2011,For storage only,37,Seewadel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23204,166558,Switzerland,National Inventory,2011,For storage only,37,Fronwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23205,166559,Switzerland,National Inventory,2011,For storage only,37,Fischenthaler Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23206,166560,Switzerland,National Inventory,2011,For storage only,37,Wappenswiler Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23207,166561,Switzerland,National Inventory,2011,For storage only,37,Hüttenberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23208,166562,Switzerland,National Inventory,2011,For storage only,37,Boniswiler-Seenger Ried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23209,166563,Switzerland,National Inventory,2011,For storage only,37,Seelisberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23210,166564,Switzerland,National Inventory,2011,For storage only,37,Stille Reuss,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23211,166565,Switzerland,National Inventory,2011,For storage only,37,Schnäggenmatten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23212,166566,Switzerland,National Inventory,2011,For storage only,37,Hütten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23213,166567,Switzerland,National Inventory,2011,For storage only,37,Östl. Haumösli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23214,166568,Switzerland,National Inventory,2011,For storage only,37,Rottenschwiler Schachen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23215,166569,Switzerland,National Inventory,2011,For storage only,37,Schachen Oberlunkhofen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23216,166570,Switzerland,National Inventory,2011,For storage only,37,Gschwend,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23217,166571,Switzerland,National Inventory,2011,For storage only,37,Moor nordwestlich Gisleren / Schönauwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23218,166572,Switzerland,National Inventory,2011,For storage only,37,Wetziker Riet / Oberhöfler Riet / Schwändi / Hiwiler Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23219,166573,Switzerland,National Inventory,2011,For storage only,37,Hinter Guldenen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23220,166574,Switzerland,National Inventory,2011,For storage only,37,Egg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23221,166575,Switzerland,National Inventory,2011,For storage only,37,Ambitzgi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23222,166576,Switzerland,National Inventory,2011,For storage only,37,Löchli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23223,166577,Switzerland,National Inventory,2011,For storage only,37,Obersee Althäusern,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23224,166578,Switzerland,National Inventory,2011,For storage only,37,Breitmoos (BE),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23225,166579,Switzerland,National Inventory,2011,For storage only,37,Unter-Schlatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23226,166580,Switzerland,National Inventory,2011,For storage only,37,Stillert,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23227,166581,Switzerland,National Inventory,2011,For storage only,37,Untere Fischeren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23228,166582,Switzerland,National Inventory,2011,For storage only,37,Waldriede am Pfannenstiel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23229,166583,Switzerland,National Inventory,2011,For storage only,37,Aristauer Schachen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23230,166584,Switzerland,National Inventory,2011,For storage only,37,Vordere Wartegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23231,166585,Switzerland,National Inventory,2011,For storage only,37,Forenmösli / Burketwald / Paradisli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23232,166586,Switzerland,National Inventory,2011,For storage only,37,Freecht,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23233,166587,Switzerland,National Inventory,2011,For storage only,37,Rüssmatten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23234,166588,Switzerland,National Inventory,2011,For storage only,37,Rossweid (AI),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23235,166589,Switzerland,National Inventory,2011,For storage only,37,Bleiken,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23236,166590,Switzerland,National Inventory,2011,For storage only,37,Burket Wald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23237,166591,Switzerland,National Inventory,2011,For storage only,37,Salomonstempel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23238,166592,Switzerland,National Inventory,2011,For storage only,37,Seematten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23239,166593,Switzerland,National Inventory,2011,For storage only,37,Dos le Cras,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23240,166594,Switzerland,National Inventory,2011,For storage only,37,Ober Bad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23241,166595,Switzerland,National Inventory,2011,For storage only,37,La Tourbière des Enfers,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23242,166596,Switzerland,National Inventory,2011,For storage only,37,Burenholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23243,166597,Switzerland,National Inventory,2011,For storage only,37,Langnauer Berg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23244,166598,Switzerland,National Inventory,2011,For storage only,37,Bislikerhau-Riede,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23245,166599,Switzerland,National Inventory,2011,For storage only,37,Moore zwischen Alp Stöck und Gschwend,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23246,166600,Switzerland,National Inventory,2011,For storage only,37,Gattikerweier,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23247,166601,Switzerland,National Inventory,2011,For storage only,37,Bergmeilen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23248,166602,Switzerland,National Inventory,2011,For storage only,37,Gmeimatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23249,166603,Switzerland,National Inventory,2011,For storage only,37,Plain de Saigne,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23250,166604,Switzerland,National Inventory,2011,For storage only,37,Potersalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23251,166605,Switzerland,National Inventory,2011,For storage only,37,Bibelaas,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23252,166606,Switzerland,National Inventory,2011,For storage only,37,Itziker Riet / Reitbacher Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23253,166607,Switzerland,National Inventory,2011,For storage only,37,Chellen / Allmeindswald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23254,166608,Switzerland,National Inventory,2011,For storage only,37,Ottenbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23255,166609,Switzerland,National Inventory,2011,For storage only,37,Sibeneichen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23256,166610,Switzerland,National Inventory,2011,For storage only,37,Bodenwis,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23257,166611,Switzerland,National Inventory,2011,For storage only,37,Laufenriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23258,166612,Switzerland,National Inventory,2011,For storage only,37,Rickenbacher Schachen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23259,166613,Switzerland,National Inventory,2011,For storage only,37,Südlich Seehüsli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23260,166614,Switzerland,National Inventory,2011,For storage only,37,südöstlich Niderlaad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23261,166615,Switzerland,National Inventory,2011,For storage only,37,Langmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23262,166616,Switzerland,National Inventory,2011,For storage only,37,Bergli-Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23263,166617,Switzerland,National Inventory,2011,For storage only,37,Adletshuser Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23264,166618,Switzerland,National Inventory,2011,For storage only,37,Hell,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23265,166619,Switzerland,National Inventory,2011,For storage only,37,Unterloch / Grundlosen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23266,166620,Switzerland,National Inventory,2011,For storage only,37,Ruchweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23267,166621,Switzerland,National Inventory,2011,For storage only,37,Cholwald Schwägalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23268,166622,Switzerland,National Inventory,2011,For storage only,37,Lunnergrien,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23269,166623,Switzerland,National Inventory,2011,For storage only,37,Schorengrindel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23270,166624,Switzerland,National Inventory,2011,For storage only,37,Stumpenhölzlimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23271,166625,Switzerland,National Inventory,2011,For storage only,37,nordöstlich Reisenbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23272,166626,Switzerland,National Inventory,2011,For storage only,37,Lutiker Ried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23273,166627,Switzerland,National Inventory,2011,For storage only,37,Riede im Jonental,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23274,166628,Switzerland,National Inventory,2011,For storage only,37,Moore auf dem Rickenpass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23275,166629,Switzerland,National Inventory,2011,For storage only,37,Sennweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23276,166630,Switzerland,National Inventory,2011,For storage only,37,Hexengraben,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23277,166631,Switzerland,National Inventory,2011,For storage only,37,Hüsliriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23278,166632,Switzerland,National Inventory,2011,For storage only,37,Les Embreux,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23279,166633,Switzerland,National Inventory,2011,For storage only,37,Moore bei Steig und Schartegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23280,166634,Switzerland,National Inventory,2011,For storage only,37,Gmeindrüti-Ried / Moosried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23281,166635,Switzerland,National Inventory,2011,For storage only,37,Unter Hüttenbüel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23282,166636,Switzerland,National Inventory,2011,For storage only,37,Kämmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23283,166637,Switzerland,National Inventory,2011,For storage only,37,Schnabellücke,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23284,166638,Switzerland,National Inventory,2011,For storage only,37,Chlosterwald-Moore / Ampferenbödeli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23285,166639,Switzerland,National Inventory,2011,For storage only,37,Moore im Trämelloch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23286,166640,Switzerland,National Inventory,2011,For storage only,37,Mattliriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23287,166641,Switzerland,National Inventory,2011,For storage only,37,östlich Hinter Schümberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23288,166642,Switzerland,National Inventory,2011,For storage only,37,Ütziker Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23289,166643,Switzerland,National Inventory,2011,For storage only,37,Le Droit,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23290,166644,Switzerland,National Inventory,2011,For storage only,37,Egelsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23291,166645,Switzerland,National Inventory,2011,For storage only,37,Hüttenbüel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23292,166646,Switzerland,National Inventory,2011,For storage only,37,Grossweier,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23293,166647,Switzerland,National Inventory,2011,For storage only,37,Auen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23294,166648,Switzerland,National Inventory,2011,For storage only,37,Seeweidsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23295,166649,Switzerland,National Inventory,2011,For storage only,37,Eggweid auf dem Ricken,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23296,166650,Switzerland,National Inventory,2011,For storage only,37,Mösli / Schachen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23297,166651,Switzerland,National Inventory,2011,For storage only,37,Lunnerallmend,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23298,166653,Switzerland,National Inventory,2011,For storage only,37,Turbenried im Rütiwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23299,166654,Switzerland,National Inventory,2011,For storage only,37,Müslen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23300,166655,Switzerland,National Inventory,2011,For storage only,37,Grosswisli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23301,166656,Switzerland,National Inventory,2011,For storage only,37,Les Royes,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23302,166657,Switzerland,National Inventory,2011,For storage only,37,Altmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23303,166658,Switzerland,National Inventory,2011,For storage only,37,Am Ausee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23304,166659,Switzerland,National Inventory,2011,For storage only,37,Tüfmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23305,166660,Switzerland,National Inventory,2011,For storage only,37,Chrutzelen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23306,166661,Switzerland,National Inventory,2011,For storage only,37,Chamm,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23307,166662,Switzerland,National Inventory,2011,For storage only,37,Vorder Au,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23308,166663,Switzerland,National Inventory,2011,For storage only,37,Hagnauer Schachen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23309,166664,Switzerland,National Inventory,2011,For storage only,37,Gros Bois Derrière,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23310,166665,Switzerland,National Inventory,2011,For storage only,37,Saignes des Fondrais,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23311,166666,Switzerland,National Inventory,2011,For storage only,37,Galgenmad / Schribersmad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23312,166667,Switzerland,National Inventory,2011,For storage only,37,Meilacher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23313,166668,Switzerland,National Inventory,2011,For storage only,37,Rüss-Spitz / Wannhüseren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23314,166669,Switzerland,National Inventory,2011,For storage only,37,Usser Wald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23315,166670,Switzerland,National Inventory,2011,For storage only,37,Etang de la Gruère,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23316,166671,Switzerland,National Inventory,2011,For storage only,37,Schattenhalbriet / Zilmüslen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23317,166672,Switzerland,National Inventory,2011,For storage only,37,Grindel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23318,166673,Switzerland,National Inventory,2011,For storage only,37,Gruen / Neuhüttli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23319,166674,Switzerland,National Inventory,2011,For storage only,37,Tüfiried / Katzentobel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23320,166675,Switzerland,National Inventory,2011,For storage only,37,Ägelsee (ZH),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23321,166676,Switzerland,National Inventory,2011,For storage only,37,Hinterschluchen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23322,166677,Switzerland,National Inventory,2011,For storage only,37,Grindelmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23323,166678,Switzerland,National Inventory,2011,For storage only,37,Feldbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23324,166679,Switzerland,National Inventory,2011,For storage only,37,Schoren Schachen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23325,166680,Switzerland,National Inventory,2011,For storage only,37,Brüggen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23326,166681,Switzerland,National Inventory,2011,For storage only,37,Joner Wald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23327,166682,Switzerland,National Inventory,2011,For storage only,37,Johannisberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23328,166683,Switzerland,National Inventory,2011,For storage only,37,Rorholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23329,166684,Switzerland,National Inventory,2011,For storage only,37,Hagenholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23330,166685,Switzerland,National Inventory,2011,For storage only,37,Schwellbüel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23331,166686,Switzerland,National Inventory,2011,For storage only,37,Friessen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23332,166687,Switzerland,National Inventory,2011,For storage only,37,Pâturage du Droit,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23333,166688,Switzerland,National Inventory,2011,For storage only,37,nordöstlich Chüeboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23334,166689,Switzerland,National Inventory,2011,For storage only,37,Arbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23335,166690,Switzerland,National Inventory,2011,For storage only,37,südlich Rüeggenschlee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23336,166691,Switzerland,National Inventory,2011,For storage only,37,Feldmoos (BE),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23337,166692,Switzerland,National Inventory,2011,For storage only,37,Chlosterwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23338,166693,Switzerland,National Inventory,2011,For storage only,37,Chrutzelenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23339,166694,Switzerland,National Inventory,2011,For storage only,37,Erlen (SZ),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23340,166695,Switzerland,National Inventory,2011,For storage only,37,Streuweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23341,166696,Switzerland,National Inventory,2011,For storage only,37,Joner Allmend,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23342,166697,Switzerland,National Inventory,2011,For storage only,37,Östlich Ändenholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23343,166698,Switzerland,National Inventory,2011,For storage only,37,Risipass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23344,166699,Switzerland,National Inventory,2011,For storage only,37,Geeristegried / Spitzenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23345,166700,Switzerland,National Inventory,2011,For storage only,37,Busskircher Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23346,166701,Switzerland,National Inventory,2011,For storage only,37,Schmerikoner Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23347,166702,Switzerland,National Inventory,2011,For storage only,37,Moos südlich Grünholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23348,166703,Switzerland,National Inventory,2011,For storage only,37,Sennhus,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23349,166704,Switzerland,National Inventory,2011,For storage only,37,Wurmsbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23350,166705,Switzerland,National Inventory,2011,For storage only,37,"Benkner-, Burger- und Kaltbrunner Riet",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23351,166706,Switzerland,National Inventory,2011,For storage only,37,Schneit,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23352,166707,Switzerland,National Inventory,2011,For storage only,37,Ägertenried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23353,166708,Switzerland,National Inventory,2011,For storage only,37,Frauenwinkel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23354,166709,Switzerland,National Inventory,2011,For storage only,37,Häglimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23355,166710,Switzerland,National Inventory,2011,For storage only,37,Seezopf / Seematt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23356,166711,Switzerland,National Inventory,2011,For storage only,37,Oberhag / Müselen / Langriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23357,166712,Switzerland,National Inventory,2011,For storage only,37,Tanzboden-Guetental,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23358,166713,Switzerland,National Inventory,2011,For storage only,37,Dreihütten / Gamplüt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23359,166714,Switzerland,National Inventory,2011,For storage only,37,Bätzimatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23360,166715,Switzerland,National Inventory,2011,For storage only,37,Tourbières de Chanteraine,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23361,166716,Switzerland,National Inventory,2011,For storage only,37,Gräppelen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23362,166717,Switzerland,National Inventory,2011,For storage only,37,Ijental,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23363,166718,Switzerland,National Inventory,2011,For storage only,37,Frauental III,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23364,166719,Switzerland,National Inventory,2011,For storage only,37,Rüschenzopf,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23365,166720,Switzerland,National Inventory,2011,For storage only,37,Rechbergmoosbachriede,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23366,168281,Switzerland,National Inventory,2011,For storage only,37,Chaltenboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23367,168282,Switzerland,National Inventory,2011,For storage only,37,Nuoler Ried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23368,168283,Switzerland,National Inventory,2011,For storage only,37,Uffikoner Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23369,168284,Switzerland,National Inventory,2011,For storage only,37,Moor westlich Unterdorf,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23370,168285,Switzerland,National Inventory,2011,For storage only,37,Wisenfurt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23371,168286,Switzerland,National Inventory,2011,For storage only,37,Langacher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23372,168287,Switzerland,National Inventory,2011,For storage only,37,Vorder Benkner Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23373,168288,Switzerland,National Inventory,2011,For storage only,37,Hinterbergried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23374,168289,Switzerland,National Inventory,2011,For storage only,37,Zimbel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23375,168290,Switzerland,National Inventory,2011,For storage only,37,Bodmen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23376,168291,Switzerland,National Inventory,2011,For storage only,37,Sarbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23377,168292,Switzerland,National Inventory,2011,For storage only,37,Munzenriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23378,168293,Switzerland,National Inventory,2011,For storage only,37,Heiligchrüz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23379,168294,Switzerland,National Inventory,2011,For storage only,37,Gubelried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23380,168295,Switzerland,National Inventory,2011,For storage only,37,Au / Hinterlaad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23381,168296,Switzerland,National Inventory,2011,For storage only,37,Oberschwelli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23382,168297,Switzerland,National Inventory,2011,For storage only,37,Sagenhölzliriede,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23383,168298,Switzerland,National Inventory,2011,For storage only,37,Espel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23384,168299,Switzerland,National Inventory,2011,For storage only,37,Goldach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23385,168300,Switzerland,National Inventory,2011,For storage only,37,Loch (SG),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23386,168301,Switzerland,National Inventory,2011,For storage only,37,Weberzopf,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23387,168302,Switzerland,National Inventory,2011,For storage only,37,Mülibachried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23388,168303,Switzerland,National Inventory,2011,For storage only,37,Salegg / Chaltenbach / Rohr,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23389,168304,Switzerland,National Inventory,2011,For storage only,37,Chälenhof,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23390,168305,Switzerland,National Inventory,2011,For storage only,37,Schwendiseen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23391,168306,Switzerland,National Inventory,2011,For storage only,37,Itlimoosweiher / Schöni,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23392,168307,Switzerland,National Inventory,2011,For storage only,37,Älpli / Eggenriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23393,168308,Switzerland,National Inventory,2011,For storage only,37,Muserholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23394,168309,Switzerland,National Inventory,2011,For storage only,37,Hüttner Seeli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23395,168310,Switzerland,National Inventory,2011,For storage only,37,Choller / Sumpf,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23396,168311,Switzerland,National Inventory,2011,For storage only,37,Hirzenbäder / Sommerweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23397,168312,Switzerland,National Inventory,2011,For storage only,37,Teuffenrohr / Stocklerriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23398,168313,Switzerland,National Inventory,2011,For storage only,37,Etzelweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23399,168314,Switzerland,National Inventory,2011,For storage only,37,Schärsboden-Moor,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23400,168315,Switzerland,National Inventory,2011,For storage only,37,Altstofel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23401,168316,Switzerland,National Inventory,2011,For storage only,37,Muserholz / Tännlimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23402,168317,Switzerland,National Inventory,2011,For storage only,37,Ronfeld,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23403,168318,Switzerland,National Inventory,2011,For storage only,37,Tourbières de la Chaux d'Abel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23404,168319,Switzerland,National Inventory,2011,For storage only,37,Moor westlich Etzel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23405,168320,Switzerland,National Inventory,2011,For storage only,37,Schönenboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23406,168321,Switzerland,National Inventory,2011,For storage only,37,Wauwilermoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23407,168322,Switzerland,National Inventory,2011,For storage only,37,Altschenchopf,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23408,168323,Switzerland,National Inventory,2011,For storage only,37,Hagimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23409,168324,Switzerland,National Inventory,2011,For storage only,37,Twerfallen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23410,168325,Switzerland,National Inventory,2011,For storage only,37,Zällmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23411,168326,Switzerland,National Inventory,2011,For storage only,37,Gastermatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23412,168327,Switzerland,National Inventory,2011,For storage only,37,Niderriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23413,168328,Switzerland,National Inventory,2011,For storage only,37,Dersbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23414,168329,Switzerland,National Inventory,2011,For storage only,37,Neugrundmoor,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23415,168330,Switzerland,National Inventory,2011,For storage only,37,Obermoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23416,168331,Switzerland,National Inventory,2011,For storage only,37,Risiwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23417,168332,Switzerland,National Inventory,2011,For storage only,37,Schwantenau,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23418,168333,Switzerland,National Inventory,2011,For storage only,37,Roblosen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23419,168334,Switzerland,National Inventory,2011,For storage only,37,Juchmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23420,168335,Switzerland,National Inventory,2011,For storage only,37,Schindellegi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23421,168336,Switzerland,National Inventory,2011,For storage only,37,Witi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23422,168337,Switzerland,National Inventory,2011,For storage only,37,Ängiried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23423,168338,Switzerland,National Inventory,2011,For storage only,37,Chlausenchappeli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23424,168339,Switzerland,National Inventory,2011,For storage only,37,Schlänggli-Biberbrugg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23425,168340,Switzerland,National Inventory,2011,For storage only,37,Höll,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23426,168341,Switzerland,National Inventory,2011,For storage only,37,Breitried (ZG),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23427,168342,Switzerland,National Inventory,2011,For storage only,37,Nöchen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23428,168343,Switzerland,National Inventory,2011,For storage only,37,Zigermoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23429,168344,Switzerland,National Inventory,2011,For storage only,37,Wissenbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23430,168345,Switzerland,National Inventory,2011,For storage only,37,Sulzel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23431,168346,Switzerland,National Inventory,2011,For storage only,37,Golperen / Girenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23432,168347,Switzerland,National Inventory,2011,For storage only,37,Hessenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23433,168348,Switzerland,National Inventory,2011,For storage only,37,Giregg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23434,168349,Switzerland,National Inventory,2011,For storage only,37,Hunntal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23435,168350,Switzerland,National Inventory,2011,For storage only,37,Chrottenboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23436,168351,Switzerland,National Inventory,2011,For storage only,37,Lachen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23437,168352,Switzerland,National Inventory,2011,For storage only,37,Altmatt / Ägeriried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23438,168353,Switzerland,National Inventory,2011,For storage only,37,Alte Zihl,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23439,168354,Switzerland,National Inventory,2011,For storage only,37,Brunnen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23440,168355,Switzerland,National Inventory,2011,For storage only,37,Brämenegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23441,168356,Switzerland,National Inventory,2011,For storage only,37,Zigerhüttli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23442,168357,Switzerland,National Inventory,2011,For storage only,37,Chnodenried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23443,168358,Switzerland,National Inventory,2011,For storage only,37,Engenriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23444,168359,Switzerland,National Inventory,2011,For storage only,37,Tubenloch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23445,168360,Switzerland,National Inventory,2011,For storage only,37,Beim Bannholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23446,168361,Switzerland,National Inventory,2011,For storage only,37,Schorenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23447,168362,Switzerland,National Inventory,2011,For storage only,37,Gnossenweid / Mutzenwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23448,168363,Switzerland,National Inventory,2011,For storage only,37,Rossweid (SZ),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23449,168364,Switzerland,National Inventory,2011,For storage only,37,Blossen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23450,168365,Switzerland,National Inventory,2011,For storage only,37,Les Pontins,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23451,168366,Switzerland,National Inventory,2011,For storage only,37,Riederen I,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23452,168367,Switzerland,National Inventory,2011,For storage only,37,Erlen (SG),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23453,168368,Switzerland,National Inventory,2011,For storage only,37,Eigenried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23454,168369,Switzerland,National Inventory,2011,For storage only,37,Sattelegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23455,168370,Switzerland,National Inventory,2011,For storage only,37,Birchriedli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23456,168371,Switzerland,National Inventory,2011,For storage only,37,Eigen / Elsisried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23457,168372,Switzerland,National Inventory,2011,For storage only,37,Giritz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23458,168373,Switzerland,National Inventory,2011,For storage only,37,Riederen II,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23459,168374,Switzerland,National Inventory,2011,For storage only,37,Rainli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23460,168375,Switzerland,National Inventory,2011,For storage only,37,Sprädenegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23461,168376,Switzerland,National Inventory,2011,For storage only,37,Hirzegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23462,168377,Switzerland,National Inventory,2011,For storage only,37,Erlen/Hinterwis,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23463,168378,Switzerland,National Inventory,2011,For storage only,37,Geissmatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23464,168379,Switzerland,National Inventory,2011,For storage only,37,Langriet / Schneeloch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23465,168380,Switzerland,National Inventory,2011,For storage only,37,Unterallmend Perlen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23466,168381,Switzerland,National Inventory,2011,For storage only,37,Mettlenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23467,168382,Switzerland,National Inventory,2011,For storage only,37,Grossriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23468,168383,Switzerland,National Inventory,2011,For storage only,37,Grossblätz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23469,168384,Switzerland,National Inventory,2011,For storage only,37,Ostergau,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23470,168385,Switzerland,National Inventory,2011,For storage only,37,Erlenried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23471,168386,Switzerland,National Inventory,2011,For storage only,37,Schwarzeneggehöchi / Hinter Gwürz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23472,168387,Switzerland,National Inventory,2011,For storage only,37,Ried bei Grossbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23473,168388,Switzerland,National Inventory,2011,For storage only,37,Walchwiler Oberallmig,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23474,168389,Switzerland,National Inventory,2011,For storage only,37,Scheidegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23475,168390,Switzerland,National Inventory,2011,For storage only,37,Vorderes Hürital,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23476,168391,Switzerland,National Inventory,2011,For storage only,37,Gross Moos im Schwendital,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23477,168392,Switzerland,National Inventory,2011,For storage only,37,Steinacher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23478,168393,Switzerland,National Inventory,2011,For storage only,37,Malunriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23479,168394,Switzerland,National Inventory,2011,For storage only,37,Meur bei Britteren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23480,168395,Switzerland,National Inventory,2011,For storage only,37,Trachslauer Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23481,168396,Switzerland,National Inventory,2011,For storage only,37,Rieter / Sagen / Neselen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23482,168397,Switzerland,National Inventory,2011,For storage only,37,Brüschegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23483,168398,Switzerland,National Inventory,2011,For storage only,37,Blimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23484,168399,Switzerland,National Inventory,2011,For storage only,37,Cholau,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23485,168400,Switzerland,National Inventory,2011,For storage only,37,Sabrens,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23486,168401,Switzerland,National Inventory,2011,For storage only,37,Boggenberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23487,168402,Switzerland,National Inventory,2011,For storage only,37,nördlich Eggstofel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23488,168403,Switzerland,National Inventory,2011,For storage only,37,Langmösli / Feldriedli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23489,168404,Switzerland,National Inventory,2011,For storage only,37,Im Fang,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23490,168405,Switzerland,National Inventory,2011,For storage only,37,Palfris,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23491,168406,Switzerland,National Inventory,2011,For storage only,37,Chnoden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23492,168407,Switzerland,National Inventory,2011,For storage only,37,Salzläcki,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23493,168408,Switzerland,National Inventory,2011,For storage only,37,Heumoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23494,168409,Switzerland,National Inventory,2011,For storage only,37,Euthal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23495,168410,Switzerland,National Inventory,2011,For storage only,37,Türliboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23496,168411,Switzerland,National Inventory,2011,For storage only,37,Nätsch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23497,168412,Switzerland,National Inventory,2011,For storage only,37,Wengi Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23498,168413,Switzerland,National Inventory,2011,For storage only,37,Nüchenstöck,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23499,168414,Switzerland,National Inventory,2011,For storage only,37,Eigenrieter,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23500,168415,Switzerland,National Inventory,2011,For storage only,37,Rütiwijer,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23501,168416,Switzerland,National Inventory,2011,For storage only,37,Madils,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23502,168417,Switzerland,National Inventory,2011,For storage only,37,Hintere Wisstannenweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23503,168418,Switzerland,National Inventory,2011,For storage only,37,Stäubrig / Schrä,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23504,168419,Switzerland,National Inventory,2011,For storage only,37,Breitried (SZ),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23505,168420,Switzerland,National Inventory,2011,For storage only,37,Am See,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23506,168421,Switzerland,National Inventory,2011,For storage only,37,Tobelwald / Guetental,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23507,168422,Switzerland,National Inventory,2011,For storage only,37,Prodriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23508,168423,Switzerland,National Inventory,2011,For storage only,37,Chlösterliweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23509,168424,Switzerland,National Inventory,2011,For storage only,37,Les Eplatures-Temple,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23510,168425,Switzerland,National Inventory,2011,For storage only,37,Chessiloch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23511,168426,Switzerland,National Inventory,2011,For storage only,37,Schwarzsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23512,168427,Switzerland,National Inventory,2011,For storage only,37,Naserina,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23513,168428,Switzerland,National Inventory,2011,For storage only,37,Vord. Mäderen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23514,168429,Switzerland,National Inventory,2011,For storage only,37,Moosweiher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23515,168430,Switzerland,National Inventory,2011,For storage only,37,Rotseeried Abfluss,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23516,168431,Switzerland,National Inventory,2011,For storage only,37,Heitlenen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23517,168432,Switzerland,National Inventory,2011,For storage only,37,Sennenried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23518,168433,Switzerland,National Inventory,2011,For storage only,37,Hunds-Chotten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23519,168434,Switzerland,National Inventory,2011,For storage only,37,Schlittenried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23520,168435,Switzerland,National Inventory,2011,For storage only,37,Weiherried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23521,168436,Switzerland,National Inventory,2011,For storage only,37,Platten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23522,168437,Switzerland,National Inventory,2011,For storage only,37,Tuetenseeli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23523,168438,Switzerland,National Inventory,2011,For storage only,37,Regenegg / Lang Gschwänd,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23524,168439,Switzerland,National Inventory,2011,For storage only,37,Unteriberg / Ried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23525,168440,Switzerland,National Inventory,2011,For storage only,37,Padüra,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23526,168441,Switzerland,National Inventory,2011,For storage only,37,Schmalzlad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23527,168442,Switzerland,National Inventory,2011,For storage only,37,Täuffeler Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23528,168443,Switzerland,National Inventory,2011,For storage only,37,Bannegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23529,168444,Switzerland,National Inventory,2011,For storage only,37,Mürtschen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23530,168445,Switzerland,National Inventory,2011,For storage only,37,Heidenweg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23531,168446,Switzerland,National Inventory,2011,For storage only,37,Stöckweid / Wyer,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23532,168447,Switzerland,National Inventory,2011,For storage only,37,Forenmoos / Langenried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23533,168448,Switzerland,National Inventory,2011,For storage only,37,westlich Hobisbüel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23534,168449,Switzerland,National Inventory,2011,For storage only,37,Panüöler-Spigen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23535,168450,Switzerland,National Inventory,2011,For storage only,37,nordöstlich Schlund,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23536,168451,Switzerland,National Inventory,2011,For storage only,37,Les Goudebas,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23537,168452,Switzerland,National Inventory,2011,For storage only,37,Stockrietli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23538,168453,Switzerland,National Inventory,2011,For storage only,37,Ober Mürtschen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23539,168454,Switzerland,National Inventory,2011,For storage only,37,Brüschrain,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23540,168455,Switzerland,National Inventory,2011,For storage only,37,Gleitboden / Streuneren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23541,168456,Switzerland,National Inventory,2011,For storage only,37,Chli Seebli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23542,168457,Switzerland,National Inventory,2011,For storage only,37,Tierfäderen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23543,168458,Switzerland,National Inventory,2011,For storage only,37,Fulriet / Mädems,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23544,168459,Switzerland,National Inventory,2011,For storage only,37,Lünzelblätz / Cholhüttli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23545,168460,Switzerland,National Inventory,2011,For storage only,37,Gross Seebli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23546,168461,Switzerland,National Inventory,2011,For storage only,37,Ober Heikentobel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23547,168462,Switzerland,National Inventory,2011,For storage only,37,Langeggried / Unter Heikentobel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23548,168463,Switzerland,National Inventory,2011,For storage only,37,Langried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23549,168464,Switzerland,National Inventory,2011,For storage only,37,Sägel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23550,168465,Switzerland,National Inventory,2011,For storage only,37,Chapfensee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23551,168466,Switzerland,National Inventory,2011,For storage only,37,Widen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23552,168467,Switzerland,National Inventory,2011,For storage only,37,Furenwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23553,168468,Switzerland,National Inventory,2011,For storage only,37,Rund Blätz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23554,168469,Switzerland,National Inventory,2011,For storage only,37,Palus,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23555,168470,Switzerland,National Inventory,2011,For storage only,37,Chaspersboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23556,168471,Switzerland,National Inventory,2011,For storage only,37,Tamons,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23557,168472,Switzerland,National Inventory,2011,For storage only,37,Murgsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23558,168473,Switzerland,National Inventory,2011,For storage only,37,Auw,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23559,168474,Switzerland,National Inventory,2011,For storage only,37,Hintersäss,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23560,168475,Switzerland,National Inventory,2011,For storage only,37,Schornen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23561,168476,Switzerland,National Inventory,2011,For storage only,37,Gross Underbäch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23562,168477,Switzerland,National Inventory,2011,For storage only,37,Wüest Wald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23563,168478,Switzerland,National Inventory,2011,For storage only,37,Vorder Cavell,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23564,168479,Switzerland,National Inventory,2011,For storage only,37,Cani,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23565,168480,Switzerland,National Inventory,2011,For storage only,37,Seiler / Zwäcken,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23566,168481,Switzerland,National Inventory,2011,For storage only,37,Rotenflue Allmig,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23567,168482,Switzerland,National Inventory,2011,For storage only,37,Rieter südl. Schwarzenstock,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23568,168483,Switzerland,National Inventory,2011,For storage only,37,Hobacher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23569,168484,Switzerland,National Inventory,2011,For storage only,37,Hinter Cavell,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23570,168485,Switzerland,National Inventory,2011,For storage only,37,Tubenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23571,168486,Switzerland,National Inventory,2011,For storage only,37,Bueffen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23572,168487,Switzerland,National Inventory,2011,For storage only,37,Alpnova,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23573,168488,Switzerland,National Inventory,2011,For storage only,37,Nördlich Obersäss (Alp Ortasee),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23574,168489,Switzerland,National Inventory,2011,For storage only,37,Langerli / Riedhütte / Rohrboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23575,168490,Switzerland,National Inventory,2011,For storage only,37,Inner und Usser Schnabel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23576,168491,Switzerland,National Inventory,2011,For storage only,37,Gersauer Alp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23577,168492,Switzerland,National Inventory,2011,For storage only,37,Ibergeregg-West,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23578,168493,Switzerland,National Inventory,2011,For storage only,37,Oberer Fischerenboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23579,168494,Switzerland,National Inventory,2011,For storage only,37,Chrüzböden (Alp Ortasee),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23580,168495,Switzerland,National Inventory,2011,For storage only,37,Obersäss (Alp Ortasee),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23581,168496,Switzerland,National Inventory,2011,For storage only,37,Leitiboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23582,168497,Switzerland,National Inventory,2011,For storage only,37,Sadrein,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23583,168498,Switzerland,National Inventory,2011,For storage only,37,Seebli / Fuederegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23584,168499,Switzerland,National Inventory,2011,For storage only,37,Grüebli / Hintergrüebli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23585,168500,Switzerland,National Inventory,2011,For storage only,37,Steinibachried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23586,168501,Switzerland,National Inventory,2011,For storage only,37,Furenmoos / Dorschnei,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23587,168502,Switzerland,National Inventory,2011,For storage only,37,Hinter Rohren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23588,168503,Switzerland,National Inventory,2011,For storage only,37,Strit,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23589,168504,Switzerland,National Inventory,2011,For storage only,37,Chaisten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23590,168505,Switzerland,National Inventory,2011,For storage only,37,Hinterschild,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23591,168506,Switzerland,National Inventory,2011,For storage only,37,Röhrli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23592,168507,Switzerland,National Inventory,2011,For storage only,37,Forrenmoos / Meienstossmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23593,168508,Switzerland,National Inventory,2011,For storage only,37,Le Fanel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23594,168509,Switzerland,National Inventory,2011,For storage only,37,Pragel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23595,168510,Switzerland,National Inventory,2011,For storage only,37,Brestenburg / Rieter,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23596,168511,Switzerland,National Inventory,2011,For storage only,37,Mülimäs,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23597,168512,Switzerland,National Inventory,2011,For storage only,37,Wilermoos / Fräschelsweiher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23598,168513,Switzerland,National Inventory,2011,For storage only,37,Vilterser - Alp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23599,168514,Switzerland,National Inventory,2011,For storage only,37,Breitried / Cholhütten / Hohrüti,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23600,168515,Switzerland,National Inventory,2011,For storage only,37,Hopfräben,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23601,168516,Switzerland,National Inventory,2011,For storage only,37,Ingenbohl,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23602,168517,Switzerland,National Inventory,2011,For storage only,37,Vers le Maix Rochat,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23603,168518,Switzerland,National Inventory,2011,For storage only,37,Guetentalboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23604,168519,Switzerland,National Inventory,2011,For storage only,37,Wal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23605,168520,Switzerland,National Inventory,2011,For storage only,37,Seewli / Riedboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23606,168521,Switzerland,National Inventory,2011,For storage only,37,Spinnegg / Neuenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23607,168522,Switzerland,National Inventory,2011,For storage only,37,Gnappetriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23608,168523,Switzerland,National Inventory,2011,For storage only,37,Le Bied des Ponts-de-Martel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23609,168524,Switzerland,National Inventory,2011,For storage only,37,Riede um Boneren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23610,168525,Switzerland,National Inventory,2011,For storage only,37,Schofberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23611,168526,Switzerland,National Inventory,2011,For storage only,37,Rotstock / Unter Honegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23612,168527,Switzerland,National Inventory,2011,For storage only,37,Ärtig / Feldimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23613,168528,Switzerland,National Inventory,2011,For storage only,37,Solcs,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23614,168529,Switzerland,National Inventory,2011,For storage only,37,Alp Bella,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23615,168530,Switzerland,National Inventory,2011,For storage only,37,Oltigenmatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23616,168531,Switzerland,National Inventory,2011,For storage only,37,Alp Trida,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23617,168532,Switzerland,National Inventory,2011,For storage only,37,Mettilimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23618,168533,Switzerland,National Inventory,2011,For storage only,37,Riet (Fadära),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23619,168534,Switzerland,National Inventory,2011,For storage only,37,Rossweid (GL),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23620,168535,Switzerland,National Inventory,2011,For storage only,37,Les Grèves,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23621,168536,Switzerland,National Inventory,2011,For storage only,37,Längriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23622,168537,Switzerland,National Inventory,2011,For storage only,37,Teufböni,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23623,168538,Switzerland,National Inventory,2011,For storage only,37,Nesslenbrunnenboden / Geugelhusenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23624,168539,Switzerland,National Inventory,2011,For storage only,37,Grossriet / Gnappiriet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23625,168540,Switzerland,National Inventory,2011,For storage only,37,Fuchserenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23626,168541,Switzerland,National Inventory,2011,For storage only,37,Salaaser Wisen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23627,168542,Switzerland,National Inventory,2011,For storage only,37,Capelgin / Leng Ried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23628,168543,Switzerland,National Inventory,2011,For storage only,37,Schulried / Uertiried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23629,168544,Switzerland,National Inventory,2011,For storage only,37,Stelsersee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23630,168545,Switzerland,National Inventory,2011,For storage only,37,Fulried am Stelserberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23631,168546,Switzerland,National Inventory,2011,For storage only,37,Gfellen / Rossweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23632,168547,Switzerland,National Inventory,2011,For storage only,37,Garichti,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23633,168548,Switzerland,National Inventory,2011,For storage only,37,Blätz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23634,168549,Switzerland,National Inventory,2011,For storage only,37,Steinstössi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23635,168550,Switzerland,National Inventory,2011,For storage only,37,Grèves du lac de Morat,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23636,168551,Switzerland,National Inventory,2011,For storage only,37,Grèves du lac,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23637,168552,Switzerland,National Inventory,2011,For storage only,37,Hindersandboden / Stächtenmösli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23638,168553,Switzerland,National Inventory,2011,For storage only,37,Stächtenmösli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23639,168554,Switzerland,National Inventory,2011,For storage only,37,Städerried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23640,168555,Switzerland,National Inventory,2011,For storage only,37,Chablais-Nord,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23641,168556,Switzerland,National Inventory,2011,For storage only,37,Riedboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23642,168557,Switzerland,National Inventory,2011,For storage only,37,Gschwänt / Längenschwand,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23643,168558,Switzerland,National Inventory,2011,For storage only,37,Schwandmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23644,168559,Switzerland,National Inventory,2011,For storage only,37,Rongg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23645,168560,Switzerland,National Inventory,2011,For storage only,37,Rischigenmatt / Chrüzliegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23646,168561,Switzerland,National Inventory,2011,For storage only,37,Matt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23647,168562,Switzerland,National Inventory,2011,For storage only,37,Luchterlimoos / Schluck,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23648,168563,Switzerland,National Inventory,2011,For storage only,37,Goldplangg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23649,168564,Switzerland,National Inventory,2011,For storage only,37,Ober-Längenberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23650,168565,Switzerland,National Inventory,2011,For storage only,37,Fäng / Rinderbüel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23651,168566,Switzerland,National Inventory,2011,For storage only,37,Juchmoos / Angstboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23652,168567,Switzerland,National Inventory,2011,For storage only,37,Etzelhüsli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23653,168568,Switzerland,National Inventory,2011,For storage only,37,Chrüzgütsch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23654,168569,Switzerland,National Inventory,2011,For storage only,37,Rischigenmatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23655,168570,Switzerland,National Inventory,2011,For storage only,37,Längenfeldmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23656,168571,Switzerland,National Inventory,2011,For storage only,37,Chastenmatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23657,168572,Switzerland,National Inventory,2011,For storage only,37,Rotibachried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23658,168573,Switzerland,National Inventory,2011,For storage only,37,Werbenrüsli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23659,168574,Switzerland,National Inventory,2011,For storage only,37,Schimbrig / Hirsboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23660,168575,Switzerland,National Inventory,2011,For storage only,37,Promisaun,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23661,168576,Switzerland,National Inventory,2011,For storage only,37,Ober Lauenberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23662,168577,Switzerland,National Inventory,2011,For storage only,37,Güferlitzi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23663,168578,Switzerland,National Inventory,2011,For storage only,37,Loch (GR),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23664,168579,Switzerland,National Inventory,2011,For storage only,37,Hohberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23665,168580,Switzerland,National Inventory,2011,For storage only,37,Geisswis / Gaschneida / Plustorna,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23666,168581,Switzerland,National Inventory,2011,For storage only,37,Seeliboden im Choltal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23667,168582,Switzerland,National Inventory,2011,For storage only,37,Meien,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23668,168583,Switzerland,National Inventory,2011,For storage only,37,Isital,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23669,168584,Switzerland,National Inventory,2011,For storage only,37,Riedzöpf,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23670,168585,Switzerland,National Inventory,2011,For storage only,37,Tällenmoos Eschholzmatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23671,168586,Switzerland,National Inventory,2011,For storage only,37,Vorder Rotbach / Grundmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23672,168587,Switzerland,National Inventory,2011,For storage only,37,Mättli / Schoni,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23673,168588,Switzerland,National Inventory,2011,For storage only,37,Mittler Risch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23674,168589,Switzerland,National Inventory,2011,For storage only,37,Scheidegg im Choltal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23675,168590,Switzerland,National Inventory,2011,For storage only,37,Charetalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23676,168591,Switzerland,National Inventory,2011,For storage only,37,Rossweid (OW),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23677,168592,Switzerland,National Inventory,2011,For storage only,37,Riede von Herrenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23678,168593,Switzerland,National Inventory,2011,For storage only,37,Äbnistetten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23679,168594,Switzerland,National Inventory,2011,For storage only,37,Lochalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23680,168595,Switzerland,National Inventory,2011,For storage only,37,Gürmschmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23681,168596,Switzerland,National Inventory,2011,For storage only,37,Änggenlauenen / Grünholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23682,168597,Switzerland,National Inventory,2011,For storage only,37,Val Fenga West,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23683,168598,Switzerland,National Inventory,2011,For storage only,37,Glattalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23684,168599,Switzerland,National Inventory,2011,For storage only,37,Riedboden / Galtenäbnet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23685,168600,Switzerland,National Inventory,2011,For storage only,37,Teilenboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23686,168601,Switzerland,National Inventory,2011,For storage only,37,Unteres Schlierental,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23687,168602,Switzerland,National Inventory,2011,For storage only,37,Val Fenga Ost,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23688,168603,Switzerland,National Inventory,2011,For storage only,37,Litzli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23689,168604,Switzerland,National Inventory,2011,For storage only,37,Gugel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23690,168605,Switzerland,National Inventory,2011,For storage only,37,Au bei Märchligen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23691,168606,Switzerland,National Inventory,2011,For storage only,37,Bärenboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23692,168607,Switzerland,National Inventory,2011,For storage only,37,östlich Brandchnubel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23693,168608,Switzerland,National Inventory,2011,For storage only,37,Nüwenalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23694,168609,Switzerland,National Inventory,2011,For storage only,37,Lengenschwand,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23695,168610,Switzerland,National Inventory,2011,For storage only,37,Wengli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23696,168611,Switzerland,National Inventory,2011,For storage only,37,Rischi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23697,168612,Switzerland,National Inventory,2011,For storage only,37,Brandmöser,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23698,168613,Switzerland,National Inventory,2011,For storage only,37,Gürmschwald / Gugelwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23699,168614,Switzerland,National Inventory,2011,For storage only,37,Eggwaldried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23700,168615,Switzerland,National Inventory,2011,For storage only,37,Bi den Hüscheren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23701,168616,Switzerland,National Inventory,2011,For storage only,37,Gerenstock,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23702,168617,Switzerland,National Inventory,2011,For storage only,37,Selez,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23703,168618,Switzerland,National Inventory,2011,For storage only,37,Unter Wasserfallen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23704,168619,Switzerland,National Inventory,2011,For storage only,37,Schwendi Kaltbad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23705,168620,Switzerland,National Inventory,2011,For storage only,37,La Sagnette / Les Tourbières,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23706,168621,Switzerland,National Inventory,2011,For storage only,37,Marchmettlen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23707,168622,Switzerland,National Inventory,2011,For storage only,37,Argseeli Urnerboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23708,168623,Switzerland,National Inventory,2011,For storage only,37,Häsiseggboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23709,168624,Switzerland,National Inventory,2011,For storage only,37,Chneuwis / Gitschenen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23710,168625,Switzerland,National Inventory,2011,For storage only,37,Wasserfallenegg / Grön,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23711,168626,Switzerland,National Inventory,2011,For storage only,37,Au bei Kleinhöchstetten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23712,168627,Switzerland,National Inventory,2011,For storage only,37,Gross Lucht,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23713,168628,Switzerland,National Inventory,2011,For storage only,37,Glaubenberg / Hinter Rotbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23714,168629,Switzerland,National Inventory,2011,For storage only,37,Obermattboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23715,168630,Switzerland,National Inventory,2011,For storage only,37,Eggberge,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23716,168631,Switzerland,National Inventory,2011,For storage only,37,Flüeler Ried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23717,168632,Switzerland,National Inventory,2011,For storage only,37,Vorderegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23718,168633,Switzerland,National Inventory,2011,For storage only,37,Unter Jetz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23719,168634,Switzerland,National Inventory,2011,For storage only,37,Ober Sewen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23720,168635,Switzerland,National Inventory,2011,For storage only,37,Mättenwang Urnerboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23721,168636,Switzerland,National Inventory,2011,For storage only,37,Trogenwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23722,168637,Switzerland,National Inventory,2011,For storage only,37,Heustettli / Bösen-Ritzenmatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23723,168638,Switzerland,National Inventory,2011,For storage only,37,Guggenen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23724,168639,Switzerland,National Inventory,2011,For storage only,37,Seedorfer Ried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23725,168640,Switzerland,National Inventory,2011,For storage only,37,Uf den Riederen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23726,168641,Switzerland,National Inventory,2011,For storage only,37,Glatt-Allmend,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23727,168642,Switzerland,National Inventory,2011,For storage only,37,Münchenboden / Ochsenalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23728,168643,Switzerland,National Inventory,2011,For storage only,37,Unter Sewen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23729,168644,Switzerland,National Inventory,2011,For storage only,37,Rieter bei Oberrickenbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23730,168645,Switzerland,National Inventory,2011,For storage only,37,Portenalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23731,168646,Switzerland,National Inventory,2011,For storage only,37,Schaftelenmoos / Stäldili / Sattelpass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23732,168647,Switzerland,National Inventory,2011,For storage only,37,Ahornenweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23733,168648,Switzerland,National Inventory,2011,For storage only,37,Tanail,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23734,168649,Switzerland,National Inventory,2011,For storage only,37,Sewen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23735,168650,Switzerland,National Inventory,2011,For storage only,37,Birchenbüelen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23736,168651,Switzerland,National Inventory,2011,For storage only,37,Hilferenpass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23737,168652,Switzerland,National Inventory,2011,For storage only,37,Ried bei Altzellen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23738,168653,Switzerland,National Inventory,2011,For storage only,37,Schwand,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23739,168654,Switzerland,National Inventory,2011,For storage only,37,Plaun Segnas Sut,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23740,168655,Switzerland,National Inventory,2011,For storage only,37,Chli Trogen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23741,168656,Switzerland,National Inventory,2011,For storage only,37,Fideriser Heuberge,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23742,168657,Switzerland,National Inventory,2011,For storage only,37,Plan Nai / Marangun,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23743,168658,Switzerland,National Inventory,2011,For storage only,37,Egghütten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23744,168659,Switzerland,National Inventory,2011,For storage only,37,Miesenegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23745,168660,Switzerland,National Inventory,2011,For storage only,37,Tällenmoos im Hilferental,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23746,168661,Switzerland,National Inventory,2011,For storage only,37,Dörsmatt / Miesen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23747,168662,Switzerland,National Inventory,2011,For storage only,37,Mettlen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23748,168663,Switzerland,National Inventory,2011,For storage only,37,Riedboden bei Zischlig,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23749,168664,Switzerland,National Inventory,2011,For storage only,37,Toregg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23750,168665,Switzerland,National Inventory,2011,For storage only,37,Riedböden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23751,168666,Switzerland,National Inventory,2011,For storage only,37,Faniner Galtihütte,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23752,168667,Switzerland,National Inventory,2011,For storage only,37,Riedmatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23753,168668,Switzerland,National Inventory,2011,For storage only,37,Niemerstafel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23754,168669,Switzerland,National Inventory,2011,For storage only,37,Bleikenboden / Schüfilimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23755,168670,Switzerland,National Inventory,2011,For storage only,37,Chesselsmatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23756,168671,Switzerland,National Inventory,2011,For storage only,37,Clun,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23757,168672,Switzerland,National Inventory,2011,For storage only,37,Hefti / Salzboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23758,168673,Switzerland,National Inventory,2011,For storage only,37,Ried Faninpass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23759,168674,Switzerland,National Inventory,2011,For storage only,37,Gauderböden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23760,168675,Switzerland,National Inventory,2011,For storage only,37,Teilenmäder / Seebüelen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23761,168676,Switzerland,National Inventory,2011,For storage only,37,Triemel / Cunggel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23762,168677,Switzerland,National Inventory,2011,For storage only,37,Gloggenmatt,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23763,168678,Switzerland,National Inventory,2011,For storage only,37,Rossboden / Looegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23764,168679,Switzerland,National Inventory,2011,For storage only,37,La Grève,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23765,168680,Switzerland,National Inventory,2011,For storage only,37,Hagleren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23766,168681,Switzerland,National Inventory,2011,For storage only,37,Dörsmattgraben,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23767,168682,Switzerland,National Inventory,2011,For storage only,37,Dälenboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23768,168683,Switzerland,National Inventory,2011,For storage only,37,Müseren,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23769,168684,Switzerland,National Inventory,2011,For storage only,37,Zwirchi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23770,168685,Switzerland,National Inventory,2011,For storage only,37,Eggen Rieter,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23771,168686,Switzerland,National Inventory,2011,For storage only,37,Usser Allmend,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23772,168687,Switzerland,National Inventory,2011,For storage only,37,Bargaboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23773,168688,Switzerland,National Inventory,2011,For storage only,37,Palü Lunga,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23774,168689,Switzerland,National Inventory,2011,For storage only,37,Rormettlen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23775,168690,Switzerland,National Inventory,2011,For storage only,37,Fondei,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23776,168691,Switzerland,National Inventory,2011,For storage only,37,Junkholz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23777,168692,Switzerland,National Inventory,2011,For storage only,37,Hanenried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23778,168693,Switzerland,National Inventory,2011,For storage only,37,Düdingermoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23779,168694,Switzerland,National Inventory,2011,For storage only,37,Mouille de la Vraconnaz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23780,168695,Switzerland,National Inventory,2011,For storage only,37,Siechenried,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23781,168696,Switzerland,National Inventory,2011,For storage only,37,Girsch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23782,168697,Switzerland,National Inventory,2011,For storage only,37,Prau Grass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23783,168698,Switzerland,National Inventory,2011,For storage only,37,Gustiweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23784,168699,Switzerland,National Inventory,2011,For storage only,37,Stächelegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23785,168700,Switzerland,National Inventory,2011,For storage only,37,Fragnière-Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23786,168701,Switzerland,National Inventory,2011,For storage only,37,Pfaffenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23787,168702,Switzerland,National Inventory,2011,For storage only,37,Marbachegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23788,168703,Switzerland,National Inventory,2011,For storage only,37,Chadhus,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23789,168704,Switzerland,National Inventory,2011,For storage only,37,Palü Marscha,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23790,168705,Switzerland,National Inventory,2011,For storage only,37,Salwiden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23791,168706,Switzerland,National Inventory,2011,For storage only,37,Tegia Sura,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23792,168707,Switzerland,National Inventory,2011,For storage only,37,Habchegg (LU),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23793,168708,Switzerland,National Inventory,2011,For storage only,37,Wachseldornmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23794,168709,Switzerland,National Inventory,2011,For storage only,37,Sapüner Mäder,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23795,168710,Switzerland,National Inventory,2011,For storage only,37,Totmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23796,168711,Switzerland,National Inventory,2011,For storage only,37,Paliu Marscha,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23797,168712,Switzerland,National Inventory,2011,For storage only,37,Wagliseichnubel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23798,168713,Switzerland,National Inventory,2011,For storage only,37,Ochsenweid / Schwand / Gwün,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23799,168714,Switzerland,National Inventory,2011,For storage only,37,Tschessas,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23800,168715,Switzerland,National Inventory,2011,For storage only,37,Prada da Tuoi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23801,168716,Switzerland,National Inventory,2011,For storage only,37,Südlich Ober Saffertberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23802,168717,Switzerland,National Inventory,2011,For storage only,37,Schwarzenegg / Steinetli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23803,168718,Switzerland,National Inventory,2011,For storage only,37,Naluns,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23804,168719,Switzerland,National Inventory,2011,For storage only,37,Mouille des Creux,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23805,168720,Switzerland,National Inventory,2011,For storage only,37,Cavarschons,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23806,168721,Switzerland,National Inventory,2011,For storage only,37,Alpoglen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23807,168722,Switzerland,National Inventory,2011,For storage only,37,Alp da Schnaus,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23808,168723,Switzerland,National Inventory,2011,For storage only,37,Feldmoos (OW),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23809,168724,Switzerland,National Inventory,2011,For storage only,37,Emmen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23810,168725,Switzerland,National Inventory,2011,For storage only,37,Schwandweid / Büelmeschwand,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23811,168726,Switzerland,National Inventory,2011,For storage only,37,Laubersmadghack / Bärsel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23812,168727,Switzerland,National Inventory,2011,For storage only,37,Gustiweidli / Obere Mastweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23813,168728,Switzerland,National Inventory,2011,For storage only,37,Weihermühle,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23814,168729,Switzerland,National Inventory,2011,For storage only,37,Lag digl Oberst,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23815,168730,Switzerland,National Inventory,2011,For storage only,37,Val Frisal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23816,168731,Switzerland,National Inventory,2011,For storage only,37,Oberes Roseggli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23817,168732,Switzerland,National Inventory,2011,For storage only,37,Alp Dado Sura,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23818,168733,Switzerland,National Inventory,2011,For storage only,37,Furmièrs,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23819,168734,Switzerland,National Inventory,2011,For storage only,37,Riede südlich Joch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23820,168735,Switzerland,National Inventory,2011,For storage only,37,Unter Prätschsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23821,168736,Switzerland,National Inventory,2011,For storage only,37,Wimmisalp / Innerer Windbruch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23822,168737,Switzerland,National Inventory,2011,For storage only,37,Fulensee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23823,168738,Switzerland,National Inventory,2011,For storage only,37,Riede westlich Schwarzwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23824,168739,Switzerland,National Inventory,2011,For storage only,37,Rotmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23825,168740,Switzerland,National Inventory,2011,For storage only,37,Schöniseischwand / Spierweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23826,168741,Switzerland,National Inventory,2011,For storage only,37,Alp dil Plaun,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23827,168742,Switzerland,National Inventory,2011,For storage only,37,Lac de Seedorf,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23828,168743,Switzerland,National Inventory,2011,For storage only,37,Schönisei / Harzisboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23829,168744,Switzerland,National Inventory,2011,For storage only,37,Schärpfenberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23830,168745,Switzerland,National Inventory,2011,For storage only,37,Sachsler Seefeld,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23831,168746,Switzerland,National Inventory,2011,For storage only,37,Arnibergli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23832,168747,Switzerland,National Inventory,2011,For storage only,37,Vorderes Rotmösli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23833,168748,Switzerland,National Inventory,2011,For storage only,37,Moor östlich Ober Breitwang,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23834,168749,Switzerland,National Inventory,2011,For storage only,37,Quadras,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23835,168750,Switzerland,National Inventory,2011,For storage only,37,Prümarans,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23836,168751,Switzerland,National Inventory,2011,For storage only,37,Usserberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23837,168752,Switzerland,National Inventory,2011,For storage only,37,Schwändli / Hungerschwand,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23838,168753,Switzerland,National Inventory,2011,For storage only,37,Moor zwischen Mirrenegg und Ällgäu,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23839,168754,Switzerland,National Inventory,2011,For storage only,37,Moos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23840,168755,Switzerland,National Inventory,2011,For storage only,37,Tannen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23841,168756,Switzerland,National Inventory,2011,For storage only,37,Habchegg (BE),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23842,168757,Switzerland,National Inventory,2011,For storage only,37,Isla Sut,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23843,168758,Switzerland,National Inventory,2011,For storage only,37,Grundmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23844,168759,Switzerland,National Inventory,2011,For storage only,37,Moore östlich Pfidertschegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23845,168760,Switzerland,National Inventory,2011,For storage only,37,Cuolms da Breil,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23846,168761,Switzerland,National Inventory,2011,For storage only,37,Trogen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23847,168762,Switzerland,National Inventory,2011,For storage only,37,Fuchser,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23848,168763,Switzerland,National Inventory,2011,For storage only,37,Lai Nair,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23849,168764,Switzerland,National Inventory,2011,For storage only,37,Ällgäu,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23850,168765,Switzerland,National Inventory,2011,For storage only,37,Hintere und Vordere Nollen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23851,168766,Switzerland,National Inventory,2011,For storage only,37,Moore nordöstlich Ober Sol,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23852,168767,Switzerland,National Inventory,2011,For storage only,37,Distelboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23853,168768,Switzerland,National Inventory,2011,For storage only,37,Clavadeler Berg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23854,168769,Switzerland,National Inventory,2011,For storage only,37,Horneggwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23855,168770,Switzerland,National Inventory,2011,For storage only,37,Schöriz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23856,168771,Switzerland,National Inventory,2011,For storage only,37,Moore nördl. Grünenbergpass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23857,168772,Switzerland,National Inventory,2011,For storage only,37,Moor zwischen Lombachalp und Teufen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23858,168773,Switzerland,National Inventory,2011,For storage only,37,Trogenmoos Nord,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23859,168774,Switzerland,National Inventory,2011,For storage only,37,Cuolm Sura,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23860,168775,Switzerland,National Inventory,2011,For storage only,37,Melchsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23861,168776,Switzerland,National Inventory,2011,For storage only,37,In Erlen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23862,168777,Switzerland,National Inventory,2011,For storage only,37,Bolsitenallmi / Chuelibrunnen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23863,168778,Switzerland,National Inventory,2011,For storage only,37,Trogenmoos Süd,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23864,168779,Switzerland,National Inventory,2011,For storage only,37,Hornmettlen / Ruer,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23865,168780,Switzerland,National Inventory,2011,For storage only,37,Moor östlich Unteres Hörnli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23866,168781,Switzerland,National Inventory,2011,For storage only,37,Höhenschwandmoor,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23867,168782,Switzerland,National Inventory,2011,For storage only,37,Ruuschi / Magerbad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23868,168783,Switzerland,National Inventory,2011,For storage only,37,Schleifgraben,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23869,168784,Switzerland,National Inventory,2011,For storage only,37,Moore hinder der Egg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23870,168785,Switzerland,National Inventory,2011,For storage only,37,Schluchhole,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23871,168786,Switzerland,National Inventory,2011,For storage only,37,Moor bei Lombachalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23872,168787,Switzerland,National Inventory,2011,For storage only,37,Wagenmoos / Mittleres Seefeld,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23873,168788,Switzerland,National Inventory,2011,For storage only,37,Moore südwestlich Grünenbergpass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23874,168789,Switzerland,National Inventory,2011,For storage only,37,Bosch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23875,168790,Switzerland,National Inventory,2011,For storage only,37,Dittligsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23876,168791,Switzerland,National Inventory,2011,For storage only,37,Schwarzenbühl / Fettbeder,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23877,168792,Switzerland,National Inventory,2011,For storage only,37,Hubelhörnli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23878,168793,Switzerland,National Inventory,2011,For storage only,37,Paliu Marscha,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23879,168794,Switzerland,National Inventory,2011,For storage only,37,Untere und Obere Mäscher,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23880,168795,Switzerland,National Inventory,2011,For storage only,37,Horbüelallmid / Schwantenbüelallmid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23881,168796,Switzerland,National Inventory,2011,For storage only,37,Affeier / Pifal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23882,168797,Switzerland,National Inventory,2011,For storage only,37,Moor westl. Wissenbach / Gurnigel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23883,168798,Switzerland,National Inventory,2011,For storage only,37,Sytenvorsess,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23884,168799,Switzerland,National Inventory,2011,For storage only,37,Dünzenegg / Tönimoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23885,168800,Switzerland,National Inventory,2011,For storage only,37,Prau Mitgiert,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23886,168801,Switzerland,National Inventory,2011,For storage only,37,Moore nordwestlich Plitsches,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23887,168802,Switzerland,National Inventory,2011,For storage only,37,Ligneida,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23888,168803,Switzerland,National Inventory,2011,For storage only,37,Zettenalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23889,168804,Switzerland,National Inventory,2011,For storage only,37,Cuolm Sura,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23890,168805,Switzerland,National Inventory,2011,For storage only,37,Teuftal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23891,168806,Switzerland,National Inventory,2011,For storage only,37,Moore westlich Rotenschwand,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23892,168807,Switzerland,National Inventory,2011,For storage only,37,Ruschneras,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23893,168808,Switzerland,National Inventory,2011,For storage only,37,Selital,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23894,168809,Switzerland,National Inventory,2011,For storage only,37,Schwarzwasser / Bärgli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23895,168810,Switzerland,National Inventory,2011,For storage only,37,Seemad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23896,168811,Switzerland,National Inventory,2011,For storage only,37,Schalenberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23897,168812,Switzerland,National Inventory,2011,For storage only,37,Sältenüeb,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23898,168813,Switzerland,National Inventory,2011,For storage only,37,Lerchmatt / Schmittmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23899,168814,Switzerland,National Inventory,2011,For storage only,37,Obere Zettenalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23900,168815,Switzerland,National Inventory,2011,For storage only,37,Mad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23901,168816,Switzerland,National Inventory,2011,For storage only,37,Schwendli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23902,168817,Switzerland,National Inventory,2011,For storage only,37,Im Rüeggers,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23903,168818,Switzerland,National Inventory,2011,For storage only,37,Wallengaden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23904,168819,Switzerland,National Inventory,2011,For storage only,37,Nordufer Heidsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23905,168820,Switzerland,National Inventory,2011,For storage only,37,Schwendallmi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23906,168821,Switzerland,National Inventory,2011,For storage only,37,"Heidsee, Pedra Grossa",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23907,168822,Switzerland,National Inventory,2011,For storage only,37,Bodmi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23908,168823,Switzerland,National Inventory,2011,For storage only,37,Feldmoos (SG),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23909,168824,Switzerland,National Inventory,2011,For storage only,37,Kartitscha,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23910,168825,Switzerland,National Inventory,2011,For storage only,37,Sortel / Althuser,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23911,168826,Switzerland,National Inventory,2011,For storage only,37,Übeschisee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23912,168827,Switzerland,National Inventory,2011,For storage only,37,Fischbächen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23913,168828,Switzerland,National Inventory,2011,For storage only,37,Allmi westlich Läger,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23914,168829,Switzerland,National Inventory,2011,For storage only,37,Riederen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23915,168830,Switzerland,National Inventory,2011,For storage only,37,Lenzerheide,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23916,168831,Switzerland,National Inventory,2011,For storage only,37,Stierenberg / Alp Brändli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23917,168832,Switzerland,National Inventory,2011,For storage only,37,Bannwald,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23918,168833,Switzerland,National Inventory,2011,For storage only,37,Widmoos / Endorfallmi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23919,168834,Switzerland,National Inventory,2011,For storage only,37,Moore westlich Bröndlisegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23920,168835,Switzerland,National Inventory,2011,For storage only,37,Bröndlisegg / Hinters Läger,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23921,168836,Switzerland,National Inventory,2011,For storage only,37,nordöstlich Lavadinas,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23922,168837,Switzerland,National Inventory,2011,For storage only,37,Wuost,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23923,168838,Switzerland,National Inventory,2011,For storage only,37,Moore südlich Ottenleuebad,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23924,168839,Switzerland,National Inventory,2011,For storage only,37,Chueberg / Schwändli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23925,168840,Switzerland,National Inventory,2011,For storage only,37,Selibüel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23926,168841,Switzerland,National Inventory,2011,For storage only,37,Moor östlich Gemmenalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23927,168842,Switzerland,National Inventory,2011,For storage only,37,Büelbach,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23928,168843,Switzerland,National Inventory,2011,For storage only,37,Salignas / Combras,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23929,168844,Switzerland,National Inventory,2011,For storage only,37,Pré Bernard,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23930,168845,Switzerland,National Inventory,2011,For storage only,37,Gwattlischenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23931,168846,Switzerland,National Inventory,2011,For storage only,37,Walenhütten / Lauchboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23932,168847,Switzerland,National Inventory,2011,For storage only,37,Chüematte,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23933,168848,Switzerland,National Inventory,2011,For storage only,37,Dürrentännli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23934,168849,Switzerland,National Inventory,2011,For storage only,37,Tschafanna,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23935,168850,Switzerland,National Inventory,2011,For storage only,37,Luegiboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23936,168851,Switzerland,National Inventory,2011,For storage only,37,Rossbodensee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23937,168852,Switzerland,National Inventory,2011,For storage only,37,Stierenmoos / Im lätzen Hengst,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23938,168853,Switzerland,National Inventory,2011,For storage only,37,Waldeggallmi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23939,168854,Switzerland,National Inventory,2011,For storage only,37,Murtes,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23940,168855,Switzerland,National Inventory,2011,For storage only,37,Tgiern Grond,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23941,168856,Switzerland,National Inventory,2011,For storage only,37,Turen / Chaltenbrunnen / Stäckewäld,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23942,168857,Switzerland,National Inventory,2011,For storage only,37,Schärpfi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23943,168858,Switzerland,National Inventory,2011,For storage only,37,Ladengrat / Stäckhüttenberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23944,168859,Switzerland,National Inventory,2011,For storage only,37,Alp Nadels,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23945,168860,Switzerland,National Inventory,2011,For storage only,37,Alp Nova,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23946,168861,Switzerland,National Inventory,2011,For storage only,37,Torry d'Arau,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23947,168862,Switzerland,National Inventory,2011,For storage only,37,Moore am Schwyberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23948,168863,Switzerland,National Inventory,2011,For storage only,37,Tamangur,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23949,168864,Switzerland,National Inventory,2011,For storage only,37,Rohrmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23950,168865,Switzerland,National Inventory,2011,For storage only,37,nordöstlich Oberläger,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23951,168866,Switzerland,National Inventory,2011,For storage only,37,Glaspass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23952,168867,Switzerland,National Inventory,2011,For storage only,37,Weissenau,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23953,168868,Switzerland,National Inventory,2011,For storage only,37,Lac Brenet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23954,168869,Switzerland,National Inventory,2011,For storage only,37,Liets,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23955,168870,Switzerland,National Inventory,2011,For storage only,37,La Spielmannda / Untertierliberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23956,168871,Switzerland,National Inventory,2011,For storage only,37,Val Val,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23957,168872,Switzerland,National Inventory,2011,For storage only,37,Palius,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23958,168873,Switzerland,National Inventory,2011,For storage only,37,In Schroteggen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23959,168874,Switzerland,National Inventory,2011,For storage only,37,Alte Stand / Wischbääch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23960,168875,Switzerland,National Inventory,2011,For storage only,37,Breitenmoostor / Alpiglen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23961,168876,Switzerland,National Inventory,2011,For storage only,37,Grattavache,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23962,168877,Switzerland,National Inventory,2011,For storage only,37,Oberalppass,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23963,168878,Switzerland,National Inventory,2011,For storage only,37,Les Cruilles,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23964,168879,Switzerland,National Inventory,2011,For storage only,37,L'Ochère,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23965,168880,Switzerland,National Inventory,2011,For storage only,37,Hambiel / Rossboden,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23966,168881,Switzerland,National Inventory,2011,For storage only,37,La Sagne du Séchey,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23967,168882,Switzerland,National Inventory,2011,For storage only,37,Zu den Staflen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23968,168883,Switzerland,National Inventory,2011,For storage only,37,Les Gurles,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23969,168884,Switzerland,National Inventory,2011,For storage only,37,Lac Ter,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23970,168885,Switzerland,National Inventory,2011,For storage only,37,Berg beim Göscheneralpsee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23971,168886,Switzerland,National Inventory,2011,For storage only,37,Stavels Veders,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23972,168887,Switzerland,National Inventory,2011,For storage only,37,Uf Brandsbort / Schopfweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23973,168888,Switzerland,National Inventory,2011,For storage only,37,La Tourbière d'Echarlens,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23974,168889,Switzerland,National Inventory,2011,For storage only,37,Plaun Pardatsch / Crest Darvun,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23975,168890,Switzerland,National Inventory,2011,For storage only,37,Tgatlems,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23976,168891,Switzerland,National Inventory,2011,For storage only,37,Schatschas,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23977,168892,Switzerland,National Inventory,2011,For storage only,37,Plidutscha / Trutg Nurschalas,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23978,168893,Switzerland,National Inventory,2011,For storage only,37,Pontet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23979,168894,Switzerland,National Inventory,2011,For storage only,37,"Alp Stierva, Sigliots",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23980,168895,Switzerland,National Inventory,2011,For storage only,37,Fulwasser,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23981,168896,Switzerland,National Inventory,2011,For storage only,37,Buffalora,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23982,168897,Switzerland,National Inventory,2011,For storage only,37,Träjen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23983,168898,Switzerland,National Inventory,2011,For storage only,37,Alp Tuma,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23984,168899,Switzerland,National Inventory,2011,For storage only,37,Feldmoos (BE),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23985,168900,Switzerland,National Inventory,2011,For storage only,37,Jufplaun,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23986,168901,Switzerland,National Inventory,2011,For storage only,37,Alp Anarosa I,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23987,168902,Switzerland,National Inventory,2011,For storage only,37,Plan Palé,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23988,168903,Switzerland,National Inventory,2011,For storage only,37,Chez le Poisson,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23989,168904,Switzerland,National Inventory,2011,For storage only,37,Alp Anarosa II,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23990,168905,Switzerland,National Inventory,2011,For storage only,37,Breitmoos (AR),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23991,168906,Switzerland,National Inventory,2011,For storage only,37,Stavel da Maighels,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23992,168907,Switzerland,National Inventory,2011,For storage only,37,Champ-Buet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23993,168908,Switzerland,National Inventory,2011,For storage only,37,Riedboden (GR),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23994,168909,Switzerland,National Inventory,2011,For storage only,37,Sattelegg / Am undren Brand,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23995,168910,Switzerland,National Inventory,2011,For storage only,37,Crap la Crusch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23996,168911,Switzerland,National Inventory,2011,For storage only,37,Alp Neaza,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23997,168912,Switzerland,National Inventory,2011,For storage only,37,La Mosse d'en Bas,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23998,168913,Switzerland,National Inventory,2011,For storage only,37,"Tourbière de Derrière la Côte, sud-est",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -23999,168914,Switzerland,National Inventory,2011,For storage only,37,Chuchifang,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24000,168915,Switzerland,National Inventory,2011,For storage only,37,Le Brassus,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24001,168916,Switzerland,National Inventory,2011,For storage only,37,Engi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24002,168917,Switzerland,National Inventory,2011,For storage only,37,Les Tourbières,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24003,168918,Switzerland,National Inventory,2011,For storage only,37,"Tourbière de Derrière la Côte, sud-ouest",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24004,168919,Switzerland,National Inventory,2011,For storage only,37,Sunnsbiel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24005,168920,Switzerland,National Inventory,2011,For storage only,37,La Thomassette,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24006,168921,Switzerland,National Inventory,2011,For storage only,37,Seeberg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24007,168922,Switzerland,National Inventory,2011,For storage only,37,Auf den Lägern,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24008,168923,Switzerland,National Inventory,2011,For storage only,37,Wengernalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24009,168924,Switzerland,National Inventory,2011,For storage only,37,Moore nördlich Toffelsweid,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24010,168925,Switzerland,National Inventory,2011,For storage only,37,Chessibidmer,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24011,168926,Switzerland,National Inventory,2011,For storage only,37,Lambegn,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24012,168927,Switzerland,National Inventory,2011,For storage only,37,Alp Tobel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24013,168928,Switzerland,National Inventory,2011,For storage only,37,Im Roten Herd,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24014,168929,Switzerland,National Inventory,2011,For storage only,37,Station Wengernalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24015,168930,Switzerland,National Inventory,2011,For storage only,37,Les Alpettes,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24016,168931,Switzerland,National Inventory,2011,For storage only,37,Le Penny,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24017,168932,Switzerland,National Inventory,2011,For storage only,37,Chänelegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24018,168933,Switzerland,National Inventory,2011,For storage only,37,La Burtignière,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24019,168934,Switzerland,National Inventory,2011,For storage only,37,Les Mosses de la Rogivue,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24020,168935,Switzerland,National Inventory,2011,For storage only,37,Farreras / Scargneras,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24021,168936,Switzerland,National Inventory,2011,For storage only,37,Mederlouwenen,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24022,168937,Switzerland,National Inventory,2011,For storage only,37,La Léchire,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24023,168938,Switzerland,National Inventory,2011,For storage only,37,Sparemoos / Tots Mädli,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24024,168939,Switzerland,National Inventory,2011,For storage only,37,Oberste Gurbs,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24025,168940,Switzerland,National Inventory,2011,For storage only,37,Sparemoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24026,168941,Switzerland,National Inventory,2011,For storage only,37,Gammerschal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24027,168942,Switzerland,National Inventory,2011,For storage only,37,Gros Mont,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24028,168943,Switzerland,National Inventory,2011,For storage only,37,Uf em Hubel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24029,168944,Switzerland,National Inventory,2011,For storage only,37,Passo dell'Uomo,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24030,168945,Switzerland,National Inventory,2011,For storage only,37,"Niremont, arête nord",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24031,168946,Switzerland,National Inventory,2011,For storage only,37,Cadagno di dentro,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24032,168947,Switzerland,National Inventory,2011,For storage only,37,Schwarzesee,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24033,168948,Switzerland,National Inventory,2011,For storage only,37,Gros Niremont,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24034,168949,Switzerland,National Inventory,2011,For storage only,37,Sèche de Gimel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24035,168950,Switzerland,National Inventory,2011,For storage only,37,Dälmoos Achseten,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24036,168951,Switzerland,National Inventory,2011,For storage only,37,Cadagno di fuori,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24037,168952,Switzerland,National Inventory,2011,For storage only,37,Triest,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24038,168953,Switzerland,National Inventory,2011,For storage only,37,Alpe Gana,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24039,168954,Switzerland,National Inventory,2011,For storage only,37,Bärfel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24040,168955,Switzerland,National Inventory,2011,For storage only,37,Lac de Lussy,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24041,168956,Switzerland,National Inventory,2011,For storage only,37,Rüti,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24042,168957,Switzerland,National Inventory,2011,For storage only,37,Le Paudex,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24043,168959,Switzerland,National Inventory,2011,For storage only,37,Campo Solario,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24044,168960,Switzerland,National Inventory,2011,For storage only,37,Fessu Derrière,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24045,168961,Switzerland,National Inventory,2011,For storage only,37,Cassinal,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24046,168962,Switzerland,National Inventory,2011,For storage only,37,Chilchalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24047,168963,Switzerland,National Inventory,2011,For storage only,37,Les Chapelles,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24048,168964,Switzerland,National Inventory,2011,For storage only,37,Lai Neir,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24049,168965,Switzerland,National Inventory,2011,For storage only,37,Zwisched Bäch,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24050,168966,Switzerland,National Inventory,2011,For storage only,37,Pinett (Ritom),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24051,168967,Switzerland,National Inventory,2011,For storage only,37,Moor südlich Vorderi Schneit,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24052,168968,Switzerland,National Inventory,2011,For storage only,37,Pian Segno,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24053,168969,Switzerland,National Inventory,2011,For storage only,37,Les Roseys,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24054,168970,Switzerland,National Inventory,2011,For storage only,37,Obers - Plani,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24055,168971,Switzerland,National Inventory,2011,For storage only,37,Fidertschi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24056,168972,Switzerland,National Inventory,2011,For storage only,37,Alp Flix,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24057,168973,Switzerland,National Inventory,2011,For storage only,37,Tga d'Meir,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24058,168974,Switzerland,National Inventory,2011,For storage only,37,Pè d'Munt / Pradè,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24059,168975,Switzerland,National Inventory,2011,For storage only,37,Rietboden (Tamboalp),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24060,168976,Switzerland,National Inventory,2011,For storage only,37,Glawis Fäng,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24061,168977,Switzerland,National Inventory,2011,For storage only,37,"Füürbüel, Raafgarte",Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24062,168978,Switzerland,National Inventory,2011,For storage only,37,Son Roc,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24063,168979,Switzerland,National Inventory,2011,For storage only,37,Lischigi Weid / Vierschröti,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24064,168980,Switzerland,National Inventory,2011,For storage only,37,Vall'Ambròsa ovest,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24065,168981,Switzerland,National Inventory,2011,For storage only,37,Campra di là,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24066,168982,Switzerland,National Inventory,2011,For storage only,37,Vers Champ,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24067,168983,Switzerland,National Inventory,2011,For storage only,37,Vall'Ambròsa est,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24068,168984,Switzerland,National Inventory,2011,For storage only,37,Blasestafel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24069,168985,Switzerland,National Inventory,2011,For storage only,37,Val Savriez,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24070,168986,Switzerland,National Inventory,2011,For storage only,37,Les Cases,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24071,168987,Switzerland,National Inventory,2011,For storage only,37,Val Scura (Alpe di Chièra),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24072,168988,Switzerland,National Inventory,2011,For storage only,37,Rossweidli / Horefäng,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24073,168989,Switzerland,National Inventory,2011,For storage only,37,Muttariet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24074,168990,Switzerland,National Inventory,2011,For storage only,37,La Manche,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24075,168991,Switzerland,National Inventory,2011,For storage only,37,Choma Suot - Palüd Chapè,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24076,168992,Switzerland,National Inventory,2011,For storage only,37,Albristmeder,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24077,168993,Switzerland,National Inventory,2011,For storage only,37,Ciernes Picat,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24078,168994,Switzerland,National Inventory,2011,For storage only,37,Alpe di Vignone,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24079,168995,Switzerland,National Inventory,2011,For storage only,37,Ransung,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24080,168996,Switzerland,National Inventory,2011,For storage only,37,God da Staz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24081,168997,Switzerland,National Inventory,2011,For storage only,37,Alp Ses,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24082,168998,Switzerland,National Inventory,2011,For storage only,37,Val da Natons,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24083,168999,Switzerland,National Inventory,2011,For storage only,37,Creux du Croue,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24084,169000,Switzerland,National Inventory,2011,For storage only,37,Lej da Staz,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24085,169001,Switzerland,National Inventory,2011,For storage only,37,Am vordere Parwenge,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24086,169002,Switzerland,National Inventory,2011,For storage only,37,Les Tenasses,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24087,169003,Switzerland,National Inventory,2011,For storage only,37,Bolle di Cassina di Lago,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24088,347255,Switzerland,National Inventory,2011,For storage only,37,Thuner Allmend,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24089,347256,Switzerland,National Inventory,2011,For storage only,37,Wyssensee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24090,347257,Switzerland,National Inventory,2011,For storage only,37,Im See,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24091,347258,Switzerland,National Inventory,2011,For storage only,37,Wissenbachschlucht,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24092,347259,Switzerland,National Inventory,2011,For storage only,37,Büeltigen-Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24093,347260,Switzerland,National Inventory,2011,For storage only,37,Schallenberg Tümpel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24094,347261,Switzerland,National Inventory,2011,For storage only,37,"Seeli-Egg, Lochsiten",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24095,347262,Switzerland,National Inventory,2011,For storage only,37,Bärenmoosweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24096,347263,Switzerland,National Inventory,2011,For storage only,37,Gwattmösli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24097,347264,Switzerland,National Inventory,2011,For storage only,37,Ägelsee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24098,347265,Switzerland,National Inventory,2011,For storage only,37,Buechholz Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24099,347266,Switzerland,National Inventory,2011,For storage only,37,Colas Grube,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24100,347267,Switzerland,National Inventory,2011,For storage only,37,Erlimoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24101,347268,Switzerland,National Inventory,2011,For storage only,37,Heideweg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24102,347269,Switzerland,National Inventory,2011,For storage only,37,Muttli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24103,347270,Switzerland,National Inventory,2011,For storage only,37,Cornez de la Mairie,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24104,347271,Switzerland,National Inventory,2011,For storage only,37,Schintere Lerchenfeld,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24105,347272,Switzerland,National Inventory,2011,For storage only,37,Rottenschwiler Moos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24106,347273,Switzerland,National Inventory,2011,For storage only,37,Töniweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24107,347274,Switzerland,National Inventory,2011,For storage only,37,Franzosenweiher und Altes Bad,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24108,347275,Switzerland,National Inventory,2011,For storage only,37,Kaltacker,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24109,347276,Switzerland,National Inventory,2011,For storage only,37,Wildenau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24110,347277,Switzerland,National Inventory,2011,For storage only,37,Ramoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24111,347278,Switzerland,National Inventory,2011,For storage only,37,Ziegelmatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24112,347279,Switzerland,National Inventory,2011,For storage only,37,Moos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24113,347280,Switzerland,National Inventory,2011,For storage only,37,Schwarzmatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24114,347281,Switzerland,National Inventory,2011,For storage only,37,Schnydere ob Eichholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24115,347282,Switzerland,National Inventory,2011,For storage only,37,Breitmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24116,347283,Switzerland,National Inventory,2011,For storage only,37,Umiker Schachen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24117,347284,Switzerland,National Inventory,2011,For storage only,37,Windischer Schachen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24118,347285,Switzerland,National Inventory,2011,For storage only,37,Fröschegräbe,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24119,347286,Switzerland,National Inventory,2011,For storage only,37,Ägelmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24120,347287,Switzerland,National Inventory,2011,For storage only,37,Lochmatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24121,347288,Switzerland,National Inventory,2011,For storage only,37,Schwarzrain,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24122,347289,Switzerland,National Inventory,2011,For storage only,37,Kanderauen bei Mülenen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24123,347290,Switzerland,National Inventory,2011,For storage only,37,Etang de Sagne,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24124,347291,Switzerland,National Inventory,2011,For storage only,37,Lätti Gals,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24125,347292,Switzerland,National Inventory,2011,For storage only,37,Nordteil Fanel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24126,347293,Switzerland,National Inventory,2011,For storage only,37,Leuschelzmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24127,347294,Switzerland,National Inventory,2011,For storage only,37,Inser-Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24128,347295,Switzerland,National Inventory,2011,For storage only,37,Hahnenmoosbergli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24129,347296,Switzerland,National Inventory,2011,For storage only,37,Vieille Birse,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24130,347297,Switzerland,National Inventory,2011,For storage only,37,Spittelmatte,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24131,347298,Switzerland,National Inventory,2011,For storage only,37,"Le Bain, Oversat",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24132,347299,Switzerland,National Inventory,2011,For storage only,37,Chratzera,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24133,347300,Switzerland,National Inventory,2011,For storage only,37,Tümpel östl. Underläger,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24134,347301,Switzerland,National Inventory,2011,For storage only,37,Grosse Scheidegg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24135,347302,Switzerland,National Inventory,2011,For storage only,37,Mumenthaler Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24136,347303,Switzerland,National Inventory,2011,For storage only,37,Vogelraupfi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24137,347304,Switzerland,National Inventory,2011,For storage only,37,Friedgraben,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24138,347305,Switzerland,National Inventory,2011,For storage only,37,Stirple,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24139,347306,Switzerland,National Inventory,2011,For storage only,37,Waldgrube Tannholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24140,347307,Switzerland,National Inventory,2011,For storage only,37,Heftihof,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24141,347308,Switzerland,National Inventory,2011,For storage only,37,Wehrliau Muribadparkplatz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24142,347309,Switzerland,National Inventory,2011,For storage only,37,Mettlenweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24143,347310,Switzerland,National Inventory,2011,For storage only,37,"Leubachbucht, Wohlensee-Nordufer",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24144,347311,Switzerland,National Inventory,2011,For storage only,37,Lörmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24145,347312,Switzerland,National Inventory,2011,For storage only,37,Mettmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24146,347313,Switzerland,National Inventory,2011,For storage only,37,La Marnière,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24147,347314,Switzerland,National Inventory,2011,For storage only,37,Widi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24148,347315,Switzerland,National Inventory,2011,For storage only,37,Tourbière de la Chaux d'Abel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24149,347316,Switzerland,National Inventory,2011,For storage only,37,Tümpel b. Schulhaus,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24150,347317,Switzerland,National Inventory,2011,For storage only,37,Tümpel bei Alter Aare Meienried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24151,347318,Switzerland,National Inventory,2011,For storage only,37,Wengimoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24152,347319,Switzerland,National Inventory,2011,For storage only,37,Bermoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24153,347320,Switzerland,National Inventory,2011,For storage only,37,Grube Hardern,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24154,347321,Switzerland,National Inventory,2011,For storage only,37,Sessenais,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24155,347322,Switzerland,National Inventory,2011,For storage only,37,Biaufond,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24156,347323,Switzerland,National Inventory,2011,For storage only,37,Kieswerk Schopsberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24157,347324,Switzerland,National Inventory,2011,For storage only,37,Tägerhau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24158,347325,Switzerland,National Inventory,2011,For storage only,37,Weihermatthau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24159,347326,Switzerland,National Inventory,2011,For storage only,37,Rüssmatten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24160,347327,Switzerland,National Inventory,2011,For storage only,37,Zurlindeninsel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24161,347328,Switzerland,National Inventory,2011,For storage only,37,Birristrott,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24162,347329,Switzerland,National Inventory,2011,For storage only,37,Ebni,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24163,347330,Switzerland,National Inventory,2011,For storage only,37,Ankematt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24164,347331,Switzerland,National Inventory,2011,For storage only,37,Ägerten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24165,347332,Switzerland,National Inventory,2011,For storage only,37,Chalofe,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24166,347333,Switzerland,National Inventory,2011,For storage only,37,Kohlschwärzi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24167,347334,Switzerland,National Inventory,2011,For storage only,37,Giriz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24168,347335,Switzerland,National Inventory,2011,For storage only,37,Sondermülldeponie,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24169,347336,Switzerland,National Inventory,2011,For storage only,37,Grossmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24170,347337,Switzerland,National Inventory,2011,For storage only,37,Walisgraben,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24171,347338,Switzerland,National Inventory,2011,For storage only,37,Zopfmatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24172,347339,Switzerland,National Inventory,2011,For storage only,37,Langenmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24173,347340,Switzerland,National Inventory,2011,For storage only,37,Heuberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24174,347341,Switzerland,National Inventory,2011,For storage only,37,Mättenfeld,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24175,347342,Switzerland,National Inventory,2011,For storage only,37,Neugüeter,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24176,347343,Switzerland,National Inventory,2011,For storage only,37,Unterzelg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24177,347344,Switzerland,National Inventory,2011,For storage only,37,Zelgli/Höll,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24178,347345,Switzerland,National Inventory,2011,For storage only,37,Fischbacher Moos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24179,347346,Switzerland,National Inventory,2011,For storage only,37,Tote Reuss,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24180,347347,Switzerland,National Inventory,2011,For storage only,37,Letzi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24181,347348,Switzerland,National Inventory,2011,For storage only,37,Graströchni Hard,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24182,347349,Switzerland,National Inventory,2011,For storage only,37,Zollester,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24183,347350,Switzerland,National Inventory,2011,For storage only,37,Schümel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24184,347351,Switzerland,National Inventory,2011,For storage only,37,Dorfrüti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24185,347352,Switzerland,National Inventory,2011,For storage only,37,Forenmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24186,347353,Switzerland,National Inventory,2011,For storage only,37,Wolfshüsli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24187,347354,Switzerland,National Inventory,2011,For storage only,37,Binsenweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24188,347355,Switzerland,National Inventory,2011,For storage only,37,Steinrüti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24189,347356,Switzerland,National Inventory,2011,For storage only,37,Maiholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24190,347357,Switzerland,National Inventory,2011,For storage only,37,Buechhübel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24191,347358,Switzerland,National Inventory,2011,For storage only,37,Seematten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24192,347359,Switzerland,National Inventory,2011,For storage only,37,Tannenchopf,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24193,347360,Switzerland,National Inventory,2011,For storage only,37,Chlosteräcker,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24194,347361,Switzerland,National Inventory,2011,For storage only,37,Hard,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24195,347362,Switzerland,National Inventory,2011,For storage only,37,Krähhübel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24196,347363,Switzerland,National Inventory,2011,For storage only,37,Breiti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24197,347364,Switzerland,National Inventory,2011,For storage only,37,Schachen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24198,347365,Switzerland,National Inventory,2011,For storage only,37,Looweiher/Heidenloch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24199,347366,Switzerland,National Inventory,2011,For storage only,37,Alte Reuss,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24200,347367,Switzerland,National Inventory,2011,For storage only,37,Steppberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24201,347368,Switzerland,National Inventory,2011,For storage only,37,Egelmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24202,347369,Switzerland,National Inventory,2011,For storage only,37,Chli Rhy,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24203,347370,Switzerland,National Inventory,2011,For storage only,37,Eiholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24204,347371,Switzerland,National Inventory,2011,For storage only,37,Stockmösli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24205,347372,Switzerland,National Inventory,2011,For storage only,37,Giriz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24206,347373,Switzerland,National Inventory,2011,For storage only,37,Schnäggenmatten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24207,347374,Switzerland,National Inventory,2011,For storage only,37,Wengernalp Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24208,347376,Switzerland,National Inventory,2011,For storage only,37,Schorengrindel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24209,347377,Switzerland,National Inventory,2011,For storage only,37,Gippinger Grien,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24210,347378,Switzerland,National Inventory,2011,For storage only,37,Sagenmülitäli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24211,347379,Switzerland,National Inventory,2011,For storage only,37,Talweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24212,347380,Switzerland,National Inventory,2011,For storage only,37,Äbereich,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24213,347381,Switzerland,National Inventory,2011,For storage only,37,Burgergrube,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24214,347382,Switzerland,National Inventory,2011,For storage only,37,Schmulzenchopf,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24215,347383,Switzerland,National Inventory,2011,For storage only,37,Löliweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24216,347384,Switzerland,National Inventory,2011,For storage only,37,Birri-Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24217,347385,Switzerland,National Inventory,2011,For storage only,37,Rütermoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24218,347386,Switzerland,National Inventory,2011,For storage only,37,Unterrütiweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24219,347387,Switzerland,National Inventory,2011,For storage only,37,Sibeneichen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24220,347388,Switzerland,National Inventory,2011,For storage only,37,Breitsee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24221,347389,Switzerland,National Inventory,2011,For storage only,37,Haumättli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24222,347390,Switzerland,National Inventory,2011,For storage only,37,Schoren Schachen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24223,347391,Switzerland,National Inventory,2011,For storage only,37,Torfmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24224,347392,Switzerland,National Inventory,2011,For storage only,37,Stille Reuss,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24225,347393,Switzerland,National Inventory,2011,For storage only,37,Oberschachen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24226,347394,Switzerland,National Inventory,2011,For storage only,37,Walenberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24227,347395,Switzerland,National Inventory,2011,For storage only,37,Bleienbacher Torfsee und Sängeli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24228,347396,Switzerland,National Inventory,2011,For storage only,37,Réserve de Laconnex,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24229,347397,Switzerland,National Inventory,2011,For storage only,37,Marais des Crêts,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24230,347399,Switzerland,National Inventory,2011,For storage only,37,Teppes de Verbois,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24231,347400,Switzerland,National Inventory,2011,For storage only,37,Bois des Douves,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24232,347401,Switzerland,National Inventory,2011,For storage only,37,Prés de Villette,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24233,347402,Switzerland,National Inventory,2011,For storage only,37,Marais du Château,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24234,347403,Switzerland,National Inventory,2011,For storage only,37,L'Allondon,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24235,347404,Switzerland,National Inventory,2011,For storage only,37,Talsee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24236,347405,Switzerland,National Inventory,2011,For storage only,37,Niederriet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24237,347406,Switzerland,National Inventory,2011,For storage only,37,Klöntalersee Nordostufer,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24238,347407,Switzerland,National Inventory,2011,For storage only,37,Oberblegisee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24239,347408,Switzerland,National Inventory,2011,For storage only,37,Feldbach,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24240,347409,Switzerland,National Inventory,2011,For storage only,37,Klöntalersee Vorauen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24241,347410,Switzerland,National Inventory,2011,For storage only,37,Vieux Bois,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24242,347411,Switzerland,National Inventory,2011,For storage only,37,Le Mouret,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24243,347412,Switzerland,National Inventory,2011,For storage only,37,Vuibroye,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24244,347413,Switzerland,National Inventory,2011,For storage only,37,Poutes Paluds,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24245,347414,Switzerland,National Inventory,2011,For storage only,37,Le Liti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24246,347415,Switzerland,National Inventory,2011,For storage only,37,"Les Grèves, Gletterens - Portalban",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24247,347416,Switzerland,National Inventory,2011,For storage only,37,Gros Chadoua,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24248,347417,Switzerland,National Inventory,2011,For storage only,37,Le Mongeron,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24249,347419,Switzerland,National Inventory,2011,For storage only,37,Le Taconnet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24250,347420,Switzerland,National Inventory,2011,For storage only,37,Duigls,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24251,347421,Switzerland,National Inventory,2011,For storage only,37,La Tuilerie,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24252,347422,Switzerland,National Inventory,2011,For storage only,37,Bois des Mouilles,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24253,347423,Switzerland,National Inventory,2011,For storage only,37,La Petite Grave,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24254,347424,Switzerland,National Inventory,2011,For storage only,37,Moulin de Vert,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24255,347425,Switzerland,National Inventory,2011,For storage only,37,Raclerets,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24256,347426,Switzerland,National Inventory,2011,For storage only,37,Pointe à la Bise,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24257,347427,Switzerland,National Inventory,2011,For storage only,37,Le Lity,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24258,347428,Switzerland,National Inventory,2011,For storage only,37,Pro Niev,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24259,347429,Switzerland,National Inventory,2011,For storage only,37,Isla,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24260,347430,Switzerland,National Inventory,2011,For storage only,37,Ellwald,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24261,347431,Switzerland,National Inventory,2011,For storage only,37,Zizerser Gumpen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24262,347432,Switzerland,National Inventory,2011,For storage only,37,Girsch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24263,347433,Switzerland,National Inventory,2011,For storage only,37,Bregl,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24264,347434,Switzerland,National Inventory,2011,For storage only,37,Länder,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24265,347435,Switzerland,National Inventory,2011,For storage only,37,Lais da Pesch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24266,347436,Switzerland,National Inventory,2011,For storage only,37,Alp da Razen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24267,347437,Switzerland,National Inventory,2011,For storage only,37,Liger Alp Falätscha,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24268,347438,Switzerland,National Inventory,2011,For storage only,37,Sayser See,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24269,347439,Switzerland,National Inventory,2011,For storage only,37,Punt Planet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24270,347440,Switzerland,National Inventory,2011,For storage only,37,Flin,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24271,347441,Switzerland,National Inventory,2011,For storage only,37,Lag Miert,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24272,347442,Switzerland,National Inventory,2011,For storage only,37,Tola,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24273,347443,Switzerland,National Inventory,2011,For storage only,37,Fröschaboda Val Madris,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24274,347444,Switzerland,National Inventory,2011,For storage only,37,Palüds - Agnas,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24275,347445,Switzerland,National Inventory,2011,For storage only,37,Rutisc Tonghi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24276,347446,Switzerland,National Inventory,2011,For storage only,37,Pra-les-Bous,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24277,347447,Switzerland,National Inventory,2011,For storage only,37,Plan da Chomps,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24278,347448,Switzerland,National Inventory,2011,For storage only,37,Craistas,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24279,347449,Switzerland,National Inventory,2011,For storage only,37,Ischlas da Strada,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24280,347450,Switzerland,National Inventory,2011,For storage only,37,Lai da Juata,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24281,347451,Switzerland,National Inventory,2011,For storage only,37,Lai da Valpaschun,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24282,347452,Switzerland,National Inventory,2011,For storage only,37,Siechenstuden,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24283,347453,Switzerland,National Inventory,2011,For storage only,37,Schler da Podestà,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24284,347454,Switzerland,National Inventory,2011,For storage only,37,Malixer Alp,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24285,347455,Switzerland,National Inventory,2011,For storage only,37,Crest'Ota,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24286,347456,Switzerland,National Inventory,2011,For storage only,37,Pian di Alne,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24287,347457,Switzerland,National Inventory,2011,For storage only,37,Ils Lags Alp Ramosa,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24288,347458,Switzerland,National Inventory,2011,For storage only,37,Ogna da Pardiala,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24289,347459,Switzerland,National Inventory,2011,For storage only,37,Plaun da Foppas,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24290,347460,Switzerland,National Inventory,2011,For storage only,37,Lag digl Oberst,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24291,347461,Switzerland,National Inventory,2011,For storage only,37,Lai da Tarasp,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24292,347462,Switzerland,National Inventory,2011,For storage only,37,Plaun Schumpeder,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24293,347463,Switzerland,National Inventory,2011,For storage only,37,Juchli Käserstatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24294,347464,Switzerland,National Inventory,2011,For storage only,37,Römerareal,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24295,347465,Switzerland,National Inventory,2011,For storage only,37,Reservat Gryfeberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24296,347466,Switzerland,National Inventory,2011,For storage only,37,Elfenaureservat,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24297,347467,Switzerland,National Inventory,2011,For storage only,37,"Waldgrube Scheuren, Orpundinsel",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24298,347468,Switzerland,National Inventory,2011,For storage only,37,Grien nordwestl. Dotzigen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24299,347469,Switzerland,National Inventory,2011,For storage only,37,Ägelsee-Moor,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24300,347470,Switzerland,National Inventory,2011,For storage only,37,Weiher ob Ottenleuebad,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24301,347471,Switzerland,National Inventory,2011,For storage only,37,Au-Gand Kander,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24302,347472,Switzerland,National Inventory,2011,For storage only,37,Les Chaufours,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24303,347473,Switzerland,National Inventory,2011,For storage only,37,Weiher am Fuss der Gryde,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24304,347474,Switzerland,National Inventory,2011,For storage only,37,Weiher am Rüschbach,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24305,347475,Switzerland,National Inventory,2011,For storage only,37,Riedgebiet Saligrabe,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24306,347476,Switzerland,National Inventory,2011,For storage only,37,Lauenensee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24307,347477,Switzerland,National Inventory,2011,For storage only,37,Weiher Obere Brüesche,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24308,347478,Switzerland,National Inventory,2011,For storage only,37,Petite Sarine,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24309,347479,Switzerland,National Inventory,2011,For storage only,37,Flachmoor Oberste Gurbs,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24310,347480,Switzerland,National Inventory,2011,For storage only,37,Oltigenmatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24311,347481,Switzerland,National Inventory,2011,For storage only,37,Weissenau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24312,347482,Switzerland,National Inventory,2011,For storage only,37,Neuenzälgau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24313,347483,Switzerland,National Inventory,2011,For storage only,37,Märchligenau-Flühli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24314,347484,Switzerland,National Inventory,2011,For storage only,37,Schmittenweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24315,347485,Switzerland,National Inventory,2011,For storage only,37,Kleinhöchstettenau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24316,347486,Switzerland,National Inventory,2011,For storage only,37,Feuerweiher Houti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24317,347487,Switzerland,National Inventory,2011,For storage only,37,Grube uf der Hole,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24318,347488,Switzerland,National Inventory,2011,For storage only,37,Alte Kiesgrube Schwarzhäusern,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24319,347489,Switzerland,National Inventory,2011,For storage only,37,Le Châtelet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24320,347490,Switzerland,National Inventory,2011,For storage only,37,Röselisee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24321,347491,Switzerland,National Inventory,2011,For storage only,37,Mont Girod 1,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24322,347492,Switzerland,National Inventory,2011,For storage only,37,Lac Vert,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24323,347493,Switzerland,National Inventory,2011,For storage only,37,Chlyrot Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24324,347494,Switzerland,National Inventory,2011,For storage only,37,Mont Girod 2,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24325,347495,Switzerland,National Inventory,2011,For storage only,37,"La Noz, tourbière de La Sagne",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24326,347496,Switzerland,National Inventory,2011,For storage only,37,Fischbächen Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24327,347497,Switzerland,National Inventory,2011,For storage only,37,Rüfenachtmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24328,347498,Switzerland,National Inventory,2011,For storage only,37,Lac des Joncs,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24329,347499,Switzerland,National Inventory,2011,For storage only,37,Auried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24330,347500,Switzerland,National Inventory,2011,For storage only,37,Ehemalige Kiesgrube Reben,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24331,347501,Switzerland,National Inventory,2011,For storage only,37,Saaneboden,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24332,347502,Switzerland,National Inventory,2011,For storage only,37,Stöckholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24333,347503,Switzerland,National Inventory,2011,For storage only,37,Düdingermoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24334,347504,Switzerland,National Inventory,2011,For storage only,37,Rohrmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24335,347505,Switzerland,National Inventory,2011,For storage only,37,Tümpel Hornberg Läger,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24336,347506,Switzerland,National Inventory,2011,For storage only,37,Entenmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24337,347507,Switzerland,National Inventory,2011,For storage only,37,Les Nex,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24338,347508,Switzerland,National Inventory,2011,For storage only,37,"La Grève, la Grande Gouille",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24339,347509,Switzerland,National Inventory,2011,For storage only,37,"La Grève, Autavaux - Forel",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24340,347510,Switzerland,National Inventory,2011,For storage only,37,"Les Grèves, Cheyres sud",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24341,347511,Switzerland,National Inventory,2011,For storage only,37,"Les Grèves, Cheyres - Font",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24342,347512,Switzerland,National Inventory,2011,For storage only,37,Ancienne carrière Les Saus,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24343,347513,Switzerland,National Inventory,2011,For storage only,37,Eggimoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24344,347514,Switzerland,National Inventory,2011,For storage only,37,Nümatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24345,347515,Switzerland,National Inventory,2011,For storage only,37,Uf Sal Tonwarenfabrik,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24346,347516,Switzerland,National Inventory,2011,For storage only,37,Waldgass-Grube,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24347,347517,Switzerland,National Inventory,2011,For storage only,37,Aareaue bei Jägerheim,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24348,347518,Switzerland,National Inventory,2011,For storage only,37,Belpau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24349,347519,Switzerland,National Inventory,2011,For storage only,37,Fischzuchtteich Gurnigelbad,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24350,347520,Switzerland,National Inventory,2011,For storage only,37,Talweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24351,347521,Switzerland,National Inventory,2011,For storage only,37,Bammertsgraben,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24352,347522,Switzerland,National Inventory,2011,For storage only,37,"Sur Plian, Les Cases",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24353,347523,Switzerland,National Inventory,2011,For storage only,37,Ziegelei Oberwil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24354,347524,Switzerland,National Inventory,2011,For storage only,37,Les Dailles,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24355,347525,Switzerland,National Inventory,2011,For storage only,37,Steinbruch Andil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24356,347526,Switzerland,National Inventory,2011,For storage only,37,Steingrube Bohlberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24357,347527,Switzerland,National Inventory,2011,For storage only,37,Buechloch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24358,347528,Switzerland,National Inventory,2011,For storage only,37,Mooswasen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24359,347529,Switzerland,National Inventory,2011,For storage only,37,Autal,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24360,347530,Switzerland,National Inventory,2011,For storage only,37,Eisweiher und Wiesenmatten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24361,347531,Switzerland,National Inventory,2011,For storage only,37,Overesses,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24362,347532,Switzerland,National Inventory,2011,For storage only,37,Herzogenmatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24363,347533,Switzerland,National Inventory,2011,For storage only,37,Glacier de Zinal,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24364,347534,Switzerland,National Inventory,2011,For storage only,37,"Vadret da Fenga """"Süd""""",Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24365,347535,Switzerland,National Inventory,2011,For storage only,37,Ova dal Fuorn,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24366,347536,Switzerland,National Inventory,2011,For storage only,37,Glatscher da Gavirolas,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24367,347537,Switzerland,National Inventory,2011,For storage only,37,Hüfifirn,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24368,347538,Switzerland,National Inventory,2011,For storage only,37,Brunnifirn,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24369,347539,Switzerland,National Inventory,2011,For storage only,37,Vadret Vallorgia,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24370,347540,Switzerland,National Inventory,2011,For storage only,37,Isola / Plan Grand,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24371,347541,Switzerland,National Inventory,2011,For storage only,37,Silvrettagletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24372,347542,Switzerland,National Inventory,2011,For storage only,37,Alp Val Tenigia,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24373,347543,Switzerland,National Inventory,2011,For storage only,37,Vadrec da la Bondasca,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24374,347544,Switzerland,National Inventory,2011,For storage only,37,Vadrec del Forno,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24375,347545,Switzerland,National Inventory,2011,For storage only,37,Tambogletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24376,347546,Switzerland,National Inventory,2011,For storage only,37,Paradiesgletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24377,347547,Switzerland,National Inventory,2011,For storage only,37,Canal Gletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24378,347548,Switzerland,National Inventory,2011,For storage only,37,Fanellgletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24379,347549,Switzerland,National Inventory,2011,For storage only,37,Vadret da Grialetsch,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24380,347550,Switzerland,National Inventory,2011,For storage only,37,Vezio - Aranno,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24381,347551,Switzerland,National Inventory,2011,For storage only,37,Chiggiogna - Lavorgo,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24382,347552,Switzerland,National Inventory,2011,For storage only,37,Biaschina - Giornico,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24383,347553,Switzerland,National Inventory,2011,For storage only,37,Fontane,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24384,347554,Switzerland,National Inventory,2011,For storage only,37,Madra,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24385,347555,Switzerland,National Inventory,2011,For storage only,37,Calnegia,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24386,347556,Switzerland,National Inventory,2011,For storage only,37,Mött di Tirman,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24387,347557,Switzerland,National Inventory,2011,For storage only,37,Ova da Roseg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24388,347558,Switzerland,National Inventory,2011,For storage only,37,Ruscada,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24389,347559,Switzerland,National Inventory,2011,For storage only,37,Langgletscher / Jegigletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24390,347560,Switzerland,National Inventory,2011,For storage only,37,Caslano,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24391,347561,Switzerland,National Inventory,2011,For storage only,37,Goldachtobel,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24392,347562,Switzerland,National Inventory,2011,For storage only,37,Ampferenboden,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24393,347563,Switzerland,National Inventory,2011,For storage only,37,Schilstal / Sand,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24394,347564,Switzerland,National Inventory,2011,For storage only,37,Rheinau / Cholau,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24395,347565,Switzerland,National Inventory,2011,For storage only,37,Sarelli - Rosenbergli,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24396,347566,Switzerland,National Inventory,2011,For storage only,37,Sonogno - Brione,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24397,347567,Switzerland,National Inventory,2011,For storage only,37,Vadrec da Fedoz,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24398,347568,Switzerland,National Inventory,2011,For storage only,37,Diechtergletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24399,347569,Switzerland,National Inventory,2011,For storage only,37,Rhonegletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24400,347570,Switzerland,National Inventory,2011,For storage only,37,Rosenlauigletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24401,347571,Switzerland,National Inventory,2011,For storage only,37,Tiefengletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24402,347572,Switzerland,National Inventory,2011,For storage only,37,Dammagletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24403,347573,Switzerland,National Inventory,2011,For storage only,37,Chelengletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24404,347574,Switzerland,National Inventory,2011,For storage only,37,Ghiacciaio del Basòdino W,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24405,347575,Switzerland,National Inventory,2011,For storage only,37,Wallenburnfirn,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24406,347576,Switzerland,National Inventory,2011,For storage only,37,Glacier de Cheilon,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24407,347577,Switzerland,National Inventory,2011,For storage only,37,Vadret da Roseg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24408,347578,Switzerland,National Inventory,2011,For storage only,37,Vadret da Morteratsch,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24409,347579,Switzerland,National Inventory,2011,For storage only,37,Glatscher da Plattas,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24410,347580,Switzerland,National Inventory,2011,For storage only,37,Glatscher da Lavaz,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24411,347581,Switzerland,National Inventory,2011,For storage only,37,Vadret da Porchabella,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24412,347582,Switzerland,National Inventory,2011,For storage only,37,Bösimoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24413,347583,Switzerland,National Inventory,2011,For storage only,37,Kartigelfirn,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24414,347584,Switzerland,National Inventory,2011,For storage only,37,Feegletscher N,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24415,347585,Switzerland,National Inventory,2011,For storage only,37,Stäuberboden,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24416,347586,Switzerland,National Inventory,2011,For storage only,37,Üssre Baltschiedergletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24417,347587,Switzerland,National Inventory,2011,For storage only,37,Kanderfirn,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24418,347588,Switzerland,National Inventory,2011,For storage only,37,Wildstrubelgletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24419,347589,Switzerland,National Inventory,2011,For storage only,37,Rezligletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24420,347590,Switzerland,National Inventory,2011,For storage only,37,Geltengletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24421,347591,Switzerland,National Inventory,2011,For storage only,37,Gauligletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24422,347592,Switzerland,National Inventory,2011,For storage only,37,Hohlichtgletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24423,347593,Switzerland,National Inventory,2011,For storage only,37,Grand Désert,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24424,347594,Switzerland,National Inventory,2011,For storage only,37,Abberggletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24425,347595,Switzerland,National Inventory,2011,For storage only,37,Glacier de Valsorey,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24426,347596,Switzerland,National Inventory,2011,For storage only,37,Glacier d'Otemma,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24427,347597,Switzerland,National Inventory,2011,For storage only,37,Glacier du Brenay,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24428,347598,Switzerland,National Inventory,2011,For storage only,37,Glacier du Petit Combin,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24429,347599,Switzerland,National Inventory,2011,For storage only,37,Glacier de Corbassière,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24430,347600,Switzerland,National Inventory,2011,For storage only,37,Ofental Gletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24431,347601,Switzerland,National Inventory,2011,For storage only,37,Triftgletscher VS,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24432,347602,Switzerland,National Inventory,2011,For storage only,37,Loomettlen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24433,347603,Switzerland,National Inventory,2011,For storage only,37,Muotta da Güvè,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24434,347604,Switzerland,National Inventory,2011,For storage only,37,Son Roc,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24435,347605,Switzerland,National Inventory,2011,For storage only,37,Nursera,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24436,347606,Switzerland,National Inventory,2011,For storage only,37,Caritsch,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24437,347607,Switzerland,National Inventory,2011,For storage only,37,Pascuminer See / Bischolsee,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24438,347608,Switzerland,National Inventory,2011,For storage only,37,Kristalloch,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24439,347609,Switzerland,National Inventory,2011,For storage only,37,Unter dem Heidberistöckli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24440,347610,Switzerland,National Inventory,2011,For storage only,37,Zopf,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24441,347611,Switzerland,National Inventory,2011,For storage only,37,Längriet,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24442,347612,Switzerland,National Inventory,2011,For storage only,37,Nassboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24443,347613,Switzerland,National Inventory,2011,For storage only,37,Lengenschwand,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24444,347614,Switzerland,National Inventory,2011,For storage only,37,Bärmettlen,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24445,347615,Switzerland,National Inventory,2011,For storage only,37,Witi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24446,347616,Switzerland,National Inventory,2011,For storage only,37,Hüenergütsch,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24447,347617,Switzerland,National Inventory,2011,For storage only,37,Ghirone,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24448,347618,Switzerland,National Inventory,2011,For storage only,37,Buholzer Schwändi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24449,347619,Switzerland,National Inventory,2011,For storage only,37,Harzisboden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24450,347620,Switzerland,National Inventory,2011,For storage only,37,Wissenbach,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24451,347621,Switzerland,National Inventory,2011,For storage only,37,Clairbief,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24452,347622,Switzerland,National Inventory,2011,For storage only,37,Le Chablais,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24453,347623,Switzerland,National Inventory,2011,For storage only,37,Embouchure du Chandon,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24454,347624,Switzerland,National Inventory,2011,For storage only,37,Embouchure de la Broye,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24455,347625,Switzerland,National Inventory,2011,For storage only,37,Solalex,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24456,347626,Switzerland,National Inventory,2011,For storage only,37,Plustorna,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24457,347627,Switzerland,National Inventory,2011,For storage only,37,Moore bei Unter Hungerschwand,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24458,347628,Switzerland,National Inventory,2011,For storage only,37,Alp de Mem - Bosch Mosghé,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24459,347629,Switzerland,National Inventory,2011,For storage only,37,Grüöbiwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24460,347630,Switzerland,National Inventory,2011,For storage only,37,Moore westlich Bütlerschwandgraben,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24461,347631,Switzerland,National Inventory,2011,For storage only,37,Witiwald/Dälenwald,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24462,347632,Switzerland,National Inventory,2011,For storage only,37,Wusta,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24463,347633,Switzerland,National Inventory,2011,For storage only,37,Pré aux Oies,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24464,347634,Switzerland,National Inventory,2011,For storage only,37,Marais au nord du Petit Niremont,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24465,347635,Switzerland,National Inventory,2011,For storage only,37,Aelggäu,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24466,347636,Switzerland,National Inventory,2011,For storage only,37,Iles de Bogis,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24467,347637,Switzerland,National Inventory,2011,For storage only,37,Oberglatt,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24468,347638,Switzerland,National Inventory,2011,For storage only,37,Möriken - Wildegg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24469,347639,Switzerland,National Inventory,2011,For storage only,37,Unterer Schiltwald,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24470,347640,Switzerland,National Inventory,2011,For storage only,37,Badhus - Graben,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24471,347641,Switzerland,National Inventory,2011,For storage only,37,Entlental,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24472,347642,Switzerland,National Inventory,2011,For storage only,37,Flühli,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24473,347643,Switzerland,National Inventory,2011,For storage only,37,Bibermüli,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24474,347644,Switzerland,National Inventory,2011,For storage only,37,Nördlich Haldimattstock,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24475,347645,Switzerland,National Inventory,2011,For storage only,37,Dättlikon - Freienstein,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24476,347646,Switzerland,National Inventory,2011,For storage only,37,Gastere bei Selden,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24477,347647,Switzerland,National Inventory,2011,For storage only,37,Grosstal,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24478,347648,Switzerland,National Inventory,2011,For storage only,37,Unterschächen - Spiringen,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24479,347649,Switzerland,National Inventory,2011,For storage only,37,Alpenrösli - Herrenrüti,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24480,347650,Switzerland,National Inventory,2011,For storage only,37,Altboden,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24481,347651,Switzerland,National Inventory,2011,For storage only,37,Gorneren,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24482,347652,Switzerland,National Inventory,2011,For storage only,37,Glatschiu dil Segnas,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24483,347653,Switzerland,National Inventory,2011,For storage only,37,Freienstein - Tössegg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24484,347654,Switzerland,National Inventory,2011,For storage only,37,Kalte Sense,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24485,347655,Switzerland,National Inventory,2011,For storage only,37,Westlich Längenegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24486,347656,Switzerland,National Inventory,2011,For storage only,37,Hinter den Weiden,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24487,347657,Switzerland,National Inventory,2011,For storage only,37,Fuederegg,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24488,347658,Switzerland,National Inventory,2011,For storage only,37,Piei Bachei,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24489,347659,Switzerland,National Inventory,2011,For storage only,37,Unter Wängi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24490,347660,Switzerland,National Inventory,2011,For storage only,37,Sèche de Gimel,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24491,347661,Switzerland,National Inventory,2011,For storage only,37,Ganzenlouwina,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24492,347662,Switzerland,National Inventory,2011,For storage only,37,Lac de Montsalvens,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24493,347663,Switzerland,National Inventory,2011,For storage only,37,Tschingel,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24494,347664,Switzerland,National Inventory,2011,For storage only,37,Ober Gründli,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24495,347665,Switzerland,National Inventory,2011,For storage only,37,Emmeschlucht,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24496,347666,Switzerland,National Inventory,2011,For storage only,37,Harzisboden,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24497,347667,Switzerland,National Inventory,2011,For storage only,37,Rezliberg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24498,347668,Switzerland,National Inventory,2011,For storage only,37,Hornbrügg,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24499,347669,Switzerland,National Inventory,2011,For storage only,37,Lochweid,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24500,347670,Switzerland,National Inventory,2011,For storage only,37,Unteralp,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24501,347671,Switzerland,National Inventory,2011,For storage only,37,Barme,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24502,347673,Switzerland,National Inventory,2011,For storage only,37,Vadret da Palü,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24503,347706,Switzerland,National Inventory,2011,For storage only,37,Weiher im Tal,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24504,347707,Switzerland,National Inventory,2011,For storage only,37,Hegnau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24505,347708,Switzerland,National Inventory,2011,For storage only,37,Schwand,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24506,347709,Switzerland,National Inventory,2011,For storage only,37,Haldengutweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24507,347710,Switzerland,National Inventory,2011,For storage only,37,Auschachen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24508,347711,Switzerland,National Inventory,2011,For storage only,37,Lostorf,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24509,347712,Switzerland,National Inventory,2011,For storage only,37,Burger Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24510,347714,Switzerland,National Inventory,2011,For storage only,37,Mattenplätz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24511,347715,Switzerland,National Inventory,2011,For storage only,37,Feldenmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24512,347716,Switzerland,National Inventory,2011,For storage only,37,Halbmond,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24513,347717,Switzerland,National Inventory,2011,For storage only,37,Butzenmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24514,347718,Switzerland,National Inventory,2011,For storage only,37,Bremengrien,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24515,347719,Switzerland,National Inventory,2011,For storage only,37,Folenweid,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24516,347720,Switzerland,National Inventory,2011,For storage only,37,Lindimatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24517,347721,Switzerland,National Inventory,2011,For storage only,37,Dickhölzli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24518,347722,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Egg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24519,347730,Switzerland,National Inventory,2011,For storage only,37,Fischergrien,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24520,347732,Switzerland,National Inventory,2011,For storage only,37,Niedermoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24521,347737,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Im Türli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24522,347741,Switzerland,National Inventory,2011,For storage only,37,Grèves du lac,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24523,347742,Switzerland,National Inventory,2011,For storage only,37,Gontenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24524,347743,Switzerland,National Inventory,2011,For storage only,37,Gontenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24525,347744,Switzerland,National Inventory,2011,For storage only,37,Gontenmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24526,347745,Switzerland,National Inventory,2011,For storage only,37,Grèves du lac,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24527,347746,Switzerland,National Inventory,2011,For storage only,37,Grèves du lac,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24528,347747,Switzerland,National Inventory,2011,For storage only,37,Grèves du lac,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24529,347748,Switzerland,National Inventory,2011,For storage only,37,Seewadel,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24530,347749,Switzerland,National Inventory,2011,For storage only,37,Grèves du lac,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24531,347750,Switzerland,National Inventory,2011,For storage only,37,Glatscher Davos la Buora,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24532,347751,Switzerland,National Inventory,2011,For storage only,37,Grèves du lac,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24533,347752,Switzerland,National Inventory,2011,For storage only,37,Hudelmoos (TG),Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24534,347753,Switzerland,National Inventory,2011,For storage only,37,Moore südlich Habchegg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24535,347754,Switzerland,National Inventory,2011,For storage only,37,Potersalp,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24536,347755,Switzerland,National Inventory,2011,For storage only,37,Rongg,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24537,347757,Switzerland,National Inventory,2011,For storage only,37,Grèves du lac,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24538,347758,Switzerland,National Inventory,2011,For storage only,37,Bergalga,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24539,347759,Switzerland,National Inventory,2011,For storage only,37,Val Frisal,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24540,347760,Switzerland,National Inventory,2011,For storage only,37,Oberstafelbach,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24541,347761,Switzerland,National Inventory,2011,For storage only,37,Rabiusa Engi,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24542,347762,Switzerland,National Inventory,2011,For storage only,37,"Pradatsch, Val Plavna",Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24543,347763,Switzerland,National Inventory,2011,For storage only,37,Plaun Segnas Sut,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24544,347764,Switzerland,National Inventory,2011,For storage only,37,Plaun la Greina,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24545,347765,Switzerland,National Inventory,2011,For storage only,37,Rischi,Federal Inventory of Raised and Transitional Mires of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24546,347766,Switzerland,National Inventory,2011,For storage only,37,Bächlisboden,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24547,347767,Switzerland,National Inventory,2011,For storage only,37,Broc,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24548,347768,Switzerland,National Inventory,2011,For storage only,37,Ragn d'Err,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24549,347769,Switzerland,National Inventory,2011,For storage only,37,"Plaun Vadret, Val Fex",Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24550,347770,Switzerland,National Inventory,2011,For storage only,37,Engstligenalp,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24551,347771,Switzerland,National Inventory,2011,For storage only,37,Spittelmatte,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24552,347772,Switzerland,National Inventory,2011,For storage only,37,Gamchigletscher,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24553,347773,Switzerland,National Inventory,2011,For storage only,37,Aua da Fedoz,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24554,347775,Switzerland,National Inventory,2011,For storage only,37,Lampertschalp,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24555,347783,Switzerland,National Inventory,2011,For storage only,37,Turpenriet / Torf-Riet,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24556,347791,Switzerland,National Inventory,2011,For storage only,37,Rotenbach,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24557,347811,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Rhinauer Feld und Oberboden,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24558,347813,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Härdli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24559,347814,Switzerland,National Inventory,2011,For storage only,37,Raffoltersee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24560,347815,Switzerland,National Inventory,2011,For storage only,37,Laichgebiet Lorzespitz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24561,347816,Switzerland,National Inventory,2011,For storage only,37,Weiher bei Hermatswil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24562,347817,Switzerland,National Inventory,2011,For storage only,37,Feuerweiher am Homberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24563,347818,Switzerland,National Inventory,2011,For storage only,37,Biotop bei NOK Breite,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24564,347819,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube SW Runsberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24565,347820,Switzerland,National Inventory,2011,For storage only,37,Schützenweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24566,347821,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Ebnet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24567,347822,Switzerland,National Inventory,2011,For storage only,37,Russiker Ried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24568,347823,Switzerland,National Inventory,2011,For storage only,37,Gruben Hard und Gubel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24569,347824,Switzerland,National Inventory,2011,For storage only,37,Weiher Gütighausen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24570,347825,Switzerland,National Inventory,2011,For storage only,37,Truttiker Ried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24571,347826,Switzerland,National Inventory,2011,For storage only,37,Seewädeli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24572,347827,Switzerland,National Inventory,2011,For storage only,37,"Chatzensee, Chräenriet",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24573,347828,Switzerland,National Inventory,2011,For storage only,37,Waldried Homberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24574,347829,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Hasel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24575,347830,Switzerland,National Inventory,2011,For storage only,37,Írmis,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24576,347831,Switzerland,National Inventory,2011,For storage only,37,Ried Schlimberg/Vogelholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24577,347832,Switzerland,National Inventory,2011,For storage only,37,Laichgebiet Bogen-Mesikon-Brand,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24578,347833,Switzerland,National Inventory,2011,For storage only,37,Ried südl. Uerzlikon,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24579,347834,Switzerland,National Inventory,2011,For storage only,37,Alter Torfstich im Hagenholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24580,347835,Switzerland,National Inventory,2011,For storage only,37,Glattaltlaufgebiet Schlosswinkel-Peterli-Solachten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24581,347836,Switzerland,National Inventory,2011,For storage only,37,Enteler-Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24582,347837,Switzerland,National Inventory,2011,For storage only,37,Hoperenried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24583,347838,Switzerland,National Inventory,2011,For storage only,37,Lehmgrube beim Gwerfihölzli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24584,347839,Switzerland,National Inventory,2011,For storage only,37,Mülichrammweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24585,347840,Switzerland,National Inventory,2011,For storage only,37,Elliker Auen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24586,347841,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Grischei,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24587,347842,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Hinterfeld,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24588,347843,Switzerland,National Inventory,2011,For storage only,37,Biotop Süessplätz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24589,347844,Switzerland,National Inventory,2011,For storage only,37,Mördersee und Pfaffensee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24590,347846,Switzerland,National Inventory,2011,For storage only,37,Wolfsgrueb,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24591,347848,Switzerland,National Inventory,2011,For storage only,37,Grube Gündelhart,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24592,347850,Switzerland,National Inventory,2011,For storage only,37,Räubrichseen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24593,347852,Switzerland,National Inventory,2011,For storage only,37,Torfstiche im Seewadel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24594,347854,Switzerland,National Inventory,2011,For storage only,37,Espen Riet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24595,347855,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Buchbrunnen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24596,347857,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Büelhüsli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24597,347858,Switzerland,National Inventory,2011,For storage only,37,Wolfhöhli/Chüelespitz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24598,347860,Switzerland,National Inventory,2011,For storage only,37,Schlossried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24599,347861,Switzerland,National Inventory,2011,For storage only,37,Weierwies,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24600,347862,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Rosengarten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24601,347863,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Ebertswil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24602,347864,Switzerland,National Inventory,2011,For storage only,37,Grube Seefeld und Stopperweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24603,347865,Switzerland,National Inventory,2011,For storage only,37,Grabenriet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24604,347866,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Kindhausen (Blutzwies),Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24605,347867,Switzerland,National Inventory,2011,For storage only,37,Wollwisli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24606,347868,Switzerland,National Inventory,2011,For storage only,37,Weiher Lochrüti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24607,347869,Switzerland,National Inventory,2011,For storage only,37,Seerhein Chuehorn - Paradies,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24608,347870,Switzerland,National Inventory,2011,For storage only,37,Ambitzgi-/Bönlerried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24609,347877,Switzerland,National Inventory,2011,For storage only,37,Schaarenwies/Schaarenwald,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24610,347878,Switzerland,National Inventory,2011,For storage only,37,Werriker-/Glattenried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24611,347879,Switzerland,National Inventory,2011,For storage only,37,Robenhauserried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24612,347880,Switzerland,National Inventory,2011,For storage only,37,Pfyn West,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24613,347881,Switzerland,National Inventory,2011,For storage only,37,Bendes,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24614,347882,Switzerland,National Inventory,2011,For storage only,37,"Les Echelettes, La Léchère",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24615,347883,Switzerland,National Inventory,2011,For storage only,37,Grand Marais,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24616,347884,Switzerland,National Inventory,2011,For storage only,37,Les Mossières,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24617,347885,Switzerland,National Inventory,2011,For storage only,37,"Borire, Corjon",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24618,347886,Switzerland,National Inventory,2011,For storage only,37,"Lac Coffy, Bois Ramel",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24619,347887,Switzerland,National Inventory,2011,For storage only,37,Le Malévoz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24620,347888,Switzerland,National Inventory,2011,For storage only,37,Montagne de l'Au,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24621,347889,Switzerland,National Inventory,2011,For storage only,37,Prés de Rosex,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24622,347890,Switzerland,National Inventory,2011,For storage only,37,Lac de Mont d'Orge,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24623,347891,Switzerland,National Inventory,2011,For storage only,37,"Pfyn Ost, Rosensee",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24624,347892,Switzerland,National Inventory,2011,For storage only,37,Bonigersee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24625,347893,Switzerland,National Inventory,2011,For storage only,37,Bettmeralp,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24626,347894,Switzerland,National Inventory,2011,For storage only,37,Chiebodenstafel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24627,347895,Switzerland,National Inventory,2011,For storage only,37,Erlenhofweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24628,347896,Switzerland,National Inventory,2011,For storage only,37,Lac de Tanay,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24629,347897,Switzerland,National Inventory,2011,For storage only,37,"Grand Bataillard, Marais de la Versoix",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24630,347898,Switzerland,National Inventory,2011,For storage only,37,Reussdelta,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24631,347899,Switzerland,National Inventory,2011,For storage only,37,Etang de Vigny,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24632,347900,Switzerland,National Inventory,2011,For storage only,37,Etang du Sépey,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24633,347901,Switzerland,National Inventory,2011,For storage only,37,"Etang du Buron, les Bioles",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24634,347902,Switzerland,National Inventory,2011,For storage only,37,Etang de la Scie,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24635,347903,Switzerland,National Inventory,2011,For storage only,37,"La Combaz, L'Abbaye",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24636,347904,Switzerland,National Inventory,2011,For storage only,37,Ancienne Broye,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24637,347905,Switzerland,National Inventory,2011,For storage only,37,Les Bidonnes,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24638,347906,Switzerland,National Inventory,2011,For storage only,37,"Vernez-de-Chaux, la Coula",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24639,347907,Switzerland,National Inventory,2011,For storage only,37,Palude San Giorgio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24640,347908,Switzerland,National Inventory,2011,For storage only,37,"Bioute, Etang d'Arnex",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24641,347909,Switzerland,National Inventory,2011,For storage only,37,Entremur,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24642,347910,Switzerland,National Inventory,2011,For storage only,37,"Pré Bernard, Creux-de-Terre",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24643,347911,Switzerland,National Inventory,2011,For storage only,37,"Planches de Sergey, Chassagne",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24644,347912,Switzerland,National Inventory,2011,For storage only,37,Tourbière des Mosses,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24645,347913,Switzerland,National Inventory,2011,For storage only,37,Canal de Ceinture,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24646,347914,Switzerland,National Inventory,2011,For storage only,37,Arborex,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24647,347915,Switzerland,National Inventory,2011,For storage only,37,Altwässer Thurspitz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24648,347916,Switzerland,National Inventory,2011,For storage only,37,Tüfi-Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24649,347917,Switzerland,National Inventory,2011,For storage only,37,Waldweiher im Oberholz / Iffertsmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24650,347918,Switzerland,National Inventory,2011,For storage only,37,Gurisee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24651,347919,Switzerland,National Inventory,2011,For storage only,37,Türlersee NW-Ufer,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24652,347920,Switzerland,National Inventory,2011,For storage only,37,Längerenweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24653,347921,Switzerland,National Inventory,2011,For storage only,37,Ried beim Scheibenstand,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24654,347922,Switzerland,National Inventory,2011,For storage only,37,Lüsga,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24655,347923,Switzerland,National Inventory,2011,For storage only,37,Hungerseeli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24656,347924,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Goldbach,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24657,347925,Switzerland,National Inventory,2011,For storage only,37,Präuselen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24658,347926,Switzerland,National Inventory,2011,For storage only,37,Kiesgruben Ebnet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24659,347927,Switzerland,National Inventory,2011,For storage only,37,Seewadel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24660,347928,Switzerland,National Inventory,2011,For storage only,37,Isert Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24661,347929,Switzerland,National Inventory,2011,For storage only,37,Hätteliweiher Oberholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24662,347930,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Rüteren,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24663,347931,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Garwid,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24664,347932,Switzerland,National Inventory,2011,For storage only,37,Weiher Häsental,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24665,347933,Switzerland,National Inventory,2011,For storage only,37,Poutafontana,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24666,347934,Switzerland,National Inventory,2011,For storage only,37,Le Rosel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24667,347935,Switzerland,National Inventory,2011,For storage only,37,Rüss-Spitz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24668,347936,Switzerland,National Inventory,2011,For storage only,37,Binzmüli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24669,347937,Switzerland,National Inventory,2011,For storage only,37,Steinhauser Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24670,347938,Switzerland,National Inventory,2011,For storage only,37,Eselacherried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24671,347939,Switzerland,National Inventory,2011,For storage only,37,Amphibienbiotope Allmend III,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24672,347940,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Egghau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24673,347941,Switzerland,National Inventory,2011,For storage only,37,Sandlochgrube Chomberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24674,347942,Switzerland,National Inventory,2011,For storage only,37,Weiertal,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24675,347943,Switzerland,National Inventory,2011,For storage only,37,Lehmgrube Dättnau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24676,347944,Switzerland,National Inventory,2011,For storage only,37,Hänsiried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24677,347945,Switzerland,National Inventory,2011,For storage only,37,"Mülliweiher, Weiher am Rossweg",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24678,347946,Switzerland,National Inventory,2011,For storage only,37,Weiher und Grube bei Ribacher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24679,347947,Switzerland,National Inventory,2011,For storage only,37,Weiher Stigenhof,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24680,347948,Switzerland,National Inventory,2011,For storage only,37,Weiher Fromoos (Gerhauweiher),Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24681,347949,Switzerland,National Inventory,2011,For storage only,37,Totentäli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24682,347950,Switzerland,National Inventory,2011,For storage only,37,Alpe di Quarnéi,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24683,347952,Switzerland,National Inventory,2011,For storage only,37,Saint-Victor,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24684,347954,Switzerland,National Inventory,2011,For storage only,37,Santa Maria,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24685,347955,Switzerland,National Inventory,2011,For storage only,37,Belladrum,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24686,347958,Switzerland,National Inventory,2011,For storage only,37,Lago d'Origlio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24687,347959,Switzerland,National Inventory,2011,For storage only,37,Miolan,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24688,347960,Switzerland,National Inventory,2011,For storage only,37,Pian Segno II,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24689,347961,Switzerland,National Inventory,2011,For storage only,37,Petit Niremont,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24690,347962,Switzerland,National Inventory,2011,For storage only,37,Waldeggmoos,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24691,347963,Switzerland,National Inventory,2011,For storage only,37,Les Saignolis I,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24692,347964,Switzerland,National Inventory,2011,For storage only,37,Les Saignolis II,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24693,347968,Switzerland,National Inventory,2011,For storage only,37,Jänzimatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24694,347969,Switzerland,National Inventory,2011,For storage only,37,Weiher Hinter Richisalp,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24695,347971,Switzerland,National Inventory,2011,For storage only,37,Sumpf unterh. Station Heustrich,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24696,347973,Switzerland,National Inventory,2011,For storage only,37,Campi Grandi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24697,347975,Switzerland,National Inventory,2011,For storage only,37,Combes Chappuis,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24698,347977,Switzerland,National Inventory,2011,For storage only,37,Haute Seymaz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24699,347982,Switzerland,National Inventory,2011,For storage only,37,Dolliets,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24700,347985,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Mülibach,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24701,347988,Switzerland,National Inventory,2011,For storage only,37,Ried Gmeimatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24702,347991,Switzerland,National Inventory,2011,For storage only,37,Bunau,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24703,347993,Switzerland,National Inventory,2011,For storage only,37,Muscherensense,Federal Inventory of Alluvial Zones of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24704,347994,Switzerland,National Inventory,2011,For storage only,37,Schlaufe,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24705,347996,Switzerland,National Inventory,2011,For storage only,37,Ca del Boscat,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24706,347997,Switzerland,National Inventory,2011,For storage only,37,Stagni San Giorgio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24707,347998,Switzerland,National Inventory,2011,For storage only,37,Scairolo Vecchio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24708,348000,Switzerland,National Inventory,2011,For storage only,37,Pré-Béroux,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24709,348003,Switzerland,National Inventory,2011,For storage only,37,En Pratchie,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24710,348010,Switzerland,National Inventory,2011,For storage only,37,Cavloc,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24711,348014,Switzerland,National Inventory,2011,For storage only,37,"Bois de Chênes, Lac Vert",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24712,348017,Switzerland,National Inventory,2011,For storage only,37,Les Coeudres,Federal Inventory of Fenlands of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24713,348019,Switzerland,National Inventory,2011,For storage only,37,La Coeuvatte,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24714,348022,Switzerland,National Inventory,2011,For storage only,37,"Eigental, Pantliried",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24715,348024,Switzerland,National Inventory,2011,For storage only,37,Bichelsee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24716,348028,Switzerland,National Inventory,2011,For storage only,37,Canton del Marcio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24717,348033,Switzerland,National Inventory,2011,For storage only,37,Ägelsee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24718,348036,Switzerland,National Inventory,2011,For storage only,37,Canal de la Tuilière,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24719,348037,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Buech,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24720,348039,Switzerland,National Inventory,2011,For storage only,37,Musital,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24721,348041,Switzerland,National Inventory,2011,For storage only,37,Mittelfeld-Kiesgrube,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24722,348044,Switzerland,National Inventory,2011,For storage only,37,Grütriet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24723,348046,Switzerland,National Inventory,2011,For storage only,37,Arales,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24724,348050,Switzerland,National Inventory,2011,For storage only,37,Bistoquette et Paradis,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24725,348053,Switzerland,National Inventory,2011,For storage only,37,Langstuden Befang,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24726,348057,Switzerland,National Inventory,2011,For storage only,37,Ritzenmattseeli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24727,348061,Switzerland,National Inventory,2011,For storage only,37,Feret,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24728,348063,Switzerland,National Inventory,2011,For storage only,37,Obermatteggweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24729,348064,Switzerland,National Inventory,2011,For storage only,37,Usser Allmend,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24730,348066,Switzerland,National Inventory,2011,For storage only,37,Glaubenbielen Ribihütte,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24731,348069,Switzerland,National Inventory,2011,For storage only,37,"Bois de Porte, les Dailles",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24732,348071,Switzerland,National Inventory,2011,For storage only,37,Buech/Steiacher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24733,348074,Switzerland,National Inventory,2011,For storage only,37,"Chrutzelried, Heidenried",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24734,348081,Switzerland,National Inventory,2011,For storage only,37,Foort,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24735,348084,Switzerland,National Inventory,2011,For storage only,37,Alte Oelerdeponie/Munimatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24736,348086,Switzerland,National Inventory,2011,For storage only,37,Bärmatten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24737,348089,Switzerland,National Inventory,2011,For storage only,37,Sachsler Seefeld,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24738,348090,Switzerland,National Inventory,2011,For storage only,37,Schlossweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24739,348091,Switzerland,National Inventory,2011,For storage only,37,Le Foulet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24740,348092,Switzerland,National Inventory,2011,For storage only,37,Gnappiried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24741,348093,Switzerland,National Inventory,2011,For storage only,37,Vierwaldstättersee Hüttenort,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24742,348094,Switzerland,National Inventory,2011,For storage only,37,Stansstader Ried/Rotzloch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24743,348095,Switzerland,National Inventory,2011,For storage only,37,Chrotteseeli Obbürgen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24744,348096,Switzerland,National Inventory,2011,For storage only,37,Le Loclat,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24745,348097,Switzerland,National Inventory,2011,For storage only,37,Hanenriet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24746,348098,Switzerland,National Inventory,2011,For storage only,37,La Marnière d'Hauterive,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24747,348099,Switzerland,National Inventory,2011,For storage only,37,Sewenseeli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24748,348100,Switzerland,National Inventory,2011,For storage only,37,Melbach,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24749,348101,Switzerland,National Inventory,2011,For storage only,37,Mörlisee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24750,348102,Switzerland,National Inventory,2011,For storage only,37,"Gerzensee, Blindseeli",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24751,348103,Switzerland,National Inventory,2011,For storage only,37,Bisen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24752,348104,Switzerland,National Inventory,2011,For storage only,37,Eselschwanz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24753,348105,Switzerland,National Inventory,2011,For storage only,37,"Schlierenrüti, Reservat Sarna",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24754,348106,Switzerland,National Inventory,2011,For storage only,37,Marnière du Plan du Bois,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24755,348107,Switzerland,National Inventory,2011,For storage only,37,Forenmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24756,348108,Switzerland,National Inventory,2011,For storage only,37,Moosweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24757,348109,Switzerland,National Inventory,2011,For storage only,37,Chänzeli / Schachen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24758,348110,Switzerland,National Inventory,2011,For storage only,37,"Risch, Rotseeried",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24759,348111,Switzerland,National Inventory,2011,For storage only,37,Ottigenbüel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24760,348112,Switzerland,National Inventory,2011,For storage only,37,Wannenholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24761,348113,Switzerland,National Inventory,2011,For storage only,37,La Paulière,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24762,348114,Switzerland,National Inventory,2011,For storage only,37,Riffigweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24763,348115,Switzerland,National Inventory,2011,For storage only,37,Banriet / Burst,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24764,348116,Switzerland,National Inventory,2011,For storage only,37,Les Goudebas,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24765,348117,Switzerland,National Inventory,2011,For storage only,37,La Fabrique,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24766,348118,Switzerland,National Inventory,2011,For storage only,37,Pointe du Grain,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24767,348119,Switzerland,National Inventory,2011,For storage only,37,Les Eplatures,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24768,348120,Switzerland,National Inventory,2011,For storage only,37,La Galandrure,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24769,348121,Switzerland,National Inventory,2011,For storage only,37,La Gare,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24770,348122,Switzerland,National Inventory,2011,For storage only,37,Lättloch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24771,348123,Switzerland,National Inventory,2011,For storage only,37,Glatttal,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24772,348124,Switzerland,National Inventory,2011,For storage only,37,St. Sebastian,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24773,348125,Switzerland,National Inventory,2011,For storage only,37,Siessenweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24774,348126,Switzerland,National Inventory,2011,For storage only,37,Briggisweiher N Auenhof,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24775,348127,Switzerland,National Inventory,2011,For storage only,37,Joner Allmeind,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24776,348128,Switzerland,National Inventory,2011,For storage only,37,Allmeind,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24777,348129,Switzerland,National Inventory,2011,For storage only,37,Ballastière,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24778,348130,Switzerland,National Inventory,2011,For storage only,37,Bodenseeriet Altenrhein,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24779,348131,Switzerland,National Inventory,2011,For storage only,37,Bi den Seelenen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24780,348132,Switzerland,National Inventory,2011,For storage only,37,Baggerseen im Staffelriet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24781,348133,Switzerland,National Inventory,2011,For storage only,37,Bettenauerweier,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24782,348134,Switzerland,National Inventory,2011,For storage only,37,Gill-Henau Reservat,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24783,348135,Switzerland,National Inventory,2011,For storage only,37,Hasenlooweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24784,348136,Switzerland,National Inventory,2011,For storage only,37,"Huserfelsen, Himmelbleichi",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24785,348137,Switzerland,National Inventory,2011,For storage only,37,Ehemalige Kiesgrube Au,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24786,348138,Switzerland,National Inventory,2011,For storage only,37,Riet Zuzwil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24787,348139,Switzerland,National Inventory,2011,For storage only,37,Turpenriet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24788,348140,Switzerland,National Inventory,2011,For storage only,37,"Burstried, Galgenmad",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24789,348141,Switzerland,National Inventory,2011,For storage only,37,Schlossweiher Altishofen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24790,348142,Switzerland,National Inventory,2011,For storage only,37,Alte Lehmgrube Hilpert,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24791,348143,Switzerland,National Inventory,2011,For storage only,37,Wichenstein,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24792,348144,Switzerland,National Inventory,2011,For storage only,37,Spitzmäder,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24793,348145,Switzerland,National Inventory,2011,For storage only,37,Wenigerweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24794,348146,Switzerland,National Inventory,2011,For storage only,37,Wiesenfurt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24795,348147,Switzerland,National Inventory,2011,For storage only,37,Kaltbrunnerriet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24796,348148,Switzerland,National Inventory,2011,For storage only,37,Ochsenweid,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24797,348149,Switzerland,National Inventory,2011,For storage only,37,Mösli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24798,348150,Switzerland,National Inventory,2011,For storage only,37,Egelsee bei Bad Forstegg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24799,348151,Switzerland,National Inventory,2011,For storage only,37,Ziegelei Bruggwald,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24800,348152,Switzerland,National Inventory,2011,For storage only,37,Huebermoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24801,348153,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Schuppis,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24802,348154,Switzerland,National Inventory,2011,For storage only,37,Kiessammler Vilters,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24803,348155,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Feerbach,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24804,348156,Switzerland,National Inventory,2011,For storage only,37,Fuchsloch - Buriet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24805,348157,Switzerland,National Inventory,2011,For storage only,37,Retentionsbecken Ceres Rhein-Au,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24806,348158,Switzerland,National Inventory,2011,For storage only,37,En Cortio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24807,348159,Switzerland,National Inventory,2011,For storage only,37,La Gruère,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24808,348160,Switzerland,National Inventory,2011,For storage only,37,Les Royes,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24809,348161,Switzerland,National Inventory,2011,For storage only,37,Côte dOye,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24810,348162,Switzerland,National Inventory,2011,For storage only,37,Etangs de Vendlincourt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24811,348163,Switzerland,National Inventory,2011,For storage only,37,Lorette,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24812,348164,Switzerland,National Inventory,2011,For storage only,37,Bellefontaine,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24813,348165,Switzerland,National Inventory,2011,For storage only,37,Hasliweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24814,348166,Switzerland,National Inventory,2011,For storage only,37,Sous Bâme,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24815,348167,Switzerland,National Inventory,2011,For storage only,37,La Bouège - La Goule,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24816,348168,Switzerland,National Inventory,2011,For storage only,37,Etangs Rougeat,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24817,348169,Switzerland,National Inventory,2011,For storage only,37,Etangs de Bonfol,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24818,348170,Switzerland,National Inventory,2011,For storage only,37,Les Queues de Chats,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24819,348171,Switzerland,National Inventory,2011,For storage only,37,Le Martinet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24820,348172,Switzerland,National Inventory,2011,For storage only,37,Les Coeudres,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24821,348173,Switzerland,National Inventory,2011,For storage only,37,Grube Stoos Hüswil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24822,348174,Switzerland,National Inventory,2011,For storage only,37,Etang Corbat,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24823,348175,Switzerland,National Inventory,2011,For storage only,37,Le Refrain - La Bouège,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24824,348176,Switzerland,National Inventory,2011,For storage only,37,Bois de Chaux,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24825,348177,Switzerland,National Inventory,2011,For storage only,37,Combe Tabeillon,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24826,348178,Switzerland,National Inventory,2011,For storage only,37,Combe du Bez,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24827,348179,Switzerland,National Inventory,2011,For storage only,37,Foradrai,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24828,348180,Switzerland,National Inventory,2011,For storage only,37,Les Charbonnières,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24829,348181,Switzerland,National Inventory,2011,For storage only,37,Moulin de Bavelier,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24830,348182,Switzerland,National Inventory,2011,For storage only,37,Les Pommerats,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24831,348183,Switzerland,National Inventory,2011,For storage only,37,La Réselle,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24832,348184,Switzerland,National Inventory,2011,For storage only,37,Bois Banal - Moulin Jeannotat,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24833,348185,Switzerland,National Inventory,2011,For storage only,37,Les Saignes,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24834,348186,Switzerland,National Inventory,2011,For storage only,37,La Sagne à Droz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24835,348187,Switzerland,National Inventory,2011,For storage only,37,La Vauchotte - Bois Banal,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24836,348188,Switzerland,National Inventory,2011,For storage only,37,Dos le Cras,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24837,348189,Switzerland,National Inventory,2011,For storage only,37,Plaine de Saigne,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24838,348190,Switzerland,National Inventory,2011,For storage only,37,La Goule - Le Theusseret,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24839,348191,Switzerland,National Inventory,2011,For storage only,37,Fuchseren,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24840,348192,Switzerland,National Inventory,2011,For storage only,37,Les Esserts,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24841,348193,Switzerland,National Inventory,2011,For storage only,37,Wauwilermoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24842,348194,Switzerland,National Inventory,2011,For storage only,37,Moosschürweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24843,348195,Switzerland,National Inventory,2011,For storage only,37,Chüsenrainwald,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24844,348196,Switzerland,National Inventory,2011,For storage only,37,Hetzligermoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24845,348197,Switzerland,National Inventory,2011,For storage only,37,Mühleweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24846,348198,Switzerland,National Inventory,2011,For storage only,37,Staudenschachen Südarm,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24847,348199,Switzerland,National Inventory,2011,For storage only,37,Unterallmend,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24848,348200,Switzerland,National Inventory,2011,For storage only,37,Le Colliard,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24849,348201,Switzerland,National Inventory,2011,For storage only,37,Steinibüelweier,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24850,348202,Switzerland,National Inventory,2011,For storage only,37,Uffikonermoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24851,348203,Switzerland,National Inventory,2011,For storage only,37,NE Hirsboden,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24852,348204,Switzerland,National Inventory,2011,For storage only,37,Chalchloch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24853,348205,Switzerland,National Inventory,2011,For storage only,37,Hinter Roren,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24854,348206,Switzerland,National Inventory,2011,For storage only,37,Grueb Grossfeld,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24855,348207,Switzerland,National Inventory,2011,For storage only,37,Wagenmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24856,348208,Switzerland,National Inventory,2011,For storage only,37,Magdenau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24857,348209,Switzerland,National Inventory,2011,For storage only,37,Turbemoos (Forenwäldli),Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24858,348210,Switzerland,National Inventory,2011,For storage only,37,Turbiweiher - Ronfeldweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24859,348211,Switzerland,National Inventory,2011,For storage only,37,Gürmschmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24860,348212,Switzerland,National Inventory,2011,For storage only,37,Moos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24861,348213,Switzerland,National Inventory,2011,For storage only,37,Mettlenmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24862,348214,Switzerland,National Inventory,2011,For storage only,37,Gütschweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24863,348215,Switzerland,National Inventory,2011,For storage only,37,Naturlehrgebiet Buechwald,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24864,348216,Switzerland,National Inventory,2011,For storage only,37,Unter Chlotisberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24865,348217,Switzerland,National Inventory,2011,For storage only,37,Vogelmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24866,348218,Switzerland,National Inventory,2011,For storage only,37,Schützenfeld - Moospünten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24867,348219,Switzerland,National Inventory,2011,For storage only,37,Tuetenseeli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24868,348220,Switzerland,National Inventory,2011,For storage only,37,Gütsch - Feldhof,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24869,348221,Switzerland,National Inventory,2011,For storage only,37,Steinibachried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24870,348222,Switzerland,National Inventory,2011,For storage only,37,Burgschachen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24871,348223,Switzerland,National Inventory,2011,For storage only,37,Wolermoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24872,348224,Switzerland,National Inventory,2011,For storage only,37,Hagimoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24873,348225,Switzerland,National Inventory,2011,For storage only,37,Stadelmoosweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24874,348226,Switzerland,National Inventory,2011,For storage only,37,Ostergau,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24875,348227,Switzerland,National Inventory,2011,For storage only,37,Unterbüel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24876,348228,Switzerland,National Inventory,2011,For storage only,37,Gola di Lago,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24877,348229,Switzerland,National Inventory,2011,For storage only,37,Hauptwiler Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24878,348230,Switzerland,National Inventory,2011,For storage only,37,Isola Sgraver,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24879,348231,Switzerland,National Inventory,2011,For storage only,37,Bolle di Mondrigo,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24880,348232,Switzerland,National Inventory,2011,For storage only,37,Stagno Paron,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24881,348233,Switzerland,National Inventory,2011,For storage only,37,Stagno Motto della Costa,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24882,348234,Switzerland,National Inventory,2011,For storage only,37,Stagno Figino-Cásoro,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24883,348235,Switzerland,National Inventory,2011,For storage only,37,Barbescio - Bolletina Lunga,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24884,348236,Switzerland,National Inventory,2011,For storage only,37,Stagno Agra,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24885,348237,Switzerland,National Inventory,2011,For storage only,37,Bolle di Magadino,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24886,348238,Switzerland,National Inventory,2011,For storage only,37,Laghetto d'Orbello,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24887,348239,Switzerland,National Inventory,2011,For storage only,37,Laghetto,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24888,348240,Switzerland,National Inventory,2011,For storage only,37,Lago di Lugano a Cantonetto,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24889,348241,Switzerland,National Inventory,2011,For storage only,37,Cava Gere Croglio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24890,348242,Switzerland,National Inventory,2011,For storage only,37,Ressiga,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24891,348243,Switzerland,National Inventory,2011,For storage only,37,Canale Demanio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24892,348244,Switzerland,National Inventory,2011,For storage only,37,Cava Rivaccia,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24893,348245,Switzerland,National Inventory,2011,For storage only,37,Bächli - Gishalde,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24894,348246,Switzerland,National Inventory,2011,For storage only,37,Pflanzgarten Tätsch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24895,348247,Switzerland,National Inventory,2011,For storage only,37,Güttingersrüti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24896,348248,Switzerland,National Inventory,2011,For storage only,37,Aue N Aachmündung,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24897,348249,Switzerland,National Inventory,2011,For storage only,37,Stockrüti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24898,348250,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Freudenberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24899,348251,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Atzenholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24900,348252,Switzerland,National Inventory,2011,For storage only,37,Piano di Arbigo,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24901,348253,Switzerland,National Inventory,2011,For storage only,37,Arniger Witi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24902,348254,Switzerland,National Inventory,2011,For storage only,37,Bolle di S. Martino,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24903,348255,Switzerland,National Inventory,2011,For storage only,37,Zuckenmattweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24904,348256,Switzerland,National Inventory,2011,For storage only,37,Riet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24905,348257,Switzerland,National Inventory,2011,For storage only,37,Stagno di Progero,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24906,348258,Switzerland,National Inventory,2011,For storage only,37,Cassina di Lago,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24907,348259,Switzerland,National Inventory,2011,For storage only,37,Malcantone,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24908,348260,Switzerland,National Inventory,2011,For storage only,37,Pescicoltura Golino,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24909,348261,Switzerland,National Inventory,2011,For storage only,37,Wiimoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24910,348262,Switzerland,National Inventory,2011,For storage only,37,Delta della Maggia,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24911,348263,Switzerland,National Inventory,2011,For storage only,37,Cava Motto Grande,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24912,348264,Switzerland,National Inventory,2011,For storage only,37,Valle della Motta,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24913,348265,Switzerland,National Inventory,2011,For storage only,37,Basciocca (ovest),Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24914,348266,Switzerland,National Inventory,2011,For storage only,37,Bolla di Loderio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24915,348267,Switzerland,National Inventory,2011,For storage only,37,Stagno Guana,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24916,348268,Switzerland,National Inventory,2011,For storage only,37,Pre Murin,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24917,348269,Switzerland,National Inventory,2011,For storage only,37,Bosco Agnuzzo,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24918,348270,Switzerland,National Inventory,2011,For storage only,37,Rompiga,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24919,348271,Switzerland,National Inventory,2011,For storage only,37,Pian Gallina,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24920,348272,Switzerland,National Inventory,2011,For storage only,37,Vigna,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24921,348273,Switzerland,National Inventory,2011,For storage only,37,Torrazza - Pra Signora,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24922,348274,Switzerland,National Inventory,2011,For storage only,37,Dosso dell'Ora - Dosso Bello,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24923,348275,Switzerland,National Inventory,2011,For storage only,37,Ciossa Antognini,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24924,348276,Switzerland,National Inventory,2011,For storage only,37,Vigna lunga - Trebbione,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24925,348277,Switzerland,National Inventory,2011,For storage only,37,Alpler See,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24926,348278,Switzerland,National Inventory,2011,For storage only,37,Valle della Motta/Ai Prati,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24927,348279,Switzerland,National Inventory,2011,For storage only,37,Pra Coltello,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24928,348280,Switzerland,National Inventory,2011,For storage only,37,Sürch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24929,348281,Switzerland,National Inventory,2011,For storage only,37,Stagno Avra,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24930,348282,Switzerland,National Inventory,2011,For storage only,37,Pozza Bosco Penz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24931,348283,Switzerland,National Inventory,2011,For storage only,37,Stagni Campagna Seseglio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24932,348284,Switzerland,National Inventory,2011,For storage only,37,Pozza Moreggi Pedrinate,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24933,348285,Switzerland,National Inventory,2011,For storage only,37,Stagno Pra Vicc,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24934,348286,Switzerland,National Inventory,2011,For storage only,37,Pozza Monzell,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24935,348287,Switzerland,National Inventory,2011,For storage only,37,Stagno Roggio,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24936,348288,Switzerland,National Inventory,2011,For storage only,37,Lanca Saligin,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24937,348289,Switzerland,National Inventory,2011,For storage only,37,Meandri del Laveggio e Colombera,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24938,348290,Switzerland,National Inventory,2011,For storage only,37,Cava Boschi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24939,348291,Switzerland,National Inventory,2011,For storage only,37,Lanche di Iragna,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24940,348292,Switzerland,National Inventory,2011,For storage only,37,Stagno Campi Grandi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24941,348293,Switzerland,National Inventory,2011,For storage only,37,Laghetto Pianca,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24942,348294,Switzerland,National Inventory,2011,For storage only,37,Laghetto di Masnee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24943,348295,Switzerland,National Inventory,2011,For storage only,37,Pozza a est di Motto,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24944,348296,Switzerland,National Inventory,2011,For storage only,37,Prato Grande,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24945,348297,Switzerland,National Inventory,2011,For storage only,37,Breitried - Schützenried,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24946,348298,Switzerland,National Inventory,2011,For storage only,37,Klosterried Ingenbohl,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24947,348299,Switzerland,National Inventory,2011,For storage only,37,Tümpel Stierenberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24948,348300,Switzerland,National Inventory,2011,For storage only,37,Tümpel untere Erli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24949,348301,Switzerland,National Inventory,2011,For storage only,37,Obergösger Schachen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24950,348302,Switzerland,National Inventory,2011,For storage only,37,"Erlenmoos, Haag",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24951,348303,Switzerland,National Inventory,2011,For storage only,37,Biedermannsgrube,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24952,348304,Switzerland,National Inventory,2011,For storage only,37,Trachslauerweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24953,348305,Switzerland,National Inventory,2011,For storage only,37,Weiher Lochgraben,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24954,348306,Switzerland,National Inventory,2011,For storage only,37,Bätzimatt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24955,348307,Switzerland,National Inventory,2011,For storage only,37,Lehmlöcher Dicki,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24956,348308,Switzerland,National Inventory,2011,For storage only,37,Oberer Sihlsee Euthal,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24957,348309,Switzerland,National Inventory,2011,For storage only,37,Dreiwässern,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24958,348310,Switzerland,National Inventory,2011,For storage only,37,Sihlsee S Schönbächli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24959,348312,Switzerland,National Inventory,2011,For storage only,37,Reumeren,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24960,348313,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Schürliwiesen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24961,348314,Switzerland,National Inventory,2011,For storage only,37,Klosterweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24962,348315,Switzerland,National Inventory,2011,For storage only,37,Aazopf,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24963,348316,Switzerland,National Inventory,2011,For storage only,37,Bohnerzgruben Chäferhölzli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24964,348317,Switzerland,National Inventory,2011,For storage only,37,Espel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24965,348318,Switzerland,National Inventory,2011,For storage only,37,Waffenplatz Breitfeld,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24966,348319,Switzerland,National Inventory,2011,For storage only,37,Weiher NE Hohfirst,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24967,348320,Switzerland,National Inventory,2011,For storage only,37,Bildweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24968,348321,Switzerland,National Inventory,2011,For storage only,37,Moosanger,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24969,348322,Switzerland,National Inventory,2011,For storage only,37,Bachtelli/Seeli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24970,348323,Switzerland,National Inventory,2011,For storage only,37,Rohrenbüeli-Stritholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24971,348324,Switzerland,National Inventory,2011,For storage only,37,Chli Aarli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24972,348325,Switzerland,National Inventory,2011,For storage only,37,Bohnerzgruben Färberwiesli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24973,348326,Switzerland,National Inventory,2011,For storage only,37,"Sägel, Schutt, Lauerzersee",Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24974,348327,Switzerland,National Inventory,2011,For storage only,37,Moos-Buck Herblingen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24975,348328,Switzerland,National Inventory,2011,For storage only,37,Feuchtgebiet Widen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24976,348329,Switzerland,National Inventory,2011,For storage only,37,Eschheimer Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24977,348330,Switzerland,National Inventory,2011,For storage only,37,Alte Biberschleife,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24978,348331,Switzerland,National Inventory,2011,For storage only,37,Ried/Lehmgrueb Hofenacker,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24979,348332,Switzerland,National Inventory,2011,For storage only,37,Egelsee Degerfeld Wagenhausen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24980,348333,Switzerland,National Inventory,2011,For storage only,37,Lehmlöcher Rüti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24981,348334,Switzerland,National Inventory,2011,For storage only,37,Morgetshofsee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24982,348335,Switzerland,National Inventory,2011,For storage only,37,Hüttwiler Seen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24983,348336,Switzerland,National Inventory,2011,For storage only,37,Sihlsee Steinbach (Lukasrank),Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24984,348337,Switzerland,National Inventory,2011,For storage only,37,Kiesweiher Weidacker,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24985,348338,Switzerland,National Inventory,2011,For storage only,37,Googlete,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24986,348339,Switzerland,National Inventory,2011,For storage only,37,Bommer Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24987,348340,Switzerland,National Inventory,2011,For storage only,37,Lengwiler Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24988,348341,Switzerland,National Inventory,2011,For storage only,37,Seeburg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24989,348342,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Wolfsbüel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24990,348343,Switzerland,National Inventory,2011,For storage only,37,Lommiser Riet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24991,348344,Switzerland,National Inventory,2011,For storage only,37,Biessenhofer Weiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24992,348345,Switzerland,National Inventory,2011,For storage only,37,Kiesgruben Neuhus - Bälisteig,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24993,348346,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Bärg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24994,348347,Switzerland,National Inventory,2011,For storage only,37,Grube Trubeschloo,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24995,348348,Switzerland,National Inventory,2011,For storage only,37,Barchetsee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24996,348349,Switzerland,National Inventory,2011,For storage only,37,Hudelmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24997,348350,Switzerland,National Inventory,2011,For storage only,37,Schoren Riet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24998,348351,Switzerland,National Inventory,2011,For storage only,37,Ägelsee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -24999,348352,Switzerland,National Inventory,2011,For storage only,37,Waldriet Grosswis,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25000,348353,Switzerland,National Inventory,2011,For storage only,37,Heeristobel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25001,348354,Switzerland,National Inventory,2011,For storage only,37,Etzwilerriet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25002,348355,Switzerland,National Inventory,2011,For storage only,37,Reservat Schule Kaltenbach,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25003,348356,Switzerland,National Inventory,2011,For storage only,37,Grube Moos N Weerswilen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25004,348357,Switzerland,National Inventory,2011,For storage only,37,Sangen - Mülifang,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25005,348358,Switzerland,National Inventory,2011,For storage only,37,Lehmgrube Opfershofen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25006,348359,Switzerland,National Inventory,2011,For storage only,37,Bächler,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25007,348360,Switzerland,National Inventory,2011,For storage only,37,Luggeseeli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25008,348361,Switzerland,National Inventory,2011,For storage only,37,Müliweier,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25009,348362,Switzerland,National Inventory,2011,For storage only,37,Mösliweiher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25010,348363,Switzerland,National Inventory,2011,For storage only,37,Ägelsee,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25011,348364,Switzerland,National Inventory,2011,For storage only,37,Baggersee Chasperäcker,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25012,348365,Switzerland,National Inventory,2011,For storage only,37,Allmend,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25013,348366,Switzerland,National Inventory,2011,For storage only,37,Grüt - Bietenhart - Wolfsbüel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25014,387604,Switzerland,National Inventory,2011,For storage only,37,Kiesgruben Steig,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25015,387605,Switzerland,National Inventory,2011,For storage only,37,Les Baumes,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25016,387606,Switzerland,National Inventory,2011,For storage only,37,Le Villaret,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25017,387607,Switzerland,National Inventory,2011,For storage only,37,Vurzy,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25018,387608,Switzerland,National Inventory,2011,For storage only,37,Peney,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25019,387609,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Balmgüeter,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25020,387610,Switzerland,National Inventory,2011,For storage only,37,Grube Gugleracher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25021,387611,Switzerland,National Inventory,2011,For storage only,37,Oberfeld - Oberholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25022,387612,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Mattehölzli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25023,387613,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Sticherlöchli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25024,387614,Switzerland,National Inventory,2011,For storage only,37,Ziegelei Roggwil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25025,387615,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Solenberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25026,387616,Switzerland,National Inventory,2011,For storage only,37,ESR interna,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25027,387617,Switzerland,National Inventory,2011,For storage only,37,Zil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25028,387618,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube HEVA Dietenboden,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25029,387619,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Lätten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25030,387620,Switzerland,National Inventory,2011,For storage only,37,Tongrube Paradies,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25031,387621,Switzerland,National Inventory,2011,For storage only,37,Lehmgrube Bergerwilen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25032,387622,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Mayer Grossfeld,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25033,387623,Switzerland,National Inventory,2011,For storage only,37,Tongrube Ziegelei,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25034,387624,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Zelgli und Flachweiher im Hardwald,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25035,387625,Switzerland,National Inventory,2011,For storage only,37,Unterschönenbuch,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25036,387626,Switzerland,National Inventory,2011,For storage only,37,Ziegelei Rafz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25037,387627,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Hübeli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25038,387628,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Bannen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25039,387629,Switzerland,National Inventory,2011,For storage only,37,Lehmgrube Häuli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25040,387630,Switzerland,National Inventory,2011,For storage only,37,Grube Utigen,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25041,387631,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Wisgraben,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25042,387632,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube NW Büel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25043,387633,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube List,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25044,387634,Switzerland,National Inventory,2011,For storage only,37,Lehmgrube Pfaffwil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25045,387635,Switzerland,National Inventory,2011,For storage only,37,Côte à Bourgeois,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25046,387636,Switzerland,National Inventory,2011,For storage only,37,Unter Balliswil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25047,387637,Switzerland,National Inventory,2011,For storage only,37,Steinbruch Guber,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25048,387638,Switzerland,National Inventory,2011,For storage only,37,Grube Briseck,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25049,387639,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Eichrüteli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25050,387640,Switzerland,National Inventory,2011,For storage only,37,Chrüzstross,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25051,387641,Switzerland,National Inventory,2011,For storage only,37,Steinbruch Mellikon,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25052,387642,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Honert,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25053,387643,Switzerland,National Inventory,2011,For storage only,37,Lättgrueb,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25054,387644,Switzerland,National Inventory,2011,For storage only,37,Ziegeleigrube Oberburg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25055,387645,Switzerland,National Inventory,2011,For storage only,37,Kiesgruben Mittlerboden,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25056,387646,Switzerland,National Inventory,2011,For storage only,37,Kiesgruben Burgauerfeld,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25057,387647,Switzerland,National Inventory,2011,For storage only,37,Steinbruch Jakobsberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25058,387648,Switzerland,National Inventory,2011,For storage only,37,La Delèse,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25059,387649,Switzerland,National Inventory,2011,For storage only,37,Laichgebiet Tambrig-Oberholz,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25060,387650,Switzerland,National Inventory,2011,For storage only,37,Gruben Pfannenstil/Morgenhalden/ Höchi,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25061,387651,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Härdacher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25062,387652,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Hochfurenzelg (Tobelacker),Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25063,387653,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Hombrig,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25064,387654,Switzerland,National Inventory,2011,For storage only,37,Lehmgrube Ober Huwil,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25065,387655,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Langfuhr,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25066,387656,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Schürli,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25067,387657,Switzerland,National Inventory,2011,For storage only,37,Tongrube Eriwis,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25068,387658,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Riedt,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25069,387659,Switzerland,National Inventory,2011,For storage only,37,Le Tayment,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25070,387660,Switzerland,National Inventory,2011,For storage only,37,Monteynan,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25071,387661,Switzerland,National Inventory,2011,For storage only,37,Lehmgrube Tonwarenfabrik,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25072,387662,Switzerland,National Inventory,2011,For storage only,37,Kiesgrubenbiotope Zimiker Eichli-Breiti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25073,387663,Switzerland,National Inventory,2011,For storage only,37,Kieswerk Sieber Agersten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25074,387664,Switzerland,National Inventory,2011,For storage only,37,Hochrüti/Vogelmoos,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25075,387665,Switzerland,National Inventory,2011,For storage only,37,Äbisholzgrube,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25076,387666,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Eschenbach (Rüchlig),Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25077,387747,Switzerland,National Inventory,2011,For storage only,37,Kies- und Betonwerk Bangerter,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25078,387748,Switzerland,National Inventory,2011,For storage only,37,Le Chaney,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25079,387749,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Moortel,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25080,387750,Switzerland,National Inventory,2011,For storage only,37,Lugibach,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25081,387751,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Ägerten/ Steinächer,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25082,387752,Switzerland,National Inventory,2011,For storage only,37,Steinbruch Gabenchopf,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25083,387753,Switzerland,National Inventory,2011,For storage only,37,Champs Grillet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25084,387754,Switzerland,National Inventory,2011,For storage only,37,Chrüzegg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25085,387755,Switzerland,National Inventory,2011,For storage only,37,Ennerberg,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25086,387756,Switzerland,National Inventory,2011,For storage only,37,Kiesgrube Sarbach/Hintertann,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25087,387757,Switzerland,National Inventory,2011,For storage only,37,Stolten,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25088,387758,Switzerland,National Inventory,2011,For storage only,37,Grube Hohrüti,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25089,387759,Switzerland,National Inventory,2011,For storage only,37,Allmend-Forenban,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25090,387760,Switzerland,National Inventory,2011,For storage only,37,Ägertengrube,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25091,387761,Switzerland,National Inventory,2011,For storage only,37,Booler,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25092,387762,Switzerland,National Inventory,2011,For storage only,37,Steinbruch Oberacher,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25093,387763,Switzerland,National Inventory,2011,For storage only,37,Tongrube Böttstein,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25094,387764,Switzerland,National Inventory,2011,For storage only,37,Galmet,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25095,387765,Switzerland,National Inventory,2011,For storage only,37,Am Schöftler,Federal Inventory of Amphibian Spawning Areas of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25096,398199,Switzerland,National Inventory,2011,For storage only,37,Nänzligenweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25097,398200,Switzerland,National Inventory,2011,For storage only,37,Rüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25098,398201,Switzerland,National Inventory,2011,For storage only,37,Weid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25099,398202,Switzerland,National Inventory,2011,For storage only,37,Sugiez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25100,398203,Switzerland,National Inventory,2011,For storage only,37,Hell,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25101,398204,Switzerland,National Inventory,2011,For storage only,37,Ober Axen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25102,398205,Switzerland,National Inventory,2011,For storage only,37,Ober Bärchi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25103,398206,Switzerland,National Inventory,2011,For storage only,37,Sulz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25104,398207,Switzerland,National Inventory,2011,For storage only,37,Rophaien,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25105,398208,Switzerland,National Inventory,2011,For storage only,37,Nant-Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25106,398209,Switzerland,National Inventory,2011,For storage only,37,Tannegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25107,398210,Switzerland,National Inventory,2011,For storage only,37,Hinter Wissenboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25108,398211,Switzerland,National Inventory,2011,For storage only,37,Windgällen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25109,398212,Switzerland,National Inventory,2011,For storage only,37,Unter Weid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25110,398213,Switzerland,National Inventory,2011,For storage only,37,Unter Gisleralp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25111,398214,Switzerland,National Inventory,2011,For storage only,37,Champ Ribaud,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25112,398215,Switzerland,National Inventory,2011,For storage only,37,Vorder Wissenboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25113,398216,Switzerland,National Inventory,2011,For storage only,37,Hüenderegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25114,398217,Switzerland,National Inventory,2011,For storage only,37,Chäserberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25115,398218,Switzerland,National Inventory,2011,For storage only,37,Fruttwald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25116,398219,Switzerland,National Inventory,2011,For storage only,37,Schartihöreli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25117,398220,Switzerland,National Inventory,2011,For storage only,37,Obflüeweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25118,398221,Switzerland,National Inventory,2011,For storage only,37,Sidenplangg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25119,398222,Switzerland,National Inventory,2011,For storage only,37,Maison de Commune,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25120,398223,Switzerland,National Inventory,2011,For storage only,37,Gorplanggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25121,398224,Switzerland,National Inventory,2011,For storage only,37,Sassi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25122,398225,Switzerland,National Inventory,2011,For storage only,37,Les Neigles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25123,398226,Switzerland,National Inventory,2011,For storage only,37,Butzlichöpf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25124,398227,Switzerland,National Inventory,2011,For storage only,37,Trudelingen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25125,398228,Switzerland,National Inventory,2011,For storage only,37,Montivert,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25126,398229,Switzerland,National Inventory,2011,For storage only,37,Wilischwand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25127,398230,Switzerland,National Inventory,2011,For storage only,37,Sassigrat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25128,398231,Switzerland,National Inventory,2011,For storage only,37,Neirvaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25129,398232,Switzerland,National Inventory,2011,For storage only,37,Platti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25130,398233,Switzerland,National Inventory,2011,For storage only,37,Biwaldalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25131,398234,Switzerland,National Inventory,2011,For storage only,37,Fayaule,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25132,398235,Switzerland,National Inventory,2011,For storage only,37,Schilt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25133,398236,Switzerland,National Inventory,2011,For storage only,37,Äschrüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25134,398237,Switzerland,National Inventory,2011,For storage only,37,Vieux Châtel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25135,398238,Switzerland,National Inventory,2011,For storage only,37,Spälten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25136,398239,Switzerland,National Inventory,2011,For storage only,37,Wettmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25137,398240,Switzerland,National Inventory,2011,For storage only,37,Ribi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25138,398241,Switzerland,National Inventory,2011,For storage only,37,Gross Pfaffen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25139,398242,Switzerland,National Inventory,2011,For storage only,37,Corbières,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25140,398243,Switzerland,National Inventory,2011,For storage only,37,Rossboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25141,398244,Switzerland,National Inventory,2011,For storage only,37,Gampelen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25142,398245,Switzerland,National Inventory,2011,For storage only,37,La Guille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25143,398246,Switzerland,National Inventory,2011,For storage only,37,Usser Siten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25144,398247,Switzerland,National Inventory,2011,For storage only,37,Hol,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25145,398248,Switzerland,National Inventory,2011,For storage only,37,Hinteren Bänder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25146,398249,Switzerland,National Inventory,2011,For storage only,37,Rüteli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25147,398250,Switzerland,National Inventory,2011,For storage only,37,Oberberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25148,398251,Switzerland,National Inventory,2011,For storage only,37,Hinteren Bänder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25149,398252,Switzerland,National Inventory,2011,For storage only,37,Frutt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25150,398253,Switzerland,National Inventory,2011,For storage only,37,La Savoleire,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25151,398254,Switzerland,National Inventory,2011,For storage only,37,Tritt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25152,398255,Switzerland,National Inventory,2011,For storage only,37,Höch Flue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25153,398256,Switzerland,National Inventory,2011,For storage only,37,Joulin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25154,398257,Switzerland,National Inventory,2011,For storage only,37,Waldegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25155,398258,Switzerland,National Inventory,2011,For storage only,37,Gross Planggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25156,398259,Switzerland,National Inventory,2011,For storage only,37,Venettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25157,398260,Switzerland,National Inventory,2011,For storage only,37,Seechälen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25158,398261,Switzerland,National Inventory,2011,For storage only,37,Fryetal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25159,398262,Switzerland,National Inventory,2011,For storage only,37,Les Utsets,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25160,398263,Switzerland,National Inventory,2011,For storage only,37,Les Esserts Uldry,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25161,398264,Switzerland,National Inventory,2011,For storage only,37,Chüenossen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25162,398265,Switzerland,National Inventory,2011,For storage only,37,Rieter,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25163,398266,Switzerland,National Inventory,2011,For storage only,37,Langsimatten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25164,398267,Switzerland,National Inventory,2011,For storage only,37,Planggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25165,398268,Switzerland,National Inventory,2011,For storage only,37,Geren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25166,398269,Switzerland,National Inventory,2011,For storage only,37,Börtli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25167,398270,Switzerland,National Inventory,2011,For storage only,37,Oberer Nätschen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25168,398271,Switzerland,National Inventory,2011,For storage only,37,Unterer Nätschen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25169,398272,Switzerland,National Inventory,2011,For storage only,37,Mettlen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25170,398273,Switzerland,National Inventory,2011,For storage only,37,Gspender,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25171,398274,Switzerland,National Inventory,2011,For storage only,37,Laui,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25172,398275,Switzerland,National Inventory,2011,For storage only,37,Joggenen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25173,398276,Switzerland,National Inventory,2011,For storage only,37,Börtli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25174,398277,Switzerland,National Inventory,2011,For storage only,37,Haltenen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25175,398278,Switzerland,National Inventory,2011,For storage only,37,Bol,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25176,398279,Switzerland,National Inventory,2011,For storage only,37,Ciernedon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25177,398280,Switzerland,National Inventory,2011,For storage only,37,Hinter Bergli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25178,398281,Switzerland,National Inventory,2011,For storage only,37,Gartli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25179,398282,Switzerland,National Inventory,2011,For storage only,37,Baberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25180,398283,Switzerland,National Inventory,2011,For storage only,37,La Côte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25181,398284,Switzerland,National Inventory,2011,For storage only,37,Bärchi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25182,398285,Switzerland,National Inventory,2011,For storage only,37,Zur Gand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25183,398286,Switzerland,National Inventory,2011,For storage only,37,Gletti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25184,398287,Switzerland,National Inventory,2011,For storage only,37,Maumochy,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25185,398288,Switzerland,National Inventory,2011,For storage only,37,Oberen Hütten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25186,398289,Switzerland,National Inventory,2011,For storage only,37,Geissegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25187,398290,Switzerland,National Inventory,2011,For storage only,37,Chalberegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25188,398291,Switzerland,National Inventory,2011,For storage only,37,Eggbergen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25189,398292,Switzerland,National Inventory,2011,For storage only,37,Löli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25190,398293,Switzerland,National Inventory,2011,For storage only,37,Plan de Tissiniva,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25191,398294,Switzerland,National Inventory,2011,For storage only,37,Wandelen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25192,398295,Switzerland,National Inventory,2011,For storage only,37,Hinteren Hütten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25193,398296,Switzerland,National Inventory,2011,For storage only,37,Grande Oudèche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25194,398297,Switzerland,National Inventory,2011,For storage only,37,Ligmanig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25195,398298,Switzerland,National Inventory,2011,For storage only,37,Hüenderegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25196,398299,Switzerland,National Inventory,2011,For storage only,37,Horlachen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25197,398300,Switzerland,National Inventory,2011,For storage only,37,Petit Croset,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25198,398301,Switzerland,National Inventory,2011,For storage only,37,Chessel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25199,398302,Switzerland,National Inventory,2011,For storage only,37,Les Rontins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25200,398303,Switzerland,National Inventory,2011,For storage only,37,Uf den Oberschwänden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25201,398304,Switzerland,National Inventory,2011,For storage only,37,Äbnet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25202,398305,Switzerland,National Inventory,2011,For storage only,37,Äbnet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25203,398306,Switzerland,National Inventory,2011,For storage only,37,La Case,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25204,398307,Switzerland,National Inventory,2011,For storage only,37,Schmidigberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25205,398308,Switzerland,National Inventory,2011,For storage only,37,Razismatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25206,398309,Switzerland,National Inventory,2011,For storage only,37,Graggi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25207,398310,Switzerland,National Inventory,2011,For storage only,37,Eierschwand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25208,398311,Switzerland,National Inventory,2011,For storage only,37,Gorplanggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25209,398312,Switzerland,National Inventory,2011,For storage only,37,Belles Raies,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25210,398313,Switzerland,National Inventory,2011,For storage only,37,Rüteli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25211,398314,Switzerland,National Inventory,2011,For storage only,37,Ob den Hegen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25212,398315,Switzerland,National Inventory,2011,For storage only,37,Platten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25213,398316,Switzerland,National Inventory,2011,For storage only,37,Friteren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25214,398317,Switzerland,National Inventory,2011,For storage only,37,Windeggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25215,398318,Switzerland,National Inventory,2011,For storage only,37,Gitschenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25216,398319,Switzerland,National Inventory,2011,For storage only,37,Ahöri,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25217,398320,Switzerland,National Inventory,2011,For storage only,37,Honegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25218,398321,Switzerland,National Inventory,2011,For storage only,37,Vorderen Bänder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25219,398322,Switzerland,National Inventory,2011,For storage only,37,Rimiberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25220,398323,Switzerland,National Inventory,2011,For storage only,37,Sagerberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25221,398324,Switzerland,National Inventory,2011,For storage only,37,Plan Carré,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25222,398325,Switzerland,National Inventory,2011,For storage only,37,Uf der Lauwi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25223,398326,Switzerland,National Inventory,2011,For storage only,37,Oberberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25224,398327,Switzerland,National Inventory,2011,For storage only,37,Wischflüe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25225,398328,Switzerland,National Inventory,2011,For storage only,37,Schützen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25226,398329,Switzerland,National Inventory,2011,For storage only,37,Buechholz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25227,398330,Switzerland,National Inventory,2011,For storage only,37,Oberchäseren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25228,398331,Switzerland,National Inventory,2011,For storage only,37,Hanenspil,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25229,398332,Switzerland,National Inventory,2011,For storage only,37,Les Dovalles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25230,398333,Switzerland,National Inventory,2011,For storage only,37,Trätter,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25231,398334,Switzerland,National Inventory,2011,For storage only,37,Les Cressets,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25232,398335,Switzerland,National Inventory,2011,For storage only,37,Halten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25233,398336,Switzerland,National Inventory,2011,For storage only,37,Städeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25234,398337,Switzerland,National Inventory,2011,For storage only,37,Balmen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25235,398338,Switzerland,National Inventory,2011,For storage only,37,Holderen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25236,398339,Switzerland,National Inventory,2011,For storage only,37,Altchilch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25237,398340,Switzerland,National Inventory,2011,For storage only,37,Haut Letron,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25238,398341,Switzerland,National Inventory,2011,For storage only,37,Rotboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25239,398342,Switzerland,National Inventory,2011,For storage only,37,Tristlen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25240,398343,Switzerland,National Inventory,2011,For storage only,37,Ober Frimseli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25241,398344,Switzerland,National Inventory,2011,For storage only,37,Ober Axen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25242,398345,Switzerland,National Inventory,2011,For storage only,37,Wasserplatten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25243,398346,Switzerland,National Inventory,2011,For storage only,37,Bodmi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25244,398347,Switzerland,National Inventory,2011,For storage only,37,Chilcherbergen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25245,398348,Switzerland,National Inventory,2011,For storage only,37,Chabloz Derrey,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25246,398349,Switzerland,National Inventory,2011,For storage only,37,L'Ombriau d'en Bas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25247,398350,Switzerland,National Inventory,2011,For storage only,37,Vanil Blanc,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25248,398351,Switzerland,National Inventory,2011,For storage only,37,Fürholz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25249,398352,Switzerland,National Inventory,2011,For storage only,37,Wösch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25250,398353,Switzerland,National Inventory,2011,For storage only,37,Sex d'Amont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25251,398354,Switzerland,National Inventory,2011,For storage only,37,Les Tannes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25252,398355,Switzerland,National Inventory,2011,For storage only,37,Prés d'Albeuve,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25253,398356,Switzerland,National Inventory,2011,For storage only,37,Chenalette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25254,398357,Switzerland,National Inventory,2011,For storage only,37,Montbovon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25255,398358,Switzerland,National Inventory,2011,For storage only,37,Grosse Orgevalette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25256,398359,Switzerland,National Inventory,2011,For storage only,37,Hard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25257,398360,Switzerland,National Inventory,2011,For storage only,37,Vorderer Brandberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25258,398361,Switzerland,National Inventory,2011,For storage only,37,Matzendörfer Stierenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25259,398362,Switzerland,National Inventory,2011,For storage only,37,Oberdörfer,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25260,398363,Switzerland,National Inventory,2011,For storage only,37,Balmflue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25261,398364,Switzerland,National Inventory,2011,For storage only,37,Holzflue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25262,398365,Switzerland,National Inventory,2011,For storage only,37,Allmend,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25263,398366,Switzerland,National Inventory,2011,For storage only,37,Stierenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25264,398367,Switzerland,National Inventory,2011,For storage only,37,Allmend,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25265,398368,Switzerland,National Inventory,2011,For storage only,37,Untere Tannmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25266,398369,Switzerland,National Inventory,2011,For storage only,37,Ober Solterschwang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25267,398370,Switzerland,National Inventory,2011,For storage only,37,Oberbeinwil,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25268,398371,Switzerland,National Inventory,2011,For storage only,37,Burgweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25269,398372,Switzerland,National Inventory,2011,For storage only,37,Rebenfeld,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25270,398373,Switzerland,National Inventory,2011,For storage only,37,Bützen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25271,398374,Switzerland,National Inventory,2011,For storage only,37,Rinderweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25272,398375,Switzerland,National Inventory,2011,For storage only,37,Chellenchöpfli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25273,398376,Switzerland,National Inventory,2011,For storage only,37,Nasenboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25274,398377,Switzerland,National Inventory,2011,For storage only,37,Unteres Brüggli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25275,398378,Switzerland,National Inventory,2011,For storage only,37,Mausteren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25276,398379,Switzerland,National Inventory,2011,For storage only,37,Gwidem,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25277,398380,Switzerland,National Inventory,2011,For storage only,37,Binzberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25278,398381,Switzerland,National Inventory,2011,For storage only,37,Oberbergweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25279,398382,Switzerland,National Inventory,2011,For storage only,37,Alte Gipsgrube,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25280,398383,Switzerland,National Inventory,2011,For storage only,37,Wirtshof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25281,398384,Switzerland,National Inventory,2011,For storage only,37,Chüematt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25282,398385,Switzerland,National Inventory,2011,For storage only,37,Niederwiler Stierenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25283,398386,Switzerland,National Inventory,2011,For storage only,37,Hasenmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25284,398387,Switzerland,National Inventory,2011,For storage only,37,Hintere Schmidematt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25285,398388,Switzerland,National Inventory,2011,For storage only,37,Nieder Äbnet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25286,398389,Switzerland,National Inventory,2011,For storage only,37,Orgevaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25287,398390,Switzerland,National Inventory,2011,For storage only,37,Holden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25288,398391,Switzerland,National Inventory,2011,For storage only,37,Ravellen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25289,398392,Switzerland,National Inventory,2011,For storage only,37,Walenmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25290,398393,Switzerland,National Inventory,2011,For storage only,37,Buschle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25291,398394,Switzerland,National Inventory,2011,For storage only,37,Sunnenhalb,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25292,398395,Switzerland,National Inventory,2011,For storage only,37,Oberer Sennhof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25293,398396,Switzerland,National Inventory,2011,For storage only,37,Motélon d'Avau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25294,398397,Switzerland,National Inventory,2011,For storage only,37,Hagliweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25295,398398,Switzerland,National Inventory,2011,For storage only,37,Rumpel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25296,398399,Switzerland,National Inventory,2011,For storage only,37,Allmend,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25297,398400,Switzerland,National Inventory,2011,For storage only,37,Sonnenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25298,398401,Switzerland,National Inventory,2011,For storage only,37,Dummeten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25299,398402,Switzerland,National Inventory,2011,For storage only,37,Waldenstein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25300,398403,Switzerland,National Inventory,2011,For storage only,37,Schlegel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25301,398404,Switzerland,National Inventory,2011,For storage only,37,Moretchopf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25302,398405,Switzerland,National Inventory,2011,For storage only,37,Unter Möschbach,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25303,398406,Switzerland,National Inventory,2011,For storage only,37,Niederwiler Stierenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25304,398407,Switzerland,National Inventory,2011,For storage only,37,Müren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25305,398408,Switzerland,National Inventory,2011,For storage only,37,Hasenmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25306,398409,Switzerland,National Inventory,2011,For storage only,37,Untere Säge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25307,398410,Switzerland,National Inventory,2011,For storage only,37,Latschgetweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25308,398411,Switzerland,National Inventory,2011,For storage only,37,Obere Rüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25309,398412,Switzerland,National Inventory,2011,For storage only,37,Meltingerberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25310,398413,Switzerland,National Inventory,2011,For storage only,37,Oberbergmatten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25311,398414,Switzerland,National Inventory,2011,For storage only,37,Allmend,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25312,398415,Switzerland,National Inventory,2011,For storage only,37,Sunnenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25313,398416,Switzerland,National Inventory,2011,For storage only,37,Lammet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25314,398417,Switzerland,National Inventory,2011,For storage only,37,Hinter Geissberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25315,398418,Switzerland,National Inventory,2011,For storage only,37,Mittl. Rotmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25316,398419,Switzerland,National Inventory,2011,For storage only,37,Vorder Hofbergli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25317,398420,Switzerland,National Inventory,2011,For storage only,37,Hollenrain,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25318,398421,Switzerland,National Inventory,2011,For storage only,37,Allmend,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25319,398422,Switzerland,National Inventory,2011,For storage only,37,Combe d'Allières,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25320,398423,Switzerland,National Inventory,2011,For storage only,37,Schauenburg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25321,398424,Switzerland,National Inventory,2011,For storage only,37,Kanalbord,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25322,398425,Switzerland,National Inventory,2011,For storage only,37,Hübel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25323,398426,Switzerland,National Inventory,2011,For storage only,37,Chlosterweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25324,398427,Switzerland,National Inventory,2011,For storage only,37,Wisigweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25325,398428,Switzerland,National Inventory,2011,For storage only,37,Wisshubel-Allmend,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25326,398429,Switzerland,National Inventory,2011,For storage only,37,Attisholz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25327,398430,Switzerland,National Inventory,2011,For storage only,37,Plan Châtel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25328,398431,Switzerland,National Inventory,2011,For storage only,37,Mahren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25329,398432,Switzerland,National Inventory,2011,For storage only,37,Wartenfels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25330,398433,Switzerland,National Inventory,2011,For storage only,37,Rämpis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25331,398434,Switzerland,National Inventory,2011,For storage only,37,Summerhalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25332,398435,Switzerland,National Inventory,2011,For storage only,37,Rutigen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25333,398436,Switzerland,National Inventory,2011,For storage only,37,Gitziberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25334,398437,Switzerland,National Inventory,2011,For storage only,37,Mahren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25335,398438,Switzerland,National Inventory,2011,For storage only,37,Winzligen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25336,398439,Switzerland,National Inventory,2011,For storage only,37,Bechburg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25337,398440,Switzerland,National Inventory,2011,For storage only,37,Rintel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25338,398441,Switzerland,National Inventory,2011,For storage only,37,Holzbünten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25339,398442,Switzerland,National Inventory,2011,For storage only,37,Schwang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25340,398443,Switzerland,National Inventory,2011,For storage only,37,Mettlen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25341,398444,Switzerland,National Inventory,2011,For storage only,37,Sous Mussillens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25342,398445,Switzerland,National Inventory,2011,For storage only,37,Mahren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25343,398446,Switzerland,National Inventory,2011,For storage only,37,Rebenfeld,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25344,398447,Switzerland,National Inventory,2011,For storage only,37,Rintel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25345,398448,Switzerland,National Inventory,2011,For storage only,37,Goldloch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25346,398449,Switzerland,National Inventory,2011,For storage only,37,Moosmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25347,398450,Switzerland,National Inventory,2011,For storage only,37,Le La,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25348,398451,Switzerland,National Inventory,2011,For storage only,37,Rotenrain,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25349,398452,Switzerland,National Inventory,2011,For storage only,37,Wiler,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25350,398453,Switzerland,National Inventory,2011,For storage only,37,Stollenbord,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25351,398454,Switzerland,National Inventory,2011,For storage only,37,Röselen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25352,398455,Switzerland,National Inventory,2011,For storage only,37,Wilweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25353,398456,Switzerland,National Inventory,2011,For storage only,37,Hard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25354,398457,Switzerland,National Inventory,2011,For storage only,37,Chatzenstigen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25355,398458,Switzerland,National Inventory,2011,For storage only,37,Charmont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25356,398459,Switzerland,National Inventory,2011,For storage only,37,Engelberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25357,398460,Switzerland,National Inventory,2011,For storage only,37,Burst,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25358,398461,Switzerland,National Inventory,2011,For storage only,37,Hohe Winde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25359,398462,Switzerland,National Inventory,2011,For storage only,37,Hasel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25360,398463,Switzerland,National Inventory,2011,For storage only,37,Ring,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25361,398464,Switzerland,National Inventory,2011,For storage only,37,Hohe Winde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25362,398465,Switzerland,National Inventory,2011,For storage only,37,Hohe Winde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25363,398466,Switzerland,National Inventory,2011,For storage only,37,Roti Flue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25364,398467,Switzerland,National Inventory,2011,For storage only,37,Vorder Erzberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25365,398468,Switzerland,National Inventory,2011,For storage only,37,Luterbrunnen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25366,398469,Switzerland,National Inventory,2011,For storage only,37,Büren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25367,398470,Switzerland,National Inventory,2011,For storage only,37,Le Devin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25368,398471,Switzerland,National Inventory,2011,For storage only,37,Cerniat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25369,398472,Switzerland,National Inventory,2011,For storage only,37,Clos Richoz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25370,398473,Switzerland,National Inventory,2011,For storage only,37,Les Lésins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25371,398474,Switzerland,National Inventory,2011,For storage only,37,Brenleire Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25372,398475,Switzerland,National Inventory,2011,For storage only,37,Gros Moléson,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25373,398476,Switzerland,National Inventory,2011,For storage only,37,La Challa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25374,398477,Switzerland,National Inventory,2011,For storage only,37,Teysachaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25375,398478,Switzerland,National Inventory,2011,For storage only,37,Le Roc,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25376,398479,Switzerland,National Inventory,2011,For storage only,37,Le Coula,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25377,398480,Switzerland,National Inventory,2011,For storage only,37,Unterm Stein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25378,398481,Switzerland,National Inventory,2011,For storage only,37,Im Berg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25379,398482,Switzerland,National Inventory,2011,For storage only,37,Stellitobel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25380,398483,Switzerland,National Inventory,2011,For storage only,37,Listboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25381,398484,Switzerland,National Inventory,2011,For storage only,37,Inneren Bleisa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25382,398485,Switzerland,National Inventory,2011,For storage only,37,Flies,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25383,398486,Switzerland,National Inventory,2011,For storage only,37,Meierhof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25384,398487,Switzerland,National Inventory,2011,For storage only,37,Zianos,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25385,398488,Switzerland,National Inventory,2011,For storage only,37,Ober Pirigen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25386,398489,Switzerland,National Inventory,2011,For storage only,37,Pirigen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25387,398490,Switzerland,National Inventory,2011,For storage only,37,Cuvigné,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25388,398491,Switzerland,National Inventory,2011,For storage only,37,Maladers,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25389,398492,Switzerland,National Inventory,2011,For storage only,37,Seewer Berg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25390,398493,Switzerland,National Inventory,2011,For storage only,37,Tewald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25391,398494,Switzerland,National Inventory,2011,For storage only,37,Servan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25392,398495,Switzerland,National Inventory,2011,For storage only,37,Büschalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25393,398496,Switzerland,National Inventory,2011,For storage only,37,Runcalier,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25394,398497,Switzerland,National Inventory,2011,For storage only,37,Dent de Lys,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25395,398498,Switzerland,National Inventory,2011,For storage only,37,Strelaberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25396,398499,Switzerland,National Inventory,2011,For storage only,37,Chämpfenwald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25397,398500,Switzerland,National Inventory,2011,For storage only,37,Mederger Witi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25398,398501,Switzerland,National Inventory,2011,For storage only,37,Valtschamela,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25399,398502,Switzerland,National Inventory,2011,For storage only,37,Petit Malessert,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25400,398503,Switzerland,National Inventory,2011,For storage only,37,Haupt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25401,398504,Switzerland,National Inventory,2011,For storage only,37,Ufem Joch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25402,398505,Switzerland,National Inventory,2011,For storage only,37,Ufem Joch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25403,398506,Switzerland,National Inventory,2011,For storage only,37,Am Berg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25404,398507,Switzerland,National Inventory,2011,For storage only,37,Foppa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25405,398508,Switzerland,National Inventory,2011,For storage only,37,Brüggigerberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25406,398509,Switzerland,National Inventory,2011,For storage only,37,Meni,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25407,398510,Switzerland,National Inventory,2011,For storage only,37,Schäratannen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25408,398511,Switzerland,National Inventory,2011,For storage only,37,Chaudzerya,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25409,398512,Switzerland,National Inventory,2011,For storage only,37,Mättjen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25410,398513,Switzerland,National Inventory,2011,For storage only,37,Innerberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25411,398514,Switzerland,National Inventory,2011,For storage only,37,Gämpimeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25412,398515,Switzerland,National Inventory,2011,For storage only,37,Witibergmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25413,398516,Switzerland,National Inventory,2011,For storage only,37,Sältenüeb,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25414,398517,Switzerland,National Inventory,2011,For storage only,37,Tällimeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25415,398518,Switzerland,National Inventory,2011,For storage only,37,Glaris,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25416,398519,Switzerland,National Inventory,2011,For storage only,37,Rieberalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25417,398520,Switzerland,National Inventory,2011,For storage only,37,Barietta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25418,398521,Switzerland,National Inventory,2011,For storage only,37,Plaun Maria,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25419,398522,Switzerland,National Inventory,2011,For storage only,37,Weng,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25420,398523,Switzerland,National Inventory,2011,For storage only,37,Munt da la Bescha,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25421,398524,Switzerland,National Inventory,2011,For storage only,37,Plaun da l'Aua,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25422,398525,Switzerland,National Inventory,2011,For storage only,37,Lü Daint,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25423,398526,Switzerland,National Inventory,2011,For storage only,37,Döss dal Schübel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25424,398527,Switzerland,National Inventory,2011,For storage only,37,La Crusch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25425,398528,Switzerland,National Inventory,2011,For storage only,37,Plaunpaschun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25426,398529,Switzerland,National Inventory,2011,For storage only,37,Alp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25427,398530,Switzerland,National Inventory,2011,For storage only,37,Platte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25428,398531,Switzerland,National Inventory,2011,For storage only,37,Parsenn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25429,398532,Switzerland,National Inventory,2011,For storage only,37,Bleisstein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25430,398533,Switzerland,National Inventory,2011,For storage only,37,Chenau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25431,398534,Switzerland,National Inventory,2011,For storage only,37,Falgginis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25432,398535,Switzerland,National Inventory,2011,For storage only,37,Fondei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25433,398536,Switzerland,National Inventory,2011,For storage only,37,Fondei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25434,398537,Switzerland,National Inventory,2011,For storage only,37,Bargs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25435,398538,Switzerland,National Inventory,2011,For storage only,37,Liggboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25436,398539,Switzerland,National Inventory,2011,For storage only,37,Pardäls,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25437,398540,Switzerland,National Inventory,2011,For storage only,37,Vascrestis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25438,398541,Switzerland,National Inventory,2011,For storage only,37,Alat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25439,398542,Switzerland,National Inventory,2011,For storage only,37,Sapün,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25440,398543,Switzerland,National Inventory,2011,For storage only,37,Alpwisli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25441,398544,Switzerland,National Inventory,2011,For storage only,37,In den Stöcken,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25442,398545,Switzerland,National Inventory,2011,For storage only,37,Palüda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25443,398546,Switzerland,National Inventory,2011,For storage only,37,Pfaffenbarga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25444,398547,Switzerland,National Inventory,2011,For storage only,37,Balveins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25445,398548,Switzerland,National Inventory,2011,For storage only,37,Leibachmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25446,398549,Switzerland,National Inventory,2011,For storage only,37,Linaus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25447,398550,Switzerland,National Inventory,2011,For storage only,37,Saloms,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25448,398551,Switzerland,National Inventory,2011,For storage only,37,Breit Zug,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25449,398552,Switzerland,National Inventory,2011,For storage only,37,Linaus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25450,398553,Switzerland,National Inventory,2011,For storage only,37,Sogn Murezi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25451,398554,Switzerland,National Inventory,2011,For storage only,37,Serenera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25452,398555,Switzerland,National Inventory,2011,For storage only,37,Plaun Chamonas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25453,398556,Switzerland,National Inventory,2011,For storage only,37,Chasuras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25454,398557,Switzerland,National Inventory,2011,For storage only,37,Aveneyre,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25455,398558,Switzerland,National Inventory,2011,For storage only,37,Terza,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25456,398559,Switzerland,National Inventory,2011,For storage only,37,Costas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25457,398560,Switzerland,National Inventory,2011,For storage only,37,Costeras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25458,398561,Switzerland,National Inventory,2011,For storage only,37,Ob den Bender,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25459,398562,Switzerland,National Inventory,2011,For storage only,37,Bonaudon du Milieu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25460,398563,Switzerland,National Inventory,2011,For storage only,37,Wang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25461,398564,Switzerland,National Inventory,2011,For storage only,37,Holz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25462,398565,Switzerland,National Inventory,2011,For storage only,37,Cha Noschas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25463,398566,Switzerland,National Inventory,2011,For storage only,37,Pra Vegl,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25464,398567,Switzerland,National Inventory,2011,For storage only,37,Funtauna Naira,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25465,398568,Switzerland,National Inventory,2011,For storage only,37,Reinacherheide,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25466,398569,Switzerland,National Inventory,2011,For storage only,37,Grand Chalet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25467,398570,Switzerland,National Inventory,2011,For storage only,37,Euschels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25468,398571,Switzerland,National Inventory,2011,For storage only,37,Spitzflue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25469,398572,Switzerland,National Inventory,2011,For storage only,37,Pointe de Balachaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25470,398573,Switzerland,National Inventory,2011,For storage only,37,Fochsen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25471,398574,Switzerland,National Inventory,2011,For storage only,37,Mittler Chüeboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25472,398575,Switzerland,National Inventory,2011,For storage only,37,Mittler Chüeboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25473,398576,Switzerland,National Inventory,2011,For storage only,37,Balachaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25474,398577,Switzerland,National Inventory,2011,For storage only,37,Ritzlialp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25475,398578,Switzerland,National Inventory,2011,For storage only,37,Pletscha,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25476,398579,Switzerland,National Inventory,2011,For storage only,37,Chörbli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25477,398580,Switzerland,National Inventory,2011,For storage only,37,Gerstera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25478,398581,Switzerland,National Inventory,2011,For storage only,37,Ob. Jansegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25479,398582,Switzerland,National Inventory,2011,For storage only,37,Chaux de Férédetse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25480,398583,Switzerland,National Inventory,2011,For storage only,37,La Jaquetta Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25481,398584,Switzerland,National Inventory,2011,For storage only,37,Vorder Maischüpfen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25482,398585,Switzerland,National Inventory,2011,For storage only,37,Schoresberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25483,398586,Switzerland,National Inventory,2011,For storage only,37,Les Raveires,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25484,398587,Switzerland,National Inventory,2011,For storage only,37,Dürry,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25485,398588,Switzerland,National Inventory,2011,For storage only,37,Perlersweide,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25486,398589,Switzerland,National Inventory,2011,For storage only,37,Stützli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25487,398590,Switzerland,National Inventory,2011,For storage only,37,Gross Rüggli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25488,398591,Switzerland,National Inventory,2011,For storage only,37,Litemard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25489,398592,Switzerland,National Inventory,2011,For storage only,37,Goldauer Bergsturz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25490,398593,Switzerland,National Inventory,2011,For storage only,37,Steinhüttli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25491,398594,Switzerland,National Inventory,2011,For storage only,37,Stöckplanggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25492,398595,Switzerland,National Inventory,2011,For storage only,37,Mittler-Brunniberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25493,398596,Switzerland,National Inventory,2011,For storage only,37,Stapfenplangg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25494,398597,Switzerland,National Inventory,2011,For storage only,37,Fönenbergen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25495,398598,Switzerland,National Inventory,2011,For storage only,37,Fron,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25496,398599,Switzerland,National Inventory,2011,For storage only,37,Nollen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25497,398600,Switzerland,National Inventory,2011,For storage only,37,Martschen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25498,398601,Switzerland,National Inventory,2011,For storage only,37,Grands Feniveis d'Amont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25499,398602,Switzerland,National Inventory,2011,For storage only,37,Dossen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25500,398603,Switzerland,National Inventory,2011,For storage only,37,Roggenstock,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25501,398604,Switzerland,National Inventory,2011,For storage only,37,Charenstöckli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25502,398605,Switzerland,National Inventory,2011,For storage only,37,Furggeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25503,398606,Switzerland,National Inventory,2011,For storage only,37,Heubrigsflue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25504,398607,Switzerland,National Inventory,2011,For storage only,37,Chaux du Lapé,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25505,398608,Switzerland,National Inventory,2011,For storage only,37,Mittler-Urmi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25506,398609,Switzerland,National Inventory,2011,For storage only,37,Acherberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25507,398610,Switzerland,National Inventory,2011,For storage only,37,Steinhüttli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25508,398611,Switzerland,National Inventory,2011,For storage only,37,Timpel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25509,398612,Switzerland,National Inventory,2011,For storage only,37,Rübi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25510,398613,Switzerland,National Inventory,2011,For storage only,37,Masholdern,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25511,398614,Switzerland,National Inventory,2011,For storage only,37,Badegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25512,398615,Switzerland,National Inventory,2011,For storage only,37,Ratzli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25513,398616,Switzerland,National Inventory,2011,For storage only,37,Husen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25514,398617,Switzerland,National Inventory,2011,For storage only,37,Chalberweidli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25515,398618,Switzerland,National Inventory,2011,For storage only,37,Eggenwald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25516,398619,Switzerland,National Inventory,2011,For storage only,37,Le Liti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25517,398620,Switzerland,National Inventory,2011,For storage only,37,Härzig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25518,398621,Switzerland,National Inventory,2011,For storage only,37,Struss,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25519,398622,Switzerland,National Inventory,2011,For storage only,37,Hochmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25520,398623,Switzerland,National Inventory,2011,For storage only,37,Sperlen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25521,398624,Switzerland,National Inventory,2011,For storage only,37,Märis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25522,398625,Switzerland,National Inventory,2011,For storage only,37,Le Rosy d'Amont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25523,398626,Switzerland,National Inventory,2011,For storage only,37,Les Râpes Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25524,398627,Switzerland,National Inventory,2011,For storage only,37,Le Rosy d'Avau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25525,398628,Switzerland,National Inventory,2011,For storage only,37,Vacheresse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25526,398629,Switzerland,National Inventory,2011,For storage only,37,Les Râpes Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25527,398630,Switzerland,National Inventory,2011,For storage only,37,Le Moléson,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25528,398631,Switzerland,National Inventory,2011,For storage only,37,Tsuatsaux d'en Haut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25529,398632,Switzerland,National Inventory,2011,For storage only,37,Bounavaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25530,398633,Switzerland,National Inventory,2011,For storage only,37,Petsernetse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25531,398634,Switzerland,National Inventory,2011,For storage only,37,Petsernetse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25532,398635,Switzerland,National Inventory,2011,For storage only,37,Tsavas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25533,398636,Switzerland,National Inventory,2011,For storage only,37,Joux Verte Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25534,398637,Switzerland,National Inventory,2011,For storage only,37,Les Ontanettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25535,398638,Switzerland,National Inventory,2011,For storage only,37,Col de Lys,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25536,398639,Switzerland,National Inventory,2011,For storage only,37,Pierra Derrey,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25537,398640,Switzerland,National Inventory,2011,For storage only,37,Ulmet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25538,398641,Switzerland,National Inventory,2011,For storage only,37,Mittlere Romaiweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25539,398642,Switzerland,National Inventory,2011,For storage only,37,Chliweidli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25540,398643,Switzerland,National Inventory,2011,For storage only,37,Brügglingen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25541,398644,Switzerland,National Inventory,2011,For storage only,37,Rumpel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25542,398645,Switzerland,National Inventory,2011,For storage only,37,Blauenweide,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25543,398646,Switzerland,National Inventory,2011,For storage only,37,Ried,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25544,398647,Switzerland,National Inventory,2011,For storage only,37,Lionza,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25545,398648,Switzerland,National Inventory,2011,For storage only,37,Bolla,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25546,398649,Switzerland,National Inventory,2011,For storage only,37,Preda di Ganosa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25547,398650,Switzerland,National Inventory,2011,For storage only,37,Fornéi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25548,398651,Switzerland,National Inventory,2011,For storage only,37,Ronchetto,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25549,398652,Switzerland,National Inventory,2011,For storage only,37,Camperio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25550,398653,Switzerland,National Inventory,2011,For storage only,37,Soz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25551,398654,Switzerland,National Inventory,2011,For storage only,37,Orello,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25552,398655,Switzerland,National Inventory,2011,For storage only,37,Bidré,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25553,398656,Switzerland,National Inventory,2011,For storage only,37,Ticiall,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25554,398657,Switzerland,National Inventory,2011,For storage only,37,Tortengo,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25555,398658,Switzerland,National Inventory,2011,For storage only,37,Ponto Valentino,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25556,398659,Switzerland,National Inventory,2011,For storage only,37,S. Carlo di Negrentino,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25557,398660,Switzerland,National Inventory,2011,For storage only,37,Campiroi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25558,398661,Switzerland,National Inventory,2011,For storage only,37,Doro,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25559,398662,Switzerland,National Inventory,2011,For storage only,37,Bedrin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25560,398663,Switzerland,National Inventory,2011,For storage only,37,Brione,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25561,398664,Switzerland,National Inventory,2011,For storage only,37,Monte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25562,398665,Switzerland,National Inventory,2011,For storage only,37,Canscei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25563,398666,Switzerland,National Inventory,2011,For storage only,37,Colla,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25564,398667,Switzerland,National Inventory,2011,For storage only,37,Rovadé,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25565,398668,Switzerland,National Inventory,2011,For storage only,37,Pinca Zuccone,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25566,398669,Switzerland,National Inventory,2011,For storage only,37,Berretta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25567,398670,Switzerland,National Inventory,2011,For storage only,37,Lunghi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25568,398671,Switzerland,National Inventory,2011,For storage only,37,Orsàira di Fuori,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25569,398672,Switzerland,National Inventory,2011,For storage only,37,Töira,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25570,398673,Switzerland,National Inventory,2011,For storage only,37,Campra di Qua,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25571,398674,Switzerland,National Inventory,2011,For storage only,37,Fontana,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25572,398675,Switzerland,National Inventory,2011,For storage only,37,Soria Sopra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25573,398676,Switzerland,National Inventory,2011,For storage only,37,Nostengo,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25574,398677,Switzerland,National Inventory,2011,For storage only,37,Holingen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25575,398678,Switzerland,National Inventory,2011,For storage only,37,Rossinengo,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25576,398679,Switzerland,National Inventory,2011,For storage only,37,Gorda di Sotto,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25577,398680,Switzerland,National Inventory,2011,For storage only,37,Gorda di Sopra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25578,398681,Switzerland,National Inventory,2011,For storage only,37,Premesti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25579,398682,Switzerland,National Inventory,2011,For storage only,37,Trascis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25580,398683,Switzerland,National Inventory,2011,For storage only,37,San Lorenzo,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25581,398684,Switzerland,National Inventory,2011,For storage only,37,Suréi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25582,398685,Switzerland,National Inventory,2011,For storage only,37,Horn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25583,398686,Switzerland,National Inventory,2011,For storage only,37,Ciossera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25584,398687,Switzerland,National Inventory,2011,For storage only,37,Ca del Cucco,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25585,398688,Switzerland,National Inventory,2011,For storage only,37,Tros,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25586,398689,Switzerland,National Inventory,2011,For storage only,37,Pianzei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25587,398690,Switzerland,National Inventory,2011,For storage only,37,Tasbèi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25588,398691,Switzerland,National Inventory,2011,For storage only,37,Grotti di Loderio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25589,398692,Switzerland,National Inventory,2011,For storage only,37,Iragna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25590,398693,Switzerland,National Inventory,2011,For storage only,37,Aurigeno,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25591,398694,Switzerland,National Inventory,2011,For storage only,37,Torbeccio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25592,398695,Switzerland,National Inventory,2011,For storage only,37,Prou,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25593,398696,Switzerland,National Inventory,2011,For storage only,37,Cortone,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25594,398697,Switzerland,National Inventory,2011,For storage only,37,Monte di Comino,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25595,398698,Switzerland,National Inventory,2011,For storage only,37,Leimet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25596,398699,Switzerland,National Inventory,2011,For storage only,37,Monte di Comino,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25597,398700,Switzerland,National Inventory,2011,For storage only,37,Castra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25598,398701,Switzerland,National Inventory,2011,For storage only,37,A. Vicania,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25599,398702,Switzerland,National Inventory,2011,For storage only,37,Guasto,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25600,398703,Switzerland,National Inventory,2011,For storage only,37,Acquacalda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25601,398704,Switzerland,National Inventory,2011,For storage only,37,Cassin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25602,398705,Switzerland,National Inventory,2011,For storage only,37,Denti della Vecchia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25603,398706,Switzerland,National Inventory,2011,For storage only,37,Monte Caslano,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25604,398707,Switzerland,National Inventory,2011,For storage only,37,Monte Generoso,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25605,398708,Switzerland,National Inventory,2011,For storage only,37,Corengiole,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25606,398709,Switzerland,National Inventory,2011,For storage only,37,Dübach,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25607,398710,Switzerland,National Inventory,2011,For storage only,37,Scudellate,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25608,398711,Switzerland,National Inventory,2011,For storage only,37,Segoletto,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25609,398712,Switzerland,National Inventory,2011,For storage only,37,Roncapiano,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25610,398713,Switzerland,National Inventory,2011,For storage only,37,Piancabella,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25611,398714,Switzerland,National Inventory,2011,For storage only,37,Dosso d'Arla,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25612,398715,Switzerland,National Inventory,2011,For storage only,37,Monte San Giorgio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25613,398716,Switzerland,National Inventory,2011,For storage only,37,Fridhag,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25614,398717,Switzerland,National Inventory,2011,For storage only,37,Croce,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25615,398718,Switzerland,National Inventory,2011,For storage only,37,Sassi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25616,398719,Switzerland,National Inventory,2011,For storage only,37,Poncione d'Arzo,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25617,398720,Switzerland,National Inventory,2011,For storage only,37,Loasa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25618,398721,Switzerland,National Inventory,2011,For storage only,37,Perfetta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25619,398722,Switzerland,National Inventory,2011,For storage only,37,Caviano,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25620,398723,Switzerland,National Inventory,2011,For storage only,37,Roncaccio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25621,398724,Switzerland,National Inventory,2011,For storage only,37,Peregai,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25622,398725,Switzerland,National Inventory,2011,For storage only,37,Pianspessa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25623,398726,Switzerland,National Inventory,2011,For storage only,37,Pree,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25624,398727,Switzerland,National Inventory,2011,For storage only,37,Meride,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25625,398728,Switzerland,National Inventory,2011,For storage only,37,Roncaia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25626,398729,Switzerland,National Inventory,2011,For storage only,37,Grotto del Lauro,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25627,398730,Switzerland,National Inventory,2011,For storage only,37,Pianche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25628,398731,Switzerland,National Inventory,2011,For storage only,37,Coleta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25629,398732,Switzerland,National Inventory,2011,For storage only,37,Liràn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25630,398733,Switzerland,National Inventory,2011,For storage only,37,S. Giorgio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25631,398734,Switzerland,National Inventory,2011,For storage only,37,Margonègia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25632,398735,Switzerland,National Inventory,2011,For storage only,37,Selna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25633,398736,Switzerland,National Inventory,2011,For storage only,37,Prato di Ce,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25634,398737,Switzerland,National Inventory,2011,For storage only,37,Busnengo,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25635,398738,Switzerland,National Inventory,2011,For storage only,37,Deggio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25636,398739,Switzerland,National Inventory,2011,For storage only,37,Pradóir,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25637,398740,Switzerland,National Inventory,2011,For storage only,37,Monte di Cima,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25638,398741,Switzerland,National Inventory,2011,For storage only,37,Gerre,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25639,398742,Switzerland,National Inventory,2011,For storage only,37,Andirö,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25640,398743,Switzerland,National Inventory,2011,For storage only,37,Sasso Guidà,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25641,398744,Switzerland,National Inventory,2011,For storage only,37,Travorno Maggiore,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25642,398745,Switzerland,National Inventory,2011,For storage only,37,Biscia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25643,398746,Switzerland,National Inventory,2011,For storage only,37,Trivelli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25644,398747,Switzerland,National Inventory,2011,For storage only,37,San Salvatore,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25645,398748,Switzerland,National Inventory,2011,For storage only,37,Erhollen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25646,398749,Switzerland,National Inventory,2011,For storage only,37,Redonda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25647,398750,Switzerland,National Inventory,2011,For storage only,37,Galbis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25648,398751,Switzerland,National Inventory,2011,For storage only,37,Cima di Fojorina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25649,398752,Switzerland,National Inventory,2011,For storage only,37,Posép,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25650,398753,Switzerland,National Inventory,2011,For storage only,37,Croce Portera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25651,398754,Switzerland,National Inventory,2011,For storage only,37,Marzanéi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25652,398755,Switzerland,National Inventory,2011,For storage only,37,Anvéuda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25653,398756,Switzerland,National Inventory,2011,For storage only,37,M. Tamaro,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25654,398757,Switzerland,National Inventory,2011,For storage only,37,Camoghè,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25655,398758,Switzerland,National Inventory,2011,For storage only,37,Casone,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25656,398759,Switzerland,National Inventory,2011,For storage only,37,Pizzo Leone,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25657,398760,Switzerland,National Inventory,2011,For storage only,37,Gaggio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25658,398761,Switzerland,National Inventory,2011,For storage only,37,Giger,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25659,398762,Switzerland,National Inventory,2011,For storage only,37,Nusshalden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25660,398763,Switzerland,National Inventory,2011,For storage only,37,Hell,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25661,398764,Switzerland,National Inventory,2011,For storage only,37,Albach,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25662,398765,Switzerland,National Inventory,2011,For storage only,37,Hoher Kasten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25663,398766,Switzerland,National Inventory,2011,For storage only,37,Alp Sigel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25664,398767,Switzerland,National Inventory,2011,For storage only,37,Hüslers,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25665,398768,Switzerland,National Inventory,2011,For storage only,37,Halten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25666,398769,Switzerland,National Inventory,2011,For storage only,37,Oltme,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25667,398770,Switzerland,National Inventory,2011,For storage only,37,Linthkanal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25668,398771,Switzerland,National Inventory,2011,For storage only,37,Tierweg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25669,398772,Switzerland,National Inventory,2011,For storage only,37,Bergli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25670,398773,Switzerland,National Inventory,2011,For storage only,37,Chammteil,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25671,398774,Switzerland,National Inventory,2011,For storage only,37,Stäfeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25672,398775,Switzerland,National Inventory,2011,For storage only,37,Fachtegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25673,398776,Switzerland,National Inventory,2011,For storage only,37,Schafplänggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25674,398777,Switzerland,National Inventory,2011,For storage only,37,Liesbergweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25675,398778,Switzerland,National Inventory,2011,For storage only,37,Gumen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25676,398779,Switzerland,National Inventory,2011,For storage only,37,Alpgmach,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25677,398780,Switzerland,National Inventory,2011,For storage only,37,Stock,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25678,398781,Switzerland,National Inventory,2011,For storage only,37,Rüchi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25679,398782,Switzerland,National Inventory,2011,For storage only,37,Vordere Planggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25680,398783,Switzerland,National Inventory,2011,For storage only,37,Rigen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25681,398784,Switzerland,National Inventory,2011,For storage only,37,Hintere Planggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25682,398785,Switzerland,National Inventory,2011,For storage only,37,Helgehüsli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25683,398786,Switzerland,National Inventory,2011,For storage only,37,Schlattberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25684,398787,Switzerland,National Inventory,2011,For storage only,37,Ober Längenegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25685,398788,Switzerland,National Inventory,2011,For storage only,37,Schwämmli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25686,398789,Switzerland,National Inventory,2011,For storage only,37,Chängelboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25687,398790,Switzerland,National Inventory,2011,For storage only,37,Chämmenen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25688,398791,Switzerland,National Inventory,2011,For storage only,37,Ober Herberig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25689,398792,Switzerland,National Inventory,2011,For storage only,37,Rhodannenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25690,398793,Switzerland,National Inventory,2011,For storage only,37,Ober Rueggis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25691,398794,Switzerland,National Inventory,2011,For storage only,37,Unter Herberig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25692,398795,Switzerland,National Inventory,2011,For storage only,37,Ochsenfeld,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25693,398796,Switzerland,National Inventory,2011,For storage only,37,Bärenboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25694,398797,Switzerland,National Inventory,2011,For storage only,37,Glattmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25695,398798,Switzerland,National Inventory,2011,For storage only,37,Innerbergli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25696,398799,Switzerland,National Inventory,2011,For storage only,37,Glattmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25697,398800,Switzerland,National Inventory,2011,For storage only,37,Moos,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25698,398801,Switzerland,National Inventory,2011,For storage only,37,Holzbort,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25699,398802,Switzerland,National Inventory,2011,For storage only,37,Schaft,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25700,398803,Switzerland,National Inventory,2011,For storage only,37,Schlattbergli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25701,398804,Switzerland,National Inventory,2011,For storage only,37,Ochsenbüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25702,398805,Switzerland,National Inventory,2011,For storage only,37,Baumgarten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25703,398806,Switzerland,National Inventory,2011,For storage only,37,Sägemühle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25704,398807,Switzerland,National Inventory,2011,For storage only,37,Bruch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25705,398808,Switzerland,National Inventory,2011,For storage only,37,Durlaui,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25706,398809,Switzerland,National Inventory,2011,For storage only,37,Bleiggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25707,398810,Switzerland,National Inventory,2011,For storage only,37,Rossboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25708,398811,Switzerland,National Inventory,2011,For storage only,37,Unter Friteren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25709,398812,Switzerland,National Inventory,2011,For storage only,37,Rufiberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25710,398813,Switzerland,National Inventory,2011,For storage only,37,Trügglisrus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25711,398814,Switzerland,National Inventory,2011,For storage only,37,Linthkanal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25712,398815,Switzerland,National Inventory,2011,For storage only,37,Boggenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25713,398816,Switzerland,National Inventory,2011,For storage only,37,Hintere Facht,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25714,398817,Switzerland,National Inventory,2011,For storage only,37,Mullerenplanggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25715,398818,Switzerland,National Inventory,2011,For storage only,37,Grund,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25716,398819,Switzerland,National Inventory,2011,For storage only,37,Schlatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25717,398820,Switzerland,National Inventory,2011,For storage only,37,Schletter,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25718,398821,Switzerland,National Inventory,2011,For storage only,37,Schilttal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25719,398822,Switzerland,National Inventory,2011,For storage only,37,Stöckli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25720,398823,Switzerland,National Inventory,2011,For storage only,37,Hinter Buchs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25721,398824,Switzerland,National Inventory,2011,For storage only,37,Äschenchöpf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25722,398825,Switzerland,National Inventory,2011,For storage only,37,Geisstal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25723,398826,Switzerland,National Inventory,2011,For storage only,37,Bergguet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25724,398827,Switzerland,National Inventory,2011,For storage only,37,Bischof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25725,398828,Switzerland,National Inventory,2011,For storage only,37,Feleten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25726,398829,Switzerland,National Inventory,2011,For storage only,37,Wildenstein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25727,398830,Switzerland,National Inventory,2011,For storage only,37,Funkeblatz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25728,398831,Switzerland,National Inventory,2011,For storage only,37,Hindere-Bärg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25729,398832,Switzerland,National Inventory,2011,For storage only,37,Loo,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25730,398833,Switzerland,National Inventory,2011,For storage only,37,Schelmebüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25731,398834,Switzerland,National Inventory,2011,For storage only,37,Weierste,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25732,398835,Switzerland,National Inventory,2011,For storage only,37,Chabishaupt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25733,398836,Switzerland,National Inventory,2011,For storage only,37,Stettfurt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25734,398837,Switzerland,National Inventory,2011,For storage only,37,Spottebärg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25735,398838,Switzerland,National Inventory,2011,For storage only,37,Sandbüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25736,398839,Switzerland,National Inventory,2011,For storage only,37,Meiersbode,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25737,398840,Switzerland,National Inventory,2011,For storage only,37,Tanebööl,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25738,398841,Switzerland,National Inventory,2011,For storage only,37,Loch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25739,398842,Switzerland,National Inventory,2011,For storage only,37,Chilpen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25740,398843,Switzerland,National Inventory,2011,For storage only,37,Obere Schachlete,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25741,398844,Switzerland,National Inventory,2011,For storage only,37,Bogental,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25742,398845,Switzerland,National Inventory,2011,For storage only,37,Hinter Geissberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25743,398846,Switzerland,National Inventory,2011,For storage only,37,Wiesengriener,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25744,398847,Switzerland,National Inventory,2011,For storage only,37,Elsässer Bahn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25745,398848,Switzerland,National Inventory,2011,For storage only,37,Schwarzpark,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25746,398849,Switzerland,National Inventory,2011,For storage only,37,Elsässer Bahn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25747,398850,Switzerland,National Inventory,2011,For storage only,37,Brügglingen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25748,398851,Switzerland,National Inventory,2011,For storage only,37,Zwölf Jucharte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25749,398852,Switzerland,National Inventory,2011,For storage only,37,Tal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25750,398853,Switzerland,National Inventory,2011,For storage only,37,Rüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25751,398854,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Bendern,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25752,398855,Switzerland,National Inventory,2011,For storage only,37,Chuffort,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25753,398856,Switzerland,National Inventory,2011,For storage only,37,Linthdamm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25754,398857,Switzerland,National Inventory,2011,For storage only,37,Chemeneau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25755,398858,Switzerland,National Inventory,2011,For storage only,37,Bel Air,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25756,398859,Switzerland,National Inventory,2011,For storage only,37,Hinterbetlis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25757,398860,Switzerland,National Inventory,2011,For storage only,37,Petit Som Martel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25758,398861,Switzerland,National Inventory,2011,For storage only,37,Blauenweide,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25759,398862,Switzerland,National Inventory,2011,For storage only,37,Plättli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25760,398863,Switzerland,National Inventory,2011,For storage only,37,Le Ceylard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25761,398864,Switzerland,National Inventory,2011,For storage only,37,Haslengaden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25762,398865,Switzerland,National Inventory,2011,For storage only,37,Le Bredot,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25763,398866,Switzerland,National Inventory,2011,For storage only,37,Chez Blaiset,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25764,398867,Switzerland,National Inventory,2011,For storage only,37,Berg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25765,398868,Switzerland,National Inventory,2011,For storage only,37,Grütt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25766,398869,Switzerland,National Inventory,2011,For storage only,37,Les Prises,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25767,398870,Switzerland,National Inventory,2011,For storage only,37,Hinterer Josen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25768,398871,Switzerland,National Inventory,2011,For storage only,37,Les Replans,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25769,398872,Switzerland,National Inventory,2011,For storage only,37,Schloss,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25770,398873,Switzerland,National Inventory,2011,For storage only,37,Prise Milord,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25771,398874,Switzerland,National Inventory,2011,For storage only,37,Creux du Van,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25772,398875,Switzerland,National Inventory,2011,For storage only,37,Helfenbergrütenen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25773,398876,Switzerland,National Inventory,2011,For storage only,37,Pât. de Meudon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25774,398877,Switzerland,National Inventory,2011,For storage only,37,Les Charrières,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25775,398878,Switzerland,National Inventory,2011,For storage only,37,Eichbühl,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25776,398879,Switzerland,National Inventory,2011,For storage only,37,Portnol,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25777,398880,Switzerland,National Inventory,2011,For storage only,37,Noirvaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25778,398881,Switzerland,National Inventory,2011,For storage only,37,Mét. de Dombresson,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25779,398882,Switzerland,National Inventory,2011,For storage only,37,Mét. de Dombresson,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25780,398883,Switzerland,National Inventory,2011,For storage only,37,Le Crosat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25781,398884,Switzerland,National Inventory,2011,For storage only,37,La Chaux d'Amin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25782,398885,Switzerland,National Inventory,2011,For storage only,37,Les Monts Orientaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25783,398886,Switzerland,National Inventory,2011,For storage only,37,Monthey du Haut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25784,398887,Switzerland,National Inventory,2011,For storage only,37,Combes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25785,398888,Switzerland,National Inventory,2011,For storage only,37,Brisecou,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25786,398889,Switzerland,National Inventory,2011,For storage only,37,La Serment,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25787,398890,Switzerland,National Inventory,2011,For storage only,37,Rochers Bruns,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25788,398891,Switzerland,National Inventory,2011,For storage only,37,Grande Racine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25789,398892,Switzerland,National Inventory,2011,For storage only,37,Mont Racine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25790,398893,Switzerland,National Inventory,2011,For storage only,37,Les Rièdes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25791,398894,Switzerland,National Inventory,2011,For storage only,37,La Goulette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25792,398895,Switzerland,National Inventory,2011,For storage only,37,Pré aux Planes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25793,398896,Switzerland,National Inventory,2011,For storage only,37,La Goulette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25794,398897,Switzerland,National Inventory,2011,For storage only,37,Verlüls,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25795,398898,Switzerland,National Inventory,2011,For storage only,37,Petite Sagneule,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25796,398899,Switzerland,National Inventory,2011,For storage only,37,Roches de l'Ermitage,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25797,398900,Switzerland,National Inventory,2011,For storage only,37,Les Grattes de Vent,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25798,398901,Switzerland,National Inventory,2011,For storage only,37,Capätsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25799,398902,Switzerland,National Inventory,2011,For storage only,37,Les Bornels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25800,398903,Switzerland,National Inventory,2011,For storage only,37,L'Armont de Vent,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25801,398904,Switzerland,National Inventory,2011,For storage only,37,Le Barthélemy,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25802,398905,Switzerland,National Inventory,2011,For storage only,37,Ruine Wartau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25803,398906,Switzerland,National Inventory,2011,For storage only,37,Crêt du Cervelet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25804,398907,Switzerland,National Inventory,2011,For storage only,37,Planeyse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25805,398908,Switzerland,National Inventory,2011,For storage only,37,Les Michel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25806,398909,Switzerland,National Inventory,2011,For storage only,37,Petits Michel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25807,398910,Switzerland,National Inventory,2011,For storage only,37,Trémalmont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25808,398911,Switzerland,National Inventory,2011,For storage only,37,Les Fontenettes Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25809,398912,Switzerland,National Inventory,2011,For storage only,37,Petite Charbonnière,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25810,398913,Switzerland,National Inventory,2011,For storage only,37,Le Loclat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25811,398914,Switzerland,National Inventory,2011,For storage only,37,Côte Bertin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25812,398915,Switzerland,National Inventory,2011,For storage only,37,Les Replans,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25813,398916,Switzerland,National Inventory,2011,For storage only,37,Les Replans,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25814,398917,Switzerland,National Inventory,2011,For storage only,37,Sonnenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25815,398918,Switzerland,National Inventory,2011,For storage only,37,La Benette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25816,398919,Switzerland,National Inventory,2011,For storage only,37,Les Côtes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25817,398920,Switzerland,National Inventory,2011,For storage only,37,Mont Dar,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25818,398921,Switzerland,National Inventory,2011,For storage only,37,Les Charbonnières,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25819,398922,Switzerland,National Inventory,2011,For storage only,37,Lochberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25820,398923,Switzerland,National Inventory,2011,For storage only,37,Rehhagweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25821,398924,Switzerland,National Inventory,2011,For storage only,37,Hinterspina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25822,398925,Switzerland,National Inventory,2011,For storage only,37,Beurnevésin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25823,398926,Switzerland,National Inventory,2011,For storage only,37,Hallen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25824,398927,Switzerland,National Inventory,2011,For storage only,37,Pâturage de Bavelier,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25825,398928,Switzerland,National Inventory,2011,For storage only,37,Vies de Roggenburg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25826,398929,Switzerland,National Inventory,2011,For storage only,37,La Réselle de Soyhières,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25827,398930,Switzerland,National Inventory,2011,For storage only,37,En Bouec,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25828,398931,Switzerland,National Inventory,2011,For storage only,37,Côte de Mai,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25829,398932,Switzerland,National Inventory,2011,For storage only,37,La Joux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25830,398933,Switzerland,National Inventory,2011,For storage only,37,La Malcôte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25831,398934,Switzerland,National Inventory,2011,For storage only,37,Creugenat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25832,398935,Switzerland,National Inventory,2011,For storage only,37,La Grosse Fin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25833,398936,Switzerland,National Inventory,2011,For storage only,37,Sur le Pré,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25834,398937,Switzerland,National Inventory,2011,For storage only,37,La Ferouse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25835,398938,Switzerland,National Inventory,2011,For storage only,37,Jetti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25836,398939,Switzerland,National Inventory,2011,For storage only,37,Grangiéron,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25837,398940,Switzerland,National Inventory,2011,For storage only,37,Deuxième Vorbourg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25838,398941,Switzerland,National Inventory,2011,For storage only,37,Montgremay,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25839,398942,Switzerland,National Inventory,2011,For storage only,37,La Combe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25840,398943,Switzerland,National Inventory,2011,For storage only,37,Haut de la Côte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25841,398944,Switzerland,National Inventory,2011,For storage only,37,Roc de l'Autel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25842,398945,Switzerland,National Inventory,2011,For storage only,37,Combe Chavat Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25843,398946,Switzerland,National Inventory,2011,For storage only,37,Le Moulin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25844,398947,Switzerland,National Inventory,2011,For storage only,37,Esserts de la Côte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25845,398948,Switzerland,National Inventory,2011,For storage only,37,Cras de la Combe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25846,398949,Switzerland,National Inventory,2011,For storage only,37,Beuseraine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25847,398950,Switzerland,National Inventory,2011,For storage only,37,Paquoille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25848,398951,Switzerland,National Inventory,2011,For storage only,37,L'Ordon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25849,398952,Switzerland,National Inventory,2011,For storage only,37,Ocourt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25850,398953,Switzerland,National Inventory,2011,For storage only,37,Les Longennes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25851,398954,Switzerland,National Inventory,2011,For storage only,37,St-Jean,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25852,398955,Switzerland,National Inventory,2011,For storage only,37,La Motte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25853,398956,Switzerland,National Inventory,2011,For storage only,37,Älpeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25854,398957,Switzerland,National Inventory,2011,For storage only,37,Grands Prés,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25855,398958,Switzerland,National Inventory,2011,For storage only,37,La Neuve Vie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25856,398959,Switzerland,National Inventory,2011,For storage only,37,Pâturage du Droit,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25857,398960,Switzerland,National Inventory,2011,For storage only,37,Les Pouches,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25858,398961,Switzerland,National Inventory,2011,For storage only,37,Châtillon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25859,398962,Switzerland,National Inventory,2011,For storage only,37,Pâturage du Droit,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25860,398963,Switzerland,National Inventory,2011,For storage only,37,Glacenal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25861,398964,Switzerland,National Inventory,2011,For storage only,37,Châtillon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25862,398965,Switzerland,National Inventory,2011,For storage only,37,Vorderspina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25863,398966,Switzerland,National Inventory,2011,For storage only,37,La Sarasine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25864,398967,Switzerland,National Inventory,2011,For storage only,37,Les Longs Prés,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25865,398968,Switzerland,National Inventory,2011,For storage only,37,Chervillers,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25866,398969,Switzerland,National Inventory,2011,For storage only,37,Petit Finage,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25867,398970,Switzerland,National Inventory,2011,For storage only,37,La Sonnenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25868,398971,Switzerland,National Inventory,2011,For storage only,37,Heiligkreuz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25869,398972,Switzerland,National Inventory,2011,For storage only,37,Schöneberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25870,398973,Switzerland,National Inventory,2011,For storage only,37,Soubey,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25871,398974,Switzerland,National Inventory,2011,For storage only,37,Chez Renaud,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25872,398975,Switzerland,National Inventory,2011,For storage only,37,Grand Finage,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25873,398976,Switzerland,National Inventory,2011,For storage only,37,La Boiraderie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25874,398977,Switzerland,National Inventory,2011,For storage only,37,Engen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25875,398978,Switzerland,National Inventory,2011,For storage only,37,Haut du Droit,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25876,398979,Switzerland,National Inventory,2011,For storage only,37,Fin de Charrère,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25877,398980,Switzerland,National Inventory,2011,For storage only,37,Undervelier,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25878,398981,Switzerland,National Inventory,2011,For storage only,37,La Metteneux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25879,398982,Switzerland,National Inventory,2011,For storage only,37,Pâturage du Droit,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25880,398983,Switzerland,National Inventory,2011,For storage only,37,Pâturage sur Les Rangs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25881,398984,Switzerland,National Inventory,2011,For storage only,37,La Belle Etoile,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25882,398985,Switzerland,National Inventory,2011,For storage only,37,Fin de la Madeleine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25883,398986,Switzerland,National Inventory,2011,For storage only,37,Paquoille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25884,398987,Switzerland,National Inventory,2011,For storage only,37,Hint. Rohrberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25885,398988,Switzerland,National Inventory,2011,For storage only,37,Bergweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25886,398989,Switzerland,National Inventory,2011,For storage only,37,Ruine Freudenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25887,398990,Switzerland,National Inventory,2011,For storage only,37,Ramsen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25888,398991,Switzerland,National Inventory,2011,For storage only,37,Oberriet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25889,398992,Switzerland,National Inventory,2011,For storage only,37,Talhof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25890,398993,Switzerland,National Inventory,2011,For storage only,37,Stig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25891,398994,Switzerland,National Inventory,2011,For storage only,37,Uf der Gräte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25892,398995,Switzerland,National Inventory,2011,For storage only,37,Randen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25893,398996,Switzerland,National Inventory,2011,For storage only,37,Halde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25894,398997,Switzerland,National Inventory,2011,For storage only,37,Hasedel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25895,398998,Switzerland,National Inventory,2011,For storage only,37,Buechberghus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25896,398999,Switzerland,National Inventory,2011,For storage only,37,Hinderranden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25897,399000,Switzerland,National Inventory,2011,For storage only,37,Herbsttal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25898,399001,Switzerland,National Inventory,2011,For storage only,37,Hinter Freudental,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25899,399002,Switzerland,National Inventory,2011,For storage only,37,Randenhorn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25900,399003,Switzerland,National Inventory,2011,For storage only,37,Eichhalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25901,399004,Switzerland,National Inventory,2011,For storage only,37,Chäferstei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25902,399005,Switzerland,National Inventory,2011,For storage only,37,Osterberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25903,399006,Switzerland,National Inventory,2011,For storage only,37,Uechben,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25904,399007,Switzerland,National Inventory,2011,For storage only,37,Hohlgraben,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25905,399008,Switzerland,National Inventory,2011,For storage only,37,Leuengründli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25906,399009,Switzerland,National Inventory,2011,For storage only,37,Chälen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25907,399010,Switzerland,National Inventory,2011,For storage only,37,Bachmüli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25908,399011,Switzerland,National Inventory,2011,For storage only,37,Heerenbuck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25909,399012,Switzerland,National Inventory,2011,For storage only,37,Hohberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25910,399013,Switzerland,National Inventory,2011,For storage only,37,Mooshalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25911,399014,Switzerland,National Inventory,2011,For storage only,37,Blaasen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25912,399015,Switzerland,National Inventory,2011,For storage only,37,Mösli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25913,399016,Switzerland,National Inventory,2011,For storage only,37,Lattweienacker,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25914,399017,Switzerland,National Inventory,2011,For storage only,37,Götzenhalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25915,399018,Switzerland,National Inventory,2011,For storage only,37,Buck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25916,399019,Switzerland,National Inventory,2011,For storage only,37,Ägistel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25917,399020,Switzerland,National Inventory,2011,For storage only,37,Seigen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25918,399021,Switzerland,National Inventory,2011,For storage only,37,Vitzboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25919,399022,Switzerland,National Inventory,2011,For storage only,37,Attenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25920,399023,Switzerland,National Inventory,2011,For storage only,37,Dostental,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25921,399024,Switzerland,National Inventory,2011,For storage only,37,Barmen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25922,399025,Switzerland,National Inventory,2011,For storage only,37,Chleebuck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25923,399026,Switzerland,National Inventory,2011,For storage only,37,Braaten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25924,399027,Switzerland,National Inventory,2011,For storage only,37,Uf der Tüele,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25925,399028,Switzerland,National Inventory,2011,For storage only,37,Geisshalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25926,399029,Switzerland,National Inventory,2011,For storage only,37,Rietwisen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25927,399030,Switzerland,National Inventory,2011,For storage only,37,Chälen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25928,399031,Switzerland,National Inventory,2011,For storage only,37,Hohrainchäpfli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25929,399032,Switzerland,National Inventory,2011,For storage only,37,Staufenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25930,399033,Switzerland,National Inventory,2011,For storage only,37,Lyten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25931,399034,Switzerland,National Inventory,2011,For storage only,37,Haartel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25932,399035,Switzerland,National Inventory,2011,For storage only,37,Merishausen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25933,399036,Switzerland,National Inventory,2011,For storage only,37,Uf der Stig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25934,399037,Switzerland,National Inventory,2011,For storage only,37,Heidenbomm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25935,399038,Switzerland,National Inventory,2011,For storage only,37,Tenterenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25936,399039,Switzerland,National Inventory,2011,For storage only,37,Winkelacker,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25937,399040,Switzerland,National Inventory,2011,For storage only,37,Randenhorn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25938,399041,Switzerland,National Inventory,2011,For storage only,37,Pöschen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25939,399042,Switzerland,National Inventory,2011,For storage only,37,Galliwisen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25940,399043,Switzerland,National Inventory,2011,For storage only,37,Schenenbüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25941,399044,Switzerland,National Inventory,2011,For storage only,37,Haslenacker,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25942,399045,Switzerland,National Inventory,2011,For storage only,37,Grätental,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25943,399046,Switzerland,National Inventory,2011,For storage only,37,Birbistel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25944,399047,Switzerland,National Inventory,2011,For storage only,37,Wald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25945,399048,Switzerland,National Inventory,2011,For storage only,37,Heerenbergli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25946,399049,Switzerland,National Inventory,2011,For storage only,37,Gerenbuck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25947,399050,Switzerland,National Inventory,2011,For storage only,37,Hinteres Freudental,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25948,399051,Switzerland,National Inventory,2011,For storage only,37,Tal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25949,399052,Switzerland,National Inventory,2011,For storage only,37,Wangental,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25950,399053,Switzerland,National Inventory,2011,For storage only,37,Santiergen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25951,399054,Switzerland,National Inventory,2011,For storage only,37,Chuttler,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25952,399055,Switzerland,National Inventory,2011,For storage only,37,Lieblosental,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25953,399056,Switzerland,National Inventory,2011,For storage only,37,Hagenturm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25954,399057,Switzerland,National Inventory,2011,For storage only,37,Staanenbergli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25955,399058,Switzerland,National Inventory,2011,For storage only,37,Hanesbüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25956,399059,Switzerland,National Inventory,2011,For storage only,37,Dürstel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25957,399060,Switzerland,National Inventory,2011,For storage only,37,Valenserberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25958,399061,Switzerland,National Inventory,2011,For storage only,37,Furtmüli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25959,399062,Switzerland,National Inventory,2011,For storage only,37,Vättis Pardätsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25960,399063,Switzerland,National Inventory,2011,For storage only,37,Rofanätschli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25961,399064,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Schwetti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25962,399065,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Trübbach,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25963,399066,Switzerland,National Inventory,2011,For storage only,37,Rittersberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25964,399067,Switzerland,National Inventory,2011,For storage only,37,Cholholz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25965,399068,Switzerland,National Inventory,2011,For storage only,37,Faren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25966,399069,Switzerland,National Inventory,2011,For storage only,37,Lindenhof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25967,399070,Switzerland,National Inventory,2011,For storage only,37,Buechlet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25968,399071,Switzerland,National Inventory,2011,For storage only,37,Stallikon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25969,399072,Switzerland,National Inventory,2011,For storage only,37,Nübrächten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25970,399073,Switzerland,National Inventory,2011,For storage only,37,Gartentobel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25971,399074,Switzerland,National Inventory,2011,For storage only,37,Beschtentobel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25972,399075,Switzerland,National Inventory,2011,For storage only,37,Hörnen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25973,399076,Switzerland,National Inventory,2011,For storage only,37,Hard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25974,399077,Switzerland,National Inventory,2011,For storage only,37,Stampfi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25975,399078,Switzerland,National Inventory,2011,For storage only,37,Schluechtächer,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25976,399079,Switzerland,National Inventory,2011,For storage only,37,Matt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25977,399080,Switzerland,National Inventory,2011,For storage only,37,Vogelsang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25978,399081,Switzerland,National Inventory,2011,For storage only,37,Brütten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25979,399082,Switzerland,National Inventory,2011,For storage only,37,Stigenweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25980,399083,Switzerland,National Inventory,2011,For storage only,37,Brand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25981,399084,Switzerland,National Inventory,2011,For storage only,37,Hard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25982,399085,Switzerland,National Inventory,2011,For storage only,37,Vorder Tobel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25983,399086,Switzerland,National Inventory,2011,For storage only,37,Schilt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25984,399087,Switzerland,National Inventory,2011,For storage only,37,Eglisgrund,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25985,399088,Switzerland,National Inventory,2011,For storage only,37,Wolfenzädel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25986,399089,Switzerland,National Inventory,2011,For storage only,37,Weid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25987,399090,Switzerland,National Inventory,2011,For storage only,37,Halden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25988,399091,Switzerland,National Inventory,2011,For storage only,37,Bifig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25989,399092,Switzerland,National Inventory,2011,For storage only,37,Underäntschberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25990,399093,Switzerland,National Inventory,2011,For storage only,37,Fuchsloch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25991,399094,Switzerland,National Inventory,2011,For storage only,37,Lätten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25992,399095,Switzerland,National Inventory,2011,For storage only,37,Felsen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25993,399096,Switzerland,National Inventory,2011,For storage only,37,Lochacker,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25994,399097,Switzerland,National Inventory,2011,For storage only,37,Rüedi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25995,399098,Switzerland,National Inventory,2011,For storage only,37,Auenriet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25996,399099,Switzerland,National Inventory,2011,For storage only,37,Tobel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25997,399100,Switzerland,National Inventory,2011,For storage only,37,Nideltobel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25998,399101,Switzerland,National Inventory,2011,For storage only,37,Oberberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -25999,399102,Switzerland,National Inventory,2011,For storage only,37,Landbüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26000,399103,Switzerland,National Inventory,2011,For storage only,37,Büel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26001,399104,Switzerland,National Inventory,2011,For storage only,37,Halden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26002,399105,Switzerland,National Inventory,2011,For storage only,37,Berenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26003,399106,Switzerland,National Inventory,2011,For storage only,37,Schlossbuck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26004,399107,Switzerland,National Inventory,2011,For storage only,37,Talmüli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26005,399108,Switzerland,National Inventory,2011,For storage only,37,Cheibenacher,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26006,399109,Switzerland,National Inventory,2011,For storage only,37,Forbuck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26007,399110,Switzerland,National Inventory,2011,For storage only,37,Edelmann,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26008,399111,Switzerland,National Inventory,2011,For storage only,37,Schnäggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26009,399112,Switzerland,National Inventory,2011,For storage only,37,Beschten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26010,399113,Switzerland,National Inventory,2011,For storage only,37,Frohberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26011,399114,Switzerland,National Inventory,2011,For storage only,37,Ganeten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26012,399115,Switzerland,National Inventory,2011,For storage only,37,Bleiki,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26013,399116,Switzerland,National Inventory,2011,For storage only,37,Widmen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26014,399117,Switzerland,National Inventory,2011,For storage only,37,Froacher,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26015,399118,Switzerland,National Inventory,2011,For storage only,37,Blumetshalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26016,399119,Switzerland,National Inventory,2011,For storage only,37,Lindirain,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26017,399120,Switzerland,National Inventory,2011,For storage only,37,Dürrspitz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26018,399121,Switzerland,National Inventory,2011,For storage only,37,Hinter Stig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26019,399122,Switzerland,National Inventory,2011,For storage only,37,Ober Ror,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26020,399123,Switzerland,National Inventory,2011,For storage only,37,Rebberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26021,399124,Switzerland,National Inventory,2011,For storage only,37,Ober Büel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26022,399125,Switzerland,National Inventory,2011,For storage only,37,Stracheren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26023,399126,Switzerland,National Inventory,2011,For storage only,37,Eigental,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26024,399127,Switzerland,National Inventory,2011,For storage only,37,Homberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26025,399128,Switzerland,National Inventory,2011,For storage only,37,Moos,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26026,399129,Switzerland,National Inventory,2011,For storage only,37,Letzibode,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26027,399130,Switzerland,National Inventory,2011,For storage only,37,Leh,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26028,399131,Switzerland,National Inventory,2011,For storage only,37,Oberholz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26029,399132,Switzerland,National Inventory,2011,For storage only,37,Eich Köngistal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26030,399133,Switzerland,National Inventory,2011,For storage only,37,Rüteren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26031,399134,Switzerland,National Inventory,2011,For storage only,37,Hinterfeld,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26032,399135,Switzerland,National Inventory,2011,For storage only,37,Major,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26033,399136,Switzerland,National Inventory,2011,For storage only,37,Bachacker,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26034,399137,Switzerland,National Inventory,2011,For storage only,37,Tössallmend,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26035,399138,Switzerland,National Inventory,2011,For storage only,37,Chöpfi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26036,399139,Switzerland,National Inventory,2011,For storage only,37,Diebis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26037,399140,Switzerland,National Inventory,2011,For storage only,37,Talgrueb,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26038,399141,Switzerland,National Inventory,2011,For storage only,37,Stigenweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26039,399142,Switzerland,National Inventory,2011,For storage only,37,Wigarten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26040,399143,Switzerland,National Inventory,2011,For storage only,37,Hegi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26041,399144,Switzerland,National Inventory,2011,For storage only,37,Ober Emmetschloo,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26042,399145,Switzerland,National Inventory,2011,For storage only,37,Klarenwisen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26043,399146,Switzerland,National Inventory,2011,For storage only,37,Leutobel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26044,399147,Switzerland,National Inventory,2011,For storage only,37,Batzenegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26045,399148,Switzerland,National Inventory,2011,For storage only,37,Danggabünt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26046,399149,Switzerland,National Inventory,2011,For storage only,37,Rüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26047,399150,Switzerland,National Inventory,2011,For storage only,37,Stutz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26048,399151,Switzerland,National Inventory,2011,For storage only,37,Zelg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26049,399152,Switzerland,National Inventory,2011,For storage only,37,Ebnet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26050,399153,Switzerland,National Inventory,2011,For storage only,37,Edlibuck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26051,399154,Switzerland,National Inventory,2011,For storage only,37,Chräenbüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26052,399155,Switzerland,National Inventory,2011,For storage only,37,Burgweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26053,399156,Switzerland,National Inventory,2011,For storage only,37,Plattis-Chopf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26054,399157,Switzerland,National Inventory,2011,For storage only,37,Langgraben,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26055,399158,Switzerland,National Inventory,2011,For storage only,37,Untergries,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26056,399159,Switzerland,National Inventory,2011,For storage only,37,Bahndamm Chrützstrass,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26057,399160,Switzerland,National Inventory,2011,For storage only,37,Falletsche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26058,399161,Switzerland,National Inventory,2011,For storage only,37,Büel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26059,399162,Switzerland,National Inventory,2011,For storage only,37,Rotengübel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26060,399163,Switzerland,National Inventory,2011,For storage only,37,Langweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26061,399164,Switzerland,National Inventory,2011,For storage only,37,Lätten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26062,399165,Switzerland,National Inventory,2011,For storage only,37,Malin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26063,399166,Switzerland,National Inventory,2011,For storage only,37,Dättnau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26064,399167,Switzerland,National Inventory,2011,For storage only,37,Wydenchlösterli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26065,399168,Switzerland,National Inventory,2011,For storage only,37,Berghof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26066,399169,Switzerland,National Inventory,2011,For storage only,37,Tägerst,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26067,399170,Switzerland,National Inventory,2011,For storage only,37,Rotlauben,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26068,399171,Switzerland,National Inventory,2011,For storage only,37,Lätten Felsenhof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26069,399172,Switzerland,National Inventory,2011,For storage only,37,Wolfen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26070,399173,Switzerland,National Inventory,2011,For storage only,37,Fröschen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26071,399174,Switzerland,National Inventory,2011,For storage only,37,Grüt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26072,399175,Switzerland,National Inventory,2011,For storage only,37,Alt Landenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26073,399176,Switzerland,National Inventory,2011,For storage only,37,Hochwacht,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26074,399177,Switzerland,National Inventory,2011,For storage only,37,Streuweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26075,399178,Switzerland,National Inventory,2011,For storage only,37,Alp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26076,399179,Switzerland,National Inventory,2011,For storage only,37,Holberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26077,399180,Switzerland,National Inventory,2011,For storage only,37,Rossweg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26078,399181,Switzerland,National Inventory,2011,For storage only,37,Brueder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26079,399182,Switzerland,National Inventory,2011,For storage only,37,Heiletsegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26080,399183,Switzerland,National Inventory,2011,For storage only,37,Langfuri,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26081,399184,Switzerland,National Inventory,2011,For storage only,37,Wissen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26082,399185,Switzerland,National Inventory,2011,For storage only,37,Tüfmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26083,399186,Switzerland,National Inventory,2011,For storage only,37,Allmend,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26084,399187,Switzerland,National Inventory,2011,For storage only,37,Uerchen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26085,399188,Switzerland,National Inventory,2011,For storage only,37,Vorrain,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26086,399189,Switzerland,National Inventory,2011,For storage only,37,Hoh Wülflingen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26087,399190,Switzerland,National Inventory,2011,For storage only,37,Gentner,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26088,399191,Switzerland,National Inventory,2011,For storage only,37,Rötelibuck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26089,399192,Switzerland,National Inventory,2011,For storage only,37,Schwendli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26090,399193,Switzerland,National Inventory,2011,For storage only,37,Buchenhof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26091,399194,Switzerland,National Inventory,2011,For storage only,37,Tal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26092,399195,Switzerland,National Inventory,2011,For storage only,37,Oberschwendli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26093,399196,Switzerland,National Inventory,2011,For storage only,37,Breiti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26094,399197,Switzerland,National Inventory,2011,For storage only,37,Bächlen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26095,399198,Switzerland,National Inventory,2011,For storage only,37,Dübendorf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26096,399199,Switzerland,National Inventory,2011,For storage only,37,Eichhalden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26097,399200,Switzerland,National Inventory,2011,For storage only,37,Rollibach,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26098,399201,Switzerland,National Inventory,2011,For storage only,37,Saxerberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26099,399202,Switzerland,National Inventory,2011,For storage only,37,Langhalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26100,399203,Switzerland,National Inventory,2011,For storage only,37,Goodenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26101,399204,Switzerland,National Inventory,2011,For storage only,37,Ämsigenplanggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26102,399205,Switzerland,National Inventory,2011,For storage only,37,Rieden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26103,399206,Switzerland,National Inventory,2011,For storage only,37,Laui,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26104,399207,Switzerland,National Inventory,2011,For storage only,37,Choleren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26105,399208,Switzerland,National Inventory,2011,For storage only,37,Vorder Schwarzenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26106,399209,Switzerland,National Inventory,2011,For storage only,37,Ruedlen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26107,399210,Switzerland,National Inventory,2011,For storage only,37,Gletti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26108,399211,Switzerland,National Inventory,2011,For storage only,37,Arvihütte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26109,399212,Switzerland,National Inventory,2011,For storage only,37,Chueneren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26110,399213,Switzerland,National Inventory,2011,For storage only,37,Aaflue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26111,399214,Switzerland,National Inventory,2011,For storage only,37,Älpeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26112,399215,Switzerland,National Inventory,2011,For storage only,37,Ei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26113,399216,Switzerland,National Inventory,2011,For storage only,37,Schildberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26114,399217,Switzerland,National Inventory,2011,For storage only,37,Obheg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26115,399218,Switzerland,National Inventory,2011,For storage only,37,Spissegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26116,399219,Switzerland,National Inventory,2011,For storage only,37,Unter Büelen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26117,399220,Switzerland,National Inventory,2011,For storage only,37,Müllerenschwand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26118,399221,Switzerland,National Inventory,2011,For storage only,37,Erlimatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26119,399222,Switzerland,National Inventory,2011,For storage only,37,Grüt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26120,399223,Switzerland,National Inventory,2011,For storage only,37,Grüt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26121,399224,Switzerland,National Inventory,2011,For storage only,37,Musschwändeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26122,399225,Switzerland,National Inventory,2011,For storage only,37,Hinterbrenden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26123,399226,Switzerland,National Inventory,2011,For storage only,37,Obstocken,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26124,399227,Switzerland,National Inventory,2011,For storage only,37,Turrenegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26125,399228,Switzerland,National Inventory,2011,For storage only,37,Lehberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26126,399229,Switzerland,National Inventory,2011,For storage only,37,Obstocken,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26127,399230,Switzerland,National Inventory,2011,For storage only,37,Mettental,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26128,399231,Switzerland,National Inventory,2011,For storage only,37,Stollen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26129,399232,Switzerland,National Inventory,2011,For storage only,37,Birchegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26130,399233,Switzerland,National Inventory,2011,For storage only,37,Steinmeise,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26131,399234,Switzerland,National Inventory,2011,For storage only,37,Gmeinegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26132,399235,Switzerland,National Inventory,2011,For storage only,37,Unter Zieblen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26133,399236,Switzerland,National Inventory,2011,For storage only,37,Hanen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26134,399237,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Ruggell,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26135,399238,Switzerland,National Inventory,2011,For storage only,37,Rinderalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26136,399239,Switzerland,National Inventory,2011,For storage only,37,Alpoglerberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26137,399240,Switzerland,National Inventory,2011,For storage only,37,Äschligrat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26138,399241,Switzerland,National Inventory,2011,For storage only,37,Vogelsberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26139,399242,Switzerland,National Inventory,2011,For storage only,37,Chlisterli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26140,399243,Switzerland,National Inventory,2011,For storage only,37,Unter Schinberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26141,399244,Switzerland,National Inventory,2011,For storage only,37,Ägerten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26142,399245,Switzerland,National Inventory,2011,For storage only,37,Chruteren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26143,399246,Switzerland,National Inventory,2011,For storage only,37,Schwibbalm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26144,399247,Switzerland,National Inventory,2011,For storage only,37,Turnacher,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26145,399248,Switzerland,National Inventory,2011,For storage only,37,Breitmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26146,399249,Switzerland,National Inventory,2011,For storage only,37,Tristelderen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26147,399250,Switzerland,National Inventory,2011,For storage only,37,Turren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26148,399251,Switzerland,National Inventory,2011,For storage only,37,Ober Steigli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26149,399252,Switzerland,National Inventory,2011,For storage only,37,Vord. Rengg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26150,399253,Switzerland,National Inventory,2011,For storage only,37,Ober Brand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26151,399254,Switzerland,National Inventory,2011,For storage only,37,Bösendorf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26152,399255,Switzerland,National Inventory,2011,For storage only,37,Churigen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26153,399256,Switzerland,National Inventory,2011,For storage only,37,Unter Lachen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26154,399257,Switzerland,National Inventory,2011,For storage only,37,Turren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26155,399258,Switzerland,National Inventory,2011,For storage only,37,Grüt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26156,399259,Switzerland,National Inventory,2011,For storage only,37,Chrüzboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26157,399260,Switzerland,National Inventory,2011,For storage only,37,Huggeten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26158,399261,Switzerland,National Inventory,2011,For storage only,37,Hüttmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26159,399262,Switzerland,National Inventory,2011,For storage only,37,Walsli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26160,399263,Switzerland,National Inventory,2011,For storage only,37,Stäbnet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26161,399264,Switzerland,National Inventory,2011,For storage only,37,Lippeten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26162,399265,Switzerland,National Inventory,2011,For storage only,37,Valenserberg Gletti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26163,399266,Switzerland,National Inventory,2011,For storage only,37,Egg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26164,399267,Switzerland,National Inventory,2011,For storage only,37,Planggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26165,399268,Switzerland,National Inventory,2011,For storage only,37,Guger,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26166,399269,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Sennwald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26167,399270,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Rheinau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26168,399271,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Burgerau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26169,399272,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Sevelen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26170,399273,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Sarganser Au,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26171,399274,Switzerland,National Inventory,2011,For storage only,37,Gmeirüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26172,399275,Switzerland,National Inventory,2011,For storage only,37,Acheberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26173,399276,Switzerland,National Inventory,2011,For storage only,37,Brunneberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26174,399277,Switzerland,National Inventory,2011,For storage only,37,Acheberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26175,399278,Switzerland,National Inventory,2011,For storage only,37,Egg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26176,399279,Switzerland,National Inventory,2011,For storage only,37,Egg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26177,399280,Switzerland,National Inventory,2011,For storage only,37,Langenmoos,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26178,399281,Switzerland,National Inventory,2011,For storage only,37,Rossweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26179,399282,Switzerland,National Inventory,2011,For storage only,37,Hönger,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26180,399283,Switzerland,National Inventory,2011,For storage only,37,Steigrüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26181,399284,Switzerland,National Inventory,2011,For storage only,37,Bauertacher,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26182,399285,Switzerland,National Inventory,2011,For storage only,37,Müsler,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26183,399286,Switzerland,National Inventory,2011,For storage only,37,Nassberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26184,399287,Switzerland,National Inventory,2011,For storage only,37,Hörndlihau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26185,399288,Switzerland,National Inventory,2011,For storage only,37,Altenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26186,399289,Switzerland,National Inventory,2011,For storage only,37,Hasenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26187,399290,Switzerland,National Inventory,2011,For storage only,37,Eikerberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26188,399291,Switzerland,National Inventory,2011,For storage only,37,Hämmenägerten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26189,399292,Switzerland,National Inventory,2011,For storage only,37,Schemel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26190,399293,Switzerland,National Inventory,2011,For storage only,37,Schlatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26191,399294,Switzerland,National Inventory,2011,For storage only,37,Stroppel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26192,399295,Switzerland,National Inventory,2011,For storage only,37,Rüteli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26193,399296,Switzerland,National Inventory,2011,For storage only,37,Ärfematt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26194,399297,Switzerland,National Inventory,2011,For storage only,37,Rieden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26195,399298,Switzerland,National Inventory,2011,For storage only,37,Wigarten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26196,399299,Switzerland,National Inventory,2011,For storage only,37,Geissberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26197,399300,Switzerland,National Inventory,2011,For storage only,37,Sarbe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26198,399301,Switzerland,National Inventory,2011,For storage only,37,Bernau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26199,399302,Switzerland,National Inventory,2011,For storage only,37,Herrenmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26200,399303,Switzerland,National Inventory,2011,For storage only,37,Barmelweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26201,399304,Switzerland,National Inventory,2011,For storage only,37,Egghübel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26202,399305,Switzerland,National Inventory,2011,For storage only,37,Buhalden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26203,399306,Switzerland,National Inventory,2011,For storage only,37,Zetzwil,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26204,399307,Switzerland,National Inventory,2011,For storage only,37,Altrüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26205,399308,Switzerland,National Inventory,2011,For storage only,37,Chilhalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26206,399309,Switzerland,National Inventory,2011,For storage only,37,Ritterhalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26207,399310,Switzerland,National Inventory,2011,For storage only,37,Chänebüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26208,399311,Switzerland,National Inventory,2011,For storage only,37,Eichhalden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26209,399312,Switzerland,National Inventory,2011,For storage only,37,Besseberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26210,399313,Switzerland,National Inventory,2011,For storage only,37,Nassbergegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26211,399314,Switzerland,National Inventory,2011,For storage only,37,Besseberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26212,399315,Switzerland,National Inventory,2011,For storage only,37,Laubberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26213,399316,Switzerland,National Inventory,2011,For storage only,37,Rotberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26214,399317,Switzerland,National Inventory,2011,For storage only,37,Unterboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26215,399318,Switzerland,National Inventory,2011,For storage only,37,Gugeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26216,399319,Switzerland,National Inventory,2011,For storage only,37,Bützerberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26217,399320,Switzerland,National Inventory,2011,For storage only,37,Chürzi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26218,399321,Switzerland,National Inventory,2011,For storage only,37,Laubberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26219,399322,Switzerland,National Inventory,2011,For storage only,37,Bernet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26220,399323,Switzerland,National Inventory,2011,For storage only,37,Bürersteig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26221,399324,Switzerland,National Inventory,2011,For storage only,37,Unterem Berg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26222,399325,Switzerland,National Inventory,2011,For storage only,37,Chatzehalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26223,399326,Switzerland,National Inventory,2011,For storage only,37,Hüslimatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26224,399327,Switzerland,National Inventory,2011,For storage only,37,Schlossberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26225,399328,Switzerland,National Inventory,2011,For storage only,37,Grossmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26226,399329,Switzerland,National Inventory,2011,For storage only,37,Walledal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26227,399330,Switzerland,National Inventory,2011,For storage only,37,Zelg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26228,399331,Switzerland,National Inventory,2011,For storage only,37,Zelg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26229,399332,Switzerland,National Inventory,2011,For storage only,37,Schönenbüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26230,399333,Switzerland,National Inventory,2011,For storage only,37,Wolftel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26231,399334,Switzerland,National Inventory,2011,For storage only,37,Langenacher,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26232,399335,Switzerland,National Inventory,2011,For storage only,37,Hessenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26233,399336,Switzerland,National Inventory,2011,For storage only,37,Nätteberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26234,399337,Switzerland,National Inventory,2011,For storage only,37,Ruge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26235,399338,Switzerland,National Inventory,2011,For storage only,37,Chrendel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26236,399339,Switzerland,National Inventory,2011,For storage only,37,Chrendel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26237,399340,Switzerland,National Inventory,2011,For storage only,37,Breiten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26238,399341,Switzerland,National Inventory,2011,For storage only,37,Winterholde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26239,399342,Switzerland,National Inventory,2011,For storage only,37,Altenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26240,399343,Switzerland,National Inventory,2011,For storage only,37,Lören,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26241,399344,Switzerland,National Inventory,2011,For storage only,37,Reben,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26242,399345,Switzerland,National Inventory,2011,For storage only,37,Schihalden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26243,399346,Switzerland,National Inventory,2011,For storage only,37,Buessberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26244,399347,Switzerland,National Inventory,2011,For storage only,37,Schihalden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26245,399348,Switzerland,National Inventory,2011,For storage only,37,Steindler,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26246,399349,Switzerland,National Inventory,2011,For storage only,37,Chripfe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26247,399350,Switzerland,National Inventory,2011,For storage only,37,Chneublet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26248,399351,Switzerland,National Inventory,2011,For storage only,37,Ämet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26249,399352,Switzerland,National Inventory,2011,For storage only,37,Eiteberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26250,399353,Switzerland,National Inventory,2011,For storage only,37,Üselmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26251,399354,Switzerland,National Inventory,2011,For storage only,37,Rohregg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26252,399355,Switzerland,National Inventory,2011,For storage only,37,Unterem Hag,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26253,399356,Switzerland,National Inventory,2011,For storage only,37,Herzberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26254,399357,Switzerland,National Inventory,2011,For storage only,37,Staffelegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26255,399358,Switzerland,National Inventory,2011,For storage only,37,Chli Wolf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26256,399359,Switzerland,National Inventory,2011,For storage only,37,Halden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26257,399360,Switzerland,National Inventory,2011,For storage only,37,Ängi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26258,399361,Switzerland,National Inventory,2011,For storage only,37,Luegeten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26259,399362,Switzerland,National Inventory,2011,For storage only,37,Chüerüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26260,399363,Switzerland,National Inventory,2011,For storage only,37,Staltenmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26261,399364,Switzerland,National Inventory,2011,For storage only,37,Buhalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26262,399365,Switzerland,National Inventory,2011,For storage only,37,Cholgrueben,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26263,399366,Switzerland,National Inventory,2011,For storage only,37,Wermet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26264,399367,Switzerland,National Inventory,2011,For storage only,37,Unteri Au,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26265,399368,Switzerland,National Inventory,2011,For storage only,37,Ämmeribuck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26266,399369,Switzerland,National Inventory,2011,For storage only,37,Gugli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26267,399370,Switzerland,National Inventory,2011,For storage only,37,Rüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26268,399371,Switzerland,National Inventory,2011,For storage only,37,Eich,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26269,399372,Switzerland,National Inventory,2011,For storage only,37,Rüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26270,399373,Switzerland,National Inventory,2011,For storage only,37,Hännen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26271,399374,Switzerland,National Inventory,2011,For storage only,37,Chessler,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26272,399375,Switzerland,National Inventory,2011,For storage only,37,Chilchstein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26273,399376,Switzerland,National Inventory,2011,For storage only,37,Weid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26274,399377,Switzerland,National Inventory,2011,For storage only,37,Rüdle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26275,399378,Switzerland,National Inventory,2011,For storage only,37,Rüdlehöf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26276,399379,Switzerland,National Inventory,2011,For storage only,37,Acheregg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26277,399380,Switzerland,National Inventory,2011,For storage only,37,Pilgerhöf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26278,399381,Switzerland,National Inventory,2011,For storage only,37,Hellmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26279,399382,Switzerland,National Inventory,2011,For storage only,37,Homberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26280,399383,Switzerland,National Inventory,2011,For storage only,37,Chatzenstrick,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26281,399384,Switzerland,National Inventory,2011,For storage only,37,Eggenrain,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26282,399385,Switzerland,National Inventory,2011,For storage only,37,Lindebode,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26283,399386,Switzerland,National Inventory,2011,For storage only,37,Platten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26284,399387,Switzerland,National Inventory,2011,For storage only,37,Strihe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26285,399388,Switzerland,National Inventory,2011,For storage only,37,Ufem Rain,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26286,399389,Switzerland,National Inventory,2011,For storage only,37,Eichlenen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26287,399390,Switzerland,National Inventory,2011,For storage only,37,Hundruggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26288,399391,Switzerland,National Inventory,2011,For storage only,37,Tannenhof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26289,399392,Switzerland,National Inventory,2011,For storage only,37,Chessler,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26290,399393,Switzerland,National Inventory,2011,For storage only,37,Laucheren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26291,399394,Switzerland,National Inventory,2011,For storage only,37,Klewenstock,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26292,399395,Switzerland,National Inventory,2011,For storage only,37,Bachtalen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26293,399396,Switzerland,National Inventory,2011,For storage only,37,Bonsbrig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26294,399397,Switzerland,National Inventory,2011,For storage only,37,Stuck,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26295,399398,Switzerland,National Inventory,2011,For storage only,37,Bränte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26296,399399,Switzerland,National Inventory,2011,For storage only,37,Buechen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26297,399400,Switzerland,National Inventory,2011,For storage only,37,Heiligchrüz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26298,399401,Switzerland,National Inventory,2011,For storage only,37,Würzenstock,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26299,399402,Switzerland,National Inventory,2011,For storage only,37,Unterstetten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26300,399403,Switzerland,National Inventory,2011,For storage only,37,Chestenenweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26301,399404,Switzerland,National Inventory,2011,For storage only,37,Dossen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26302,399405,Switzerland,National Inventory,2011,For storage only,37,Träbel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26303,399406,Switzerland,National Inventory,2011,For storage only,37,Gäbetswil,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26304,399407,Switzerland,National Inventory,2011,For storage only,37,Chriesbaumberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26305,399408,Switzerland,National Inventory,2011,For storage only,37,Mülistutz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26306,399409,Switzerland,National Inventory,2011,For storage only,37,Mittel Grämse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26307,399410,Switzerland,National Inventory,2011,For storage only,37,Mülistutz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26308,399411,Switzerland,National Inventory,2011,For storage only,37,Märis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26309,399412,Switzerland,National Inventory,2011,For storage only,37,Stanserhorn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26310,399413,Switzerland,National Inventory,2011,For storage only,37,Laui,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26311,399414,Switzerland,National Inventory,2011,For storage only,37,Farneren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26312,399415,Switzerland,National Inventory,2011,For storage only,37,Chäslistetten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26313,399416,Switzerland,National Inventory,2011,For storage only,37,Lang Hütte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26314,399417,Switzerland,National Inventory,2011,For storage only,37,Hurbelen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26315,399418,Switzerland,National Inventory,2011,For storage only,37,Chragen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26316,399419,Switzerland,National Inventory,2011,For storage only,37,Tällen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26317,399420,Switzerland,National Inventory,2011,For storage only,37,Ober Gummen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26318,399421,Switzerland,National Inventory,2011,For storage only,37,Bodenhütten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26319,399422,Switzerland,National Inventory,2011,For storage only,37,Böli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26320,399423,Switzerland,National Inventory,2011,For storage only,37,Chlus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26321,399424,Switzerland,National Inventory,2011,For storage only,37,Unter Wisstannen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26322,399425,Switzerland,National Inventory,2011,For storage only,37,Ober Wisstannen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26323,399426,Switzerland,National Inventory,2011,For storage only,37,Achs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26324,399427,Switzerland,National Inventory,2011,For storage only,37,Napf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26325,399428,Switzerland,National Inventory,2011,For storage only,37,Napf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26326,399429,Switzerland,National Inventory,2011,For storage only,37,Wigerts,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26327,399430,Switzerland,National Inventory,2011,For storage only,37,Plütschgen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26328,399431,Switzerland,National Inventory,2011,For storage only,37,Brüggenhalten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26329,399432,Switzerland,National Inventory,2011,For storage only,37,Gigi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26330,399433,Switzerland,National Inventory,2011,For storage only,37,Gibel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26331,399434,Switzerland,National Inventory,2011,For storage only,37,Graggen-Rächtli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26332,399435,Switzerland,National Inventory,2011,For storage only,37,Weidli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26333,399436,Switzerland,National Inventory,2011,For storage only,37,Geren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26334,399437,Switzerland,National Inventory,2011,For storage only,37,Widi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26335,399438,Switzerland,National Inventory,2011,For storage only,37,Rüppi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26336,399439,Switzerland,National Inventory,2011,For storage only,37,Am Hubel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26337,399440,Switzerland,National Inventory,2011,For storage only,37,Schreielberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26338,399441,Switzerland,National Inventory,2011,For storage only,37,Bärenloch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26339,399442,Switzerland,National Inventory,2011,For storage only,37,Heuwet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26340,399443,Switzerland,National Inventory,2011,For storage only,37,Ronengrat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26341,399444,Switzerland,National Inventory,2011,For storage only,37,Ried,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26342,399445,Switzerland,National Inventory,2011,For storage only,37,Lochgrabe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26343,399446,Switzerland,National Inventory,2011,For storage only,37,Arvigrat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26344,399447,Switzerland,National Inventory,2011,For storage only,37,Burstegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26345,399448,Switzerland,National Inventory,2011,For storage only,37,Chumi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26346,399449,Switzerland,National Inventory,2011,For storage only,37,Metzli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26347,399450,Switzerland,National Inventory,2011,For storage only,37,Mäggisserenegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26348,399451,Switzerland,National Inventory,2011,For storage only,37,Spissliegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26349,399452,Switzerland,National Inventory,2011,For storage only,37,Granti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26350,399453,Switzerland,National Inventory,2011,For storage only,37,Chratzeregrabe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26351,399454,Switzerland,National Inventory,2011,For storage only,37,Meise,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26352,399455,Switzerland,National Inventory,2011,For storage only,37,Halte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26353,399456,Switzerland,National Inventory,2011,For storage only,37,Wildi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26354,399457,Switzerland,National Inventory,2011,For storage only,37,La Belle Etoile,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26355,399458,Switzerland,National Inventory,2011,For storage only,37,Ryschere,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26356,399459,Switzerland,National Inventory,2011,For storage only,37,Waachli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26357,399460,Switzerland,National Inventory,2011,For storage only,37,Oberarni,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26358,399461,Switzerland,National Inventory,2011,For storage only,37,Gummenalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26359,399462,Switzerland,National Inventory,2011,For storage only,37,Brüch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26360,399463,Switzerland,National Inventory,2011,For storage only,37,Thierachern-Allmid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26361,399464,Switzerland,National Inventory,2011,For storage only,37,Chratzi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26362,399465,Switzerland,National Inventory,2011,For storage only,37,Reidige,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26363,399466,Switzerland,National Inventory,2011,For storage only,37,Mittelweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26364,399467,Switzerland,National Inventory,2011,For storage only,37,Albristhubel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26365,399468,Switzerland,National Inventory,2011,For storage only,37,Obersteinberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26366,399469,Switzerland,National Inventory,2011,For storage only,37,Biglenalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26367,399470,Switzerland,National Inventory,2011,For storage only,37,Bunderspitz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26368,399471,Switzerland,National Inventory,2011,For storage only,37,Le Gibet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26369,399472,Switzerland,National Inventory,2011,For storage only,37,Mosbielen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26370,399473,Switzerland,National Inventory,2011,For storage only,37,Reckholderli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26371,399474,Switzerland,National Inventory,2011,For storage only,37,Färmelmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26372,399475,Switzerland,National Inventory,2011,For storage only,37,Schrickmatten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26373,399476,Switzerland,National Inventory,2011,For storage only,37,Egritz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26374,399477,Switzerland,National Inventory,2011,For storage only,37,Laubwang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26375,399478,Switzerland,National Inventory,2011,For storage only,37,Bälweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26376,399479,Switzerland,National Inventory,2011,For storage only,37,Hintere Walop,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26377,399480,Switzerland,National Inventory,2011,For storage only,37,Zind,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26378,399481,Switzerland,National Inventory,2011,For storage only,37,Underste Gurbs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26379,399482,Switzerland,National Inventory,2011,For storage only,37,Aabeberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26380,399483,Switzerland,National Inventory,2011,For storage only,37,Räbersegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26381,399484,Switzerland,National Inventory,2011,For storage only,37,Galm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26382,399485,Switzerland,National Inventory,2011,For storage only,37,Pfaffebergmäder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26383,399486,Switzerland,National Inventory,2011,For storage only,37,Im Aabe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26384,399487,Switzerland,National Inventory,2011,For storage only,37,Grümberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26385,399488,Switzerland,National Inventory,2011,For storage only,37,Ronefeld,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26386,399489,Switzerland,National Inventory,2011,For storage only,37,Chuelouenen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26387,399490,Switzerland,National Inventory,2011,For storage only,37,Pavillon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26388,399491,Switzerland,National Inventory,2011,For storage only,37,Ängistafel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26389,399492,Switzerland,National Inventory,2011,For storage only,37,Tschäggere,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26390,399493,Switzerland,National Inventory,2011,For storage only,37,Fangweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26391,399494,Switzerland,National Inventory,2011,For storage only,37,Riggis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26392,399495,Switzerland,National Inventory,2011,For storage only,37,Weng,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26393,399496,Switzerland,National Inventory,2011,For storage only,37,Linterbärgli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26394,399497,Switzerland,National Inventory,2011,For storage only,37,Blankenburg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26395,399498,Switzerland,National Inventory,2011,For storage only,37,Geeristei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26396,399499,Switzerland,National Inventory,2011,For storage only,37,Bächenallmi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26397,399500,Switzerland,National Inventory,2011,For storage only,37,Meniggrund,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26398,399501,Switzerland,National Inventory,2011,For storage only,37,Stägeschopf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26399,399502,Switzerland,National Inventory,2011,For storage only,37,Wittere,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26400,399503,Switzerland,National Inventory,2011,For storage only,37,Halte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26401,399504,Switzerland,National Inventory,2011,For storage only,37,Bort,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26402,399505,Switzerland,National Inventory,2011,For storage only,37,Schwand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26403,399506,Switzerland,National Inventory,2011,For storage only,37,Arisberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26404,399507,Switzerland,National Inventory,2011,For storage only,37,Tüüchtelwengli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26405,399508,Switzerland,National Inventory,2011,For storage only,37,In de Brüche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26406,399509,Switzerland,National Inventory,2011,For storage only,37,Allmi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26407,399510,Switzerland,National Inventory,2011,For storage only,37,Leitereweideni,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26408,399511,Switzerland,National Inventory,2011,For storage only,37,Lineboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26409,399512,Switzerland,National Inventory,2011,For storage only,37,Eggmittelberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26410,399513,Switzerland,National Inventory,2011,For storage only,37,Gugger,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26411,399514,Switzerland,National Inventory,2011,For storage only,37,Gläckmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26412,399515,Switzerland,National Inventory,2011,For storage only,37,Wenden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26413,399516,Switzerland,National Inventory,2011,For storage only,37,Muri,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26414,399517,Switzerland,National Inventory,2011,For storage only,37,Nüjeberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26415,399518,Switzerland,National Inventory,2011,For storage only,37,Unders Gälmi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26416,399519,Switzerland,National Inventory,2011,For storage only,37,Unterst Geberts,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26417,399520,Switzerland,National Inventory,2011,For storage only,37,Obri Ammerta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26418,399521,Switzerland,National Inventory,2011,For storage only,37,Rieder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26419,399522,Switzerland,National Inventory,2011,For storage only,37,Betelbergmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26420,399523,Switzerland,National Inventory,2011,For storage only,37,Wolfsgruebeweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26421,399524,Switzerland,National Inventory,2011,For storage only,37,Sengg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26422,399525,Switzerland,National Inventory,2011,For storage only,37,Houete,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26423,399526,Switzerland,National Inventory,2011,For storage only,37,Tannersgrabe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26424,399527,Switzerland,National Inventory,2011,For storage only,37,Vorderer Rossboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26425,399528,Switzerland,National Inventory,2011,For storage only,37,Wanne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26426,399529,Switzerland,National Inventory,2011,For storage only,37,Bielenweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26427,399530,Switzerland,National Inventory,2011,For storage only,37,Albristmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26428,399531,Switzerland,National Inventory,2011,For storage only,37,Otteremeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26429,399532,Switzerland,National Inventory,2011,For storage only,37,Schauenegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26430,399533,Switzerland,National Inventory,2011,For storage only,37,Chöldrist,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26431,399534,Switzerland,National Inventory,2011,For storage only,37,Bärgli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26432,399535,Switzerland,National Inventory,2011,For storage only,37,Loueneweidli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26433,399536,Switzerland,National Inventory,2011,For storage only,37,Innerrüteni,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26434,399537,Switzerland,National Inventory,2011,For storage only,37,Ober Alpeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26435,399538,Switzerland,National Inventory,2011,For storage only,37,Teller,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26436,399539,Switzerland,National Inventory,2011,For storage only,37,Scharte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26437,399540,Switzerland,National Inventory,2011,For storage only,37,Stafel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26438,399541,Switzerland,National Inventory,2011,For storage only,37,Gütsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26439,399542,Switzerland,National Inventory,2011,For storage only,37,Albristmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26440,399543,Switzerland,National Inventory,2011,For storage only,37,Sali,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26441,399544,Switzerland,National Inventory,2011,For storage only,37,Chanderbrüggallmi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26442,399545,Switzerland,National Inventory,2011,For storage only,37,Leuggis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26443,399546,Switzerland,National Inventory,2011,For storage only,37,Zingeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26444,399547,Switzerland,National Inventory,2011,For storage only,37,Weid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26445,399548,Switzerland,National Inventory,2011,For storage only,37,Spicherallmi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26446,399549,Switzerland,National Inventory,2011,For storage only,37,Lusseweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26447,399550,Switzerland,National Inventory,2011,For storage only,37,Linterbärgli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26448,399551,Switzerland,National Inventory,2011,For storage only,37,Buechistock,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26449,399552,Switzerland,National Inventory,2011,For storage only,37,Schwanderbärgli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26450,399553,Switzerland,National Inventory,2011,For storage only,37,Schwendi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26451,399554,Switzerland,National Inventory,2011,For storage only,37,Senggi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26452,399555,Switzerland,National Inventory,2011,For storage only,37,Farniweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26453,399556,Switzerland,National Inventory,2011,For storage only,37,Steinacher,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26454,399557,Switzerland,National Inventory,2011,For storage only,37,Im Stutz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26455,399558,Switzerland,National Inventory,2011,For storage only,37,Rosenegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26456,399559,Switzerland,National Inventory,2011,For storage only,37,Undri Hagweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26457,399560,Switzerland,National Inventory,2011,For storage only,37,Sytiweidleni,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26458,399561,Switzerland,National Inventory,2011,For storage only,37,Hüethütte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26459,399562,Switzerland,National Inventory,2011,For storage only,37,Stäga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26460,399563,Switzerland,National Inventory,2011,For storage only,37,Gstepf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26461,399564,Switzerland,National Inventory,2011,For storage only,37,Zälg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26462,399565,Switzerland,National Inventory,2011,For storage only,37,Egglimäder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26463,399566,Switzerland,National Inventory,2011,For storage only,37,Hohstand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26464,399567,Switzerland,National Inventory,2011,For storage only,37,Eigen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26465,399568,Switzerland,National Inventory,2011,For storage only,37,Küenzeli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26466,399569,Switzerland,National Inventory,2011,For storage only,37,Rosswang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26467,399570,Switzerland,National Inventory,2011,For storage only,37,Leesyten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26468,399571,Switzerland,National Inventory,2011,For storage only,37,Schwarzenmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26469,399572,Switzerland,National Inventory,2011,For storage only,37,Stampach,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26470,399573,Switzerland,National Inventory,2011,For storage only,37,Uf de Höfte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26471,399574,Switzerland,National Inventory,2011,For storage only,37,Runtschi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26472,399575,Switzerland,National Inventory,2011,For storage only,37,Preech,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26473,399576,Switzerland,National Inventory,2011,For storage only,37,Äbnet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26474,399577,Switzerland,National Inventory,2011,For storage only,37,Am Stalden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26475,399578,Switzerland,National Inventory,2011,For storage only,37,Unterer Ofenbielen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26476,399579,Switzerland,National Inventory,2011,For storage only,37,Oberbürgle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26477,399580,Switzerland,National Inventory,2011,For storage only,37,In de Weidene,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26478,399581,Switzerland,National Inventory,2011,For storage only,37,Reckenthal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26479,399582,Switzerland,National Inventory,2011,For storage only,37,Staldiberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26480,399583,Switzerland,National Inventory,2011,For storage only,37,Raben,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26481,399584,Switzerland,National Inventory,2011,For storage only,37,Rohr,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26482,399585,Switzerland,National Inventory,2011,For storage only,37,Stuel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26483,399586,Switzerland,National Inventory,2011,For storage only,37,Ried,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26484,399587,Switzerland,National Inventory,2011,For storage only,37,Stalden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26485,399588,Switzerland,National Inventory,2011,For storage only,37,Gwand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26486,399589,Switzerland,National Inventory,2011,For storage only,37,Ufem Dirr,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26487,399590,Switzerland,National Inventory,2011,For storage only,37,Adelrain,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26488,399591,Switzerland,National Inventory,2011,For storage only,37,Ausser Kandergrund,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26489,399592,Switzerland,National Inventory,2011,For storage only,37,Am obere Laseberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26490,399593,Switzerland,National Inventory,2011,For storage only,37,Hirtplanggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26491,399594,Switzerland,National Inventory,2011,For storage only,37,Tripfi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26492,399595,Switzerland,National Inventory,2011,For storage only,37,Vorsess,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26493,399596,Switzerland,National Inventory,2011,For storage only,37,Leewald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26494,399597,Switzerland,National Inventory,2011,For storage only,37,Riedli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26495,399598,Switzerland,National Inventory,2011,For storage only,37,Ächerli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26496,399599,Switzerland,National Inventory,2011,For storage only,37,Enetgrabe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26497,399600,Switzerland,National Inventory,2011,For storage only,37,Chros,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26498,399601,Switzerland,National Inventory,2011,For storage only,37,Raufligrat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26499,399602,Switzerland,National Inventory,2011,For storage only,37,Sattelweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26500,399603,Switzerland,National Inventory,2011,For storage only,37,Büel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26501,399604,Switzerland,National Inventory,2011,For storage only,37,Nessligen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26502,399605,Switzerland,National Inventory,2011,For storage only,37,Vorsess,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26503,399606,Switzerland,National Inventory,2011,For storage only,37,Vorder Stäckenmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26504,399607,Switzerland,National Inventory,2011,For storage only,37,Obermad,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26505,399608,Switzerland,National Inventory,2011,For storage only,37,Chalberstall,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26506,399609,Switzerland,National Inventory,2011,For storage only,37,Rond Bois,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26507,399610,Switzerland,National Inventory,2011,For storage only,37,Stöckmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26508,399611,Switzerland,National Inventory,2011,For storage only,37,Staldi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26509,399612,Switzerland,National Inventory,2011,For storage only,37,Obwang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26510,399613,Switzerland,National Inventory,2011,For storage only,37,Geissholz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26511,399614,Switzerland,National Inventory,2011,For storage only,37,Holestei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26512,399615,Switzerland,National Inventory,2011,For storage only,37,Gwiggi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26513,399616,Switzerland,National Inventory,2011,For storage only,37,Im Moos,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26514,399617,Switzerland,National Inventory,2011,For storage only,37,Underbürgle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26515,399618,Switzerland,National Inventory,2011,For storage only,37,Riedli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26516,399619,Switzerland,National Inventory,2011,For storage only,37,Weidboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26517,399620,Switzerland,National Inventory,2011,For storage only,37,Schwanderbärgli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26518,399621,Switzerland,National Inventory,2011,For storage only,37,Wiler,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26519,399622,Switzerland,National Inventory,2011,For storage only,37,Ligg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26520,399623,Switzerland,National Inventory,2011,For storage only,37,Bärenegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26521,399624,Switzerland,National Inventory,2011,For storage only,37,Hostetten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26522,399625,Switzerland,National Inventory,2011,For storage only,37,Ruine Festi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26523,399626,Switzerland,National Inventory,2011,For storage only,37,Chasseral,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26524,399627,Switzerland,National Inventory,2011,For storage only,37,Les Noisetiers,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26525,399628,Switzerland,National Inventory,2011,For storage only,37,Petit Chasseral,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26526,399629,Switzerland,National Inventory,2011,For storage only,37,Pâturage du Droit,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26527,399630,Switzerland,National Inventory,2011,For storage only,37,Pâturage du Droit,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26528,399631,Switzerland,National Inventory,2011,For storage only,37,Combe Gaumé,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26529,399632,Switzerland,National Inventory,2011,For storage only,37,Les Voigières,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26530,399633,Switzerland,National Inventory,2011,For storage only,37,Pré la Patte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26531,399634,Switzerland,National Inventory,2011,For storage only,37,Le Piémont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26532,399635,Switzerland,National Inventory,2011,For storage only,37,Staldeweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26533,399636,Switzerland,National Inventory,2011,For storage only,37,Pâturage des Esserts,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26534,399637,Switzerland,National Inventory,2011,For storage only,37,Le Brahon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26535,399638,Switzerland,National Inventory,2011,For storage only,37,La Citerne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26536,399639,Switzerland,National Inventory,2011,For storage only,37,Grencheberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26537,399640,Switzerland,National Inventory,2011,For storage only,37,Spiggeweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26538,399641,Switzerland,National Inventory,2011,For storage only,37,Horemäder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26539,399642,Switzerland,National Inventory,2011,For storage only,37,Les Grands Champs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26540,399643,Switzerland,National Inventory,2011,For storage only,37,Walderalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26541,399644,Switzerland,National Inventory,2011,For storage only,37,Les Tayes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26542,399645,Switzerland,National Inventory,2011,For storage only,37,Le Crât,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26543,399646,Switzerland,National Inventory,2011,For storage only,37,Pré la Patte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26544,399647,Switzerland,National Inventory,2011,For storage only,37,Bälmetsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26545,399648,Switzerland,National Inventory,2011,For storage only,37,Métairie de St-Jean,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26546,399649,Switzerland,National Inventory,2011,For storage only,37,Buechmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26547,399650,Switzerland,National Inventory,2011,For storage only,37,Eggebärgli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26548,399651,Switzerland,National Inventory,2011,For storage only,37,Schattwimeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26549,399652,Switzerland,National Inventory,2011,For storage only,37,I de Wenge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26550,399653,Switzerland,National Inventory,2011,For storage only,37,Eggweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26551,399654,Switzerland,National Inventory,2011,For storage only,37,Petit Van,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26552,399655,Switzerland,National Inventory,2011,For storage only,37,La Baruche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26553,399656,Switzerland,National Inventory,2011,For storage only,37,Schufli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26554,399657,Switzerland,National Inventory,2011,For storage only,37,Esserts vers Moutier,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26555,399658,Switzerland,National Inventory,2011,For storage only,37,Ahoreweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26556,399659,Switzerland,National Inventory,2011,For storage only,37,Les Lavettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26557,399660,Switzerland,National Inventory,2011,For storage only,37,Ochsewang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26558,399661,Switzerland,National Inventory,2011,For storage only,37,Le Van,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26559,399662,Switzerland,National Inventory,2011,For storage only,37,Rüteli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26560,399663,Switzerland,National Inventory,2011,For storage only,37,Ademberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26561,399664,Switzerland,National Inventory,2011,For storage only,37,Belprahon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26562,399665,Switzerland,National Inventory,2011,For storage only,37,Hoger,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26563,399666,Switzerland,National Inventory,2011,For storage only,37,Chli Rohrgrabe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26564,399667,Switzerland,National Inventory,2011,For storage only,37,Schattwimeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26565,399668,Switzerland,National Inventory,2011,For storage only,37,Äschholz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26566,399669,Switzerland,National Inventory,2011,For storage only,37,Vord. Hofbergli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26567,399670,Switzerland,National Inventory,2011,For storage only,37,Geissbach,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26568,399671,Switzerland,National Inventory,2011,For storage only,37,Winteregg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26569,399672,Switzerland,National Inventory,2011,For storage only,37,Le Grimm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26570,399673,Switzerland,National Inventory,2011,For storage only,37,Brenggenmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26571,399674,Switzerland,National Inventory,2011,For storage only,37,Louweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26572,399675,Switzerland,National Inventory,2011,For storage only,37,Schöneberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26573,399676,Switzerland,National Inventory,2011,For storage only,37,Imihubel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26574,399677,Switzerland,National Inventory,2011,For storage only,37,Brenggenmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26575,399678,Switzerland,National Inventory,2011,For storage only,37,Heuberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26576,399679,Switzerland,National Inventory,2011,For storage only,37,Sillere,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26577,399680,Switzerland,National Inventory,2011,For storage only,37,Chli Rohrgrabe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26578,399681,Switzerland,National Inventory,2011,For storage only,37,Tierpark,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26579,399682,Switzerland,National Inventory,2011,For storage only,37,Chirschbäumliweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26580,399683,Switzerland,National Inventory,2011,For storage only,37,Le Grimm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26581,399684,Switzerland,National Inventory,2011,For storage only,37,Le Pas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26582,399685,Switzerland,National Inventory,2011,For storage only,37,Aargauerstalden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26583,399686,Switzerland,National Inventory,2011,For storage only,37,Chrüzflue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26584,399687,Switzerland,National Inventory,2011,For storage only,37,Tierpark,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26585,399688,Switzerland,National Inventory,2011,For storage only,37,Brändlisweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26586,399689,Switzerland,National Inventory,2011,For storage only,37,Laupenau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26587,399690,Switzerland,National Inventory,2011,For storage only,37,Gampelen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26588,399691,Switzerland,National Inventory,2011,For storage only,37,Pâturage de Sagne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26589,399692,Switzerland,National Inventory,2011,For storage only,37,Gümmenenau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26590,399693,Switzerland,National Inventory,2011,For storage only,37,Bir länge Stude,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26591,399694,Switzerland,National Inventory,2011,For storage only,37,Golsenrainacher,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26592,399695,Switzerland,National Inventory,2011,For storage only,37,Blatteree,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26593,399696,Switzerland,National Inventory,2011,For storage only,37,Laupenau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26594,399697,Switzerland,National Inventory,2011,For storage only,37,Müligrien,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26595,399698,Switzerland,National Inventory,2011,For storage only,37,Blatteree,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26596,399699,Switzerland,National Inventory,2011,For storage only,37,Unteralp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26597,399700,Switzerland,National Inventory,2011,For storage only,37,Schafberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26598,399701,Switzerland,National Inventory,2011,For storage only,37,Im Wengen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26599,399702,Switzerland,National Inventory,2011,For storage only,37,Alpligen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26600,399703,Switzerland,National Inventory,2011,For storage only,37,Lüpersberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26601,399704,Switzerland,National Inventory,2011,For storage only,37,Spicherberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26602,399705,Switzerland,National Inventory,2011,For storage only,37,Schopf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26603,399706,Switzerland,National Inventory,2011,For storage only,37,Biglera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26604,399707,Switzerland,National Inventory,2011,For storage only,37,Lusbüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26605,399708,Switzerland,National Inventory,2011,For storage only,37,Oberberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26606,399709,Switzerland,National Inventory,2011,For storage only,37,Unterniesen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26607,399710,Switzerland,National Inventory,2011,For storage only,37,Undrem Tritt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26608,399711,Switzerland,National Inventory,2011,For storage only,37,Chlus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26609,399712,Switzerland,National Inventory,2011,For storage only,37,Champ Matthieu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26610,399713,Switzerland,National Inventory,2011,For storage only,37,Louweli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26611,399714,Switzerland,National Inventory,2011,For storage only,37,Sandey,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26612,399715,Switzerland,National Inventory,2011,For storage only,37,Ladholzgrabe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26613,399716,Switzerland,National Inventory,2011,For storage only,37,Gümmenenau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26614,399717,Switzerland,National Inventory,2011,For storage only,37,Müllersbode,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26615,399718,Switzerland,National Inventory,2011,For storage only,37,Tussweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26616,399719,Switzerland,National Inventory,2011,For storage only,37,Husallmi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26617,399720,Switzerland,National Inventory,2011,For storage only,37,Spissliegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26618,399721,Switzerland,National Inventory,2011,For storage only,37,Napf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26619,399722,Switzerland,National Inventory,2011,For storage only,37,Schwand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26620,399723,Switzerland,National Inventory,2011,For storage only,37,Schlossweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26621,399724,Switzerland,National Inventory,2011,For storage only,37,Schälmegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26622,399725,Switzerland,National Inventory,2011,For storage only,37,I de Huble,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26623,399726,Switzerland,National Inventory,2011,For storage only,37,Oberst Geberts,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26624,399727,Switzerland,National Inventory,2011,For storage only,37,Ifängi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26625,399728,Switzerland,National Inventory,2011,For storage only,37,Büelen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26626,399729,Switzerland,National Inventory,2011,For storage only,37,Rotihalten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26627,399730,Switzerland,National Inventory,2011,For storage only,37,Hagnau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26628,399731,Switzerland,National Inventory,2011,For storage only,37,Chasseral,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26629,399732,Switzerland,National Inventory,2011,For storage only,37,Cht du Grand Essert,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26630,399733,Switzerland,National Inventory,2011,For storage only,37,Pièce à Neveu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26631,399734,Switzerland,National Inventory,2011,For storage only,37,Pièce aux Reymond,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26632,399735,Switzerland,National Inventory,2011,For storage only,37,Pièce aux Reymond,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26633,399736,Switzerland,National Inventory,2011,For storage only,37,Grands Crosets Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26634,399737,Switzerland,National Inventory,2011,For storage only,37,La Perrause,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26635,399738,Switzerland,National Inventory,2011,For storage only,37,Petites Chaumilles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26636,399739,Switzerland,National Inventory,2011,For storage only,37,Rossfallen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26637,399740,Switzerland,National Inventory,2011,For storage only,37,Sèche des Amburnex,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26638,399741,Switzerland,National Inventory,2011,For storage only,37,La Baronne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26639,399742,Switzerland,National Inventory,2011,For storage only,37,Les Amburnex,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26640,399743,Switzerland,National Inventory,2011,For storage only,37,Pré aux Veaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26641,399744,Switzerland,National Inventory,2011,For storage only,37,Les Begnines,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26642,399745,Switzerland,National Inventory,2011,For storage only,37,Mont Sâla,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26643,399746,Switzerland,National Inventory,2011,For storage only,37,La Bullatonne Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26644,399747,Switzerland,National Inventory,2011,For storage only,37,La Pidouse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26645,399748,Switzerland,National Inventory,2011,For storage only,37,La Première,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26646,399749,Switzerland,National Inventory,2011,For storage only,37,Les Preisettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26647,399750,Switzerland,National Inventory,2011,For storage only,37,Chaux Commun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26648,399751,Switzerland,National Inventory,2011,For storage only,37,Col des Etroits,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26649,399752,Switzerland,National Inventory,2011,For storage only,37,Les Illars,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26650,399753,Switzerland,National Inventory,2011,For storage only,37,Les Etroits,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26651,399754,Switzerland,National Inventory,2011,For storage only,37,Champ de Gryonne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26652,399755,Switzerland,National Inventory,2011,For storage only,37,Le Chasseron,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26653,399756,Switzerland,National Inventory,2011,For storage only,37,Crêt des Gouilles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26654,399757,Switzerland,National Inventory,2011,For storage only,37,Le Botsa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26655,399758,Switzerland,National Inventory,2011,For storage only,37,Les Chaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26656,399759,Switzerland,National Inventory,2011,For storage only,37,Montérel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26657,399760,Switzerland,National Inventory,2011,For storage only,37,Les Larzettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26658,399761,Switzerland,National Inventory,2011,For storage only,37,Chaudet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26659,399762,Switzerland,National Inventory,2011,For storage only,37,La Chaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26660,399763,Switzerland,National Inventory,2011,For storage only,37,Mont de la Maya,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26661,399764,Switzerland,National Inventory,2011,For storage only,37,Combe du Luissel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26662,399765,Switzerland,National Inventory,2011,For storage only,37,La Marnèche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26663,399766,Switzerland,National Inventory,2011,For storage only,37,Petites Roches,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26664,399767,Switzerland,National Inventory,2011,For storage only,37,Chaudet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26665,399768,Switzerland,National Inventory,2011,For storage only,37,Longevaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26666,399769,Switzerland,National Inventory,2011,For storage only,37,Orgevaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26667,399770,Switzerland,National Inventory,2011,For storage only,37,L'Ecuale,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26668,399771,Switzerland,National Inventory,2011,For storage only,37,Chaux Ronde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26669,399772,Switzerland,National Inventory,2011,For storage only,37,Marche de Retaud,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26670,399773,Switzerland,National Inventory,2011,For storage only,37,Marnex d'en Haut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26671,399774,Switzerland,National Inventory,2011,For storage only,37,Les Cernets Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26672,399775,Switzerland,National Inventory,2011,For storage only,37,Dru aux Boyards,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26673,399776,Switzerland,National Inventory,2011,For storage only,37,La Calame,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26674,399777,Switzerland,National Inventory,2011,For storage only,37,Le Vey,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26675,399778,Switzerland,National Inventory,2011,For storage only,37,Le Cochet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26676,399779,Switzerland,National Inventory,2011,For storage only,37,Mayen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26677,399780,Switzerland,National Inventory,2011,For storage only,37,L'Abert,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26678,399781,Switzerland,National Inventory,2011,For storage only,37,Ste-Croix,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26679,399782,Switzerland,National Inventory,2011,For storage only,37,Arten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26680,399783,Switzerland,National Inventory,2011,For storage only,37,Euzanne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26681,399784,Switzerland,National Inventory,2011,For storage only,37,Joux d'Aï,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26682,399785,Switzerland,National Inventory,2011,For storage only,37,La Motte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26683,399786,Switzerland,National Inventory,2011,For storage only,37,Sonna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26684,399787,Switzerland,National Inventory,2011,For storage only,37,Rochers de Naye,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26685,399788,Switzerland,National Inventory,2011,For storage only,37,Planachaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26686,399789,Switzerland,National Inventory,2011,For storage only,37,Planex Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26687,399790,Switzerland,National Inventory,2011,For storage only,37,Rougemont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26688,399791,Switzerland,National Inventory,2011,For storage only,37,Les Fenils,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26689,399792,Switzerland,National Inventory,2011,For storage only,37,Dent de Corjon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26690,399793,Switzerland,National Inventory,2011,For storage only,37,Derrière Forcle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26691,399794,Switzerland,National Inventory,2011,For storage only,37,Paray Dorénaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26692,399795,Switzerland,National Inventory,2011,For storage only,37,Mont Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26693,399796,Switzerland,National Inventory,2011,For storage only,37,Le Linderrey,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26694,399797,Switzerland,National Inventory,2011,For storage only,37,Le Lévanchy,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26695,399798,Switzerland,National Inventory,2011,For storage only,37,Les Planards,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26696,399799,Switzerland,National Inventory,2011,For storage only,37,Prélan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26697,399800,Switzerland,National Inventory,2011,For storage only,37,Ruble,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26698,399801,Switzerland,National Inventory,2011,For storage only,37,Sassalas d'en Bas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26699,399802,Switzerland,National Inventory,2011,For storage only,37,Le Chalotet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26700,399803,Switzerland,National Inventory,2011,For storage only,37,L'Orgeolet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26701,399804,Switzerland,National Inventory,2011,For storage only,37,Les Chenolettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26702,399805,Switzerland,National Inventory,2011,For storage only,37,Dent des Bimis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26703,399806,Switzerland,National Inventory,2011,For storage only,37,La Videman Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26704,399807,Switzerland,National Inventory,2011,For storage only,37,Les Rayes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26705,399808,Switzerland,National Inventory,2011,For storage only,37,La Chanette d'en Haut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26706,399809,Switzerland,National Inventory,2011,For storage only,37,Veyges,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26707,399810,Switzerland,National Inventory,2011,For storage only,37,La Boule de Gomme,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26708,399811,Switzerland,National Inventory,2011,For storage only,37,La Forcla,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26709,399812,Switzerland,National Inventory,2011,For storage only,37,L'Etivaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26710,399813,Switzerland,National Inventory,2011,For storage only,37,Mont Derrière,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26711,399814,Switzerland,National Inventory,2011,For storage only,37,Sous Jable,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26712,399815,Switzerland,National Inventory,2011,For storage only,37,Les Joux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26713,399816,Switzerland,National Inventory,2011,For storage only,37,Les Combettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26714,399817,Switzerland,National Inventory,2011,For storage only,37,Petites Sauges,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26715,399818,Switzerland,National Inventory,2011,For storage only,37,Vers Cort,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26716,399819,Switzerland,National Inventory,2011,For storage only,37,Le Pendant,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26717,399820,Switzerland,National Inventory,2011,For storage only,37,Sur Pra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26718,399821,Switzerland,National Inventory,2011,For storage only,37,La Laissy,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26719,399822,Switzerland,National Inventory,2011,For storage only,37,La Randonnaire,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26720,399823,Switzerland,National Inventory,2011,For storage only,37,Les Riz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26721,399824,Switzerland,National Inventory,2011,For storage only,37,Paray Dorénaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26722,399825,Switzerland,National Inventory,2011,For storage only,37,Plan de l'Etalle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26723,399826,Switzerland,National Inventory,2011,For storage only,37,Les Posses,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26724,399827,Switzerland,National Inventory,2011,For storage only,37,Combette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26725,399828,Switzerland,National Inventory,2011,For storage only,37,Petit Jable,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26726,399829,Switzerland,National Inventory,2011,For storage only,37,Au Devin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26727,399830,Switzerland,National Inventory,2011,For storage only,37,Plans Claude,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26728,399831,Switzerland,National Inventory,2011,For storage only,37,Sassalas d'en Haut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26729,399832,Switzerland,National Inventory,2011,For storage only,37,Les Ecoumaudaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26730,399833,Switzerland,National Inventory,2011,For storage only,37,Le Van,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26731,399834,Switzerland,National Inventory,2011,For storage only,37,Le Praude,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26732,399835,Switzerland,National Inventory,2011,For storage only,37,La Montagnette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26733,399836,Switzerland,National Inventory,2011,For storage only,37,Sisounette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26734,399837,Switzerland,National Inventory,2011,For storage only,37,Crête d'Auliens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26735,399838,Switzerland,National Inventory,2011,For storage only,37,Paray Charbon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26736,399839,Switzerland,National Inventory,2011,For storage only,37,Pâquier Martin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26737,399840,Switzerland,National Inventory,2011,For storage only,37,La Ville,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26738,399841,Switzerland,National Inventory,2011,For storage only,37,Fin de Juret,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26739,399842,Switzerland,National Inventory,2011,For storage only,37,Grands Craux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26740,399843,Switzerland,National Inventory,2011,For storage only,37,Les Combes du Milieu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26741,399844,Switzerland,National Inventory,2011,For storage only,37,La Molaire,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26742,399845,Switzerland,National Inventory,2011,For storage only,37,La Loune,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26743,399846,Switzerland,National Inventory,2011,For storage only,37,Tête du Lévanchy,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26744,399847,Switzerland,National Inventory,2011,For storage only,37,Pâquier Burnier,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26745,399848,Switzerland,National Inventory,2011,For storage only,37,Vers la Doey,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26746,399849,Switzerland,National Inventory,2011,For storage only,37,Le Boura,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26747,399850,Switzerland,National Inventory,2011,For storage only,37,Le Marais,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26748,399851,Switzerland,National Inventory,2011,For storage only,37,Drapel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26749,399852,Switzerland,National Inventory,2011,For storage only,37,Les Combettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26750,399853,Switzerland,National Inventory,2011,For storage only,37,Vuargny Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26751,399854,Switzerland,National Inventory,2011,For storage only,37,Velard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26752,399855,Switzerland,National Inventory,2011,For storage only,37,Le Bouet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26753,399856,Switzerland,National Inventory,2011,For storage only,37,Pra Sautier,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26754,399858,Switzerland,National Inventory,2011,For storage only,37,Les Torneresses,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26755,399859,Switzerland,National Inventory,2011,For storage only,37,Rabou,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26756,399860,Switzerland,National Inventory,2011,For storage only,37,La Pontie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26757,399861,Switzerland,National Inventory,2011,For storage only,37,La Saussa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26758,399862,Switzerland,National Inventory,2011,For storage only,37,Les Planards,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26759,399863,Switzerland,National Inventory,2011,For storage only,37,Entremouille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26760,399864,Switzerland,National Inventory,2011,For storage only,37,Combe Robert,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26761,399865,Switzerland,National Inventory,2011,For storage only,37,Plan d'Essert,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26762,399866,Switzerland,National Inventory,2011,For storage only,37,Oberberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26763,399867,Switzerland,National Inventory,2011,For storage only,37,Les Chargiaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26764,399868,Switzerland,National Inventory,2011,For storage only,37,Le Flonzaley,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26765,399869,Switzerland,National Inventory,2011,For storage only,37,Huémoz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26766,399870,Switzerland,National Inventory,2011,For storage only,37,Genièvre,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26767,399871,Switzerland,National Inventory,2011,For storage only,37,La Combe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26768,399872,Switzerland,National Inventory,2011,For storage only,37,Gotale,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26769,399873,Switzerland,National Inventory,2011,For storage only,37,Ponty,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26770,399874,Switzerland,National Inventory,2011,For storage only,37,Les Afforets,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26771,399875,Switzerland,National Inventory,2011,For storage only,37,Eslex,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26772,399876,Switzerland,National Inventory,2011,For storage only,37,Crêt à Tavez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26773,399877,Switzerland,National Inventory,2011,For storage only,37,Ponty,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26774,399878,Switzerland,National Inventory,2011,For storage only,37,Ober Schwendi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26775,399879,Switzerland,National Inventory,2011,For storage only,37,Goy,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26776,399880,Switzerland,National Inventory,2011,For storage only,37,Saurin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26777,399881,Switzerland,National Inventory,2011,For storage only,37,Sur Champagne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26778,399882,Switzerland,National Inventory,2011,For storage only,37,Mont Tendre,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26779,399883,Switzerland,National Inventory,2011,For storage only,37,La Dôle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26780,399884,Switzerland,National Inventory,2011,For storage only,37,Brand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26781,399885,Switzerland,National Inventory,2011,For storage only,37,L'Arzière,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26782,399886,Switzerland,National Inventory,2011,For storage only,37,Creux d'Enfer,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26783,399887,Switzerland,National Inventory,2011,For storage only,37,Les Râpes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26784,399888,Switzerland,National Inventory,2011,For storage only,37,Chassagne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26785,399889,Switzerland,National Inventory,2011,For storage only,37,Pré de l'Haut Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26786,399890,Switzerland,National Inventory,2011,For storage only,37,Roche Perrause,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26787,399891,Switzerland,National Inventory,2011,For storage only,37,Le Noirmont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26788,399892,Switzerland,National Inventory,2011,For storage only,37,Col de Jaman,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26789,399893,Switzerland,National Inventory,2011,For storage only,37,Pré Magnin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26790,399894,Switzerland,National Inventory,2011,For storage only,37,Les Croisettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26791,399895,Switzerland,National Inventory,2011,For storage only,37,Sous la Roche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26792,399896,Switzerland,National Inventory,2011,For storage only,37,Petit Cunay,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26793,399897,Switzerland,National Inventory,2011,For storage only,37,Chalet Neuf du Mont Tendre,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26794,399898,Switzerland,National Inventory,2011,For storage only,37,Le Suchet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26795,399899,Switzerland,National Inventory,2011,For storage only,37,Dent de Vaulion,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26796,399900,Switzerland,National Inventory,2011,For storage only,37,Bois de Chênes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26797,399901,Switzerland,National Inventory,2011,For storage only,37,L'Etang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26798,399902,Switzerland,National Inventory,2011,For storage only,37,Rochey,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26799,399903,Switzerland,National Inventory,2011,For storage only,37,Plaine à Gallay,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26800,399904,Switzerland,National Inventory,2011,For storage only,37,Potraux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26801,399905,Switzerland,National Inventory,2011,For storage only,37,Sapelet Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26802,399906,Switzerland,National Inventory,2011,For storage only,37,Combe du Faoug,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26803,399907,Switzerland,National Inventory,2011,For storage only,37,Druchaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26804,399908,Switzerland,National Inventory,2011,For storage only,37,Berge de la Broye,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26805,399909,Switzerland,National Inventory,2011,For storage only,37,La Thomassette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26806,399910,Switzerland,National Inventory,2011,For storage only,37,Grand Essert du Vent,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26807,399911,Switzerland,National Inventory,2011,For storage only,37,Sonloup,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26808,399912,Switzerland,National Inventory,2011,For storage only,37,Le Planet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26809,399913,Switzerland,National Inventory,2011,For storage only,37,Bugnaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26810,399914,Switzerland,National Inventory,2011,For storage only,37,Chalet du Crêt à Chatron Vieux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26811,399915,Switzerland,National Inventory,2011,For storage only,37,Les Plainoz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26812,399916,Switzerland,National Inventory,2011,For storage only,37,Le Rosset,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26813,399917,Switzerland,National Inventory,2011,For storage only,37,La Fréterette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26814,399918,Switzerland,National Inventory,2011,For storage only,37,Vernant,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26815,399919,Switzerland,National Inventory,2011,For storage only,37,Sur le Mont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26816,399920,Switzerland,National Inventory,2011,For storage only,37,Les Envers,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26817,399921,Switzerland,National Inventory,2011,For storage only,37,La Sauge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26818,399922,Switzerland,National Inventory,2011,For storage only,37,Mondion,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26819,399923,Switzerland,National Inventory,2011,For storage only,37,Les Esserts,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26820,399924,Switzerland,National Inventory,2011,For storage only,37,Les Bioles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26821,399925,Switzerland,National Inventory,2011,For storage only,37,Communs du Haut des Prés,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26822,399926,Switzerland,National Inventory,2011,For storage only,37,Pré aux Biches,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26823,399927,Switzerland,National Inventory,2011,For storage only,37,Gare de Vallorbe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26824,399928,Switzerland,National Inventory,2011,For storage only,37,Gare de Vallorbe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26825,399929,Switzerland,National Inventory,2011,For storage only,37,Pralioux Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26826,399930,Switzerland,National Inventory,2011,For storage only,37,Champs Neufs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26827,399931,Switzerland,National Inventory,2011,For storage only,37,Lally,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26828,399932,Switzerland,National Inventory,2011,For storage only,37,Prés de Joux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26829,399933,Switzerland,National Inventory,2011,For storage only,37,Volaille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26830,399934,Switzerland,National Inventory,2011,For storage only,37,Le Crotet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26831,399935,Switzerland,National Inventory,2011,For storage only,37,Le Risel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26832,399936,Switzerland,National Inventory,2011,For storage only,37,Le Chaney,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26833,399937,Switzerland,National Inventory,2011,For storage only,37,Crêt de Grison,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26834,399938,Switzerland,National Inventory,2011,For storage only,37,La Dunanche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26835,399939,Switzerland,National Inventory,2011,For storage only,37,Vieille Morte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26836,399940,Switzerland,National Inventory,2011,For storage only,37,Les Orgères,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26837,399941,Switzerland,National Inventory,2011,For storage only,37,Pré de Denens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26838,399942,Switzerland,National Inventory,2011,For storage only,37,Font. Froide,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26839,399943,Switzerland,National Inventory,2011,For storage only,37,La Coche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26840,399944,Switzerland,National Inventory,2011,For storage only,37,Combe Aubert,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26841,399945,Switzerland,National Inventory,2011,For storage only,37,Les Maisons Doubles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26842,399946,Switzerland,National Inventory,2011,For storage only,37,La Biole,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26843,399947,Switzerland,National Inventory,2011,For storage only,37,Oberstein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26844,399948,Switzerland,National Inventory,2011,For storage only,37,Romainmôtier,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26845,399949,Switzerland,National Inventory,2011,For storage only,37,Pré Nouveau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26846,399950,Switzerland,National Inventory,2011,For storage only,37,Le Molaret,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26847,399951,Switzerland,National Inventory,2011,For storage only,37,Les Vidies,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26848,399952,Switzerland,National Inventory,2011,For storage only,37,Derrière Forel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26849,399953,Switzerland,National Inventory,2011,For storage only,37,Lucens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26850,399954,Switzerland,National Inventory,2011,For storage only,37,Les Baumettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26851,399955,Switzerland,National Inventory,2011,For storage only,37,L'Aouille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26852,399956,Switzerland,National Inventory,2011,For storage only,37,Breiten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26853,399957,Switzerland,National Inventory,2011,For storage only,37,Cht de la Dôle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26854,399958,Switzerland,National Inventory,2011,For storage only,37,Grands Esserts,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26855,399959,Switzerland,National Inventory,2011,For storage only,37,Pré de Ballens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26856,399960,Switzerland,National Inventory,2011,For storage only,37,Pralioux Dessous,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26857,399961,Switzerland,National Inventory,2011,For storage only,37,Bugnonet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26858,399962,Switzerland,National Inventory,2011,For storage only,37,Pré de Rolle,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26859,399963,Switzerland,National Inventory,2011,For storage only,37,Villas Prangins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26860,399964,Switzerland,National Inventory,2011,For storage only,37,Cht du Communal de l'Abbaye,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26861,399965,Switzerland,National Inventory,2011,For storage only,37,Arruffens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26862,399966,Switzerland,National Inventory,2011,For storage only,37,Arruffens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26863,399967,Switzerland,National Inventory,2011,For storage only,37,Prévondavaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26864,399968,Switzerland,National Inventory,2011,For storage only,37,St-Triphon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26865,399969,Switzerland,National Inventory,2011,For storage only,37,Motte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26866,399970,Switzerland,National Inventory,2011,For storage only,37,Pierre Sanche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26867,399971,Switzerland,National Inventory,2011,For storage only,37,Publoz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26868,399972,Switzerland,National Inventory,2011,For storage only,37,Les Auges,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26869,399973,Switzerland,National Inventory,2011,For storage only,37,Les Côtes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26870,399974,Switzerland,National Inventory,2011,For storage only,37,Chalet du Crêt à Chatron Neuf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26871,399975,Switzerland,National Inventory,2011,For storage only,37,Les Avants,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26872,399976,Switzerland,National Inventory,2011,For storage only,37,La Biole,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26873,399977,Switzerland,National Inventory,2011,For storage only,37,Volota,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26874,399978,Switzerland,National Inventory,2011,For storage only,37,Mont Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26875,399979,Switzerland,National Inventory,2011,For storage only,37,Montéla,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26876,399980,Switzerland,National Inventory,2011,For storage only,37,Petite Enne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26877,399981,Switzerland,National Inventory,2011,For storage only,37,L'Aiguillon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26878,399982,Switzerland,National Inventory,2011,For storage only,37,Le Levant,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26879,399983,Switzerland,National Inventory,2011,For storage only,37,Grand Puits,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26880,399984,Switzerland,National Inventory,2011,For storage only,37,Le Moulin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26881,399985,Switzerland,National Inventory,2011,For storage only,37,Le Sasselet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26882,399986,Switzerland,National Inventory,2011,For storage only,37,Combe au Roc,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26883,399987,Switzerland,National Inventory,2011,For storage only,37,Les Grassillières,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26884,399988,Switzerland,National Inventory,2011,For storage only,37,La Tiole,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26885,399989,Switzerland,National Inventory,2011,For storage only,37,Le Château de Ste-Croix,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26886,399990,Switzerland,National Inventory,2011,For storage only,37,Baule,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26887,399991,Switzerland,National Inventory,2011,For storage only,37,La Palud,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26888,399992,Switzerland,National Inventory,2011,For storage only,37,Vy de Vugelles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26889,399993,Switzerland,National Inventory,2011,For storage only,37,Le Signal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26890,399994,Switzerland,National Inventory,2011,For storage only,37,Les Vaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26891,399995,Switzerland,National Inventory,2011,For storage only,37,La Daille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26892,399996,Switzerland,National Inventory,2011,For storage only,37,Bucley,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26893,399997,Switzerland,National Inventory,2011,For storage only,37,La Rochette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26894,399998,Switzerland,National Inventory,2011,For storage only,37,Ruine Neutoggenburg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26895,399999,Switzerland,National Inventory,2011,For storage only,37,Les Chaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26896,400000,Switzerland,National Inventory,2011,For storage only,37,Les Bordes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26897,555512498,Switzerland,National Inventory,2011,For storage only,37,Sur Pévraz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26898,555512499,Switzerland,National Inventory,2011,For storage only,37,Moille Saulaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26899,555512500,Switzerland,National Inventory,2011,For storage only,37,La Vaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26900,555512501,Switzerland,National Inventory,2011,For storage only,37,Villard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26901,555512502,Switzerland,National Inventory,2011,For storage only,37,Haut de Baume,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26902,555512503,Switzerland,National Inventory,2011,For storage only,37,Les Rochettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26903,555512504,Switzerland,National Inventory,2011,For storage only,37,Valeyres-sous-Montagny,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26904,555512505,Switzerland,National Inventory,2011,For storage only,37,Le Marais,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26905,555512506,Switzerland,National Inventory,2011,For storage only,37,Le Guenéflin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26906,555512507,Switzerland,National Inventory,2011,For storage only,37,Les Piauliauses,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26907,555512508,Switzerland,National Inventory,2011,For storage only,37,Nidau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26908,555512509,Switzerland,National Inventory,2011,For storage only,37,Venchellez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26909,555512510,Switzerland,National Inventory,2011,For storage only,37,Salauroz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26910,555512511,Switzerland,National Inventory,2011,For storage only,37,Les Linardes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26911,555512512,Switzerland,National Inventory,2011,For storage only,37,Les Vernes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26912,555512513,Switzerland,National Inventory,2011,For storage only,37,Le Lanciau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26913,555512514,Switzerland,National Inventory,2011,For storage only,37,Fenil,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26914,555512515,Switzerland,National Inventory,2011,For storage only,37,Chemin d'Aubonne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26915,555512516,Switzerland,National Inventory,2011,For storage only,37,Les Vaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26916,555512517,Switzerland,National Inventory,2011,For storage only,37,Töbeliberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26917,555512518,Switzerland,National Inventory,2011,For storage only,37,La Vaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26918,555512519,Switzerland,National Inventory,2011,For storage only,37,Le Signal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26919,555512520,Switzerland,National Inventory,2011,For storage only,37,Le Mont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26920,555512521,Switzerland,National Inventory,2011,For storage only,37,Pré Defour,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26921,555512522,Switzerland,National Inventory,2011,For storage only,37,Sur Crause,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26922,555512523,Switzerland,National Inventory,2011,For storage only,37,Noches,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26923,555512524,Switzerland,National Inventory,2011,For storage only,37,Chamblon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26924,555512525,Switzerland,National Inventory,2011,For storage only,37,La Bahyse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26925,555512526,Switzerland,National Inventory,2011,For storage only,37,La Violette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26926,555512527,Switzerland,National Inventory,2011,For storage only,37,Maconnex,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26927,555512528,Switzerland,National Inventory,2011,For storage only,37,La Condemine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26928,555512529,Switzerland,National Inventory,2011,For storage only,37,La Scie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26929,555512530,Switzerland,National Inventory,2011,For storage only,37,Sur le Mont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26930,555512531,Switzerland,National Inventory,2011,For storage only,37,Chentres,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26931,555512532,Switzerland,National Inventory,2011,For storage only,37,La Pièce,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26932,555512533,Switzerland,National Inventory,2011,For storage only,37,Pré du Moulin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26933,555512534,Switzerland,National Inventory,2011,For storage only,37,Gottettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26934,555512535,Switzerland,National Inventory,2011,For storage only,37,Le Puisoir,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26935,555512536,Switzerland,National Inventory,2011,For storage only,37,Le Signal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26936,555512537,Switzerland,National Inventory,2011,For storage only,37,Sur Pévraz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26937,555512538,Switzerland,National Inventory,2011,For storage only,37,Les Eterpis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26938,555512539,Switzerland,National Inventory,2011,For storage only,37,Les Allévays,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26939,555512540,Switzerland,National Inventory,2011,For storage only,37,Vuichime,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26940,555512541,Switzerland,National Inventory,2011,For storage only,37,Ondallaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26941,555512542,Switzerland,National Inventory,2011,For storage only,37,Champ Courbe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26942,555512543,Switzerland,National Inventory,2011,For storage only,37,Bois Guyot,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26943,555512544,Switzerland,National Inventory,2011,For storage only,37,Les Guébettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26944,555512545,Switzerland,National Inventory,2011,For storage only,37,Mont Proveire,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26945,555512546,Switzerland,National Inventory,2011,For storage only,37,Colonie de St-Gervais,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26946,555512547,Switzerland,National Inventory,2011,For storage only,37,Sur Crause,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26947,555512548,Switzerland,National Inventory,2011,For storage only,37,Maconnex,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26948,555512549,Switzerland,National Inventory,2011,For storage only,37,Trembley,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26949,555512550,Switzerland,National Inventory,2011,For storage only,37,Champ Cherdon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26950,555512551,Switzerland,National Inventory,2011,For storage only,37,Les Bessonnes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26951,555512552,Switzerland,National Inventory,2011,For storage only,37,Bochat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26952,555512553,Switzerland,National Inventory,2011,For storage only,37,Les Râpes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26953,555512554,Switzerland,National Inventory,2011,For storage only,37,Beauregard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26954,555512555,Switzerland,National Inventory,2011,For storage only,37,Forel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26955,555512556,Switzerland,National Inventory,2011,For storage only,37,Volaille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26956,555512558,Switzerland,National Inventory,2011,For storage only,37,Grenive,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26957,555512559,Switzerland,National Inventory,2011,For storage only,37,Criblet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26958,555512560,Switzerland,National Inventory,2011,For storage only,37,Schnebelhorn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26959,555512561,Switzerland,National Inventory,2011,For storage only,37,Chât.,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26960,555512562,Switzerland,National Inventory,2011,For storage only,37,Plan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26961,555512563,Switzerland,National Inventory,2011,For storage only,37,Jugny,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26962,555512564,Switzerland,National Inventory,2011,For storage only,37,Maupas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26963,555512565,Switzerland,National Inventory,2011,For storage only,37,Oulens-sur-Lucens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26964,555512566,Switzerland,National Inventory,2011,For storage only,37,Givrins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26965,555512567,Switzerland,National Inventory,2011,For storage only,37,Chât. de la Motte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26966,555512568,Switzerland,National Inventory,2011,For storage only,37,Clin. La Joy,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26967,555512569,Switzerland,National Inventory,2011,For storage only,37,La Vaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26968,555512570,Switzerland,National Inventory,2011,For storage only,37,Les Ecaravez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26969,555512571,Switzerland,National Inventory,2011,For storage only,37,La Conversion,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26970,555512572,Switzerland,National Inventory,2011,For storage only,37,Moille Saulaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26971,555512573,Switzerland,National Inventory,2011,For storage only,37,Les Chaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26972,555512575,Switzerland,National Inventory,2011,For storage only,37,Sur Chaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26973,555512576,Switzerland,National Inventory,2011,For storage only,37,Vimont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26974,555512577,Switzerland,National Inventory,2011,For storage only,37,Brochatton,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26975,555512578,Switzerland,National Inventory,2011,For storage only,37,Pra Mallon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26976,555512579,Switzerland,National Inventory,2011,For storage only,37,Vogelberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26977,555512580,Switzerland,National Inventory,2011,For storage only,37,Champ de la Croix,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26978,555512581,Switzerland,National Inventory,2011,For storage only,37,Sautodoz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26979,555512582,Switzerland,National Inventory,2011,For storage only,37,Les Verraux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26980,555512583,Switzerland,National Inventory,2011,For storage only,37,Schwamm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26981,555512584,Switzerland,National Inventory,2011,For storage only,37,Bärengraben,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26982,555512585,Switzerland,National Inventory,2011,For storage only,37,Chellenspitz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26983,555512586,Switzerland,National Inventory,2011,For storage only,37,Schochen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26984,555512587,Switzerland,National Inventory,2011,For storage only,37,Flisalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26985,555512588,Switzerland,National Inventory,2011,For storage only,37,La Crêta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26986,555512589,Switzerland,National Inventory,2011,For storage only,37,La Daille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26987,555512590,Switzerland,National Inventory,2011,For storage only,37,Erschmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26988,555512591,Switzerland,National Inventory,2011,For storage only,37,Milachra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26989,555512592,Switzerland,National Inventory,2011,For storage only,37,Warbfliewildi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26990,555512593,Switzerland,National Inventory,2011,For storage only,37,Undri Senggalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26991,555512594,Switzerland,National Inventory,2011,For storage only,37,Meigge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26992,555512595,Switzerland,National Inventory,2011,For storage only,37,Eggachra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26993,555512596,Switzerland,National Inventory,2011,For storage only,37,Ulrichen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26994,555512597,Switzerland,National Inventory,2011,For storage only,37,Gluringen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26995,555512598,Switzerland,National Inventory,2011,For storage only,37,Gerynloibina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26996,555512599,Switzerland,National Inventory,2011,For storage only,37,Chruiterre,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26997,555512600,Switzerland,National Inventory,2011,For storage only,37,Riedhalte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26998,555512601,Switzerland,National Inventory,2011,For storage only,37,Turand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -26999,555512602,Switzerland,National Inventory,2011,For storage only,37,Rufinu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27000,555512603,Switzerland,National Inventory,2011,For storage only,37,Biela,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27001,555512604,Switzerland,National Inventory,2011,For storage only,37,Sädol,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27002,555512605,Switzerland,National Inventory,2011,For storage only,37,Gurru,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27003,555512606,Switzerland,National Inventory,2011,For storage only,37,Tännji,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27004,555512607,Switzerland,National Inventory,2011,For storage only,37,Mettje,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27005,555512608,Switzerland,National Inventory,2011,For storage only,37,Chalchofe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27006,555512609,Switzerland,National Inventory,2011,For storage only,37,Blatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27007,555512610,Switzerland,National Inventory,2011,For storage only,37,Chleis Bärgji,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27008,555512611,Switzerland,National Inventory,2011,For storage only,37,Lengmüra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27009,555512612,Switzerland,National Inventory,2011,For storage only,37,Chumma,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27010,555512613,Switzerland,National Inventory,2011,For storage only,37,Giblatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27011,555512614,Switzerland,National Inventory,2011,For storage only,37,Stadelgufer,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27012,555512615,Switzerland,National Inventory,2011,For storage only,37,Unneri Brich,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27013,555512616,Switzerland,National Inventory,2011,For storage only,37,Lipbode,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27014,555512617,Switzerland,National Inventory,2011,For storage only,37,Ritsche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27015,555512618,Switzerland,National Inventory,2011,For storage only,37,Chrizhubel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27016,555512619,Switzerland,National Inventory,2011,For storage only,37,Undri Bächi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27017,555512620,Switzerland,National Inventory,2011,For storage only,37,Zum Chriz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27018,555512621,Switzerland,National Inventory,2011,For storage only,37,Hochastler,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27019,555512622,Switzerland,National Inventory,2011,For storage only,37,Windegge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27020,555512623,Switzerland,National Inventory,2011,For storage only,37,Obri Hellela,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27021,555512624,Switzerland,National Inventory,2011,For storage only,37,Hasolfura,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27022,555512625,Switzerland,National Inventory,2011,For storage only,37,Riedbode,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27023,555512626,Switzerland,National Inventory,2011,For storage only,37,Widum,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27024,555512627,Switzerland,National Inventory,2011,For storage only,37,Kapittol,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27025,555512628,Switzerland,National Inventory,2011,For storage only,37,Märufälli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27026,555512629,Switzerland,National Inventory,2011,For storage only,37,Ze Stubjine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27027,555512630,Switzerland,National Inventory,2011,For storage only,37,Chumme,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27028,555512631,Switzerland,National Inventory,2011,For storage only,37,Ritzmad,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27029,555512632,Switzerland,National Inventory,2011,For storage only,37,Arbächnubel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27030,555512633,Switzerland,National Inventory,2011,For storage only,37,Chumma,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27031,555512634,Switzerland,National Inventory,2011,For storage only,37,Rämi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27032,555512635,Switzerland,National Inventory,2011,For storage only,37,Obri Matte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27033,555512636,Switzerland,National Inventory,2011,For storage only,37,Mattachra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27034,555512637,Switzerland,National Inventory,2011,For storage only,37,Leiggern,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27035,555512638,Switzerland,National Inventory,2011,For storage only,37,Obers Filet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27036,555512639,Switzerland,National Inventory,2011,For storage only,37,Vatseret,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27037,555512640,Switzerland,National Inventory,2011,For storage only,37,Châteaunie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27038,555512641,Switzerland,National Inventory,2011,For storage only,37,Planitschat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27039,555512642,Switzerland,National Inventory,2011,For storage only,37,Pfarschong,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27040,555512643,Switzerland,National Inventory,2011,For storage only,37,Mondralèche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27041,555512644,Switzerland,National Inventory,2011,For storage only,37,Alpage des Génissons,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27042,555512645,Switzerland,National Inventory,2011,For storage only,37,Trämel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27043,555512646,Switzerland,National Inventory,2011,For storage only,37,Hori,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27044,555512647,Switzerland,National Inventory,2011,For storage only,37,La Comalire,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27045,555512648,Switzerland,National Inventory,2011,For storage only,37,Les Caves,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27046,555512649,Switzerland,National Inventory,2011,For storage only,37,Groggrü,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27047,555512650,Switzerland,National Inventory,2011,For storage only,37,Biela,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27048,555512651,Switzerland,National Inventory,2011,For storage only,37,Russubrunnu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27049,555512652,Switzerland,National Inventory,2011,For storage only,37,Le Samarin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27050,555512653,Switzerland,National Inventory,2011,For storage only,37,Tschanderünu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27051,555512654,Switzerland,National Inventory,2011,For storage only,37,Ravouire,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27052,555512655,Switzerland,National Inventory,2011,For storage only,37,Chalais,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27053,555512656,Switzerland,National Inventory,2011,For storage only,37,Crête Longue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27054,555512657,Switzerland,National Inventory,2011,For storage only,37,Granges,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27055,555512658,Switzerland,National Inventory,2011,For storage only,37,Chelin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27056,555512659,Switzerland,National Inventory,2011,For storage only,37,Crête Longue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27057,555512660,Switzerland,National Inventory,2011,For storage only,37,Cochetta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27058,555512661,Switzerland,National Inventory,2011,For storage only,37,Chât. de la Soie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27059,555512662,Switzerland,National Inventory,2011,For storage only,37,Tourbillon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27060,555512663,Switzerland,National Inventory,2011,For storage only,37,Pramilon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27061,555512664,Switzerland,National Inventory,2011,For storage only,37,Mont d'Orge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27062,555512665,Switzerland,National Inventory,2011,For storage only,37,Saut du Chien,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27063,555512666,Switzerland,National Inventory,2011,For storage only,37,Plan des Biolles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27064,555512667,Switzerland,National Inventory,2011,For storage only,37,Les Crêtes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27065,555512668,Switzerland,National Inventory,2011,For storage only,37,Häüschbiele,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27066,555512669,Switzerland,National Inventory,2011,For storage only,37,Les Bioleys,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27067,555512670,Switzerland,National Inventory,2011,For storage only,37,Undri Läger,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27068,555512671,Switzerland,National Inventory,2011,For storage only,37,Siwibode,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27069,555512672,Switzerland,National Inventory,2011,For storage only,37,Chalchofe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27070,555512673,Switzerland,National Inventory,2011,For storage only,37,Mayens de Cotter,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27071,555512674,Switzerland,National Inventory,2011,For storage only,37,Gufer,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27072,555512675,Switzerland,National Inventory,2011,For storage only,37,Stn. Hannig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27073,555512676,Switzerland,National Inventory,2011,For storage only,37,Les Lachiores,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27074,555512677,Switzerland,National Inventory,2011,For storage only,37,Berter,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27075,555512678,Switzerland,National Inventory,2011,For storage only,37,Le Tsaté,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27076,555512679,Switzerland,National Inventory,2011,For storage only,37,Motau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27077,555512680,Switzerland,National Inventory,2011,For storage only,37,Bréona,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27078,555512681,Switzerland,National Inventory,2011,For storage only,37,Bréona,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27079,555512682,Switzerland,National Inventory,2011,For storage only,37,Les Lattes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27080,555512683,Switzerland,National Inventory,2011,For storage only,37,Mittelzug,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27081,555512684,Switzerland,National Inventory,2011,For storage only,37,Tschampenmatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27082,555512685,Switzerland,National Inventory,2011,For storage only,37,Obers Nussböüm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27083,555512686,Switzerland,National Inventory,2011,For storage only,37,Egga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27084,555512687,Switzerland,National Inventory,2011,For storage only,37,Bisterli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27085,555512688,Switzerland,National Inventory,2011,For storage only,37,Wyde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27086,555512689,Switzerland,National Inventory,2011,For storage only,37,Salzgäbchnubel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27087,555512690,Switzerland,National Inventory,2011,For storage only,37,Fure,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27088,555512691,Switzerland,National Inventory,2011,For storage only,37,Wasen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27089,555512692,Switzerland,National Inventory,2011,For storage only,37,Massegga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27090,555512693,Switzerland,National Inventory,2011,For storage only,37,Im undere Schitter,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27091,555512694,Switzerland,National Inventory,2011,For storage only,37,Baletscha,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27092,555512695,Switzerland,National Inventory,2011,For storage only,37,Walau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27093,555512696,Switzerland,National Inventory,2011,For storage only,37,Oberbann,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27094,555512697,Switzerland,National Inventory,2011,For storage only,37,Varen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27095,555512698,Switzerland,National Inventory,2011,For storage only,37,Tschachtela,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27096,555512699,Switzerland,National Inventory,2011,For storage only,37,Obloch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27097,555512700,Switzerland,National Inventory,2011,For storage only,37,Balme,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27098,555512701,Switzerland,National Inventory,2011,For storage only,37,Hubil,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27099,555512702,Switzerland,National Inventory,2011,For storage only,37,Dorbon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27100,555512703,Switzerland,National Inventory,2011,For storage only,37,Darnona d'en Haut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27101,555512704,Switzerland,National Inventory,2011,For storage only,37,Milljere,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27102,555512705,Switzerland,National Inventory,2011,For storage only,37,Seillon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27103,555512706,Switzerland,National Inventory,2011,For storage only,37,Les Condémines,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27104,555512707,Switzerland,National Inventory,2011,For storage only,37,Rnes du Chât. d'Ayent,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27105,555512708,Switzerland,National Inventory,2011,For storage only,37,Ste-Madeleine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27106,555512709,Switzerland,National Inventory,2011,For storage only,37,Stadtner Lüsis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27107,555512710,Switzerland,National Inventory,2011,For storage only,37,Argnoud d'en Haut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27108,555512711,Switzerland,National Inventory,2011,For storage only,37,Hannig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27109,555512712,Switzerland,National Inventory,2011,For storage only,37,Bode,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27110,555512713,Switzerland,National Inventory,2011,For storage only,37,Site,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27111,555512714,Switzerland,National Inventory,2011,For storage only,37,Grand'Fin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27112,555512715,Switzerland,National Inventory,2011,For storage only,37,Bina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27113,555512716,Switzerland,National Inventory,2011,For storage only,37,Oberi Site,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27114,555512717,Switzerland,National Inventory,2011,For storage only,37,Burgachra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27115,555512718,Switzerland,National Inventory,2011,For storage only,37,Breitplangg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27116,555512719,Switzerland,National Inventory,2011,For storage only,37,Hofmatte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27117,555512720,Switzerland,National Inventory,2011,For storage only,37,Coma,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27118,555512721,Switzerland,National Inventory,2011,For storage only,37,Wäng,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27119,555512722,Switzerland,National Inventory,2011,For storage only,37,Schüfla,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27120,555512723,Switzerland,National Inventory,2011,For storage only,37,Roti Flüe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27121,555512724,Switzerland,National Inventory,2011,For storage only,37,Bärgji,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27122,555512725,Switzerland,National Inventory,2011,For storage only,37,Ze Zimmeru,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27123,555512726,Switzerland,National Inventory,2011,For storage only,37,La Pirra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27124,555512727,Switzerland,National Inventory,2011,For storage only,37,Le Bioley,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27125,555512728,Switzerland,National Inventory,2011,For storage only,37,Chegelplatz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27126,555512729,Switzerland,National Inventory,2011,For storage only,37,Riedwäng,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27127,555512730,Switzerland,National Inventory,2011,For storage only,37,Falggelen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27128,555512731,Switzerland,National Inventory,2011,For storage only,37,La Crêta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27129,555512732,Switzerland,National Inventory,2011,For storage only,37,Hannig,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27130,555512733,Switzerland,National Inventory,2011,For storage only,37,Volovron,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27131,555512734,Switzerland,National Inventory,2011,For storage only,37,Les Flanmayens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27132,555512735,Switzerland,National Inventory,2011,For storage only,37,Les Crouyes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27133,555512736,Switzerland,National Inventory,2011,For storage only,37,La Niva,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27134,555512737,Switzerland,National Inventory,2011,For storage only,37,La Giette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27135,555512738,Switzerland,National Inventory,2011,For storage only,37,Les Chottes de l'Etoile,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27136,555512739,Switzerland,National Inventory,2011,For storage only,37,Les Haudères,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27137,555512740,Switzerland,National Inventory,2011,For storage only,37,Les Saulesses,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27138,555512741,Switzerland,National Inventory,2011,For storage only,37,Le Légeret,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27139,555512742,Switzerland,National Inventory,2011,For storage only,37,Zermettjen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27140,555512743,Switzerland,National Inventory,2011,For storage only,37,Wang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27141,555512744,Switzerland,National Inventory,2011,For storage only,37,Rosswang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27142,555512745,Switzerland,National Inventory,2011,For storage only,37,Furggegga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27143,555512746,Switzerland,National Inventory,2011,For storage only,37,Hermetje,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27144,555512747,Switzerland,National Inventory,2011,For storage only,37,Longeraie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27145,555512748,Switzerland,National Inventory,2011,For storage only,37,Corbassières,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27146,555512749,Switzerland,National Inventory,2011,For storage only,37,Longeraie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27147,555512750,Switzerland,National Inventory,2011,For storage only,37,La Ravoire,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27148,555512751,Switzerland,National Inventory,2011,For storage only,37,La Theuse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27149,555512752,Switzerland,National Inventory,2011,For storage only,37,Les Combes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27150,555512753,Switzerland,National Inventory,2011,For storage only,37,La Ravoire,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27151,555512754,Switzerland,National Inventory,2011,For storage only,37,Altes Hospiz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27152,555512755,Switzerland,National Inventory,2011,For storage only,37,Saillon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27153,555512756,Switzerland,National Inventory,2011,For storage only,37,Longeraie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27154,555512757,Switzerland,National Inventory,2011,For storage only,37,Le Vernet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27155,555512758,Switzerland,National Inventory,2011,For storage only,37,Cheller,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27156,555512759,Switzerland,National Inventory,2011,For storage only,37,Bord,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27157,555512760,Switzerland,National Inventory,2011,For storage only,37,Le Four,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27158,555512761,Switzerland,National Inventory,2011,For storage only,37,Chrizstafel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27159,555512762,Switzerland,National Inventory,2011,For storage only,37,Pirra de Ban,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27160,555512763,Switzerland,National Inventory,2011,For storage only,37,Dorbu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27161,555512764,Switzerland,National Inventory,2011,For storage only,37,Plan de l'Ortie,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27162,555512765,Switzerland,National Inventory,2011,For storage only,37,Isérables,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27163,555512766,Switzerland,National Inventory,2011,For storage only,37,Oberdeisch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27164,555512767,Switzerland,National Inventory,2011,For storage only,37,Montbas Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27165,555512768,Switzerland,National Inventory,2011,For storage only,37,Halden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27166,555512769,Switzerland,National Inventory,2011,For storage only,37,Engi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27167,555512770,Switzerland,National Inventory,2011,For storage only,37,Oberwald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27168,555512771,Switzerland,National Inventory,2011,For storage only,37,Obri Eist,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27169,555512772,Switzerland,National Inventory,2011,For storage only,37,Villette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27170,555512773,Switzerland,National Inventory,2011,For storage only,37,Mittleri Hellela,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27171,555512774,Switzerland,National Inventory,2011,For storage only,37,Sous Roux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27172,555512775,Switzerland,National Inventory,2011,For storage only,37,Wasserfallen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27173,555512776,Switzerland,National Inventory,2011,For storage only,37,Faldumalp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27174,555512777,Switzerland,National Inventory,2011,For storage only,37,Sengg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27175,555512778,Switzerland,National Inventory,2011,For storage only,37,Tignousa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27176,555512779,Switzerland,National Inventory,2011,For storage only,37,Rne du Chât. du Crest,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27177,555512780,Switzerland,National Inventory,2011,For storage only,37,Pâturage de Chanso,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27178,555512781,Switzerland,National Inventory,2011,For storage only,37,Alti Gadme,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27179,555512782,Switzerland,National Inventory,2011,For storage only,37,Les Salaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27180,555512783,Switzerland,National Inventory,2011,For storage only,37,Chanton de Reppaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27181,555512784,Switzerland,National Inventory,2011,For storage only,37,Trionna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27182,555512785,Switzerland,National Inventory,2011,For storage only,37,Hegi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27183,555512786,Switzerland,National Inventory,2011,For storage only,37,Montbas Dessus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27184,555512787,Switzerland,National Inventory,2011,For storage only,37,Wyssus Löüb,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27185,555512788,Switzerland,National Inventory,2011,For storage only,37,L'Infloria,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27186,555512789,Switzerland,National Inventory,2011,For storage only,37,Sex de Gru,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27187,555512790,Switzerland,National Inventory,2011,For storage only,37,Grund,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27188,555512791,Switzerland,National Inventory,2011,For storage only,37,Le Châtelard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27189,555512792,Switzerland,National Inventory,2011,For storage only,37,Combère,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27190,555512793,Switzerland,National Inventory,2011,For storage only,37,Ritti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27191,555512794,Switzerland,National Inventory,2011,For storage only,37,Alamont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27192,555512795,Switzerland,National Inventory,2011,For storage only,37,Oberu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27193,555512796,Switzerland,National Inventory,2011,For storage only,37,Meiggera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27194,555512797,Switzerland,National Inventory,2011,For storage only,37,Le Nez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27195,555512798,Switzerland,National Inventory,2011,For storage only,37,Pfaffmatte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27196,555512799,Switzerland,National Inventory,2011,For storage only,37,Sämsu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27197,555512800,Switzerland,National Inventory,2011,For storage only,37,Pro Paron,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27198,555512801,Switzerland,National Inventory,2011,For storage only,37,Guggina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27199,555512802,Switzerland,National Inventory,2011,For storage only,37,Les Cleives,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27200,555512803,Switzerland,National Inventory,2011,For storage only,37,Fiou,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27201,555512804,Switzerland,National Inventory,2011,For storage only,37,Les Troncs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27202,555512805,Switzerland,National Inventory,2011,For storage only,37,Lousine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27203,555512806,Switzerland,National Inventory,2011,For storage only,37,Les Cadraux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27204,555512807,Switzerland,National Inventory,2011,For storage only,37,L'Aiguille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27205,555512808,Switzerland,National Inventory,2011,For storage only,37,Buitonnaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27206,555512809,Switzerland,National Inventory,2011,For storage only,37,Hubelti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27207,555512810,Switzerland,National Inventory,2011,For storage only,37,Le Teret,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27208,555512811,Switzerland,National Inventory,2011,For storage only,37,Chamosentze,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27209,555512812,Switzerland,National Inventory,2011,For storage only,37,Hobiel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27210,555512813,Switzerland,National Inventory,2011,For storage only,37,Mayens de Pinsec,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27211,555512814,Switzerland,National Inventory,2011,For storage only,37,Prassurny,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27212,555512815,Switzerland,National Inventory,2011,For storage only,37,Erli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27213,555512816,Switzerland,National Inventory,2011,For storage only,37,Chamoille d'Orsières,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27214,555512817,Switzerland,National Inventory,2011,For storage only,37,Sal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27215,555512818,Switzerland,National Inventory,2011,For storage only,37,Heji,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27216,555512819,Switzerland,National Inventory,2011,For storage only,37,Cleusette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27217,555512820,Switzerland,National Inventory,2011,For storage only,37,Les Fourches,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27218,555512821,Switzerland,National Inventory,2011,For storage only,37,Les Foillêts,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27219,555512822,Switzerland,National Inventory,2011,For storage only,37,Lirschigrabu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27220,555512823,Switzerland,National Inventory,2011,For storage only,37,Balma,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27221,555512824,Switzerland,National Inventory,2011,For storage only,37,Les Creux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27222,555512825,Switzerland,National Inventory,2011,For storage only,37,Les Vernasses,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27223,555512826,Switzerland,National Inventory,2011,For storage only,37,Champlong,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27224,555512827,Switzerland,National Inventory,2011,For storage only,37,Holzerehischer,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27225,555512828,Switzerland,National Inventory,2011,For storage only,37,Unnerfäld,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27226,555512829,Switzerland,National Inventory,2011,For storage only,37,Wäng,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27227,555512830,Switzerland,National Inventory,2011,For storage only,37,Les Planches,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27228,555512831,Switzerland,National Inventory,2011,For storage only,37,Binnegga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27229,555512832,Switzerland,National Inventory,2011,For storage only,37,Commeire,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27230,555512833,Switzerland,National Inventory,2011,For storage only,37,Randonne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27231,555512834,Switzerland,National Inventory,2011,For storage only,37,Chälmatta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27232,555512835,Switzerland,National Inventory,2011,For storage only,37,Haselleen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27233,555512836,Switzerland,National Inventory,2011,For storage only,37,Et. Lombardon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27234,555512837,Switzerland,National Inventory,2011,For storage only,37,Sur le Mont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27235,555512838,Switzerland,National Inventory,2011,For storage only,37,Genièvre,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27236,555512839,Switzerland,National Inventory,2011,For storage only,37,Les Planches,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27237,555512840,Switzerland,National Inventory,2011,For storage only,37,Schwenni,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27238,555512841,Switzerland,National Inventory,2011,For storage only,37,Châtelard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27239,555512842,Switzerland,National Inventory,2011,For storage only,37,Neuau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27240,555512843,Switzerland,National Inventory,2011,For storage only,37,Les Evouettes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27241,555512844,Switzerland,National Inventory,2011,For storage only,37,Hanschbiel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27242,555512845,Switzerland,National Inventory,2011,For storage only,37,Chatzhalte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27243,555512846,Switzerland,National Inventory,2011,For storage only,37,Ponchet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27244,555512847,Switzerland,National Inventory,2011,For storage only,37,Tsanfleuron,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27245,555512848,Switzerland,National Inventory,2011,For storage only,37,La Crêta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27246,555512849,Switzerland,National Inventory,2011,For storage only,37,Niesch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27247,555512850,Switzerland,National Inventory,2011,For storage only,37,Levron,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27248,555512851,Switzerland,National Inventory,2011,For storage only,37,Rappe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27249,555512852,Switzerland,National Inventory,2011,For storage only,37,Fracette,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27250,555512853,Switzerland,National Inventory,2011,For storage only,37,Cheseule,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27251,555512854,Switzerland,National Inventory,2011,For storage only,37,Les Planches,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27252,555512855,Switzerland,National Inventory,2011,For storage only,37,La Couronne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27253,555512856,Switzerland,National Inventory,2011,For storage only,37,Les Follatères,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27254,555512857,Switzerland,National Inventory,2011,For storage only,37,Biolly,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27255,555512858,Switzerland,National Inventory,2011,For storage only,37,Planches de Mazembroz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27256,555512859,Switzerland,National Inventory,2011,For storage only,37,Le Tieudray,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27257,555512860,Switzerland,National Inventory,2011,For storage only,37,Les Pontis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27258,555512861,Switzerland,National Inventory,2011,For storage only,37,Les Clèves,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27259,555512862,Switzerland,National Inventory,2011,For storage only,37,Le Poyou,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27260,555512863,Switzerland,National Inventory,2011,For storage only,37,Charmex,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27261,555512864,Switzerland,National Inventory,2011,For storage only,37,Plex,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27262,555512865,Switzerland,National Inventory,2011,For storage only,37,Les Barmes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27263,555512866,Switzerland,National Inventory,2011,For storage only,37,Mayen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27264,555512867,Switzerland,National Inventory,2011,For storage only,37,Ayer,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27265,555512868,Switzerland,National Inventory,2011,For storage only,37,Palasuit,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27266,555512869,Switzerland,National Inventory,2011,For storage only,37,La Gîte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27267,555512870,Switzerland,National Inventory,2011,For storage only,37,Pont de Tsarevesse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27268,555512871,Switzerland,National Inventory,2011,For storage only,37,Rüfenen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27269,555512872,Switzerland,National Inventory,2011,For storage only,37,Saxé,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27270,555512873,Switzerland,National Inventory,2011,For storage only,37,Creux Devant,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27271,555512874,Switzerland,National Inventory,2011,For storage only,37,St-Maurice,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27272,555512875,Switzerland,National Inventory,2011,For storage only,37,Ormeaux,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27273,555512876,Switzerland,National Inventory,2011,For storage only,37,Usser Gornerli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27274,555512877,Switzerland,National Inventory,2011,For storage only,37,Liggi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27275,555512878,Switzerland,National Inventory,2011,For storage only,37,Sex Riond,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27276,555512879,Switzerland,National Inventory,2011,For storage only,37,Pas de Braye,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27277,555512880,Switzerland,National Inventory,2011,For storage only,37,Schipfe,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27278,555512881,Switzerland,National Inventory,2011,For storage only,37,Lovenex,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27279,555512882,Switzerland,National Inventory,2011,For storage only,37,Flesche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27280,555512883,Switzerland,National Inventory,2011,For storage only,37,Gappil,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27281,555512884,Switzerland,National Inventory,2011,For storage only,37,Les Planches,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27282,555512885,Switzerland,National Inventory,2011,For storage only,37,Blagghalde,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27283,555512886,Switzerland,National Inventory,2011,For storage only,37,Usser Gornerli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27284,555512887,Switzerland,National Inventory,2011,For storage only,37,Küeschtewasen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27285,555512888,Switzerland,National Inventory,2011,For storage only,37,Vordere Better,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27286,555512889,Switzerland,National Inventory,2011,For storage only,37,Better,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27287,555512890,Switzerland,National Inventory,2011,For storage only,37,Eidenen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27288,555512891,Switzerland,National Inventory,2011,For storage only,37,Stauberenfirst,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27289,555512892,Switzerland,National Inventory,2011,For storage only,37,Stelli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27290,555512893,Switzerland,National Inventory,2011,For storage only,37,Stoss,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27291,555512894,Switzerland,National Inventory,2011,For storage only,37,Saxer Heuberge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27292,555512895,Switzerland,National Inventory,2011,For storage only,37,Sonnenbüchel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27293,555512896,Switzerland,National Inventory,2011,For storage only,37,Planggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27294,555512897,Switzerland,National Inventory,2011,For storage only,37,Bergheim,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27295,555512898,Switzerland,National Inventory,2011,For storage only,37,Bovel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27296,555512899,Switzerland,National Inventory,2011,For storage only,37,Magutters,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27297,555512900,Switzerland,National Inventory,2011,For storage only,37,Hof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27298,555512901,Switzerland,National Inventory,2011,For storage only,37,Fuchsenwinkel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27299,555512902,Switzerland,National Inventory,2011,For storage only,37,Heidihof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27300,555512903,Switzerland,National Inventory,2011,For storage only,37,Böden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27301,555512904,Switzerland,National Inventory,2011,For storage only,37,Bofel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27302,555512905,Switzerland,National Inventory,2011,For storage only,37,Wineggrüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27303,555512906,Switzerland,National Inventory,2011,For storage only,37,Ruchenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27304,555512907,Switzerland,National Inventory,2011,For storage only,37,Ruchenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27305,555512908,Switzerland,National Inventory,2011,For storage only,37,Rohan-Schanze,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27306,555512909,Switzerland,National Inventory,2011,For storage only,37,Hinter Wals,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27307,555512910,Switzerland,National Inventory,2011,For storage only,37,Frettis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27308,555512911,Switzerland,National Inventory,2011,For storage only,37,Prafieb,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27309,555512912,Switzerland,National Inventory,2011,For storage only,37,Gissübel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27310,555512913,Switzerland,National Inventory,2011,For storage only,37,Unter Vajuoza,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27311,555512914,Switzerland,National Inventory,2011,For storage only,37,Alplichopf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27312,555512915,Switzerland,National Inventory,2011,For storage only,37,Jerätsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27313,555512916,Switzerland,National Inventory,2011,For storage only,37,Frättis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27314,555512917,Switzerland,National Inventory,2011,For storage only,37,Löser,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27315,555512918,Switzerland,National Inventory,2011,For storage only,37,Mateilis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27316,555512919,Switzerland,National Inventory,2011,For storage only,37,Padnal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27317,555512920,Switzerland,National Inventory,2011,For storage only,37,Pradardua,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27318,555512921,Switzerland,National Inventory,2011,For storage only,37,Untervaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27319,555512922,Switzerland,National Inventory,2011,For storage only,37,Michelis Bünten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27320,555512923,Switzerland,National Inventory,2011,For storage only,37,Parvaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27321,555512924,Switzerland,National Inventory,2011,For storage only,37,Vorholz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27322,555512925,Switzerland,National Inventory,2011,For storage only,37,Scalaripp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27323,555512926,Switzerland,National Inventory,2011,For storage only,37,Witenen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27324,555512927,Switzerland,National Inventory,2011,For storage only,37,Schwanten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27325,555512928,Switzerland,National Inventory,2011,For storage only,37,Böfel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27326,555512929,Switzerland,National Inventory,2011,For storage only,37,Unter Kunkels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27327,555512930,Switzerland,National Inventory,2011,For storage only,37,Ober Kunkels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27328,555512931,Switzerland,National Inventory,2011,For storage only,37,Lärchen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27329,555512932,Switzerland,National Inventory,2011,For storage only,37,Parfuoss,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27330,555512933,Switzerland,National Inventory,2011,For storage only,37,Dürrboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27331,555512934,Switzerland,National Inventory,2011,For storage only,37,Unter Fopp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27332,555512935,Switzerland,National Inventory,2011,For storage only,37,Ober Kunkels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27333,555512936,Switzerland,National Inventory,2011,For storage only,37,Ruestelplangg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27334,555512937,Switzerland,National Inventory,2011,For storage only,37,Lusbühel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27335,555512938,Switzerland,National Inventory,2011,For storage only,37,Mataun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27336,555512939,Switzerland,National Inventory,2011,For storage only,37,Girsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27337,555512940,Switzerland,National Inventory,2011,For storage only,37,Runggaleida,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27338,555512941,Switzerland,National Inventory,2011,For storage only,37,Laschein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27339,555512942,Switzerland,National Inventory,2011,For storage only,37,Muris Halden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27340,555512943,Switzerland,National Inventory,2011,For storage only,37,Munt Sut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27341,555512944,Switzerland,National Inventory,2011,For storage only,37,Monhämmerli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27342,555512945,Switzerland,National Inventory,2011,For storage only,37,Laubegg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27343,555512946,Switzerland,National Inventory,2011,For storage only,37,Tignuppa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27344,555512947,Switzerland,National Inventory,2011,For storage only,37,Schlag,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27345,555512948,Switzerland,National Inventory,2011,For storage only,37,Fatschis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27346,555512949,Switzerland,National Inventory,2011,For storage only,37,Pruls,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27347,555512950,Switzerland,National Inventory,2011,For storage only,37,Proclis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27348,555512951,Switzerland,National Inventory,2011,For storage only,37,Garadur,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27349,555512952,Switzerland,National Inventory,2011,For storage only,37,Tuma da Zislis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27350,555512953,Switzerland,National Inventory,2011,For storage only,37,Plez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27351,555512954,Switzerland,National Inventory,2011,For storage only,37,Giufs/ Juchs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27352,555512955,Switzerland,National Inventory,2011,For storage only,37,Hoch Chapf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27353,555512956,Switzerland,National Inventory,2011,For storage only,37,Gurgs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27354,555512957,Switzerland,National Inventory,2011,For storage only,37,Bot Danisch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27355,555512958,Switzerland,National Inventory,2011,For storage only,37,Tadi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27356,555512959,Switzerland,National Inventory,2011,For storage only,37,Tadi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27357,555512960,Switzerland,National Inventory,2011,For storage only,37,Caumas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27358,555512961,Switzerland,National Inventory,2011,For storage only,37,Bodmen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27359,555512962,Switzerland,National Inventory,2011,For storage only,37,Tuals,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27360,555512963,Switzerland,National Inventory,2011,For storage only,37,Alp Raguta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27361,555512964,Switzerland,National Inventory,2011,For storage only,37,Runcalatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27362,555512965,Switzerland,National Inventory,2011,For storage only,37,Tit,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27363,555512966,Switzerland,National Inventory,2011,For storage only,37,Plaun digls-Mats,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27364,555512967,Switzerland,National Inventory,2011,For storage only,37,Pandatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27365,555512968,Switzerland,National Inventory,2011,For storage only,37,Grossweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27366,555512969,Switzerland,National Inventory,2011,For storage only,37,Tarmuz Ault,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27367,555512970,Switzerland,National Inventory,2011,For storage only,37,Bles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27368,555512971,Switzerland,National Inventory,2011,For storage only,37,Fontaunas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27369,555512972,Switzerland,National Inventory,2011,For storage only,37,Ginedas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27370,555512973,Switzerland,National Inventory,2011,For storage only,37,Purz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27371,555512974,Switzerland,National Inventory,2011,For storage only,37,Vals,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27372,555512975,Switzerland,National Inventory,2011,For storage only,37,Hofen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27373,555512976,Switzerland,National Inventory,2011,For storage only,37,Pischleras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27374,555512977,Switzerland,National Inventory,2011,For storage only,37,Laschignas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27375,555512978,Switzerland,National Inventory,2011,For storage only,37,Gitei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27376,555512979,Switzerland,National Inventory,2011,For storage only,37,Bärenlöcher,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27377,555512980,Switzerland,National Inventory,2011,For storage only,37,Mulegns,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27378,555512981,Switzerland,National Inventory,2011,For storage only,37,Dutg da Fontanius,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27379,555512982,Switzerland,National Inventory,2011,For storage only,37,Meunt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27380,555512983,Switzerland,National Inventory,2011,For storage only,37,Suulöcher,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27381,555512984,Switzerland,National Inventory,2011,For storage only,37,Sogn Luregn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27382,555512985,Switzerland,National Inventory,2011,For storage only,37,Rüssel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27383,555512986,Switzerland,National Inventory,2011,For storage only,37,Dusch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27384,555512987,Switzerland,National Inventory,2011,For storage only,37,Bargia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27385,555512988,Switzerland,National Inventory,2011,For storage only,37,Schins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27386,555512989,Switzerland,National Inventory,2011,For storage only,37,Pardisla,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27387,555512990,Switzerland,National Inventory,2011,For storage only,37,Cresta Sut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27388,555512991,Switzerland,National Inventory,2011,For storage only,37,Quadra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27389,555512992,Switzerland,National Inventory,2011,For storage only,37,Schall Grond,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27390,555512993,Switzerland,National Inventory,2011,For storage only,37,Luvreu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27391,555512994,Switzerland,National Inventory,2011,For storage only,37,Schall Pign,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27392,555512995,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Rheinau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27393,555512996,Switzerland,National Inventory,2011,For storage only,37,Culm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27394,555512997,Switzerland,National Inventory,2011,For storage only,37,Auareda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27395,555512998,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Alberwald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27396,555512999,Switzerland,National Inventory,2011,For storage only,37,Talegnas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27397,555513000,Switzerland,National Inventory,2011,For storage only,37,Carvenna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27398,555513001,Switzerland,National Inventory,2011,For storage only,37,Rheindamm Melser Au,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27399,555513002,Switzerland,National Inventory,2011,For storage only,37,Scharans,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27400,555513003,Switzerland,National Inventory,2011,For storage only,37,Terziel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27401,555513004,Switzerland,National Inventory,2011,For storage only,37,Planggi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27402,555513005,Switzerland,National Inventory,2011,For storage only,37,Crap la Massa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27403,555513006,Switzerland,National Inventory,2011,For storage only,37,Duven,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27404,555513007,Switzerland,National Inventory,2011,For storage only,37,St. Agata,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27405,555513008,Switzerland,National Inventory,2011,For storage only,37,Schauenstein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27406,555513009,Switzerland,National Inventory,2011,For storage only,37,Schauenstein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27407,555513010,Switzerland,National Inventory,2011,For storage only,37,Prodavos Sura,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27408,555513011,Switzerland,National Inventory,2011,For storage only,37,Schären,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27409,555513012,Switzerland,National Inventory,2011,For storage only,37,Prin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27410,555513013,Switzerland,National Inventory,2011,For storage only,37,Bostg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27411,555513014,Switzerland,National Inventory,2011,For storage only,37,Tuliu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27412,555513015,Switzerland,National Inventory,2011,For storage only,37,Flantuosch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27413,555513016,Switzerland,National Inventory,2011,For storage only,37,Mangur,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27414,555513017,Switzerland,National Inventory,2011,For storage only,37,Gravas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27415,555513018,Switzerland,National Inventory,2011,For storage only,37,Plaun Rensch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27416,555513019,Switzerland,National Inventory,2011,For storage only,37,Prauet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27417,555513020,Switzerland,National Inventory,2011,For storage only,37,Balegna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27418,555513021,Switzerland,National Inventory,2011,For storage only,37,Fanels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27419,555513022,Switzerland,National Inventory,2011,For storage only,37,Sut Crestas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27420,555513023,Switzerland,National Inventory,2011,For storage only,37,Sursassa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27421,555513024,Switzerland,National Inventory,2011,For storage only,37,Doss Daint,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27422,555513025,Switzerland,National Inventory,2011,For storage only,37,Scurtaseu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27423,555513026,Switzerland,National Inventory,2011,For storage only,37,Ried,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27424,555513027,Switzerland,National Inventory,2011,For storage only,37,Muschgel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27425,555513028,Switzerland,National Inventory,2011,For storage only,37,Ried,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27426,555513029,Switzerland,National Inventory,2011,For storage only,37,Muschgel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27427,555513030,Switzerland,National Inventory,2011,For storage only,37,Unterberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27428,555513031,Switzerland,National Inventory,2011,For storage only,37,Tarnatler-Boden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27429,555513032,Switzerland,National Inventory,2011,For storage only,37,Plaunca-Rudera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27430,555513033,Switzerland,National Inventory,2011,For storage only,37,Er Davos,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27431,555513034,Switzerland,National Inventory,2011,For storage only,37,Bregl,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27432,555513035,Switzerland,National Inventory,2011,For storage only,37,Quadras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27433,555513036,Switzerland,National Inventory,2011,For storage only,37,Darpinaus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27434,555513037,Switzerland,National Inventory,2011,For storage only,37,Peiden Boger,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27435,555513038,Switzerland,National Inventory,2011,For storage only,37,Murtès,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27436,555513039,Switzerland,National Inventory,2011,For storage only,37,Muletg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27437,555513040,Switzerland,National Inventory,2011,For storage only,37,Genastga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27438,555513041,Switzerland,National Inventory,2011,For storage only,37,Palorgna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27439,555513042,Switzerland,National Inventory,2011,For storage only,37,Chischagel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27440,555513043,Switzerland,National Inventory,2011,For storage only,37,Genastga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27441,555513044,Switzerland,National Inventory,2011,For storage only,37,Planezzas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27442,555513045,Switzerland,National Inventory,2011,For storage only,37,Seglias,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27443,555513046,Switzerland,National Inventory,2011,For storage only,37,Prau da Cuolm,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27444,555513047,Switzerland,National Inventory,2011,For storage only,37,Schmitten,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27445,555513048,Switzerland,National Inventory,2011,For storage only,37,Waldmatte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27446,555513049,Switzerland,National Inventory,2011,For storage only,37,Tristel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27447,555513050,Switzerland,National Inventory,2011,For storage only,37,Foppa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27448,555513051,Switzerland,National Inventory,2011,For storage only,37,Valbella,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27449,555513052,Switzerland,National Inventory,2011,For storage only,37,Ri Dedent,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27450,555513053,Switzerland,National Inventory,2011,For storage only,37,Cavaionc,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27451,555513054,Switzerland,National Inventory,2011,For storage only,37,Mondan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27452,555513055,Switzerland,National Inventory,2011,For storage only,37,Strec,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27453,555513056,Switzerland,National Inventory,2011,For storage only,37,Miaddi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27454,555513057,Switzerland,National Inventory,2011,For storage only,37,Cant,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27455,555513058,Switzerland,National Inventory,2011,For storage only,37,Scalader,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27456,555513059,Switzerland,National Inventory,2011,For storage only,37,Fontana,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27457,555513060,Switzerland,National Inventory,2011,For storage only,37,Stabiüch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27458,555513061,Switzerland,National Inventory,2011,For storage only,37,Giova,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27459,555513062,Switzerland,National Inventory,2011,For storage only,37,Eilisch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27460,555513063,Switzerland,National Inventory,2011,For storage only,37,Cunggel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27461,555513064,Switzerland,National Inventory,2011,For storage only,37,Cunggel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27462,555513065,Switzerland,National Inventory,2011,For storage only,37,Arabühel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27463,555513066,Switzerland,National Inventory,2011,For storage only,37,Los,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27464,555513067,Switzerland,National Inventory,2011,For storage only,37,Sand,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27465,555513068,Switzerland,National Inventory,2011,For storage only,37,Matroz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27466,555513069,Switzerland,National Inventory,2011,For storage only,37,Plongga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27467,555513070,Switzerland,National Inventory,2011,For storage only,37,Maliens Sura,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27468,555513071,Switzerland,National Inventory,2011,For storage only,37,Maliens Sura,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27469,555513072,Switzerland,National Inventory,2011,For storage only,37,Munt Sura,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27470,555513073,Switzerland,National Inventory,2011,For storage only,37,Canals,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27471,555513074,Switzerland,National Inventory,2011,For storage only,37,Munt Sut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27472,555513075,Switzerland,National Inventory,2011,For storage only,37,Coma,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27473,555513076,Switzerland,National Inventory,2011,For storage only,37,Samuns,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27474,555513077,Switzerland,National Inventory,2011,For storage only,37,Tuora,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27475,555513078,Switzerland,National Inventory,2011,For storage only,37,Foppas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27476,555513079,Switzerland,National Inventory,2011,For storage only,37,Planezzas-Sut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27477,555513080,Switzerland,National Inventory,2011,For storage only,37,Planezzas-Sura,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27478,555513081,Switzerland,National Inventory,2011,For storage only,37,Vitg Dado,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27479,555513082,Switzerland,National Inventory,2011,For storage only,37,S.Bistgaun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27480,555513083,Switzerland,National Inventory,2011,For storage only,37,Scansins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27481,555513084,Switzerland,National Inventory,2011,For storage only,37,Sum Bual,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27482,555513085,Switzerland,National Inventory,2011,For storage only,37,Piz Plauncas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27483,555513086,Switzerland,National Inventory,2011,For storage only,37,Mulin da Pitasch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27484,555513087,Switzerland,National Inventory,2011,For storage only,37,Scuntras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27485,555513088,Switzerland,National Inventory,2011,For storage only,37,Runca,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27486,555513089,Switzerland,National Inventory,2011,For storage only,37,Trutg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27487,555513090,Switzerland,National Inventory,2011,For storage only,37,Scuntras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27488,555513091,Switzerland,National Inventory,2011,For storage only,37,Rudiala,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27489,555513092,Switzerland,National Inventory,2011,For storage only,37,Rampa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27490,555513093,Switzerland,National Inventory,2011,For storage only,37,Bual,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27491,555513094,Switzerland,National Inventory,2011,For storage only,37,Carrera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27492,555513095,Switzerland,National Inventory,2011,For storage only,37,Tschanabrels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27493,555513096,Switzerland,National Inventory,2011,For storage only,37,Divrein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27494,555513097,Switzerland,National Inventory,2011,For storage only,37,La Val,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27495,555513098,Switzerland,National Inventory,2011,For storage only,37,Tschamiu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27496,555513099,Switzerland,National Inventory,2011,For storage only,37,Son Gieri,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27497,555513100,Switzerland,National Inventory,2011,For storage only,37,Tgolda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27498,555513101,Switzerland,National Inventory,2011,For storage only,37,Trestel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27499,555513102,Switzerland,National Inventory,2011,For storage only,37,Brienz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27500,555513103,Switzerland,National Inventory,2011,For storage only,37,Cistiarna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27501,555513104,Switzerland,National Inventory,2011,For storage only,37,Pruel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27502,555513105,Switzerland,National Inventory,2011,For storage only,37,Tauf,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27503,555513106,Switzerland,National Inventory,2011,For storage only,37,Cresta Bernard,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27504,555513107,Switzerland,National Inventory,2011,For storage only,37,Mariaga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27505,555513108,Switzerland,National Inventory,2011,For storage only,37,Igl Plaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27506,555513109,Switzerland,National Inventory,2011,For storage only,37,Mons,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27507,555513110,Switzerland,National Inventory,2011,For storage only,37,Mittel-Feistenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27508,555513111,Switzerland,National Inventory,2011,For storage only,37,Montaschg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27509,555513112,Switzerland,National Inventory,2011,For storage only,37,Hasagada,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27510,555513113,Switzerland,National Inventory,2011,For storage only,37,Plansch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27511,555513114,Switzerland,National Inventory,2011,For storage only,37,Carnalta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27512,555513115,Switzerland,National Inventory,2011,For storage only,37,Camanna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27513,555513116,Switzerland,National Inventory,2011,For storage only,37,La Motta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27514,555513117,Switzerland,National Inventory,2011,For storage only,37,Boliv,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27515,555513118,Switzerland,National Inventory,2011,For storage only,37,Mont di Caute,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27516,555513119,Switzerland,National Inventory,2011,For storage only,37,Refontana,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27517,555513120,Switzerland,National Inventory,2011,For storage only,37,Monti di San Carlo,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27518,555513121,Switzerland,National Inventory,2011,For storage only,37,Bald,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27519,555513122,Switzerland,National Inventory,2011,For storage only,37,Mazzucan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27520,555513123,Switzerland,National Inventory,2011,For storage only,37,Monti di San Vittore,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27521,555513124,Switzerland,National Inventory,2011,For storage only,37,Hinter-Ochsenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27522,555513125,Switzerland,National Inventory,2011,For storage only,37,Saguein,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27523,555513126,Switzerland,National Inventory,2011,For storage only,37,Carstolia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27524,555513127,Switzerland,National Inventory,2011,For storage only,37,Marola,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27525,555513128,Switzerland,National Inventory,2011,For storage only,37,Hirzenboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27526,555513129,Switzerland,National Inventory,2011,For storage only,37,Studenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27527,555513130,Switzerland,National Inventory,2011,For storage only,37,Cyprianspitz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27528,555513131,Switzerland,National Inventory,2011,For storage only,37,Pardätsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27529,555513132,Switzerland,National Inventory,2011,For storage only,37,Berg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27530,555513133,Switzerland,National Inventory,2011,For storage only,37,La Rusna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27531,555513134,Switzerland,National Inventory,2011,For storage only,37,Schneca,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27532,555513135,Switzerland,National Inventory,2011,For storage only,37,Bargis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27533,555513136,Switzerland,National Inventory,2011,For storage only,37,Ruine Nieder Juvalta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27534,555513137,Switzerland,National Inventory,2011,For storage only,37,La Caglia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27535,555513138,Switzerland,National Inventory,2011,For storage only,37,Ogna da Pardiala,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27536,555513139,Switzerland,National Inventory,2011,For storage only,37,Plattas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27537,555513140,Switzerland,National Inventory,2011,For storage only,37,Clesalenz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27538,555513141,Switzerland,National Inventory,2011,For storage only,37,Schautschen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27539,555513142,Switzerland,National Inventory,2011,For storage only,37,Tgampi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27540,555513143,Switzerland,National Inventory,2011,For storage only,37,Vazerol,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27541,555513144,Switzerland,National Inventory,2011,For storage only,37,Curtins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27542,555513145,Switzerland,National Inventory,2011,For storage only,37,Pnez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27543,555513146,Switzerland,National Inventory,2011,For storage only,37,Plattas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27544,555513147,Switzerland,National Inventory,2011,For storage only,37,Rundandagls,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27545,555513148,Switzerland,National Inventory,2011,For storage only,37,God Davos,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27546,555513149,Switzerland,National Inventory,2011,For storage only,37,Studamatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27547,555513150,Switzerland,National Inventory,2011,For storage only,37,Nassel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27548,555513151,Switzerland,National Inventory,2011,For storage only,37,Soliva,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27549,555513152,Switzerland,National Inventory,2011,For storage only,37,Soladro,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27550,555513153,Switzerland,National Inventory,2011,For storage only,37,Selva,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27551,555513154,Switzerland,National Inventory,2011,For storage only,37,Giovegna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27552,555513155,Switzerland,National Inventory,2011,For storage only,37,Val de Posseira,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27553,555513156,Switzerland,National Inventory,2011,For storage only,37,Von,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27554,555513157,Switzerland,National Inventory,2011,For storage only,37,Tec Longh,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27555,555513158,Switzerland,National Inventory,2011,For storage only,37,Ronch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27556,555513159,Switzerland,National Inventory,2011,For storage only,37,Prepianto,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27557,555513160,Switzerland,National Inventory,2011,For storage only,37,Bellen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27558,555513161,Switzerland,National Inventory,2011,For storage only,37,Alva,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27559,555513162,Switzerland,National Inventory,2011,For storage only,37,Bregnon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27560,555513163,Switzerland,National Inventory,2011,For storage only,37,Mont di Prebonella,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27561,555513164,Switzerland,National Inventory,2011,For storage only,37,Mont di Rodas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27562,555513165,Switzerland,National Inventory,2011,For storage only,37,Guscha,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27563,555513166,Switzerland,National Inventory,2011,For storage only,37,Elltal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27564,555513167,Switzerland,National Inventory,2011,For storage only,37,Tanafreida,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27565,555513168,Switzerland,National Inventory,2011,For storage only,37,Caral,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27566,555513169,Switzerland,National Inventory,2011,For storage only,37,Patenn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27567,555513170,Switzerland,National Inventory,2011,For storage only,37,Stettli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27568,555513171,Switzerland,National Inventory,2011,For storage only,37,Pilidetta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27569,555513172,Switzerland,National Inventory,2011,For storage only,37,Sponda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27570,555513173,Switzerland,National Inventory,2011,For storage only,37,Mundaditsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27571,555513174,Switzerland,National Inventory,2011,For storage only,37,Munts,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27572,555513175,Switzerland,National Inventory,2011,For storage only,37,Munza,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27573,555513176,Switzerland,National Inventory,2011,For storage only,37,Saldos,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27574,555513177,Switzerland,National Inventory,2011,For storage only,37,Pferpfier,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27575,555513178,Switzerland,National Inventory,2011,For storage only,37,Eraplana,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27576,555513179,Switzerland,National Inventory,2011,For storage only,37,Valtscharnus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27577,555513180,Switzerland,National Inventory,2011,For storage only,37,Vallils,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27578,555513181,Switzerland,National Inventory,2011,For storage only,37,Oberberge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27579,555513182,Switzerland,National Inventory,2011,For storage only,37,Sässlina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27580,555513183,Switzerland,National Inventory,2011,For storage only,37,Funtanolja,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27581,555513184,Switzerland,National Inventory,2011,For storage only,37,Vadres,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27582,555513185,Switzerland,National Inventory,2011,For storage only,37,Prau Tumasch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27583,555513186,Switzerland,National Inventory,2011,For storage only,37,Saledis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27584,555513187,Switzerland,National Inventory,2011,For storage only,37,Halda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27585,555513188,Switzerland,National Inventory,2011,For storage only,37,Mittelkriz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27586,555513189,Switzerland,National Inventory,2011,For storage only,37,Muntatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27587,555513190,Switzerland,National Inventory,2011,For storage only,37,Conn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27588,555513191,Switzerland,National Inventory,2011,For storage only,37,Panadeglias,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27589,555513192,Switzerland,National Inventory,2011,For storage only,37,Vintgins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27590,555513193,Switzerland,National Inventory,2011,For storage only,37,Ogna da Pardiala,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27591,555513194,Switzerland,National Inventory,2011,For storage only,37,Serenera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27592,555513195,Switzerland,National Inventory,2011,For storage only,37,Baria dil Stefen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27593,555513196,Switzerland,National Inventory,2011,For storage only,37,Rüs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27594,555513197,Switzerland,National Inventory,2011,For storage only,37,Rüs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27595,555513198,Switzerland,National Inventory,2011,For storage only,37,Combras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27596,555513199,Switzerland,National Inventory,2011,For storage only,37,Glateren,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27597,555513200,Switzerland,National Inventory,2011,For storage only,37,Combras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27598,555513201,Switzerland,National Inventory,2011,For storage only,37,Paliu Mala,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27599,555513202,Switzerland,National Inventory,2011,For storage only,37,Plaun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27600,555513203,Switzerland,National Inventory,2011,For storage only,37,Baria Fritsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27601,555513204,Switzerland,National Inventory,2011,For storage only,37,Pardela,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27602,555513205,Switzerland,National Inventory,2011,For storage only,37,Auf dem Boden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27603,555513206,Switzerland,National Inventory,2011,For storage only,37,Chalberweid,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27604,555513207,Switzerland,National Inventory,2011,For storage only,37,Börter,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27605,555513208,Switzerland,National Inventory,2011,For storage only,37,Rofna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27606,555513209,Switzerland,National Inventory,2011,For storage only,37,Pargnung,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27607,555513210,Switzerland,National Inventory,2011,For storage only,37,Zalaint,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27608,555513211,Switzerland,National Inventory,2011,For storage only,37,Munter,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27609,555513212,Switzerland,National Inventory,2011,For storage only,37,Val Meltger,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27610,555513213,Switzerland,National Inventory,2011,For storage only,37,Baselgia Viglia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27611,555513214,Switzerland,National Inventory,2011,For storage only,37,Propissi Sot,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27612,555513215,Switzerland,National Inventory,2011,For storage only,37,Runchols,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27613,555513216,Switzerland,National Inventory,2011,For storage only,37,Inner Glas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27614,555513217,Switzerland,National Inventory,2011,For storage only,37,Davos Ses,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27615,555513218,Switzerland,National Inventory,2011,For storage only,37,Nutatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27616,555513219,Switzerland,National Inventory,2011,For storage only,37,Unter-Rongelen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27617,555513220,Switzerland,National Inventory,2011,For storage only,37,Plan Macov,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27618,555513221,Switzerland,National Inventory,2011,For storage only,37,Bualet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27619,555513222,Switzerland,National Inventory,2011,For storage only,37,Sunderas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27620,555513223,Switzerland,National Inventory,2011,For storage only,37,Prada,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27621,555513224,Switzerland,National Inventory,2011,For storage only,37,Sunderas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27622,555513225,Switzerland,National Inventory,2011,For storage only,37,Foppa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27623,555513226,Switzerland,National Inventory,2011,For storage only,37,Chaclauet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27624,555513227,Switzerland,National Inventory,2011,For storage only,37,Blais Torta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27625,555513228,Switzerland,National Inventory,2011,For storage only,37,Pro d'Men,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27626,555513229,Switzerland,National Inventory,2011,For storage only,37,Quedras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27627,555513230,Switzerland,National Inventory,2011,For storage only,37,Rischeili,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27628,555513231,Switzerland,National Inventory,2011,For storage only,37,Güngel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27629,555513232,Switzerland,National Inventory,2011,For storage only,37,Dri Tachli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27630,555513233,Switzerland,National Inventory,2011,For storage only,37,Peiler Bärga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27631,555513234,Switzerland,National Inventory,2011,For storage only,37,Glarr,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27632,555513235,Switzerland,National Inventory,2011,For storage only,37,Pradatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27633,555513236,Switzerland,National Inventory,2011,For storage only,37,Balmschli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27634,555513237,Switzerland,National Inventory,2011,For storage only,37,Balmatachli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27635,555513238,Switzerland,National Inventory,2011,For storage only,37,Giasum,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27636,555513239,Switzerland,National Inventory,2011,For storage only,37,Häxenblätz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27637,555513240,Switzerland,National Inventory,2011,For storage only,37,Druna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27638,555513241,Switzerland,National Inventory,2011,For storage only,37,Casella,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27639,555513242,Switzerland,National Inventory,2011,For storage only,37,Lottan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27640,555513243,Switzerland,National Inventory,2011,For storage only,37,Caccior,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27641,555513244,Switzerland,National Inventory,2011,For storage only,37,Tumbler,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27642,555513245,Switzerland,National Inventory,2011,For storage only,37,Caccior,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27643,555513246,Switzerland,National Inventory,2011,For storage only,37,Caccior,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27644,555513247,Switzerland,National Inventory,2011,For storage only,37,Luvadina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27645,555513248,Switzerland,National Inventory,2011,For storage only,37,Chlei Platte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27646,555513249,Switzerland,National Inventory,2011,For storage only,37,Cavadürli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27647,555513250,Switzerland,National Inventory,2011,For storage only,37,Eggli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27648,555513251,Switzerland,National Inventory,2011,For storage only,37,Vadursch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27649,555513252,Switzerland,National Inventory,2011,For storage only,37,Rüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27650,555513253,Switzerland,National Inventory,2011,For storage only,37,Hinter Cant,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27651,555513254,Switzerland,National Inventory,2011,For storage only,37,Ral,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27652,555513255,Switzerland,National Inventory,2011,For storage only,37,Stafels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27653,555513256,Switzerland,National Inventory,2011,For storage only,37,Casällas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27654,555513257,Switzerland,National Inventory,2011,For storage only,37,Terschieb,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27655,555513258,Switzerland,National Inventory,2011,For storage only,37,Ganschier,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27656,555513259,Switzerland,National Inventory,2011,For storage only,37,Eggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27657,555513260,Switzerland,National Inventory,2011,For storage only,37,Plonggis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27658,555513261,Switzerland,National Inventory,2011,For storage only,37,Foppa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27659,555513262,Switzerland,National Inventory,2011,For storage only,37,Börtji,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27660,555513263,Switzerland,National Inventory,2011,For storage only,37,Calondis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27661,555513264,Switzerland,National Inventory,2011,For storage only,37,Plausi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27662,555513265,Switzerland,National Inventory,2011,For storage only,37,Nuois,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27663,555513266,Switzerland,National Inventory,2011,For storage only,37,Börtji,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27664,555513267,Switzerland,National Inventory,2011,For storage only,37,Schluocht,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27665,555513268,Switzerland,National Inventory,2011,For storage only,37,Vadrain,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27666,555513269,Switzerland,National Inventory,2011,For storage only,37,Balsarom,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27667,555513270,Switzerland,National Inventory,2011,For storage only,37,Plan Grond,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27668,555513271,Switzerland,National Inventory,2011,For storage only,37,Pra San Peder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27669,555513272,Switzerland,National Inventory,2011,For storage only,37,Pradatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27670,555513273,Switzerland,National Inventory,2011,For storage only,37,Praschan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27671,555513274,Switzerland,National Inventory,2011,For storage only,37,Chantata,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27672,555513275,Switzerland,National Inventory,2011,For storage only,37,Tschardaina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27673,555513276,Switzerland,National Inventory,2011,For storage only,37,Naraus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27674,555513277,Switzerland,National Inventory,2011,For storage only,37,Marièrs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27675,555513278,Switzerland,National Inventory,2011,For storage only,37,Ault la Runca,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27676,555513279,Switzerland,National Inventory,2011,For storage only,37,Pra da Punt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27677,555513280,Switzerland,National Inventory,2011,For storage only,37,Buzzera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27678,555513281,Switzerland,National Inventory,2011,For storage only,37,Brinzeuls,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27679,555513282,Switzerland,National Inventory,2011,For storage only,37,Suronnas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27680,555513283,Switzerland,National Inventory,2011,For storage only,37,Furmièrs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27681,555513284,Switzerland,National Inventory,2011,For storage only,37,Viluorna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27682,555513285,Switzerland,National Inventory,2011,For storage only,37,Paternaus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27683,555513286,Switzerland,National Inventory,2011,For storage only,37,Flurius,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27684,555513287,Switzerland,National Inventory,2011,For storage only,37,Cavarschons,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27685,555513288,Switzerland,National Inventory,2011,For storage only,37,Chaposch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27686,555513289,Switzerland,National Inventory,2011,For storage only,37,Godplan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27687,555513290,Switzerland,National Inventory,2011,For storage only,37,Val Schameala,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27688,555513291,Switzerland,National Inventory,2011,For storage only,37,Rüti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27689,555513292,Switzerland,National Inventory,2011,For storage only,37,Spoina,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27690,555513293,Switzerland,National Inventory,2011,For storage only,37,Porclas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27691,555513294,Switzerland,National Inventory,2011,For storage only,37,Budagnis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27692,555513295,Switzerland,National Inventory,2011,For storage only,37,Porclas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27693,555513296,Switzerland,National Inventory,2011,For storage only,37,Creusen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27694,555513297,Switzerland,National Inventory,2011,For storage only,37,Got da Lareschs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27695,555513298,Switzerland,National Inventory,2011,For storage only,37,Bargias,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27696,555513299,Switzerland,National Inventory,2011,For storage only,37,Rain digl Lai,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27697,555513300,Switzerland,National Inventory,2011,For storage only,37,Careins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27698,555513301,Switzerland,National Inventory,2011,For storage only,37,Teuas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27699,555513302,Switzerland,National Inventory,2011,For storage only,37,Mos,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27700,555513303,Switzerland,National Inventory,2011,For storage only,37,Pas-cheus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27701,555513304,Switzerland,National Inventory,2011,For storage only,37,Solas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27702,555513305,Switzerland,National Inventory,2011,For storage only,37,Schlasung,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27703,555513306,Switzerland,National Inventory,2011,For storage only,37,Stavialas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27704,555513307,Switzerland,National Inventory,2011,For storage only,37,Summaplaunca,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27705,555513308,Switzerland,National Inventory,2011,For storage only,37,Mulegn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27706,555513309,Switzerland,National Inventory,2011,For storage only,37,Sendas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27707,555513310,Switzerland,National Inventory,2011,For storage only,37,Radons,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27708,555513311,Switzerland,National Inventory,2011,For storage only,37,Planezza,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27709,555513312,Switzerland,National Inventory,2011,For storage only,37,Pro digl Begl,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27710,555513313,Switzerland,National Inventory,2011,For storage only,37,Plan digl Bistgat,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27711,555513314,Switzerland,National Inventory,2011,For storage only,37,Dartschapetta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27712,555513315,Switzerland,National Inventory,2011,For storage only,37,Rungs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27713,555513316,Switzerland,National Inventory,2011,For storage only,37,Nesch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27714,555513317,Switzerland,National Inventory,2011,For storage only,37,Prada,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27715,555513318,Switzerland,National Inventory,2011,For storage only,37,Motta Vallac,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27716,555513319,Switzerland,National Inventory,2011,For storage only,37,Ratitsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27717,555513320,Switzerland,National Inventory,2011,For storage only,37,Salez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27718,555513321,Switzerland,National Inventory,2011,For storage only,37,Prada Setga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27719,555513322,Switzerland,National Inventory,2011,For storage only,37,Motta da Parpi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27720,555513323,Switzerland,National Inventory,2011,For storage only,37,Salaschigns,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27721,555513324,Switzerland,National Inventory,2011,For storage only,37,Glignia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27722,555513325,Switzerland,National Inventory,2011,For storage only,37,Pro Barlegn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27723,555513326,Switzerland,National Inventory,2011,For storage only,37,Crap Barnagn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27724,555513327,Switzerland,National Inventory,2011,For storage only,37,Fops,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27725,555513328,Switzerland,National Inventory,2011,For storage only,37,Pro Lung,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27726,555513329,Switzerland,National Inventory,2011,For storage only,37,Rudnal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27727,555513330,Switzerland,National Inventory,2011,For storage only,37,Monas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27728,555513331,Switzerland,National Inventory,2011,For storage only,37,Rudnal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27729,555513332,Switzerland,National Inventory,2011,For storage only,37,Senslas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27730,555513333,Switzerland,National Inventory,2011,For storage only,37,Crestas da Palpuogna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27731,555513334,Switzerland,National Inventory,2011,For storage only,37,Tinizong,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27732,555513335,Switzerland,National Inventory,2011,For storage only,37,Gioppa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27733,555513336,Switzerland,National Inventory,2011,For storage only,37,Fotgs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27734,555513337,Switzerland,National Inventory,2011,For storage only,37,Tgant Pensa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27735,555513338,Switzerland,National Inventory,2011,For storage only,37,Parseiras da Fotgs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27736,555513339,Switzerland,National Inventory,2011,For storage only,37,Proschen-Dafora,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27737,555513340,Switzerland,National Inventory,2011,For storage only,37,Foppa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27738,555513341,Switzerland,National Inventory,2011,For storage only,37,Tigia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27739,555513342,Switzerland,National Inventory,2011,For storage only,37,Tscheppa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27740,555513343,Switzerland,National Inventory,2011,For storage only,37,Amodeus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27741,555513344,Switzerland,National Inventory,2011,For storage only,37,Campsut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27742,555513345,Switzerland,National Inventory,2011,For storage only,37,Macsur,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27743,555513346,Switzerland,National Inventory,2011,For storage only,37,Macsur,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27744,555513347,Switzerland,National Inventory,2011,For storage only,37,Alp Platta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27745,555513348,Switzerland,National Inventory,2011,For storage only,37,Ramsa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27746,555513349,Switzerland,National Inventory,2011,For storage only,37,Höjahus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27747,555513350,Switzerland,National Inventory,2011,For storage only,37,Suossa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27748,555513351,Switzerland,National Inventory,2011,For storage only,37,Fiess,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27749,555513352,Switzerland,National Inventory,2011,For storage only,37,Caurga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27750,555513353,Switzerland,National Inventory,2011,For storage only,37,Ranghei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27751,555513354,Switzerland,National Inventory,2011,For storage only,37,Lagüzzon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27752,555513355,Switzerland,National Inventory,2011,For storage only,37,Gesc,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27753,555513356,Switzerland,National Inventory,2011,For storage only,37,Valineu,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27754,555513357,Switzerland,National Inventory,2011,For storage only,37,Sulegn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27755,555513358,Switzerland,National Inventory,2011,For storage only,37,Vündül,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27756,555513359,Switzerland,National Inventory,2011,For storage only,37,Pei,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27757,555513360,Switzerland,National Inventory,2011,For storage only,37,Zarera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27758,555513361,Switzerland,National Inventory,2011,For storage only,37,Splüga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27759,555513362,Switzerland,National Inventory,2011,For storage only,37,Dava,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27760,555513363,Switzerland,National Inventory,2011,For storage only,37,Prairol,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27761,555513364,Switzerland,National Inventory,2011,For storage only,37,Scelbez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27762,555513365,Switzerland,National Inventory,2011,For storage only,37,Stabli da Varuna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27763,555513366,Switzerland,National Inventory,2011,For storage only,37,Motta da Cadera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27764,555513367,Switzerland,National Inventory,2011,For storage only,37,Cansumé,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27765,555513368,Switzerland,National Inventory,2011,For storage only,37,Somdoss,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27766,555513369,Switzerland,National Inventory,2011,For storage only,37,Puntiglia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27767,555513370,Switzerland,National Inventory,2011,For storage only,37,La Crota,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27768,555513371,Switzerland,National Inventory,2011,For storage only,37,La Bosca,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27769,555513372,Switzerland,National Inventory,2011,For storage only,37,Funtania,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27770,555513373,Switzerland,National Inventory,2011,For storage only,37,Doss,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27771,555513374,Switzerland,National Inventory,2011,For storage only,37,Li Gargati,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27772,555513375,Switzerland,National Inventory,2011,For storage only,37,Barghi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27773,555513376,Switzerland,National Inventory,2011,For storage only,37,Scimingot,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27774,555513377,Switzerland,National Inventory,2011,For storage only,37,Suasar Dafö,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27775,555513378,Switzerland,National Inventory,2011,For storage only,37,San Romerio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27776,555513379,Switzerland,National Inventory,2011,For storage only,37,Predusasc,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27777,555513380,Switzerland,National Inventory,2011,For storage only,37,Li Murus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27778,555513381,Switzerland,National Inventory,2011,For storage only,37,Piaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27779,555513382,Switzerland,National Inventory,2011,For storage only,37,Stavaiun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27780,555513383,Switzerland,National Inventory,2011,For storage only,37,Zavena,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27781,555513384,Switzerland,National Inventory,2011,For storage only,37,Irola,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27782,555513385,Switzerland,National Inventory,2011,For storage only,37,Val Irola,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27783,555513386,Switzerland,National Inventory,2011,For storage only,37,Pradel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27784,555513387,Switzerland,National Inventory,2011,For storage only,37,Cavaione,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27785,555513388,Switzerland,National Inventory,2011,For storage only,37,Braga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27786,555513389,Switzerland,National Inventory,2011,For storage only,37,Scala,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27787,555513390,Switzerland,National Inventory,2011,For storage only,37,Mälbereggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27788,555513391,Switzerland,National Inventory,2011,For storage only,37,Aschüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27789,555513392,Switzerland,National Inventory,2011,For storage only,37,Hundmeder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27790,555513393,Switzerland,National Inventory,2011,For storage only,37,Meder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27791,555513394,Switzerland,National Inventory,2011,For storage only,37,Leidwang,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27792,555513395,Switzerland,National Inventory,2011,For storage only,37,Arensa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27793,555513396,Switzerland,National Inventory,2011,For storage only,37,Rafailis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27794,555513397,Switzerland,National Inventory,2011,For storage only,37,Ober Sattel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27795,555513398,Switzerland,National Inventory,2011,For storage only,37,Spadlen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27796,555513399,Switzerland,National Inventory,2011,For storage only,37,Sattelflue,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27797,555513400,Switzerland,National Inventory,2011,For storage only,37,Tanail,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27798,555513401,Switzerland,National Inventory,2011,For storage only,37,Palü,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27799,555513402,Switzerland,National Inventory,2011,For storage only,37,Palavrain,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27800,555513403,Switzerland,National Inventory,2011,For storage only,37,Fazadra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27801,555513404,Switzerland,National Inventory,2011,For storage only,37,Fraschmardin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27802,555513405,Switzerland,National Inventory,2011,For storage only,37,Schluocht,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27803,555513406,Switzerland,National Inventory,2011,For storage only,37,Cadieris,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27804,555513407,Switzerland,National Inventory,2011,For storage only,37,Plan da la Charbunera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27805,555513408,Switzerland,National Inventory,2011,For storage only,37,Truois,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27806,555513409,Switzerland,National Inventory,2011,For storage only,37,Murtaröl,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27807,555513410,Switzerland,National Inventory,2011,For storage only,37,Sulains,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27808,555513411,Switzerland,National Inventory,2011,For storage only,37,Suot Duas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27809,555513412,Switzerland,National Inventory,2011,For storage only,37,Prasarinun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27810,555513413,Switzerland,National Inventory,2011,For storage only,37,Charnadüras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27811,555513414,Switzerland,National Inventory,2011,For storage only,37,Arplan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27812,555513415,Switzerland,National Inventory,2011,For storage only,37,Carrera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27813,555513416,Switzerland,National Inventory,2011,For storage only,37,La Serra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27814,555513417,Switzerland,National Inventory,2011,For storage only,37,Bugnaidas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27815,555513418,Switzerland,National Inventory,2011,For storage only,37,Walihof,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27816,555513419,Switzerland,National Inventory,2011,For storage only,37,Hofer-Hütta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27817,555513420,Switzerland,National Inventory,2011,For storage only,37,Hütti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27818,555513421,Switzerland,National Inventory,2011,For storage only,37,Chadench,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27819,555513422,Switzerland,National Inventory,2011,For storage only,37,Suransun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27820,555513423,Switzerland,National Inventory,2011,For storage only,37,Samest Sut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27821,555513424,Switzerland,National Inventory,2011,For storage only,37,Closiras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27822,555513425,Switzerland,National Inventory,2011,For storage only,37,Sur la Tourne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27823,555513426,Switzerland,National Inventory,2011,For storage only,37,Pradatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27824,555513427,Switzerland,National Inventory,2011,For storage only,37,God Susauna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27825,555513428,Switzerland,National Inventory,2011,For storage only,37,Pro da Peadra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27826,555513429,Switzerland,National Inventory,2011,For storage only,37,Bächer-Hütta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27827,555513430,Switzerland,National Inventory,2011,For storage only,37,Cultira Dafora,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27828,555513431,Switzerland,National Inventory,2011,For storage only,37,Les Granges,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27829,555513432,Switzerland,National Inventory,2011,For storage only,37,Runtgols,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27830,555513433,Switzerland,National Inventory,2011,For storage only,37,Rofna,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27831,555513434,Switzerland,National Inventory,2011,For storage only,37,Tschessa Granda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27832,555513435,Switzerland,National Inventory,2011,For storage only,37,Gasslitobel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27833,555513436,Switzerland,National Inventory,2011,For storage only,37,Missezon,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27834,555513437,Switzerland,National Inventory,2011,For storage only,37,Val digl Artegl,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27835,555513438,Switzerland,National Inventory,2011,For storage only,37,Le Moulin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27836,555513439,Switzerland,National Inventory,2011,For storage only,37,Caritsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27837,555513440,Switzerland,National Inventory,2011,For storage only,37,Boda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27838,555513441,Switzerland,National Inventory,2011,For storage only,37,Peidra Grossa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27839,555513442,Switzerland,National Inventory,2011,For storage only,37,Proschimun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27840,555513443,Switzerland,National Inventory,2011,For storage only,37,Malval,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27841,555513444,Switzerland,National Inventory,2011,For storage only,37,Höfli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27842,555513445,Switzerland,National Inventory,2011,For storage only,37,Chalchera,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27843,555513446,Switzerland,National Inventory,2011,For storage only,37,Drosa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27844,555513447,Switzerland,National Inventory,2011,For storage only,37,San Gian,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27845,555513448,Switzerland,National Inventory,2011,For storage only,37,Planca,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27846,555513449,Switzerland,National Inventory,2011,For storage only,37,Blais Leda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27847,555513450,Switzerland,National Inventory,2011,For storage only,37,Giondas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27848,555513451,Switzerland,National Inventory,2011,For storage only,37,Mut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27849,555513452,Switzerland,National Inventory,2011,For storage only,37,Les Îles,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27850,555513453,Switzerland,National Inventory,2011,For storage only,37,Stavel Veder,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27851,555513454,Switzerland,National Inventory,2011,For storage only,37,Anzuatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27852,555513455,Switzerland,National Inventory,2011,For storage only,37,Pradatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27853,555513456,Switzerland,National Inventory,2011,For storage only,37,Albana,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27854,555513457,Switzerland,National Inventory,2011,For storage only,37,Campsut,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27855,555513458,Switzerland,National Inventory,2011,For storage only,37,Sur Ragn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27856,555513459,Switzerland,National Inventory,2011,For storage only,37,Alp Platta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27857,555513460,Switzerland,National Inventory,2011,For storage only,37,Albanella,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27858,555513461,Switzerland,National Inventory,2011,For storage only,37,Albanatscha,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27859,555513462,Switzerland,National Inventory,2011,For storage only,37,Les Baillets,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27860,555513463,Switzerland,National Inventory,2011,For storage only,37,Stettlialpa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27861,555513464,Switzerland,National Inventory,2011,For storage only,37,Zurstabüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27862,555513465,Switzerland,National Inventory,2011,For storage only,37,Zurstabüel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27863,555513466,Switzerland,National Inventory,2011,For storage only,37,Chastè,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27864,555513467,Switzerland,National Inventory,2011,For storage only,37,Zocca,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27865,555513468,Switzerland,National Inventory,2011,For storage only,37,Muotta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27866,555513469,Switzerland,National Inventory,2011,For storage only,37,Buels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27867,555513470,Switzerland,National Inventory,2011,For storage only,37,La Taiäda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27868,555513471,Switzerland,National Inventory,2011,For storage only,37,Bleisacia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27869,555513472,Switzerland,National Inventory,2011,For storage only,37,Lan Pensa da Rutic,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27870,555513473,Switzerland,National Inventory,2011,For storage only,37,Plaz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27871,555513474,Switzerland,National Inventory,2011,For storage only,37,Nalghen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27872,555513475,Switzerland,National Inventory,2011,For storage only,37,Palza,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27873,555513476,Switzerland,National Inventory,2011,For storage only,37,Dascciun,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27874,555513477,Switzerland,National Inventory,2011,For storage only,37,Castelmur,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27875,555513478,Switzerland,National Inventory,2011,For storage only,37,Petite Afrique,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27876,555513479,Switzerland,National Inventory,2011,For storage only,37,Flin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27877,555513480,Switzerland,National Inventory,2011,For storage only,37,Brentan,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27878,555513481,Switzerland,National Inventory,2011,For storage only,37,Motta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27879,555513482,Switzerland,National Inventory,2011,For storage only,37,Casnac,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27880,555513483,Switzerland,National Inventory,2011,For storage only,37,Pezza d'Munt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27881,555513484,Switzerland,National Inventory,2011,For storage only,37,Urezza da Tea,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27882,555513485,Switzerland,National Inventory,2011,For storage only,37,Vanal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27883,555513486,Switzerland,National Inventory,2011,For storage only,37,Salaaser-Wisen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27884,555513487,Switzerland,National Inventory,2011,For storage only,37,Schlüecht,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27885,555513488,Switzerland,National Inventory,2011,For storage only,37,Mot Salatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27886,555513489,Switzerland,National Inventory,2011,For storage only,37,Börtermad,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27887,555513490,Switzerland,National Inventory,2011,For storage only,37,Urezza Lischa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27888,555513491,Switzerland,National Inventory,2011,For storage only,37,La Forge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27889,555513492,Switzerland,National Inventory,2011,For storage only,37,Mezpra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27890,555513493,Switzerland,National Inventory,2011,For storage only,37,Ravaischa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27891,555513494,Switzerland,National Inventory,2011,For storage only,37,Holzboden,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27892,555513495,Switzerland,National Inventory,2011,For storage only,37,Sunnistafel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27893,555513496,Switzerland,National Inventory,2011,For storage only,37,Compradont,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27894,555513497,Switzerland,National Inventory,2011,For storage only,37,Schluchen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27895,555513498,Switzerland,National Inventory,2011,For storage only,37,Fedji,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27896,555513499,Switzerland,National Inventory,2011,For storage only,37,Les Melottes,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27897,555513500,Switzerland,National Inventory,2011,For storage only,37,Oberen Gadenstätt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27898,555513501,Switzerland,National Inventory,2011,For storage only,37,Moulin de Vert,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27899,555513502,Switzerland,National Inventory,2011,For storage only,37,Ronggaletz,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27900,555513503,Switzerland,National Inventory,2011,For storage only,37,Oberberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27901,555513504,Switzerland,National Inventory,2011,For storage only,37,Clavamartsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27902,555513505,Switzerland,National Inventory,2011,For storage only,37,Malfeis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27903,555513506,Switzerland,National Inventory,2011,For storage only,37,Bunsarsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27904,555513507,Switzerland,National Inventory,2011,For storage only,37,Tschuggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27905,555513508,Switzerland,National Inventory,2011,For storage only,37,Unter-Planggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27906,555513509,Switzerland,National Inventory,2011,For storage only,37,Flersch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27907,555513510,Switzerland,National Inventory,2011,For storage only,37,Tschägi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27908,555513511,Switzerland,National Inventory,2011,For storage only,37,Saloms,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27909,555513512,Switzerland,National Inventory,2011,For storage only,37,Crusch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27910,555513513,Switzerland,National Inventory,2011,For storage only,37,Pardätsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27911,555513514,Switzerland,National Inventory,2011,For storage only,37,Spinai,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27912,555513515,Switzerland,National Inventory,2011,For storage only,37,Zug,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27913,555513516,Switzerland,National Inventory,2011,For storage only,37,La Coulouvrière,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27914,555513517,Switzerland,National Inventory,2011,For storage only,37,Am Berg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27915,555513518,Switzerland,National Inventory,2011,For storage only,37,Mot,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27916,555513519,Switzerland,National Inventory,2011,For storage only,37,Magnüda Sura,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27917,555513520,Switzerland,National Inventory,2011,For storage only,37,Racleret,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27918,555513521,Switzerland,National Inventory,2011,For storage only,37,Palü,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27919,555513522,Switzerland,National Inventory,2011,For storage only,37,God Sinestra,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27920,555513523,Switzerland,National Inventory,2011,For storage only,37,Verbois,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27921,555513524,Switzerland,National Inventory,2011,For storage only,37,Ruina Tschanüff,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27922,555513525,Switzerland,National Inventory,2011,For storage only,37,Sous la Côte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27923,555513526,Switzerland,National Inventory,2011,For storage only,37,Champ Coquet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27924,555513527,Switzerland,National Inventory,2011,For storage only,37,Muntnaus,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27925,555513528,Switzerland,National Inventory,2011,For storage only,37,Funtanivas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27926,555513529,Switzerland,National Inventory,2011,For storage only,37,Crêt Boule,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27927,555513530,Switzerland,National Inventory,2011,For storage only,37,Ruinatscha,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27928,555513531,Switzerland,National Inventory,2011,For storage only,37,Chastè Steinsberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27929,555513532,Switzerland,National Inventory,2011,For storage only,37,Tarasp,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27930,555513533,Switzerland,National Inventory,2011,For storage only,37,Crêt de Mandole,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27931,555513534,Switzerland,National Inventory,2011,For storage only,37,Tulaida,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27932,555513535,Switzerland,National Inventory,2011,For storage only,37,Teas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27933,555513536,Switzerland,National Inventory,2011,For storage only,37,Moulin de la Ratte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27934,555513537,Switzerland,National Inventory,2011,For storage only,37,Urezzas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27935,555513538,Switzerland,National Inventory,2011,For storage only,37,Valdez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27936,555513539,Switzerland,National Inventory,2011,For storage only,37,Flanoua,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27937,555513540,Switzerland,National Inventory,2011,For storage only,37,Patnal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27938,555513541,Switzerland,National Inventory,2011,For storage only,37,Lavuors,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27939,555513542,Switzerland,National Inventory,2011,For storage only,37,Brequanne,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27940,555513543,Switzerland,National Inventory,2011,For storage only,37,Muraraida,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27941,555513544,Switzerland,National Inventory,2011,For storage only,37,Lavin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27942,555513545,Switzerland,National Inventory,2011,For storage only,37,Nusch Dadaint,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27943,555513546,Switzerland,National Inventory,2011,For storage only,37,Calörtsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27944,555513547,Switzerland,National Inventory,2011,For storage only,37,Stn Sagliains,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27945,555513548,Switzerland,National Inventory,2011,For storage only,37,Prada Bella,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27946,555513549,Switzerland,National Inventory,2011,For storage only,37,Padnal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27947,555513550,Switzerland,National Inventory,2011,For storage only,37,Chaschinas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27948,555513551,Switzerland,National Inventory,2011,For storage only,37,Ils Chomps,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27949,555513552,Switzerland,National Inventory,2011,For storage only,37,Plattas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27950,555513553,Switzerland,National Inventory,2011,For storage only,37,Gondas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27951,555513554,Switzerland,National Inventory,2011,For storage only,37,Umblin,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27952,555513555,Switzerland,National Inventory,2011,For storage only,37,Muottas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27953,555513556,Switzerland,National Inventory,2011,For storage only,37,Muottas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27954,555513557,Switzerland,National Inventory,2011,For storage only,37,Courtille,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27955,555513558,Switzerland,National Inventory,2011,For storage only,37,Prada d'Urezza,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27956,555513559,Switzerland,National Inventory,2011,For storage only,37,Bord,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27957,555513560,Switzerland,National Inventory,2011,For storage only,37,Bruschgaläschg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27958,555513561,Switzerland,National Inventory,2011,For storage only,37,Muttner Berge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27959,555513562,Switzerland,National Inventory,2011,For storage only,37,Bois de la Pesse,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27960,555513563,Switzerland,National Inventory,2011,For storage only,37,Spedlas-Vduogn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27961,555513564,Switzerland,National Inventory,2011,For storage only,37,Breitenberg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27962,555513565,Switzerland,National Inventory,2011,For storage only,37,Samest Sura,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27963,555513566,Switzerland,National Inventory,2011,For storage only,37,Badér,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27964,555513567,Switzerland,National Inventory,2011,For storage only,37,Girs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27965,555513568,Switzerland,National Inventory,2011,For storage only,37,Dasch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27966,555513569,Switzerland,National Inventory,2011,For storage only,37,Carols,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27967,555513570,Switzerland,National Inventory,2011,For storage only,37,Davos Nodras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27968,555513571,Switzerland,National Inventory,2011,For storage only,37,Pardatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27969,555513572,Switzerland,National Inventory,2011,For storage only,37,Bual,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27970,555513573,Switzerland,National Inventory,2011,For storage only,37,Zanal,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27971,555513574,Switzerland,National Inventory,2011,For storage only,37,Chantatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27972,555513575,Switzerland,National Inventory,2011,For storage only,37,Alp da Stierva,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27973,555513576,Switzerland,National Inventory,2011,For storage only,37,Mulagn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27974,555513577,Switzerland,National Inventory,2011,For storage only,37,Spegna Lunga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27975,555513578,Switzerland,National Inventory,2011,For storage only,37,God Nandet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27976,555513579,Switzerland,National Inventory,2011,For storage only,37,Valvins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27977,555513580,Switzerland,National Inventory,2011,For storage only,37,Teals,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27978,555513581,Switzerland,National Inventory,2011,For storage only,37,Giavaragns,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27979,555513582,Switzerland,National Inventory,2011,For storage only,37,Tgoms,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27980,555513583,Switzerland,National Inventory,2011,For storage only,37,Salvez,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27981,555513584,Switzerland,National Inventory,2011,For storage only,37,Valleglia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27982,555513585,Switzerland,National Inventory,2011,For storage only,37,Cultiras,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27983,555513586,Switzerland,National Inventory,2011,For storage only,37,Bot Git,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27984,555513587,Switzerland,National Inventory,2011,For storage only,37,Donath,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27985,555513588,Switzerland,National Inventory,2011,For storage only,37,Scarvens,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27986,555513589,Switzerland,National Inventory,2011,For storage only,37,Platta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27987,555513590,Switzerland,National Inventory,2011,For storage only,37,Casti,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27988,555513591,Switzerland,National Inventory,2011,For storage only,37,Cuolm da Pignia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27989,555513592,Switzerland,National Inventory,2011,For storage only,37,Promischur,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27990,555513593,Switzerland,National Inventory,2011,For storage only,37,Crasta,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27991,555513594,Switzerland,National Inventory,2011,For storage only,37,Promigilli,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27992,555513595,Switzerland,National Inventory,2011,For storage only,37,Quadrellas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27993,555513596,Switzerland,National Inventory,2011,For storage only,37,Spinas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27994,555513597,Switzerland,National Inventory,2011,For storage only,37,Gravulesch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27995,555513598,Switzerland,National Inventory,2011,For storage only,37,Seeberge,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27996,555513599,Switzerland,National Inventory,2011,For storage only,37,Igl Tufs,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27997,555513600,Switzerland,National Inventory,2011,For storage only,37,Gadastatt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27998,555513601,Switzerland,National Inventory,2011,For storage only,37,Unter den Bender,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -27999,555513602,Switzerland,National Inventory,2011,For storage only,37,Drigadma,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28000,555513603,Switzerland,National Inventory,2011,For storage only,37,Eggschi,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28001,555513604,Switzerland,National Inventory,2011,For storage only,37,Mittelegga,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28002,555513605,Switzerland,National Inventory,2011,For storage only,37,Bruucheggen,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28003,555513606,Switzerland,National Inventory,2011,For storage only,37,Brunst,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28004,555513607,Switzerland,National Inventory,2011,For storage only,37,Treuabärg,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28005,555513608,Switzerland,National Inventory,2011,For storage only,37,Cristolais,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28006,555513609,Switzerland,National Inventory,2011,For storage only,37,Pale Radonda,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28007,555513610,Switzerland,National Inventory,2011,For storage only,37,Crap Marsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28008,555513611,Switzerland,National Inventory,2011,For storage only,37,Saruels,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28009,555513612,Switzerland,National Inventory,2011,For storage only,37,Tgacrest,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28010,555513613,Switzerland,National Inventory,2011,For storage only,37,Botta Sassella,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28011,555513614,Switzerland,National Inventory,2011,For storage only,37,Foppa,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28012,555513615,Switzerland,National Inventory,2011,For storage only,37,Stgavatsch,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28013,555513616,Switzerland,National Inventory,2011,For storage only,37,Avers,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28014,555513617,Switzerland,National Inventory,2011,For storage only,37,Mottas,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28015,555513618,Switzerland,National Inventory,2011,For storage only,37,Pfrunt,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28016,555513619,Switzerland,National Inventory,2011,For storage only,37,Plaun dal Sel,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28017,555513620,Switzerland,National Inventory,2011,For storage only,37,Curtins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28018,555513621,Switzerland,National Inventory,2011,For storage only,37,L'Äla,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28019,555513622,Switzerland,National Inventory,2011,For storage only,37,Pisnana,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28020,555513623,Switzerland,National Inventory,2011,For storage only,37,Bleis,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28021,555513624,Switzerland,National Inventory,2011,For storage only,37,Roticcio,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28022,555513625,Switzerland,National Inventory,2011,For storage only,37,Cant,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28023,555513626,Switzerland,National Inventory,2011,For storage only,37,Durbegia,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28024,555513627,Switzerland,National Inventory,2011,For storage only,37,Creista,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28025,555513628,Switzerland,National Inventory,2011,For storage only,37,Muntac,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28026,555513629,Switzerland,National Inventory,2011,For storage only,37,Duegn,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28027,555552382,Switzerland,National Inventory,2011,For storage only,37,Chermet,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28028,555552383,Switzerland,National Inventory,2011,For storage only,37,La Mérine,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28029,555552384,Switzerland,National Inventory,2011,For storage only,37,Tour de Gourze,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28030,555552385,Switzerland,National Inventory,2011,For storage only,37,Le Lanciau,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28031,555552386,Switzerland,National Inventory,2011,For storage only,37,Nant,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28032,555552387,Switzerland,National Inventory,2011,For storage only,37,Longe Perche,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28033,555552388,Switzerland,National Inventory,2011,For storage only,37,Les Moulins,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28034,555552389,Switzerland,National Inventory,2011,For storage only,37,Roc à l'Ours,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28035,555552390,Switzerland,National Inventory,2011,For storage only,37,Col de la Croix,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28036,555552391,Switzerland,National Inventory,2011,For storage only,37,Blatte,Federal Inventory of Dry Grasslands and Pastures of National Importance,Switzerland Management Effectiveness Evaluation,"Federal Office for the Environment, FOEN",2017,English -28309,332872,Belgium,Natura 2000 National Monitoring,2006,For storage only,38,De Heirnisse,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28310,393598,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Muizenbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28311,393599,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Heverleebos: Putten van de IJzerweg,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28312,393600,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Den Doolhof,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28313,393601,Belgium,Natura 2000 National Monitoring,0,For storage only,38,J. Zwaenepoel,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28314,393602,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Heverleebos: Kleine Moerassen,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28315,332747,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Beiaardbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28316,332770,Belgium,Natura 2000 National Monitoring,2005,For storage only,38,Bos Ter Rijst,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28317,332790,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Bulskampveld,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28318,332819,Belgium,Natura 2000 National Monitoring,2004,For storage only,38,Coolhembos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28319,555545397,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Zwarte Leen,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28320,555545398,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Bertembos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28321,555558920,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Aalsterbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28322,333014,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Dilserbos - Platte Lendenberg,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28323,333066,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Galgenberg,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28324,333102,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Grootbroek,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28325,333109,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Grotenhout,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28326,333157,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Hallerbos: Jansheideberg en zaadtuin - uitbreiding1,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28327,333159,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Hallerbos: Jansheideberg,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28328,333160,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Hallerbos: Kluisberg,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28329,333161,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Hallerbos: Hallebeek,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28330,333162,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Hallerbos: Vroenenbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28331,333179,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Hellegatbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28332,555563052,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Sint-Pietersbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28333,333268,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Heverleebos: Grote Omheining,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28334,333298,Belgium,Natura 2000 National Monitoring,0,For storage only,38,In de Brand,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28335,333301,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Jagersborg,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28336,333304,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Jongenbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28337,333351,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Karkoolbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28338,333391,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Kolmontbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28339,333399,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Kraaienbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28340,333417,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Lanklaarderbos-Saenhoeve,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28341,333434,Belgium,Natura 2000 National Monitoring,2005,For storage only,38,Liedekerkebos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28342,333476,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Meerdaalwoud: De Heide,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28343,333477,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Meerdaalwoud: Drie eiken,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28344,333478,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Meerdaalwoud: Everzwijnbad,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28345,333479,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Meerdaalwoud: Grote konijnenpijp,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28346,333480,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Meerdaalwoud: Mommedeel,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28347,333481,Belgium,Natura 2000 National Monitoring,2005,For storage only,38,Meerdaalwoud: Pruikemakers,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28348,333482,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Meerdaalwoud: Veldkant Renissart,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28349,333488,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Melisbroek-Vieversel,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28350,333525,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Neigembos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28351,333547,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Op den Aenhof,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28352,333566,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Overheide,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28353,333598,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Parikebos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28354,333609,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Pijnven - naaldbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28355,333610,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Pijnven - ven,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28356,333650,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Rooiveld,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28357,333678,Belgium,Natura 2000 National Monitoring,2006,For storage only,38,Sevendock,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28358,333787,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Vloetemveld,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28359,333790,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Broekbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28360,333791,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Roodbos-Veursbos-Vossenaerde,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28361,333792,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Teuvenerberg,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28362,333813,Belgium,Natura 2000 National Monitoring,2004,For storage only,38,Wijnendalebos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28363,386104,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Helschot,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28364,386125,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Bellebargie,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28365,386133,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Pietersembos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28366,386134,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Hasselbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28367,386135,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Pijnven - vriesput,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28368,386136,Belgium,Natura 2000 National Monitoring,0,For storage only,38,s Herenbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28369,386138,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Duinbos Jan De Schuyter,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -28370,393584,Belgium,Natura 2000 National Monitoring,0,For storage only,38,Zoerselbos,Forest Reserve (Flemish Region),Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29022,555536664,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Abeek met aangrenzende moerasgebieden,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29080,555536652,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Bos- en heidegebieden ten oosten van Antwerpen,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29081,555536673,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Bosbeekvallei en aangrenzende bos- en heidegebieden te As-Opglabbeek-Maaseik,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29083,555536674,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Bossen en heiden van zandig Vlaanderen: oostelijk deel,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29084,555536669,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Bossen en kalkgraslanden van Haspengouw,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29086,555536676,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Bossen van de Vlaamse Ardennen en andere Zuidvlaamse bossen.,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29087,555536677,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Bossen van het zuidoosten van de Zandleemstreek,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29088,555536687,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Bossen, heiden en valleigebieden van zandig Vlaanderen: westelijk deel",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29089,555536657,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Bovenloop van de Grote Nete met Zammelsbroek, Langdonken en Goor.",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29097,555536659,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,De Maten,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29098,555536683,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Demervallei,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29099,555536684,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Duingebieden inclusief Ijzermonding en Zwin.,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29122,555536663,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Hageven met Dommelvallei, Beverbeekse Heide, Warmbeek en Wateringen",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29123,555536679,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Hallerbos en nabije boscomplexen met brongebieden en heiden,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29138,555536654,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Heesbossen, Vallei van Marke en Merkske en Ringven met valleigronden langs de Heerlese Loop",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29139,555536653,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Het Blak, Kievitsheide, Ekstergoor en nabijgelegen Kamsalamanderhabitats",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29141,555536658,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Historische fortengordels van Antwerpen als vleermuizenhabitat.,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29142,555536665,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Itterbeek met Brand, Jagersborg en Schootsheide en Bergerven",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29143,555536671,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Jekervallei en bovenloop van de Demervallei,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29144,555536650,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Kalmthoutse Heide,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29145,555536651,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Klein en Groot Schietveld,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29156,555536661,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Mangelbeek en heide- en vengebieden tussen Houthalen en Gruitrode,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29165,555536666,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Mechelse Heide en vallei van de Ziepbeek,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29169,555536672,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Overgang Kempen-Haspengouw,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29173,555536685,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Polders,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29174,555536675,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Schelde- en Durme├½stuarium van de Nederlandse grens tot Gent,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29186,555536668,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Uiterwaarden langs de Limburgse Maas met Vijverbroek,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29292,555536660,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Vallei- en brongebied van de Zwarte Beek, Bolisserbeek en Dommel met heide en vengebieden.",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29293,555536681,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Valleien van de Dijle, Laan en IJse met aangrenzende bos- en moerasgebieden",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29294,555536662,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Valleien van de Laambeek, Zonderikbeek, Slangebeek en Roosterbeek met vijvergebieden.",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29295,555536682,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Valleien van de Winge en de Motte met valleihellingen.,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29296,555536680,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Valleigebied tussen Melsbroek, Kampenhout, Kortemberg en Veltem.",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29297,555536656,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Valleigebied van de Kleine Nete met brongebieden, moerassen en heiden",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29298,555536655,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Vennen, heiden en moerassen rond Turnhout",Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29303,555541980,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Arendonk, Merksplas, Oud-Turnhout, Ravels en Turnhout",Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29342,555541985,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Bocholt, Hechtel-Eksel, Meeuwen-Gruitrode, Neerpelt en Peer",Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29357,555541982,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Bokrijk en omgeving,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29366,555541990,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,De Demervallei,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29367,555541995,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,De Dijlevallei,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29368,555541979,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"De Maatjes, Wuustwezelheide en Groot Schietveld",Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29369,555541983,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,De Maten,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29370,555541984,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,De Mechelse Heide en de Vallei van de Ziepbeek,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29371,555541978,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,De Zegge,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29372,555541993,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Durme en Middenloop van de Schelde,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29395,555541989,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Hamonterheide, Hageven, Buitenheide, Stamprooierbroek en Mariahof",Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29410,555541999,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Het Zwin,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29411,555541988,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,"Houthalen-Helchteren, Meeuwen-Gruitrode en Peer",Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29412,555541997,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Ijzervallei,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29413,555541977,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Kalmthoutse Heide,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29414,555541992,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Krekengebied,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29415,555541991,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Kuifeend en Blokkersdijk,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29434,555541986,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Militair domein en vallei van de Zwarte Beek,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29441,555541998,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Poldercomplex,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29442,555541981,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Ronde Put,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29443,555541994,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Schorren en Polders van de Beneden-Schelde,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29560,555541987,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Vijvercomplex van Midden Limburg,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29561,555541996,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Westkust,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29562,555536670,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Voerstreek,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29563,555536686,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Westvlaams Heuvelland,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29564,555536678,Belgium,Natura 2000 National Monitoring,2007,For storage only,38,Zoni├½nwoud,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29025,555579880,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Affluents de l'Our entre Setz et Schoenberg,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29028,555579861,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Basse vallée de la Lienne,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29033,555536731,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Basse vallée du Geer,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29035,555579889,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Basse-Vierre,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29039,555623480,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Lesse entre Villers-su-Lesse et Chanly,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29040,555579887,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Lomme de Poix-Saint-Hubert à Grupont,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29046,555579895,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Semois du Maka à Bouillon,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29053,555579898,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin du Ruisseau du Ru au Moulin,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29057,555579883,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin inférieur de l'Ourthe occidentale,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29065,555579891,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois calcaires de Nettinne,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29069,555579851,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois de Colfontaine,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29070,555579886,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois de Famenne à Humain et Aye,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29071,555579894,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois de Famenne à Waillet,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29076,555579852,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois de Vieux Sart et de Montbliart,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29077,555579855,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois d'Enghien et de Silly,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29078,555579856,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois Massart et forêts de Sivry-Rance,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29079,555579847,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bord nord du bassin de la Haine,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29090,555579893,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Camp militaire de Lagland,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29092,555579864,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Camp militaire d'Elsenborn,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29093,555536705,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Canal souterrain de la Bête Refaite,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29095,555536693,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Carrières souterraines d'Orp-Jauche,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29104,555579870,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fagne de la Gotale et affluents du Ruisseau de Chavanne,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29106,555579867,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fagnes de la Polleur et de Malmedy,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29113,555579892,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Forêt d'Anlier,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29114,555579843,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Forêt de Bon-Secours,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29115,555579885,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Forêt de Freyr,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29117,555579882,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Forêts de Muno,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29118,555579844,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Forêts de Rance,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29119,555579890,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Forêts et lac de Bambois,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29121,555536769,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Grotte Jaminon,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29124,555579873,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute vallée de la Lienne,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29135,555579884,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute-Wamme et Masblette,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29146,555536788,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,La Calestienne à Marche en Famenne,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29159,555579878,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Mardelles d'Arbrefontaine et vallons fangeux de Fosse,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29160,555536825,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Mare de Frassem,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29172,555579868,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Plateau des Hautes-Fagnes,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29177,555579881,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Sources de la Lienne,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29181,555536730,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Sources du Geer,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29183,555579888,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Sûre frontalière,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29184,555536726,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Trou aux Feuilles,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29185,555536711,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Trou des Sarrazins à Loverval,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29188,555579858,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Burdinale,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29191,555579842,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Dyle de Wavre à Archennes,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29192,555579845,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Dyle en aval d'Archennes,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29198,555579848,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Helle,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29200,555579866,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Holzwarche,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29203,555579846,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Lasne,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29204,555579850,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Lembrée et affluents,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29211,555579849,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Meuse à Huy et vallon de la Solières,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29225,555579859,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Soor,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29234,555579863,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Amblève de Chêneu au Pont de Targnon,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29236,555579872,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Amblève entre Montenau et Baugné,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29237,555579877,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Amblève entre Wanne et Coo,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29238,555579860,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Aubrecheuil,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29241,555579869,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Emmels,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29244,555579862,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Olefbach,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29252,555579876,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Ulf,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29259,555579871,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Medemberbach,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29260,555579857,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Piéton,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29262,555536854,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau d'Alisse,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29269,555579896,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau de Rebais,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29270,555579897,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau de Saint-Jean,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29271,555536727,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau d'Erpion,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29275,555579854,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Wayai et affluents,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29276,555579875,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée et affluents du Braunlauf,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29277,555579879,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée et affluents du Néblon,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29278,555579874,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée inférieure de l'Our et ses affluents,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29283,555579865,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées de la Warche et du Bayehon en aval du barrage de Robertville,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29290,555579853,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées du Hoyoux et du Triffoy,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29299,555623138,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Affluents brabançons de la Senne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29300,555623117,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Affluents de la Meuse entre Huy et Flémalle,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29302,555623104,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Affluents du lac d'Eupen,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29306,555623091,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Basse vallée de la Vesdre,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29307,555623158,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Basse vallée de la Wamme,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29308,555623197,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Basse vallée de l'Aisne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29309,555623228,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Basse vallée de l'Amblève,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29311,555623132,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Basse-Sambre,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29313,555623121,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin ardennais de l'Eau Noire,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29314,555623130,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin ardennais du Viroin,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29315,555623220,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Houille en amont de Gedinne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29316,555623212,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Lesse entre Villers-su-Lesse et Chanly,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29318,555623216,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Marche,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29319,555623203,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Semois de Bouillon à Alle,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29320,555623169,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Semois de Etalle à Tintigny,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29321,555623167,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Semois de Florenville à Auby,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29322,555623168,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Semois de Jamoigne à Chiny,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29324,555623205,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de la Semois entre Tintigny et Jamoigne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29325,555623206,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de l'Attert,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29326,555623226,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de l'Escaut en amont de Tournai,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29327,555623217,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de l'Hermeton en aval de Vodelée,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29328,555623176,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin de l'Iwène,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29329,555623081,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin du Ruisseau du Messancy,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29331,555623173,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin du Samson,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29332,555623247,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin fagnard de l'Eau Blanche en aval de Mariembourg,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29333,555623210,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin fagnard de l'Hermeton,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29335,555623186,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin inférieur de l'Ourthe orientale,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29336,555623084,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin moyen de l'Ourthe occidentale,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29337,555623118,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin supérieur de la Chevratte,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29338,555623157,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin supérieur de la Salm,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29339,555623207,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin supérieur de la Vire et du Ton,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29340,555623201,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin supérieur de la Wiltz,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29341,555623116,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bassin supérieur de l'Ourthe occidentale,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29344,555623083,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois d'Anthisnes et d'Esneux,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29346,555623165,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois de Bourlers et de Baileux,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29350,555623096,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois de la Géronstère,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29351,555623187,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois de la Houssière,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29352,555623094,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois de la Neuville et de la Vecquée,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29353,555623097,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Bois de Staneux,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29360,555623234,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Camp militaire de Marche-en-Famenne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29363,555623088,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Carrière de Dongelberg,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29365,555623146,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Coteaux calcaires de Theux et le Rocheux,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29373,555623199,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Ennal et Grand Fond,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29374,555542163,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Etangs de Boneffe,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29375,555623235,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Etangs de Longchamps et de Noville,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29376,555623156,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fagne de la Crépale et prairies de Malempré,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29378,555623110,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fagnes de Bihain,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29380,555623148,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fagnes de la Roer,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29381,555623106,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fagnes de Malchamps et de Stoumont,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29382,555623127,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fagnes de Samrée et de Tailles,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29383,555623230,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fagnes de Stavelot et vallée de l'Eau Rouge,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29384,555623092,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fagnes du Nord-Est,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29385,555623185,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Fanges des sources de l'Aisne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29389,555623102,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Forêt de Mariemont,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29393,555623172,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Forêts et marais bajociens de Baranzy à Athus,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29397,555623191,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute vallée de la Thure,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29398,555623198,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute vallée de l'Aisne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29399,555623232,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute vallée de l'Amblève entre Heppenbach et Montenau,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29400,555623225,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute vallée de l'Eau Noire,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29401,555623236,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute-Lesse,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29402,555623214,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute-Lomme,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29403,555623162,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute-Sambre en amont de Thuin,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29404,555623161,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute-Sambre en aval de Thuin,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29405,555623202,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute-Sûre,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29406,555623204,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute-Vierre,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29408,555623160,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haute-Wimbe,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29409,555623189,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Haut-Pays des Honnelles,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29417,555623154,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,La Calestienne entre Barvaux et Bomal,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29418,555623211,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,La Calestienne entre Frasnes et Doische,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29419,555623109,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,La Calestienne entre Hotton et Oppagne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29420,555623184,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,La Calestienne entre Marenne et Hotton,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29421,555623196,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,La Calestienne entre Oppagne et Barvaux,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29422,555623163,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,La Fagne entre Bailièvre et Robechies,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29423,555623208,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,La Famenne entre Eprave et Havrenne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29424,555623125,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,La Gileppe,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29425,555623093,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Ma Campagne au sud de Malmedy,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29426,555623238,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Marais de la Haute-Semois et Bois de Heinsch,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29427,555623123,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Marais de la Verne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29430,555623246,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Massif forestier de Cerfontaine,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29431,555623200,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Massif forestier de Daverdisse,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29432,555623193,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Massifs forestiers entre Momignies et Chimay,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29435,555623194,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Montagne Saint-Pierre,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29436,555623074,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Noir Ru et Vallée du Rechterbach,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29437,555623135,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Osthertogenwald autour de Raeren,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29438,555623113,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Pays des Collines,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29439,555623075,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Plaine de Ny,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29444,555623139,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Sources de la Dyle,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29445,555623089,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Sources de la Hante,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29447,555623107,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Sources de la Warchenne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29448,555623231,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Sources de l'Amblève,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29449,555623152,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Sources de l'Our et de l'Ensebach,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29451,555623098,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Sources du Ruisseau de Tavigny,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29455,555623190,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Biesmelle,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29457,555623129,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Chinelle,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29458,555623180,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Dyle à Ottignies,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29461,555623195,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Gueule en amont de Kelmis,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29462,555623145,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Gueule en aval de Kelmis,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29463,555623080,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Haine en amont de Mons,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29464,555623188,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Haine en aval de Mons,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29465,555623192,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Hante,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29467,555623229,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Hoëgne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29469,555623249,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Houille en aval de Gedinne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29470,555623219,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Hulle,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29473,555623245,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Lesse en aval de Houyet,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29474,555623177,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Lesse entre Villers-sur-Lesse et Houyet,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29476,555623213,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Lomme de Grupont à Rochefort,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29477,555623143,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Lys,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29478,555623133,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Mehaigne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29480,555623241,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Meuse de Dave à Marche-les-Dames,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29481,555623244,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Meuse de Dinant à Yvoir,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29482,555623119,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Meuse de Marche-les-Dames à Andenne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29483,555623137,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Meuse d'Hastière à Dinant,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29484,555623174,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Meuse d'Yvoir à Dave,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29485,555623175,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Meuse en amont d'Hastière,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29486,555623243,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Molignée,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29487,555623141,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Nethen,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29488,555623115,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Princesse,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29489,555623122,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Rhosnes,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29490,555623128,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Sambre en aval de la confluence avec l'Orneau,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29491,555623149,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Schwalm,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29492,555623222,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Semois en aval d'Alle,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29494,555623090,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Thure,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29495,555623142,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Thyle,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29496,555623144,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Trouille,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29497,555623124,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Vesdre entre Eupen et Verviers,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29498,555623151,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Warche en amont de Butgenbach,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29499,555623150,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Warche entre Butgenbach et Robertville,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29500,555623218,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de la Wimbe,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29501,555623221,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Almache en amont de Gembes,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29503,555623105,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Amblève du Pont de Targnon à Remouchamps,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29507,555623164,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Eau Blanche à Virelles,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29508,555623209,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Eau Blanche entre Aublain et Mariembourg,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29510,555623181,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Escaut en aval de Tournai,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29511,555623248,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Ilèwe,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29513,555623086,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Orneau,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29514,555623126,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Ourthe entre Bomal et Hamoir,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29515,555623134,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Ourthe entre Comblain-au-Pont et Angleur,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29516,555623147,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Ourthe entre Hamoir et Comblain-au-Pont,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29517,555623233,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Ourthe entre Hotton et Barvaux-sur-Ourthe,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29518,555623155,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Ourthe entre La Roche et Hotton,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29519,555623159,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de l'Ourthe entre Nisramont et La Roche,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29521,555623085,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée de Villers-la-Bonne-Eau,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29522,555623082,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Biran,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29523,555623242,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Bocq,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29524,555623120,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Burnot,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29525,555623131,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Flavion,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29526,555623182,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Kolvenderbach,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29529,555623103,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau d'Acoz,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29531,555623227,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau de Bolland,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29532,555623237,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau de Breuvanne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29533,555623095,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau de Fairoul,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29534,555623136,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau de Féron,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29535,555623100,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau de Gros Fays,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29536,555623101,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau de la Goutelle,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29540,555623099,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ruisseau des Aleines,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29541,555623240,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Ton et Côte bajocienne de Montquintin à Ruette,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29542,555623223,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée du Train,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29546,555623153,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallée inférieure de l'Our et ses affluents,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29548,555623239,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées de la Chevratte,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29549,555623114,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées de la Dendre et de la Marcq,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29550,555623171,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées de la Vire et du Ton,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29552,555623170,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées de Laclaireau et du Rabais,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29553,555623140,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées de l'Argentine et de la Lasne,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29554,555623111,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées de l'Eisch et de Clairefontaine,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29555,555623224,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées de l'Oise et de la Wartoise,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29556,555623178,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées des Ruisseaux de Fenffe et du Vachau,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29557,555623179,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées des Ruisseaux de Rempeine et de la Scheloupe,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29559,555623215,Belgium,Natura 2000 National Monitoring,2007,For storage only,40,Vallées du Ruisseau de Mellier et de la Mandebras,Bird Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29082,555536649,Belgium,National PAME Assessment,2012,For storage only,41,Bosgebieden en vochtige gebieden van de Molenbeekvallei in het noordwesten van het Brussels Gewest,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29085,555536648,Belgium,National PAME Assessment,2012,For storage only,41,Bossen en open gebieden in het zuiden van het Brussels Gewest - complex Verrewinkel – Kinsendaal,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29140,555536647,Belgium,National PAME Assessment,2012,For storage only,41,Het Zoniënwoud met bosranden en aangrenzende beboste domeinen en de vallei van de Woluwe - complex Zoniënwoud - Vallei van de Woluwe,Habitat Directives,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29565,385995,Belgium,National PAME Assessment,0,For storage only,41,Bois du Laerbeek - Laarbeekbos,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29566,386006,Belgium,National PAME Assessment,0,For storage only,41,Kinsendael-Kriekenput,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29567,385997,Belgium,National PAME Assessment,0,For storage only,41,marais de Ganshoren - Moeras van Ganshoren,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29568,385996,Belgium,National PAME Assessment,0,For storage only,41,marais de Jette - Moeras van Jette,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29569,385998,Belgium,National PAME Assessment,0,For storage only,41,mare du Pinnebeek - Pinnebeekpoel,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29570,385993,Belgium,National PAME Assessment,0,For storage only,41,Moeraske,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29571,385992,Belgium,National PAME Assessment,0,For storage only,41,Poelbos,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29572,386015,Belgium,National PAME Assessment,0,For storage only,41,Roselière du Parc des Sources - Rietveld van het Ter Bronnenpark,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29573,386004,Belgium,National PAME Assessment,0,For storage only,41,Rouge-Cloître - Rood Klooster,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29574,385999,Belgium,National PAME Assessment,0,For storage only,41,vallon de Trois fontaines - Dry Borrenvallei,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29575,386001,Belgium,National PAME Assessment,0,For storage only,41,vallon de Vuylbeek - Vuilbeekvallei,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29576,386000,Belgium,National PAME Assessment,0,For storage only,41,vallon des Enfants noyés - Verdronken kinderenvallei,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29577,394550,Belgium,National PAME Assessment,0,For storage only,41,Vogelzangbeek,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29578,386002,Belgium,National PAME Assessment,0,For storage only,41,Zavelenberg,Nature Reserve,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29579,386249,Belgium,National PAME Assessment,0,For storage only,41,Grippensdelle,Forest Reserves,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29580,386005,Belgium,National PAME Assessment,0,For storage only,41,Rouge-Cloître - Rood Klooster,Forest Reserves,Belgium Management Effectiveness Evaluation,INBO,2017,Dutch -29652,4115,Morocco,IMET,2018,Not Reported,42,Tazekka National Park,National Park,List of protected areas assessed with the Integrated Management Effectiveness Tool (IMET),European Commission,2019,English -29653,555547509,Morocco,IMET,2018,Not Reported,42,Al-Hoceima National Park,National Park,List of protected areas assessed with the Integrated Management Effectiveness Tool (IMET),European Commission,2019,English diff --git a/lib/data/seeds/pame_data-2019-05-30.csv b/lib/data/seeds/pame_data-2019-05-30.csv deleted file mode 100644 index af2ebedb2..000000000 --- a/lib/data/seeds/pame_data-2019-05-30.csv +++ /dev/null @@ -1,28246 +0,0 @@ -"evaluation_id","wdpa_id","ISO3","methodology","year","url","metadata_id","name","designation","source_data_title","source_resp_party","source_year","source_language","restricted" -64,7,"ARG","Valdiviana",2001,"For storage only",3,"Lanín","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -66,7,"ARG","Parks profiles",2006,"For storage only",3,"Lanín","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -70,8,"ARG","Parks profiles",2006,"For storage only",3,"Los Alerces","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -71,8,"ARG","Valdiviana",2001,"For storage only",3,"Los Alerces","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -28037,15,"ARG","METT",2003,"For storage only",28,"Iguazú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -59,17,"ARG","Parks profiles",2006,"For storage only",3,"Lago Puelo","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -60,17,"ARG","Valdiviana",2001,"For storage only",3,"Lago Puelo","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -42,18,"ARG","METT",2009,"For storage only",3,"Chaco","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -73,22,"ARG","Valdiviana",2001,"For storage only",3,"Los Arrayanes","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -94,23,"ARG","GOBI Survey",2006,"For storage only",3,"San Guillermo","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -102,23,"ARG","GOBI Survey",2009,"For storage only",3,"San Guillermo","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -9829,24,"BHS","METT-RAPPAM",2018,"For storage only",25,"Inagua National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -10880,30,"BOL","RAPPAM",2004,"For storage only",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10879,30,"BOL","MEMS",2002,"For storage only",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10876,30,"BOL","CI Tracking Tool",0,"For storage only",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10878,30,"BOL","PA Consolidation Index",0,"For storage only",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10881,30,"BOL","Parks profiles",2005,"For storage only",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10877,30,"BOL","MEMS",2001,"For storage only",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10895,31,"BOL","MEMS",2001,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10902,31,"BOL","PIP Site Consolidation",2001,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10899,31,"BOL","PIP Site Consolidation",1997,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10901,31,"BOL","PIP Site Consolidation",1999,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10896,31,"BOL","MEMS",2002,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10897,31,"BOL","PIP Site Consolidation",1991,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10904,31,"BOL","RAPPAM",2004,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10898,31,"BOL","PIP Site Consolidation",1996,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10903,31,"BOL","PIP Site Consolidation",2000,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10900,31,"BOL","PIP Site Consolidation",1998,"For storage only",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10917,33,"BOL","MEMS",2001,"For storage only",28,"Sajama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10919,33,"BOL","RAPPAM",2004,"For storage only",28,"Sajama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10918,33,"BOL","MEMS",2002,"For storage only",28,"Sajama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10892,35,"BOL","MEMS",2002,"For storage only",28,"Manuripi","National Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10894,35,"BOL","RAPPAM",2004,"For storage only",28,"Manuripi","National Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10891,35,"BOL","MEMS",2001,"For storage only",28,"Manuripi","National Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10893,35,"BOL","METT",2003,"For storage only",28,"Manuripi","National Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10872,36,"BOL","PIP Site Consolidation",2002,"For storage only",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10869,36,"BOL","PIP Site Consolidation",1999,"For storage only",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10866,36,"BOL","MEMS",2001,"For storage only",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10870,36,"BOL","PIP Site Consolidation",2000,"For storage only",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10867,36,"BOL","MEMS",2002,"For storage only",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10868,36,"BOL","PIP Site Consolidation",1997,"For storage only",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10840,36,"BOL","RAPPAM",2004,"For storage only",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10871,36,"BOL","PIP Site Consolidation",2001,"For storage only",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -411,42,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Lago Piratuba","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -760,42,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Lago Piratuba","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -412,43,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Rio Trombetas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -761,43,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Rio Trombetas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -759,44,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Jaru","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -410,44,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Jaru","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -739,46,"BRA","SAMGe",2016,"For storage only",9,"REBIO Atol das Rocas","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -752,47,"BRA","SAMGe",2016,"For storage only",9,"REBIO de Sooretama","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -405,48,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica De Una","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -753,48,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica De Una","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -748,49,"BRA","SAMGe",2016,"For storage only",9,"REBIO de Poço das Antas","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -755,51,"BRA","SAMGe",2016,"For storage only",9,"REBIO do Córrego do Veado","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -751,52,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica De Serra Negra","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -404,52,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica De Serra Negra","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -379,53,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Jaú","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -712,53,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Jaú","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -384,54,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Pico Da Neblina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -717,54,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Pico Da Neblina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -667,55,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Amazônia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -351,55,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Amazônia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -371,56,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional De Pacaás Novos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -699,56,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional De Pacaás Novos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -708,57,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Cabo Orange","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -377,57,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Cabo Orange","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -671,59,"BRA","SAMGe",2016,"For storage only",9,"PARNA da Chapada dos Veadeiros","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -710,60,"BRA","SAMGe",2016,"For storage only",9,"PARNA do Iguaçu","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -476,61,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Dos Lençois Maranhenses","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -722,61,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Dos Lençois Maranhenses","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -689,62,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Das Emas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -366,62,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Das Emas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -677,64,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra Da Capivara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -359,64,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra Da Capivara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -358,65,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra Da Canastra","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -676,65,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra Da Canastra","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -373,66,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional De São Joaquim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -701,66,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional De São Joaquim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -695,67,"BRA","SAMGe",2016,"For storage only",9,"PARNA de Brasília","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -714,68,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Monte Pascoal","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -381,68,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Monte Pascoal","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -696,69,"BRA","SAMGe",2016,"For storage only",9,"PARNA de Caparaó","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -726,70,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Itatiaia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -477,70,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Itatiaia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -368,71,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional De Aparados Da Serra","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -693,71,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional De Aparados Da Serra","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -685,72,"BRA","SAMGe",2016,"For storage only",9,"PARNA da Serra dos Órgãos","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -374,73,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional De Sete Cidades","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -703,73,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional De Sete Cidades","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -687,74,"BRA","SAMGe",2016,"For storage only",9,"PARNA da Tijuca","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -375,75,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional De Ubajara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -704,75,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional De Ubajara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -14359,83,"CHL","METT",2010,"For storage only",28,"Laguna San Rafael","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14360,83,"CHL","RAPPAM",2005,"For storage only",28,"Laguna San Rafael","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14358,83,"CHL","METT",2007,"For storage only",28,"Laguna San Rafael","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14368,86,"CHL","METT",0,"For storage only",28,"Lauca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14367,86,"CHL","METT",2010,"For storage only",28,"Lauca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14419,88,"CHL","METT",0,"For storage only",28,"Vicente Perez Rosales","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14421,88,"CHL","RAPPAM",2005,"For storage only",28,"Vicente Perez Rosales","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14418,88,"CHL","METT",2010,"For storage only",28,"Vicente Perez Rosales","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14417,89,"CHL","METT",2010,"For storage only",28,"Torres del Paine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14416,89,"CHL","METT",2007,"For storage only",28,"Torres del Paine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14398,90,"CHL","METT",2004,"For storage only",28,"Puyehue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14399,90,"CHL","METT",2010,"For storage only",28,"Puyehue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14422,91,"CHL","RAPPAM",2005,"For storage only",28,"Villarrica","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14347,97,"CHL","METT",2009,"For storage only",28,"Archipielago Juan Fernadez","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14349,100,"CHL","METT",0,"For storage only",28,"La Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14348,100,"CHL","METT",2010,"For storage only",28,"La Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14313,101,"CHL","METT",2010,"For storage only",28,"Bosque Fray Jorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14312,101,"CHL","METT",0,"For storage only",28,"Bosque Fray Jorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14385,104,"CHL","RAPPAM",2005,"For storage only",28,"Nahuelbuta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14317,110,"CHL","RAPPAM",2005,"For storage only",28,"Cerro Castillo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14316,110,"CHL","METT",2010,"For storage only",28,"Cerro Castillo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14315,110,"CHL","METT",2007,"For storage only",28,"Cerro Castillo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14390,111,"CHL","METT",2010,"For storage only",28,"Nuble","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14391,111,"CHL","RAPPAM",2005,"For storage only",28,"Nuble","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14389,111,"CHL","METT",0,"For storage only",28,"Nuble","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14306,112,"CHL","METT",2010,"For storage only",28,"Alto Biobio","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14305,112,"CHL","METT",0,"For storage only",28,"Alto Biobio","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14307,112,"CHL","RAPPAM",2005,"For storage only",28,"Alto Biobio","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14380,113,"CHL","RAPPAM",2005,"For storage only",28,"Malalcahuello","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14386,115,"CHL","RAPPAM",2005,"For storage only",28,"Nalcas","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14325,117,"CHL","RAPPAM",2005,"For storage only",28,"China Muerta","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14346,121,"CHL","GOBI Survey",2006,"For storage only",28,"Archipielago Juan Fernández","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28211,126,"COL","METT",2010,"For storage only",28,"Los Flamencos","Fauna and Flora Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -179,127,"COL","AEMAPPS",2016,"For storage only",6,"Iguaque","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -186,128,"COL","AEMAPPS",2016,"For storage only",6,"Los Colorados","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -174,129,"COL","AEMAPPS",2016,"For storage only",6,"El Tuparro","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -208,130,"COL","AEMAPPS",2016,"For storage only",6,"Sierra De La Macarena","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -198,131,"COL","AEMAPPS",2016,"For storage only",6,"Paramillo","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -209,132,"COL","AEMAPPS",2016,"For storage only",6,"Sierra Nevada De Santa Marta","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -172,133,"COL","AEMAPPS",2016,"For storage only",6,"El Cocuy","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -170,134,"COL","AEMAPPS",2016,"For storage only",6,"Cordillera De Los Picachos","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -161,135,"COL","AEMAPPS",2016,"For storage only",6,"Amacayacu","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -193,136,"COL","AEMAPPS",2016,"For storage only",6,"Nevado Del Huila","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -210,137,"COL","AEMAPPS",2016,"For storage only",6,"Sumapaz","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -175,138,"COL","AEMAPPS",2016,"For storage only",6,"Los Farallones De Cali","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -184,139,"COL","AEMAPPS",2016,"For storage only",6,"Las Hermosas - Gloria Valencia De Castaño","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -203,140,"COL","AEMAPPS",2016,"For storage only",6,"Sanquianga","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -201,141,"COL","AEMAPPS",2016,"For storage only",6,"Purace","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -182,142,"COL","AEMAPPS",2016,"For storage only",6,"Los Katios","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -165,143,"COL","AEMAPPS",2016,"For storage only",6,"Chingaza","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -211,144,"COL","AEMAPPS",2016,"For storage only",6,"Tama","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -199,145,"COL","AEMAPPS",2016,"For storage only",6,"Pisba","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -192,146,"COL","AEMAPPS",2016,"For storage only",6,"Munchique","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -189,147,"COL","AEMAPPS",2016,"For storage only",6,"Los Nevados","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -185,148,"COL","AEMAPPS",2016,"For storage only",6,"Las Orquideas","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -190,149,"COL","AEMAPPS",2016,"For storage only",6,"Macuira","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -181,150,"COL","AEMAPPS",2016,"For storage only",6,"Isla De Salamanca","Park Way","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -213,152,"COL","AEMAPPS",2016,"For storage only",6,"Tayrona","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -171,153,"COL","AEMAPPS",2016,"For storage only",6,"Cueva De Los Guacharos","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -1027,156,"CRI","SINAD",2016,"For storage only",14,"Hitoy Cerere","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28272,156,"CRI","METT",2011,"For storage only",28,"Hitoy Cerere","Reserva Biológica","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1008,157,"CRI","SINAD",2016,"For storage only",14,"Carara","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28056,157,"CRI","METT",2006,"For storage only",28,"Carara","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28269,157,"CRI","METT",2011,"For storage only",28,"Carara","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28270,163,"CRI","METT",2011,"For storage only",28,"Chirripó","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1011,163,"CRI","SINAD",2016,"For storage only",14,"Chirripó","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28057,163,"CRI","METT",2006,"For storage only",28,"Chirripó","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28271,164,"CRI","METT",2011,"For storage only",28,"Corcovado","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1015,164,"CRI","SINAD",2016,"For storage only",14,"Corcovado","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28188,164,"CRI","METT",2010,"For storage only",28,"Corcovado","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28052,164,"CRI","METT",2006,"For storage only",28,"Corcovado","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28054,165,"CRI","METT",2006,"For storage only",28,"Braulio Carrillo","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28267,165,"CRI","METT",2011,"For storage only",28,"Braulio Carrillo","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1002,165,"CRI","SINAD",2016,"For storage only",14,"Braulio Carrillo","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1057,166,"CRI","SINAD",2016,"For storage only",14,"Santa Rosa","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28279,166,"CRI","METT",2011,"For storage only",28,"Santa Rosa","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28065,166,"CRI","METT",2006,"For storage only",28,"Santa Rosa","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28187,166,"CRI","METT",2010,"For storage only",28,"Santa Rosa","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28053,167,"CRI","METT",2006,"For storage only",28,"Tortuguero","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1062,167,"CRI","SINAD",2016,"For storage only",14,"Tortuguero","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28282,167,"CRI","METT",2011,"For storage only",28,"Tortuguero","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28278,168,"CRI","METT",2011,"For storage only",28,"Rincón De La Vieja","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1054,168,"CRI","SINAD",2016,"For storage only",14,"Rincón De La Vieja","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28061,168,"CRI","METT",2006,"For storage only",28,"Rincón De La Vieja","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28277,169,"CRI","METT",2011,"For storage only",28,"Volcán Poás","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1065,169,"CRI","SINAD",2016,"For storage only",14,"Volcán Poás","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28063,169,"CRI","METT",2006,"For storage only",28,"Volcán Poás","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1030,170,"CRI","SINAD",2016,"For storage only",14,"Isla Del Coco","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28191,170,"CRI","METT",2011,"For storage only",28,"Isla Del Coco","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28273,171,"CRI","METT",2011,"For storage only",28,"Volcán Irazú","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1064,171,"CRI","SINAD",2016,"For storage only",14,"Volcán Irazú","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28062,171,"CRI","METT",2006,"For storage only",28,"Volcán Irazú","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -29585,180,"DOM","METT",2015,"For storage only",12,"Del Este","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29584,180,"DOM","METT",2012,"For storage only",12,"Del Este","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -868,180,"DOM","METT",2009,"For storage only",12,"Del Este","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29587,181,"DOM","METT",2015,"For storage only",12,"Los Haitises","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29586,181,"DOM","METT",2012,"For storage only",12,"Los Haitises","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -874,181,"DOM","METT",2009,"For storage only",12,"Los Haitises","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -14430,183,"ECU","PIP Site Consolidation",2004,"For storage only",28,"Cayambe Coca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14429,183,"ECU","Ecuador MEE",1999,"For storage only",28,"Cayambe Coca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14479,183,"ECU","METT",2009,"For storage only",28,"Cayambe Coca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14431,183,"ECU","METT",2005,"For storage only",28,"Cayambe Coca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28244,184,"ECU","METT",2013,"For storage only",28,"Cotacachi Cayapas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14436,184,"ECU","Ecuador MEE",1999,"For storage only",28,"Cotacachi Cayapas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14488,186,"ECU","GOBI Survey",2006,"For storage only",28,"Yasuní","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14487,186,"ECU","Ecuador MEE",1999,"For storage only",28,"Yasuní","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14451,186,"ECU","Birdlife IBA",1990,"For storage only",28,"Yasuní","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14446,187,"ECU","Galapagos MEE",2004,"For storage only",28,"Galápagos","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14448,187,"ECU","MPA MEE",0,"For storage only",28,"Galápagos","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14444,187,"ECU","Ecuador MEE",1999,"For storage only",28,"Galápagos","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14480,188,"ECU","Ecuador MEE",1999,"For storage only",28,"Sangay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14481,188,"ECU","Enhancing Our Heritage",2003,"For storage only",28,"Sangay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14483,188,"ECU","Enhancing Our Heritage",2007,"For storage only",28,"Sangay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14482,188,"ECU","Enhancing Our Heritage",2005,"For storage only",28,"Sangay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14462,189,"ECU","PIP Site Consolidation",1999,"For storage only",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14460,189,"ECU","PIP Site Consolidation",1997,"For storage only",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14461,189,"ECU","PIP Site Consolidation",1998,"For storage only",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14463,189,"ECU","PIP Site Consolidation",2000,"For storage only",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28214,189,"ECU","METT",2009,"For storage only",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14464,189,"ECU","PIP Site Consolidation",2001,"For storage only",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14458,189,"ECU","PIP Site Consolidation",1992,"For storage only",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14457,189,"ECU","Ecuador MEE",1999,"For storage only",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14459,189,"ECU","PIP Site Consolidation",1996,"For storage only",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14437,190,"ECU","Ecuador MEE",1999,"For storage only",28,"Cotopaxi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14438,190,"ECU","PIP Site Consolidation",2004,"For storage only",28,"Cotopaxi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14449,191,"ECU","MPA MEE",2003,"For storage only",28,"Galápagos Islands","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14450,191,"ECU","WHA Outlook Report",2014,"For storage only",28,"Galápagos Islands","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1112,193,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Tikal","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1111,193,"GTM","Parks profiles",2013,"For storage only",16,"Tikal","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1113,193,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Tikal","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1110,193,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Tikal","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1114,196,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Volcán Pacaya y Laguna de Calderas","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1115,196,"GTM","PROARCA/CAPAS",2016,"For storage only",16,"Volcán Pacaya y Laguna de Calderas","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1251,198,"GUY","METT",2016,"For storage only",17,"Kaieteur National Park","National Park","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -1250,198,"GUY","METT",2015,"For storage only",17,"Kaieteur National Park","National Park","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -1252,198,"GUY","METT",2017,"For storage only",17,"Kaieteur National Park","National Park","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -14980,202,"JAM","METT",2009,"For storage only",28,"Ocho Rios","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14979,202,"JAM","RAPPAM",2006,"For storage only",28,"Ocho Rios","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14973,203,"JAM","RAPPAM",2006,"For storage only",28,"Montego Bay","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14971,203,"JAM","METT",2009,"For storage only",28,"Montego Bay","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12364,236,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12366,236,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12367,236,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12360,236,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12365,236,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12363,236,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12369,236,"PAN","METT",2010,"For storage only",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12543,238,"PAN","METT",2010,"For storage only",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12539,238,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12541,238,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12537,238,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12536,238,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12540,238,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12542,238,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12564,240,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12561,240,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12567,240,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12560,240,"PAN","METT",0,"For storage only",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12559,240,"PAN","METT",2006,"For storage only",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12285,240,"PAN","METT",2010,"For storage only",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12562,240,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12565,240,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12566,240,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12279,241,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12275,241,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12277,241,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12280,241,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12274,241,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12294,241,"PAN","METT",2010,"For storage only",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12278,241,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12623,242,"PRY","PIP Site Consolidation",1998,"For storage only",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12626,242,"PRY","PIP Site Consolidation",2001,"For storage only",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12624,242,"PRY","PIP Site Consolidation",1999,"For storage only",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12627,242,"PRY","PIP Site Consolidation",2002,"For storage only",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12622,242,"PRY","PIP Site Consolidation",1997,"For storage only",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12639,242,"PRY","Birdlife IBA",2011,"For storage only",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12625,242,"PRY","PIP Site Consolidation",2000,"For storage only",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12641,244,"PRY","Birdlife IBA",2011,"For storage only",28,"Tentiente Agripino Enciso","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12638,245,"PRY","Birdlife IBA",2011,"For storage only",28,"Caaguazú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -936,249,"PER","METT",2016,"For storage only",13,"Pacaya Samiria","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -931,250,"PER","METT",2016,"For storage only",13,"de Paracas","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -937,251,"PER","METT",2016,"For storage only",13,"Pamap Galeras Barbara D Achille","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -929,252,"PER","METT",2016,"For storage only",13,"de Junin","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -934,253,"PER","METT",2016,"For storage only",13,"Del Titicaca","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -930,254,"PER","METT",2016,"For storage only",13,"De Lachay","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -950,255,"PER","METT",2016,"For storage only",13,"de Huayllay","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -948,256,"PER","METT",2016,"For storage only",13,"Calipuy","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -905,257,"PER","METT",2016,"For storage only",13,"del Manu","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -908,258,"PER","METT",2016,"For storage only",13,"Huascaran","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28258,259,"PER","METT",2013,"For storage only",28,"Cerros de Amotape","Parques Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -902,259,"PER","METT",2016,"For storage only",13,"Cerros de Amotape","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -912,260,"PER","METT",2016,"For storage only",13,"Tingo Maria","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -904,261,"PER","METT",2016,"For storage only",13,"Cutervo","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -946,262,"PER","METT",2016,"For storage only",13,"de Machupicchu","Santuarios Historicos","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -944,264,"PER","METT",2016,"For storage only",13,"Chacamarca","Santuarios Historicos","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -928,266,"PER","METT",2016,"For storage only",13,"de Calipuy","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -945,267,"PER","METT",2016,"For storage only",13,"De la Pampa de Ayacucho","Santuarios Historicos","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -13197,276,"SUR","METT",2010,"For storage only",28,"Sipaliwini","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13188,277,"SUR","METT",2010,"For storage only",28,"Brinck-heuvel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13189,279,"SUR","METT",2010,"For storage only",28,"Brownsberg","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13198,280,"SUR","METT",2010,"For storage only",28,"Wia-Wia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28182,281,"SUR","METT",2010,"For storage only",28,"Coppename Monding","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13192,282,"SUR","METT",2010,"For storage only",28,"Galibi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13854,305,"URY","METT",2005,"For storage only",28,"San Miguel","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13855,305,"URY","METT",2009,"For storage only",28,"San Miguel","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13822,306,"URY","METT",2005,"For storage only",28,"Arequita","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14041,308,"VEN","Venezuela Vision",2001,"For storage only",28,"Laguna de las Marites","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14040,308,"VEN","METT",2010,"For storage only",28,"Laguna de las Marites","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13993,309,"VEN","METT",0,"For storage only",28,"Cerro Santa Ana","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13998,309,"VEN","Venezuela Vision",2001,"For storage only",28,"Cerro Santa Ana","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14002,310,"VEN","METT",2010,"For storage only",28,"Cerros Matasiete y Guayamurí","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14003,310,"VEN","Venezuela Vision",2001,"For storage only",28,"Cerros Matasiete y Guayamurí","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14048,311,"VEN","Venezuela Vision",2001,"For storage only",28,"Tetas de Maria Guevara","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13991,313,"VEN","Venezuela Vision",2001,"For storage only",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13988,313,"VEN","Enhancing Our Heritage",2007,"For storage only",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13989,313,"VEN","Parks profiles",2004,"For storage only",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13987,313,"VEN","Enhancing Our Heritage",2002,"For storage only",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13990,313,"VEN","Venezuela Vision",1991,"For storage only",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13982,315,"VEN","Venezuela Vision",2001,"For storage only",28,"Aguaro-Guariquito","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13981,315,"VEN","Venezuela Vision",1991,"For storage only",28,"Aguaro-Guariquito","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14106,317,"VEN","Venezuela Vision",1991,"For storage only",28,"Yapacana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14107,317,"VEN","Venezuela Vision",2001,"For storage only",28,"Yapacana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14078,318,"VEN","Venezuela Vision",1991,"For storage only",28,"Perijá","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14079,318,"VEN","Venezuela Vision",2001,"For storage only",28,"Perijá","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14094,321,"VEN","Venezuela Vision",2001,"For storage only",28,"Sierra Nevada","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14093,321,"VEN","Venezuela Vision",1991,"For storage only",28,"Sierra Nevada","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14092,321,"VEN","METT",2005,"For storage only",28,"Sierra Nevada","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10923,321,"VEN","METT",0,"For storage only",28,"Sierra Nevada","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14022,322,"VEN","Venezuela Vision",1991,"For storage only",28,"El Tamá","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14023,322,"VEN","Venezuela Vision",2001,"For storage only",28,"El Tamá","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14073,323,"VEN","METT",0,"For storage only",28,"Henri Pittier","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14030,323,"VEN","Parks profiles",2005,"For storage only",28,"Henri Pittier","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14032,323,"VEN","Venezuela Vision",2001,"For storage only",28,"Henri Pittier","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14031,323,"VEN","Venezuela Vision",1991,"For storage only",28,"Henri Pittier","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14060,324,"VEN","Parks profiles",2002,"For storage only",28,"Mochima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14061,324,"VEN","Venezuela Vision",1991,"For storage only",28,"Mochima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14059,324,"VEN","METT",0,"For storage only",28,"Mochima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14062,324,"VEN","Venezuela Vision",2001,"For storage only",28,"Mochima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14029,325,"VEN","Venezuela Vision",2001,"For storage only",28,"Guatopo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14027,325,"VEN","Parks profiles",2004,"For storage only",28,"Guatopo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14028,325,"VEN","Venezuela Vision",1991,"For storage only",28,"Guatopo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14102,327,"VEN","METT",2010,"For storage only",28,"El Avila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14018,327,"VEN","Venezuela Vision",2001,"For storage only",28,"El Avila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14019,327,"VEN","Parks profiles",2002,"For storage only",28,"El Avila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14017,327,"VEN","Venezuela Vision",1991,"For storage only",28,"El Avila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14075,328,"VEN","Parks profiles",2004,"For storage only",28,"Península de Paria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14071,328,"VEN","METT",2010,"For storage only",28,"Península de Paria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14077,328,"VEN","Venezuela Vision",2001,"For storage only",28,"Península de Paria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14076,328,"VEN","Venezuela Vision",1991,"For storage only",28,"Península de Paria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14110,330,"VEN","Venezuela Vision",2001,"For storage only",28,"Yurubí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14108,330,"VEN","Parks profiles",2004,"For storage only",28,"Yurubí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14109,330,"VEN","Venezuela Vision",1991,"For storage only",28,"Yurubí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14045,331,"VEN","Venezuela Vision",1991,"For storage only",28,"Laguna de Tacarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14043,331,"VEN","Parks profiles",2002,"For storage only",28,"Laguna de Tacarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14046,331,"VEN","Venezuela Vision",2001,"For storage only",28,"Laguna de Tacarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14042,331,"VEN","METT",2010,"For storage only",28,"Laguna de Tacarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14097,332,"VEN","Venezuela Vision",1991,"For storage only",28,"Terepaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14098,332,"VEN","Venezuela Vision",2001,"For storage only",28,"Terepaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14096,332,"VEN","Parks profiles",2003,"For storage only",28,"Terepaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14021,333,"VEN","Venezuela Vision",2001,"For storage only",28,"El Guácharo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14020,333,"VEN","Venezuela Vision",1991,"For storage only",28,"El Guácharo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14053,334,"VEN","Venezuela Vision",1991,"For storage only",28,"Macarao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14054,334,"VEN","Venezuela Vision",2001,"For storage only",28,"Macarao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14052,334,"VEN","Parks profiles",2001,"For storage only",28,"Macarao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14103,335,"VEN","Parks profiles",2003,"For storage only",28,"Yacambú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14105,335,"VEN","Venezuela Vision",2001,"For storage only",28,"Yacambú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14104,335,"VEN","Venezuela Vision",1991,"For storage only",28,"Yacambú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14039,336,"VEN","METT",2010,"For storage only",28,"Laguna de la Restinga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14038,336,"VEN","Venezuela Vision",2001,"For storage only",28,"Laguna de la Restinga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14037,336,"VEN","Venezuela Vision",1991,"For storage only",28,"Laguna de la Restinga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14036,336,"VEN","Parks profiles",2002,"For storage only",28,"Laguna de la Restinga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14010,337,"VEN","Venezuela Vision",1991,"For storage only",28,"Cueva de la Quebrada del Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14011,337,"VEN","Venezuela Vision",2001,"For storage only",28,"Cueva de la Quebrada del Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13996,338,"VEN","Venezuela Vision",2001,"For storage only",28,"Cerro El Copey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13995,338,"VEN","Venezuela Vision",1991,"For storage only",28,"Cerro El Copey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13994,338,"VEN","Parks profiles",2002,"For storage only",28,"Cerro El Copey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13944,342,"VIR","USA SOP",2008,"For storage only",28,"Virgin Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15125,347,"AGO","METT",2011,"For storage only",28,"National Park Iona","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15126,348,"AGO","METT",2012,"For storage only",28,"National Park Quiçãma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15123,350,"AGO","METT",2012,"For storage only",28,"National Park Bicuar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15124,351,"AGO","METT",2012,"For storage only",28,"National Park Cangandala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20139,353,"AUS","NSW SOP",2013,"For storage only",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20137,353,"AUS","NSW SOP",2007,"For storage only",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20140,353,"AUS","NSW SOP",2004,"For storage only",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20136,353,"AUS","NSW SOP",2005,"For storage only",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20138,353,"AUS","NSW SOP",2010,"For storage only",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19352,354,"AUS","NSW SOP",2010,"For storage only",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19351,354,"AUS","NSW SOP",2007,"For storage only",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19353,354,"AUS","NSW SOP",2013,"For storage only",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19354,354,"AUS","NSW SOP",2004,"For storage only",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19350,354,"AUS","NSW SOP",2005,"For storage only",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15771,356,"AUS","NSW SOP",2013,"For storage only",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15770,356,"AUS","NSW SOP",2004,"For storage only",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15769,356,"AUS","NSW SOP",2010,"For storage only",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15767,356,"AUS","NSW SOP",2005,"For storage only",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15768,356,"AUS","NSW SOP",2007,"For storage only",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18040,358,"AUS","NSW SOP",2004,"For storage only",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18038,358,"AUS","NSW SOP",2010,"For storage only",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18036,358,"AUS","NSW SOP",2005,"For storage only",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18037,358,"AUS","NSW SOP",2007,"For storage only",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18039,358,"AUS","NSW SOP",2013,"For storage only",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17636,359,"AUS","NSW SOP",2004,"For storage only",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17632,359,"AUS","NSW SOP",2005,"For storage only",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17634,359,"AUS","NSW SOP",2010,"For storage only",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17635,359,"AUS","NSW SOP",2013,"For storage only",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17633,359,"AUS","NSW SOP",2007,"For storage only",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18385,360,"AUS","NSW SOP",2005,"For storage only",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18388,360,"AUS","NSW SOP",2013,"For storage only",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18389,360,"AUS","NSW SOP",2004,"For storage only",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18387,360,"AUS","NSW SOP",2010,"For storage only",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18386,360,"AUS","NSW SOP",2007,"For storage only",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17248,361,"AUS","NSW SOP",2013,"For storage only",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17256,361,"AUS","NSW SOP",2004,"For storage only",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17247,361,"AUS","NSW SOP",2010,"For storage only",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17245,361,"AUS","NSW SOP",2005,"For storage only",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17246,361,"AUS","NSW SOP",2007,"For storage only",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18693,362,"AUS","NSW SOP",2013,"For storage only",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18694,362,"AUS","NSW SOP",2004,"For storage only",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18692,362,"AUS","NSW SOP",2010,"For storage only",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18690,362,"AUS","NSW SOP",2005,"For storage only",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18691,362,"AUS","NSW SOP",2007,"For storage only",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18689,362,"AUS","Birdlife IBA",2008,"For storage only",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18608,363,"AUS","NSW SOP",2007,"For storage only",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18609,363,"AUS","NSW SOP",2010,"For storage only",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18611,363,"AUS","NSW SOP",2004,"For storage only",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18607,363,"AUS","NSW SOP",2005,"For storage only",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18610,363,"AUS","NSW SOP",2013,"For storage only",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19831,365,"AUS","NSW SOP",2007,"For storage only",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19834,365,"AUS","NSW SOP",2004,"For storage only",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19833,365,"AUS","NSW SOP",2013,"For storage only",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19832,365,"AUS","NSW SOP",2010,"For storage only",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19830,365,"AUS","NSW SOP",2005,"For storage only",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17063,366,"AUS","NSW SOP",2010,"For storage only",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17061,366,"AUS","NSW SOP",2005,"For storage only",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17062,366,"AUS","NSW SOP",2007,"For storage only",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17065,366,"AUS","NSW SOP",2004,"For storage only",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17064,366,"AUS","NSW SOP",2013,"For storage only",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19139,368,"AUS","NSW SOP",2005,"For storage only",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19143,368,"AUS","NSW SOP",2004,"For storage only",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19141,368,"AUS","NSW SOP",2010,"For storage only",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19140,368,"AUS","NSW SOP",2007,"For storage only",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19142,368,"AUS","NSW SOP",2013,"For storage only",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19904,370,"AUS","NSW SOP",2007,"For storage only",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19903,370,"AUS","NSW SOP",2005,"For storage only",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19906,370,"AUS","NSW SOP",2013,"For storage only",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19905,370,"AUS","NSW SOP",2010,"For storage only",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19909,370,"AUS","NSW SOP",2004,"For storage only",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19902,370,"AUS","Birdlife IBA",2008,"For storage only",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16747,371,"AUS","NSW SOP",2004,"For storage only",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16745,371,"AUS","NSW SOP",2010,"For storage only",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16743,371,"AUS","NSW SOP",2005,"For storage only",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16746,371,"AUS","NSW SOP",2013,"For storage only",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16744,371,"AUS","NSW SOP",2007,"For storage only",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15608,372,"AUS","NSW SOP",2010,"For storage only",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15609,372,"AUS","NSW SOP",2013,"For storage only",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15607,372,"AUS","NSW SOP",2007,"For storage only",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15606,372,"AUS","NSW SOP",2005,"For storage only",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15610,372,"AUS","NSW SOP",2004,"For storage only",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16391,373,"AUS","NSW SOP",2010,"For storage only",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16390,373,"AUS","NSW SOP",2007,"For storage only",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16397,373,"AUS","NSW SOP",2004,"For storage only",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16392,373,"AUS","NSW SOP",2013,"For storage only",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16389,373,"AUS","NSW SOP",2005,"For storage only",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19868,374,"AUS","NSW SOP",2013,"For storage only",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19867,374,"AUS","NSW SOP",2010,"For storage only",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19865,374,"AUS","NSW SOP",2005,"For storage only",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19866,374,"AUS","NSW SOP",2007,"For storage only",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19869,374,"AUS","NSW SOP",2004,"For storage only",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15964,375,"AUS","NSW SOP",2010,"For storage only",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15962,375,"AUS","NSW SOP",2005,"For storage only",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15963,375,"AUS","NSW SOP",2007,"For storage only",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15965,375,"AUS","NSW SOP",2013,"For storage only",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15966,375,"AUS","NSW SOP",2004,"For storage only",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16582,378,"AUS","NSW SOP",2013,"For storage only",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16580,378,"AUS","NSW SOP",2007,"For storage only",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16579,378,"AUS","NSW SOP",2005,"For storage only",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16583,378,"AUS","NSW SOP",2004,"For storage only",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16581,378,"AUS","NSW SOP",2010,"For storage only",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16783,379,"AUS","NSW SOP",2007,"For storage only",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16782,379,"AUS","NSW SOP",2005,"For storage only",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16786,379,"AUS","NSW SOP",2004,"For storage only",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16785,379,"AUS","NSW SOP",2013,"For storage only",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16784,379,"AUS","NSW SOP",2010,"For storage only",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18375,382,"AUS","NSW SOP",2004,"For storage only",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18374,382,"AUS","NSW SOP",2013,"For storage only",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18373,382,"AUS","NSW SOP",2010,"For storage only",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18372,382,"AUS","NSW SOP",2007,"For storage only",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18371,382,"AUS","NSW SOP",2005,"For storage only",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17278,384,"AUS","NSW SOP",2010,"For storage only",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17280,384,"AUS","NSW SOP",2004,"For storage only",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17279,384,"AUS","NSW SOP",2013,"For storage only",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17276,384,"AUS","NSW SOP",2005,"For storage only",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17277,384,"AUS","NSW SOP",2007,"For storage only",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15450,387,"AUS","NSW SOP",2013,"For storage only",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15449,387,"AUS","NSW SOP",2010,"For storage only",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15448,387,"AUS","NSW SOP",2007,"For storage only",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15447,387,"AUS","NSW SOP",2005,"For storage only",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15451,387,"AUS","NSW SOP",2004,"For storage only",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18569,389,"AUS","NSW SOP",2013,"For storage only",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18566,389,"AUS","NSW SOP",2005,"For storage only",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18568,389,"AUS","NSW SOP",2010,"For storage only",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18570,389,"AUS","NSW SOP",2004,"For storage only",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18567,389,"AUS","NSW SOP",2007,"For storage only",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15900,391,"AUS","NSW SOP",2013,"For storage only",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15898,391,"AUS","NSW SOP",2007,"For storage only",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15899,391,"AUS","NSW SOP",2010,"For storage only",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15901,391,"AUS","NSW SOP",2004,"For storage only",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15897,391,"AUS","NSW SOP",2005,"For storage only",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18006,392,"AUS","NSW SOP",2010,"For storage only",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18005,392,"AUS","NSW SOP",2007,"For storage only",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18004,392,"AUS","NSW SOP",2005,"For storage only",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18007,392,"AUS","NSW SOP",2013,"For storage only",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18011,392,"AUS","NSW SOP",2004,"For storage only",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17543,393,"AUS","Birdlife IBA",2008,"For storage only",28,"Kakadu","National Park (Commonwealth)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19114,398,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17836,398,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19317,400,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Staaten River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19318,400,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Staaten River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19316,400,"AUS","Birdlife IBA",2008,"For storage only",28,"Staaten River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16250,403,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Carnarvon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16251,403,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Carnarvon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15913,404,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bowling Green Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15912,404,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bowling Green Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16649,405,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Daintree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16650,405,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Daintree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19922,406,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Whitsunday Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19923,406,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Whitsunday Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16883,407,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Eungella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16884,407,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Eungella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17320,409,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Hinchinbrook Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17321,409,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Hinchinbrook Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16217,410,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Cape Melville (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16218,410,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Cape Melville (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16756,420,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16755,420,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17079,421,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Girraween","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17080,421,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Girraween","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18300,423,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Barney","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18299,423,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Barney","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19319,424,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19320,424,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19298,426,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Southwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19297,426,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Southwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15753,428,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Blackdown Tableland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15754,428,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Blackdown Tableland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16310,430,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16224,431,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Cape Upstart","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16225,431,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Cape Upstart","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16886,432,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Eurimbula","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16885,432,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Eurimbula","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17420,433,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Isla Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17419,433,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Isla Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16963,434,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Forty Mile Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16962,434,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Forty Mile Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16276,435,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Castle Tower","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16275,435,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Castle Tower","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18096,436,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mazeppa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18097,436,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mazeppa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18462,440,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Walsh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18461,440,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Walsh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18987,441,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Porcupine Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18986,441,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Porcupine Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18293,442,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Aberdeen","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18292,442,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Aberdeen","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15541,444,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Barron Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15540,444,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Barron Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16864,445,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16863,445,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18013,446,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Magnetic Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18014,446,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Magnetic Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16859,447,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Endeavour River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16858,447,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Endeavour River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16370,451,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Clump Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16371,451,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Clump Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19152,454,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Russell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19151,454,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Russell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18850,456,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Orpheus Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18849,456,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Orpheus Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16209,458,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Cape Hillsborough","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16210,458,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Cape Hillsborough","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19262,459,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Snake Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19261,459,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Snake Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17945,460,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Lizard Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17944,460,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Lizard Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17356,462,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Hull River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17357,462,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Hull River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17198,463,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Grey Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17199,463,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Grey Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18995,465,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Possession Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18996,465,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Possession Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16950,475,"AUS","Birdlife IBA",2008,"For storage only",28,"Ikara-Flinders Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17217,494,"AUS","Birdlife IBA",2008,"For storage only",28,"Gum Lagoon","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18919,498,"AUS","Birdlife IBA",2008,"For storage only",28,"Peebinga","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15616,517,"AUS","Birdlife IBA",2008,"For storage only",28,"Ben Lomond","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18068,522,"AUS","Birdlife IBA",2008,"For storage only",28,"Maria Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15675,528,"AUS","Victorian SOP",2013,"For storage only",28,"Big Desert","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15674,528,"AUS","Victorian SOP",2010,"For storage only",28,"Big Desert","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15673,528,"AUS","Victorian SOP",2005,"For storage only",28,"Big Desert","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20134,529,"AUS","Victorian SOP",2010,"For storage only",28,"Wyperfeld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20133,529,"AUS","Victorian SOP",2005,"For storage only",28,"Wyperfeld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20135,529,"AUS","Victorian SOP",2013,"For storage only",28,"Wyperfeld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17284,533,"AUS","Victorian SOP",2013,"For storage only",28,"Hattah - Kulkyne National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17282,533,"AUS","Victorian SOP",2005,"For storage only",28,"Hattah - Kulkyne National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17283,533,"AUS","Victorian SOP",2010,"For storage only",28,"Hattah - Kulkyne National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18311,535,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Buffalo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18313,535,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Buffalo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18312,535,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Buffalo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16485,541,"AUS","Victorian SOP",2013,"For storage only",28,"Coopracambra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16483,541,"AUS","Victorian SOP",2005,"For storage only",28,"Coopracambra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16484,541,"AUS","Victorian SOP",2010,"For storage only",28,"Coopracambra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17639,543,"AUS","Victorian SOP",2013,"For storage only",28,"Kinglake National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17637,543,"AUS","Victorian SOP",2005,"For storage only",28,"Kinglake National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17638,543,"AUS","Victorian SOP",2010,"For storage only",28,"Kinglake National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17337,544,"AUS","Victorian SOP",2010,"For storage only",28,"Holey Plains","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17338,544,"AUS","Victorian SOP",2013,"For storage only",28,"Holey Plains","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17336,544,"AUS","Victorian SOP",2005,"For storage only",28,"Holey Plains","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18450,545,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Samaria","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18451,545,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Samaria","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18452,545,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Samaria","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15960,546,"AUS","Victorian SOP",2010,"For storage only",28,"Brisbane Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15959,546,"AUS","Victorian SOP",2005,"For storage only",28,"Brisbane Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15961,546,"AUS","Victorian SOP",2013,"For storage only",28,"Brisbane Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19486,549,"AUS","Victorian SOP",2010,"For storage only",28,"The Lakes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19488,549,"AUS","Victorian SOP",2013,"For storage only",28,"The Lakes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19487,549,"AUS","Victorian SOP",2005,"For storage only",28,"The Lakes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15342,550,"AUS","Victorian SOP",2013,"For storage only",28,"Alfred National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15341,550,"AUS","Victorian SOP",2005,"For storage only",28,"Alfred National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15340,550,"AUS","Victorian SOP",2010,"For storage only",28,"Alfred National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18444,551,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Richmond National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18443,551,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Richmond National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18442,551,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Richmond National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17898,552,"AUS","Victorian SOP",2013,"For storage only",28,"Lind National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17897,552,"AUS","Victorian SOP",2005,"For storage only",28,"Lind National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17896,552,"AUS","Victorian SOP",2010,"For storage only",28,"Lind National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16925,558,"AUS","Birdlife IBA",2008,"For storage only",28,"Fitzgerald River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19322,562,"AUS","Birdlife IBA",2008,"For storage only",28,"Stirling Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10614,597,"BEN","IMET",2016,"For storage only",27,"Boucle de la Pendjari","National Park","JRC IMET information","JRC",2018,"English",FALSE -10750,597,"BEN","Birdlife IBA",2001,"For storage only",28,"Boucle de la Pendjari","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14294,600,"BWA","METT",2013,"For storage only",28,"Chobe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14295,600,"BWA","Birdlife IBA",2001,"For storage only",28,"Chobe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10778,602,"BGR","RAPPAM",2004,"For storage only",28,"Pirin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10796,603,"BGR","RAPPAM",2004,"For storage only",28,"Vitosha","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10788,604,"BGR","RAPPAM",2004,"For storage only",28,"Rusenski Lom","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10585,606,"CMR","IMET",2015,"For storage only",27,"Bouba Ndjida","National Park","JRC IMET information","JRC",2018,"English",FALSE -11081,606,"CMR","RAPPAM",2002,"For storage only",28,"Bouba Ndjida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11073,607,"CMR","Birdlife IBA",2001,"For storage only",28,"Bénoué","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10586,607,"CMR","IMET",2015,"For storage only",27,"Bénoué","National Park","JRC IMET information","JRC",2018,"English",FALSE -11080,607,"CMR","RAPPAM",2002,"For storage only",28,"Bénoué","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11146,608,"CMR","RAPPAM",2002,"For storage only",28,"Waza","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11147,608,"CMR","Birdlife IBA",2001,"For storage only",28,"Waza","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11107,609,"CMR","RAPPAM",2002,"For storage only",28,"Kalamaloué","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11132,610,"CMR","RAPPAM",2002,"For storage only",28,"Mozogo Gokoro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21992,611,"CAN","Ecological Integrity Monitoring",2009,"For storage only",36,"Wood Buffalo National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21928,612,"CAN","Parks Canada",2008,"For storage only",28,"Kluane National Park Reserve of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21968,612,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Kluane National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21973,613,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Auyuittuq National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21926,614,"CAN","Parks Canada",2008,"For storage only",28,"Jasper National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21951,614,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Jasper National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21949,615,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Banff National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21913,615,"CAN","Parks Canada",2008,"For storage only",28,"Banff National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21987,616,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Nahanni National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21985,617,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Prince Albert National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21937,617,"CAN","Parks Canada",2005,"For storage only",28,"Prince Albert National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21960,618,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Riding Mountain National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21923,619,"CAN","Parks Canada",2005,"For storage only",28,"Gros Morne National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21962,619,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Gros Morne National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21981,620,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Pukaskwa National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21953,621,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Kootenay National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21930,621,"CAN","Parks Canada",2008,"For storage only",28,"Kootenay National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21921,622,"CAN","Parks Canada",2008,"For storage only",28,"Glacier National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21954,622,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Glacier National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21955,623,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Yoho National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21948,623,"CAN","Parks Canada",2008,"For storage only",28,"Yoho National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21969,624,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Cape Breton Highlands National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21952,626,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Waterton Lakes National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21946,626,"CAN","Parks Canada",2008,"For storage only",28,"Waterton Lakes National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21958,628,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Pacific Rim National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21970,629,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Kejimkujik National Park and National Historic Site of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21934,630,"CAN","Parks Canada",2008,"For storage only",28,"Mount Revelstoke National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21956,630,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Mount Revelstoke National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21965,632,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Kouchibouguac National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21963,633,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Fundy National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21950,634,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Elk Island National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21971,635,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Prince Edward Island National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21982,636,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Point Pelee National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21942,638,"CAN","Parks Canada",2004,"For storage only",28,"St. Lawrence Islands National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21991,638,"CAN","Ecological Integrity Monitoring",2018,"For storage only",36,"St. Lawrence Islands National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -10944,639,"CAF","Birdlife IBA",2001,"For storage only",28,"Bamingui-Bangoran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13247,641,"TCD","RAPPAM",2008,"For storage only",28,"Zakouma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13241,642,"TCD","RAPPAM",2008,"For storage only",28,"Manda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11231,643,"COG","GOBI Survey",2006,"For storage only",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11228,643,"COG","RAPPAM",2012,"For storage only",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11188,643,"COG","METT",2005,"For storage only",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11232,643,"COG","METT",2007,"For storage only",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10592,643,"COG","IMET",2015,"For storage only",27,"Odzala Kokoua","National Park","JRC IMET information","JRC",2018,"English",FALSE -11227,643,"COG","METT",2006,"For storage only",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11229,643,"COG","Birdlife IBA",2001,"For storage only",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11226,643,"COG","Africa Rainforest Study",2001,"For storage only",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14783,652,"ETH","Birdlife IBA",2013,"For storage only",28,"Awash","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14782,652,"ETH","METT",2005,"For storage only",28,"Awash","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14795,653,"ETH","METT",2005,"For storage only",28,"Simien Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22058,654,"FIN","RAPPAM",2004,"For storage only",28,"Lemmenjoen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22059,654,"FIN","Birdlife IBA",2010,"For storage only",28,"Lemmenjoen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22100,655,"FIN","RAPPAM",2004,"For storage only",28,"Pallas-Yllästunturin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22092,656,"FIN","Birdlife IBA",2010,"For storage only",28,"Oulangan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22084,656,"FIN","METT",2003,"For storage only",28,"Oulangan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22069,657,"FIN","Birdlife IBA",2010,"For storage only",28,"Pyhä-Luoston kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22118,657,"FIN","RAPPAM",2004,"For storage only",28,"Pyhä-Luoston kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22117,658,"FIN","RAPPAM",2004,"For storage only",28,"Pyhä-Häkin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11560,659,"FRA","European Diploma",1990,"For storage only",28,"Ecrins","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11557,659,"FRA","French National Parks",2008,"For storage only",28,"Ecrins","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11556,660,"FRA","French National Parks",2008,"For storage only",28,"Cévennes","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11578,661,"FRA","European Diploma",1976,"For storage only",28,"Vanoise","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11579,661,"FRA","French National Parks",2008,"For storage only",28,"Vanoise","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11574,662,"FRA","French National Parks",2008,"For storage only",28,"Pyrénées","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11573,663,"FRA","French National Parks",2008,"For storage only",28,"Port-Cros","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11572,663,"FRA","European Diploma",1997,"For storage only",28,"Port-Cros","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11565,664,"FRA","French National Parks",2008,"For storage only",28,"Mercantour","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11564,664,"FRA","European Diploma",1993,"For storage only",28,"Mercantour","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -844,667,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2013,"For storage only",11,"Bavarian Forest","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -845,668,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2011,"For storage only",11,"Berchtesgaden","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -10702,668,"DEU","European SCS",2007,"For storage only",28,"Berchtesgaden","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11607,672,"GHA","Birdlife IBA",2001,"For storage only",28,"Bia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11605,672,"GHA","Africa Rainforest Study",2001,"For storage only",28,"Bia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -235,673,"GRC","METT",2003,"For storage only",8,"Pindos","Core zone in National (Woodland) Park","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -20308,686,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Kanha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20306,686,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Kanha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20307,686,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Kanha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -28087,687,"IND","METT",2003,"For storage only",28,"Gir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20505,687,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Gir","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20416,689,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Khangchendzonga","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20280,690,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Corbett","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20279,690,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Corbett","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20281,690,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Corbett","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -28085,691,"IND","METT",2003,"For storage only",28,"Dudhwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20284,691,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Dudhwa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20283,691,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Dudhwa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20282,691,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Dudhwa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20373,692,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Kaziranga","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20372,692,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Kaziranga","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20289,694,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Pench","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20291,694,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Pench","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -28091,694,"IND","METT",2004,"For storage only",28,"Pench","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20290,694,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Pench","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20410,694,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Pench","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -28088,694,"IND","METT",2001,"For storage only",28,"Pench","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28089,694,"IND","METT",2002,"For storage only",28,"Pench","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28090,694,"IND","METT",2003,"For storage only",28,"Pench","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20301,698,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Tadoba","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20300,698,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Tadoba","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20302,698,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Tadoba","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20304,699,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Bandhavgarh","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20305,699,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Bandhavgarh","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20303,699,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Bandhavgarh","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20428,700,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Eravikulam","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20475,702,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Velavadar (Blackbuck)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -14916,708,"IRN","Birdlife IBA",1994,"For storage only",28,"Arjan or Ajan and Parishan","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14931,708,"IRN","METT",2009,"For storage only",28,"Arjan or Ajan and Parishan","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14928,709,"IRN","Birdlife IBA",1994,"For storage only",28,"Hara","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11701,718,"ITA","European Diploma",2006,"For storage only",28,"Parco nazionale del Gran Paradiso","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11697,719,"ITA","European Diploma",1967,"For storage only",28,"Parco nazionale Abruzzo, Lazio e Molise","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10620,721,"CIV","IMET",2016,"For storage only",27,"Tai National Park","National Park","JRC IMET information","JRC",2018,"English",FALSE -219,721,"CIV","METT",2017,"For storage only",7,"Tai National Park","National Park","Côte d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French",FALSE -222,723,"CIV","METT",2017,"For storage only",7,"Mont Sangbe National Park","National Park","Côte d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French",FALSE -10622,723,"CIV","IMET",2016,"For storage only",27,"Mont Sangbe National Park","National Park","JRC IMET information","JRC",2018,"English",FALSE -10623,725,"CIV","IMET",2016,"For storage only",27,"Banco National Park","National Park","JRC IMET information","JRC",2018,"English",FALSE -11834,752,"KEN","Birdlife IBA",1999,"For storage only",28,"Tsavo East","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11813,755,"KEN","Birdlife IBA",1999,"For storage only",28,"Meru","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11770,758,"KEN","Birdlife IBA",1999,"For storage only",28,"Amboseli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28221,759,"KEN","METT",2014,"For storage only",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28251,759,"KEN","METT",2007,"For storage only",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11828,759,"KEN","METT",2006,"For storage only",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11827,759,"KEN","METT",2004,"For storage only",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28218,759,"KEN","METT",2013,"For storage only",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11824,761,"KEN","Birdlife IBA",1999,"For storage only",28,"Nairobi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11807,762,"KEN","Birdlife IBA",1999,"For storage only",28,"Lake Nakuru","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11804,763,"KEN","West Indian Ocean MPA",2003,"For storage only",28,"Kisite","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11810,765,"KEN","West Indian Ocean MPA",2003,"For storage only",28,"Mallindi","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9838,766,"KOR","Korea SOP",2016,"For storage only",26,"Hallyeohaesang","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9839,767,"KOR","Korea SOP",2016,"For storage only",26,"Jirisan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9843,768,"KOR","Korea SOP",2016,"For storage only",26,"Seoraksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9842,769,"KOR","Korea SOP",2016,"For storage only",26,"Odaesan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9833,770,"KOR","Korea SOP",2016,"For storage only",26,"Deogyusan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9835,772,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongju","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9844,773,"KOR","Korea SOP",2016,"For storage only",26,"Songnisan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9841,774,"KOR","Korea SOP",2016,"For storage only",26,"Naejangsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9836,775,"KOR","Korea SOP",2016,"For storage only",26,"Gyeryongsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9834,776,"KOR","Korea SOP",2016,"For storage only",26,"Gayasan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -15072,779,"MWI","RAPPAM",2006,"For storage only",28,"Nyika","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15057,780,"MWI","RAPPAM",2006,"For storage only",28,"Kasungu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12037,797,"MRT","RAPPAM",2009,"For storage only",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10627,797,"MRT","IMET",2016,"For storage only",27,"Banc d'Arguin","National Park","JRC IMET information","JRC",2018,"English",FALSE -12054,797,"MRT","Enhancing Our Heritage",2009,"For storage only",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12040,797,"MRT","Birdlife IBA",2001,"For storage only",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12036,797,"MRT","MPA MEE",2003,"For storage only",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12038,797,"MRT","RAPPAM",2007,"For storage only",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11998,798,"MNG","RAPPAM",2005,"For storage only",28,"Great Gobi","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28103,799,"MOZ","METT",1999,"For storage only",28,"Banhine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28102,799,"MOZ","METT",2006,"For storage only",28,"Banhine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9563,799,"MOZ","METT",2014,"For storage only",21,"Banhine","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -28101,799,"MOZ","METT",2004,"For storage only",28,"Banhine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9564,799,"MOZ","METT",2015,"For storage only",21,"Banhine","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9562,799,"MOZ","RAPPAM",2006,"For storage only",21,"Banhine","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -28104,799,"MOZ","METT",2002,"For storage only",28,"Banhine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9565,799,"MOZ","METT",2016,"For storage only",21,"Banhine","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9567,800,"MOZ","METT",2014,"For storage only",21,"Zinave","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9568,800,"MOZ","METT",2015,"For storage only",21,"Zinave","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9569,800,"MOZ","METT",2016,"For storage only",21,"Zinave","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9566,800,"MOZ","RAPPAM",2006,"For storage only",21,"Zinave","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9575,801,"MOZ","METT",2010,"For storage only",21,"Gorongosa","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9576,801,"MOZ","METT",2015,"For storage only",21,"Gorongosa","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9574,801,"MOZ","RAPPAM",2006,"For storage only",21,"Gorongosa","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9573,802,"MOZ","METT",2016,"For storage only",21,"Bazaruto","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9572,802,"MOZ","METT",2015,"For storage only",21,"Bazaruto","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9570,802,"MOZ","RAPPAM",2006,"For storage only",21,"Bazaruto","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9571,802,"MOZ","METT",2014,"For storage only",21,"Bazaruto","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -12233,803,"NPL","Birdlife IBA",2004,"For storage only",28,"Langtang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12257,804,"NPL","RAPPAM",2002,"For storage only",28,"Sagarmatha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12258,804,"NPL","Birdlife IBA",2004,"For storage only",28,"Sagarmatha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12256,804,"NPL","METT",2005,"For storage only",28,"Sagarmatha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12247,805,"NPL","METT",2003,"For storage only",28,"Chitwan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12248,805,"NPL","METT",2005,"For storage only",28,"Chitwan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12223,805,"NPL","Birdlife IBA",2004,"For storage only",28,"Chitwan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12243,806,"NPL","RAPPAM",2002,"For storage only",28,"Rara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12127,818,"NER","RAPPAM",2009,"For storage only",28,"Parc W Niger","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12128,818,"NER","RAPPAM",2010,"For storage only",28,"Parc W Niger","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20637,838,"PNG","RAPPAM",2004,"For storage only",28,"Mc Adams","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20662,839,"PNG","RAPPAM",2004,"For storage only",28,"Variarata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9793,851,"POL","European Diploma",1998,"For storage only",23,"Bieszczadzki Park Narodowy","National Park","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -12604,860,"PRT","Birdlife IBA",2005,"For storage only",28,"Peneda/Gerês","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28199,861,"ROU","METT",2009,"For storage only",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12704,861,"ROU","European Diploma",2008,"For storage only",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28203,861,"ROU","METT",2012,"For storage only",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12707,861,"ROU","PANPARKS",2004,"For storage only",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12709,861,"ROU","PANPARKS",2006,"For storage only",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12708,861,"ROU","PANPARKS",2005,"For storage only",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12682,861,"ROU","RAPPAM",2006,"For storage only",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12710,861,"ROU","PANPARKS",2007,"For storage only",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12706,861,"ROU","METT",2003,"For storage only",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15108,862,"RWA","Birdlife IBA",2013,"For storage only",28,"Akagera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15112,863,"RWA","Birdlife IBA",2001,"For storage only",28,"Volcans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15111,863,"RWA","METT",2004,"For storage only",28,"Volcans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13084,865,"SEN","Enhancing Our Heritage",2009,"For storage only",28,"Niokolo Koba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13083,865,"SEN","RAPPAM",2009,"For storage only",28,"Niokolo Koba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13089,865,"SEN","Birdlife IBA",2001,"For storage only",28,"Niokolo Koba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10640,865,"SEN","IMET",2016,"For storage only",27,"Niokolo Koba","National Park","JRC IMET information","JRC",2018,"English",FALSE -13067,866,"SEN","RAPPAM",2009,"For storage only",28,"Delta du Saloum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10634,866,"SEN","IMET",2016,"For storage only",27,"Delta du Saloum","National Park","JRC IMET information","JRC",2018,"English",FALSE -13088,866,"SEN","METT",0,"For storage only",28,"Delta du Saloum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10641,867,"SEN","IMET",2016,"For storage only",27,"Oiseaux de Djoudj","National Park","JRC IMET information","JRC",2018,"English",FALSE -13081,869,"SEN","METT",0,"For storage only",28,"Langue de Barbarie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13079,869,"SEN","RAPPAM",2009,"For storage only",28,"Langue de Barbarie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13080,869,"SEN","RAPPAM",2011,"For storage only",28,"Langue de Barbarie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13087,870,"SEN","METT",0,"For storage only",28,"Magdalen Islands (Iles de la Madeleine)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21434,873,"ZAF","METT",2012,"For storage only",28,"Kruger National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21435,873,"ZAF","METT",2013,"For storage only",28,"Kruger National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21433,873,"ZAF","METT",2010,"For storage only",28,"Kruger National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21384,874,"ZAF","Birdlife IBA",2008,"For storage only",28,"Kalahari Gemsbok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21383,874,"ZAF","METT",2013,"For storage only",28,"Kalahari Gemsbok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21382,874,"ZAF","METT",2012,"For storage only",28,"Kalahari Gemsbok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21107,875,"ZAF","METT",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21108,875,"ZAF","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21109,875,"ZAF","METT",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21110,875,"ZAF","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21401,876,"ZAF","METT",2012,"For storage only",28,"Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21403,876,"ZAF","METT",2013,"For storage only",28,"Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21400,876,"ZAF","METT",2010,"For storage only",28,"Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21402,876,"ZAF","Birdlife IBA",2007,"For storage only",28,"Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21561,877,"ZAF","METT",2012,"For storage only",28,"Mountain Zebra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21560,877,"ZAF","METT",2010,"For storage only",28,"Mountain Zebra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21562,877,"ZAF","METT",2013,"For storage only",28,"Mountain Zebra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21136,878,"ZAF","METT",2013,"For storage only",28,"Augrabies Falls National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21134,878,"ZAF","METT",2010,"For storage only",28,"Augrabies Falls National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21135,878,"ZAF","METT",2012,"For storage only",28,"Augrabies Falls National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21300,879,"ZAF","METT",2012,"For storage only",28,"Golden Gate Highlands National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21299,879,"ZAF","METT",2010,"For storage only",28,"Golden Gate Highlands National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21302,879,"ZAF","Birdlife IBA",2006,"For storage only",28,"Golden Gate Highlands National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21301,879,"ZAF","METT",2013,"For storage only",28,"Golden Gate Highlands National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21289,881,"ZAF","METT",2013,"For storage only",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21287,881,"ZAF","METT",0,"For storage only",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21751,881,"ZAF","METT",2007,"For storage only",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21750,881,"ZAF","METT",2005,"For storage only",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21288,881,"ZAF","METT",2012,"For storage only",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21286,881,"ZAF","METT",2010,"For storage only",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21179,882,"ZAF","METT",2010,"For storage only",28,"Bontebok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21181,882,"ZAF","METT",2013,"For storage only",28,"Bontebok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21180,882,"ZAF","METT",2012,"For storage only",28,"Bontebok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12102,883,"NAM","Birdlife IBA",2013,"For storage only",28,"Namib-Naukluft","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12100,883,"NAM","METT",2009,"For storage only",28,"Namib-Naukluft","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12089,883,"NAM","METT",2010,"For storage only",28,"Namib-Naukluft","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12104,883,"NAM","METT",2004,"For storage only",28,"Namib-Naukluft","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12087,884,"NAM","Birdlife IBA",2001,"For storage only",28,"Etosha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12108,885,"NAM","METT",2004,"For storage only",28,"Skeleton Coast Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12109,885,"NAM","METT",2011,"For storage only",28,"Skeleton Coast Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12110,885,"NAM","METT",2009,"For storage only",28,"Skeleton Coast Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12117,887,"NAM","METT",2011,"For storage only",28,"Waterberg Plateau Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12116,887,"NAM","METT",2009,"For storage only",28,"Waterberg Plateau Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14552,890,"ESP","Wetland tracking tool",2005,"For storage only",28,"Marismas del Río Palmones","Nature Place","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14549,893,"ESP","European Diploma",1985,"For storage only",28,"Ordesa y Monte Perdido","Nacional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15118,903,"SSD","METT",2009,"For storage only",28,"Southern","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14653,905,"SWE","European Diploma",1988,"For storage only",28,"Padjelanta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22194,905,"SWE","European Diploma",1967,"For storage only",28,"Padjelanta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22195,906,"SWE","European Diploma",1967,"For storage only",28,"Sarek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22197,915,"CHE","Annual Report",2017,"For storage only",37,"Schweizerischer Nationalpark","Swiss National Park","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -13683,916,"TZA","Birdlife IBA",2001,"For storage only",28,"Serengeti National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13648,917,"TZA","METT",2011,"For storage only",28,"Ruaha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13647,917,"TZA","Birdlife IBA",2002,"For storage only",28,"Ruaha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13645,917,"TZA","METT",2010,"For storage only",28,"Ruaha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13646,917,"TZA","METT",2013,"For storage only",28,"Ruaha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13608,918,"TZA","Birdlife IBA",2001,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13537,919,"TZA","Birdlife IBA",2002,"For storage only",28,"Mikumi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13539,919,"TZA","METT",2006,"For storage only",28,"Mikumi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13538,919,"TZA","METT",2007,"For storage only",28,"Mikumi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13694,920,"TZA","Birdlife IBA",2011,"For storage only",28,"Tarangire National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13406,921,"TZA","Birdlife IBA",2005,"For storage only",28,"Katavi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13473,924,"TZA","Birdlife IBA",2002,"For storage only",28,"Lake Manyara National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13339,925,"TZA","Birdlife IBA",2002,"For storage only",28,"Arusha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13263,927,"THA","Birdlife IBA",2007,"For storage only",28,"Khao Yai","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13262,927,"THA","Asean MEE",2012,"For storage only",28,"Khao Yai","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13287,929,"THA","Birdlife IBA",2007,"For storage only",28,"Thung Salaeng Luang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13280,931,"THA","Birdlife IBA",2007,"For storage only",28,"Phu Phan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13250,935,"THA","METT",2008,"For storage only",28,"Doi Inthanon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13258,938,"THA","METT",2008,"For storage only",28,"Khao Chamao-Khao Wong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13257,938,"THA","Birdlife IBA",2007,"For storage only",28,"Khao Chamao-Khao Wong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13259,940,"THA","Birdlife IBA",2007,"For storage only",28,"Khao Khitchakut","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28114,941,"TUN","METT",2013,"For storage only",28,"Ichkeul","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13764,956,"UGA","Birdlife IBA",2001,"For storage only",28,"Murchison Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13752,958,"UGA","Birdlife IBA",2001,"For storage only",28,"Kidepo Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13751,958,"UGA","METT",2012,"For storage only",28,"Kidepo Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13890,969,"USA","USA SOP",2003,"For storage only",28,"Denali","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13891,971,"USA","USA SOP",2006,"For storage only",28,"Everglades","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13924,974,"USA","USA SOP",2004,"For storage only",28,"Olympic","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13870,976,"USA","USA SOP",2003,"For storage only",28,"Big Bend","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13906,977,"USA","USA SOP",2007,"For storage only",28,"Isle Royale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13877,982,"USA","USA SOP",2004,"For storage only",28,"Canyonlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13935,984,"USA","USA SOP",2002,"For storage only",28,"Rocky Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13940,989,"USA","USA SOP",2003,"For storage only",28,"Shenandoah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13949,991,"USA","USA SOP",2005,"For storage only",28,"Zion","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13931,994,"USA","USA SOP",2008,"For storage only",28,"Redwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13875,1000,"USA","USA SOP",2005,"For storage only",28,"Bryce Canyon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13896,1010,"USA","USA SOP",2008,"For storage only",28,"Glacier Bay","National Park & Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13874,1024,"USA","USA SOP",2006,"For storage only",28,"Biscayne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13886,1033,"USA","USA SOP",2008,"For storage only",28,"Channel Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10618,1048,"BFA","IMET",2016,"For storage only",27,"W du Burkina Faso","National Park","JRC IMET information","JRC",2018,"English",FALSE -11958,1050,"MKD","METT",2007,"For storage only",28,"Mavrovo","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13168,1053,"SRB","METT",2009,"For storage only",28,"Nacionalni park Fruska Gora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13150,1053,"SRB","RAPPAM",2009,"For storage only",28,"Nacionalni park Fruska Gora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9370,1054,"HRV","METT",2014,"For storage only",19,"Plitvicka jezera","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9389,1054,"HRV","METT",2016,"For storage only",19,"Plitvicka jezera","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9351,1054,"HRV","METT",2012,"For storage only",19,"Plitvicka jezera","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9352,1058,"HRV","METT",2012,"For storage only",19,"Paklenica","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9390,1058,"HRV","METT",2016,"For storage only",19,"Paklenica","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9371,1058,"HRV","METT",2014,"For storage only",19,"Paklenica","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -28184,1059,"MNE","METT",2009,"For storage only",28,"Biogradska Gora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28202,1059,"MNE","METT",2012,"For storage only",28,"Biogradska Gora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13941,1066,"USA","USA SOP",2007,"For storage only",28,"Sleeping Bear Dunes","National Lakeshore","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13929,1067,"USA","USA SOP",2007,"For storage only",28,"Pictured Rocks","National Lakeshore","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13930,1068,"USA","USA SOP",2002,"For storage only",28,"Point Reyes","National Seashore","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13869,1072,"USA","USA SOP",2007,"For storage only",28,"Assateague Island","National Seashore","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13904,1077,"USA","USA SOP",2007,"For storage only",28,"Indiana Dunes","National Lakeshore","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11203,1079,"COD","METT",2010,"For storage only",28,"Upemba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11204,1079,"COD","RAPPAM",2010,"For storage only",28,"Upemba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11181,1080,"COD","METT",2010,"For storage only",28,"Maiko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11182,1080,"COD","RAPPAM",2010,"For storage only",28,"Maiko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11171,1082,"COD","METT",2010,"For storage only",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11169,1082,"COD","METT",2007,"For storage only",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11170,1082,"COD","METT",2013,"For storage only",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11172,1082,"COD","RAPPAM",2010,"For storage only",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11173,1082,"COD","Birdlife IBA",2001,"For storage only",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11157,1083,"COD","METT",2007,"For storage only",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11163,1083,"COD","Birdlife IBA",2001,"For storage only",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11162,1083,"COD","RAPPAM",2010,"For storage only",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11159,1083,"COD","METT",2009,"For storage only",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11160,1083,"COD","METT",2013,"For storage only",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11161,1083,"COD","METT",2010,"For storage only",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11158,1083,"COD","METT",2008,"For storage only",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11177,1084,"COD","RAPPAM",2010,"For storage only",28,"Kundelungu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11176,1084,"COD","METT",2010,"For storage only",28,"Kundelungu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14235,1085,"ZMB","METT",2006,"For storage only",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14236,1085,"ZMB","METT",2009,"For storage only",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14234,1085,"ZMB","METT",2005,"For storage only",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14232,1085,"ZMB","METT",2003,"For storage only",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14238,1085,"ZMB","Birdlife IBA",2001,"For storage only",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14233,1085,"ZMB","METT",2004,"For storage only",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14278,1086,"ZMB","Birdlife IBA",2001,"For storage only",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14263,1086,"ZMB","METT",2005,"For storage only",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14276,1086,"ZMB","METT",2006,"For storage only",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14277,1086,"ZMB","METT",2009,"For storage only",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14275,1086,"ZMB","METT",2004,"For storage only",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14262,1086,"ZMB","METT",2003,"For storage only",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14274,1087,"ZMB","Birdlife IBA",2001,"For storage only",28,"Sioma Ngwezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14271,1088,"ZMB","METT",2009,"For storage only",28,"North Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14269,1088,"ZMB","METT",2004,"For storage only",28,"North Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14270,1088,"ZMB","METT",2006,"For storage only",28,"North Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14272,1088,"ZMB","Birdlife IBA",2001,"For storage only",28,"North Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14247,1089,"ZMB","METT",2004,"For storage only",28,"Liuwa Plain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14246,1089,"ZMB","Birdlife IBA",2001,"For storage only",28,"Liuwa Plain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14264,1091,"ZMB","Birdlife IBA",2001,"For storage only",28,"Lukusuzi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14279,1092,"ZMB","Birdlife IBA",2005,"For storage only",28,"Nsumbu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28162,1094,"ZMB","METT",2009,"For storage only",28,"Lavushi Manda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14245,1094,"ZMB","METT",2004,"For storage only",28,"Lavushi Manda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28263,1094,"ZMB","METT",2013,"For storage only",28,"Lavushi Manda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14265,1095,"ZMB","Birdlife IBA",2005,"For storage only",28,"Lusenga Plain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14225,1097,"ZMB","METT",2006,"For storage only",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14222,1097,"ZMB","METT",2003,"For storage only",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14224,1097,"ZMB","METT",2005,"For storage only",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14226,1097,"ZMB","METT",2009,"For storage only",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14223,1097,"ZMB","METT",2004,"For storage only",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14252,1098,"ZMB","METT",2009,"For storage only",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14251,1098,"ZMB","METT",2006,"For storage only",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14249,1098,"ZMB","METT",2004,"For storage only",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14250,1098,"ZMB","METT",2005,"For storage only",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14248,1098,"ZMB","METT",2003,"For storage only",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14239,1099,"ZMB","METT",2003,"For storage only",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14242,1099,"ZMB","METT",2006,"For storage only",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14243,1099,"ZMB","METT",2009,"For storage only",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28262,1099,"ZMB","METT",2013,"For storage only",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14240,1099,"ZMB","METT",2004,"For storage only",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14241,1099,"ZMB","METT",2005,"For storage only",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14244,1099,"ZMB","Birdlife IBA",2001,"For storage only",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14283,1105,"ZWE","Birdlife IBA",2001,"For storage only",28,"Chizarira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14288,1111,"ZWE","Birdlife IBA",2001,"For storage only",28,"Nyanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14291,1120,"AFG","Birdlife IBA",1994,"For storage only",28,"Abe-e-Estada","Flamingo and Water Fowl Sanctuaries","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14292,1122,"AFG","Birdlife IBA",2008,"For storage only",28,"Band-e-Amir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20220,1129,"AUS","NSW SOP",2005,"For storage only",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20221,1129,"AUS","NSW SOP",2007,"For storage only",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20223,1129,"AUS","NSW SOP",2013,"For storage only",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20224,1129,"AUS","NSW SOP",2004,"For storage only",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20222,1129,"AUS","NSW SOP",2010,"For storage only",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18931,1130,"AUS","NSW SOP",2007,"For storage only",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18930,1130,"AUS","NSW SOP",2005,"For storage only",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18932,1130,"AUS","NSW SOP",2010,"For storage only",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18934,1130,"AUS","NSW SOP",2004,"For storage only",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18933,1130,"AUS","NSW SOP",2013,"For storage only",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18617,1132,"AUS","NSW SOP",2005,"For storage only",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18622,1132,"AUS","Birdlife IBA",2008,"For storage only",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18619,1132,"AUS","NSW SOP",2010,"For storage only",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18618,1132,"AUS","NSW SOP",2007,"For storage only",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18621,1132,"AUS","NSW SOP",2004,"For storage only",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18620,1132,"AUS","NSW SOP",2013,"For storage only",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19986,1136,"AUS","NSW SOP",2004,"For storage only",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19983,1136,"AUS","NSW SOP",2007,"For storage only",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19984,1136,"AUS","NSW SOP",2010,"For storage only",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19985,1136,"AUS","NSW SOP",2013,"For storage only",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19982,1136,"AUS","NSW SOP",2005,"For storage only",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17882,1137,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17883,1137,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17886,1137,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17884,1137,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18539,1138,"AUS","NSW SOP",2005,"For storage only",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18541,1138,"AUS","NSW SOP",2010,"For storage only",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18543,1138,"AUS","NSW SOP",2004,"For storage only",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18540,1138,"AUS","NSW SOP",2007,"For storage only",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18542,1138,"AUS","NSW SOP",2013,"For storage only",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15906,1139,"AUS","NSW SOP",2010,"For storage only",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15910,1139,"AUS","NSW SOP",2004,"For storage only",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15902,1139,"AUS","NSW SOP",2005,"For storage only",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15904,1139,"AUS","NSW SOP",2007,"For storage only",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15908,1139,"AUS","NSW SOP",2013,"For storage only",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16394,1140,"AUS","NSW SOP",2007,"For storage only",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16395,1140,"AUS","NSW SOP",2010,"For storage only",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16393,1140,"AUS","NSW SOP",2005,"For storage only",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16396,1140,"AUS","NSW SOP",2013,"For storage only",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16398,1140,"AUS","NSW SOP",2004,"For storage only",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20011,1141,"AUS","NSW SOP",2013,"For storage only",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20010,1141,"AUS","NSW SOP",2010,"For storage only",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20012,1141,"AUS","NSW SOP",2004,"For storage only",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20008,1141,"AUS","NSW SOP",2005,"For storage only",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20009,1141,"AUS","NSW SOP",2007,"For storage only",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18677,1142,"AUS","NSW SOP",2007,"For storage only",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18676,1142,"AUS","NSW SOP",2005,"For storage only",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18679,1142,"AUS","NSW SOP",2013,"For storage only",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18678,1142,"AUS","NSW SOP",2010,"For storage only",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18680,1142,"AUS","NSW SOP",2004,"For storage only",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18046,1143,"AUS","NSW SOP",2005,"For storage only",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18048,1143,"AUS","NSW SOP",2010,"For storage only",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18047,1143,"AUS","NSW SOP",2007,"For storage only",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18050,1143,"AUS","NSW SOP",2004,"For storage only",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18049,1143,"AUS","NSW SOP",2013,"For storage only",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15716,1144,"AUS","NSW SOP",2010,"For storage only",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15718,1144,"AUS","NSW SOP",2004,"For storage only",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15714,1144,"AUS","NSW SOP",2005,"For storage only",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15715,1144,"AUS","NSW SOP",2007,"For storage only",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15717,1144,"AUS","NSW SOP",2013,"For storage only",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17395,1145,"AUS","NSW SOP",2013,"For storage only",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17394,1145,"AUS","NSW SOP",2010,"For storage only",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17392,1145,"AUS","NSW SOP",2005,"For storage only",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17396,1145,"AUS","NSW SOP",2004,"For storage only",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17393,1145,"AUS","NSW SOP",2007,"For storage only",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16506,1147,"AUS","NSW SOP",2013,"For storage only",28,"Copperhannia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16505,1147,"AUS","NSW SOP",2010,"For storage only",28,"Copperhannia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16507,1147,"AUS","NSW SOP",2004,"For storage only",28,"Copperhannia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16504,1147,"AUS","NSW SOP",2005,"For storage only",28,"Copperhannia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19242,1148,"AUS","NSW SOP",2004,"For storage only",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19241,1148,"AUS","NSW SOP",2013,"For storage only",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19238,1148,"AUS","NSW SOP",2005,"For storage only",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19240,1148,"AUS","NSW SOP",2010,"For storage only",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19239,1148,"AUS","NSW SOP",2007,"For storage only",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17891,1149,"AUS","NSW SOP",2005,"For storage only",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17893,1149,"AUS","NSW SOP",2010,"For storage only",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17894,1149,"AUS","NSW SOP",2013,"For storage only",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17895,1149,"AUS","NSW SOP",2004,"For storage only",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17892,1149,"AUS","NSW SOP",2007,"For storage only",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19461,1150,"AUS","NSW SOP",2005,"For storage only",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19465,1150,"AUS","NSW SOP",2004,"For storage only",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19462,1150,"AUS","NSW SOP",2007,"For storage only",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19464,1150,"AUS","NSW SOP",2013,"For storage only",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19463,1150,"AUS","NSW SOP",2010,"For storage only",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18562,1151,"AUS","NSW SOP",2007,"For storage only",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18563,1151,"AUS","NSW SOP",2010,"For storage only",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18561,1151,"AUS","NSW SOP",2005,"For storage only",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18564,1151,"AUS","NSW SOP",2013,"For storage only",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18565,1151,"AUS","NSW SOP",2004,"For storage only",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16846,1152,"AUS","NSW SOP",2010,"For storage only",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16845,1152,"AUS","NSW SOP",2007,"For storage only",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16844,1152,"AUS","NSW SOP",2005,"For storage only",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16848,1152,"AUS","NSW SOP",2004,"For storage only",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16847,1152,"AUS","NSW SOP",2013,"For storage only",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15519,1153,"AUS","NSW SOP",2005,"For storage only",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15521,1153,"AUS","NSW SOP",2010,"For storage only",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15522,1153,"AUS","NSW SOP",2013,"For storage only",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15523,1153,"AUS","NSW SOP",2004,"For storage only",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15520,1153,"AUS","NSW SOP",2007,"For storage only",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19230,1154,"AUS","NSW SOP",2004,"For storage only",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19228,1154,"AUS","NSW SOP",2010,"For storage only",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19226,1154,"AUS","NSW SOP",2005,"For storage only",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19229,1154,"AUS","NSW SOP",2013,"For storage only",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19227,1154,"AUS","NSW SOP",2007,"For storage only",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20158,1155,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20159,1155,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20157,1155,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20164,1155,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16463,1156,"AUS","NSW SOP",2013,"For storage only",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16464,1156,"AUS","NSW SOP",2004,"For storage only",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16461,1156,"AUS","NSW SOP",2007,"For storage only",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16460,1156,"AUS","NSW SOP",2005,"For storage only",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16462,1156,"AUS","NSW SOP",2010,"For storage only",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17041,1159,"AUS","NSW SOP",2010,"For storage only",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17043,1159,"AUS","NSW SOP",2004,"For storage only",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17042,1159,"AUS","NSW SOP",2013,"For storage only",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17040,1159,"AUS","NSW SOP",2007,"For storage only",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17039,1159,"AUS","NSW SOP",2005,"For storage only",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18534,1160,"AUS","NSW SOP",2007,"For storage only",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18533,1160,"AUS","NSW SOP",2005,"For storage only",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18535,1160,"AUS","NSW SOP",2010,"For storage only",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18537,1160,"AUS","NSW SOP",2004,"For storage only",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18536,1160,"AUS","NSW SOP",2013,"For storage only",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19747,1161,"AUS","NSW SOP",2013,"For storage only",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19746,1161,"AUS","NSW SOP",2004,"For storage only",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19745,1161,"AUS","NSW SOP",2010,"For storage only",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19744,1161,"AUS","NSW SOP",2007,"For storage only",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19743,1161,"AUS","NSW SOP",2005,"For storage only",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18872,1162,"AUS","Birdlife IBA",2008,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18873,1162,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18874,1162,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11099,1240,"CMR","RAPPAM",2002,"For storage only",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11096,1240,"CMR","METT",2005,"For storage only",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11098,1240,"CMR","RAPPAM",2010,"For storage only",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11100,1240,"CMR","Birdlife IBA",2001,"For storage only",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11094,1240,"CMR","Africa Rainforest Study",2001,"For storage only",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11097,1240,"CMR","METT",2006,"For storage only",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11106,1241,"CMR","RAPPAM",2002,"For storage only",28,"Faro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11091,1242,"CMR","METT",2004,"For storage only",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11089,1242,"CMR","METT",2005,"For storage only",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11086,1242,"CMR","METT",0,"For storage only",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11090,1242,"CMR","METT",2010,"For storage only",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11088,1242,"CMR","RAPPAM",2002,"For storage only",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11092,1242,"CMR","METT",2006,"For storage only",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11093,1242,"CMR","METT",2008,"For storage only",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11087,1242,"CMR","RAPPAM",2010,"For storage only",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10587,1242,"CMR","IMET",2015,"For storage only",27,"Campo-Ma'an","National Park","JRC IMET information","JRC",2018,"English",FALSE -11103,1244,"CMR","RAPPAM",2002,"For storage only",28,"Douala Edéa","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11104,1244,"CMR","METT",2011,"For storage only",28,"Douala Edéa","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11119,1245,"CMR","RAPPAM",2010,"For storage only",28,"Lobéké","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11120,1245,"CMR","RAPPAM",2002,"For storage only",28,"Lobéké","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10588,1245,"CMR","IMET",0,"For storage only",27,"Lobéké","National Park","JRC IMET information","JRC",2018,"English",FALSE -11118,1245,"CMR","METT",2005,"For storage only",28,"Lobéké","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11122,1245,"CMR","METT",2010,"For storage only",28,"Lobéké","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11121,1245,"CMR","METT",2007,"For storage only",28,"Lobéké","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11117,1245,"CMR","METT",2003,"For storage only",28,"Lobéké","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11108,1246,"CMR","RAPPAM",2002,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13244,1250,"TCD","RAPPAM",2008,"For storage only",28,"Ouadi-Rimé-Ouadi Achim","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28176,1251,"IDN","METT",2013,"For storage only",28,"Gunung Leuser","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21012,1251,"IDN","METT",2015,"For storage only",35,"Gunung Leuser","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28079,1252,"IDN","METT",2006,"For storage only",28,"Bukit Barisan Selatan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28078,1252,"IDN","METT",2003,"For storage only",28,"Bukit Barisan Selatan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21004,1252,"IDN","METT",2015,"For storage only",35,"Bukit Barisan Selatan","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20999,1254,"IDN","METT",2015,"For storage only",35,"Berbak","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21020,1256,"IDN","METT",2015,"For storage only",35,"Kutai","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20961,1259,"IDN","METT",2015,"For storage only",35,"Kerumutan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20995,1268,"IDN","METT",2015,"For storage only",35,"Bali Barat","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21002,1269,"IDN","METT",2015,"For storage only",35,"Bromo Tengger Semeru","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20887,1272,"IDN","METT",2015,"For storage only",35,"Kawah Ijen","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20871,1276,"IDN","METT",2015,"For storage only",35,"Gunung Celering","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -218,1295,"CIV","METT",2017,"For storage only",7,"Mount Nimba Integral Reserve","Integral National Reserve","Côte d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French",FALSE -20779,1299,"MDG","IEG",2016,"For storage only",34,"Ankarafantsika","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -12073,1305,"MUS","METT",2009,"For storage only",28,"Ile Ronde (Round Island)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11990,1307,"MNG","RAPPAM",2005,"For storage only",28,"Bogdkhan mountain","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12219,1308,"NPL","METT",2005,"For storage only",28,"Bardia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12220,1308,"NPL","Birdlife IBA",2004,"For storage only",28,"Bardia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12255,1309,"NPL","RAPPAM",2002,"For storage only",28,"Suklaphanta","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12252,1309,"NPL","METT",2005,"For storage only",28,"Suklaphanta","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12266,1309,"NPL","Birdlife IBA",2004,"For storage only",28,"Suklaphanta","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12232,1310,"NPL","RAPPAM",2002,"For storage only",28,"Koshi Tappu","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15088,1332,"NGA","Birdlife IBA",2013,"For storage only",28,"Yankari","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15101,1337,"PHL","METT",2008,"For storage only",28,"Mts. Iglit-Baco National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12600,1338,"PRT","Birdlife IBA",2005,"For storage only",28,"Serra da Estrela","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13223,1342,"SYC","Birdlife IBA",2001,"For storage only",28,"Aldabra","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13094,1344,"SGP","Asean MEE",2012,"For storage only",28,"Bukit Timah Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21374,1350,"ZAF","RAPPAM",2001,"For storage only",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21379,1350,"ZAF","Birdlife IBA",2006,"For storage only",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21375,1350,"ZAF","METT",2010,"For storage only",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21376,1350,"ZAF","METT",2011,"For storage only",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21377,1350,"ZAF","METT",2012,"For storage only",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21378,1350,"ZAF","METT",2013,"For storage only",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21837,1353,"ZAF","METT",2013,"For storage only",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21835,1353,"ZAF","METT",2011,"For storage only",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21839,1353,"ZAF","RAPPAM",2001,"For storage only",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21838,1353,"ZAF","Birdlife IBA",2007,"For storage only",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21836,1353,"ZAF","METT",2012,"For storage only",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21834,1353,"ZAF","METT",2010,"For storage only",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21811,1354,"ZAF","METT",2012,"For storage only",28,"Tussen-die-Riviere Game Farm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21810,1354,"ZAF","METT",2011,"For storage only",28,"Tussen-die-Riviere Game Farm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21812,1354,"ZAF","METT",2013,"For storage only",28,"Tussen-die-Riviere Game Farm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21813,1354,"ZAF","METT",2010,"For storage only",28,"Tussen-die-Riviere Game Farm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21898,1355,"ZAF","METT",2012,"For storage only",28,"Willem Pretorius Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21896,1355,"ZAF","METT",2010,"For storage only",28,"Willem Pretorius Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21899,1355,"ZAF","METT",2013,"For storage only",28,"Willem Pretorius Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21897,1355,"ZAF","METT",2011,"For storage only",28,"Willem Pretorius Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21175,1356,"ZAF","METT",2011,"For storage only",28,"Blyderivierspoort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21176,1356,"ZAF","METT",2012,"For storage only",28,"Blyderivierspoort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21177,1356,"ZAF","METT",2013,"For storage only",28,"Blyderivierspoort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21178,1356,"ZAF","METT",2010,"For storage only",28,"Blyderivierspoort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21769,1357,"ZAF","METT",2011,"For storage only",28,"Suikerbosrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21770,1357,"ZAF","METT",2012,"For storage only",28,"Suikerbosrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21771,1357,"ZAF","METT",2013,"For storage only",28,"Suikerbosrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21768,1357,"ZAF","METT",2010,"For storage only",28,"Suikerbosrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12082,1361,"NAM","METT",2005,"For storage only",28,"Cape Cross Seal Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12085,1362,"NAM","METT",2010,"For storage only",28,"Daan Viljoen Game Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12083,1362,"NAM","METT",2005,"For storage only",28,"Daan Viljoen Game Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12084,1362,"NAM","METT",2009,"For storage only",28,"Daan Viljoen Game Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15119,1368,"SSD","METT",2009,"For storage only",28,"Zeraf","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15114,1371,"SSD","METT",2009,"For storage only",28,"Boma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22178,1395,"SWE","European Diploma",1988,"For storage only",28,"Bullerö","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13681,1399,"TZA","METT",2004,"For storage only",28,"Selous G.R","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13673,1399,"TZA","METT",2003,"For storage only",28,"Selous G.R","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13675,1399,"TZA","Birdlife IBA",2001,"For storage only",28,"Selous G.R","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13290,1405,"THA","METT",2005,"For storage only",28,"Thungyai Naresuan","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13288,1405,"THA","Birdlife IBA",2007,"For storage only",28,"Thungyai Naresuan","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13269,1406,"THA","Birdlife IBA",2007,"For storage only",28,"Mae Tuen","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28206,1407,"THA","METT",2009,"For storage only",28,"Huai Kha Khaeng","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13253,1407,"THA","Birdlife IBA",2007,"For storage only",28,"Huai Kha Khaeng","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13276,1408,"THA","Birdlife IBA",2007,"For storage only",28,"Phu Khiew","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13266,1411,"THA","Birdlife IBA",2007,"For storage only",28,"Lum Nam Pai","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13261,1412,"THA","Birdlife IBA",2007,"For storage only",28,"Khao Soi Dao","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13278,1413,"THA","METT",2005,"For storage only",28,"Phu Luang","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13277,1413,"THA","Birdlife IBA",2007,"For storage only",28,"Phu Luang","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13282,1414,"THA","Birdlife IBA",2007,"For storage only",28,"Salak Phra","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13279,1417,"THA","Birdlife IBA",2007,"For storage only",28,"Phu Miang - Phu Thong","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13292,1422,"THA","Birdlife IBA",2007,"For storage only",28,"Yod Dom","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13256,1425,"THA","Birdlife IBA",2007,"For storage only",28,"Khao Angruenai","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13776,1440,"UGA","Birdlife IBA",2001,"For storage only",28,"Toro-Semuliki or Toro-Semliki","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13754,1441,"UGA","Birdlife IBA",2001,"For storage only",28,"Lake Mburo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13727,1445,"UGA","Birdlife IBA",2001,"For storage only",28,"Ajai","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13753,1446,"UGA","Birdlife IBA",2001,"For storage only",28,"Kyambura","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21031,1490,"IDN","METT",2015,"For storage only",35,"Tanjung Puting","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20867,1491,"IDN","METT",2016,"For storage only",35,"Gunung Ambang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21026,1495,"IDN","METT",2015,"For storage only",35,"Meru Betiri","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21010,1496,"IDN","METT",2015,"For storage only",35,"Gunung Halimun - Salak","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21025,1499,"IDN","METT",2015,"For storage only",35,"Manusela","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28076,1500,"IDN","METT",2003,"For storage only",28,"Lorentz","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28077,1500,"IDN","METT",2006,"For storage only",28,"Lorentz","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21023,1500,"IDN","METT",2015,"For storage only",35,"Lorentz","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -14800,1516,"FJI","METT",2010,"For storage only",28,"Tomaniivi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22032,1517,"FIN","RAPPAM",2004,"For storage only",28,"Kevon luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22029,1517,"FIN","Birdlife IBA",2010,"For storage only",28,"Kevon luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22147,1518,"FIN","RAPPAM",2004,"For storage only",28,"Sompion luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22072,1519,"FIN","RAPPAM",2004,"For storage only",28,"Maltion luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22131,1520,"FIN","RAPPAM",2004,"For storage only",28,"Runkauksen luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22110,1521,"FIN","RAPPAM",2004,"For storage only",28,"Pisavaaran luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22165,1523,"FIN","RAPPAM",2004,"For storage only",28,"Ulvinsalon luonnonpuisto (Ystävyyden puisto)","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22140,1524,"FIN","RAPPAM",2004,"For storage only",28,"Salamanperän luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11138,1628,"CMR","RAPPAM",2002,"For storage only",28,"Lac Ossa","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10651,1629,"ARM","Birdlife IBA",2013,"For storage only",28,"Sevan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10672,1630,"ARM","METT",2009,"For storage only",28,"Dilijan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10698,1631,"ARM","METT",2005,"For storage only",28,"Khosrov Forest","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10677,1631,"ARM","METT",2012,"For storage only",28,"Khosrov Forest","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10700,1631,"ARM","Birdlife IBA",2013,"For storage only",28,"Khosrov Forest","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10730,1634,"AZE","METT",2013,"For storage only",28,"Shirvan State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10803,1643,"BLR","European Diploma",1995,"For storage only",28,"Berezinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1069,1646,"EST","METT",2010,"For storage only",15,"Lahemaa rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1108,1647,"EST","European Diploma",2012,"For storage only",15,"Matsalu rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1106,1647,"EST","European Diploma",2003,"For storage only",15,"Matsalu rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1107,1647,"EST","European Diploma",2008,"For storage only",15,"Matsalu rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1109,1647,"EST","European Diploma",2017,"For storage only",15,"Matsalu rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1089,1648,"EST","METT",2012,"For storage only",15,"Vilsandi rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1072,1649,"EST","METT",2010,"For storage only",15,"Nigula looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1071,1650,"EST","METT",2010,"For storage only",15,"Viidumäe looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -9463,1652,"GEO","RAPPAM",2009,"For storage only",20,"Borjomi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9500,1652,"GEO","PANPARKS",2007,"For storage only",20,"Borjomi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9534,1652,"GEO","METT",2017,"For storage only",20,"Borjomi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9455,1653,"GEO","RAPPAM",2009,"For storage only",20,"Lagodekhi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9438,1653,"GEO","RAPPAM",2012,"For storage only",20,"Lagodekhi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9536,1653,"GEO","METT",2017,"For storage only",20,"Lagodekhi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9529,1653,"GEO","METT",2016,"For storage only",20,"Lagodekhi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9409,1656,"GEO","METT",2017,"For storage only",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9408,1656,"GEO","METT",2015,"For storage only",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9554,1656,"GEO","METT",2016,"For storage only",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9464,1656,"GEO","RAPPAM",2009,"For storage only",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9441,1656,"GEO","RAPPAM",2012,"For storage only",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9460,1657,"GEO","RAPPAM",2009,"For storage only",20,"Liakhvi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9557,1660,"GEO","METT",2015,"For storage only",20,"Vashlovani","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9459,1660,"GEO","RAPPAM",2009,"For storage only",20,"Vashlovani","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9511,1660,"GEO","METT",2017,"For storage only",20,"Vashlovani","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9461,1665,"GEO","RAPPAM",2009,"For storage only",20,"Mariamjvari","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9467,1666,"GEO","RAPPAM",2009,"For storage only",20,"Kolkheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9444,1666,"GEO","RAPPAM",2012,"For storage only",20,"Kolkheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9462,1667,"GEO","RAPPAM",2009,"For storage only",20,"Sataplia","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9440,1667,"GEO","RAPPAM",2012,"For storage only",20,"Sataplia","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -11755,1668,"KAZ","Birdlife IBA",2006,"For storage only",28,"Kurgal'dzhinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11744,1669,"KAZ","Birdlife IBA",2006,"For storage only",28,"Alma-Atinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11762,1670,"KAZ","METT",2003,"For storage only",28,"Naurzumskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11743,1671,"KAZ","METT",2007,"For storage only",28,"Aksu-Dzhabagly","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11760,1672,"KAZ","Birdlife IBA",2006,"For storage only",28,"Markakol'skiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11759,1672,"KAZ","METT",2008,"For storage only",28,"Markakol'skiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11761,1672,"KAZ","METT",2011,"For storage only",28,"Markakol'skiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11746,1673,"KAZ","METT",2012,"For storage only",28,"Barsakel'messkiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11910,1679,"LVA","METT",0,"For storage only",28,"Sliteres nacionalais parks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11909,1679,"LVA","METT",2006,"For storage only",28,"Sliteres nacionalais parks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13000,1689,"RUS","RAPPAM",2001,"For storage only",28,"Taimyrsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12852,1690,"RUS","RAPPAM",2001,"For storage only",28,"Kronotsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12727,1691,"RUS","METT",2006,"For storage only",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12983,1691,"RUS","METT",2011,"For storage only",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12723,1691,"RUS","RAPPAM",2001,"For storage only",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12725,1691,"RUS","METT",2008,"For storage only",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12724,1691,"RUS","METT",2005,"For storage only",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12931,1693,"RUS","METT",2007,"For storage only",28,"Pechoro-Ilychsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12896,1693,"RUS","METT",2011,"For storage only",28,"Pechoro-Ilychsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12932,1693,"RUS","RAPPAM",2001,"For storage only",28,"Pechoro-Ilychsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12960,1694,"RUS","METT",2005,"For storage only",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12959,1694,"RUS","METT",2003,"For storage only",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12958,1694,"RUS","METT",2006,"For storage only",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12962,1694,"RUS","RAPPAM",2001,"For storage only",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12961,1694,"RUS","METT",2008,"For storage only",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12825,1696,"RUS","Birdlife IBA",2007,"For storage only",28,"Kavkazsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12869,1700,"RUS","RAPPAM",2001,"For storage only",28,"Laplandsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12870,1702,"RUS","METT",2003,"For storage only",28,"Lazovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12871,1702,"RUS","METT",2005,"For storage only",28,"Lazovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12788,1703,"RUS","RAPPAM",2001,"For storage only",28,"Darvinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12879,1704,"RUS","RAPPAM",2001,"For storage only",28,"Malaya Sosva","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13002,1705,"RUS","Birdlife IBA",2007,"For storage only",28,"Teberdinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13005,1705,"RUS","RAPPAM",2001,"For storage only",28,"Teberdinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13003,1705,"RUS","METT",2003,"For storage only",28,"Teberdinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13004,1705,"RUS","METT",2005,"For storage only",28,"Teberdinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13059,1706,"RUS","RAPPAM",2001,"For storage only",28,"Zeysky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12838,1707,"RUS","RAPPAM",2001,"For storage only",28,"Khingansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12812,1708,"RUS","RAPPAM",2001,"For storage only",28,"Kabardino-Balkarsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12811,1708,"RUS","Birdlife IBA",2007,"For storage only",28,"Kabardino-Balkarsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28113,1709,"RUS","METT",2005,"For storage only",28,"Bashkirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12744,1709,"RUS","RAPPAM",2001,"For storage only",28,"Bashkirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28112,1709,"RUS","METT",2003,"For storage only",28,"Bashkirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12732,1711,"RUS","RAPPAM",2001,"For storage only",28,"Astrakhansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12731,1711,"RUS","METT",2012,"For storage only",28,"Astrakhansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12730,1711,"RUS","METT",2009,"For storage only",28,"Astrakhansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12847,1712,"RUS","RAPPAM",2001,"For storage only",28,"Komsomolsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12816,1713,"RUS","RAPPAM",2001,"For storage only",28,"Kandalakshsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12815,1713,"RUS","METT",2005,"For storage only",28,"Kandalakshsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12995,1714,"RUS","RAPPAM",2001,"For storage only",28,"Stolby","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12759,1715,"RUS","RAPPAM",2001,"For storage only",28,"Bolshekhekhtsirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12933,1716,"RUS","RAPPAM",2001,"For storage only",28,"Pinezhsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12905,1717,"RUS","RAPPAM",2001,"For storage only",28,"Nizhne-Svirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12907,1717,"RUS","METT",2003,"For storage only",28,"Nizhne-Svirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13026,1718,"RUS","METT",2003,"For storage only",28,"Ussuriysky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13027,1718,"RUS","METT",2005,"For storage only",28,"Ussuriysky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13028,1718,"RUS","RAPPAM",2001,"For storage only",28,"Ussuriysky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12887,1719,"RUS","RAPPAM",2001,"For storage only",28,"Mordovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13047,1720,"RUS","RAPPAM",2001,"For storage only",28,"Voronezhsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12806,1721,"RUS","METT",2003,"For storage only",28,"Ilmensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12807,1721,"RUS","METT",2005,"For storage only",28,"Ilmensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12808,1721,"RUS","RAPPAM",2001,"For storage only",28,"Ilmensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12964,1722,"RUS","RAPPAM",2001,"For storage only",28,"Severo-Osetinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12914,1724,"RUS","RAPPAM",2001,"For storage only",28,"Oksky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12913,1724,"RUS","METT",2003,"For storage only",28,"Oksky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12774,1725,"RUS","RAPPAM",2001,"For storage only",28,"Tsentralno-Lesnoi","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12829,1726,"RUS","RAPPAM",2001,"For storage only",28,"Kedrovaya Pad","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12839,1727,"RUS","RAPPAM",2001,"For storage only",28,"Khopersky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13038,1728,"RUS","RAPPAM",2001,"For storage only",28,"Visimsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12842,1729,"RUS","RAPPAM",2001,"For storage only",28,"Kivach","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13046,1730,"RUS","RAPPAM",2001,"For storage only",28,"Volzhsko-Kamsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12776,1732,"RUS","METT",2009,"For storage only",28,"Tsentralno-Chernozemny","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12775,1732,"RUS","RAPPAM",2001,"For storage only",28,"Tsentralno-Chernozemny","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13011,1732,"RUS","European Diploma",1998,"For storage only",28,"Tsentralno-Chernozemny","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12750,1733,"RUS","METT",2009,"For storage only",28,"Belogor'e","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12749,1733,"RUS","RAPPAM",2001,"For storage only",28,"Belogor'e","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12799,1734,"RUS","METT",2009,"For storage only",28,"Galich'ya Gora","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12798,1734,"RUS","RAPPAM",2001,"For storage only",28,"Galich'ya Gora","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13295,1736,"TJK","METT",2008,"For storage only",28,"","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13296,1736,"TJK","METT",2011,"For storage only",28,"","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13294,1736,"TJK","METT",2004,"For storage only",28,"","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13311,1737,"TKM","METT",0,"For storage only",28,"Kaplangurskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13791,1745,"UKR","RAPPAM",2008,"For storage only",28,"Karpatskiy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13817,1750,"UKR","RAPPAM",2008,"For storage only",28,"Yaltinskiy Gorno-Lesnoy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13779,1751,"UKR","RAPPAM",2008,"For storage only",28,"Askaniya Nova","National Biosphere Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13790,1754,"UKR","RAPPAM",2008,"For storage only",28,"Karadagskiy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13789,1756,"UKR","RAPPAM",2008,"For storage only",28,"Kanevskiy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13954,1761,"UZB","METT",2006,"For storage only",28,"Chatkalskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13955,1761,"UZB","METT",2008,"For storage only",28,"Chatkalskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13963,1764,"UZB","METT",2006,"For storage only",28,"Nuratinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13962,1764,"UZB","METT",2007,"For storage only",28,"Nuratinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13967,1766,"UZB","METT",2007,"For storage only",28,"Zaaminskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13966,1766,"UZB","METT",2006,"For storage only",28,"Zaaminskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13950,1767,"UZB","METT",2004,"For storage only",28,"Baday-Tugay","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13951,1767,"UZB","METT",2008,"For storage only",28,"Baday-Tugay","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13953,1767,"UZB","METT",2009,"For storage only",28,"Baday-Tugay","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13952,1767,"UZB","METT",2006,"For storage only",28,"Baday-Tugay","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13961,1768,"UZB","METT",2008,"For storage only",28,"Kyzylkumskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13960,1768,"UZB","METT",2006,"For storage only",28,"Kyzylkumskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13969,1770,"UZB","METT",2003,"For storage only",28,"Zeravshanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13968,1770,"UZB","METT",2006,"For storage only",28,"Zeravshanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13971,1770,"UZB","METT",2008,"For storage only",28,"Zeravshanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13970,1770,"UZB","METT",2005,"For storage only",28,"Zeravshanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20487,1773,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Kolleru","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20396,1774,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Papikonda","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20327,1777,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Rajiv Gandhi (Nagarjunasagar-Srisailam)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20325,1777,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Rajiv Gandhi (Nagarjunasagar-Srisailam)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20326,1777,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Rajiv Gandhi (Nagarjunasagar-Srisailam)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20333,1778,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Simlipal","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20335,1778,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Simlipal","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20334,1778,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Simlipal","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20395,1779,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Dandeli","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20351,1779,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Dandeli","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20350,1779,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Dandeli","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20486,1781,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Coringa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20466,1784,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Noradehi","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20479,1785,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Kedarnath","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20494,1787,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Chilka (Nalaban)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20324,1788,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Kawal","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20565,1791,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Pakhal","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20332,1793,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Satkosia Gorge","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20331,1793,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Satkosia Gorge","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20394,1796,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"National Chambal","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20319,1800,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Achanakmar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20320,1800,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Achanakmar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20437,1801,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Ratapani","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20438,1802,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Kumbhalgarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20583,1803,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Bagdara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20370,1804,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Dampa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20371,1804,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Dampa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20369,1804,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Dampa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20312,1805,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Pench","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20314,1805,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Pench","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20313,1805,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Pench","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20430,1806,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Semarsot","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20294,1808,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Ranthambhore","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -28086,1808,"IND","METT",2003,"For storage only",28,"Ranthambhore","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20293,1808,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Ranthambhore","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20292,1808,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Ranthambhore","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20456,1810,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Sanjay","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20399,1812,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Wayanad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20462,1813,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Nanda Devi","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20361,1817,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Parambikulam","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20360,1817,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Parambikulam","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20449,1821,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Barnawapara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20354,1826,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Kalakad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20353,1826,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Kalakad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20352,1826,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Kalakad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20585,1827,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Tansa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20288,1829,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Darrah","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20525,1830,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Manjira Crocodile","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20457,1832,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Hazaribagh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20406,1834,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Bhitarkanika","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20330,1835,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Palamau","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20329,1835,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Palamau","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20328,1835,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Palamau","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20408,1838,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Nagzira","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20533,1843,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Tamor Pingla","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20481,1846,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Mount Abu","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20402,1847,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Jaldapara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20532,1848,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Badalkhol","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20526,1849,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Cotigaon","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20717,1850,"MEX","How is your MPA doing?",2016,"For storage only",33,"Sian Ka'an","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20716,1850,"MEX","RAPPAM",2005,"For storage only",33,"Sian Ka'an","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20560,1852,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Chandraprabha","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20439,1857,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Wild Ass","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20489,1859,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Point Calimere","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20451,1861,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Chandaka Dampara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20412,1862,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Keoladeo Ghana","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20546,1864,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Radhanagari","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20576,1866,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Debrigarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20542,1868,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Nal Sarovar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20973,1898,"IDN","METT",2015,"For storage only",35,"Pulau Kaget","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28071,1899,"IDN","METT",2006,"For storage only",28,"Kayan Mentarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28070,1899,"IDN","METT",2003,"For storage only",28,"Kayan Mentarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21017,1899,"IDN","METT",2015,"For storage only",35,"Kayan Mentarang","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28180,1899,"IDN","METT",2010,"For storage only",28,"Kayan Mentarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21080,1900,"IDN","METT",2015,"For storage only",35,"Pulau Kembang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21061,1905,"IDN","METT",2015,"For storage only",35,"Gunung Tangkuban Parahu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20879,1906,"IDN","METT",2015,"For storage only",35,"Gunung Tilu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20926,1908,"IDN","METT",2015,"For storage only",35,"Pulau Nusa Barung","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20852,1910,"IDN","METT",2015,"For storage only",35,"Batukahu I-II-III","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20876,1913,"IDN","METT",2015,"For storage only",35,"Gunung Raya Passi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20915,1914,"IDN","METT",2015,"For storage only",35,"Pararawen I-II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20906,1916,"IDN","METT",2015,"For storage only",35,"Padang Luwai","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20900,1917,"IDN","METT",2015,"For storage only",35,"Muara Kaman Sedulang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20918,1921,"IDN","METT",2015,"For storage only",35,"Pegunungan Cyclops","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20955,1923,"IDN","METT",2015,"For storage only",35,"Dolok Surungan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20957,1924,"IDN","METT",2015,"For storage only",35,"Gumai Tebing Tinggi","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20960,1925,"IDN","METT",2015,"For storage only",35,"Isau Isau","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20958,1926,"IDN","METT",2015,"For storage only",35,"Gunung Raya","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20994,1928,"IDN","METT",2015,"For storage only",35,"Alas Purwo","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20954,1929,"IDN","METT",2015,"For storage only",35,"Dataran Tinggi Yang","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21016,1930,"IDN","METT",2015,"For storage only",35,"Gunung Rinjani","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20996,1967,"IDN","METT",2015,"For storage only",35,"Baluran","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28083,1968,"IDN","METT",2000,"For storage only",28,"Komodo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21019,1968,"IDN","METT",2015,"For storage only",35,"Komodo","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20899,1969,"IDN","METT",2015,"For storage only",35,"Morowali","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20971,1971,"IDN","METT",2015,"For storage only",35,"P. Bawean","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -674,1974,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra Da Bocaina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -356,1974,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra Da Bocaina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -20686,1975,"SVK","CCPAMET",2017,"For storage only",32,"Tatransky","National Park; third level of protection","third level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -11698,1978,"ITA","National PAME Assessment",0,"For storage only",28,"Parco nazionale del Circeo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10725,1983,"AZE","METT",2012,"For storage only",28,"Gizilaghaj State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10731,1984,"AZE","METT",2005,"For storage only",28,"Zagatala State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10801,1985,"BLR","European Diploma",1997,"For storage only",28,"Belowezskaya Pushcha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13792,1990,"UKR","RAPPAM",2008,"For storage only",28,"Karpatskiy","National Biosphere Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14284,1991,"ZWE","METT",2014,"For storage only",28,"Hwange","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14285,1991,"ZWE","Birdlife IBA",2001,"For storage only",28,"Hwange","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21917,2004,"CAN","WHA Outlook Report",2014,"For storage only",28,"Dinosaur Provincial Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21935,2005,"CAN","WHA Outlook Report",2014,"For storage only",28,"Nahanni National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14796,2006,"ETH","WHA Outlook Report",2014,"For storage only",28,"Simien National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12259,2007,"NPL","Birdlife IBA",2004,"For storage only",28,"Sagarmatha National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12260,2007,"NPL","WHA Outlook Report",2014,"For storage only",28,"Sagarmatha National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10802,2008,"BLR;POL","WHA Outlook Report",2014,"For storage only",28,"Bialowieza Forest","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13610,2010,"TZA","WHA Outlook Report",2014,"For storage only",28,"Ngorongoro Conservation Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13609,2010,"TZA","Birdlife IBA",2001,"For storage only",28,"Ngorongoro Conservation Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13898,2011,"USA","WHA Outlook Report",2014,"For storage only",28,"Grand Canyon National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13892,2012,"USA","WHA Outlook Report",2014,"For storage only",28,"Everglades National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13947,2013,"USA","WHA Outlook Report",2014,"For storage only",28,"Yellowstone National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11961,2015,"MKD","WHA Outlook Report",2014,"For storage only",28,"Natural and Cultural Heritage of the Ohrid region","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11212,2017,"COD","WHA Outlook Report",2014,"For storage only",28,"Virunga National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11209,2017,"COD","Birdlife IBA",2001,"For storage only",28,"Virunga National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13911,2018,"CAN;USA","WHA Outlook Report",2014,"For storage only",28,"Kluane / Wrangell-St Elias / Glacier Bay / Tatshenshini-Alsek","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17698,2022,"AUS","GOBI Survey",2006,"For storage only",28,"Kosciuszko National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19116,2024,"AUS","GOBI Survey",2006,"For storage only",28,"Riverland","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16577,2029,"AUS","Victorian SOP",2013,"For storage only",28,"Croajingolong National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16575,2029,"AUS","Victorian SOP",2005,"For storage only",28,"Croajingolong National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16576,2029,"AUS","Victorian SOP",2010,"For storage only",28,"Croajingolong National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20219,2030,"AUS","GOBI Survey",2006,"For storage only",28,"Yathong Nature Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10714,2032,"AUT","GOBI Survey",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10708,2033,"AUT","Stockholm BR Survey",2008,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10707,2033,"AUT","GOBI Survey",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10792,2039,"BGR","GOBI Survey",2006,"For storage only",28,"Parc national Steneto","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10793,2039,"BGR","Stockholm BR Survey",2008,"For storage only",28,"Parc national Steneto","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10775,2040,"BGR","GOBI Survey",2006,"For storage only",28,"Réserve Djendema","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10776,2040,"BGR","Stockholm BR Survey",2008,"For storage only",28,"Réserve Djendema","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10764,2044,"BGR","GOBI Survey",2006,"For storage only",28,"Boitine","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10765,2044,"BGR","Stockholm BR Survey",2008,"For storage only",28,"Boitine","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10794,2048,"BGR","GOBI Survey",2006,"For storage only",28,"Réserve Tsaritchina","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10795,2048,"BGR","Stockholm BR Survey",2008,"For storage only",28,"Réserve Tsaritchina","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10804,2055,"BLR","METT",2007,"For storage only",28,"Berezinskiy Zapovednik","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21944,2057,"CAN","GOBI Survey",2006,"For storage only",28,"Waterton Lakes National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10946,2059,"CAF","GOBI Survey",2006,"For storage only",28,"Basse-Lobaye Forest","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10947,2059,"CAF","METT",2010,"For storage only",28,"Basse-Lobaye Forest","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11300,2062,"CZE","Stockholm BR Survey",2008,"For storage only",28,"Tøeboòsko","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11269,2063,"CZE","Stockholm BR Survey",2008,"For storage only",28,"Køivoklátsko","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11577,2067,"FRA","GOBI Survey",2006,"For storage only",28,"Vallée du Fango","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14906,2069,"HUN","Stockholm BR Survey",2008,"For storage only",28,"Hortobágy National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14905,2069,"HUN","GOBI Survey",2006,"For storage only",28,"Hortobágy National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14908,2070,"HUN","GOBI Survey",2006,"For storage only",28,"Kiskunság Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14909,2070,"HUN","Stockholm BR Survey",2008,"For storage only",28,"Kiskunság Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14910,2072,"HUN","Stockholm BR Survey",2008,"For storage only",28,"Lake Fertö Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14904,2072,"HUN","GOBI Survey",2006,"For storage only",28,"Lake Fertö Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11817,2085,"KEN","GOBI Survey",2006,"For storage only",28,"Mount Kulal Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14579,2098,"ESP","GOBI Survey",2006,"For storage only",28,"Reserva de Grazalema","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13272,2109,"THA","GOBI Survey",2006,"For storage only",28,"Mae Sa-Kog Ma Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13946,2134,"USA","USA SOP",2002,"For storage only",28,"Waterton Glacier International Peace","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13923,2135,"USA","GOBI Survey",2006,"For storage only",28,"Olympic","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13939,2136,"USA","GOBI Survey",2006,"For storage only",28,"Sequoia-Kings Canyon National Parks","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13871,2137,"USA","GOBI Survey",2006,"For storage only",28,"Big Bend National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13926,2139,"USA","GOBI Survey",2006,"For storage only",28,"Organ Pipe Cactus","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13934,2141,"USA","GOBI Survey",2006,"For storage only",28,"Rocky Mountain National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13942,2142,"USA","GOBI Survey",2006,"For storage only",28,"Three Sisters","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13883,2149,"USA","GOBI Survey",2006,"For storage only",28,"Channel Islands","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13879,2150,"USA","GOBI Survey",2006,"For storage only",28,"Cascade Head Expt. Forest & Scenic Research Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13882,2152,"USA","GOBI Survey",2006,"For storage only",28,"Central Plains Experimental Range","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13943,2155,"USA","GOBI Survey",2006,"For storage only",28,"The University of Michigan Biological Station","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13912,2156,"USA","GOBI Survey",2006,"For storage only",28,"Konza Prairie Research Natural Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13888,2158,"USA","GOBI Survey",2006,"For storage only",28,"Coram Experimental Forest","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13937,2161,"USA","GOBI Survey",2006,"For storage only",28,"San Joaquin Experimental Range","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13918,2162,"USA","GOBI Survey",2006,"For storage only",28,"Niwot Ridge Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13317,2166,"TKM","METT",2012,"For storage only",28,"Repetek Zapovednik","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -932,2175,"PER","METT",2016,"For storage only",13,"de Salinas y Aguada Blanca","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -740,2186,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Augusto Ruschi","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -398,2186,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Augusto Ruschi","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -9826,2187,"BHS","METT-RAPPAM",2018,"For storage only",25,"Conception Island National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -14832,2189,"GRD","RAPPAM",2006,"For storage only",28,"Grand Etang Forest Corridors Addition","Local Area Planning","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15208,2212,"BLZ","METT",2010,"For storage only",29,"Guanacaste National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15206,2212,"BLZ","Belize MEE",2006,"For storage only",29,"Guanacaste National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15207,2212,"BLZ","Belize MEE",2009,"For storage only",29,"Guanacaste National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15209,2212,"BLZ","METT",2013,"For storage only",29,"Guanacaste National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15212,2213,"BLZ","METT",2013,"For storage only",29,"Halfmoon Caye","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15211,2213,"BLZ","METT",2010,"For storage only",29,"Halfmoon Caye","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -14889,2213,"BLZ","METT",2006,"For storage only",28,"Halfmoon Caye","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14890,2213,"BLZ","METT",2008,"For storage only",28,"Halfmoon Caye","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15210,2213,"BLZ","Belize MEE",2009,"For storage only",29,"Halfmoon Caye","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15213,2213,"BLZ","Belize MEE",2006,"For storage only",29,"Halfmoon Caye","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -999,2214,"CRI","SINAD",2016,"For storage only",14,"Barra Honda","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -692,2215,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional De Anavilhanas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -367,2215,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional De Anavilhanas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -571,2216,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Aracuri-Esmeralda","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -266,2216,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Aracuri-Esmeralda","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -576,2217,"BRA","SAMGe",2016,"For storage only",9,"ESEC de Iquê","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -272,2218,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Maracá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -578,2218,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Maracá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -579,2219,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Maracá Jipioca","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -273,2219,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Maracá Jipioca","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -584,2220,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Taiamã","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -276,2220,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Taiamã","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -278,2221,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Uruçuí-Una","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -587,2221,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Uruçuí-Una","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -287,2222,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Rio Acre","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -596,2222,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Rio Acre","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13823,2223,"URY","GOBI Survey",2006,"For storage only",28,"Bañados del Este","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14327,2227,"CHL","METT",2010,"For storage only",28,"Conguillio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14326,2227,"CHL","RAPPAM",2005,"For storage only",28,"Conguillio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14328,2227,"CHL","METT",0,"For storage only",28,"Conguillio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9808,2228,"BHS","METT-RAPPAM",2018,"For storage only",25,"Exuma Cays Land & Sea Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -169,2234,"COL","AEMAPPS",2016,"For storage only",6,"Los Corales Del Rosario Y De San Bernardo","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -28055,2235,"CRI","METT",2006,"For storage only",28,"Cahuita","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1004,2235,"CRI","SINAD",2016,"For storage only",14,"Cahuita","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28268,2235,"CRI","METT",2011,"For storage only",28,"Cahuita","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28189,2235,"CRI","METT",2010,"For storage only",28,"Cahuita","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11334,2236,"DMA","PIP Site Consolidation",1997,"For storage only",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11338,2236,"DMA","PIP Site Consolidation",2000,"For storage only",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11335,2236,"DMA","PIP Site Consolidation",1998,"For storage only",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11332,2236,"DMA","PIP Site Consolidation",1992,"For storage only",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11337,2236,"DMA","PIP Site Consolidation",2001,"For storage only",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11333,2236,"DMA","PIP Site Consolidation",1996,"For storage only",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11336,2236,"DMA","PIP Site Consolidation",1999,"For storage only",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14466,2238,"ECU","Ecuador MEE",1999,"For storage only",28,"Manglares Churute","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13984,2245,"VEN","Venezuela Vision",1991,"For storage only",28,"National Park Archipielago de Los Roques","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14074,2245,"VEN","METT",0,"For storage only",28,"National Park Archipielago de Los Roques","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14051,2245,"VEN","Parks profiles",2004,"For storage only",28,"National Park Archipielago de Los Roques","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13985,2245,"VEN","Venezuela Vision",2001,"For storage only",28,"National Park Archipielago de Los Roques","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14057,2246,"VEN","Venezuela Vision",1991,"For storage only",28,"Medanos de Coro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14058,2246,"VEN","Venezuela Vision",2001,"For storage only",28,"Medanos de Coro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14056,2246,"VEN","METT",0,"For storage only",28,"Medanos de Coro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14063,2247,"VEN","Venezuela Vision",1991,"For storage only",28,"Morrocoy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14064,2247,"VEN","Venezuela Vision",2001,"For storage only",28,"Morrocoy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14065,2247,"VEN","METT",2010,"For storage only",28,"Morrocoy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28274,2250,"CRI","METT",2011,"For storage only",28,"Manuel Antonio","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28058,2250,"CRI","METT",2006,"For storage only",28,"Manuel Antonio","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1040,2250,"CRI","SINAD",2016,"For storage only",14,"Manuel Antonio","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -10747,2253,"BEN","GOBI Survey",2006,"For storage only",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10744,2253,"BEN","METT",2011,"For storage only",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10751,2253,"BEN","RAPPAM",2009,"For storage only",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10748,2253,"BEN","METT",2005,"For storage only",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10755,2253,"BEN","METT",2010,"For storage only",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10633,2253,"BEN","IMET",2016,"For storage only",27,"Pendjari","Hunting Zone","JRC IMET information","JRC",2018,"English",FALSE -10746,2253,"BEN","Enhancing Our Heritage",2008,"For storage only",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10958,2256,"CAF","Birdlife IBA",2001,"For storage only",28,"Manovo-Gounda-Saint Floris","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10961,2256,"CAF","METT",2007,"For storage only",28,"Manovo-Gounda-Saint Floris","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11220,2266,"COG","RAPPAM",2012,"For storage only",28,"Léfini","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10593,2266,"COG","IMET",2015,"For storage only",27,"Léfini","Wildlife Reserve","JRC IMET information","JRC",2018,"English",FALSE -14798,2276,"ETH","METT",2005,"For storage only",28,"Yangudi Rassa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14789,2277,"ETH","Birdlife IBA",1996,"For storage only",28,"Mago","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14791,2278,"ETH","METT",2005,"For storage only",28,"Nechisar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14779,2279,"ETH","Birdlife IBA",2013,"For storage only",28,"Abijatta-Shalla Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14793,2280,"ETH","Birdlife IBA",1996,"For storage only",28,"Omo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14792,2280,"ETH","METT",2005,"For storage only",28,"Omo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14785,2281,"ETH","METT",2004,"For storage only",28,"Bale Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14786,2281,"ETH","METT",0,"For storage only",28,"Bale Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11630,2288,"GMB","RAPPAM",2009,"For storage only",28,"River Gambia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11625,2289,"GMB","RAPPAM",2009,"For storage only",28,"Kiang West","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11627,2289,"GMB","METT",2011,"For storage only",28,"Kiang West","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11626,2289,"GMB","METT",2010,"For storage only",28,"Kiang West","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11628,2290,"GMB","RAPPAM",2009,"For storage only",28,"Niumi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11832,2299,"KEN","METT",2007,"For storage only",28,"Tana River Primate","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11830,2299,"KEN","METT",2006,"For storage only",28,"Tana River Primate","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20787,2302,"MDG","IEG",2016,"For storage only",34,"Tsingy de Bemaraha","Strict Nature Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20773,2303,"MDG","IEG",2003,"For storage only",34,"Andohahela","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20844,2304,"MDG","IEG",2011,"For storage only",34,"Zahamena","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20818,2305,"MDG","IEG",2016,"For storage only",34,"Marojejy","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20839,2306,"MDG","IEG",2003,"For storage only",34,"Tsaratanana","Strict Nature Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20840,2307,"MDG","IEG",2003,"For storage only",34,"Tsimanampetsotsa","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20776,2308,"MDG","IEG",2003,"For storage only",34,"Andringitra","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20842,2309,"MDG","IEG",2016,"For storage only",34,"Tsingy de Namoroka","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20790,2310,"MDG","IEG",2016,"For storage only",34,"Betampona","Strict Nature Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20808,2311,"MDG","IEG",2003,"For storage only",34,"Lokobe","Strict Nature Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20802,2312,"MDG","IEG",2016,"For storage only",34,"Isalo","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20823,2314,"MDG","IEG",2016,"For storage only",34,"Montagne d'Ambre","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -15062,2315,"MWI","METT",2012,"For storage only",28,"Lengwe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15061,2315,"MWI","RAPPAM",2006,"For storage only",28,"Lengwe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15064,2316,"MWI","RAPPAM",2006,"For storage only",28,"Liwonde","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15063,2316,"MWI","METT",2012,"For storage only",28,"Liwonde","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15059,2317,"MWI","RAPPAM",2006,"For storage only",28,"Lake Malawi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15068,2318,"MWI","METT",2010,"For storage only",28,"Nkhota-Kota","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15069,2318,"MWI","RAPPAM",2006,"For storage only",28,"Nkhota-Kota","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15065,2319,"MWI","RAPPAM",2006,"For storage only",28,"Majete","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15067,2320,"MWI","RAPPAM",2006,"For storage only",28,"Mwabvi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15037,2321,"MLI","RAPPAM",2008,"For storage only",28,"Réserve partielle de faune dite des Eléphants du Gourma","Partial Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15038,2325,"MLI","RAPPAM",2008,"For storage only",28,"Réserve totale de faune de Kéniébaoulé","Total Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15028,2327,"MLI","RAPPAM",2008,"For storage only",28,"Réserve partielle de faune d'Ansongo-Ménaka","Partial Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12130,2331,"NER","RAPPAM",2010,"For storage only",28,"Réserve totale de faune de Tamou","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15115,2336,"SDN","Birdlife IBA",2001,"For storage only",28,"Dinder","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15113,2337,"SSD","METT",2009,"For storage only",28,"Badingilo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -840,2340,"TGO","METT",2013,"For storage only",10,"Fazao-Malfakassa","National Park","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French",FALSE -842,2341,"TGO","METT",2017,"For storage only",10,"Parc national de Togodo","Faunal Reserve","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French",FALSE -10616,2344,"BFA","IMET",2016,"For storage only",27,"Deux Bales","National Park","JRC IMET information","JRC",2018,"English",FALSE -28161,2347,"ZMB","METT",2009,"For storage only",28,"Mosi-Oa-Tunya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28160,2347,"ZMB","METT",2006,"For storage only",28,"Mosi-Oa-Tunya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14267,2347,"ZMB","METT",2005,"For storage only",28,"Mosi-Oa-Tunya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14266,2347,"ZMB","METT",2003,"For storage only",28,"Mosi-Oa-Tunya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28074,2349,"IDN","METT",2003,"For storage only",28,"Ujung Kulon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21033,2349,"IDN","METT",2015,"For storage only",35,"Ujung Kulon","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28075,2349,"IDN","METT",2006,"For storage only",28,"Ujung Kulon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21009,2350,"IDN","METT",2015,"For storage only",35,"Gunung Gede - Pangrango","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -11845,2351,"KHM","RAPPAM",2004,"For storage only",28,"Angkor Wat","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20263,2395,"AUS","NSW SOP",2005,"For storage only",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20264,2395,"AUS","NSW SOP",2007,"For storage only",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20266,2395,"AUS","NSW SOP",2013,"For storage only",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20265,2395,"AUS","NSW SOP",2010,"For storage only",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20271,2395,"AUS","NSW SOP",2004,"For storage only",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18988,2403,"AUS","Victorian SOP",2005,"For storage only",28,"Port Campbell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18989,2403,"AUS","Victorian SOP",2010,"For storage only",28,"Port Campbell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18990,2403,"AUS","Victorian SOP",2013,"For storage only",28,"Port Campbell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11775,2417,"KEN","METT",2013,"For storage only",28,"Boni","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11774,2417,"KEN","METT",2007,"For storage only",28,"Boni","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28219,2417,"KEN","METT",2014,"For storage only",28,"Boni","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11826,2427,"KEN","Birdlife IBA",1999,"For storage only",28,"Shaba","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11823,2433,"KEN","Birdlife IBA",1999,"For storage only",28,"Mwea","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -80,2497,"ARG","Valdiviana",2001,"For storage only",3,"Nahuel Huapi","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -79,2497,"ARG","Parks profiles",2005,"For storage only",3,"Nahuel Huapi","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -14478,2499,"ECU","METT",2009,"For storage only",28,"Cuyabeno","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14477,2499,"ECU","Birdlife IBA",1990,"For storage only",28,"Cuyabeno","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14439,2499,"ECU","Ecuador MEE",1999,"For storage only",28,"Cuyabeno","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11940,2516,"MKD","METT",2007,"For storage only",28,"Galichica","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13222,2517,"SVN","RAPPAM",2009,"For storage only",28,"Triglavski narodni park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9372,2518,"HRV","METT",2014,"For storage only",19,"Risnjak","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9353,2518,"HRV","METT",2012,"For storage only",19,"Risnjak","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9391,2518,"HRV","METT",2016,"For storage only",19,"Risnjak","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9354,2520,"HRV","METT",2012,"For storage only",19,"Mljet","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9373,2520,"HRV","METT",2014,"For storage only",19,"Mljet","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9392,2520,"HRV","METT",2016,"For storage only",19,"Mljet","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -13167,2522,"SRB","METT",2009,"For storage only",28,"Nacionalni park Djerdap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9355,2523,"HRV","METT",2012,"For storage only",19,"Kornati","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9393,2523,"HRV","METT",2016,"For storage only",19,"Kornati","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9374,2523,"HRV","METT",2014,"For storage only",19,"Kornati","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -14281,2532,"ZWE","Birdlife IBA",2001,"For storage only",28,"Chimanimani","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1116,2551,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Mario Dary","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1117,2551,"GTM","PROARCA/CAPAS",2017,"For storage only",16,"Mario Dary","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1118,2551,"GTM","PROARCA/CAPAS",2013,"For storage only",16,"Mario Dary","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1119,2551,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Mario Dary","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -12446,2553,"CRI","PROARCA/CAPAS",2004,"For storage only",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12445,2553,"CRI","PROARCA/CAPAS",2003,"For storage only",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12442,2553,"CRI","PROARCA/CAPAS",2001,"For storage only",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12443,2553,"CRI","PROARCA/CAPAS",2002,"For storage only",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12448,2553,"CRI","PROARCA/CAPAS",2006,"For storage only",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12447,2553,"CRI","PROARCA/CAPAS",2005,"For storage only",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12368,2554,"PAN","WHA Outlook Report",2014,"For storage only",28,"Darien National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22136,2561,"FIN","Birdlife IBA",2010,"For storage only",28,"Urho Kekkosen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22164,2561,"FIN","RAPPAM",2004,"For storage only",28,"Urho Kekkosen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -75,2570,"ARG","WHA Outlook Report",2014,"For storage only",3,"Parc national de Los Glaciares","World Heritage Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -17181,2571,"AUS","WHA Outlook Report",2014,"For storage only",28,"Great Barrier Reef","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17542,2572,"AUS","WHA Outlook Report",2014,"For storage only",28,"Kakadu National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17544,2572,"AUS","Birdlife IBA",2008,"For storage only",28,"Kakadu National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19948,2573,"AUS","WHA Outlook Report",2014,"For storage only",28,"Willandra Lakes Region","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14816,2574,"CIV;GIN","Birdlife IBA",2001,"For storage only",28,"Mount Nimba Strict Nature Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13685,2575,"TZA","WHA Outlook Report",2014,"For storage only",28,"Serengeti National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13684,2575,"TZA","Birdlife IBA",2001,"For storage only",28,"Serengeti National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13914,2577,"USA","WHA Outlook Report",2014,"For storage only",28,"Mammoth Cave National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13072,2578,"SEN","WHA Outlook Report",2014,"For storage only",28,"Djoudj National Bird Sanctuary","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13071,2578,"SEN","METT",2012,"For storage only",28,"Djoudj National Bird Sanctuary","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13070,2578,"SEN","Enhancing Our Heritage",2009,"For storage only",28,"Djoudj National Bird Sanctuary","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13925,2579,"USA","WHA Outlook Report",2014,"For storage only",28,"Olympic National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13086,2580,"SEN","WHA Outlook Report",2014,"For storage only",28,"Niokolo-Koba National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13090,2580,"SEN","Birdlife IBA",2001,"For storage only",28,"Niokolo-Koba National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -383,2581,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Pantanal Matogrossense","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -716,2581,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Pantanal Matogrossense","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -20735,2583,"MEX","Ecological Evaluation Score Cards",2012,"For storage only",33,"Isla Isabel","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20736,2583,"MEX","METT",2017,"For storage only",33,"Isla Isabel","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -28220,2591,"KEN","METT",2014,"For storage only",28,"Dodori","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11781,2591,"KEN","METT",2013,"For storage only",28,"Dodori","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18077,2605,"AUS","NSW SOP",2005,"For storage only",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18081,2605,"AUS","NSW SOP",2004,"For storage only",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18079,2605,"AUS","NSW SOP",2010,"For storage only",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18078,2605,"AUS","NSW SOP",2007,"For storage only",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18080,2605,"AUS","NSW SOP",2013,"For storage only",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16729,2606,"AUS","NSW SOP",2010,"For storage only",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16728,2606,"AUS","NSW SOP",2007,"For storage only",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16730,2606,"AUS","NSW SOP",2013,"For storage only",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16731,2606,"AUS","NSW SOP",2004,"For storage only",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16727,2606,"AUS","NSW SOP",2005,"For storage only",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19733,2607,"AUS","NSW SOP",2005,"For storage only",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19737,2607,"AUS","NSW SOP",2004,"For storage only",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19736,2607,"AUS","NSW SOP",2013,"For storage only",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19735,2607,"AUS","NSW SOP",2010,"For storage only",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19734,2607,"AUS","NSW SOP",2007,"For storage only",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18546,2608,"AUS","NSW SOP",2007,"For storage only",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18547,2608,"AUS","NSW SOP",2010,"For storage only",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18545,2608,"AUS","NSW SOP",2005,"For storage only",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18550,2608,"AUS","NSW SOP",2004,"For storage only",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18548,2608,"AUS","NSW SOP",2013,"For storage only",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16296,2610,"AUS","NSW SOP",2007,"For storage only",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16297,2610,"AUS","NSW SOP",2010,"For storage only",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16299,2610,"AUS","NSW SOP",2004,"For storage only",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16295,2610,"AUS","NSW SOP",2005,"For storage only",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16298,2610,"AUS","NSW SOP",2013,"For storage only",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18166,2612,"AUS","NSW SOP",2005,"For storage only",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18167,2612,"AUS","NSW SOP",2007,"For storage only",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18168,2612,"AUS","NSW SOP",2010,"For storage only",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18170,2612,"AUS","NSW SOP",2004,"For storage only",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18169,2612,"AUS","NSW SOP",2013,"For storage only",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16018,2613,"AUS","NSW SOP",2013,"For storage only",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16016,2613,"AUS","NSW SOP",2007,"For storage only",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16015,2613,"AUS","NSW SOP",2005,"For storage only",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16017,2613,"AUS","NSW SOP",2010,"For storage only",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16019,2613,"AUS","NSW SOP",2004,"For storage only",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17538,2614,"AUS","NSW SOP",2007,"For storage only",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17539,2614,"AUS","NSW SOP",2010,"For storage only",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17537,2614,"AUS","NSW SOP",2005,"For storage only",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17541,2614,"AUS","NSW SOP",2004,"For storage only",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17540,2614,"AUS","NSW SOP",2013,"For storage only",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18736,2615,"AUS","NSW SOP",2010,"For storage only",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18737,2615,"AUS","NSW SOP",2013,"For storage only",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18738,2615,"AUS","NSW SOP",2004,"For storage only",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18735,2615,"AUS","NSW SOP",2007,"For storage only",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18734,2615,"AUS","NSW SOP",2005,"For storage only",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17180,2628,"AUS","WHA Outlook Report",2009,"For storage only",28,"Great Barrier Reef","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16440,2630,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Conway","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16441,2630,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Conway","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16949,2632,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Flinders Group (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16948,2632,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Flinders Group (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17070,2687,"AUS","Victorian SOP",2005,"For storage only",28,"Gippsland Lakes Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17071,2687,"AUS","Victorian SOP",2013,"For storage only",28,"Gippsland Lakes Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17069,2687,"AUS","Victorian SOP",2010,"For storage only",28,"Gippsland Lakes Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18750,2688,"AUS","Victorian SOP",2013,"For storage only",28,"Nooramunga Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18749,2688,"AUS","Victorian SOP",2005,"For storage only",28,"Nooramunga Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18748,2688,"AUS","Victorian SOP",2010,"For storage only",28,"Nooramunga Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15985,2690,"AUS","Victorian SOP",2005,"For storage only",28,"Bronzewing B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15987,2690,"AUS","Victorian SOP",2013,"For storage only",28,"Bronzewing B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18306,2694,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Bolangum N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18307,2694,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Bolangum N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17850,2695,"AUS","Victorian SOP",2005,"For storage only",28,"Langi Ghiran","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17852,2695,"AUS","Victorian SOP",2013,"For storage only",28,"Langi Ghiran","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17851,2695,"AUS","Victorian SOP",2010,"For storage only",28,"Langi Ghiran","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16759,2697,"AUS","Victorian SOP",2013,"For storage only",28,"Discovery Bay Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16763,2697,"AUS","Birdlife IBA",2008,"For storage only",28,"Discovery Bay Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16758,2697,"AUS","Victorian SOP",2005,"For storage only",28,"Discovery Bay Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16757,2697,"AUS","Victorian SOP",2010,"For storage only",28,"Discovery Bay Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16973,2710,"AUS","Victorian SOP",2010,"For storage only",28,"French Island National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16975,2710,"AUS","Victorian SOP",2005,"For storage only",28,"French Island National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16977,2710,"AUS","Victorian SOP",2013,"For storage only",28,"French Island National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13895,3005,"USA","USA SOP",2007,"For storage only",28,"Gateway","National Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -180,3009,"COL","AEMAPPS",2016,"For storage only",6,"Isla De La Corota","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -11095,3012,"CMR","GOBI Survey",2006,"For storage only",28,"Dja","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14366,3013,"CHL","GOBI Survey",2006,"For storage only",28,"Lauca","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10985,3016,"CHN","GOBI Survey",2006,"For storage only",28,"Dinghushan","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11513,3020,"EGY","GOBI Survey",2006,"For storage only",28,"Omayed","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -234,3025,"GRC","GOBI Survey",2006,"For storage only",8,"Mount Olympus National Park","UNESCO-MAB Biosphere Reserve","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -237,3026,"GRC","GOBI Survey",2006,"For storage only",8,"Gorge of Samaria National Park","UNESCO-MAB Biosphere Reserve","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -14819,3027,"GIN","METT",2004,"For storage only",28,"Réserve de la biosphère des Monts Nimba","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14820,3027,"GIN","METT",2010,"For storage only",28,"Réserve de la biosphère des Monts Nimba","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14911,3029,"HUN","GOBI Survey",2006,"For storage only",28,"Pilis Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14912,3029,"HUN","Stockholm BR Survey",2008,"For storage only",28,"Pilis Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11713,3033,"ITA","GOBI Survey",2006,"For storage only",28,"Miramare","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11805,3038,"KEN","West Indian Ocean MPA",2003,"For storage only",28,"Kiunga Marine Conservancy","Community Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12699,3040,"ROU","Stockholm BR Survey",2008,"For storage only",28,"Pietrosul Mare Nature Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12705,3041,"ROU","GOBI Survey",2006,"For storage only",28,"Retezat National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13085,3045,"SEN","GOBI Survey",2006,"For storage only",28,"Parc national du Niokolo-Koba","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13768,3051,"UGA","GOBI Survey",2006,"For storage only",28,"Queen Elizabeth National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13905,3052,"USA","GOBI Survey",2006,"For storage only",28,"Isle Royale National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13872,3056,"USA","GOBI Survey",2006,"For storage only",28,"Big Thicket National Preserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14289,3064,"ZWE","Birdlife IBA",2001,"For storage only",28,"Lake Chivero","Recreation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20618,3145,"PNG","RAPPAM",2004,"For storage only",28,"Cape Wom Memorial Park","Protected Seascape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20615,3146,"PNG","RAPPAM",2004,"For storage only",28,"Baiyer River","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20645,3148,"PNG","RAPPAM",2004,"For storage only",28,"Nanuk Island District Park","Provincial Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -820,3177,"BRA","SAMGe",2016,"For storage only",9,"RESEX Rio Cajari","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -15045,3213,"MLI","RAPPAM",2008,"For storage only",28,"Réserve totale de faune de Sounsan","Total Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11620,3214,"GMB","RAPPAM",2009,"For storage only",28,"Abuko","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10632,3230,"NER","IMET",2016,"For storage only",27,"Réserve de faune de Gadabedji","Faunal Reserve","JRC IMET information","JRC",2018,"English",FALSE -12124,3230,"NER","RAPPAM",2010,"For storage only",28,"Réserve de faune de Gadabedji","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21022,3237,"IDN","METT",2015,"For storage only",35,"Lore Lindu","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -15242,3305,"BLZ","Belize MEE",2006,"For storage only",29,"Mountain Pine Ridge Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15244,3305,"BLZ","METT",2010,"For storage only",29,"Mountain Pine Ridge Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15243,3305,"BLZ","Belize MEE",2009,"For storage only",29,"Mountain Pine Ridge Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15245,3305,"BLZ","METT",2013,"For storage only",29,"Mountain Pine Ridge Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15165,3306,"BLZ","Belize MEE",2009,"For storage only",29,"Chiquibul Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15163,3306,"BLZ","Belize MEE",2006,"For storage only",29,"Chiquibul Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15283,3307,"BLZ","Belize MEE",2009,"For storage only",29,"Sibun Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15282,3307,"BLZ","Belize MEE",2006,"For storage only",29,"Sibun Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15205,3308,"BLZ","Belize MEE",2009,"For storage only",29,"Grants Work Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15204,3308,"BLZ","Belize MEE",2006,"For storage only",29,"Grants Work Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15186,3311,"BLZ","Belize MEE",2006,"For storage only",29,"Deep River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15187,3311,"BLZ","Belize MEE",2009,"For storage only",29,"Deep River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15298,3312,"BLZ","Belize MEE",2009,"For storage only",29,"Swasey-Balden Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15297,3312,"BLZ","Belize MEE",2006,"For storage only",29,"Swasey-Balden Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15223,3313,"BLZ","Belize MEE",2006,"For storage only",29,"Machaca Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15226,3313,"BLZ","METT",2013,"For storage only",29,"Machaca Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15224,3313,"BLZ","Belize MEE",2009,"For storage only",29,"Machaca Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15225,3313,"BLZ","METT",2010,"For storage only",29,"Machaca Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15173,3314,"BLZ","Belize MEE",2006,"For storage only",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15171,3314,"BLZ","METT",2010,"For storage only",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15172,3314,"BLZ","METT",2013,"For storage only",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15177,3314,"BLZ","METT",2011,"For storage only",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15176,3314,"BLZ","METT",2005,"For storage only",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15174,3314,"BLZ","Belize MEE",2009,"For storage only",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15175,3314,"BLZ","METT",2009,"For storage only",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -1055,3315,"CRI","SINAD",2016,"For storage only",14,"Rio Macho","Reserva Forestal","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1039,3316,"CRI","SINAD",2016,"For storage only",14,"Los Santos","Reserva Forestal","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1024,3317,"CRI","SINAD",2016,"For storage only",14,"Golfo Dulce","Reserva Forestal","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1058,3325,"CRI","SINAD",2016,"For storage only",14,"Taboga","Reserva Forestal","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1010,3329,"CRI","SINAD",2016,"For storage only",14,"Cerros De Escazú","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -940,3370,"PER","METT",2016,"For storage only",13,"Tambopata","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28110,3370,"PER","METT",2005,"For storage only",28,"Tambopata","Reservas Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9375,3373,"HRV","METT",2014,"For storage only",19,"Krka","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9356,3373,"HRV","METT",2012,"For storage only",19,"Krka","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9394,3373,"HRV","METT",2016,"For storage only",19,"Krka","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -22196,3995,"SWE","European Diploma",1988,"For storage only",28,"Store Mosse","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13281,4003,"THA","Birdlife IBA",2007,"For storage only",28,"Sai Yok","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13255,4012,"THA","METT",2005,"For storage only",28,"Kaengkrachan Forest Complex","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13254,4012,"THA","Birdlife IBA",2007,"For storage only",28,"Kaengkrachan Forest Complex","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21306,4026,"ZAF","METT",2011,"For storage only",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21308,4026,"ZAF","METT",2013,"For storage only",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21304,4026,"ZAF","METT",2009,"For storage only",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21303,4026,"ZAF","METT",2007,"For storage only",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21307,4026,"ZAF","METT",2012,"For storage only",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21305,4026,"ZAF","METT",2010,"For storage only",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21285,4027,"ZAF","METT",2010,"For storage only",28,"Gamka Mountain Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21284,4027,"ZAF","METT",2009,"For storage only",28,"Gamka Mountain Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21283,4027,"ZAF","METT",2007,"For storage only",28,"Gamka Mountain Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21701,4028,"ZAF","METT",2010,"For storage only",28,"Rolfontein Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21222,4029,"ZAF","METT",2004,"For storage only",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21228,4029,"ZAF","Birdlife IBA",1998,"For storage only",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21223,4029,"ZAF","METT",2008,"For storage only",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21225,4029,"ZAF","METT",2011,"For storage only",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21224,4029,"ZAF","METT",2010,"For storage only",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21226,4029,"ZAF","METT",2012,"For storage only",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21227,4029,"ZAF","METT",2013,"For storage only",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21860,4031,"ZAF","METT",2010,"For storage only",28,"Vrolijkheid Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21862,4031,"ZAF","METT",2012,"For storage only",28,"Vrolijkheid Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21863,4031,"ZAF","METT",2013,"For storage only",28,"Vrolijkheid Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21861,4031,"ZAF","METT",2011,"For storage only",28,"Vrolijkheid Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21641,4034,"ZAF","METT",2012,"For storage only",28,"Oviston Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21640,4034,"ZAF","METT",2011,"For storage only",28,"Oviston Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21639,4034,"ZAF","METT",2010,"For storage only",28,"Oviston Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21642,4034,"ZAF","METT",2013,"For storage only",28,"Oviston Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21201,4035,"ZAF","METT",2010,"For storage only",28,"Camdeboo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21202,4035,"ZAF","METT",2013,"For storage only",28,"Camdeboo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21199,4035,"ZAF","Birdlife IBA",2013,"For storage only",28,"Camdeboo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21203,4035,"ZAF","METT",2012,"For storage only",28,"Camdeboo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14280,4081,"ZMB","METT",2004,"For storage only",28,"West Zambezi","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14237,4091,"ZMB","Birdlife IBA",2001,"For storage only",28,"Kafue Flats","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14231,4105,"ZMB","METT",2004,"For storage only",28,"Kafinda","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14219,4106,"ZMB","METT",2009,"For storage only",28,"Bangweulu","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14220,4106,"ZMB","METT",2012,"For storage only",28,"Bangweulu","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -29652,4115,"MAR","IMET",2018,"Not Reported",42,"Tazekka National Park","National Park","List of protected areas assessed with the Integrated Management Effectiveness Tool (IMET)","European Commission",2019,"English",FALSE -20652,4123,"PNG","RAPPAM",2004,"For storage only",28,"Pokili","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20347,4126,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Bhadra","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20348,4126,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Bhadra","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20346,4126,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Bhadra","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20343,4127,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Bandipur","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20345,4127,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Bandipur","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20344,4127,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Bandipur","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20357,4128,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Rajiv Gandhi (Nagarhole)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20359,4128,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Rajiv Gandhi (Nagarhole)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20358,4128,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Rajiv Gandhi (Nagarhole)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20427,4129,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Mookambika","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20642,4197,"PNG","RAPPAM",2004,"For storage only",28,"Mt Susu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20644,4199,"PNG","RAPPAM",2004,"For storage only",28,"Namanatabu","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20661,4200,"PNG","RAPPAM",2004,"For storage only",28,"Tonda","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20617,4201,"PNG","RAPPAM",2004,"For storage only",28,"Baniara Island","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20636,4202,"PNG","RAPPAM",2004,"For storage only",28,"Maza (I)","Marine Managed Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20616,4204,"PNG","RAPPAM",2004,"For storage only",28,"Balek Wildlife Sanctuary","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20614,4205,"PNG","RAPPAM",2004,"For storage only",28,"Bagiai (I)","Marine Managed Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12034,4245,"MNP","Birdlife IBA",2007,"For storage only",28,"Maug Island","Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20668,4247,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngerukewid Islands","Wildlife Preserve","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -11892,4254,"KIR","Birdlife IBA",2007,"For storage only",28,"Malden Island (Closed Area)","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12643,4263,"PYF","Birdlife IBA",2006,"For storage only",28,"Mohotani Reserve Integrale","Natural Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13327,4322,"TUN","WHA Outlook Report",2014,"For storage only",28,"Ichkeul National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13933,4325,"USA","WHA Outlook Report",2014,"For storage only",28,"Redwood National and State Parks","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11980,4326,"MNE","METT",2009,"For storage only",28,"Durmitor National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11981,4326,"MNE","METT",2012,"For storage only",28,"Durmitor National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11982,4326,"MNE","WHA Outlook Report",2014,"For storage only",28,"Durmitor National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11979,4326,"MNE","RAPPAM",2009,"For storage only",28,"Durmitor National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11164,4327,"COD","Birdlife IBA",2001,"For storage only",28,"Garamba National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11165,4327,"COD","WHA Outlook Report",2014,"For storage only",28,"Garamba National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11175,4328,"COD","WHA Outlook Report",2014,"For storage only",28,"Kahuzi-Biega National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11174,4328,"COD","Birdlife IBA",2001,"For storage only",28,"Kahuzi-Biega National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -65,4330,"ARG","Valdiviana",2001,"For storage only",3,"Lanín","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -51,4332,"ARG","METT",2003,"For storage only",3,"Iguazú","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -14047,4363,"VEN","Venezuela Vision",2001,"For storage only",28,"Laguna de Urao","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14015,4366,"VEN","Venezuela Vision",1991,"For storage only",28,"Duida-Marahuaca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14016,4366,"VEN","Venezuela Vision",2001,"For storage only",28,"Duida-Marahuaca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14086,4367,"VEN","Venezuela Vision",2001,"For storage only",28,"Serranía de la Neblina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14085,4367,"VEN","Venezuela Vision",1991,"For storage only",28,"Serranía de la Neblina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14033,4368,"VEN","Venezuela Vision",1991,"For storage only",28,"Jaua Sarisariñama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14034,4368,"VEN","Venezuela Vision",2001,"For storage only",28,"Jaua Sarisariñama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14066,4369,"VEN","Parks profiles",2003,"For storage only",28,"Morros de Macaira","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14067,4369,"VEN","Venezuela Vision",2001,"For storage only",28,"Morros de Macaira","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13986,4372,"VEN","Venezuela Vision",2001,"For storage only",28,"Cerro Autana","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14004,4374,"VEN","Venezuela Vision",2001,"For storage only",28,"Chorrera de las Gonz+ílez","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20688,4375,"SVK","CCPAMET",2017,"For storage only",32,"Mala Fatra","National Park; third level of protection","third level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20690,4376,"SVK","CCPAMET",2017,"For storage only",32,"Slovensky Kras","National Park; third level of protection","third level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20692,4377,"SVK","CCPAMET",0,"For storage only",32,"Slovensky raj","National Park; third level of protection","third level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20694,4378,"SVK","CCPAMET",2017,"For storage only",32,"Velka Fatra","National Park; third level of protection","third level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20696,4379,"SVK","CCPAMET",2017,"For storage only",32,"Vihorlat","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -13323,4487,"TUN","METT",2012,"For storage only",28,"Bouhedma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10798,4501,"BGR","RAPPAM",2004,"For storage only",28,"Zlatni pyasatsi","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20377,4527,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Namdapha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20378,4527,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Namdapha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20379,4527,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Namdapha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20512,4528,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"D' Ering Memorial (Lali)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20384,4530,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Pakke (Pakhui)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20383,4530,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Pakke (Pakhui)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20385,4530,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Pakke (Pakhui)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20590,4535,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Sonai-Rupai","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20403,4537,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Mahuadanr","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20431,4538,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Dalma","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20531,4539,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Gautam Budha","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20432,4544,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Kaimur","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20497,4547,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Koderma","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20502,4550,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Bondla","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20540,4552,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Bansda","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20435,4553,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Gulf of Kutch","Marine National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20476,4556,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Dachigam","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20458,4558,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Hemis","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20391,4559,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Kishtwar","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20557,4579,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Shimla Water Catchment","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20517,4586,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Manali","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20527,4592,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Bannerghatta","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20450,4600,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Biligiri Rangaswami Temple","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20349,4600,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Biligiri Rangaswami Temple","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20529,4602,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Idukki","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20500,4604,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Karnala","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20499,4607,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Great Indian Bustard","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20415,4609,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Keibul-Lamjao","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20551,4610,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Siju","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20593,4612,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Puliebadze","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20447,4618,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Abohar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20472,4623,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Sitamata","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20537,4628,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Lothian Island","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20492,4632,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Chapramari","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20401,4633,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Mahananda","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20578,4635,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Ballavpur","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -10937,4644,"BOL","RAPPAM",2004,"For storage only",28,"Tunari","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1049,4646,"CRI","SINAD",2016,"For storage only",14,"Palo Verde","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28059,4646,"CRI","METT",2006,"For storage only",28,"Palo Verde","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28275,4646,"CRI","METT",2011,"For storage only",28,"Palo Verde","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15075,4648,"MWI","METT",2010,"For storage only",28,"Vwaza Marsh","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15076,4648,"MWI","RAPPAM",2006,"For storage only",28,"Vwaza Marsh","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9605,4649,"MOZ","METT",2015,"For storage only",21,"Marromeu","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9603,4649,"MOZ","RAPPAM",2006,"For storage only",21,"Marromeu","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9604,4649,"MOZ","METT",2014,"For storage only",21,"Marromeu","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9606,4649,"MOZ","METT",2016,"For storage only",21,"Marromeu","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9594,4650,"MOZ","RAPPAM",2006,"For storage only",21,"Gilé","National Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9595,4650,"MOZ","METT",2014,"For storage only",21,"Gilé","National Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9597,4650,"MOZ","METT",2016,"For storage only",21,"Gilé","National Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9596,4650,"MOZ","METT",2015,"For storage only",21,"Gilé","National Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9599,4651,"MOZ","METT",2015,"For storage only",21,"Niassa","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9598,4651,"MOZ","RAPPAM",2006,"For storage only",21,"Niassa","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9581,4652,"MOZ","RAPPAM",2006,"For storage only",21,"Maputo","Special Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9582,4652,"MOZ","METT",2014,"For storage only",21,"Maputo","Special Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9583,4652,"MOZ","METT",2015,"For storage only",21,"Maputo","Special Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -28100,4652,"MOZ","METT",2006,"For storage only",28,"Maputo","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9584,4652,"MOZ","METT",2016,"For storage only",21,"Maputo","Special Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9600,4653,"MOZ","METT",2014,"For storage only",21,"Pomene","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9601,4653,"MOZ","METT",2015,"For storage only",21,"Pomene","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9602,4653,"MOZ","METT",2016,"For storage only",21,"Pomene","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -13268,4675,"THA","Birdlife IBA",2007,"For storage only",28,"Mae Ping","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15657,4696,"AUS","Birdlife IBA",2008,"For storage only",28,"Betsey Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20923,4720,"IDN","METT",2015,"For storage only",35,"Pulau Bokor","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20974,4721,"IDN","METT",2015,"For storage only",35,"Pulau Rambut","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -12573,4723,"PRT","Birdlife IBA",2005,"For storage only",28,"Sapal de Castro Marim e Vila Real de Santo Antóni","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20980,4727,"IDN","METT",2015,"For storage only",35,"Tanjung Peropa","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -13841,4729,"URY","METT",2005,"For storage only",28,"Laguna de Castillos","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9840,4734,"KOR","Korea SOP",2016,"For storage only",26,"Juwangsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9845,4735,"KOR","Korea SOP",2016,"For storage only",26,"Taeanhaean","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9832,4736,"KOR","Korea SOP",2016,"For storage only",26,"Dadohaehaesang","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -21638,4759,"ZAF","Birdlife IBA",2007,"For storage only",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21633,4759,"ZAF","RAPPAM",2001,"For storage only",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21635,4759,"ZAF","METT",2011,"For storage only",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21634,4759,"ZAF","METT",2010,"For storage only",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21637,4759,"ZAF","METT",2013,"For storage only",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21636,4759,"ZAF","METT",2012,"For storage only",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21468,4763,"ZAF","METT",2010,"For storage only",28,"Loskop Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21465,4763,"ZAF","METT",2011,"For storage only",28,"Loskop Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21466,4763,"ZAF","METT",2012,"For storage only",28,"Loskop Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21467,4763,"ZAF","METT",2013,"For storage only",28,"Loskop Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21332,4764,"ZAF","METT",2013,"For storage only",28,"Hans Merensky Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21331,4764,"ZAF","METT",2012,"For storage only",28,"Hans Merensky Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21330,4764,"ZAF","METT",2011,"For storage only",28,"Hans Merensky Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21329,4764,"ZAF","METT",2010,"For storage only",28,"Hans Merensky Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21333,4766,"ZAF","METT",2013,"For storage only",28,"Happy Rest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21452,4767,"ZAF","METT",2010,"For storage only",28,"Langjan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21454,4767,"ZAF","METT",2012,"For storage only",28,"Langjan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21455,4767,"ZAF","METT",2013,"For storage only",28,"Langjan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21453,4767,"ZAF","METT",2011,"For storage only",28,"Langjan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14379,4769,"CHL","RAPPAM",2005,"For storage only",28,"Los Ruiles","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14377,4769,"CHL","METT",2010,"For storage only",28,"Los Ruiles","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14378,4769,"CHL","METT",0,"For storage only",28,"Los Ruiles","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12876,4815,"RUS","RAPPAM",2001,"For storage only",28,"Magadansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13052,4817,"RUS","RAPPAM",2001,"For storage only",28,"Yugansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14675,4840,"ESP","Birdlife IBA",2008,"For storage only",28,"Picos de Europa en Castilla y León","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -589,4891,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Do Jari","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -280,4891,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Do Jari","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -21272,4934,"ZAF","METT",2013,"For storage only",28,"Entumeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21270,4934,"ZAF","METT",2011,"For storage only",28,"Entumeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21271,4934,"ZAF","METT",2012,"For storage only",28,"Entumeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21273,4934,"ZAF","RAPPAM",2001,"For storage only",28,"Entumeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21398,4936,"ZAF","METT",2013,"For storage only",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21395,4936,"ZAF","METT",2010,"For storage only",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21397,4936,"ZAF","METT",2012,"For storage only",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21396,4936,"ZAF","METT",2011,"For storage only",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21399,4936,"ZAF","RAPPAM",2001,"For storage only",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21171,4938,"ZAF","METT",2011,"For storage only",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21174,4938,"ZAF","RAPPAM",2001,"For storage only",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21173,4938,"ZAF","METT",2013,"For storage only",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21170,4938,"ZAF","METT",2010,"For storage only",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21172,4938,"ZAF","METT",2012,"For storage only",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21406,4940,"ZAF","METT",2012,"For storage only",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21405,4940,"ZAF","METT",2011,"For storage only",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21408,4940,"ZAF","RAPPAM",2001,"For storage only",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21407,4940,"ZAF","METT",2013,"For storage only",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21404,4940,"ZAF","METT",2010,"For storage only",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21338,4943,"ZAF","METT",2013,"For storage only",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21339,4943,"ZAF","RAPPAM",2001,"For storage only",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21336,4943,"ZAF","METT",2011,"For storage only",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21335,4943,"ZAF","METT",2010,"For storage only",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21337,4943,"ZAF","METT",2012,"For storage only",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21244,4944,"ZAF","METT",2013,"For storage only",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21242,4944,"ZAF","METT",2011,"For storage only",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21245,4944,"ZAF","RAPPAM",2001,"For storage only",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21243,4944,"ZAF","METT",2012,"For storage only",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21241,4944,"ZAF","METT",2010,"For storage only",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21011,4994,"IDN","METT",2015,"For storage only",35,"Kerinci Seblat","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -11551,4999,"DZA","WHA Outlook Report",2014,"For storage only",28,"Tassili n'Ajjer","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11550,4999,"DZA","METT",2010,"For storage only",28,"Tassili n'Ajjer","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11548,4999,"DZA","Birdlife IBA",2001,"For storage only",28,"Tassili n'Ajjer","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19446,5000,"AUS","WHA Outlook Report",2014,"For storage only",28,"Tasmanian Wilderness","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17968,5001,"AUS","WHA Outlook Report",2014,"For storage only",28,"Lord Howe Island Group","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14879,5002,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14883,5002,"HND","METT",2005,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14882,5002,"HND","GOBI Survey",2006,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14876,5002,"HND","PIP Site Consolidation",2000,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14884,5002,"HND","WHA Outlook Report",2014,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14878,5002,"HND","PIP Site Consolidation",2002,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14880,5002,"HND","PROARCA/CAPAS",2003,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14877,5002,"HND","PIP Site Consolidation",2001,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14870,5002,"HND","Enhancing Our Heritage",2002,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14881,5002,"HND","PROARCA/CAPAS",2006,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14872,5002,"HND","Enhancing Our Heritage",2007,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14874,5002,"HND","PIP Site Consolidation",1998,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14873,5002,"HND","PIP Site Consolidation",1997,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14871,5002,"HND","Enhancing Our Heritage",2005,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14875,5002,"HND","PIP Site Consolidation",1999,"For storage only",28,"Río Plátano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13229,5004,"SYC","WHA Outlook Report",2014,"For storage only",28,"Aldabra Atoll","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13227,5004,"SYC","Enhancing Our Heritage",2007,"For storage only",28,"Aldabra Atoll","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13226,5004,"SYC","Enhancing Our Heritage",2002,"For storage only",28,"Aldabra Atoll","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13224,5004,"SYC","Birdlife IBA",2001,"For storage only",28,"Aldabra Atoll","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13677,5005,"TZA","METT",2007,"For storage only",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13676,5005,"TZA","Birdlife IBA",2001,"For storage only",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13680,5005,"TZA","METT",2012,"For storage only",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13679,5005,"TZA","WHA Outlook Report",2014,"For storage only",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13674,5005,"TZA","METT",2009,"For storage only",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20771,5021,"MDG","IEG",2016,"For storage only",34,"Analamazoatra","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20772,5022,"MDG","IEG",2003,"For storage only",34,"Analamerana","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20778,5023,"MDG","IEG",2016,"For storage only",34,"Anjanaharibe-Sud","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20780,5024,"MDG","IEG",2003,"For storage only",34,"Ankarana","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20816,5026,"MDG","IEG",2003,"For storage only",34,"Manongarivo","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20803,5027,"MDG","IEG",2016,"For storage only",34,"Kalambatritra","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20815,5028,"MDG","IEG",2005,"For storage only",34,"Manombo","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20804,5029,"MDG","IEG",2016,"For storage only",34,"Pic d'Ivohibe","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20766,5031,"MDG","SAPM",2015,"For storage only",34,"Bemarivo","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20792,5032,"MDG","SAPM",2015,"For storage only",34,"Bora","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20805,5033,"MDG","SAPM",2015,"For storage only",34,"Kasijy","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20814,5034,"MDG","SAPM",2016,"For storage only",34,"Maningoza","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20819,5035,"MDG","IEG",2016,"For storage only",34,"Marotandrano","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20837,5036,"MDG","SAPM",2016,"For storage only",34,"Tampoketsa Analamaitso","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20764,5037,"MDG","IEG",2011,"For storage only",34,"Ambatovaky","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20813,5038,"MDG","IEG",2016,"For storage only",34,"Mangerivola","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20824,5039,"MDG","IEG",2016,"For storage only",34,"Nosy Mangabe","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20774,5040,"MDG","IEG",2003,"For storage only",34,"Andranomena","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20793,5041,"MDG","IEG",2003,"For storage only",34,"Cap Sainte-Marie","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -12071,5042,"MUS","METT",2009,"For storage only",28,"Perrier","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12059,5045,"MUS","METT",2009,"For storage only",28,"Cabinet Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12061,5048,"MUS","METT",2009,"For storage only",28,"Gouly Pere","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12056,5049,"MUS","METT",2009,"For storage only",28,"Bois Sec","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12064,5050,"MUS","METT",2009,"For storage only",28,"Ilot Gabriel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12062,5054,"MUS","METT",2009,"For storage only",28,"Ile aux Aigrettes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28177,5061,"BTN","METT",2013,"For storage only",28,"Jigme Dorji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -112,5061,"BTN","Bhutan METT+",2016,"For storage only",4,"Jigme Dorji","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English",FALSE -114,5066,"BTN","Bhutan METT+",2016,"For storage only",4,"Jigme Singye Wangchuck","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English",FALSE -100,5082,"ARG","GOBI Survey",2009,"For storage only",3,"Laguna Blanca","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -15032,5086,"MLI","GOBI Survey",2006,"For storage only",28,"Réserve de Biosphère du Baoulé","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15030,5086,"MLI","RAPPAM",2008,"For storage only",28,"Réserve de Biosphère du Baoulé","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13284,5118,"THA","Birdlife IBA",2007,"For storage only",28,"Khuen Si Nakarin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -281,5123,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Do Seridó","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -590,5123,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Do Seridó","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -572,5124,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Caracaraí","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -267,5124,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Caracaraí","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -408,5126,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Guaporé","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -757,5126,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Guaporé","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -754,5127,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Abufari","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -406,5127,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Abufari","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -11608,5150,"GHA","Birdlife IBA",2001,"For storage only",28,"Bia","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10753,5158,"BEN","METT",2010,"For storage only",28,"La Lama Nord","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13235,5164,"TCD","RAPPAM",2008,"For storage only",28,"Bahr Salamat","Faunal reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13246,5165,"TCD","RAPPAM",2008,"For storage only",28,"Siniaka-Minia","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13242,5166,"TCD","RAPPAM",2008,"For storage only",28,"Mandelia","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13236,5168,"TCD","RAPPAM",2008,"For storage only",28,"Binder-Léré","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11600,5173,"GHA","Africa Rainforest Study",2001,"For storage only",28,"Nini-Suhien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11601,5173,"GHA","RAPPAM",2002,"For storage only",28,"Nini-Suhien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11602,5173,"GHA","METT",2003,"For storage only",28,"Nini-Suhien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10628,5174,"MRT","IMET",2016,"For storage only",27,"Cap Blanc","Satellite Reserve","JRC IMET information","JRC",2018,"English",FALSE -12044,5174,"MRT","METT",0,"For storage only",28,"Cap Blanc","Satellite Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12045,5174,"MRT","RAPPAM",2007,"For storage only",28,"Cap Blanc","Satellite Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12046,5174,"MRT","RAPPAM",2009,"For storage only",28,"Cap Blanc","Satellite Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13082,5178,"SEN","METT",0,"For storage only",28,"Ndiael","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13108,5179,"SLE","Birdlife IBA",2005,"For storage only",28,"Western Area","No or Non - Hunting Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13100,5180,"SLE","Birdlife IBA",2005,"For storage only",28,"Kangari Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13099,5180,"SLE","METT",2006,"For storage only",28,"Kangari Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11152,5183,"COD","METT",2010,"For storage only",28,"Bombo Lumene","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11153,5183,"COD","RAPPAM",2010,"For storage only",28,"Bombo Lumene","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11583,5187,"GAB","GOBI Survey",2006,"For storage only",28,"Réserve naturelle intégrale d'Ipassa-Makokou","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11606,5189,"GHA","METT",2009,"For storage only",28,"Bia National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20667,5190,"RWA","GOBI Survey",2006,"For storage only",28,"Parc national des Volcans","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12358,5191,"PAN","PIP Site Consolidation",2001,"For storage only",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12356,5191,"PAN","PIP Site Consolidation",1998,"For storage only",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12353,5191,"PAN","PIP Site Consolidation",1991,"For storage only",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12354,5191,"PAN","PIP Site Consolidation",1996,"For storage only",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12359,5191,"PAN","PIP Site Consolidation",2000,"For storage only",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12357,5191,"PAN","PIP Site Consolidation",1999,"For storage only",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12355,5191,"PAN","PIP Site Consolidation",1997,"For storage only",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13881,5194,"USA","GOBI Survey",2006,"For storage only",28,"Central Gulf Coastal Plain Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14600,5199,"ESP","Stockholm BR Survey",2008,"For storage only",28,"La Palma","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14599,5199,"ESP","GOBI Survey",2006,"For storage only",28,"La Palma","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15095,5211,"PHL","METT",2006,"For storage only",28,"Bicol","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15094,5216,"PHL","METT",2009,"For storage only",28,"Balbalasang-Balbalan National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28183,5224,"SUR","METT",2010,"For storage only",28,"Hertenrits","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18289,5331,"AUS","Birdlife IBA",2008,"For storage only",28,"Moulting Lagoon","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28094,5394,"MEX","METT",2006,"For storage only",28,"Cumbres de Monterrey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10712,5581,"AUT","European Diploma",1967,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12602,5808,"PRT","Birdlife IBA",2005,"For storage only",28,"Serra da Malcata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11712,6006,"ITA","European Diploma",2005,"For storage only",28,"Parco naturale di Migliarino, San Rossore e Massaciuccoli","Regional/Provincial Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11711,6022,"ITA","European Diploma",1993,"For storage only",28,"Parco naturale delle Alpi Marittime","Regional/Provincial Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -762,6074,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Tapirapé","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -413,6074,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Tapirapé","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -11554,6325,"FRA","European Diploma",1966,"For storage only",28,"Camargue","Regional Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -29588,6673,"DOM","METT",2012,"For storage only",12,"Jaragua","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29589,6673,"DOM","METT",2015,"For storage only",12,"Jaragua","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -871,6673,"DOM","METT",2009,"For storage only",12,"Jaragua","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29591,6674,"DOM","METT",2015,"For storage only",12,"Submarine national park Monte Cristi","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29590,6674,"DOM","METT",2012,"For storage only",12,"Submarine national park Monte Cristi","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -873,6674,"DOM","METT",2009,"For storage only",12,"Submarine national park Monte Cristi","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29593,6675,"DOM","METT",2015,"For storage only",12,"Sierra de Bahoruco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29592,6675,"DOM","METT",2012,"For storage only",12,"Sierra de Bahoruco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -865,6675,"DOM","METT",2009,"For storage only",12,"Sierra de Bahoruco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -28236,6675,"DOM","METT",2013,"For storage only",28,"Sierra de Bahoruco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12272,6810,"PAK","METT",2003,"For storage only",28,"Machiara","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20767,6932,"MDG","IEG",2016,"For storage only",34,"Ambohitantely","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -13232,6938,"SYC","Birdlife IBA",2001,"For storage only",28,"Praslin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13231,6939,"SYC","West Indian Ocean MPA",2003,"For storage only",28,"Cousin Island","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -402,6957,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica De Saltinho","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -749,6957,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica De Saltinho","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -11555,7165,"FRA","Stockholm BR Survey",2008,"For storage only",28,"Camargue","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11576,7168,"FRA","European Diploma",1985,"For storage only",28,"Scandola","Corsican Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15097,7237,"PHL","METT",2006,"For storage only",28,"Libmanan Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21422,7378,"ZAF","METT",2013,"For storage only",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21416,7378,"ZAF","METT",2006,"For storage only",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21417,7378,"ZAF","METT",2007,"For storage only",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21418,7378,"ZAF","METT",2009,"For storage only",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21419,7378,"ZAF","METT",2010,"For storage only",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21420,7378,"ZAF","METT",2011,"For storage only",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21421,7378,"ZAF","METT",2012,"For storage only",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21139,7383,"ZAF","METT",2013,"For storage only",28,"Barberspan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21137,7383,"ZAF","METT",2010,"For storage only",28,"Barberspan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21138,7383,"ZAF","METT",2012,"For storage only",28,"Barberspan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21618,7384,"ZAF","METT",2013,"For storage only",28,"Nylsvley Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21615,7384,"ZAF","METT",2010,"For storage only",28,"Nylsvley Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21616,7384,"ZAF","METT",2011,"For storage only",28,"Nylsvley Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21617,7384,"ZAF","METT",2012,"For storage only",28,"Nylsvley Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21645,7385,"ZAF","METT",2012,"For storage only",28,"Percy Fyfe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21646,7385,"ZAF","METT",2013,"For storage only",28,"Percy Fyfe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21644,7385,"ZAF","METT",2011,"For storage only",28,"Percy Fyfe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21643,7385,"ZAF","METT",2010,"For storage only",28,"Percy Fyfe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21619,7386,"ZAF","METT",2010,"For storage only",28,"Ohrigstad Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21621,7386,"ZAF","METT",2012,"For storage only",28,"Ohrigstad Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21622,7386,"ZAF","METT",2013,"For storage only",28,"Ohrigstad Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21620,7386,"ZAF","METT",2011,"For storage only",28,"Ohrigstad Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21704,7387,"ZAF","METT",2012,"For storage only",28,"Roodeplaat Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21703,7387,"ZAF","METT",2011,"For storage only",28,"Roodeplaat Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21705,7387,"ZAF","METT",2013,"For storage only",28,"Roodeplaat Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21702,7387,"ZAF","METT",2010,"For storage only",28,"Roodeplaat Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14797,7401,"ETH","Birdlife IBA",1996,"For storage only",28,"Yabello","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14998,7409,"LBR","Birdlife IBA",2013,"For storage only",28,"Sapo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14999,7409,"LBR","METT",2002,"For storage only",28,"Sapo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15000,7409,"LBR","METT",2011,"For storage only",28,"Sapo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13104,7417,"SLE","METT",2006,"For storage only",28,"Outamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13105,7417,"SLE","Birdlife IBA",2005,"For storage only",28,"Outamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11773,7422,"KEN","Birdlife IBA",1999,"For storage only",28,"Arabuko Sokoke","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11771,7422,"KEN","METT",2005,"For storage only",28,"Arabuko Sokoke","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11772,7422,"KEN","METT",2006,"For storage only",28,"Arabuko Sokoke","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13668,7434,"TZA","METT",2011,"For storage only",28,"Saadani National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13492,7436,"TZA","METT",2013,"For storage only",28,"Magombera","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13521,7437,"TZA","Birdlife IBA",2001,"For storage only",28,"Maswa G.R. (N)","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11900,7447,"LSO","METT",2005,"For storage only",28,"Sehlabathebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14296,7450,"BWA","METT",2013,"For storage only",28,"Chobe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -906,7461,"PER","METT",2016,"For storage only",13,"Del Río Abiseo","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -15084,7465,"NGA","Birdlife IBA",2009,"For storage only",28,"Okomu","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13264,7468,"THA","METT",2009,"For storage only",28,"Khlong Lan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22109,7475,"FIN","RAPPAM",2004,"For storage only",28,"Petkeljärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22124,7476,"FIN","RAPPAM",2004,"For storage only",28,"Rokuan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22063,7477,"FIN","RAPPAM",2004,"For storage only",28,"Liesjärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22173,7478,"FIN","RAPPAM",2004,"For storage only",28,"Vaskijärven luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22099,7479,"FIN","RAPPAM",2004,"For storage only",28,"Paljakan luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22005,7480,"FIN","RAPPAM",2004,"For storage only",28,"Häädetkeitaan luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22024,7482,"FIN","RAPPAM",2004,"For storage only",28,"Karkalin luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22146,7483,"FIN","RAPPAM",2004,"For storage only",28,"Sinivuoren luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22172,7485,"FIN","RAPPAM",2004,"For storage only",28,"Värriön luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22148,7486,"FIN","RAPPAM",2004,"For storage only",28,"Sukerijärven luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22083,7487,"FIN","RAPPAM",2004,"For storage only",28,"Olvassuon luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22107,7488,"FIN","RAPPAM",2004,"For storage only",28,"Pelson luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22046,7489,"FIN","RAPPAM",2004,"For storage only",28,"Koivusuon luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22120,7490,"FIN","Birdlife IBA",2010,"For storage only",28,"Riisitunturin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22123,7490,"FIN","RAPPAM",2004,"For storage only",28,"Riisitunturin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22008,7491,"FIN","RAPPAM",2004,"For storage only",28,"Hiidenportin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22154,7492,"FIN","RAPPAM",2004,"For storage only",28,"Tiilikkajärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22103,7493,"FIN","RAPPAM",2004,"For storage only",28,"Patvinsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22104,7493,"FIN","Birdlife IBA",2010,"For storage only",28,"Patvinsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22139,7494,"FIN","RAPPAM",2004,"For storage only",28,"Salamajärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22027,7495,"FIN","RAPPAM",2004,"For storage only",28,"Kauhanevan-Pohjankankaan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22056,7496,"FIN","RAPPAM",2004,"For storage only",28,"Lauhanvuoren kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22007,7497,"FIN","RAPPAM",2004,"For storage only",28,"Helvetinjärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22143,7498,"FIN","European Diploma",1996,"For storage only",28,"Seitsemisen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22010,7499,"FIN","RAPPAM",2004,"For storage only",28,"Isojärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14297,7508,"BWA","Birdlife IBA",2001,"For storage only",28,"Gemsbok","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21381,7508,"BWA","METT",2010,"For storage only",28,"Gemsbok","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14293,7510,"BWA","Birdlife IBA",2001,"For storage only",28,"Central Kalahari","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13434,7520,"TZA","METT",2006,"For storage only",28,"Kimboza","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13432,7520,"TZA","METT",2005,"For storage only",28,"Kimboza","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -220,7522,"CIV","METT",2017,"For storage only",7,"Azagny National Park","National Park","Côte d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French",FALSE -223,7523,"CIV","METT",2017,"For storage only",7,"Comoe National Park","National Park","Côte d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French",FALSE -11778,7543,"KEN","METT",2012,"For storage only",28,"Buda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11777,7543,"KEN","METT",2010,"For storage only",28,"Buda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11776,7543,"KEN","METT",2006,"For storage only",28,"Buda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11779,7543,"KEN","METT",2007,"For storage only",28,"Buda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28118,7561,"KEN","METT",2005,"For storage only",28,"Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11795,7561,"KEN","METT",2007,"For storage only",28,"Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11783,7561,"KEN","METT",2006,"For storage only",28,"Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11803,7602,"KEN","Birdlife IBA",1999,"For storage only",28,"Kikuyu Escarpment","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11811,7644,"KEN","METT",2006,"For storage only",28,"Marenji","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11812,7644,"KEN","METT",2007,"For storage only",28,"Marenji","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11820,7664,"KEN","METT",2007,"For storage only",28,"Mrima","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11819,7664,"KEN","METT",2006,"For storage only",28,"Mrima","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11822,7676,"KEN","METT",2007,"For storage only",28,"Mwachi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11821,7676,"KEN","METT",2006,"For storage only",28,"Mwachi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11838,7744,"KEN","METT",2007,"For storage only",28,"Witu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11837,7744,"KEN","METT",2006,"For storage only",28,"Witu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15079,7873,"NGA","Birdlife IBA",2013,"For storage only",28,"Gashaka-Gumti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14131,7877,"VNM","Birdlife IBA",2007,"For storage only",28,"Cat Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28261,7877,"VNM","METT",2011,"For storage only",28,"Cat Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28249,7877,"VNM","METT",2012,"For storage only",28,"Cat Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28295,7877,"VNM","METT",2008,"For storage only",28,"Cat Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14145,7878,"VNM","RAPPAM",2004,"For storage only",28,"Cuc Phuong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14899,7879,"HTI","METT",2009,"For storage only",28,"Parc Macaya","Natural National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14898,7880,"HTI","METT",2009,"For storage only",28,"La Visite","Natural National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13340,7886,"TZA","Birdlife IBA",2002,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -250,7906,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental De Guaraqueçaba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -535,7906,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental De Guaraqueçaba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -591,7908,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Do Taim","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -282,7908,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Do Taim","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -14301,7909,"CHL","METT",2010,"For storage only",28,"Alerce Andino","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14300,7909,"CHL","METT",2004,"For storage only",28,"Alerce Andino","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14322,7910,"CHL","METT",2010,"For storage only",28,"Chiloe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14324,7910,"CHL","RAPPAM",2005,"For storage only",28,"Chiloe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14321,7910,"CHL","METT",0,"For storage only",28,"Chiloe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14471,7912,"ECU","PIP Site Consolidation",1997,"For storage only",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14470,7912,"ECU","PIP Site Consolidation",1996,"For storage only",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14472,7912,"ECU","PIP Site Consolidation",1998,"For storage only",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14468,7912,"ECU","Ecuador MEE",1999,"For storage only",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14475,7912,"ECU","PIP Site Consolidation",2001,"For storage only",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14473,7912,"ECU","PIP Site Consolidation",1999,"For storage only",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14474,7912,"ECU","PIP Site Consolidation",2000,"For storage only",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14469,7912,"ECU","PIP Site Consolidation",1992,"For storage only",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14428,7913,"ECU","Ecuador MEE",1999,"For storage only",28,"Cajas","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14443,7914,"ECU","Ecuador MEE",1999,"For storage only",28,"El Boliche","National Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -951,7921,"PER","METT",2016,"For storage only",13,"Lagunas de Mejia","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -12261,7952,"NPL","RAPPAM",2002,"For storage only",28,"Shey-Phoksundo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12263,7952,"NPL","Birdlife IBA",2004,"For storage only",28,"Shey-Phoksundo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12262,7952,"NPL","METT",2005,"For storage only",28,"Shey-Phoksundo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12231,7953,"NPL","RAPPAM",2002,"For storage only",28,"Khaptad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10752,7957,"BEN","METT",2010,"For storage only",28,"Agoua","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14256,7962,"ZMB","METT",2006,"For storage only",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14259,7962,"ZMB","METT",2012,"For storage only",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14258,7962,"ZMB","METT",2007,"For storage only",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14253,7962,"ZMB","METT",2003,"For storage only",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14255,7962,"ZMB","METT",2005,"For storage only",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14254,7962,"ZMB","METT",2004,"For storage only",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14257,7962,"ZMB","METT",2009,"For storage only",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14261,7962,"ZMB","Birdlife IBA",2001,"For storage only",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28043,7996,"BTN","METT",2003,"For storage only",28,"Royal Manas","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -118,7996,"BTN","Bhutan METT+",2016,"For storage only",4,"Royal Manas","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English",FALSE -20601,8024,"MMR","Birdlife IBA",2003,"For storage only",28,"Moyingyi Wetland","Bird Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20600,8033,"MMR","Asean MEE",2012,"For storage only",28,"Mainmahla Kyun","Wildlife Sanctuary and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20599,8035,"MMR","Asean MEE",2012,"For storage only",28,"Lampi Island","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13275,8037,"THA","METT",2005,"For storage only",28,"Pang Sida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13274,8037,"THA","Birdlife IBA",2007,"For storage only",28,"Pang Sida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13286,8040,"THA","Birdlife IBA",2007,"For storage only",28,"Thap Lan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21091,8066,"IDN","METT",2015,"For storage only",35,"Sorong","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21056,8069,"IDN","METT",2015,"For storage only",35,"Gunung Meja","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21102,8072,"IDN","METT",2015,"For storage only",35,"Teluk Youtefa","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21106,8117,"IDN","METT",2015,"For storage only",35,"Yapen Tengah","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21066,8122,"IDN","METT",2015,"For storage only",35,"Klamono","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -13101,8517,"SLE","Birdlife IBA",2005,"For storage only",28,"Loma Mountains","No or Non - Hunting Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20938,8521,"IDN","METT",2015,"For storage only",35,"Telaga Warna","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20856,8530,"IDN","METT",2015,"For storage only",35,"Cigenteng Cipanji","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20874,8532,"IDN","METT",2015,"For storage only",35,"Papandayan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21077,8533,"IDN","METT",2015,"For storage only",35,"Papandayan","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21096,8535,"IDN","METT",2015,"For storage only",35,"Talaga Bodas","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20902,8536,"IDN","METT",2015,"For storage only",35,"Nusa Gede Panjalu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20912,8537,"IDN","METT",2015,"For storage only",35,"Pananjung Pangandaran","Marine Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21069,8539,"IDN","METT",2015,"For storage only",35,"Linggarjati","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21044,8542,"IDN","METT",2015,"For storage only",35,"Cimanggu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21063,8549,"IDN","METT",2015,"For storage only",35,"Kawah Kamojang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20869,8550,"IDN","METT",2015,"For storage only",35,"Gunung Burangrang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20966,8552,"IDN","METT",2015,"For storage only",35,"Muara Angke","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21008,8559,"IDN","METT",2015,"For storage only",35,"Gunung Ciremai","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20944,8588,"IDN","METT",2015,"For storage only",35,"Wijaya Kusuma","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20866,8590,"IDN","METT",2015,"For storage only",35,"Guci","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21101,8591,"IDN","METT",2015,"For storage only",35,"Telogo Warno Pengilon","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20939,8594,"IDN","METT",2015,"For storage only",35,"Telogo Dringo","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20888,8596,"IDN","METT",2015,"For storage only",35,"Kecubung Ulolanang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20909,8597,"IDN","METT",2015,"For storage only",35,"Pagerwunung Darupono","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20890,8598,"IDN","METT",2015,"For storage only",35,"Keling II/III","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20884,8602,"IDN","METT",2015,"For storage only",35,"Sub Vak 18c 19b Jatinegara","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20850,8604,"IDN","METT",2015,"For storage only",35,"Vak 55 Bantarbolang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21052,8605,"IDN","METT",2015,"For storage only",35,"Grojogan Sewu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20870,8607,"IDN","METT",2015,"For storage only",35,"Gunung Butak","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21059,8609,"IDN","METT",2015,"For storage only",35,"Gunung Selok","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20853,8610,"IDN","METT",2015,"For storage only",35,"Bekutuk","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20865,8623,"IDN","METT",2015,"For storage only",35,"Gua Nglirip","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20875,8624,"IDN","METT",2015,"For storage only",35,"Picis","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20896,8627,"IDN","METT",2015,"For storage only",35,"Manggis Gadungan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20927,8629,"IDN","METT",2015,"For storage only",35,"Pulau Sempu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21054,8630,"IDN","METT",2015,"For storage only",35,"Gunung Baung","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20911,8631,"IDN","METT",2015,"For storage only",35,"Pancur Ijen I/II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20857,8633,"IDN","METT",2015,"For storage only",35,"Curah Manis Sempolan I - VIII","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21104,8635,"IDN","METT",2015,"For storage only",35,"Tretes","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20903,8648,"IDN","METT",2015,"For storage only",35,"Nusakambangan Timur","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20940,8654,"IDN","METT",2015,"For storage only",35,"Teluk Adang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21024,8662,"IDN","METT",2015,"For storage only",35,"Manupeu Tanadaru","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20901,8669,"IDN","METT",2015,"For storage only",35,"Muara Kendawangan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28068,8673,"IDN","METT",2003,"For storage only",28,"Betung Kerihun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21000,8673,"IDN","METT",2015,"For storage only",35,"Betung Kerihun","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28069,8673,"IDN","METT",2006,"For storage only",28,"Betung Kerihun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21057,8674,"IDN","METT",2015,"For storage only",35,"Gunung Melintang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20873,8694,"IDN","METT",2015,"For storage only",35,"Gunung Kentawan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21095,8700,"IDN","METT",2015,"For storage only",35,"Suranadi","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21051,8721,"IDN","METT",2015,"For storage only",35,"KH Egon Ilewekoh Lewotobi","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21075,8757,"IDN","METT",2015,"For storage only",35,"Panelokan","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -12075,8785,"NAM","METT",2011,"For storage only",28,"Ai-Ais Hot Springs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12077,8785,"NAM","METT",2009,"For storage only",28,"Ai-Ais Hot Springs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12076,8785,"NAM","METT",2004,"For storage only",28,"Ai-Ais Hot Springs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20970,8838,"IDN","METT",2015,"For storage only",35,"Pinjan/Tanjung Matop","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20972,8839,"IDN","METT",2015,"For storage only",35,"Dolangan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20877,8841,"IDN","METT",2015,"For storage only",35,"Gunung Sojol","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20946,8846,"IDN","METT",2015,"For storage only",35,"Bangkiriang","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20864,8849,"IDN","METT",2015,"For storage only",35,"Pegunungan Faruhumpenai","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21047,8850,"IDN","METT",2015,"For storage only",35,"Danau Matano","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21049,8851,"IDN","METT",2015,"For storage only",35,"Danau Towuti","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20985,8867,"IDN","METT",2015,"For storage only",35,"Komara","Game Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21103,8876,"IDN","METT",2015,"For storage only",35,"Tirta Rimba Air Jatuh","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20965,8883,"IDN","METT",2015,"For storage only",35,"Lambusango","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20987,8897,"IDN","METT",2015,"For storage only",35,"Lingga Isaq","Game Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21083,8907,"IDN","METT",2015,"For storage only",35,"Pulau Weh","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20931,8913,"IDN","METT",2015,"For storage only",35,"Sibolangit","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20861,8914,"IDN","METT",2015,"For storage only",35,"Tinggi Raja","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20892,8926,"IDN","METT",2015,"For storage only",35,"Lembah Anai","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21072,8928,"IDN","METT",2015,"For storage only",35,"Mega Mendung","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21068,8930,"IDN","METT",2015,"For storage only",35,"Lembah Harau","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20922,8943,"IDN","METT",2015,"For storage only",35,"Pulau Berkeh","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20951,8950,"IDN","METT",2015,"For storage only",35,"Bukit Rimbang Bukit Baling","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20956,8953,"IDN","METT",2015,"For storage only",35,"Giam Siak Kecil","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20950,8959,"IDN","METT",2015,"For storage only",35,"Bukit Batu","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20984,8960,"IDN","METT",2015,"For storage only",35,"Tasik Tanjung Padang","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20982,8961,"IDN","METT",2015,"For storage only",35,"Tasik Besar-Tasik Metas","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20882,8970,"IDN","METT",2015,"For storage only",35,"Hutan Bakau Pantai Timur","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20949,8978,"IDN","METT",2015,"For storage only",35,"Bentayan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20953,8980,"IDN","METT",2015,"For storage only",35,"Dangku","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20858,8992,"IDN","METT",2015,"For storage only",35,"Danau Dusun Besar","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -12125,9024,"NER","Birdlife IBA",2001,"For storage only",28,"Réserve Nationale naturelle de l'Aïr et du Ténéré","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13238,9033,"TCD","RAPPAM",2008,"For storage only",28,"Fada Archei","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9587,9035,"MOZ","METT",2014,"For storage only",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9589,9035,"MOZ","METT",2016,"For storage only",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9588,9035,"MOZ","METT",2015,"For storage only",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9586,9035,"MOZ","METT",2013,"For storage only",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9585,9035,"MOZ","RAPPAM",2006,"For storage only",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -13706,9043,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21494,9072,"ZAF","METT",2013,"For storage only",28,"Manyeleti Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21495,9072,"ZAF","METT",2010,"For storage only",28,"Manyeleti Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21493,9072,"ZAF","METT",2012,"For storage only",28,"Manyeleti Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21492,9072,"ZAF","METT",2011,"For storage only",28,"Manyeleti Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21256,9081,"ZAF","METT",2005,"For storage only",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21251,9081,"ZAF","METT",2012,"For storage only",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21258,9081,"ZAF","METT",2010,"For storage only",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21250,9081,"ZAF","METT",2011,"For storage only",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21254,9081,"ZAF","Birdlife IBA",2007,"For storage only",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21252,9081,"ZAF","METT",2013,"For storage only",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21255,9081,"ZAF","METT",2004,"For storage only",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21720,9084,"ZAF","METT",2012,"For storage only",28,"Sandveld Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21719,9084,"ZAF","METT",2011,"For storage only",28,"Sandveld Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21718,9084,"ZAF","METT",2010,"For storage only",28,"Sandveld Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21721,9084,"ZAF","METT",2013,"For storage only",28,"Sandveld Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21741,9089,"ZAF","METT",2010,"For storage only",28,"Soetdoring Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21744,9089,"ZAF","METT",2013,"For storage only",28,"Soetdoring Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21742,9089,"ZAF","METT",2011,"For storage only",28,"Soetdoring Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21743,9089,"ZAF","METT",2012,"For storage only",28,"Soetdoring Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21797,9101,"ZAF","METT",2011,"For storage only",28,"Thomas Baines Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21798,9101,"ZAF","METT",2012,"For storage only",28,"Thomas Baines Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21800,9101,"ZAF","METT",2010,"For storage only",28,"Thomas Baines Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21799,9101,"ZAF","METT",2013,"For storage only",28,"Thomas Baines Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21531,9103,"ZAF","METT",2010,"For storage only",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21535,9103,"ZAF","RAPPAM",2001,"For storage only",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21533,9103,"ZAF","METT",2012,"For storage only",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21532,9103,"ZAF","METT",2011,"For storage only",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21534,9103,"ZAF","METT",2013,"For storage only",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21887,9106,"ZAF","METT",2011,"For storage only",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21888,9106,"ZAF","METT",2012,"For storage only",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21886,9106,"ZAF","METT",2010,"For storage only",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21890,9106,"ZAF","RAPPAM",2001,"For storage only",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21889,9106,"ZAF","METT",2013,"For storage only",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21210,9107,"ZAF","RAPPAM",2001,"For storage only",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21209,9107,"ZAF","METT",2013,"For storage only",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21207,9107,"ZAF","METT",2011,"For storage only",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21206,9107,"ZAF","METT",2010,"For storage only",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21211,9107,"ZAF","Birdlife IBA",2007,"For storage only",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21208,9107,"ZAF","METT",2012,"For storage only",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21313,9109,"ZAF","Birdlife IBA",2013,"For storage only",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21215,9109,"ZAF","METT",2012,"For storage only",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21217,9109,"ZAF","RAPPAM",2001,"For storage only",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21213,9109,"ZAF","METT",2010,"For storage only",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21216,9109,"ZAF","METT",2013,"For storage only",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21214,9109,"ZAF","METT",2011,"For storage only",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21804,9112,"ZAF","METT",2013,"For storage only",28,"Tsolwana Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21805,9112,"ZAF","METT",2010,"For storage only",28,"Tsolwana Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21802,9112,"ZAF","METT",2011,"For storage only",28,"Tsolwana Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21803,9112,"ZAF","METT",2012,"For storage only",28,"Tsolwana Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21611,9115,"ZAF","METT",2010,"For storage only",28,"Nwanedi National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21614,9115,"ZAF","METT",2013,"For storage only",28,"Nwanedi National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21612,9115,"ZAF","METT",2011,"For storage only",28,"Nwanedi National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21613,9115,"ZAF","METT",2012,"For storage only",28,"Nwanedi National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21599,9126,"ZAF","METT",2011,"For storage only",28,"Nooitgedacht Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21598,9126,"ZAF","METT",2010,"For storage only",28,"Nooitgedacht Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21601,9126,"ZAF","METT",2013,"For storage only",28,"Nooitgedacht Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21600,9126,"ZAF","METT",2012,"For storage only",28,"Nooitgedacht Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21767,9127,"ZAF","METT",2013,"For storage only",28,"Sterkspruit Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21765,9127,"ZAF","METT",2011,"For storage only",28,"Sterkspruit Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21766,9127,"ZAF","METT",2012,"For storage only",28,"Sterkspruit Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21764,9127,"ZAF","METT",2010,"For storage only",28,"Sterkspruit Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21649,9129,"ZAF","METT",2012,"For storage only",28,"Pilanesberg National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21650,9129,"ZAF","METT",2013,"For storage only",28,"Pilanesberg National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21651,9129,"ZAF","Birdlife IBA",2008,"For storage only",28,"Pilanesberg National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21648,9129,"ZAF","METT",2010,"For storage only",28,"Pilanesberg National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21167,9130,"ZAF","METT",2011,"For storage only",28,"Blouberg Protea Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21168,9130,"ZAF","METT",2012,"For storage only",28,"Blouberg Protea Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21169,9130,"ZAF","METT",2013,"For storage only",28,"Blouberg Protea Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21166,9130,"ZAF","METT",2010,"For storage only",28,"Blouberg Protea Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21855,9134,"ZAF","METT",2011,"For storage only",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21858,9134,"ZAF","RAPPAM",2001,"For storage only",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21857,9134,"ZAF","METT",2013,"For storage only",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21856,9134,"ZAF","METT",2012,"For storage only",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21854,9134,"ZAF","METT",2010,"For storage only",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21848,9139,"ZAF","METT",2012,"For storage only",28,"Verloren Vallei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21847,9139,"ZAF","METT",2011,"For storage only",28,"Verloren Vallei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21846,9139,"ZAF","METT",2010,"For storage only",28,"Verloren Vallei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21849,9139,"ZAF","METT",2013,"For storage only",28,"Verloren Vallei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15110,9148,"RWA","Birdlife IBA",2013,"For storage only",28,"Nyungwe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15109,9148,"RWA","METT",2004,"For storage only",28,"Nyungwe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12074,9152,"MUS","METT",2009,"For storage only",28,"Ile aux Serpents","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10742,9160,"BDI","RAPPAM",2011,"For storage only",28,"Parc national du Ruvubu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10573,9160,"BDI","IMET",2015,"For storage only",27,"Parc national du Ruvubu","National Park","JRC IMET information","JRC",2018,"English",FALSE -10743,9160,"BDI","Birdlife IBA",2001,"For storage only",28,"Parc national du Ruvubu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10741,9160,"BDI","METT",2007,"For storage only",28,"Parc national du Ruvubu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10737,9161,"BDI","Birdlife IBA",2001,"For storage only",28,"Kibira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10735,9161,"BDI","METT",2007,"For storage only",28,"Kibira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10736,9161,"BDI","RAPPAM",2011,"For storage only",28,"Kibira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10572,9161,"BDI","IMET",2015,"For storage only",27,"Kibira","National Park","JRC IMET information","JRC",2018,"English",FALSE -10576,9162,"BDI","IMET",2015,"For storage only",27,"Réserve naturelle du Rusizi","National Park","JRC IMET information","JRC",2018,"English",FALSE -10739,9162,"BDI","RAPPAM",2011,"For storage only",28,"Réserve naturelle du Rusizi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10740,9162,"BDI","Birdlife IBA",2001,"For storage only",28,"Réserve naturelle du Rusizi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10732,9164,"BDI","RAPPAM",2011,"For storage only",28,"Bururi Forest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10733,9164,"BDI","Birdlife IBA",2001,"For storage only",28,"Bururi Forest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10571,9164,"BDI","IMET",2015,"For storage only",27,"Bururi Forest","Nature Reserve","JRC IMET information","JRC",2018,"English",FALSE -10734,9164,"BDI","METT",2012,"For storage only",28,"Bururi Forest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10738,9165,"BDI","RAPPAM",2011,"For storage only",28,"Réserve naturelle de Rumonge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10578,9165,"BDI","IMET",2016,"For storage only",27,"Réserve naturelle de Rumonge","Nature Reserve","JRC IMET information","JRC",2018,"English",FALSE -10579,9166,"BDI","IMET",2016,"For storage only",27,"Kigwena Forest","Nature Reserve","JRC IMET information","JRC",2018,"English",FALSE -10582,9167,"BDI","IMET",2016,"For storage only",27,"Faille de Nyakazu","Nature Monument","JRC IMET information","JRC",2018,"English",FALSE -10581,9168,"BDI","IMET",2016,"For storage only",27,"Chutes de Karera","Nature Monument","JRC IMET information","JRC",2018,"English",FALSE -14997,9170,"LBR","METT",2009,"For storage only",28,"Grebo National Forest Park","National Forest Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14993,9176,"LBR","Birdlife IBA",2013,"For storage only",28,"East Nimba Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20413,9208,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Pabitora","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20392,9211,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Great Himalayan","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20485,9216,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Silent Valley","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20418,9220,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Nongkhyllem","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20586,9225,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Bhensrodgarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20463,9230,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Neora Valley","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20538,9231,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Ramnabagan","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20411,9234,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Barda","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -10757,9234,"IND","RAPPAM",2009,"For storage only",28,"Barda","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20541,9235,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Khijadia","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20501,9239,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Purna","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20471,9241,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Shoolpaneswar (Dhumkhal)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20478,9244,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Rupi Bhaba","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20504,9246,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Karera","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20582,9247,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Ghatigaon","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20544,9248,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Ken Gharial","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20409,9249,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Palpur","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20493,9252,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Hadgarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20536,9253,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Kothagarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20530,9255,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Pulicat Lake Bird","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20523,9260,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Mount Harriett","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -10619,9264,"BFA","IMET",2016,"For storage only",27,"Arly","Partial Faunal Reserve","JRC IMET information","JRC",2018,"English",FALSE -20315,9290,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Sanjay Dubri","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20316,9290,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Sanjay Dubri","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20317,9291,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Satpura","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20318,9291,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Satpura","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20321,9292,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Indravati","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20323,9292,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Indravati","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20322,9292,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Indravati","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -10849,9308,"BOL","MEMS",2002,"For storage only",28,"Estación Biológica del Beni","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10848,9308,"BOL","MEMS",2001,"For storage only",28,"Estación Biológica del Beni","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10850,9308,"BOL","RAPPAM",2004,"For storage only",28,"Estación Biológica del Beni","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10847,9308,"BOL","GOBI Survey",2006,"For storage only",28,"Estación Biológica del Beni","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12051,9310,"MRT","RAPPAM",2009,"For storage only",28,"Diawling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12050,9310,"MRT","RAPPAM",2007,"For storage only",28,"Diawling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12049,9310,"MRT","METT",2007,"For storage only",28,"Diawling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -183,9400,"COL","AEMAPPS",2016,"For storage only",6,"La Paya","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -14356,9415,"CHL","METT",0,"For storage only",28,"Laguna del Laja","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14355,9415,"CHL","METT",2010,"For storage only",28,"Laguna del Laja","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14357,9415,"CHL","RAPPAM",2005,"For storage only",28,"Laguna del Laja","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14425,9416,"CHL","METT",0,"For storage only",28,"Volcan Isluga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14424,9416,"CHL","METT",2010,"For storage only",28,"Volcan Isluga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14415,9417,"CHL","RAPPAM",2005,"For storage only",28,"Tolhuaca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14341,9418,"CHL","RAPPAM",2005,"For storage only",28,"Huerquehue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14331,9421,"CHL","METT",0,"For storage only",28,"El Morado","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14330,9421,"CHL","METT",2010,"For storage only",28,"El Morado","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14404,9423,"CHL","RAPPAM",2005,"For storage only",28,"Ralco","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14400,9424,"CHL","RAPPAM",2005,"For storage only",28,"Queulat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14414,9425,"CHL","METT",0,"For storage only",28,"Salar De Surire","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14413,9425,"CHL","METT",2010,"For storage only",28,"Salar De Surire","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14329,9426,"CHL","RAPPAM",2005,"For storage only",28,"Contulmo","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14405,9432,"CHL","METT",2010,"For storage only",28,"Rio Clarillo","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14406,9432,"CHL","METT",0,"For storage only",28,"Rio Clarillo","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14381,9433,"CHL","RAPPAM",2005,"For storage only",28,"Malleco","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14364,9435,"CHL","METT",2010,"For storage only",28,"Las Vicunas","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14365,9435,"CHL","METT",0,"For storage only",28,"Las Vicunas","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14392,9436,"CHL","METT",2010,"For storage only",28,"Pampa del Tamarugal","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14393,9436,"CHL","METT",0,"For storage only",28,"Pampa del Tamarugal","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14369,9439,"CHL","METT",2010,"For storage only",28,"Llanquihue","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14370,9439,"CHL","METT",0,"For storage only",28,"Llanquihue","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14352,9441,"CHL","METT",0,"For storage only",28,"Lago Palena","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14354,9441,"CHL","RAPPAM",2005,"For storage only",28,"Lago Palena","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14351,9441,"CHL","METT",2010,"For storage only",28,"Lago Palena","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14412,9444,"CHL","RAPPAM",2005,"For storage only",28,"Rio Simpsom","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14410,9448,"CHL","METT",2010,"For storage only",28,"Rio Los Cipreses","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14411,9448,"CHL","METT",0,"For storage only",28,"Rio Los Cipreses","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14361,9449,"CHL","RAPPAM",2005,"For storage only",28,"Laguna Torca","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14332,9450,"CHL","METT",2010,"For storage only",28,"Federico Albert","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14333,9450,"CHL","METT",0,"For storage only",28,"Federico Albert","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19857,9458,"AUS","NSW SOP",2007,"For storage only",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19862,9458,"AUS","NSW SOP",2004,"For storage only",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19858,9458,"AUS","NSW SOP",2010,"For storage only",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19856,9458,"AUS","NSW SOP",2005,"For storage only",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19859,9458,"AUS","NSW SOP",2013,"For storage only",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19997,9462,"AUS","NSW SOP",2004,"For storage only",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19994,9462,"AUS","NSW SOP",2007,"For storage only",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19995,9462,"AUS","NSW SOP",2010,"For storage only",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19993,9462,"AUS","NSW SOP",2005,"For storage only",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19996,9462,"AUS","NSW SOP",2013,"For storage only",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15856,9463,"AUS","NSW SOP",2007,"For storage only",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15857,9463,"AUS","NSW SOP",2010,"For storage only",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15858,9463,"AUS","NSW SOP",2013,"For storage only",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15859,9463,"AUS","NSW SOP",2004,"For storage only",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15855,9463,"AUS","NSW SOP",2005,"For storage only",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15878,9464,"AUS","NSW SOP",2013,"For storage only",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15875,9464,"AUS","NSW SOP",2005,"For storage only",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15876,9464,"AUS","NSW SOP",2007,"For storage only",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15877,9464,"AUS","NSW SOP",2010,"For storage only",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15879,9464,"AUS","NSW SOP",2004,"For storage only",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16057,9465,"AUS","NSW SOP",2005,"For storage only",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16060,9465,"AUS","NSW SOP",2013,"For storage only",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16059,9465,"AUS","NSW SOP",2010,"For storage only",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16065,9465,"AUS","NSW SOP",2004,"For storage only",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16058,9465,"AUS","NSW SOP",2007,"For storage only",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18819,9467,"AUS","NSW SOP",2010,"For storage only",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18817,9467,"AUS","NSW SOP",2005,"For storage only",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18825,9467,"AUS","NSW SOP",2004,"For storage only",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18821,9467,"AUS","NSW SOP",2013,"For storage only",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18818,9467,"AUS","NSW SOP",2007,"For storage only",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19221,9468,"AUS","NSW SOP",2005,"For storage only",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19224,9468,"AUS","NSW SOP",2013,"For storage only",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19225,9468,"AUS","NSW SOP",2004,"For storage only",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19223,9468,"AUS","NSW SOP",2010,"For storage only",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19222,9468,"AUS","NSW SOP",2007,"For storage only",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19374,9469,"AUS","NSW SOP",2013,"For storage only",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19371,9469,"AUS","NSW SOP",2007,"For storage only",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19369,9469,"AUS","NSW SOP",2004,"For storage only",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19370,9469,"AUS","NSW SOP",2005,"For storage only",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19375,9469,"AUS","NSW SOP",2010,"For storage only",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19440,9470,"AUS","NSW SOP",2004,"For storage only",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19439,9470,"AUS","NSW SOP",2013,"For storage only",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19437,9470,"AUS","NSW SOP",2007,"For storage only",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19436,9470,"AUS","NSW SOP",2005,"For storage only",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19438,9470,"AUS","NSW SOP",2010,"For storage only",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19504,9471,"AUS","NSW SOP",2013,"For storage only",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19503,9471,"AUS","NSW SOP",2010,"For storage only",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19505,9471,"AUS","NSW SOP",2004,"For storage only",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19501,9471,"AUS","NSW SOP",2005,"For storage only",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19502,9471,"AUS","NSW SOP",2007,"For storage only",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20016,9472,"AUS","NSW SOP",2013,"For storage only",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20017,9472,"AUS","NSW SOP",2004,"For storage only",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20013,9472,"AUS","NSW SOP",2005,"For storage only",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20014,9472,"AUS","NSW SOP",2007,"For storage only",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20015,9472,"AUS","NSW SOP",2010,"For storage only",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17913,9475,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Littabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17912,9475,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Littabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16875,9477,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Eubenangee Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16874,9477,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Eubenangee Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18700,9480,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Newry Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18699,9480,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Newry Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18015,9481,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Main Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18016,9481,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Main Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19647,9482,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Tully Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19648,9482,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Tully Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16196,9483,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Cania Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16197,9483,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Cania Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17899,9484,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Lindeman Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17900,9484,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Lindeman Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16219,9506,"AUS","Victorian SOP",2010,"For storage only",28,"Cape Nelson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16221,9506,"AUS","Victorian SOP",2013,"For storage only",28,"Cape Nelson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16220,9506,"AUS","Victorian SOP",2005,"For storage only",28,"Cape Nelson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18473,9508,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Worth","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18474,9508,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Worth","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18475,9508,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Worth","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -224,9545,"CIV","Enhancing Our Heritage",2017,"For storage only",7,"Comoé National Park","World Heritage Site","Côte d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French",FALSE -10621,9545,"CIV","IMET",2016,"For storage only",27,"Comoé National Park","World Heritage Site","JRC IMET information","JRC",2018,"English",FALSE -10791,9612,"BGR","WHA Outlook Report",2014,"For storage only",28,"Srebarna Nature Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10779,9613,"BGR","WHA Outlook Report",2014,"For storage only",28,"Pirin National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14484,9614,"ECU","WHA Outlook Report",2014,"For storage only",28,"Sangay National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11558,9617,"FRA","WHA Outlook Report",2014,"For storage only",28,"Gulf of Porto: Calanche of Piana, Gulf of Girolata, Scandola Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13233,9628,"SYC","WHA Outlook Report",2014,"For storage only",28,"Vallée de Mai Nature Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13900,9632,"USA","USA SOP",2004,"For storage only",28,"Great Smoky Mountains National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13901,9632,"USA","WHA Outlook Report",2014,"For storage only",28,"Great Smoky Mountains National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13135,9638,"SLV","PROARCA/CAPAS",2000,"For storage only",28,"Parque Nacional Montecristo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13134,9638,"SLV","PROARCA/CAPAS",1999,"For storage only",28,"Parque Nacional Montecristo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14907,9705,"HUN","European Diploma",1995,"For storage only",28,"Ipolytarnóci osmaradványok","Nature Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20640,9714,"PNG","RAPPAM",2004,"For storage only",28,"Mt Gahavisuka","Provincial Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20664,9717,"PNG","RAPPAM",2004,"For storage only",28,"Zo-oimaga","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20632,9718,"PNG","RAPPAM",2004,"For storage only",28,"Lake Lavu","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20654,9719,"PNG","RAPPAM",2004,"For storage only",28,"Sawataitai","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20639,9720,"PNG","RAPPAM",2004,"For storage only",28,"Mojirau","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20656,9721,"PNG","RAPPAM",2004,"For storage only",28,"Siwi-Utame","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10839,9779,"BOL","PIP Site Consolidation",2005,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10938,9779,"BOL","Birdlife IBA",2013,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10822,9779,"BOL","CI Tracking Tool",0,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10829,9779,"BOL","PIP Site Consolidation",1999,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10838,9779,"BOL","PIP Site Consolidation",2004,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10834,9779,"BOL","RAPPAM",2004,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10833,9779,"BOL","MEMS",2002,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10832,9779,"BOL","MEMS",2001,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10837,9779,"BOL","PIP Site Consolidation",2003,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10826,9779,"BOL","PIP Site Consolidation",1996,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10836,9779,"BOL","PIP Site Consolidation",2002,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10824,9779,"BOL","Parks profiles",2005,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10831,9779,"BOL","PIP Site Consolidation",2000,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10823,9779,"BOL","PA Consolidation Index",0,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10828,9779,"BOL","PIP Site Consolidation",1998,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10827,9779,"BOL","PIP Site Consolidation",1997,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10825,9779,"BOL","PIP Site Consolidation",1991,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10830,9779,"BOL","PIP Site Consolidation",2001,"For storage only",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11516,9782,"EGY","METT",2009,"For storage only",28,"Ras Mohammed","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11517,9782,"EGY","RAPPAM",2006,"For storage only",28,"Ras Mohammed","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -123,9786,"MYS","METT",2013,"For storage only",5,"Pulau Redang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -122,9786,"MYS","METT",2011,"For storage only",5,"Pulau Redang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -124,9786,"MYS","METT",2005,"For storage only",5,"Pulau Redang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -125,9812,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2015,"For storage only",5,"Pulau Sipadan","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -28105,9816,"MYS","METT",0,"For storage only",28,"Loagan Bunut","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -746,9822,"BRA","SAMGe",2016,"For storage only",9,"REBIO de Comboios","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -20405,9959,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Sunabeda","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20388,9960,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Sundarban","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20386,9960,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Sundarban","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20387,9960,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Sundarban","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20519,9962,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Harike Lake","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -126,10028,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Perhentian Besar","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -550,10086,"BRA","SAMGe",2016,"For storage only",9,"ARIE Capetinga/Taquara","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -12226,10087,"NPL","Birdlife IBA",2004,"For storage only",28,"Dhorpatan","Hunting Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12251,10087,"NPL","RAPPAM",2002,"For storage only",28,"Dhorpatan","Hunting Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12241,10089,"NPL","RAPPAM",2002,"For storage only",28,"Parsa","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12238,10089,"NPL","METT",2003,"For storage only",28,"Parsa","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12239,10089,"NPL","METT",2005,"For storage only",28,"Parsa","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12242,10089,"NPL","Birdlife IBA",2004,"For storage only",28,"Parsa","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12218,10091,"NPL","Birdlife IBA",2004,"For storage only",28,"Annapurna","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12217,10091,"NPL","RAPPAM",2002,"For storage only",28,"Annapurna","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20400,10092,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Mahatma Gandhi Marine","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20563,10093,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Lohabarrack","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -14116,10110,"VNM","METT",2011,"For storage only",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14114,10110,"VNM","Birdlife IBA",2007,"For storage only",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14115,10110,"VNM","METT",2010,"For storage only",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28248,10110,"VNM","METT",2012,"For storage only",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14117,10110,"VNM","RAPPAM",2004,"For storage only",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14142,10111,"VNM","METT",2009,"For storage only",28,"Con Dao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14141,10111,"VNM","METT",2005,"For storage only",28,"Con Dao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14143,10111,"VNM","METT",2011,"For storage only",28,"Con Dao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11868,10120,"KHM","METT",2003,"For storage only",28,"Phnom Prich","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11870,10120,"KHM","RAPPAM",2004,"For storage only",28,"Phnom Prich","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11869,10120,"KHM","METT",2009,"For storage only",28,"Phnom Prich","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11860,10121,"KHM","RAPPAM",2004,"For storage only",28,"Lomphat","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14113,10188,"VNM","METT",2010,"For storage only",28,"Ba Be","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14112,10188,"VNM","METT",2005,"For storage only",28,"Ba Be","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14111,10188,"VNM","Birdlife IBA",2007,"For storage only",28,"Ba Be","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11855,10193,"KHM","RAPPAM",2004,"For storage only",28,"Kirirom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20488,10239,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Peppara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20407,10241,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Sanjay Gandhi (Borivili)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20506,10242,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Kanger Valley","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20310,10244,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Panna","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20311,10244,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Panna","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20309,10244,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Panna","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20543,10249,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Phen","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20337,10251,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Udanti Wild Buffalo","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20404,10251,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Udanti Wild Buffalo","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20336,10251,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Udanti Wild Buffalo","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20514,10252,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Fakim","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20299,10255,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Sariska","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20297,10255,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Sariska","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20298,10255,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Sariska","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20498,10258,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Fambong Lho","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -12271,10270,"PAK","METT",2003,"For storage only",28,"Chitral Gol","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20895,10286,"IDN","METT",2015,"For storage only",35,"Malabar","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20898,10290,"IDN","METT",2015,"For storage only",35,"Moga","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20942,10295,"IDN","METT",2015,"For storage only",35,"Watangan Puger","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20868,10300,"IDN","METT",2015,"For storage only",35,"Batu Gamping","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21062,10302,"IDN","METT",2015,"For storage only",35,"Kawah Ijen","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20894,10303,"IDN","METT",2015,"For storage only",35,"Lo Pat Fun Pi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20860,10312,"IDN","METT",2015,"For storage only",35,"Dolok Sipirok","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20859,10314,"IDN","METT",2015,"For storage only",35,"Dolok Sibual-buali","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20930,10316,"IDN","METT",2015,"For storage only",35,"Raflessia I/II Serbojadi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20968,10320,"IDN","METT",2015,"For storage only",35,"Padang Sugihan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21085,10321,"IDN","METT",2015,"For storage only",35,"Rimbo Panti","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -15100,10326,"PHL","Asean MEE",2012,"For storage only",28,"Mount Malindang","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14150,10357,"VNM","METT",2005,"For storage only",28,"Hoang Lien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14201,10360,"VNM","METT",2010,"For storage only",28,"Trung Khanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14194,10363,"VNM","METT",2005,"For storage only",28,"Sop Cop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14120,10369,"VNM","METT",2011,"For storage only",28,"Ben En","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14118,10369,"VNM","METT",2006,"For storage only",28,"Ben En","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14121,10369,"VNM","RAPPAM",2004,"For storage only",28,"Ben En","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14119,10369,"VNM","METT",2010,"For storage only",28,"Ben En","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14204,10375,"VNM","RAPPAM",2004,"For storage only",28,"Vu Quang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14155,10377,"VNM","METT",2010,"For storage only",28,"Kon Chu Rang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14154,10377,"VNM","METT",2005,"For storage only",28,"Kon Chu Rang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14160,10378,"VNM","METT",2010,"For storage only",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14162,10378,"VNM","RAPPAM",2004,"For storage only",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14157,10378,"VNM","Birdlife IBA",2007,"For storage only",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14161,10378,"VNM","METT",2011,"For storage only",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14159,10378,"VNM","METT",2008,"For storage only",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14156,10378,"VNM","METT",2005,"For storage only",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14163,10379,"VNM","METT",2004,"For storage only",28,"Krong Trai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14139,10380,"VNM","METT",2006,"For storage only",28,"Chu Yang Sin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14140,10380,"VNM","RAPPAM",2004,"For storage only",28,"Chu Yang Sin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14147,10384,"VNM","RAPPAM",2004,"For storage only",28,"Dakrong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14146,10384,"VNM","METT",2004,"For storage only",28,"Dakrong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14164,10395,"VNM","METT",2006,"For storage only",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14165,10395,"VNM","METT",2003,"For storage only",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14166,10395,"VNM","METT",2010,"For storage only",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14168,10395,"VNM","RAPPAM",2004,"For storage only",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14167,10395,"VNM","METT",2011,"For storage only",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14180,10398,"VNM","METT",2007,"For storage only",28,"Phu Quoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22187,10440,"SWE","Birdlife IBA",2007,"For storage only",28,"Holmöarna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15170,10579,"BLZ","METT",2013,"For storage only",29,"Cockscomb Basin Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15167,10579,"BLZ","Belize MEE",2006,"For storage only",29,"Cockscomb Basin Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15169,10579,"BLZ","METT",2010,"For storage only",29,"Cockscomb Basin Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15168,10579,"BLZ","Belize MEE",2009,"For storage only",29,"Cockscomb Basin Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -16139,10585,"AUS","NSW SOP",2007,"For storage only",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16140,10585,"AUS","NSW SOP",2010,"For storage only",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16141,10585,"AUS","NSW SOP",2013,"For storage only",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16142,10585,"AUS","NSW SOP",2004,"For storage only",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16138,10585,"AUS","NSW SOP",2005,"For storage only",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16663,10586,"AUS","NSW SOP",2005,"For storage only",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16666,10586,"AUS","NSW SOP",2013,"For storage only",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16667,10586,"AUS","NSW SOP",2004,"For storage only",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16665,10586,"AUS","NSW SOP",2010,"For storage only",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16664,10586,"AUS","NSW SOP",2007,"For storage only",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17803,10588,"AUS","NSW SOP",2013,"For storage only",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17808,10588,"AUS","NSW SOP",2004,"For storage only",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17801,10588,"AUS","NSW SOP",2007,"For storage only",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17802,10588,"AUS","NSW SOP",2010,"For storage only",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17800,10588,"AUS","NSW SOP",2005,"For storage only",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18361,10589,"AUS","NSW SOP",2010,"For storage only",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18359,10589,"AUS","NSW SOP",2005,"For storage only",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18363,10589,"AUS","NSW SOP",2013,"For storage only",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18367,10589,"AUS","NSW SOP",2004,"For storage only",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18360,10589,"AUS","NSW SOP",2007,"For storage only",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18455,10590,"AUS","NSW SOP",2010,"For storage only",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18454,10590,"AUS","NSW SOP",2007,"For storage only",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18456,10590,"AUS","NSW SOP",2013,"For storage only",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18457,10590,"AUS","NSW SOP",2004,"For storage only",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18453,10590,"AUS","NSW SOP",2005,"For storage only",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19180,10591,"AUS","NSW SOP",2007,"For storage only",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19179,10591,"AUS","NSW SOP",2005,"For storage only",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19182,10591,"AUS","NSW SOP",2013,"For storage only",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19183,10591,"AUS","NSW SOP",2004,"For storage only",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19181,10591,"AUS","NSW SOP",2010,"For storage only",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18636,10594,"AUS","NSW SOP",2004,"For storage only",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18633,10594,"AUS","NSW SOP",2007,"For storage only",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18634,10594,"AUS","NSW SOP",2010,"For storage only",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18635,10594,"AUS","NSW SOP",2013,"For storage only",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18632,10594,"AUS","NSW SOP",2005,"For storage only",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18722,10595,"AUS","NSW SOP",2013,"For storage only",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18719,10595,"AUS","NSW SOP",2005,"For storage only",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18720,10595,"AUS","NSW SOP",2007,"For storage only",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18721,10595,"AUS","NSW SOP",2010,"For storage only",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18723,10595,"AUS","NSW SOP",2004,"For storage only",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19836,10596,"AUS","NSW SOP",2007,"For storage only",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19843,10596,"AUS","NSW SOP",2004,"For storage only",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19837,10596,"AUS","NSW SOP",2010,"For storage only",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19835,10596,"AUS","NSW SOP",2005,"For storage only",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19838,10596,"AUS","NSW SOP",2013,"For storage only",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16399,10606,"AUS","Birdlife IBA",2008,"For storage only",28,"Coffin Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17177,10607,"AUS","Victorian SOP",2005,"For storage only",28,"Grampians National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17176,10607,"AUS","Victorian SOP",2010,"For storage only",28,"Grampians National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17178,10607,"AUS","Victorian SOP",2013,"For storage only",28,"Grampians National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15872,10615,"AUS","NSW SOP",2010,"For storage only",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15874,10615,"AUS","NSW SOP",2004,"For storage only",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15873,10615,"AUS","NSW SOP",2013,"For storage only",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15870,10615,"AUS","NSW SOP",2005,"For storage only",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15871,10615,"AUS","NSW SOP",2007,"For storage only",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16304,10620,"AUS","NSW SOP",2004,"For storage only",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16301,10620,"AUS","NSW SOP",2007,"For storage only",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16300,10620,"AUS","NSW SOP",2005,"For storage only",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16302,10620,"AUS","NSW SOP",2010,"For storage only",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16303,10620,"AUS","NSW SOP",2013,"For storage only",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17049,10623,"AUS","NSW SOP",2004,"For storage only",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17048,10623,"AUS","NSW SOP",2013,"For storage only",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17044,10623,"AUS","NSW SOP",2005,"For storage only",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17046,10623,"AUS","NSW SOP",2007,"For storage only",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17047,10623,"AUS","NSW SOP",2010,"For storage only",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17849,10628,"AUS","NSW SOP",2004,"For storage only",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17845,10628,"AUS","NSW SOP",2005,"For storage only",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17847,10628,"AUS","NSW SOP",2010,"For storage only",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17848,10628,"AUS","NSW SOP",2013,"For storage only",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17846,10628,"AUS","NSW SOP",2007,"For storage only",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20791,10634,"MDG","IEG",2003,"For storage only",34,"Bezaha Mahafaly","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -14423,10706,"CHL","RAPPAM",2005,"For storage only",28,"Villarrica","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12851,10715,"RUS","METT",2009,"For storage only",28,"Kronotskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12868,10716,"RUS","Stockholm BR Survey",2008,"For storage only",28,"Laplandskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12986,10718,"RUS","METT",2011,"For storage only",28,"Sayano-Shushenskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12981,10719,"RUS","RAPPAM",2001,"For storage only",28,"Sokhondinskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -103,10722,"ARG","GOBI Survey",2009,"For storage only",3,"Costero del Sur","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -47,10722,"ARG","GOBI Survey",2006,"For storage only",3,"Costero del Sur","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -13916,10723,"USA","GOBI Survey",2006,"For storage only",28,"Mojave and Colorado Deserts Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13107,10732,"SLE","Birdlife IBA",2005,"For storage only",28,"Sankan Biriwa (Tingi Hills)","No or Non - Hunting Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14794,10739,"ETH","METT",2005,"For storage only",28,"Senkelle Swayne's Hartebeest","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14781,10740,"ETH","METT",2011,"For storage only",28,"Alledeghi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -177,10754,"COL","AEMAPPS",2016,"For storage only",6,"Gorgona","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -14083,10767,"VEN","WWF/CATIE",2003,"For storage only",28,"San Esteban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14084,10767,"VEN","METT",2010,"For storage only",28,"San Esteban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14080,10782,"VEN","Parks profiles",2004,"For storage only",28,"San Camilo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14082,10782,"VEN","Venezuela Vision",2001,"For storage only",28,"San Camilo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14081,10782,"VEN","Venezuela Vision",1991,"For storage only",28,"San Camilo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -758,10795,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Gurupi","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -409,10795,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Gurupi","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -331,10802,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Tapajós","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -650,10802,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Tapajós","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -302,10803,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Caxiuanã","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -612,10803,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Caxiuanã","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -334,10808,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Três Barras","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -653,10808,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Três Barras","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -608,10809,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Caçador","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -646,10810,"BRA","SAMGe",2016,"For storage only",9,"FLONA de São Francisco de Paula","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -299,10811,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Canela","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -609,10811,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Canela","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -323,10814,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Passo Fundo","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -637,10814,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Passo Fundo","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -661,10815,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Do Jamari","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -341,10815,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Do Jamari","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -478,10821,"BRA","RAPPAM",2015,"For storage only",9,"Área De Relevante Interesse Ecológica Manguezais Da Foz Do Rio Mamanguape","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -556,10821,"BRA","SAMGe",2016,"For storage only",9,"Área De Relevante Interesse Ecológica Manguezais Da Foz Do Rio Mamanguape","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -268,10822,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Carijós","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -573,10822,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Carijós","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -583,10823,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Pirapitinga","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -275,10823,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Pirapitinga","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -274,10826,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Niquiá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -582,10826,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Niquiá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -284,10830,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Juami-Japurá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -593,10830,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Juami-Japurá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -595,10842,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Raso Da Catarina","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -286,10842,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Raso Da Catarina","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -836,10843,"BRA","SAMGe",2016,"For storage only",9,"Refugio De Vida Silvestre Ilha Dos Lobos","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -479,10843,"BRA","RAPPAM",2015,"For storage only",9,"Refugio De Vida Silvestre Ilha Dos Lobos","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -271,10845,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Jutaí-Solimões","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -577,10845,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Jutaí-Solimões","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -570,10846,"BRA","SAMGe",2016,"For storage only",9,"ESEC de Aiuaba","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -52,10901,"ARG","WHA Outlook Report",2014,"For storage only",3,"Parc national de l'Iguazu","World Heritage Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -21947,10902,"CAN","WHA Outlook Report",2014,"For storage only",28,"Wood Buffalo National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12551,10903,"CRI;PAN","WHA Outlook Report",2014,"For storage only",28,"Talamanca Range-La Amistad Reserves / La Amistad *","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15060,10904,"MWI","WHA Outlook Report",2014,"For storage only",28,"Lake Malawi National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12225,10905,"NPL","WHA Outlook Report",2014,"For storage only",28,"Chitwan National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12224,10905,"NPL","Birdlife IBA",2004,"For storage only",28,"Chitwan National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11199,10906,"COD","Birdlife IBA",2001,"For storage only",28,"Salonga National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14286,10907,"ZWE","WHA Outlook Report",2014,"For storage only",28,"Mana Pools National Park, Sapi and Chewore Safari Areas","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13948,10908,"USA","WHA Outlook Report",2014,"For storage only",28,"Yosemite National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12264,10910,"NPL","Birdlife IBA",2004,"For storage only",28,"Shivapuri-Nagarjun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12265,10910,"NPL","RAPPAM",2002,"For storage only",28,"Shivapuri-Nagarjun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12411,10914,"PAN","METT",2006,"For storage only",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12416,10914,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12417,10914,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12418,10914,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12412,10914,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12413,10914,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12415,10914,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9837,10931,"KOR","Korea SOP",2016,"For storage only",26,"Hallasan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9830,10932,"KOR","Korea SOP",2016,"For storage only",26,"Bukhansan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9847,10933,"KOR","Korea SOP",2016,"For storage only",26,"Chiaksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9851,10934,"KOR","Korea SOP",2016,"For storage only",26,"Woraksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9357,10940,"HRV","METT",2012,"For storage only",19,"Brijuni","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9395,10940,"HRV","METT",2016,"For storage only",19,"Brijuni","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9376,10940,"HRV","METT",2014,"For storage only",19,"Brijuni","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -18801,11135,"AUS","NSW SOP",2004,"For storage only",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18797,11135,"AUS","NSW SOP",2005,"For storage only",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18799,11135,"AUS","NSW SOP",2010,"For storage only",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18798,11135,"AUS","NSW SOP",2007,"For storage only",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18800,11135,"AUS","NSW SOP",2013,"For storage only",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17380,11137,"AUS","NSW SOP",2013,"For storage only",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17377,11137,"AUS","NSW SOP",2005,"For storage only",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17381,11137,"AUS","NSW SOP",2004,"For storage only",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17379,11137,"AUS","NSW SOP",2010,"For storage only",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17378,11137,"AUS","NSW SOP",2007,"For storage only",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12665,11155,"ROU","RAPPAM",2006,"For storage only",28,"Comana","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12664,11155,"ROU","METT",2009,"For storage only",28,"Comana","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12658,11170,"ROU","METT",2009,"For storage only",28,"Ceahlau","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12657,11170,"ROU","RAPPAM",2006,"For storage only",28,"Ceahlau","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12659,11170,"ROU","METT",2012,"For storage only",28,"Ceahlau","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12715,11171,"ROU","GOBI Survey",2006,"For storage only",28,"Rodna","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12712,11171,"ROU","RAPPAM",2006,"For storage only",28,"Rodna","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12714,11171,"ROU","METT",2012,"For storage only",28,"Rodna","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12713,11171,"ROU","METT",2009,"For storage only",28,"Rodna","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12656,11172,"ROU","METT",2012,"For storage only",28,"Calimani","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12654,11172,"ROU","RAPPAM",2006,"For storage only",28,"Calimani","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12655,11172,"ROU","METT",2009,"For storage only",28,"Calimani","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12695,11173,"ROU","European Diploma",2006,"For storage only",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12698,11173,"ROU","METT",2012,"For storage only",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12697,11173,"ROU","METT",2009,"For storage only",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12696,11173,"ROU","METT",2003,"For storage only",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12669,11173,"ROU","RAPPAM",2006,"For storage only",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12666,11174,"ROU","RAPPAM",2006,"For storage only",28,"Cozia","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12668,11174,"ROU","METT",2012,"For storage only",28,"Cozia","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12667,11174,"ROU","METT",2009,"For storage only",28,"Cozia","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12675,11175,"ROU","RAPPAM",2006,"For storage only",28,"Domogled - Valea Cernei","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12676,11175,"ROU","METT",2012,"For storage only",28,"Domogled - Valea Cernei","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12677,11175,"ROU","METT",2009,"For storage only",28,"Domogled - Valea Cernei","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12662,11176,"ROU","METT",2009,"For storage only",28,"Cheile Nerei - Beusnita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12661,11176,"ROU","METT",2012,"For storage only",28,"Cheile Nerei - Beusnita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12693,11176,"ROU","RAPPAM",2006,"For storage only",28,"Cheile Nerei - Beusnita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12645,11179,"ROU","METT",2012,"For storage only",28,"Muntii Apuseni","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12644,11179,"ROU","METT",2009,"For storage only",28,"Muntii Apuseni","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12688,11179,"ROU","RAPPAM",2006,"For storage only",28,"Muntii Apuseni","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12663,11181,"ROU","RAPPAM",2006,"For storage only",28,"Gradistea Muncelului - Cioclovina","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10789,11490,"BGR","RAPPAM",2004,"For storage only",28,"Sinite kamani","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10774,11491,"BGR","RAPPAM",2004,"For storage only",28,"Shumensko plato","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28289,11577,"RUS","METT",2012,"For storage only",28,"Sochinsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12980,11577,"RUS","RAPPAM",2001,"For storage only",28,"Sochinsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28293,11577,"RUS","METT",2008,"For storage only",28,"Sochinsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12875,11578,"RUS","RAPPAM",2001,"For storage only",28,"Losiny Ostrov","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12954,11579,"RUS","RAPPAM",2001,"For storage only",28,"Samarskaya Luka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13808,11580,"UKR","METT",2012,"For storage only",28,"Shatskiy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13810,11580,"UKR","RAPPAM",2008,"For storage only",28,"Shatskiy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -108,11584,"ARG","GOBI Survey",2009,"For storage only",3,"Ñacuñan","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -21939,11586,"CAN","GOBI Survey",2006,"For storage only",28,"Riding Mountain Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21931,11587,"CAN","GOBI Survey",2006,"For storage only",28,"Long Point Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11277,11588,"CZE","Stockholm BR Survey",2008,"For storage only",28,"Dolní Morava","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11276,11588,"CZE","GOBI Survey",2006,"For storage only",28,"Dolní Morava","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13897,11591,"USA","GOBI Survey",2006,"For storage only",28,"Glacier Bay-Admiralty Island Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12736,11592,"RUS","METT",2007,"For storage only",28,"Baikalsky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12737,11592,"RUS","RAPPAM",2001,"For storage only",28,"Baikalsky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12858,11628,"RUS","METT",2003,"For storage only",28,"Kurilsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12859,11628,"RUS","METT",2005,"For storage only",28,"Kurilsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -78,11646,"ARG","GOBI Survey",2006,"For storage only",3,"Ñancuñan","Ecological and Forest Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -12122,11652,"NER","RAPPAM",2010,"For storage only",28,"Réserve partielle de faune de Dosso","Partial Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11915,11689,"MAR","Birdlife IBA",2001,"For storage only",28,"Merja Zerga","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11917,11697,"MAR","Birdlife IBA",2001,"For storage only",28,"Sous Massa National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12006,11745,"MNG","METT",2012,"For storage only",28,"Khasagt Khairkhan mountain","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12007,11745,"MNG","RAPPAM",2005,"For storage only",28,"Khasagt Khairkhan mountain","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12008,11746,"MNG","RAPPAM",2005,"For storage only",28,"Khorgo Terkh Zagaan nuur","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20595,11752,"MMR","Asean MEE",2012,"For storage only",28,"Alaungdaw Kathapa","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14447,11753,"ECU","WWF/CATIE",0,"For storage only",28,"Galápagos","Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14445,11753,"ECU","Ecuador MEE",1999,"For storage only",28,"Galápagos","Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20697,11811,"SVK","CCPAMET",2017,"For storage only",32,"Ponitrie","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20698,11812,"SVK","CCPAMET",2017,"For storage only",32,"Kysuce","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20597,11813,"MMR","Asean MEE",2012,"For storage only",28,"Inlay Lake","Bird Sanctuary and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11768,11827,"KAZ","METT",2012,"For storage only",28,"Ustyurtskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13956,11829,"UZB","METT",2006,"For storage only",28,"Gissarskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13957,11829,"UZB","METT",2008,"For storage only",28,"Gissarskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12733,11830,"RUS","METT",2008,"For storage only",28,"Azas","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12988,11830,"RUS","METT",2011,"For storage only",28,"Azas","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12734,11830,"RUS","RAPPAM",2001,"For storage only",28,"Azas","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12916,11831,"RUS","METT",2003,"For storage only",28,"Olekminsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12917,11831,"RUS","METT",2005,"For storage only",28,"Olekminsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12918,11831,"RUS","RAPPAM",2001,"For storage only",28,"Olekminsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13029,11832,"RUS","RAPPAM",2001,"For storage only",28,"Ust'-Lensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12768,11833,"RUS","METT",2005,"For storage only",28,"Bureinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12769,11833,"RUS","RAPPAM",2001,"For storage only",28,"Bureinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12767,11833,"RUS","METT",2003,"For storage only",28,"Bureinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12972,11834,"RUS","METT",2005,"For storage only",28,"Shulgan-Tash","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12971,11834,"RUS","METT",2003,"For storage only",28,"Shulgan-Tash","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12973,11834,"RUS","RAPPAM",2001,"For storage only",28,"Shulgan-Tash","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -856,11837,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2013,"For storage only",11,"Waddensea NLP (Lower Saxony)","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -9806,11839,"BHS","METT-RAPPAM",2018,"For storage only",25,"Pelican Cays Land & Sea Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9799,11840,"BHS","METT-RAPPAM",2018,"For storage only",25,"Peterson Cay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9800,11841,"BHS","METT-RAPPAM",2014,"For storage only",25,"Lucayan National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -15002,11846,"LCA","RAPPAM",2009,"For storage only",28,"Pigeon Island","National Landmark","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1031,11848,"CRI","SINAD",2016,"For storage only",14,"Isla Pájaros","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1029,11849,"CRI","SINAD",2016,"For storage only",14,"Isla Del Caño","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28190,11849,"CRI","METT",2010,"For storage only",28,"Isla Del Caño","Reserva Biológica","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -231,11865,"GRC","METT",2003,"For storage only",8,"Ethniko parko dasous Dadias - Lefkimmis - Soufliou","National Park","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -20977,11879,"IDN","METT",2015,"For storage only",35,"Sidei Wibain","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21041,11882,"IDN","METT",2015,"For storage only",35,"Beriat","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20937,11890,"IDN","METT",2015,"For storage only",35,"Telaga Patengan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21100,11900,"IDN","METT",2015,"For storage only",35,"Telaga Warna","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21055,11914,"IDN","METT",2015,"For storage only",35,"Gunung Guntur","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20913,11942,"IDN","METT",2015,"For storage only",35,"Pangi Binangga","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20935,11945,"IDN","METT",2015,"For storage only",35,"Tangkuban Prahu Pel. Ratu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -13063,11949,"SAU","Birdlife IBA",2013,"For storage only",28,"Harrat al-Harrah","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20518,12134,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Gulmarg","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20558,12136,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Karakoram (Nubra Shyok)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20422,12137,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Changthang","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20699,12152,"SVK","CCPAMET",2017,"For storage only",32,"Nizke Tatry","National Park; third level of protection","third level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20701,12155,"SVK","CCPAMET",2017,"For storage only",32,"Male Karpaty","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20702,12156,"SVK","CCPAMET",2017,"For storage only",32,"Muranska planina","National Park; third level of protection","third level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20704,12157,"SVK","CCPAMET",2017,"For storage only",32,"Vychodne Karpaty","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20705,12158,"SVK","CCPAMET",2017,"For storage only",32,"Stiavnicke vrchy","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20706,12159,"SVK","CCPAMET",2017,"For storage only",32,"Biele Karpaty","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20707,12160,"SVK","CCPAMET",2017,"For storage only",32,"Horna Orava","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20708,12161,"SVK","CCPAMET",2017,"For storage only",32,"Polana","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -13899,12165,"USA","USA SOP",2009,"For storage only",28,"Great Basin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14137,12171,"VNM","METT",2006,"For storage only",28,"Chu Mom Ray","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14138,12171,"VNM","RAPPAM",2004,"For storage only",28,"Chu Mom Ray","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13196,12186,"SUR","METT",2010,"For storage only",28,"Peruvia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13191,12188,"SUR","METT",2010,"For storage only",28,"Copi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10756,12201,"BEN","METT",2010,"For storage only",28,"W (Benin)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10758,12201,"BEN","METT",2005,"For storage only",28,"W (Benin)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10745,12201,"BEN","METT",2011,"For storage only",28,"W (Benin)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10613,12201,"BEN","IMET",2016,"For storage only",27,"W (Benin)","National Park","JRC IMET information","JRC",2018,"English",FALSE -17110,12202,"AUS","WHA Outlook Report",2014,"For storage only",28,"Gondwana Rainforests of Australia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14575,12206,"ESP","WHA Outlook Report",2014,"For storage only",28,"Garajonay National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13212,12209,"SVN","WHA Outlook Report",2014,"For storage only",28,"Škocjan Caves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -913,12213,"PER","METT",2016,"For storage only",13,"Yanachaga Chemillén","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28111,12215,"PER","METT",2005,"For storage only",28,"Los Manglares de Tumbes","Santuarios Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -952,12215,"PER","METT",2016,"For storage only",13,"Los Manglares de Tumbes","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -176,12223,"COL","AEMAPPS",2016,"For storage only",6,"Galeras","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -15190,12225,"BLZ","Belize MEE",2006,"For storage only",29,"Freshwater Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15191,12225,"BLZ","Belize MEE",2009,"For storage only",29,"Freshwater Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15228,12226,"BLZ","Belize MEE",2009,"For storage only",29,"Manatee Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15227,12226,"BLZ","Belize MEE",2006,"For storage only",29,"Manatee Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15230,12227,"BLZ","Belize MEE",2009,"For storage only",29,"Mango Creek 1 Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15229,12227,"BLZ","Belize MEE",2006,"For storage only",29,"Mango Creek 1 Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15285,12229,"BLZ","Belize MEE",2009,"For storage only",29,"Sittee River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15284,12229,"BLZ","Belize MEE",2006,"For storage only",29,"Sittee River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15143,12241,"BLZ","Belize MEE",2006,"For storage only",29,"Bladden Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15145,12241,"BLZ","METT",2011,"For storage only",29,"Bladden Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15144,12241,"BLZ","Belize MEE",2009,"For storage only",29,"Bladden Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -28265,12241,"BLZ","METT",2013,"For storage only",28,"Bladden Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28291,12241,"BLZ","METT",2010,"For storage only",28,"Bladden Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15216,12243,"BLZ","METT",2010,"For storage only",29,"Hol Chan Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15214,12243,"BLZ","METT",2013,"For storage only",29,"Hol Chan Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15215,12243,"BLZ","MPA MEE",2003,"For storage only",29,"Hol Chan Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15162,12243,"BLZ","Belize MEE",2009,"For storage only",29,"Hol Chan Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -1048,12244,"CRI","SINAD",2016,"For storage only",14,"Ostional","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -20562,12256,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Askot Musk Deer","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20561,12257,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Hastinapur","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -10635,12263,"SEN","IMET",2016,"For storage only",27,"Poponguine","Nature Reserve","JRC IMET information","JRC",2018,"English",FALSE -13091,12263,"SEN","RAPPAM",2011,"For storage only",28,"Poponguine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13092,12263,"SEN","METT",0,"For storage only",28,"Poponguine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11549,12352,"DZA","Birdlife IBA",2001,"For storage only",28,"Parc Culturel du Tassili (Illizi)","Cultural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11507,12359,"EGY","RAPPAM",2006,"For storage only",28,"El Omayed","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11525,12363,"EGY","METT",2011,"For storage only",28,"St. Catherine","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11521,12363,"EGY","METT",2009,"For storage only",28,"St. Catherine","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11524,12363,"EGY","RAPPAM",2006,"For storage only",28,"St. Catherine","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20507,12412,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Mouling","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20482,12414,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Sohagibarwa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20556,12416,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Pong Dam Lake","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20468,12420,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Pin Valley","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -1120,12422,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Monterrico","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1122,12422,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Monterrico","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1121,12422,"GTM","PROARCA/CAPAS",2016,"For storage only",16,"Monterrico","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -236,12431,"GRC","Wetland tracking tool",2005,"For storage only",8,"Not Reported","Not Reported","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -12777,12442,"RUS","RAPPAM",2001,"For storage only",28,"Tsentralnosibirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1023,12492,"CRI","SINAD",2016,"For storage only",14,"Golfito","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -998,12493,"CRI","SINAD",2016,"For storage only",14,"Barra Del Colorado","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -13121,12494,"SLV","PROARCA/CAPAS",1999,"For storage only",28,"El Imposible y El Balsamero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13122,12494,"SLV","PROARCA/CAPAS",2006,"For storage only",28,"El Imposible y El Balsamero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13119,12509,"SLV","PROARCA/CAPAS",2004,"For storage only",28,"Colima","Protected Area with Managed Resources","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13117,12509,"SLV","PROARCA/CAPAS",2001,"For storage only",28,"Colima","Protected Area with Managed Resources","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13118,12509,"SLV","PROARCA/CAPAS",2002,"For storage only",28,"Colima","Protected Area with Managed Resources","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13124,12516,"SLV","PROARCA/CAPAS",2003,"For storage only",28,"Escuintla","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13139,12521,"SLV","METT",2010,"For storage only",28,"Normandia","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13120,12524,"SLV","METT",2005,"For storage only",28,"San Diego La Barra, laguna, cerro, San felipe (12)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13143,12524,"SLV","PROARCA/CAPAS",2003,"For storage only",28,"San Diego La Barra, laguna, cerro, San felipe (12)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13140,12527,"SLV","PROARCA/CAPAS",2003,"For storage only",28,"Parque Walter Tilo Deininger","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1124,12555,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1125,12555,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1126,12555,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1123,12555,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1127,12555,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1130,12564,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1131,12564,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1132,12564,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1128,12564,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1129,12564,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1134,12583,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Laguna de lachuá","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1136,12583,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Laguna de lachuá","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1135,12583,"GTM","METT",2008,"For storage only",16,"Laguna de lachuá","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1133,12583,"GTM","PROARCA/CAPAS",2016,"For storage only",16,"Laguna de lachuá","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1137,12593,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Cerro Cahuí","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1139,12593,"GTM","Parks profiles",2014,"For storage only",16,"Cerro Cahuí","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1138,12593,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Cerro Cahuí","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1140,12593,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Cerro Cahuí","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -12171,12652,"NIC","METT",2012,"For storage only",28,"Estero Real","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12172,12652,"NIC","METT",2013,"For storage only",28,"Estero Real","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12200,12657,"NIC","METT",2013,"For storage only",28,"Coordillera Dipilto y Jalapa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12163,12657,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Coordillera Dipilto y Jalapa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12199,12657,"NIC","METT",2012,"For storage only",28,"Coordillera Dipilto y Jalapa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12164,12657,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Coordillera Dipilto y Jalapa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12191,12658,"NIC","METT",2005,"For storage only",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12192,12658,"NIC","METT",2010,"For storage only",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12189,12658,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12188,12658,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12190,12658,"NIC","METT",2008,"For storage only",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12212,12659,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Volcán Cosiguina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12209,12659,"NIC","METT",2012,"For storage only",28,"Volcán Cosiguina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12211,12659,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Volcán Cosiguina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12210,12659,"NIC","METT",2013,"For storage only",28,"Volcán Cosiguina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12216,12661,"NIC","METT",2013,"For storage only",28,"Complejo Volcánico Momotombo y Momotombito","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12215,12661,"NIC","METT",2012,"For storage only",28,"Complejo Volcánico Momotombo y Momotombito","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12156,12662,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Cerro Musun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12157,12662,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Cerro Musun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12208,12670,"NIC","METT",2013,"For storage only",28,"Cerro Tomabu","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12207,12670,"NIC","METT",2012,"For storage only",28,"Cerro Tomabu","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12206,12680,"NIC","METT",2013,"For storage only",28,"Cerro Tisey Estanzuela","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12203,12680,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Cerro Tisey Estanzuela","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12204,12680,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Cerro Tisey Estanzuela","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12205,12680,"NIC","METT",2012,"For storage only",28,"Cerro Tisey Estanzuela","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12197,12681,"NIC","METT",2013,"For storage only",28,"Salto Río Yasika","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12196,12681,"NIC","METT",2012,"For storage only",28,"Salto Río Yasika","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12213,12683,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Volcán Mombacho","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12214,12683,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Volcán Mombacho","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12328,12684,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12334,12684,"PAN","PIP Site Consolidation",2004,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12324,12684,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12330,12684,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12335,12684,"PAN","PIP Site Consolidation",2005,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12329,12684,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12325,12684,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12327,12684,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12333,12684,"PAN","PIP Site Consolidation",2003,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12331,12684,"PAN","METT",2010,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12332,12684,"PAN","PIP Site Consolidation",2002,"For storage only",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12317,12685,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12320,12685,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12322,12685,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12316,12685,"PAN","METT",0,"For storage only",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12321,12685,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12318,12685,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12323,12685,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12525,12686,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12527,12686,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12526,12686,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12521,12686,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12524,12686,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12522,12686,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12548,12687,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12549,12687,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12550,12687,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12544,12687,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12547,12687,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12545,12687,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12433,12688,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12427,12688,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12431,12688,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12426,12688,"PAN","METT",2006,"For storage only",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12428,12688,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12430,12688,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12432,12688,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12377,12695,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12371,12695,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12374,12695,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12375,12695,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12376,12695,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12372,12695,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12370,12695,"PAN","METT",2006,"For storage only",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12464,12698,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12459,12698,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12458,12698,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12461,12698,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12463,12698,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12462,12698,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12456,12699,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12457,12699,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12455,12699,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12452,12699,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12451,12699,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12454,12699,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14834,12705,"GRD","RAPPAM",2006,"For storage only",28,"Levera","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21914,12801,"CAN","Parks Canada",2004,"For storage only",28,"Bruce Peninsula National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21983,12801,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Bruce Peninsula National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -20419,12813,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Rajaji","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -12483,12826,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12481,12826,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12485,12826,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12484,12826,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12480,12826,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19289,12859,"AUS","NSW SOP",2013,"For storage only",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19287,12859,"AUS","NSW SOP",2007,"For storage only",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19286,12859,"AUS","NSW SOP",2005,"For storage only",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19288,12859,"AUS","NSW SOP",2010,"For storage only",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19290,12859,"AUS","NSW SOP",2004,"For storage only",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20653,12888,"PNG","RAPPAM",2004,"For storage only",28,"Ranba Wildlife Sanctuary","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12568,12896,"PCN","Birdlife IBA",2013,"For storage only",28,"Henderson Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16149,12958,"AUS","NSW SOP",2010,"For storage only",28,"Bushrangers Bay","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17962,12961,"AUS","NSW SOP",2010,"For storage only",28,"Long Reef","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18753,12962,"AUS","NSW SOP",2010,"For storage only",28,"North Sydney Harbour","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19243,12963,"AUS","NSW SOP",2010,"For storage only",28,"Shiprock","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19608,12965,"AUS","NSW SOP",2004,"For storage only",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19603,12965,"AUS","NSW SOP",2005,"For storage only",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19605,12965,"AUS","NSW SOP",2010,"For storage only",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19604,12965,"AUS","NSW SOP",2007,"For storage only",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19606,12965,"AUS","NSW SOP",2013,"For storage only",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13876,13013,"USA","USA SOP",2008,"For storage only",28,"Cabrillo","National Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13938,13014,"USA","USA SOP",2008,"For storage only",28,"Santa Monica Mountains","National Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11703,13172,"ITA","MPA MEE",2009,"For storage only",28,"Area marina protetta Isole Ciclopi","Natural Marine Reserve and Natural Protected Marine Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11720,13176,"ITA","MPA MEE",2009,"For storage only",28,"Area marina protetta Penisola del Sinis - Isola Mal di Ventre","Natural Marine Reserve and Natural Protected Marine Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20424,13220,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Interview Island","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -21678,13307,"ZAF","METT",2013,"For storage only",28,"Richards Bay Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21677,13307,"ZAF","METT",2012,"For storage only",28,"Richards Bay Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21676,13307,"ZAF","METT",2011,"For storage only",28,"Richards Bay Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21675,13307,"ZAF","METT",2010,"For storage only",28,"Richards Bay Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21974,13396,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Quttinirpaaq National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -11522,13650,"EGY","RAPPAM",2006,"For storage only",28,"Salouga and Ghazal","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13186,13651,"SUR","METT",2010,"For storage only",28,"Bigi Pan","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14901,13652,"HUN","GOBI Survey",2006,"For storage only",28,"Aggleki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14900,13653,"HUN","Stockholm BR Survey",2008,"For storage only",28,"Aggtelek Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20470,13662,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Shendurney","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -14954,13675,"JAM","METT",2009,"For storage only",28,"Bogue Islands Lagoon","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14977,13676,"JAM","METT",2009,"For storage only",28,"Negril","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14975,13676,"JAM","RAPPAM",2006,"For storage only",28,"Negril","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11216,13694,"COG","RAPPAM",2012,"For storage only",28,"Réserve de biosphère de la Dimonika","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14788,13704,"ETH","METT",2005,"For storage only",28,"Gambella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14790,13766,"ETH","METT",2005,"For storage only",28,"Maze","Controlled Hunting Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9823,13938,"BHS","METT-RAPPAM",2018,"For storage only",25,"The Retreat","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9802,13939,"BHS","METT-RAPPAM",2018,"For storage only",25,"Black Sound Cay National Reserve","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -13325,13963,"TUN","GOBI Survey",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -212,13966,"COL","AEMAPPS",2016,"For storage only",6,"Tatama","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -20797,13968,"MDG","SAPM",2016,"For storage only",34,"Tsimembo","Forest Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20448,13969,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Balphakram","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20594,13971,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Kyongnosla Alpine","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -12740,13987,"RUS","RAPPAM",2001,"For storage only",28,"Bassegi","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12849,13988,"RUS","European Diploma",1998,"For storage only",28,"Kostomukshsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12850,13988,"RUS","RAPPAM",2001,"For storage only",28,"Kostomukshsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11814,14013,"KEN","West Indian Ocean MPA",2003,"For storage only",28,"Mombasa","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20709,14146,"SVK","CCPAMET",2017,"For storage only",32,"Cerova vrchovina","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -947,14171,"PER","METT",2016,"For storage only",13,"Ampay","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -20508,14174,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Nokrek","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20474,14175,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Trishna","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20417,14176,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Sepahijala","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20433,14180,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Singalila","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -14837,14181,"GRD","RAPPAM",2006,"For storage only",28,"Mt. St. Catherine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14833,14182,"GRD","RAPPAM",2006,"For storage only",28,"High North","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14835,14191,"GRD","RAPPAM",2006,"For storage only",28,"Molinier-Beausejour","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15048,14818,"MLT","Birdlife IBA",2013,"For storage only",28,"L-inhawi fuq l-Gholjiet ta' Cenc, Ghawdex","Bird Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11325,14847,"CYP","Birdlife IBA",2013,"For storage only",28,"Troodos","National Forest Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14982,14871,"JAM","RAPPAM",2006,"For storage only",28,"Palisadoes","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11527,14895,"EGY","RAPPAM",2006,"For storage only",28,"Wadi Al Alaqi","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11515,14899,"EGY","RAPPAM",2006,"For storage only",28,"Qarun","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11523,14900,"EGY","RAPPAM",2006,"For storage only",28,"Siwa","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11898,15060,"LBN","METT",2004,"For storage only",28,"Arz Tannourine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11897,15060,"LBN","METT",2007,"For storage only",28,"Arz Tannourine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14026,15135,"VEN","Venezuela Vision",2001,"For storage only",28,"Guaramacal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14024,15135,"VEN","Parks profiles",2001,"For storage only",28,"Guaramacal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14025,15135,"VEN","Venezuela Vision",1991,"For storage only",28,"Guaramacal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11726,15263,"ITA","MPA MEE",2009,"For storage only",28,"Riserva naturale marina Torre Guaceto","Natural Marine Reserve and Natural Protected Marine Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11700,15301,"ITA","METT",2003,"For storage only",28,"Parco regionale Diecimare","Regional/Provincial Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14615,15429,"ESP","Catalonia MEE",2002,"For storage only",28,"Muntanya de Montserrat","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14605,15446,"ESP","Catalonia MEE",2002,"For storage only",28,"Mas de Melons","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13171,15596,"SRB","METT",2009,"For storage only",28,"Nacionalni park Tara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13183,15596,"SRB","RAPPAM",2009,"For storage only",28,"Nacionalni park Tara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13160,15598,"SRB","METT",2012,"For storage only",28,"Ncionalni park Kopaonik","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13169,15598,"SRB","METT",2009,"For storage only",28,"Ncionalni park Kopaonik","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13161,15598,"SRB","RAPPAM",2009,"For storage only",28,"Ncionalni park Kopaonik","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9378,15602,"HRV","METT",2014,"For storage only",19,"Kopacki rit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9397,15602,"HRV","METT",2016,"For storage only",19,"Kopacki rit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9359,15602,"HRV","METT",2012,"For storage only",19,"Kopacki rit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -11957,15603,"MKD","METT",0,"For storage only",28,"Markovi Kuli","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9398,15606,"HRV","METT",2016,"For storage only",19,"Velebit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9360,15606,"HRV","METT",2012,"For storage only",19,"Velebit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9379,15606,"HRV","METT",2014,"For storage only",19,"Velebit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9361,15614,"HRV","METT",2012,"For storage only",19,"Medvednica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9380,15614,"HRV","METT",2014,"For storage only",19,"Medvednica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9399,15614,"HRV","METT",2016,"For storage only",19,"Medvednica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -1091,15776,"EST","METT",2012,"For storage only",15,"Endla looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -12787,15779,"RUS","RAPPAM",2001,"For storage only",28,"Dagestansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13034,15780,"RUS","RAPPAM",2001,"For storage only",28,"Verkhne-Tazovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20646,15781,"PNG","RAPPAM",2004,"For storage only",28,"Ndrolowa (I)","Marine Managed Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20624,15782,"PNG","RAPPAM",2004,"For storage only",28,"Iomare","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20647,15783,"PNG","RAPPAM",2004,"For storage only",28,"Neiru (Aird Hills)","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12936,15784,"RUS","RAPPAM",2001,"For storage only",28,"Poronaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20649,15787,"PNG","RAPPAM",2004,"For storage only",28,"Oi Mada Wara","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20651,15788,"PNG","RAPPAM",2004,"For storage only",28,"Pirung","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20620,15789,"PNG","RAPPAM",2004,"For storage only",28,"Crown Island (III)","Marine Managed Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20625,15797,"PNG","RAPPAM",2004,"For storage only",28,"Jimi Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20634,15894,"PNG","RAPPAM",2004,"For storage only",28,"Lihir Island","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -536,16105,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental De Petrópolis","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -251,16105,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental De Petrópolis","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -15008,16296,"LUX","Birdlife IBA",2009,"For storage only",28,"Haardt-Hesselbierg-Staebierg (Dudelange-Kayl-Rumelange)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15019,16358,"LUX","European Diploma",1973,"For storage only",28,"Parc Naturel de l'Our","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21957,16379,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Gwaii Haanas National Park Reserve of Canada and Haida Heritage Site","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -28185,16385,"MNE","METT",2009,"For storage only",28,"Skadarsko jezero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13170,16386,"SRB","METT",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13176,16393,"SRB","RAPPAM",2009,"For storage only",28,"Palic","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13182,16397,"SRB","RAPPAM",2009,"For storage only",28,"Stara planina","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28205,16399,"SRB","METT",2009,"For storage only",28,"Sicevacka klisura","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13178,16399,"SRB","METT",2012,"For storage only",28,"Sicevacka klisura","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13152,16401,"SRB","METT",2012,"For storage only",28,"Golija","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13156,16406,"SRB","METT",2012,"For storage only",28,"Jegricka","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13172,16406,"SRB","METT",2009,"For storage only",28,"Jegricka","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11951,16435,"MKD","METT",0,"For storage only",28,"Katlanovsko Blato","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11977,16436,"MKD","METT",0,"For storage only",28,"Vodno","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11962,16437,"MKD","METT",0,"For storage only",28,"Ohridsko Ezero","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11937,16443,"MKD","METT",0,"For storage only",28,"Klisura Demir Kapija","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12478,16787,"PAN","METT",2010,"For storage only",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12407,16787,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12409,16787,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12408,16787,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12410,16787,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12403,16787,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12479,16787,"PAN","METT",2006,"For storage only",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12405,16787,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20666,16791,"LKA","WHA Outlook Report",2014,"For storage only",28,"Sinharaja Forest Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10959,16792,"CAF","Birdlife IBA",2001,"For storage only",28,"Manovo-Gounda St Floris National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10960,16792,"CAF","WHA Outlook Report",2014,"For storage only",28,"Manovo-Gounda St Floris National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14340,16806,"CHL","METT",2010,"For storage only",28,"Hornopiren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14338,16806,"CHL","RAPPAM",2005,"For storage only",28,"Hornopiren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14339,16806,"CHL","METT",2004,"For storage only",28,"Hornopiren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -87,16831,"ARG","METT",2010,"For storage only",3,"Punta Lara","Mixed Integral Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -45,16846,"ARG","METT",2010,"For storage only",3,"Copo","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -44,16873,"ARG","Valdiviana",2001,"For storage only",3,"Copahue Caviahue","Provincial Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -86,16880,"ARG","METT",2009,"For storage only",3,"Punta Bermeja","Protected Nature Area","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -88,16882,"ARG","METT",2009,"For storage only",3,"Caleta de los Loros","Multiple Use Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -50,16890,"ARG","METT",2005,"For storage only",3,"Iberá","Provincial Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -74,16892,"ARG","METT",2003,"For storage only",3,"Monte de las Barrancas","Wildlife Refuge","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -99,16894,"ARG","GOBI Survey",2009,"For storage only",3,"Laguna de los Pozuelos","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -53,16900,"ARG","METT",2009,"For storage only",3,"Ría de Puerto Deseado","Intangible Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -11024,17050,"CHN","WHA Outlook Report",2014,"For storage only",28,"Mount Taishan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14914,17120,"IRN","Birdlife IBA",1994,"For storage only",28,"Amirkelayeh","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14941,17128,"IRN","Birdlife IBA",1994,"For storage only",28,"Shadegan","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14926,17131,"IRN","Birdlife IBA",1994,"For storage only",28,"Hamoun","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14936,17154,"IRN","METT",2013,"For storage only",28,"Lake Urmia [or Orumiyeh]","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14937,17154,"IRN","METT",0,"For storage only",28,"Lake Urmia [or Orumiyeh]","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14935,17154,"IRN","METT",2009,"For storage only",28,"Lake Urmia [or Orumiyeh]","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14933,17154,"IRN","Birdlife IBA",1994,"For storage only",28,"Lake Urmia [or Orumiyeh]","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14915,17156,"IRN","Birdlife IBA",1994,"For storage only",28,"Anzali Mordab (Talab) complex","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14942,17157,"IRN","Birdlife IBA",1994,"For storage only",28,"Shadegan Marshes & mudflats of Khor-al Amaya & Khor Musa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14927,17158,"IRN","Birdlife IBA",1994,"For storage only",28,"Hamun-e-Saberi & Hamun-e-Helmand","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14930,17159,"IRN","Birdlife IBA",1994,"For storage only",28,"Lake Kobi","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14943,17161,"IRN","Birdlife IBA",1994,"For storage only",28,"Shurgol, Yadegarlu & Dorgeh Sangi Lakes","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14917,17162,"IRN","Birdlife IBA",1994,"For storage only",28,"Bujagh National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14920,17162,"IRN","METT",2008,"For storage only",28,"Bujagh National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14919,17162,"IRN","METT",2007,"For storage only",28,"Bujagh National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14929,17166,"IRN","Birdlife IBA",1994,"For storage only",28,"Khuran Straits","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14940,17167,"IRN","Birdlife IBA",1994,"For storage only",28,"Deltas of Rud-e-Shur, Rud-e-Shirin and Rud-e-Minab","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14938,17175,"IRN","Birdlife IBA",1994,"For storage only",28,"Miankaleh","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12303,17181,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12304,17181,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12302,17181,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12308,17181,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12307,17181,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12306,17181,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12300,17183,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12296,17183,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12295,17183,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12301,17183,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12299,17183,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12470,17184,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12469,17184,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12465,17184,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12466,17184,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12468,17184,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12471,17184,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12495,17185,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12493,17185,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12494,17185,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12489,17185,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12490,17185,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12492,17185,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12488,17185,"PAN","METT",2006,"For storage only",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11735,17232,"JOR","METT",2007,"For storage only",28,"Mujib Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11734,17232,"JOR","METT",2006,"For storage only",28,"Mujib Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11738,17232,"JOR","Birdlife IBA",2013,"For storage only",28,"Mujib Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20603,17266,"KWT","Birdlife IBA",1994,"For storage only",28,"Sabah Al-Ahmad Natural Reserve","Natural Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16,17360,"ARE","METT",2016,"For storage only",1,"Eastern Mangrove","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -12129,17367,"NER","METT",2013,"For storage only",28,"Réserve Naturelle et Culturelle de Termit-Tintoumma","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10630,17367,"NER","IMET",2016,"For storage only",27,"Réserve Naturelle et Culturelle de Termit-Tintoumma","National Nature Reserve","JRC IMET information","JRC",2018,"English",FALSE -21892,17368,"ZAF","METT",2012,"For storage only",28,"West Coast National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21893,17368,"ZAF","METT",2013,"For storage only",28,"West Coast National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21891,17368,"ZAF","METT",2010,"For storage only",28,"West Coast National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20436,17386,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Desert","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20480,17430,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Bhindawas","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20420,17545,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Kalesar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20393,17547,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Sultanpur","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -11340,17653,"DNK","Birdlife IBA",2010,"For storage only",28,"Førby Sø","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11346,17657,"DNK","Birdlife IBA",2006,"For storage only",28,"Anholt, Ørkenen","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11391,17669,"DNK","Birdlife IBA",2006,"For storage only",28,"Møens Klint, Høje Møn","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11421,17685,"DNK","Birdlife IBA",2008,"For storage only",28,"Mossø","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11367,17691,"DNK","Birdlife IBA",2010,"For storage only",28,"Hansted reservatet","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11545,17706,"DZA","Birdlife IBA",2001,"For storage only",28,"Lac Oubeira","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11914,17713,"MAR","Birdlife IBA",2001,"For storage only",28,"Baie de Khnifiss","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11756,17721,"KAZ","Birdlife IBA",2006,"For storage only",28,"Tengiz-Korgalzhyn Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11753,17722,"KAZ","METT",2011,"For storage only",28,"Lakes of the lower Turgay & Irgiz","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11751,17722,"KAZ","Birdlife IBA",2004,"For storage only",28,"Lakes of the lower Turgay & Irgiz","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12041,17726,"MRT","Birdlife IBA",2001,"For storage only",28,"Banc dÔÇÖArguin","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13326,17744,"TUN","METT",2003,"For storage only",28,"El Feïja","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19914,17757,"AUS","WHA Outlook Report",2014,"For storage only",28,"Wet Tropics of Queensland","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11101,17758,"CMR","Birdlife IBA",2001,"For storage only",28,"Dja Faunal Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10589,17758,"CMR","IMET",0,"For storage only",27,"Dja Faunal Reserve","World Heritage Site","JRC IMET information","JRC",2018,"English",FALSE -11102,17758,"CMR","WHA Outlook Report",2014,"For storage only",28,"Dja Faunal Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21924,17759,"CAN","WHA Outlook Report",2014,"For storage only",28,"Gros Morne National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13426,17761,"TZA","WHA Outlook Report",2014,"For storage only",28,"Kilimanjaro National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20638,17823,"PNG","RAPPAM",2004,"For storage only",28,"Moitaka Wildlife Sanctuary","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12348,17831,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12346,17831,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12351,17831,"PAN","METT",2010,"For storage only",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12343,17831,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12347,17831,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12350,17831,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12349,17831,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20990,17832,"IDN","METT",2015,"For storage only",35,"Dr. Muhammad Hatta","Grand Forest Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20921,17834,"IDN","METT",2015,"For storage only",35,"P. Bawean","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21098,17842,"IDN","METT",2015,"For storage only",35,"Tanjung Keluang-Teluk Keluang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20925,17867,"IDN","METT",2015,"For storage only",35,"Mas Popaya Raja","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20934,17868,"IDN","METT",2016,"For storage only",35,"Gn. Duasaudara","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20889,17885,"IDN","METT",2015,"For storage only",35,"Kakenauwe","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20907,17915,"IDN","METT",2015,"For storage only",35,"Pagar Gunung I/II/III","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20932,17916,"IDN","METT",2015,"For storage only",35,"Taba Penanjung","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21045,17922,"IDN","METT",2015,"For storage only",35,"Danau Buyan - Danau Tamblingan","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21035,17923,"IDN","METT",2015,"For storage only",35,"Way Kambas","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20975,17962,"IDN","METT",2015,"For storage only",35,"Rawa Singkil","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21030,17972,"IDN","METT",2015,"For storage only",35,"Siberut","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20952,17976,"IDN","METT",2015,"For storage only",35,"Danau Pulau Besar-Danau Pulau Bawah","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21042,17982,"IDN","METT",2015,"For storage only",35,"Bukit Kaba","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20847,17994,"IDN","METT",2015,"For storage only",35,"Pulau Sangiang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -12091,17999,"NAM","METT",2004,"For storage only",28,"Khaudum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12115,18004,"NAM","METT",2005,"For storage only",28,"Von Bach Recreation Resort","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12090,18005,"NAM","METT",2004,"For storage only",28,"Hardap Recreation Resort","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14212,18033,"VNM","METT",2005,"For storage only",28,"Yok Don","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14213,18033,"VNM","RAPPAM",2004,"For storage only",28,"Yok Don","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28097,18062,"MEX","METT",2006,"For storage only",28,"El Triunfo","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -29583,18107,"LIE","METT",2017,"For storage only",22,"Ruggeller Riet","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9642,18109,"LIE","METT",2017,"For storage only",22,"Schwabbruennen/Aescher","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -20669,18256,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngerumekoal","Spawning Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -14214,18274,"VUT","METT",2010,"For storage only",28,"Erromango Kauri","Forest Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -127,18307,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Tioman","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -13903,18337,"USA","WHA Outlook Report",2014,"For storage only",28,"Hawaii Volcanoes National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13902,18337,"USA","USA SOP",2008,"For storage only",28,"Hawaii Volcanoes National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13736,18437,"UGA","Enhancing Our Heritage",2003,"For storage only",28,"Bwindi Impenetrable","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13737,18437,"UGA","Enhancing Our Heritage",2007,"For storage only",28,"Bwindi Impenetrable","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13738,18437,"UGA","Birdlife IBA",2001,"For storage only",28,"Bwindi Impenetrable","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13735,18437,"UGA","Enhancing Our Heritage",2002,"For storage only",28,"Bwindi Impenetrable","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13770,18438,"UGA","METT",2003,"For storage only",28,"Rwenzori Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13771,18438,"UGA","Birdlife IBA",2001,"For storage only",28,"Rwenzori Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14784,18439,"ETH","METT",2005,"For storage only",28,"Babile Elephant","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13260,18446,"THA","Birdlife IBA",2007,"For storage only",28,"Khao Laem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21919,18534,"CAN","Parks Canada",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21964,18668,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Terra Nova National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -537,18727,"BRA","SAMGe",2016,"For storage only",9,"APA de Piaçabuçu","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -270,18738,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Guaraqueçaba","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -575,18738,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Guaraqueçaba","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -586,18739,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Tupinambás","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -480,18739,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Tupinambás","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -283,18740,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Dos Tupiniquins","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -592,18740,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Dos Tupiniquins","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -756,18742,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Córrego Grande","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -407,18742,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Córrego Grande","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -763,18744,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Tinguá","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -414,18744,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Tinguá","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -403,18745,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica De Santa Isabel","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -750,18745,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica De Santa Isabel","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -11530,18771,"EGY","RAPPAM",2006,"For storage only",28,"Wadi El Assuti","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14841,18805,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Celaque","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14842,18807,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Azul Meámbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14888,18808,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Agalta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14860,18810,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Pico Bonito","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14856,18811,"HND","PROARCA/CAPAS",2001,"For storage only",28,"Montañade Yoro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14862,18812,"HND","PROARCA/CAPAS",2002,"For storage only",28,"Pico Pijol","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14861,18812,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Pico Pijol","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14863,18812,"HND","PROARCA/CAPAS",2005,"For storage only",28,"Pico Pijol","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14845,18828,"HND","PROARCA/CAPAS",2000,"For storage only",28,"El Chile","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14846,18828,"HND","PROARCA/CAPAS",2001,"For storage only",28,"El Chile","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14847,18828,"HND","PROARCA/CAPAS",2002,"For storage only",28,"El Chile","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14852,18847,"HND","PROARCA/CAPAS",2000,"For storage only",28,"La Muralla","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14853,18847,"HND","PROARCA/CAPAS",2002,"For storage only",28,"La Muralla","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -232,18862,"GRC","WHA Outlook Report",2014,"For storage only",8,"Meteora","World Heritage Site","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -233,18863,"GRC","WHA Outlook Report",2014,"For storage only",8,"Mount Athos","World Heritage Site","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -14215,18919,"VUT","METT",2010,"For storage only",28,"Lake Letas","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21916,18922,"CAN","GOBI Survey",2006,"For storage only",28,"Réserve de la biosphère de Charlevoix","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13917,18923,"USA","GOBI Survey",2006,"For storage only",28,"New Jersey Pinelands Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12588,18942,"PRT","Birdlife IBA",2005,"For storage only",28,"Paul de Arzila","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12577,18945,"PRT","Birdlife IBA",2005,"For storage only",28,"Sudoeste Alentejano e Costa Vicentina","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12607,18946,"PRT","Birdlife IBA",2005,"For storage only",28,"Montesinho","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12897,19000,"RUS","Birdlife IBA",2007,"For storage only",28,"Prielbrus'e","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12938,19000,"RUS","RAPPAM",2001,"For storage only",28,"Prielbrus'e","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12741,19002,"RUS","RAPPAM",2001,"For storage only",28,"Bashkiria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12743,19002,"RUS","METT",2005,"For storage only",28,"Bashkiria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12742,19002,"RUS","METT",2003,"For storage only",28,"Bashkiria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12880,19003,"RUS","RAPPAM",2001,"For storage only",28,"Mary Chodra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12717,19023,"ROU","METT",2012,"For storage only",28,"Cheile Carasului","Nature reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20710,19034,"SVK","CCPAMET",0,"For storage only",32,"Zahorie","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -13109,19249,"SLE","Birdlife IBA",2005,"For storage only",28,"Western Area Peninsula Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -723,19272,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Grande Sertão Veredas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -389,19272,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Grande Sertão Veredas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -670,19273,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Chapada Dos Guimarães","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -354,19273,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Chapada Dos Guimarães","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -719,19274,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Superagui","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -386,19274,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Superagui","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -681,19275,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra Do Divisor","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -362,19275,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra Do Divisor","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -14050,19280,"VEN","Parks profiles",2003,"For storage only",28,"Loma de León","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14049,19280,"VEN","Venezuela Vision",2001,"For storage only",28,"Loma de León","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14069,19285,"VEN","Venezuela Vision",1991,"For storage only",28,"Páramos del Batallón y La Negra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14070,19285,"VEN","Venezuela Vision",2001,"For storage only",28,"Páramos del Batallón y La Negra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14009,19286,"VEN","Venezuela Vision",2001,"For storage only",28,"Cinaruco-Capanaparo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14008,19286,"VEN","Venezuela Vision",1991,"For storage only",28,"Cinaruco-Capanaparo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13997,19287,"VEN","Venezuela Vision",2001,"For storage only",28,"Cerro Platillón","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14068,19290,"VEN","Venezuela Vision",2001,"For storage only",28,"Morros de San Juan (Arístides Rojas)","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13703,19297,"TZA","METT",2003,"For storage only",28,"Udzungwa Mountains National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13704,19297,"TZA","METT",2007,"For storage only",28,"Udzungwa Mountains National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1025,19368,"CRI","SINAD",2016,"For storage only",14,"Guanacaste","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1037,19370,"CRI","SINAD",2016,"For storage only",14,"Lomas Barbudal","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -997,19372,"CRI","SINAD",2016,"For storage only",14,"Barbilla","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1033,19379,"CRI","SINAD",2016,"For storage only",14,"Juan Castro Blanco","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28281,19384,"CRI","METT",2011,"For storage only",28,"Tivives","Zona Protectora","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1061,19384,"CRI","SINAD",2016,"For storage only",14,"Tivives","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -996,19385,"CRI","SINAD",2016,"For storage only",14,"Arenal Monteverde","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -686,19428,"BRA","SAMGe",2016,"For storage only",9,"PARNA da Serra Geral","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -669,19447,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Chapada Diamantina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -353,19447,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Chapada Diamantina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -673,19448,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Lagoa Do Peixe","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -355,19448,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Lagoa Do Peixe","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -747,19454,"BRA","SAMGe",2016,"For storage only",9,"REBIO de Pedra Talhada","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -247,19458,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental De Cairuçu","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -531,19458,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental De Cairuçu","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13536,19470,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13439,19474,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13711,19476,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13621,19477,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13532,19478,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -532,19484,"BRA","SAMGe",2016,"For storage only",9,"APA de Cananéia-Iguapé-Peruíbe","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13530,19495,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15178,19553,"BLZ","METT",2010,"For storage only",29,"Bermudian Landing Community Baboon Sanctuary Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15179,19553,"BLZ","METT",2013,"For storage only",29,"Bermudian Landing Community Baboon Sanctuary Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -13065,19556,"SAU","Birdlife IBA",2013,"For storage only",28,"Mahazat as-Sayd","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11835,19564,"KEN","Birdlife IBA",1999,"For storage only",28,"Tsavo West","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11836,19566,"KEN","West Indian Ocean MPA",2003,"For storage only",28,"Watamu","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11818,19568,"KEN","West Indian Ocean MPA",2003,"For storage only",28,"Mpunguti","Marine National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13187,19574,"SUR","METT",2010,"For storage only",28,"Boven-Coesewijne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -93,19604,"ARG","METT",2003,"For storage only",3,"Bahía de Samborombón","Integral Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -36,19612,"ARG","METT",2010,"For storage only",3,"Punta Tombo","Tourist Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -128,19636,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2015,"For storage only",5,"Pulau Rawa","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -129,19637,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Babi Hujong","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -130,19638,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Babi Tengah","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -131,19639,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Babi Besar","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -132,19640,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Tinggi","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -133,19641,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Mentigi","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -134,19642,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Sibu","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -135,19643,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Ceben","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -136,19644,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Tulai","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -137,19645,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Sembilang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -138,19646,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Seri Buat","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -139,19647,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2015,"For storage only",5,"Pulau Perhentian Kecil","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -140,19648,"MYS","Combination of Methods (PAME and METT)",2012,"For storage only",5,"Pulau Lang Tengah","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -13270,19669,"THA","Birdlife IBA",2013,"For storage only",28,"Mae Wong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13271,19670,"THA","Birdlife IBA",2013,"For storage only",28,"Mae Yom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20548,19675,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Deepor Beel","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20495,19678,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Nakti Dam","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20516,19687,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Chhilchila","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20484,19693,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Kudremukh","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20568,19694,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Cauvery","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20440,19699,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Bhimashankar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20452,19700,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Chandoli","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20285,19701,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Melghat","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20287,19701,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Melghat","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20286,19701,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Melghat","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20550,19702,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Yangoupokpi-Lokchao","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20535,19704,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Lakhari Valley","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20553,19706,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Maenam","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20342,19707,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Indira Gandhi (Annamalai)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20341,19707,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Indira Gandhi (Annamalai)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20490,19708,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Srivilliputhur Grizzled Squirrel","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20445,19710,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Gumti","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20554,19711,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Roa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20522,19712,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Binsar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20363,19715,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Periyar","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20364,19715,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Periyar","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20362,19715,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Periyar","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20650,19716,"PNG","RAPPAM",2004,"For storage only",28,"Paga Hill National Park Scenic Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20453,19717,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Chaprala","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20545,19724,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Phansad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -680,19737,"BRA","SAMGe",2016,"For storage only",9,"PARNA da Serra do Cipó","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -603,19745,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Amapá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -295,19745,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Amapá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -326,19746,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Purus","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -640,19746,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Purus","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -652,19747,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Tefé","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -333,19747,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Tefé","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13430,19748,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -526,19751,"BRA","SAMGe",2016,"For storage only",9,"APA da Bacia do Rio Descoberto","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -527,19752,"BRA","SAMGe",2016,"For storage only",9,"APA da Bacia do Rio São Bartolomeu","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -539,19755,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Do Igarapé Gelado","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -253,19755,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Do Igarapé Gelado","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -316,19758,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Mário Xavier","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -629,19758,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Mário Xavier","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -298,19759,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Bom Futuro","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -606,19759,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Bom Futuro","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -715,19762,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Monte Roraima","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -382,19762,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Monte Roraima","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -618,19763,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Ibirama","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -306,19763,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Ibirama","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -423,19769,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Mamirauá","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13414,19775,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14824,19980,"GIN","RAPPAM",2007,"For storage only",28,"Tristao","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -205,19984,"COL","AEMAPPS",2016,"For storage only",6,"Serrania De Chiribiquete","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -200,19991,"COL","AEMAPPS",2016,"For storage only",6,"Puinawai","Natural Reserve","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -194,19992,"COL","AEMAPPS",2016,"For storage only",6,"Nukak","Natural Reserve","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -164,19993,"COL","AEMAPPS",2016,"For storage only",6,"Catatumbo - Bari","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -214,19995,"COL","AEMAPPS",2016,"For storage only",6,"Tinigua","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -163,20002,"COL","AEMAPPS",2016,"For storage only",6,"Campo Alegre","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -14452,20003,"ECU","Ecuador MEE",1999,"For storage only",28,"Limoncocha","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10916,20011,"BOL","GOBI Survey",2006,"For storage only",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10910,20011,"BOL","CI Tracking Tool",0,"For storage only",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10911,20011,"BOL","PA Consolidation Index",0,"For storage only",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10914,20011,"BOL","RAPPAM",2004,"For storage only",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10912,20011,"BOL","MEMS",2001,"For storage only",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10915,20011,"BOL","Parks profiles",2005,"For storage only",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10913,20011,"BOL","MEMS",2002,"For storage only",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11299,20015,"CZE","Stockholm BR Survey",2008,"For storage only",28,"Šumava","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11298,20015,"CZE","GOBI Survey",2006,"For storage only",28,"Šumava","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20810,20017,"MDG","IEG",2006,"For storage only",34,"Mananara Nord","UNESCO-MAB Biosphere Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -10855,20037,"BOL","PA Consolidation Index",0,"For storage only",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10853,20037,"BOL","MEMS",2002,"For storage only",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10939,20037,"BOL","Birdlife IBA",2013,"For storage only",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10852,20037,"BOL","MEMS",2001,"For storage only",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10856,20037,"BOL","Parks profiles",2005,"For storage only",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10857,20037,"BOL","RAPPAM",2004,"For storage only",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10851,20037,"BOL","CI Tracking Tool",0,"For storage only",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10854,20037,"BOL","METT",2003,"For storage only",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10936,20039,"BOL","MEMS",2002,"For storage only",28,"Toro Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10935,20039,"BOL","MEMS",2001,"For storage only",28,"Toro Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10934,20039,"BOL","RAPPAM",2004,"For storage only",28,"Toro Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10924,20041,"BOL","PIP Site Consolidation",1995,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10925,20041,"BOL","PIP Site Consolidation",1996,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10926,20041,"BOL","PIP Site Consolidation",1997,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10927,20041,"BOL","PIP Site Consolidation",1998,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10932,20041,"BOL","MEMS",2001,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10929,20041,"BOL","PIP Site Consolidation",2000,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10930,20041,"BOL","PIP Site Consolidation",2001,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10933,20041,"BOL","MEMS",2002,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10928,20041,"BOL","PIP Site Consolidation",1999,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10931,20041,"BOL","RAPPAM",2004,"For storage only",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14320,20052,"CHL","RAPPAM",2005,"For storage only",28,"Cerro Nielol","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14319,20052,"CHL","METT",0,"For storage only",28,"Cerro Nielol","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14318,20052,"CHL","METT",2010,"For storage only",28,"Cerro Nielol","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14013,20054,"VEN","Venezuela Vision",1991,"For storage only",28,"Dinira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14012,20054,"VEN","Parks profiles",2004,"For storage only",28,"Dinira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14014,20054,"VEN","Venezuela Vision",2001,"For storage only",28,"Dinira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20659,20057,"PNG","RAPPAM",2004,"For storage only",28,"Talele Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11109,20058,"CMR","Africa Rainforest Study",2001,"For storage only",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10590,20058,"CMR","IMET",0,"For storage only",27,"Korup","National Park","JRC IMET information","JRC",2018,"English",FALSE -11110,20058,"CMR","METT",2004,"For storage only",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11111,20058,"CMR","METT",2006,"For storage only",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11113,20058,"CMR","METT",0,"For storage only",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11114,20058,"CMR","RAPPAM",2002,"For storage only",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11112,20058,"CMR","METT",2008,"For storage only",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11115,20058,"CMR","METT",2010,"For storage only",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14007,20085,"VEN","METT",0,"For storage only",28,"Ciénagas de Juan Manuel, Aguas Blancas y Negras","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11078,20112,"CMR","RAPPAM",2002,"For storage only",28,"Bayang-Mbo","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11079,20112,"CMR","METT",2012,"For storage only",28,"Bayang-Mbo","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11139,20117,"CMR","RAPPAM",2002,"For storage only",28,"Rumpi Hills","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11141,20125,"CMR","RAPPAM",2002,"For storage only",28,"Santchou","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11142,20125,"CMR","Birdlife IBA",2013,"For storage only",28,"Santchou","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11125,20166,"CMR","RAPPAM",2010,"For storage only",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10591,20166,"CMR","IMET",2015,"For storage only",27,"Mbam et Djerem","National Park","JRC IMET information","JRC",2018,"English",FALSE -11123,20166,"CMR","RAPPAM",2002,"For storage only",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11126,20166,"CMR","METT",2004,"For storage only",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11128,20166,"CMR","METT",2008,"For storage only",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11124,20166,"CMR","METT",0,"For storage only",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11127,20166,"CMR","METT",2006,"For storage only",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15034,20171,"MLI","WHA Outlook Report",2014,"For storage only",28,"Cliff of Bandiagara (Land of the Dogons)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15036,20171,"MLI","Birdlife IBA",2001,"For storage only",28,"Cliff of Bandiagara (Land of the Dogons)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -221,20174,"CIV","METT",2017,"For storage only",7,"Iles Ehotile National Park","National Park","Côte d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French",FALSE -955,20178,"PER","METT",2016,"For storage only",13,"Tabaconas Namballe","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28108,20178,"PER","METT",2003,"For storage only",28,"Tabaconas Namballe","Santuarios Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -949,20179,"PER","METT",2016,"For storage only",13,"Cordillera de Colan","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -896,20180,"PER","METT",2016,"For storage only",13,"Puquio Santa Rosa","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -895,20181,"PER","METT",2016,"For storage only",13,"Pui Pui","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -897,20182,"PER","METT",2016,"For storage only",13,"San Matias San Carlos","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -894,20184,"PER","METT",2016,"For storage only",13,"Pagaibamba","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -953,20186,"PER","METT",2016,"For storage only",13,"Megantoni","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -915,20187,"PER","METT",2016,"For storage only",13,"Laquipampa","Refugio de Vida Sivestre","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28259,20187,"PER","METT",2013,"For storage only",28,"Laquipampa","Refugio de Vida Sivestre","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15270,20224,"BLZ","PIP Site Consolidation",2000,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15267,20224,"BLZ","PIP Site Consolidation",1998,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15266,20224,"BLZ","PIP Site Consolidation",1997,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15263,20224,"BLZ","METT",2013,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15264,20224,"BLZ","PIP Site Consolidation",1993,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15262,20224,"BLZ","METT",2010,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15268,20224,"BLZ","PIP Site Consolidation",1999,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15265,20224,"BLZ","PIP Site Consolidation",1996,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15269,20224,"BLZ","PIP Site Consolidation",2001,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15261,20224,"BLZ","Belize MEE",2009,"For storage only",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15293,20225,"BLZ","METT",2010,"For storage only",29,"St. Herman's Blue National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15291,20225,"BLZ","Belize MEE",2006,"For storage only",29,"St. Herman's Blue National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15294,20225,"BLZ","METT",2013,"For storage only",29,"St. Herman's Blue National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15292,20225,"BLZ","Belize MEE",2009,"For storage only",29,"St. Herman's Blue National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15279,20226,"BLZ","Belize MEE",2009,"For storage only",29,"Shipstern Nature Reserve Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15281,20226,"BLZ","METT",0,"For storage only",29,"Shipstern Nature Reserve Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15280,20226,"BLZ","METT",2013,"For storage only",29,"Shipstern Nature Reserve Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15166,20230,"BLZ","Belize MEE",2009,"For storage only",29,"Chiquibul National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15164,20230,"BLZ","Belize MEE",2006,"For storage only",29,"Chiquibul National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -14831,20264,"GNQ","METT",0,"For storage only",28,"Pico de Basilé","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14830,20267,"GNQ","RAPPAM",2010,"For storage only",28,"Monte Alén","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14828,20267,"GNQ","METT",0,"For storage only",28,"Monte Alén","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14829,20267,"GNQ","Africa Rainforest Study",2001,"For storage only",28,"Monte Alén","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20845,20273,"MDG","IEG",2003,"For storage only",34,"Zombitse-Vohibasia","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20828,20287,"MDG","IEG",2011,"For storage only",34,"Ranomafana","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -9577,20295,"MOZ","RAPPAM",2006,"For storage only",21,"Limpopo","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9579,20295,"MOZ","METT",2015,"For storage only",21,"Limpopo","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9578,20295,"MOZ","METT",2014,"For storage only",21,"Limpopo","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -9580,20295,"MOZ","METT",2016,"For storage only",21,"Limpopo","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English",FALSE -15077,20299,"NGA","Africa Rainforest Study",2001,"For storage only",28,"Cross River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11151,20324,"COD","METT",2010,"For storage only",28,"Bili-Uere","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11150,20324,"COD","RAPPAM",2010,"For storage only",28,"Bili-Uere","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11154,20337,"COD","METT",2010,"For storage only",28,"Bushimaie","Hunting Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11155,20337,"COD","RAPPAM",2010,"For storage only",28,"Bushimaie","Hunting Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14282,20341,"ZWE","Birdlife IBA",2001,"For storage only",28,"Chirinda","State Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21015,20378,"IDN","METT",2015,"For storage only",35,"Gunung Palung","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -12042,20388,"MRT","Birdlife IBA",2001,"For storage only",28,"Banc d'Arguin National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12043,20388,"MRT","WHA Outlook Report",2014,"For storage only",28,"Banc d'Arguin National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14268,20399,"ZMB;ZWE","WHA Outlook Report",2014,"For storage only",28,"Mosi-oa-Tunya / Victoria Falls","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20941,20419,"IDN","METT",2015,"For storage only",35,"Wai Wuul","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -117,20445,"BTN","Bhutan METT+",2016,"For storage only",4,"Phrumsengla","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English",FALSE -28044,20445,"BTN","METT",2003,"For storage only",28,"Phrumsengla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12648,20678,"ROU","RAPPAM",2006,"For storage only",28,"Bucegi","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12649,20678,"ROU","METT",2009,"For storage only",28,"Bucegi","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12650,20678,"ROU","METT",2012,"For storage only",28,"Bucegi","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28217,20679,"ARM","METT",2014,"For storage only",28,"Shikahogh","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28245,20679,"ARM","METT",2009,"For storage only",28,"Shikahogh","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10649,20679,"ARM","METT",2012,"For storage only",28,"Shikahogh","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10648,20679,"ARM","METT",2005,"For storage only",28,"Shikahogh","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10727,20680,"AZE","METT",2012,"For storage only",28,"Ilisu State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12793,20682,"RUS","RAPPAM",2001,"For storage only",28,"Denezhkin Kamen","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13964,20683,"UZB","METT",2006,"For storage only",28,"Surkhanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13965,20683,"UZB","METT",2007,"For storage only",28,"Surkhanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12763,20684,"RUS","METT",2003,"For storage only",28,"Bryansky Les","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12765,20684,"RUS","RAPPAM",2001,"For storage only",28,"Bryansky Les","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12764,20684,"RUS","METT",2005,"For storage only",28,"Bryansky Les","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13057,20686,"RUS","RAPPAM",2001,"For storage only",28,"Yuzhno-Uralsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13149,20695,"SRB","METT",2012,"For storage only",28,"Dolina Pcinje","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9381,20700,"HRV","METT",2014,"For storage only",19,"Biokovo","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9400,20700,"HRV","METT",2016,"For storage only",19,"Biokovo","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9362,20700,"HRV","METT",2012,"For storage only",19,"Biokovo","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -13164,20701,"SRB","METT",2009,"For storage only",28,"Ovcarsko-Kablarska klisura","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13175,20701,"SRB","METT",2012,"For storage only",28,"Ovcarsko-Kablarska klisura","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13155,20701,"SRB","RAPPAM",2009,"For storage only",28,"Ovcarsko-Kablarska klisura","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13163,20704,"SRB","METT",2009,"For storage only",28,"Veliko ratno ostrvo","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13184,20704,"SRB","METT",2012,"For storage only",28,"Veliko ratno ostrvo","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11722,20721,"ITA","MPA MEE",2009,"For storage only",28,"Area naturale marina protetta Secche di Tor Paterno","Natural Marine Reserve and Natural Protected Marine Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -855,20722,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"For storage only",11,"Waddensea NLP (Hamburg)","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -20919,20931,"IDN","METT",2015,"For storage only",35,"Hutan Pinus/ Janthoi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20928,20971,"IDN","METT",2015,"For storage only",35,"Rimbo Panti","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -838,20978,"TGO","METT",2013,"For storage only",10,"Abdoulaye","Faunal reserve","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French",FALSE -839,20978,"TGO","METT",2017,"For storage only",10,"Abdoulaye","Faunal reserve","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French",FALSE -12615,20987,"PRY","METT",2010,"For storage only",28,"Ñacunday","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12642,20988,"PRY","Birdlife IBA",2011,"For storage only",28,"Itabó","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12628,20989,"PRY","Birdlife IBA",2011,"For storage only",28,"Limoy","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12636,20991,"PRY","METT",2005,"For storage only",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12635,20991,"PRY","PIP Site Consolidation",2000,"For storage only",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12634,20991,"PRY","PIP Site Consolidation",2001,"For storage only",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12629,20991,"PRY","PIP Site Consolidation",1992,"For storage only",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12630,20991,"PRY","PIP Site Consolidation",1996,"For storage only",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12633,20991,"PRY","PIP Site Consolidation",1999,"For storage only",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12631,20991,"PRY","PIP Site Consolidation",1997,"For storage only",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12632,20991,"PRY","PIP Site Consolidation",1998,"For storage only",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12640,21003,"PRY","Birdlife IBA",2011,"For storage only",28,"San Rafael","Managed Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21388,21149,"ZAF","METT",2013,"For storage only",28,"Kalkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21386,21149,"ZAF","METT",2011,"For storage only",28,"Kalkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21387,21149,"ZAF","METT",2012,"For storage only",28,"Kalkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21385,21149,"ZAF","METT",2010,"For storage only",28,"Kalkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21710,21151,"ZAF","METT",2012,"For storage only",28,"Rustfontein Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21709,21151,"ZAF","METT",2011,"For storage only",28,"Rustfontein Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21708,21151,"ZAF","METT",2010,"For storage only",28,"Rustfontein Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21711,21151,"ZAF","METT",2013,"For storage only",28,"Rustfontein Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21564,21154,"ZAF","METT",2012,"For storage only",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21559,21154,"ZAF","RAPPAM",2001,"For storage only",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21563,21154,"ZAF","METT",2011,"For storage only",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21558,21154,"ZAF","METT",2010,"For storage only",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21565,21154,"ZAF","METT",2013,"For storage only",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21116,21158,"ZAF","METT",2011,"For storage only",28,"Alice Glöckner Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21118,21158,"ZAF","METT",2013,"For storage only",28,"Alice Glöckner Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21117,21158,"ZAF","METT",2012,"For storage only",28,"Alice Glöckner Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21508,21161,"ZAF","METT",2012,"For storage only",28,"Marievale Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21507,21161,"ZAF","METT",2011,"For storage only",28,"Marievale Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21509,21161,"ZAF","METT",2013,"For storage only",28,"Marievale Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -39,21226,"ARG","METT",2009,"For storage only",3,"Cabo Vírgenes","Provincial Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -13893,22622,"USA","USA SOP",2004,"For storage only",28,"Fort Necessity","National Battlefield","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11547,23177,"DZA","Birdlife IBA",2001,"For storage only",28,"Parc Culturel de l'Ahagghar (Tamanrasset)","Cultural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14843,23306,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Cusuco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14844,23308,"HND","PROARCA/CAPAS",2000,"For storage only",28,"El Armado","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15330,23405,"AUS","NSW SOP",2007,"For storage only",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15329,23405,"AUS","NSW SOP",2005,"For storage only",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15332,23405,"AUS","NSW SOP",2013,"For storage only",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15331,23405,"AUS","NSW SOP",2010,"For storage only",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15333,23405,"AUS","NSW SOP",2004,"For storage only",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15403,23409,"AUS","NSW SOP",2013,"For storage only",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15401,23409,"AUS","NSW SOP",2007,"For storage only",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15400,23409,"AUS","NSW SOP",2005,"For storage only",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15404,23409,"AUS","NSW SOP",2004,"For storage only",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15402,23409,"AUS","NSW SOP",2010,"For storage only",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15418,23410,"AUS","NSW SOP",2004,"For storage only",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15417,23410,"AUS","NSW SOP",2013,"For storage only",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15415,23410,"AUS","NSW SOP",2007,"For storage only",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15416,23410,"AUS","NSW SOP",2010,"For storage only",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15414,23410,"AUS","NSW SOP",2005,"For storage only",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15430,23411,"AUS","NSW SOP",2005,"For storage only",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15433,23411,"AUS","NSW SOP",2013,"For storage only",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15434,23411,"AUS","NSW SOP",2004,"For storage only",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15432,23411,"AUS","NSW SOP",2010,"For storage only",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15431,23411,"AUS","NSW SOP",2007,"For storage only",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15468,23414,"AUS","NSW SOP",2010,"For storage only",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15469,23414,"AUS","NSW SOP",2004,"For storage only",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15466,23414,"AUS","NSW SOP",2005,"For storage only",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15470,23414,"AUS","NSW SOP",2013,"For storage only",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15467,23414,"AUS","NSW SOP",2007,"For storage only",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15584,23417,"AUS","NSW SOP",2005,"For storage only",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15588,23417,"AUS","NSW SOP",2013,"For storage only",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15585,23417,"AUS","NSW SOP",2007,"For storage only",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15586,23417,"AUS","NSW SOP",2010,"For storage only",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15587,23417,"AUS","NSW SOP",2004,"For storage only",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15599,23418,"AUS","NSW SOP",2007,"For storage only",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15600,23418,"AUS","NSW SOP",2010,"For storage only",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15602,23418,"AUS","NSW SOP",2004,"For storage only",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15598,23418,"AUS","NSW SOP",2005,"For storage only",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15601,23418,"AUS","NSW SOP",2013,"For storage only",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15639,23419,"AUS","NSW SOP",2010,"For storage only",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15640,23419,"AUS","NSW SOP",2013,"For storage only",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15641,23419,"AUS","NSW SOP",2004,"For storage only",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15637,23419,"AUS","NSW SOP",2005,"For storage only",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15638,23419,"AUS","NSW SOP",2007,"For storage only",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15672,23421,"AUS","NSW SOP",2004,"For storage only",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15668,23421,"AUS","NSW SOP",2005,"For storage only",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15670,23421,"AUS","NSW SOP",2010,"For storage only",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15671,23421,"AUS","NSW SOP",2013,"For storage only",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15669,23421,"AUS","NSW SOP",2007,"For storage only",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15690,23425,"AUS","NSW SOP",2007,"For storage only",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15693,23425,"AUS","NSW SOP",2004,"For storage only",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15692,23425,"AUS","NSW SOP",2013,"For storage only",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15691,23425,"AUS","NSW SOP",2010,"For storage only",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15689,23425,"AUS","NSW SOP",2005,"For storage only",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15783,23435,"AUS","NSW SOP",2007,"For storage only",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15782,23435,"AUS","NSW SOP",2005,"For storage only",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15786,23435,"AUS","NSW SOP",2004,"For storage only",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15784,23435,"AUS","NSW SOP",2010,"For storage only",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15785,23435,"AUS","NSW SOP",2013,"For storage only",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15803,23436,"AUS","NSW SOP",2004,"For storage only",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15802,23436,"AUS","NSW SOP",2013,"For storage only",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15801,23436,"AUS","NSW SOP",2010,"For storage only",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15799,23436,"AUS","NSW SOP",2005,"For storage only",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15800,23436,"AUS","NSW SOP",2007,"For storage only",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15833,23439,"AUS","NSW SOP",2010,"For storage only",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15831,23439,"AUS","NSW SOP",2005,"For storage only",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15832,23439,"AUS","NSW SOP",2007,"For storage only",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15835,23439,"AUS","NSW SOP",2013,"For storage only",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15834,23439,"AUS","NSW SOP",2004,"For storage only",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15838,23440,"AUS","NSW SOP",2010,"For storage only",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15839,23440,"AUS","NSW SOP",2004,"For storage only",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15837,23440,"AUS","NSW SOP",2007,"For storage only",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15836,23440,"AUS","NSW SOP",2005,"For storage only",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15840,23440,"AUS","NSW SOP",2013,"For storage only",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15851,23441,"AUS","NSW SOP",2010,"For storage only",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15850,23441,"AUS","NSW SOP",2007,"For storage only",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15852,23441,"AUS","NSW SOP",2013,"For storage only",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15849,23441,"AUS","NSW SOP",2005,"For storage only",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15853,23441,"AUS","NSW SOP",2004,"For storage only",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15864,23442,"AUS","NSW SOP",2004,"For storage only",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15861,23442,"AUS","NSW SOP",2007,"For storage only",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15863,23442,"AUS","NSW SOP",2013,"For storage only",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15860,23442,"AUS","NSW SOP",2005,"For storage only",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15862,23442,"AUS","NSW SOP",2010,"For storage only",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15887,23443,"AUS","NSW SOP",2013,"For storage only",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15885,23443,"AUS","NSW SOP",2010,"For storage only",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15886,23443,"AUS","NSW SOP",2004,"For storage only",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15883,23443,"AUS","NSW SOP",2005,"For storage only",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15884,23443,"AUS","NSW SOP",2007,"For storage only",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15888,23445,"AUS","NSW SOP",2004,"For storage only",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15890,23445,"AUS","NSW SOP",2007,"For storage only",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15895,23445,"AUS","NSW SOP",2010,"For storage only",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15889,23445,"AUS","NSW SOP",2005,"For storage only",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15891,23445,"AUS","NSW SOP",2013,"For storage only",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15914,23446,"AUS","NSW SOP",2005,"For storage only",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15918,23446,"AUS","NSW SOP",2004,"For storage only",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15916,23446,"AUS","NSW SOP",2010,"For storage only",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15915,23446,"AUS","NSW SOP",2007,"For storage only",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15917,23446,"AUS","NSW SOP",2013,"For storage only",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15979,23449,"AUS","NSW SOP",2013,"For storage only",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15977,23449,"AUS","NSW SOP",2007,"For storage only",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15978,23449,"AUS","NSW SOP",2010,"For storage only",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15980,23449,"AUS","NSW SOP",2004,"For storage only",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15976,23449,"AUS","NSW SOP",2005,"For storage only",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15991,23450,"AUS","NSW SOP",2007,"For storage only",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15993,23450,"AUS","NSW SOP",2013,"For storage only",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15992,23450,"AUS","NSW SOP",2010,"For storage only",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15994,23450,"AUS","NSW SOP",2004,"For storage only",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15990,23450,"AUS","NSW SOP",2005,"For storage only",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16003,23452,"AUS","NSW SOP",2013,"For storage only",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16000,23452,"AUS","NSW SOP",2005,"For storage only",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16002,23452,"AUS","NSW SOP",2010,"For storage only",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16001,23452,"AUS","NSW SOP",2007,"For storage only",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16004,23452,"AUS","NSW SOP",2004,"For storage only",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16007,23453,"AUS","NSW SOP",2010,"For storage only",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16009,23453,"AUS","NSW SOP",2004,"For storage only",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16008,23453,"AUS","NSW SOP",2013,"For storage only",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16006,23453,"AUS","NSW SOP",2007,"For storage only",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16005,23453,"AUS","NSW SOP",2005,"For storage only",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16023,23456,"AUS","NSW SOP",2013,"For storage only",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16020,23456,"AUS","NSW SOP",2005,"For storage only",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16024,23456,"AUS","NSW SOP",2004,"For storage only",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16022,23456,"AUS","NSW SOP",2010,"For storage only",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16021,23456,"AUS","NSW SOP",2007,"For storage only",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16027,23457,"AUS","NSW SOP",2010,"For storage only",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16029,23457,"AUS","NSW SOP",2004,"For storage only",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16025,23457,"AUS","NSW SOP",2005,"For storage only",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16026,23457,"AUS","NSW SOP",2007,"For storage only",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16028,23457,"AUS","NSW SOP",2013,"For storage only",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16072,23461,"AUS","NSW SOP",2005,"For storage only",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16074,23461,"AUS","NSW SOP",2010,"For storage only",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16075,23461,"AUS","NSW SOP",2013,"For storage only",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16073,23461,"AUS","NSW SOP",2007,"For storage only",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16083,23461,"AUS","NSW SOP",2004,"For storage only",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16184,23467,"AUS","NSW SOP",2004,"For storage only",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16185,23467,"AUS","NSW SOP",2013,"For storage only",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16183,23467,"AUS","NSW SOP",2010,"For storage only",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16181,23467,"AUS","NSW SOP",2005,"For storage only",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16182,23467,"AUS","NSW SOP",2007,"For storage only",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16193,23468,"AUS","NSW SOP",2004,"For storage only",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16186,23468,"AUS","NSW SOP",2005,"For storage only",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16187,23468,"AUS","NSW SOP",2007,"For storage only",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16189,23468,"AUS","NSW SOP",2013,"For storage only",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16188,23468,"AUS","NSW SOP",2010,"For storage only",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16246,23471,"AUS","NSW SOP",2010,"For storage only",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16245,23471,"AUS","NSW SOP",2007,"For storage only",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16247,23471,"AUS","NSW SOP",2013,"For storage only",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16244,23471,"AUS","NSW SOP",2005,"For storage only",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16248,23471,"AUS","NSW SOP",2004,"For storage only",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16306,23473,"AUS","NSW SOP",2007,"For storage only",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16308,23473,"AUS","NSW SOP",2013,"For storage only",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16307,23473,"AUS","NSW SOP",2010,"For storage only",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16305,23473,"AUS","NSW SOP",2005,"For storage only",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16309,23473,"AUS","NSW SOP",2004,"For storage only",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16312,23474,"AUS","NSW SOP",2007,"For storage only",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16311,23474,"AUS","NSW SOP",2005,"For storage only",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16315,23474,"AUS","NSW SOP",2004,"For storage only",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16313,23474,"AUS","NSW SOP",2010,"For storage only",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16314,23474,"AUS","NSW SOP",2013,"For storage only",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16446,23481,"AUS","NSW SOP",2013,"For storage only",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16445,23481,"AUS","NSW SOP",2010,"For storage only",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16444,23481,"AUS","NSW SOP",2007,"For storage only",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16443,23481,"AUS","NSW SOP",2005,"For storage only",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16447,23481,"AUS","NSW SOP",2004,"For storage only",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16453,23482,"AUS","NSW SOP",2004,"For storage only",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16450,23482,"AUS","NSW SOP",2010,"For storage only",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16449,23482,"AUS","NSW SOP",2007,"For storage only",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16448,23482,"AUS","NSW SOP",2005,"For storage only",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16451,23482,"AUS","NSW SOP",2013,"For storage only",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16469,23484,"AUS","NSW SOP",2004,"For storage only",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16468,23484,"AUS","NSW SOP",2013,"For storage only",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16470,23484,"AUS","NSW SOP",2010,"For storage only",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16466,23484,"AUS","NSW SOP",2005,"For storage only",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16467,23484,"AUS","NSW SOP",2007,"For storage only",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16513,23485,"AUS","NSW SOP",2013,"For storage only",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16511,23485,"AUS","NSW SOP",2007,"For storage only",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16510,23485,"AUS","NSW SOP",2005,"For storage only",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16514,23485,"AUS","NSW SOP",2004,"For storage only",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16512,23485,"AUS","NSW SOP",2010,"For storage only",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16682,23489,"AUS","NSW SOP",2010,"For storage only",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16681,23489,"AUS","NSW SOP",2007,"For storage only",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16683,23489,"AUS","NSW SOP",2013,"For storage only",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16684,23489,"AUS","NSW SOP",2004,"For storage only",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16680,23489,"AUS","NSW SOP",2005,"For storage only",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16708,23492,"AUS","NSW SOP",2005,"For storage only",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16709,23492,"AUS","NSW SOP",2007,"For storage only",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16711,23492,"AUS","NSW SOP",2013,"For storage only",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16712,23492,"AUS","NSW SOP",2004,"For storage only",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16710,23492,"AUS","NSW SOP",2010,"For storage only",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16839,23499,"AUS","NSW SOP",2010,"For storage only",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16838,23499,"AUS","NSW SOP",2007,"For storage only",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16837,23499,"AUS","NSW SOP",2005,"For storage only",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16840,23499,"AUS","NSW SOP",2013,"For storage only",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16841,23499,"AUS","NSW SOP",2004,"For storage only",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16880,23501,"AUS","NSW SOP",2013,"For storage only",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16878,23501,"AUS","NSW SOP",2005,"For storage only",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16882,23501,"AUS","NSW SOP",2004,"For storage only",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16881,23501,"AUS","NSW SOP",2010,"For storage only",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16879,23501,"AUS","NSW SOP",2007,"For storage only",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16897,23502,"AUS","NSW SOP",2010,"For storage only",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16895,23502,"AUS","NSW SOP",2005,"For storage only",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16899,23502,"AUS","NSW SOP",2004,"For storage only",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16896,23502,"AUS","NSW SOP",2007,"For storage only",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16898,23502,"AUS","NSW SOP",2013,"For storage only",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16930,23506,"AUS","NSW SOP",2010,"For storage only",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16928,23506,"AUS","NSW SOP",2005,"For storage only",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16932,23506,"AUS","NSW SOP",2004,"For storage only",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16931,23506,"AUS","NSW SOP",2013,"For storage only",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16929,23506,"AUS","NSW SOP",2007,"For storage only",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16944,23507,"AUS","NSW SOP",2013,"For storage only",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16942,23507,"AUS","NSW SOP",2007,"For storage only",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16943,23507,"AUS","NSW SOP",2010,"For storage only",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16941,23507,"AUS","NSW SOP",2005,"For storage only",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16945,23507,"AUS","NSW SOP",2004,"For storage only",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16969,23508,"AUS","NSW SOP",2007,"For storage only",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16970,23508,"AUS","NSW SOP",2010,"For storage only",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16972,23508,"AUS","NSW SOP",2004,"For storage only",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16968,23508,"AUS","NSW SOP",2005,"For storage only",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16971,23508,"AUS","NSW SOP",2013,"For storage only",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17140,23514,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17141,23514,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17142,23514,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17143,23514,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17163,23515,"AUS","NSW SOP",2013,"For storage only",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17164,23515,"AUS","NSW SOP",2004,"For storage only",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17161,23515,"AUS","NSW SOP",2007,"For storage only",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17160,23515,"AUS","NSW SOP",2005,"For storage only",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17162,23515,"AUS","NSW SOP",2010,"For storage only",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17205,23518,"AUS","NSW SOP",2004,"For storage only",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17206,23518,"AUS","NSW SOP",2013,"For storage only",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17204,23518,"AUS","NSW SOP",2010,"For storage only",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17203,23518,"AUS","NSW SOP",2007,"For storage only",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17202,23518,"AUS","NSW SOP",2005,"For storage only",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17293,23521,"AUS","NSW SOP",2013,"For storage only",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17292,23521,"AUS","NSW SOP",2010,"For storage only",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17294,23521,"AUS","NSW SOP",2004,"For storage only",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17290,23521,"AUS","NSW SOP",2005,"For storage only",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17291,23521,"AUS","NSW SOP",2007,"For storage only",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17372,23524,"AUS","NSW SOP",2013,"For storage only",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17373,23524,"AUS","NSW SOP",2004,"For storage only",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17369,23524,"AUS","NSW SOP",2005,"For storage only",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17371,23524,"AUS","NSW SOP",2010,"For storage only",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17370,23524,"AUS","NSW SOP",2007,"For storage only",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17411,23525,"AUS","NSW SOP",2010,"For storage only",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17409,23525,"AUS","NSW SOP",2005,"For storage only",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17413,23525,"AUS","NSW SOP",2004,"For storage only",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17412,23525,"AUS","NSW SOP",2013,"For storage only",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17410,23525,"AUS","NSW SOP",2007,"For storage only",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17453,23526,"AUS","NSW SOP",2013,"For storage only",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17450,23526,"AUS","NSW SOP",2007,"For storage only",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17452,23526,"AUS","NSW SOP",2004,"For storage only",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17451,23526,"AUS","NSW SOP",2010,"For storage only",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17449,23526,"AUS","NSW SOP",2005,"For storage only",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17508,23530,"AUS","NSW SOP",2005,"For storage only",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17509,23530,"AUS","NSW SOP",2007,"For storage only",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17512,23530,"AUS","NSW SOP",2004,"For storage only",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17511,23530,"AUS","NSW SOP",2013,"For storage only",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17510,23530,"AUS","NSW SOP",2010,"For storage only",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17520,23531,"AUS","NSW SOP",2005,"For storage only",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17522,23531,"AUS","NSW SOP",2010,"For storage only",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17521,23531,"AUS","NSW SOP",2007,"For storage only",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17524,23531,"AUS","NSW SOP",2004,"For storage only",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17523,23531,"AUS","NSW SOP",2013,"For storage only",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17584,23532,"AUS","NSW SOP",2010,"For storage only",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17586,23532,"AUS","NSW SOP",2004,"For storage only",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17582,23532,"AUS","NSW SOP",2005,"For storage only",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17583,23532,"AUS","NSW SOP",2007,"For storage only",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17585,23532,"AUS","NSW SOP",2013,"For storage only",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17590,23533,"AUS","NSW SOP",2005,"For storage only",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17591,23533,"AUS","NSW SOP",2007,"For storage only",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17592,23533,"AUS","NSW SOP",2010,"For storage only",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17593,23533,"AUS","NSW SOP",2013,"For storage only",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17595,23533,"AUS","NSW SOP",2004,"For storage only",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17644,23537,"AUS","NSW SOP",2007,"For storage only",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17647,23537,"AUS","NSW SOP",2004,"For storage only",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17643,23537,"AUS","NSW SOP",2005,"For storage only",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17646,23537,"AUS","NSW SOP",2013,"For storage only",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17645,23537,"AUS","NSW SOP",2010,"For storage only",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17693,23539,"AUS","NSW SOP",2005,"For storage only",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17697,23539,"AUS","NSW SOP",2004,"For storage only",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17694,23539,"AUS","NSW SOP",2007,"For storage only",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17695,23539,"AUS","NSW SOP",2010,"For storage only",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17696,23539,"AUS","NSW SOP",2013,"For storage only",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17906,23546,"AUS","NSW SOP",2005,"For storage only",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17910,23546,"AUS","NSW SOP",2004,"For storage only",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17909,23546,"AUS","NSW SOP",2013,"For storage only",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17908,23546,"AUS","NSW SOP",2010,"For storage only",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17907,23546,"AUS","NSW SOP",2007,"For storage only",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17920,23547,"AUS","NSW SOP",2004,"For storage only",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17919,23547,"AUS","NSW SOP",2010,"For storage only",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17918,23547,"AUS","NSW SOP",2013,"For storage only",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17916,23547,"AUS","NSW SOP",2005,"For storage only",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17917,23547,"AUS","NSW SOP",2007,"For storage only",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17928,23549,"AUS","NSW SOP",2013,"For storage only",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17929,23549,"AUS","NSW SOP",2004,"For storage only",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17927,23549,"AUS","NSW SOP",2010,"For storage only",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17925,23549,"AUS","NSW SOP",2005,"For storage only",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17926,23549,"AUS","NSW SOP",2007,"For storage only",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17934,23550,"AUS","NSW SOP",2004,"For storage only",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17932,23550,"AUS","NSW SOP",2007,"For storage only",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17931,23550,"AUS","NSW SOP",2005,"For storage only",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17935,23550,"AUS","NSW SOP",2013,"For storage only",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17933,23550,"AUS","NSW SOP",2010,"For storage only",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17960,23551,"AUS","NSW SOP",2013,"For storage only",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17957,23551,"AUS","NSW SOP",2005,"For storage only",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17961,23551,"AUS","NSW SOP",2004,"For storage only",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17958,23551,"AUS","NSW SOP",2007,"For storage only",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17959,23551,"AUS","NSW SOP",2010,"For storage only",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18045,23557,"AUS","NSW SOP",2004,"For storage only",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18041,23557,"AUS","NSW SOP",2005,"For storage only",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18043,23557,"AUS","NSW SOP",2010,"For storage only",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18042,23557,"AUS","NSW SOP",2007,"For storage only",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18044,23557,"AUS","NSW SOP",2013,"For storage only",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18156,23564,"AUS","NSW SOP",2004,"For storage only",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18154,23564,"AUS","NSW SOP",2010,"For storage only",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18152,23564,"AUS","NSW SOP",2005,"For storage only",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18155,23564,"AUS","NSW SOP",2013,"For storage only",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18153,23564,"AUS","NSW SOP",2007,"For storage only",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18160,23565,"AUS","NSW SOP",2007,"For storage only",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18161,23565,"AUS","NSW SOP",2004,"For storage only",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18163,23565,"AUS","NSW SOP",2013,"For storage only",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18159,23565,"AUS","NSW SOP",2005,"For storage only",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18162,23565,"AUS","NSW SOP",2010,"For storage only",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18189,23569,"AUS","NSW SOP",2010,"For storage only",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18188,23569,"AUS","NSW SOP",2007,"For storage only",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18190,23569,"AUS","NSW SOP",2013,"For storage only",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18187,23569,"AUS","NSW SOP",2005,"For storage only",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18191,23569,"AUS","NSW SOP",2004,"For storage only",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18231,23573,"AUS","NSW SOP",2013,"For storage only",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18230,23573,"AUS","NSW SOP",2010,"For storage only",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18232,23573,"AUS","NSW SOP",2004,"For storage only",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18229,23573,"AUS","NSW SOP",2007,"For storage only",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18228,23573,"AUS","NSW SOP",2005,"For storage only",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18236,23574,"AUS","NSW SOP",2005,"For storage only",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18240,23574,"AUS","NSW SOP",2004,"For storage only",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18237,23574,"AUS","NSW SOP",2007,"For storage only",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18238,23574,"AUS","NSW SOP",2010,"For storage only",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18239,23574,"AUS","NSW SOP",2013,"For storage only",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18268,23577,"AUS","NSW SOP",2004,"For storage only",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18264,23577,"AUS","NSW SOP",2005,"For storage only",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18266,23577,"AUS","NSW SOP",2010,"For storage only",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18265,23577,"AUS","NSW SOP",2007,"For storage only",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18267,23577,"AUS","NSW SOP",2013,"For storage only",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18288,23579,"AUS","NSW SOP",2004,"For storage only",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18285,23579,"AUS","NSW SOP",2007,"For storage only",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18286,23579,"AUS","NSW SOP",2010,"For storage only",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18284,23579,"AUS","NSW SOP",2005,"For storage only",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18287,23579,"AUS","NSW SOP",2013,"For storage only",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18413,23581,"AUS","NSW SOP",2010,"For storage only",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18415,23581,"AUS","NSW SOP",2004,"For storage only",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18414,23581,"AUS","NSW SOP",2013,"For storage only",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18411,23581,"AUS","NSW SOP",2005,"For storage only",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18412,23581,"AUS","NSW SOP",2007,"For storage only",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18479,23582,"AUS","NSW SOP",2013,"For storage only",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18480,23582,"AUS","NSW SOP",2004,"For storage only",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18477,23582,"AUS","NSW SOP",2007,"For storage only",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18478,23582,"AUS","NSW SOP",2010,"For storage only",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18476,23582,"AUS","NSW SOP",2005,"For storage only",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18498,23585,"AUS","NSW SOP",2005,"For storage only",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18499,23585,"AUS","NSW SOP",2007,"For storage only",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18501,23585,"AUS","NSW SOP",2004,"For storage only",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18500,23585,"AUS","NSW SOP",2010,"For storage only",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18502,23585,"AUS","NSW SOP",2013,"For storage only",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18604,23588,"AUS","NSW SOP",2010,"For storage only",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18606,23588,"AUS","NSW SOP",2004,"For storage only",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18605,23588,"AUS","NSW SOP",2013,"For storage only",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18602,23588,"AUS","NSW SOP",2005,"For storage only",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18603,23588,"AUS","NSW SOP",2007,"For storage only",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18660,23590,"AUS","NSW SOP",2004,"For storage only",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18658,23590,"AUS","NSW SOP",2010,"For storage only",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18657,23590,"AUS","NSW SOP",2007,"For storage only",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18659,23590,"AUS","NSW SOP",2013,"For storage only",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18656,23590,"AUS","NSW SOP",2005,"For storage only",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18646,23591,"AUS","NSW SOP",2005,"For storage only",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18650,23591,"AUS","NSW SOP",2004,"For storage only",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18647,23591,"AUS","NSW SOP",2007,"For storage only",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18649,23591,"AUS","NSW SOP",2013,"For storage only",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18648,23591,"AUS","NSW SOP",2010,"For storage only",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18651,23592,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18652,23592,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18653,23592,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18654,23592,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18747,23596,"AUS","NSW SOP",2004,"For storage only",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18741,23596,"AUS","NSW SOP",2010,"For storage only",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18742,23596,"AUS","NSW SOP",2013,"For storage only",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18740,23596,"AUS","NSW SOP",2007,"For storage only",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18739,23596,"AUS","NSW SOP",2005,"For storage only",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18761,23599,"AUS","NSW SOP",2010,"For storage only",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18759,23599,"AUS","NSW SOP",2005,"For storage only",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18763,23599,"AUS","NSW SOP",2013,"For storage only",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18760,23599,"AUS","NSW SOP",2007,"For storage only",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18762,23599,"AUS","NSW SOP",2004,"For storage only",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18768,23600,"AUS","NSW SOP",2004,"For storage only",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18764,23600,"AUS","NSW SOP",2005,"For storage only",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18765,23600,"AUS","NSW SOP",2007,"For storage only",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18766,23600,"AUS","NSW SOP",2010,"For storage only",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18767,23600,"AUS","NSW SOP",2013,"For storage only",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18860,23606,"AUS","NSW SOP",2004,"For storage only",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18855,23606,"AUS","NSW SOP",2013,"For storage only",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18854,23606,"AUS","NSW SOP",2010,"For storage only",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18852,23606,"AUS","NSW SOP",2005,"For storage only",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18853,23606,"AUS","NSW SOP",2007,"For storage only",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18953,23612,"AUS","NSW SOP",2005,"For storage only",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18956,23612,"AUS","NSW SOP",2013,"For storage only",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18954,23612,"AUS","NSW SOP",2007,"For storage only",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18955,23612,"AUS","NSW SOP",2010,"For storage only",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18957,23612,"AUS","NSW SOP",2004,"For storage only",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19013,23614,"AUS","NSW SOP",2005,"For storage only",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19015,23614,"AUS","NSW SOP",2010,"For storage only",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19012,23614,"AUS","NSW SOP",2004,"For storage only",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19016,23614,"AUS","NSW SOP",2013,"For storage only",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19014,23614,"AUS","NSW SOP",2007,"For storage only",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19020,23615,"AUS","NSW SOP",2013,"For storage only",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19018,23615,"AUS","NSW SOP",2007,"For storage only",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19021,23615,"AUS","NSW SOP",2004,"For storage only",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19019,23615,"AUS","NSW SOP",2010,"For storage only",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19017,23615,"AUS","NSW SOP",2005,"For storage only",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19022,23616,"AUS","NSW SOP",2005,"For storage only",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19023,23616,"AUS","NSW SOP",2007,"For storage only",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19025,23616,"AUS","NSW SOP",2013,"For storage only",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19026,23616,"AUS","NSW SOP",2004,"For storage only",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19024,23616,"AUS","NSW SOP",2010,"For storage only",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19033,23618,"AUS","NSW SOP",2004,"For storage only",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19029,23618,"AUS","NSW SOP",2005,"For storage only",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19032,23618,"AUS","NSW SOP",2013,"For storage only",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19030,23618,"AUS","NSW SOP",2007,"For storage only",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19031,23618,"AUS","NSW SOP",2010,"For storage only",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19071,23620,"AUS","NSW SOP",2013,"For storage only",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19069,23620,"AUS","NSW SOP",2007,"For storage only",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19068,23620,"AUS","NSW SOP",2005,"For storage only",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19072,23620,"AUS","NSW SOP",2004,"For storage only",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19070,23620,"AUS","NSW SOP",2010,"For storage only",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19085,23623,"AUS","NSW SOP",2005,"For storage only",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19086,23623,"AUS","NSW SOP",2007,"For storage only",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19087,23623,"AUS","NSW SOP",2010,"For storage only",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19088,23623,"AUS","NSW SOP",2013,"For storage only",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19089,23623,"AUS","NSW SOP",2004,"For storage only",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19104,23624,"AUS","NSW SOP",2004,"For storage only",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19101,23624,"AUS","NSW SOP",2007,"For storage only",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19102,23624,"AUS","NSW SOP",2010,"For storage only",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19100,23624,"AUS","NSW SOP",2005,"For storage only",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19103,23624,"AUS","NSW SOP",2013,"For storage only",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19127,23628,"AUS","NSW SOP",2004,"For storage only",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19124,23628,"AUS","NSW SOP",2007,"For storage only",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19125,23628,"AUS","NSW SOP",2010,"For storage only",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19126,23628,"AUS","NSW SOP",2013,"For storage only",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19123,23628,"AUS","NSW SOP",2005,"For storage only",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19197,23635,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19201,23635,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19199,23635,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19198,23635,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19204,23636,"AUS","NSW SOP",2010,"For storage only",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19203,23636,"AUS","NSW SOP",2007,"For storage only",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19206,23636,"AUS","NSW SOP",2004,"For storage only",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19205,23636,"AUS","NSW SOP",2013,"For storage only",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19202,23636,"AUS","NSW SOP",2005,"For storage only",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19209,23637,"AUS","NSW SOP",2004,"For storage only",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19211,23637,"AUS","NSW SOP",2013,"For storage only",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19207,23637,"AUS","NSW SOP",2005,"For storage only",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19208,23637,"AUS","NSW SOP",2007,"For storage only",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19210,23637,"AUS","NSW SOP",2010,"For storage only",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19216,23640,"AUS","NSW SOP",2004,"For storage only",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19214,23640,"AUS","NSW SOP",2010,"For storage only",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19215,23640,"AUS","NSW SOP",2013,"For storage only",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19213,23640,"AUS","NSW SOP",2007,"For storage only",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19212,23640,"AUS","NSW SOP",2005,"For storage only",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19266,23644,"AUS","NSW SOP",2013,"For storage only",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19265,23644,"AUS","NSW SOP",2010,"For storage only",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19267,23644,"AUS","NSW SOP",2004,"For storage only",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19264,23644,"AUS","NSW SOP",2007,"For storage only",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19263,23644,"AUS","NSW SOP",2005,"For storage only",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19301,23645,"AUS","NSW SOP",2010,"For storage only",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19300,23645,"AUS","NSW SOP",2007,"For storage only",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19299,23645,"AUS","NSW SOP",2005,"For storage only",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19303,23645,"AUS","NSW SOP",2004,"For storage only",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19302,23645,"AUS","NSW SOP",2013,"For storage only",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19305,23646,"AUS","NSW SOP",2007,"For storage only",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19304,23646,"AUS","NSW SOP",2005,"For storage only",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19308,23646,"AUS","NSW SOP",2004,"For storage only",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19307,23646,"AUS","NSW SOP",2013,"For storage only",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19306,23646,"AUS","NSW SOP",2010,"For storage only",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19336,23650,"AUS","NSW SOP",2013,"For storage only",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19334,23650,"AUS","NSW SOP",2005,"For storage only",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19337,23650,"AUS","NSW SOP",2010,"For storage only",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19338,23650,"AUS","NSW SOP",2004,"For storage only",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19335,23650,"AUS","NSW SOP",2007,"For storage only",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19340,23651,"AUS","NSW SOP",2007,"For storage only",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19339,23651,"AUS","NSW SOP",2005,"For storage only",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19342,23651,"AUS","NSW SOP",2013,"For storage only",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19341,23651,"AUS","NSW SOP",2010,"For storage only",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19343,23651,"AUS","NSW SOP",2004,"For storage only",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19362,23654,"AUS","NSW SOP",2004,"For storage only",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19361,23654,"AUS","NSW SOP",2010,"For storage only",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19359,23654,"AUS","NSW SOP",2005,"For storage only",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19363,23654,"AUS","NSW SOP",2013,"For storage only",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19360,23654,"AUS","NSW SOP",2007,"For storage only",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19387,23655,"AUS","NSW SOP",2013,"For storage only",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19385,23655,"AUS","NSW SOP",2010,"For storage only",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19386,23655,"AUS","NSW SOP",2004,"For storage only",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19384,23655,"AUS","NSW SOP",2007,"For storage only",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19383,23655,"AUS","NSW SOP",2005,"For storage only",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19480,23659,"AUS","NSW SOP",2004,"For storage only",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19478,23659,"AUS","NSW SOP",2010,"For storage only",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19479,23659,"AUS","NSW SOP",2013,"For storage only",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19477,23659,"AUS","NSW SOP",2007,"For storage only",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19476,23659,"AUS","NSW SOP",2005,"For storage only",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19493,23660,"AUS","NSW SOP",2005,"For storage only",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19495,23660,"AUS","NSW SOP",2010,"For storage only",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19497,23660,"AUS","NSW SOP",2004,"For storage only",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19496,23660,"AUS","NSW SOP",2013,"For storage only",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19494,23660,"AUS","NSW SOP",2007,"For storage only",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19541,23665,"AUS","NSW SOP",2007,"For storage only",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19543,23665,"AUS","NSW SOP",2013,"For storage only",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19540,23665,"AUS","NSW SOP",2005,"For storage only",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19544,23665,"AUS","NSW SOP",2004,"For storage only",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19542,23665,"AUS","NSW SOP",2010,"For storage only",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19545,23666,"AUS","NSW SOP",2005,"For storage only",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19548,23666,"AUS","NSW SOP",2013,"For storage only",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19547,23666,"AUS","NSW SOP",2010,"For storage only",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19546,23666,"AUS","NSW SOP",2007,"For storage only",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19549,23666,"AUS","NSW SOP",2004,"For storage only",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19559,23667,"AUS","NSW SOP",2013,"For storage only",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19557,23667,"AUS","NSW SOP",2007,"For storage only",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19556,23667,"AUS","NSW SOP",2005,"For storage only",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19560,23667,"AUS","NSW SOP",2004,"For storage only",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19558,23667,"AUS","NSW SOP",2010,"For storage only",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19607,23670,"AUS","NSW SOP",2010,"For storage only",28,"Towra Point","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19627,23671,"AUS","NSW SOP",2013,"For storage only",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19625,23671,"AUS","NSW SOP",2010,"For storage only",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19624,23671,"AUS","NSW SOP",2007,"For storage only",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19623,23671,"AUS","NSW SOP",2005,"For storage only",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19626,23671,"AUS","NSW SOP",2004,"For storage only",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19631,23672,"AUS","NSW SOP",2013,"For storage only",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19629,23672,"AUS","NSW SOP",2007,"For storage only",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19628,23672,"AUS","NSW SOP",2005,"For storage only",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19630,23672,"AUS","NSW SOP",2010,"For storage only",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19632,23672,"AUS","NSW SOP",2004,"For storage only",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19678,23676,"AUS","NSW SOP",2007,"For storage only",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19677,23676,"AUS","NSW SOP",2005,"For storage only",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19679,23676,"AUS","NSW SOP",2010,"For storage only",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19681,23676,"AUS","NSW SOP",2004,"For storage only",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19680,23676,"AUS","NSW SOP",2013,"For storage only",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19688,23677,"AUS","NSW SOP",2010,"For storage only",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19687,23677,"AUS","NSW SOP",2007,"For storage only",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19689,23677,"AUS","NSW SOP",2013,"For storage only",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19691,23677,"AUS","NSW SOP",2004,"For storage only",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19686,23677,"AUS","NSW SOP",2005,"For storage only",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19713,23678,"AUS","NSW SOP",2007,"For storage only",28,"Uralba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19714,23678,"AUS","NSW SOP",2013,"For storage only",28,"Uralba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19712,23678,"AUS","NSW SOP",2005,"For storage only",28,"Uralba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19715,23678,"AUS","NSW SOP",2004,"For storage only",28,"Uralba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19727,23679,"AUS","NSW SOP",2004,"For storage only",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19725,23679,"AUS","NSW SOP",2010,"For storage only",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19726,23679,"AUS","NSW SOP",2013,"For storage only",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19723,23679,"AUS","NSW SOP",2005,"For storage only",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19724,23679,"AUS","NSW SOP",2007,"For storage only",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19772,23682,"AUS","NSW SOP",2013,"For storage only",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19770,23682,"AUS","NSW SOP",2007,"For storage only",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19773,23682,"AUS","NSW SOP",2004,"For storage only",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19771,23682,"AUS","NSW SOP",2010,"For storage only",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19769,23682,"AUS","NSW SOP",2005,"For storage only",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19782,23683,"AUS","NSW SOP",2010,"For storage only",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19781,23683,"AUS","NSW SOP",2007,"For storage only",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19780,23683,"AUS","NSW SOP",2005,"For storage only",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19784,23683,"AUS","NSW SOP",2004,"For storage only",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19783,23683,"AUS","NSW SOP",2013,"For storage only",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19791,23684,"AUS","NSW SOP",2007,"For storage only",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19794,23684,"AUS","NSW SOP",2004,"For storage only",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19790,23684,"AUS","NSW SOP",2005,"For storage only",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19793,23684,"AUS","NSW SOP",2013,"For storage only",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19792,23684,"AUS","NSW SOP",2010,"For storage only",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19820,23685,"AUS","NSW SOP",2013,"For storage only",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19821,23685,"AUS","NSW SOP",2004,"For storage only",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19817,23685,"AUS","NSW SOP",2005,"For storage only",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19819,23685,"AUS","NSW SOP",2010,"For storage only",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19818,23685,"AUS","NSW SOP",2007,"For storage only",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19873,23690,"AUS","NSW SOP",2013,"For storage only",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19872,23690,"AUS","NSW SOP",2010,"For storage only",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19874,23690,"AUS","NSW SOP",2004,"For storage only",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19870,23690,"AUS","NSW SOP",2005,"For storage only",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19871,23690,"AUS","NSW SOP",2007,"For storage only",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19878,23691,"AUS","NSW SOP",2013,"For storage only",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19879,23691,"AUS","NSW SOP",2004,"For storage only",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19876,23691,"AUS","NSW SOP",2007,"For storage only",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19875,23691,"AUS","NSW SOP",2005,"For storage only",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19877,23691,"AUS","NSW SOP",2010,"For storage only",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19883,23692,"AUS","NSW SOP",2013,"For storage only",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19884,23692,"AUS","NSW SOP",2004,"For storage only",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19882,23692,"AUS","NSW SOP",2010,"For storage only",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19881,23692,"AUS","NSW SOP",2007,"For storage only",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19880,23692,"AUS","NSW SOP",2005,"For storage only",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19957,23696,"AUS","NSW SOP",2013,"For storage only",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19955,23696,"AUS","NSW SOP",2007,"For storage only",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19956,23696,"AUS","NSW SOP",2010,"For storage only",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19954,23696,"AUS","NSW SOP",2005,"For storage only",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19958,23696,"AUS","NSW SOP",2004,"For storage only",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20053,23702,"AUS","NSW SOP",2010,"For storage only",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20052,23702,"AUS","NSW SOP",2007,"For storage only",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20054,23702,"AUS","NSW SOP",2013,"For storage only",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20055,23702,"AUS","NSW SOP",2004,"For storage only",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20051,23702,"AUS","NSW SOP",2005,"For storage only",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20153,23704,"AUS","NSW SOP",2010,"For storage only",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20154,23704,"AUS","NSW SOP",2004,"For storage only",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20152,23704,"AUS","NSW SOP",2007,"For storage only",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20151,23704,"AUS","NSW SOP",2005,"For storage only",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20155,23704,"AUS","NSW SOP",2013,"For storage only",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20200,23706,"AUS","NSW SOP",2010,"For storage only",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20201,23706,"AUS","NSW SOP",2013,"For storage only",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20202,23706,"AUS","NSW SOP",2004,"For storage only",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20198,23706,"AUS","NSW SOP",2005,"For storage only",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20199,23706,"AUS","NSW SOP",2007,"For storage only",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20239,23708,"AUS","NSW SOP",2010,"For storage only",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20241,23708,"AUS","NSW SOP",2004,"For storage only",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20237,23708,"AUS","NSW SOP",2005,"For storage only",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20238,23708,"AUS","NSW SOP",2007,"For storage only",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20240,23708,"AUS","NSW SOP",2013,"For storage only",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15351,23792,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Alton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15350,23792,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Alton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15397,23798,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Auburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15398,23798,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Auburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15625,23810,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bendidee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15626,23810,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bendidee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15757,23823,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bladensburg","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15758,23823,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bladensburg","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16108,23835,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Burleigh Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16107,23835,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Burleigh Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16147,23837,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Burrum Coast","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16146,23837,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Burrum Coast","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16169,23841,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Byfield","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16168,23841,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Byfield","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16194,23844,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Camooweal Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16195,23844,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Camooweal Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16222,23846,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Cape Palmerston","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16223,23846,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Cape Palmerston","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16378,23855,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Coalstoun Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16379,23855,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Coalstoun Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16584,23883,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Crows Nest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16585,23883,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Crows Nest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16705,23892,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Deepwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16704,23892,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Deepwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16811,23899,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Dularcha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16812,23899,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Dularcha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16851,23903,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Ella Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16850,23903,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Ella Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16908,23909,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Fairlies Knob","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16907,23909,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Fairlies Knob","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16911,23910,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Ferntree Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16912,23910,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Ferntree Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16980,23914,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Freshwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16979,23914,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Freshwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17133,23924,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Goold Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17134,23924,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Goold Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17183,23928,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Great Basalt Wall","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17182,23928,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Great Basalt Wall","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17275,23936,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Hasties Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17274,23936,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Hasties Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17331,23944,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Holbourne Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17332,23944,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Holbourne Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17341,23946,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Hope Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17342,23946,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Hope Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17658,23975,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Kondalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17659,23975,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Kondalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17724,23976,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Kroombit Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17725,23976,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Kroombit Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17751,23979,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Kurrimine Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17752,23979,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Kurrimine Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18053,24000,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mapleton Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18054,24000,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mapleton Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18067,24002,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Maria Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18066,24002,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Maria Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18164,24018,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Millstream Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18165,24018,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Millstream Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18227,24025,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mooloolah River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18226,24025,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mooloolah River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18252,24026,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Moresby Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18253,24026,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Moresby Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18255,24027,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Moreton Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18254,24027,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Moreton Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18301,24029,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18302,24029,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18319,24033,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Chinghee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18320,24033,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Chinghee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18332,24034,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Colosseum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18331,24034,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Colosseum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18333,24035,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Cook","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18334,24035,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Cook","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18369,24042,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Hypipamee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18370,24042,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Hypipamee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18383,24043,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Jim Crow","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18384,24043,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Jim Crow","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18437,24049,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Pinbarren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18438,24049,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Pinbarren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18464,24051,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18463,24051,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18718,24062,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Nicoll Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18717,24062,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Nicoll Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18751,24160,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Noosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18752,24160,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Noosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18870,24175,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Palmerston Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18871,24175,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Palmerston Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18912,24179,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Peak Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18913,24179,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Peak Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18949,24189,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Pipeclay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18950,24189,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Pipeclay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19061,24196,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Ravensbourne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19062,24196,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Ravensbourne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19090,24197,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Reliance Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19091,24197,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Reliance Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19170,24214,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Sarabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19169,24214,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Sarabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19258,24226,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Smith Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19257,24226,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Smith Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19315,24229,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"St Helena Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19314,24229,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"St Helena Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19489,24247,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"The Palms","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19490,24247,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"The Palms","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19583,24257,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Topaz Road","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19584,24257,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Topaz Road","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19666,24261,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Turtle Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19665,24261,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Turtle Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19911,24271,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"West Hill","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19912,24271,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"West Hill","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20259,24281,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Yungaburra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20260,24281,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Yungaburra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15725,24299,"AUS","NSW SOP",2013,"For storage only",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15721,24299,"AUS","NSW SOP",2005,"For storage only",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15724,24299,"AUS","NSW SOP",2004,"For storage only",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15722,24299,"AUS","NSW SOP",2007,"For storage only",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15723,24299,"AUS","NSW SOP",2010,"For storage only",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17798,24372,"AUS","Birdlife IBA",2008,"For storage only",28,"Kati Thanda-Lake Eyre","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19195,24450,"AUS","NSW SOP",2013,"For storage only",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19194,24450,"AUS","NSW SOP",2010,"For storage only",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19192,24450,"AUS","NSW SOP",2005,"For storage only",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19196,24450,"AUS","NSW SOP",2004,"For storage only",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19193,24450,"AUS","NSW SOP",2007,"For storage only",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15392,24568,"AUS","Birdlife IBA",2008,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15391,24574,"AUS","Victorian SOP",2013,"For storage only",28,"Arthurs Seat","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15389,24574,"AUS","Victorian SOP",2005,"For storage only",28,"Arthurs Seat","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15390,24574,"AUS","Victorian SOP",2010,"For storage only",28,"Arthurs Seat","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15406,24576,"AUS","Victorian SOP",2010,"For storage only",28,"Avon","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15407,24576,"AUS","Victorian SOP",2013,"For storage only",28,"Avon","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15405,24576,"AUS","Victorian SOP",2005,"For storage only",28,"Avon","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15564,24580,"AUS","Victorian SOP",2010,"For storage only",28,"Baw Baw National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15563,24580,"AUS","Victorian SOP",2005,"For storage only",28,"Baw Baw National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15565,24580,"AUS","Victorian SOP",2013,"For storage only",28,"Baw Baw National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15744,24586,"AUS","Victorian SOP",2010,"For storage only",28,"Black Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15743,24586,"AUS","Victorian SOP",2005,"For storage only",28,"Black Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15745,24586,"AUS","Victorian SOP",2013,"For storage only",28,"Black Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16047,24602,"AUS","Victorian SOP",2010,"For storage only",28,"Bull Beef Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16048,24602,"AUS","Victorian SOP",2013,"For storage only",28,"Bull Beef Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16352,24617,"AUS","Victorian SOP",2005,"For storage only",28,"Churchill National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16353,24617,"AUS","Victorian SOP",2010,"For storage only",28,"Churchill National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16354,24617,"AUS","Victorian SOP",2013,"For storage only",28,"Churchill National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16519,24629,"AUS","Victorian SOP",2013,"For storage only",28,"Corner Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16518,24629,"AUS","Victorian SOP",2005,"For storage only",28,"Corner Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16517,24629,"AUS","Victorian SOP",2010,"For storage only",28,"Corner Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16672,24633,"AUS","Victorian SOP",2010,"For storage only",28,"Dandenong Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16673,24633,"AUS","Victorian SOP",2013,"For storage only",28,"Dandenong Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16671,24633,"AUS","Victorian SOP",2005,"For storage only",28,"Dandenong Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16869,24645,"AUS","Victorian SOP",2013,"For storage only",28,"Errinundra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16868,24645,"AUS","Victorian SOP",2010,"For storage only",28,"Errinundra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16867,24645,"AUS","Victorian SOP",2005,"For storage only",28,"Errinundra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17335,24670,"AUS","Victorian SOP",2013,"For storage only",28,"Holden F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17333,24670,"AUS","Victorian SOP",2010,"For storage only",28,"Holden F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17334,24670,"AUS","Victorian SOP",2005,"For storage only",28,"Holden F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17687,24694,"AUS","Victorian SOP",2013,"For storage only",28,"Kooyoora","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17686,24694,"AUS","Victorian SOP",2010,"For storage only",28,"Kooyoora","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17685,24694,"AUS","Victorian SOP",2005,"For storage only",28,"Kooyoora","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17843,24736,"AUS","Victorian SOP",2010,"For storage only",28,"Landsborough N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17844,24736,"AUS","Victorian SOP",2005,"For storage only",28,"Landsborough N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17880,24738,"AUS","Victorian SOP",2013,"For storage only",28,"Lerderderg","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17879,24738,"AUS","Victorian SOP",2010,"For storage only",28,"Lerderderg","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17878,24738,"AUS","Victorian SOP",2005,"For storage only",28,"Lerderderg","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17904,24739,"AUS","NSW SOP",2013,"For storage only",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17903,24739,"AUS","NSW SOP",2010,"For storage only",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17902,24739,"AUS","NSW SOP",2007,"For storage only",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17905,24739,"AUS","NSW SOP",2004,"For storage only",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17901,24739,"AUS","NSW SOP",2005,"For storage only",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17975,24745,"AUS","Victorian SOP",2005,"For storage only",28,"Lower Glenelg National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17976,24745,"AUS","Victorian SOP",2010,"For storage only",28,"Lower Glenelg National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17977,24745,"AUS","Victorian SOP",2013,"For storage only",28,"Lower Glenelg National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18234,24761,"AUS","Victorian SOP",2005,"For storage only",28,"Moondarra","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18233,24761,"AUS","Victorian SOP",2010,"For storage only",28,"Moondarra","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18235,24761,"AUS","Victorian SOP",2013,"For storage only",28,"Moondarra","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18248,24762,"AUS","Victorian SOP",2013,"For storage only",28,"Moormurng F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18247,24762,"AUS","Victorian SOP",2005,"For storage only",28,"Moormurng F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18246,24762,"AUS","Victorian SOP",2010,"For storage only",28,"Moormurng F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18281,24765,"AUS","Victorian SOP",2010,"For storage only",28,"Morwell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18282,24765,"AUS","Victorian SOP",2005,"For storage only",28,"Morwell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18283,24765,"AUS","Victorian SOP",2013,"For storage only",28,"Morwell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18347,24767,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Eccles National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18348,24767,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Eccles National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18346,24767,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Eccles National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18392,24769,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Lawson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18391,24769,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Lawson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18393,24769,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Lawson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18408,24770,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Napier","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18410,24770,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Napier","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18409,24770,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Napier","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18848,24787,"AUS","Victorian SOP",2013,"For storage only",28,"Organ Pipes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18847,24787,"AUS","Victorian SOP",2005,"For storage only",28,"Organ Pipes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18846,24787,"AUS","Victorian SOP",2010,"For storage only",28,"Organ Pipes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19080,24813,"AUS","Victorian SOP",2010,"For storage only",28,"Reef Hills","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19081,24813,"AUS","Victorian SOP",2013,"For storage only",28,"Reef Hills","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19079,24813,"AUS","Victorian SOP",2005,"For storage only",28,"Reef Hills","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19231,24829,"AUS","Birdlife IBA",2008,"For storage only",28,"Shallow Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19232,24829,"AUS","Victorian SOP",2010,"For storage only",28,"Shallow Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19234,24829,"AUS","Victorian SOP",2013,"For storage only",28,"Shallow Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19233,24829,"AUS","Victorian SOP",2005,"For storage only",28,"Shallow Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19444,24845,"AUS","Victorian SOP",2010,"For storage only",28,"Tarra-Bulga National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19445,24845,"AUS","Victorian SOP",2013,"For storage only",28,"Tarra-Bulga National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19443,24845,"AUS","Victorian SOP",2005,"For storage only",28,"Tarra-Bulga National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19823,24871,"AUS","Victorian SOP",2005,"For storage only",28,"Warrandyte","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19824,24871,"AUS","Victorian SOP",2010,"For storage only",28,"Warrandyte","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19825,24871,"AUS","Victorian SOP",2013,"For storage only",28,"Warrandyte","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19900,24874,"AUS","Victorian SOP",2010,"For storage only",28,"Werribee Gorge","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19899,24874,"AUS","Victorian SOP",2005,"For storage only",28,"Werribee Gorge","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19901,24874,"AUS","Victorian SOP",2013,"For storage only",28,"Werribee Gorge","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19940,24876,"AUS","Victorian SOP",2005,"For storage only",28,"Wilkin F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19942,24876,"AUS","Victorian SOP",2013,"For storage only",28,"Wilkin F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19941,24876,"AUS","Victorian SOP",2010,"For storage only",28,"Wilkin F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20156,24878,"AUS","Victorian SOP",2005,"For storage only",28,"Yambuk F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20196,24882,"AUS","Victorian SOP",2010,"For storage only",28,"Yarrara F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20197,24882,"AUS","Victorian SOP",2013,"For storage only",28,"Yarrara F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20232,24886,"AUS","Victorian SOP",2013,"For storage only",28,"Yellingbo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20230,24886,"AUS","Victorian SOP",2010,"For storage only",28,"Yellingbo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20231,24886,"AUS","Victorian SOP",2005,"For storage only",28,"Yellingbo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16499,26012,"AUS","Birdlife IBA",2008,"For storage only",28,"Coorong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16691,26013,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Davies Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16690,26013,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Davies Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21267,26029,"ZAF","METT",2013,"For storage only",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21266,26029,"ZAF","METT",2012,"For storage only",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21265,26029,"ZAF","METT",2011,"For storage only",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21268,26029,"ZAF","RAPPAM",2001,"For storage only",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21264,26029,"ZAF","METT",2010,"For storage only",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21832,26030,"ZAF","METT",2013,"For storage only",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21831,26030,"ZAF","METT",2012,"For storage only",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21829,26030,"ZAF","METT",2010,"For storage only",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21833,26030,"ZAF","RAPPAM",2001,"For storage only",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21830,26030,"ZAF","METT",2011,"For storage only",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21431,26031,"ZAF","METT",2013,"For storage only",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21430,26031,"ZAF","METT",2012,"For storage only",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21432,26031,"ZAF","RAPPAM",2001,"For storage only",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21428,26031,"ZAF","METT",2010,"For storage only",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21429,26031,"ZAF","METT",2011,"For storage only",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21342,26035,"ZAF","METT",2012,"For storage only",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21341,26035,"ZAF","METT",2011,"For storage only",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21340,26035,"ZAF","METT",2010,"For storage only",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21343,26035,"ZAF","METT",2013,"For storage only",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21344,26035,"ZAF","RAPPAM",2001,"For storage only",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21673,26036,"ZAF","METT",2013,"For storage only",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21674,26036,"ZAF","RAPPAM",2001,"For storage only",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21671,26036,"ZAF","METT",2011,"For storage only",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21672,26036,"ZAF","METT",2012,"For storage only",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21670,26036,"ZAF","METT",2010,"For storage only",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21606,26040,"ZAF","RAPPAM",2001,"For storage only",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21602,26040,"ZAF","METT",2010,"For storage only",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21604,26040,"ZAF","METT",2012,"For storage only",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21605,26040,"ZAF","METT",2013,"For storage only",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21603,26040,"ZAF","METT",2011,"For storage only",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21871,26042,"ZAF","METT",2013,"For storage only",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21872,26042,"ZAF","RAPPAM",2001,"For storage only",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21869,26042,"ZAF","METT",2011,"For storage only",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21868,26042,"ZAF","METT",2010,"For storage only",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21870,26042,"ZAF","METT",2012,"For storage only",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21841,26043,"ZAF","METT",2011,"For storage only",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21844,26043,"ZAF","RAPPAM",2001,"For storage only",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21843,26043,"ZAF","METT",2013,"For storage only",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21842,26043,"ZAF","METT",2012,"For storage only",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21840,26043,"ZAF","METT",2010,"For storage only",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21441,26044,"ZAF","METT",2010,"For storage only",28,"Lake Eteza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21443,26044,"ZAF","METT",2012,"For storage only",28,"Lake Eteza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21442,26044,"ZAF","METT",2011,"For storage only",28,"Lake Eteza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21444,26044,"ZAF","METT",2013,"For storage only",28,"Lake Eteza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -854,26062,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2010,"For storage only",11,"Vorpommersche Boddenlandschaft","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -852,26064,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"For storage only",11,"Müritz-Nationalpark","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -20817,26070,"MDG","IEG",2016,"For storage only",34,"Mantadia","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20473,26128,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Sri Venkateswara","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20375,26164,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Manas","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20374,26164,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Manas","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20376,26164,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Manas","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20588,26179,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Barail","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20339,26186,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Valmiki","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20340,26186,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Valmiki","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20338,26186,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Valmiki","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20465,26338,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Ngengpui","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20509,26339,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Phawngpui Blue Mountain","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20442,26341,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Murlen","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20443,26343,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Intanki","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20356,26383,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Mudumalai","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20355,26383,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Mudumalai","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20398,26383,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Mudumalai","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20389,26405,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Govind","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20390,26415,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Sohelwa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -11612,26460,"GHA","METT",2003,"For storage only",28,"Kakum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11611,26460,"GHA","RAPPAM",2002,"For storage only",28,"Kakum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11610,26460,"GHA","Africa Rainforest Study",2001,"For storage only",28,"Kakum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11604,26463,"GHA","RAPPAM",2002,"For storage only",28,"Assin-Attandanso","Game Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13972,26472,"VCT","RAPPAM",2006,"For storage only",28,"Chateaubelair Islet","Wildlife Reserve / Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13979,26479,"VCT","RAPPAM",2006,"For storage only",28,"Petit St. Vincent","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14290,26589,"ZWE","Birdlife IBA",2001,"For storage only",28,"Stapleford","State Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12235,26606,"NPL","RAPPAM",2002,"For storage only",28,"Makalu-Barun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12236,26606,"NPL","Birdlife IBA",2004,"For storage only",28,"Makalu-Barun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11710,26609,"ITA","European Diploma",1992,"For storage only",28,"Parco naturale della Maremma","Regional/Provincial Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11566,26648,"FRA","GOBI Survey",2006,"For storage only",28,"Mont Ventoux","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11567,26648,"FRA","Stockholm BR Survey",2008,"For storage only",28,"Mont Ventoux","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12270,26649,"NZL","WHA Outlook Report",2014,"For storage only",28,"Tongariro National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12269,26652,"NZL","WHA Outlook Report",2014,"For storage only",28,"Te Wahipounamu ÔÇô South West New Zealand","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20788,26653,"MDG","IEG",2016,"For storage only",34,"Tsingy de Bemaraha Strict Nature Reserve","World Heritage Site","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -11022,26654,"CHN","WHA Outlook Report",2014,"For storage only",28,"Mount Huangshan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21915,26689,"CAN","WHA Outlook Report",2014,"For storage only",28,"Canadian Rocky Mountain Parks","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21481,26822,"ZMB","RAPPAM",2001,"For storage only",28,"Makasa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14273,27022,"ZMB","Birdlife IBA",2001,"For storage only",28,"Mitenge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13759,28175,"UGA","Birdlife IBA",2001,"For storage only",28,"Mount Elgon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20483,28385,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Gangotri","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -10584,28464,"BDI","IMET",2016,"For storage only",27,"Monge Forest","Nature Reserve","JRC IMET information","JRC",2018,"English",FALSE -10617,28530,"BFA","IMET",2016,"For storage only",27,"Tisse","Classified Forest","JRC IMET information","JRC",2018,"English",FALSE -28194,28556,"BFA","METT",2010,"For storage only",28,"Sissili","classified forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10965,28745,"CAF","RAPPAM",2010,"For storage only",28,"Ngotto","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15234,28850,"BLZ","Belize MEE",2009,"For storage only",29,"Maya Mountian Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15233,28850,"BLZ","Belize MEE",2006,"For storage only",29,"Maya Mountian Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -14947,28856,"JAM","PIP Site Consolidation",1997,"For storage only",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14950,28856,"JAM","PIP Site Consolidation",2000,"For storage only",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14946,28856,"JAM","METT",2009,"For storage only",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14948,28856,"JAM","PIP Site Consolidation",1998,"For storage only",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14952,28856,"JAM","RAPPAM",2006,"For storage only",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14951,28856,"JAM","PIP Site Consolidation",2001,"For storage only",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14949,28856,"JAM","PIP Site Consolidation",1999,"For storage only",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14961,28941,"JAM","RAPPAM",2006,"For storage only",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14960,28941,"JAM","PIP Site Consolidation",2005,"For storage only",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14957,28941,"JAM","PIP Site Consolidation",2002,"For storage only",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14967,28941,"JAM","METT",2002,"For storage only",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14956,28941,"JAM","PIP Site Consolidation",2001,"For storage only",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14959,28941,"JAM","PIP Site Consolidation",2004,"For storage only",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14958,28941,"JAM","PIP Site Consolidation",2003,"For storage only",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14955,28982,"JAM","RAPPAM",2006,"For storage only",28,"Bull Head","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14974,28995,"JAM","RAPPAM",2006,"For storage only",28,"Mount Diablo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14814,29066,"GIN","Birdlife IBA",2001,"For storage only",28,"Massif du Ziama","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14825,29066,"GIN","RAPPAM",2007,"For storage only",28,"Massif du Ziama","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14818,29067,"GIN","RAPPAM",2007,"For storage only",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14817,29067,"GIN","Birdlife IBA",2001,"For storage only",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14821,29067,"GIN","METT",2004,"For storage only",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14815,29067,"GIN","RAPPAM",2009,"For storage only",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28046,29067,"GIN","METT",2003,"For storage only",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14802,29069,"GIN","RAPPAM",2007,"For storage only",28,"Badiar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14806,29447,"GIN","RAPPAM",2007,"For storage only",28,"Haut Niger National Park - Kouya Core Area","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14805,29484,"GIN","RAPPAM",2007,"For storage only",28,"Diécké","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15129,29681,"BLZ","METT",2013,"For storage only",29,"Actun Tunichil Muknal","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15128,29681,"BLZ","METT",2010,"For storage only",29,"Actun Tunichil Muknal","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15127,29681,"BLZ","Belize MEE",2006,"For storage only",29,"Actun Tunichil Muknal","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -18921,29784,"AUS","NSW SOP",2007,"For storage only",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18922,29784,"AUS","NSW SOP",2010,"For storage only",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18923,29784,"AUS","NSW SOP",2013,"For storage only",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18924,29784,"AUS","NSW SOP",2004,"For storage only",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18920,29784,"AUS","NSW SOP",2005,"For storage only",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21034,29966,"IDN","METT",2015,"For storage only",35,"Wasur","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -13102,29968,"SLE","Birdlife IBA",2005,"For storage only",28,"Loma Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13103,29968,"SLE","METT",2006,"For storage only",28,"Loma Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21029,30000,"IDN","METT",2015,"For storage only",35,"Sembilang","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20983,30005,"IDN","METT",2015,"For storage only",35,"Tasik Serkap-Tasik Sarang Burung","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -11536,30006,"EGY","RAPPAM",2006,"For storage only",28,"Wadi El Rayan","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11537,30006,"EGY","Birdlife IBA",2001,"For storage only",28,"Wadi El Rayan","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11535,30006,"EGY","METT",2009,"For storage only",28,"Wadi El Rayan","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21027,30013,"IDN","METT",2015,"For storage only",35,"Rawa Aopa Watumohai","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -13239,30017,"TCD","Birdlife IBA",2001,"For storage only",28,"Lac Fitri","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14099,30024,"VEN","Venezuela Vision",2001,"For storage only",28,"Turuepano","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14100,30024,"VEN","Parks profiles",2004,"For storage only",28,"Turuepano","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14101,30024,"VEN","METT",2010,"For storage only",28,"Turuepano","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14072,30026,"VEN","Venezuela Vision",2001,"For storage only",28,"Parima-Tapirapecó","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28200,30028,"VEN","METT",0,"For storage only",28,"Delta del Orinoco","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14095,30030,"VEN","Venezuela Vision",2001,"For storage only",28,"Formaciones de Tepuyes","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14006,30031,"VEN","Venezuela Vision",2001,"For storage only",28,"Chorro el Indio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14005,30031,"VEN","Venezuela Vision",1991,"For storage only",28,"Chorro el Indio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13999,30032,"VEN","Parks profiles",2001,"For storage only",28,"Cerro Saroche","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14000,30032,"VEN","Venezuela Vision",1991,"For storage only",28,"Cerro Saroche","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14001,30032,"VEN","Venezuela Vision",2001,"For storage only",28,"Cerro Saroche","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14091,30033,"VEN","Venezuela Vision",2001,"For storage only",28,"Sierra de la Culata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14090,30033,"VEN","Venezuela Vision",1991,"For storage only",28,"Sierra de la Culata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14087,30033,"VEN","METT",2005,"For storage only",28,"Sierra de la Culata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -954,30034,"PER","METT",2016,"For storage only",13,"Pampa Hermosa","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -926,30040,"PER","METT",2016,"For storage only",13,"Yanesha","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -14374,30043,"CHL","METT",2010,"For storage only",28,"Los Flamencos","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14375,30043,"CHL","METT",0,"For storage only",28,"Los Flamencos","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14397,30044,"CHL","METT",0,"For storage only",28,"Pinguino de Humbolt","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14396,30044,"CHL","METT",2010,"For storage only",28,"Pinguino de Humbolt","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12106,30048,"NAM","METT",2004,"For storage only",28,"Naute Recreation Resort","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12099,30051,"NAM","METT",2011,"For storage only",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12096,30051,"NAM","METT",2009,"For storage only",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12097,30051,"NAM","METT",0,"For storage only",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12095,30051,"NAM","METT",2004,"For storage only",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12098,30051,"NAM","METT",2010,"For storage only",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12092,30052,"NAM","METT",2004,"For storage only",28,"Nkasa Rupara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12094,30052,"NAM","METT",2011,"For storage only",28,"Nkasa Rupara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12093,30052,"NAM","METT",2009,"For storage only",28,"Nkasa Rupara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -899,30060,"PER","METT",2016,"For storage only",13,"Sunchubamba","Cotos de Caza","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -898,30061,"PER","METT",2016,"For storage only",13,"El Angolo","Cotos de Caza","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -1042,30595,"CRI","SINAD",2016,"For storage only",14,"Marino Ballena","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1141,30604,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1142,30604,"GTM","Parks profiles",2014,"For storage only",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1144,30604,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1145,30604,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1143,30604,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1151,30605,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1147,30605,"GTM","PROARCA/CAPAS",2003,"For storage only",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1148,30605,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1150,30605,"GTM","PROARCA/CAPAS",2002,"For storage only",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1149,30605,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1146,30605,"GTM","Parks profiles",2014,"For storage only",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1153,30606,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"San Miguel La Palotada - El Zotz","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1152,30606,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"San Miguel La Palotada - El Zotz","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1155,30606,"GTM","Parks profiles",2014,"For storage only",16,"San Miguel La Palotada - El Zotz","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1154,30606,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"San Miguel La Palotada - El Zotz","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1156,30607,"GTM","PROARCA/CAPAS",2013,"For storage only",16,"Quirigua","Monumento Cultural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -14854,30625,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Laguna de Karatasca","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12176,30628,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Indio Maiz","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12175,30628,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Indio Maiz","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12180,30630,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Los Guatuzos","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12181,30630,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Los Guatuzos","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12173,30632,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Fortaleza la Inmaculada Concepción de María.","Historical Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12174,30632,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Fortaleza la Inmaculada Concepción de María.","Historical Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12169,30633,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Estero Padre Ramos","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12170,30633,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Estero Padre Ramos","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12167,30633,"NIC","METT",2012,"For storage only",28,"Estero Padre Ramos","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12168,30633,"NIC","METT",2013,"For storage only",28,"Estero Padre Ramos","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14089,30635,"VEN","Venezuela Vision",2001,"For storage only",28,"Serranía de San Luis","Protective Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14088,30635,"VEN","Venezuela Vision",1991,"For storage only",28,"Serranía de San Luis","Protective Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14035,30673,"VEN","METT",0,"For storage only",28,"Laguna de Boca de Caño","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11137,30674,"CMR","RAPPAM",2002,"For storage only",28,"Nki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11136,30674,"CMR","METT",2010,"For storage only",28,"Nki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11135,30674,"CMR","METT",2005,"For storage only",28,"Nki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11134,30674,"CMR","METT",2003,"For storage only",28,"Nki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11732,30694,"JOR","METT",2006,"For storage only",28,"Fifa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11733,30694,"JOR","METT",2011,"For storage only",28,"Fifa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11731,30697,"JOR","METT",2012,"For storage only",28,"Dibeen Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11730,30697,"JOR","METT",2006,"For storage only",28,"Dibeen Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11729,30697,"JOR","METT",2007,"For storage only",28,"Dibeen Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11728,30697,"JOR","METT",2005,"For storage only",28,"Dibeen Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10797,30709,"BGR","RAPPAM",2004,"For storage only",28,"Vrachanski balkan","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9848,30710,"KOR","Korea SOP",2016,"For storage only",26,"Sobaeksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9846,30711,"KOR","Korea SOP",2016,"For storage only",26,"Wolchulsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9831,30712,"KOR","Korea SOP",2016,"For storage only",26,"Byeonsanbando","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -20711,30723,"SVK","CCPAMET",2017,"For storage only",32,"Latorica","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -9616,30747,"LIE","METT",2017,"For storage only",22,"Gampriner Seelein","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9609,30750,"LIE","METT",2017,"For storage only",22,"Aeulehaeg","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9622,30752,"LIE","METT",2017,"For storage only",22,"Heilos","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9647,30753,"LIE","METT",2017,"For storage only",22,"Wisanels","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9613,30754,"LIE","METT",2017,"For storage only",22,"Birka","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9641,30755,"LIE","METT",2017,"For storage only",22,"Schneckenaeule","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9608,30756,"LIE","METT",2017,"For storage only",22,"Au","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -43,30844,"ARG","METT",2009,"For storage only",3,"Complejo Islote Lobos","Scientific Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -21679,30851,"ZAF","METT",2010,"For storage only",28,"Richtersveld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21682,30851,"ZAF","METT",2013,"For storage only",28,"Richtersveld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21681,30851,"ZAF","METT",2012,"For storage only",28,"Richtersveld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21680,30851,"ZAF","METT",2005,"For storage only",28,"Richtersveld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22198,31029,"CHE","Annual Report",2017,"For storage only",37,"Augstmatthorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22199,31030,"CHE","Annual Report",2017,"For storage only",37,"Combe-Grède","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22200,31031,"CHE","Annual Report",2017,"For storage only",37,"Kiental","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22201,31032,"CHE","Annual Report",2017,"For storage only",37,"Schwarzhorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22202,31033,"CHE","Annual Report",2017,"For storage only",37,"Tannhorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22203,31034,"CHE","Annual Report",2017,"For storage only",37,"Urirotstock","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22204,31035,"CHE","Annual Report",2017,"For storage only",37,"Fellital","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22205,31036,"CHE","Annual Report",2017,"For storage only",37,"Mythen","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22206,31037,"CHE","Annual Report",2017,"For storage only",37,"Silbern-Jägern-Bödmerenwald","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22207,31038,"CHE","Annual Report",2017,"For storage only",37,"Hahnen","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22208,31039,"CHE","Annual Report",2017,"For storage only",37,"Hutstock","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -18343,31040,"CHE","NSW SOP",2010,"For storage only",28,"Kärpf","Federal Hunting Reserves","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22209,31040,"CHE","Annual Report",2017,"For storage only",37,"Kärpf","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -18342,31040,"CHE","NSW SOP",2007,"For storage only",28,"Kärpf","Federal Hunting Reserves","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18344,31040,"CHE","NSW SOP",2013,"For storage only",28,"Kärpf","Federal Hunting Reserves","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18341,31040,"CHE","NSW SOP",2005,"For storage only",28,"Kärpf","Federal Hunting Reserves","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22210,31041,"CHE","Annual Report",2017,"For storage only",37,"Schilt","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22211,31042,"CHE","Annual Report",2017,"For storage only",37,"Rauti-Tros","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22212,31043,"CHE","Annual Report",2017,"For storage only",37,"Graue Hörner","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22213,31044,"CHE","Annual Report",2017,"For storage only",37,"Säntis","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22214,31045,"CHE","Annual Report",2017,"For storage only",37,"Bernina-Albris","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22215,31046,"CHE","Annual Report",2017,"For storage only",37,"Beverin","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22216,31047,"CHE","Annual Report",2017,"For storage only",37,"Campasc","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22217,31048,"CHE","Annual Report",2017,"For storage only",37,"Piz Ela","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22218,31049,"CHE","Annual Report",2017,"For storage only",37,"Trescolmen","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22219,31050,"CHE","Annual Report",2017,"For storage only",37,"Pez Vial/Greina","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22220,31051,"CHE","Annual Report",2017,"For storage only",37,"Campo Tencia","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22221,31052,"CHE","Annual Report",2017,"For storage only",37,"Greina","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22222,31053,"CHE","Annual Report",2017,"For storage only",37,"Dent de Lys","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22223,31054,"CHE","Annual Report",2017,"For storage only",37,"Hochmatt-Motélon","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22224,31055,"CHE","Annual Report",2017,"For storage only",37,"Creux-du-Van","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22225,31056,"CHE","Annual Report",2017,"For storage only",37,"Grand Muveran","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22226,31057,"CHE","Annual Report",2017,"For storage only",37,"Les Bimis-Ciernes Picat","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22227,31058,"CHE","Annual Report",2017,"For storage only",37,"Le Noirmont","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22228,31059,"CHE","Annual Report",2017,"For storage only",37,"Pierreuse-Gummfluh","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22229,31060,"CHE","Annual Report",2017,"For storage only",37,"Aletschwald","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22230,31061,"CHE","Annual Report",2017,"For storage only",37,"Alpjuhorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22231,31062,"CHE","Annual Report",2017,"For storage only",37,"Wilerhorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22232,31064,"CHE","Annual Report",2017,"For storage only",37,"Mauvoisin","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22233,31065,"CHE","Annual Report",2017,"For storage only",37,"Val Ferret / Combe de l'A","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22234,31066,"CHE","Annual Report",2017,"For storage only",37,"Haut de Cry/Derborence","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22235,31067,"CHE","Annual Report",2017,"For storage only",37,"Leukerbad","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22236,31068,"CHE","Annual Report",2017,"For storage only",37,"Turtmanntal","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22237,31069,"CHE","Annual Report",2017,"For storage only",37,"Dixence","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -11721,31100,"ITA","European Diploma",1985,"For storage only",28,"Riserva naturale Sasso Fratino","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11717,31115,"ITA","European Diploma",1988,"For storage only",28,"Riserva naturale Isola di Montecristo","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11699,31169,"ITA","METT",2003,"For storage only",28,"Riserva naturale Cratere degli Astroni","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11714,31209,"ITA","METT",2003,"For storage only",28,"Riserva di Monte Arcosu","Other Protected Natural Regional Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13285,31257,"THA","Birdlife IBA",2007,"For storage only",28,"Sub Langka","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13762,31275,"UGA","Birdlife IBA",2001,"For storage only",28,"Otze Forest White Rhino","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11621,31330,"GMB","Birdlife IBA",2001,"For storage only",28,"Baobolon Wetland Reserve","Wetland Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11623,31330,"GMB","RAPPAM",2009,"For storage only",28,"Baobolon Wetland Reserve","Wetland Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9803,31341,"BHS","METT-RAPPAM",2018,"For storage only",25,"Tilloo Cay Reserve","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -187,31398,"COL","AEMAPPS",2016,"For storage only",6,"Los Estoraques","Natual Area","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -10718,31410,"AUT","European Diploma",1994,"For storage only",28,"Wachau und Umgebung","Landscape Protection Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10950,31458,"CAF","METT",0,"For storage only",28,"Dzanga-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10948,31458,"CAF","RAPPAM",2010,"For storage only",28,"Dzanga-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10949,31459,"CAF","Africa Rainforest Study",2001,"For storage only",28,"Dzanga-Sangha","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10953,31459,"CAF","METT",2005,"For storage only",28,"Dzanga-Sangha","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10955,31459,"CAF","METT",0,"For storage only",28,"Dzanga-Sangha","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13975,31477,"VCT","RAPPAM",2006,"For storage only",28,"Kingshill","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13980,31478,"VCT","RAPPAM",2006,"For storage only",28,"Tobago Cays-Mayreau","Marine Park / Marine Reserve / Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20612,31550,"LTU","METT",2006,"For storage only",28,"Viesviles valstybinis gamtinis rezervatas","State Strict Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1088,31561,"EST","METT",2012,"For storage only",15,"Karula rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1097,31566,"EST","METT",2012,"For storage only",15,"Läänemaa Suursoo maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1094,31580,"EST","METT",2012,"For storage only",15,"Muraka looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -765,31750,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Guaribas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -416,31750,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Guaribas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -766,31751,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Marinha Do Arvoredo","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -417,31751,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Marinha Do Arvoredo","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -415,31752,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Do Uatumã","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -764,31752,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Do Uatumã","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -522,31755,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Cavernas Do Peruaçu","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -241,31755,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Cavernas Do Peruaçu","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -521,31756,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Carste Da Lagoa Santa","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -240,31756,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Carste Da Lagoa Santa","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13520,31757,"TZA","METT",2011,"For storage only",28,"Masingini Catchment Forest","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -549,31758,"BRA","SAMGe",2016,"For storage only",9,"APA Serra da Tabatinga","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -655,31759,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Do Amazonas","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -336,31759,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Do Amazonas","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13459,31760,"TZA","METT",2011,"For storage only",28,"Kiwengwa Pongwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13460,31760,"TZA","METT",2007,"For storage only",28,"Kiwengwa Pongwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13568,31762,"TZA","METT",2007,"For storage only",28,"Msitu Mkuu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13569,31762,"TZA","METT",2011,"For storage only",28,"Msitu Mkuu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -315,31763,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Mapiá-Inauiní","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -628,31763,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Mapiá-Inauiní","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13635,31764,"TZA","METT",2011,"For storage only",28,"Ras Kiuyu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13580,31766,"TZA","METT",2011,"For storage only",28,"Mohoro River","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -327,31768,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Roraima","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -643,31768,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Roraima","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -647,31769,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Saracá-Taquera","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -332,31770,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Tapirapé-Aquiri","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -651,31770,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Tapirapé-Aquiri","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -426,31774,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Alto Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -770,31774,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Alto Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -436,31775,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Chico Mendes","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -779,31775,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Chico Mendes","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -460,31776,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Rio Cajari","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -822,31777,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Rio Ouro Preto","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -463,31777,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Rio Ouro Preto","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -10770,32361,"BGR","PANPARKS",2005,"For storage only",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10773,32361,"BGR","RAPPAM",2004,"For storage only",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10767,32361,"BGR","METT",2006,"For storage only",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10768,32361,"BGR","PANPARKS",2003,"For storage only",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10772,32361,"BGR","PANPARKS",2007,"For storage only",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10769,32361,"BGR","PANPARKS",2004,"For storage only",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10771,32361,"BGR","PANPARKS",2006,"For storage only",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13322,32564,"TUN","Birdlife IBA",2001,"For storage only",28,"Bahiret El Bibane","Wetland Zone of National Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12599,32568,"PRT","European Diploma",1992,"For storage only",28,"Ilhas Selvagens","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -853,32666,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"For storage only",11,"Saxonian Switzerland","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -849,32667,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2010,"For storage only",11,"Jasmund","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -857,32669,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"For storage only",11,"Waddensea NLP (Schl.-Holstein)","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -14433,32717,"ECU","Ecuador MEE",1999,"For storage only",28,"Chimborazo","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14434,32717,"ECU","METT",2005,"For storage only",28,"Chimborazo","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14435,32717,"ECU","METT",2009,"For storage only",28,"Chimborazo","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21784,32816,"ZAF","METT",2013,"For storage only",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21786,32816,"ZAF","METT",2007,"For storage only",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21783,32816,"ZAF","METT",2012,"For storage only",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21781,32816,"ZAF","METT",2010,"For storage only",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21785,32816,"ZAF","METT",2005,"For storage only",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21895,32817,"ZAF","METT",2007,"For storage only",28,"Wilderness National Lakes Area","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21894,32817,"ZAF","METT",2005,"For storage only",28,"Wilderness National Lakes Area","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21129,32825,"ZAF","Birdlife IBA",2013,"For storage only",28,"Anysberg Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21125,32825,"ZAF","METT",2010,"For storage only",28,"Anysberg Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21361,32829,"ZAF","METT",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21362,32829,"ZAF","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21364,32829,"ZAF","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21363,32829,"ZAF","METT",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21413,32830,"ZAF","METT",2007,"For storage only",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21411,32830,"ZAF","METT",2012,"For storage only",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21409,32830,"ZAF","METT",2010,"For storage only",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21410,32830,"ZAF","METT",2011,"For storage only",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21412,32830,"ZAF","METT",2013,"For storage only",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21557,32834,"ZAF","METT",2013,"For storage only",28,"Molopo Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21555,32834,"ZAF","METT",2010,"For storage only",28,"Molopo Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21556,32834,"ZAF","METT",2012,"For storage only",28,"Molopo Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21625,32835,"ZAF","METT",2007,"For storage only",28,"Oorlogskloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21626,32835,"ZAF","METT",2010,"For storage only",28,"Oorlogskloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21690,32839,"ZAF","METT",0,"For storage only",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21692,32839,"ZAF","METT",2012,"For storage only",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21693,32839,"ZAF","METT",2013,"For storage only",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21689,32839,"ZAF","METT",2010,"For storage only",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21688,32839,"ZAF","METT",2007,"For storage only",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21691,32839,"ZAF","METT",2011,"For storage only",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21694,32840,"ZAF","METT",2005,"For storage only",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21695,32840,"ZAF","METT",2007,"For storage only",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21698,32840,"ZAF","METT",2011,"For storage only",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21700,32840,"ZAF","METT",2013,"For storage only",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21699,32840,"ZAF","METT",2012,"For storage only",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21696,32840,"ZAF","METT",2010,"For storage only",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21716,32841,"ZAF","METT",2012,"For storage only",28,"Salmonsdam Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21715,32841,"ZAF","METT",2011,"For storage only",28,"Salmonsdam Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21717,32841,"ZAF","METT",2013,"For storage only",28,"Salmonsdam Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21714,32841,"ZAF","METT",2010,"For storage only",28,"Salmonsdam Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10859,32866,"BOL","MEMS",2002,"For storage only",28,"Cordillera de Sama","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10858,32866,"BOL","RAPPAM",2004,"For storage only",28,"Cordillera de Sama","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21197,32878,"ZAF","METT",2012,"For storage only",28,"Caledon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21196,32878,"ZAF","METT",2011,"For storage only",28,"Caledon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21198,32878,"ZAF","METT",2013,"For storage only",28,"Caledon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21195,32878,"ZAF","METT",2010,"For storage only",28,"Caledon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21763,32879,"ZAF","METT",2013,"For storage only",28,"Sterkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21761,32879,"ZAF","METT",2011,"For storage only",28,"Sterkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21762,32879,"ZAF","METT",2012,"For storage only",28,"Sterkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21760,32879,"ZAF","METT",2010,"For storage only",28,"Sterkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21130,32883,"ZAF","METT",2010,"For storage only",28,"Atherstone Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21547,32919,"ZAF","METT",2013,"For storage only",28,"Modjadji Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21545,32919,"ZAF","METT",2011,"For storage only",28,"Modjadji Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21546,32919,"ZAF","METT",2012,"For storage only",28,"Modjadji Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21544,32919,"ZAF","METT",2010,"For storage only",28,"Modjadji Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21686,32961,"ZAF","METT",2012,"For storage only",28,"Riverlands Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21684,32961,"ZAF","METT",2010,"For storage only",28,"Riverlands Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21687,32961,"ZAF","METT",2013,"For storage only",28,"Riverlands Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21685,32961,"ZAF","METT",2011,"For storage only",28,"Riverlands Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10754,33005,"BEN","METT",2010,"For storage only",28,"La Lama-Sud","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11672,33046,"GNB","METT",2006,"For storage only",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11638,33046,"GNB","RAPPAM",2009,"For storage only",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11668,33046,"GNB","METT",2010,"For storage only",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11637,33046,"GNB","Marine Tracking Tool",2004,"For storage only",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11639,33046,"GNB","RAPPAM",2007,"For storage only",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11671,33046,"GNB","METT",2005,"For storage only",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11670,33046,"GNB","METT",2004,"For storage only",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11661,33047,"GNB","RAPPAM",2007,"For storage only",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11642,33047,"GNB","METT",2006,"For storage only",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11658,33047,"GNB","Marine Tracking Tool",2004,"For storage only",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11663,33047,"GNB","METT",2007,"For storage only",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11662,33047,"GNB","RAPPAM",2009,"For storage only",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11659,33047,"GNB","METT",2004,"For storage only",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10624,33047,"GNB","IMET",2016,"For storage only",27,"Orango","National Park","JRC IMET information","JRC",2018,"English",FALSE -11665,33047,"GNB","METT",2010,"For storage only",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11660,33047,"GNB","METT",2005,"For storage only",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11650,33048,"GNB","METT",2004,"For storage only",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11651,33048,"GNB","METT",2005,"For storage only",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11652,33048,"GNB","METT",2006,"For storage only",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11653,33048,"GNB","RAPPAM",2007,"For storage only",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11667,33048,"GNB","METT",2010,"For storage only",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11648,33048,"GNB","Birdlife IBA",2001,"For storage only",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11649,33048,"GNB","Marine Tracking Tool",2004,"For storage only",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11641,33050,"GNB","METT",2009,"For storage only",28,"Dulombi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21794,33108,"ZAF","METT",2012,"For storage only",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21793,33108,"ZAF","METT",2011,"For storage only",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21795,33108,"ZAF","METT",2013,"For storage only",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21792,33108,"ZAF","METT",2010,"For storage only",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21796,33108,"ZAF","RAPPAM",2001,"For storage only",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13743,33147,"UGA","METT",2011,"For storage only",28,"Itwara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13742,33147,"UGA","METT",2003,"For storage only",28,"Itwara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13744,33147,"UGA","METT",2012,"For storage only",28,"Itwara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13745,33147,"UGA","METT",2006,"For storage only",28,"Itwara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28196,33157,"MWI","METT",2012,"For storage only",28,"Mangochi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28198,33160,"MWI","METT",2012,"For storage only",28,"Tsamba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15073,33167,"MWI","Birdlife IBA",2013,"For storage only",28,"Soche","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15074,33172,"MWI","Birdlife IBA",2013,"For storage only",28,"Thyolo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15056,33184,"MWI","Birdlife IBA",2013,"For storage only",28,"Dzalanyama","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15071,33185,"MWI","Birdlife IBA",2013,"For storage only",28,"Ntchisi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28197,33230,"MWI","METT",2012,"For storage only",28,"Neno Eastern Escarpment","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11785,33450,"KEN","METT",2005,"For storage only",28,"Kakamega","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11786,33450,"KEN","METT",2006,"For storage only",28,"Kakamega","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11787,33450,"KEN","METT",2009,"For storage only",28,"Kakamega","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20581,33549,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Balaram Ambaji","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -288,33608,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Samuel","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -481,33609,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Serra Dos Três Irmãos","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -482,33612,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual De Guajará-Mirim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -483,33613,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual De Corumbiara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -349,33617,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Serra Dos Reis","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -290,33712,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Do Rio Roosevelt","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -484,33714,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Rio Preto-Jacundá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -464,33716,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Rio Pacaás Novos","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -314,33751,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Macauã","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -627,33751,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Macauã","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -485,33831,"BRA","RAPPAM",2015,"For storage only",9,"Área De Relevante Interesse Ecológica Javari Buriti","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -555,33831,"BRA","SAMGe",2016,"For storage only",9,"Área De Relevante Interesse Ecológica Javari Buriti","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -461,34026,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Rio Cautário","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -20978,34130,"IDN","METT",2015,"For storage only",35,"Siranggas","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20998,34161,"IDN","METT",2015,"For storage only",35,"Batang Gadis","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20948,34163,"IDN","METT",2015,"For storage only",35,"Barumun","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -15189,34313,"BLZ","Belize MEE",2009,"For storage only",29,"Five Blues Lake National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15188,34313,"BLZ","Belize MEE",2006,"For storage only",29,"Five Blues Lake National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15222,34314,"BLZ","METT",2010,"For storage only",29,"Laughing Bird Caye National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15220,34314,"BLZ","Belize MEE",2009,"For storage only",29,"Laughing Bird Caye National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15219,34314,"BLZ","Belize MEE",2006,"For storage only",29,"Laughing Bird Caye National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -28264,34314,"BLZ","METT",2013,"For storage only",28,"Laughing Bird Caye National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20992,34633,"IDN","METT",2015,"For storage only",35,"Murhum","Grand Forest Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -12178,34672,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Isla Juan Venado","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12177,34672,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Isla Juan Venado","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13728,34804,"UGA","METT",2012,"For storage only",28,"Budongo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13729,34804,"UGA","Birdlife IBA",2001,"For storage only",28,"Budongo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13730,34805,"UGA","METT",2003,"For storage only",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13733,34805,"UGA","METT",2006,"For storage only",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13732,34805,"UGA","METT",2012,"For storage only",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13734,34805,"UGA","Birdlife IBA",2008,"For storage only",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13731,34805,"UGA","METT",2011,"For storage only",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13757,34808,"UGA","Birdlife IBA",2001,"For storage only",28,"Mabira","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14799,34878,"FJI","METT",2010,"For storage only",28,"Taveuni","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -195,35271,"COL","AEMAPPS",2016,"For storage only",6,"Old Providence Mc Bean Lagoon","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -178,35272,"COL","AEMAPPS",2016,"For storage only",6,"Guanenta-alto Rio Fonce","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -14855,36051,"HND","PROARCA/CAPAS",2002,"For storage only",28,"Laguna de Guaimoreto","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14868,36053,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Río Kruta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1044,36057,"CRI","SINAD",2016,"For storage only",14,"Miravalles","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1063,36059,"CRI","SINAD",2016,"For storage only",14,"Volcán Arenal","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -20621,36172,"NGA","RAPPAM",2004,"For storage only",28,"Garu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15089,36534,"NGA","Birdlife IBA",2013,"For storage only",28,"Yankari","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28119,36591,"NGA","METT",2005,"For storage only",28,"Duma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12234,36687,"NGA","RAPPAM",2002,"For storage only",28,"Lantang","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15081,36808,"NGA","RAPPAM",2002,"For storage only",28,"Oba Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15080,36813,"NGA","Birdlife IBA",2009,"For storage only",28,"Ibadan","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15087,36820,"NGA","Birdlife IBA",2001,"For storage only",28,"Omo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15085,36979,"NGA","Birdlife IBA",2009,"For storage only",28,"Okomu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15083,36979,"NGA","RAPPAM",2002,"For storage only",28,"Okomu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15082,36979,"NGA","METT",2003,"For storage only",28,"Okomu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15078,37009,"NGA","METT",2003,"For storage only",28,"Cross River North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15086,37009,"NGA","RAPPAM",2002,"For storage only",28,"Cross River North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11189,37043,"COD","METT",2010,"For storage only",28,"Okapi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11156,37043,"COD","RAPPAM",2010,"For storage only",28,"Okapi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11190,37043,"COD","Birdlife IBA",2001,"For storage only",28,"Okapi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11185,37044,"COD","RAPPAM",2010,"For storage only",28,"Mangrove Nature Reserve or Marine Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11193,37044,"COD","METT",2010,"For storage only",28,"Mangrove Nature Reserve or Marine Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11912,37069,"LVA","METT",2006,"For storage only",28,"Vidzemes akmenaina jurmala","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12620,37115,"PRY","Birdlife IBA",2011,"For storage only",28,"Natural Reserve del Bosque Mbaracayú","Private Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15156,37253,"BLZ","Belize MEE",2009,"For storage only",29,"Burdon Canal Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15155,37253,"BLZ","Belize MEE",2006,"For storage only",29,"Burdon Canal Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -13248,39522,"THA","Birdlife IBA",2004,"For storage only",28,"Chalerm Phrakiat Somdej Phrathep Ratchasuda","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21747,39744,"ZAF","METT",2012,"For storage only",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21745,39744,"ZAF","METT",2010,"For storage only",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21749,39744,"ZAF","Birdlife IBA",2013,"For storage only",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21746,39744,"ZAF","METT",2011,"For storage only",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21748,39744,"ZAF","METT",2013,"For storage only",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21119,39745,"ZAF","METT",2010,"For storage only",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21120,39745,"ZAF","METT",2011,"For storage only",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21123,39745,"ZAF","RAPPAM",2001,"For storage only",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21122,39745,"ZAF","METT",2013,"For storage only",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21121,39745,"ZAF","METT",2012,"For storage only",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21349,39746,"ZAF","RAPPAM",2001,"For storage only",28,"Hlatikulu","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21345,39746,"ZAF","METT",2010,"For storage only",28,"Hlatikulu","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21595,39753,"ZAF","METT",2012,"For storage only",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21594,39753,"ZAF","METT",2011,"For storage only",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21597,39753,"ZAF","RAPPAM",2001,"For storage only",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21593,39753,"ZAF","METT",2010,"For storage only",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21596,39753,"ZAF","METT",2013,"For storage only",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21665,39755,"ZAF","METT",2010,"For storage only",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21666,39755,"ZAF","RAPPAM",2001,"For storage only",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21668,39755,"ZAF","METT",2012,"For storage only",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21667,39755,"ZAF","METT",2011,"For storage only",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21669,39755,"ZAF","METT",2013,"For storage only",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21791,39758,"ZAF","RAPPAM",2001,"For storage only",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21789,39758,"ZAF","METT",2012,"For storage only",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21788,39758,"ZAF","METT",2011,"For storage only",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21787,39758,"ZAF","METT",2010,"For storage only",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21790,39758,"ZAF","METT",2013,"For storage only",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21475,39832,"ZAF","METT",2012,"For storage only",28,"Madikwe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21474,39832,"ZAF","METT",2010,"For storage only",28,"Madikwe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21476,39832,"ZAF","METT",2013,"For storage only",28,"Madikwe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12055,39872,"MUS","METT",2009,"For storage only",28,"Black River Gorges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13746,39985,"UGA","METT",2003,"For storage only",28,"Kagombe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28120,40001,"UGA","METT",2005,"For storage only",28,"Mpanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13750,40002,"UGA","Birdlife IBA",2001,"For storage only",28,"Kibale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13775,40042,"UGA","Birdlife IBA",2001,"For storage only",28,"Semuliki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13741,40371,"UGA","Birdlife IBA",2001,"For storage only",28,"Echuya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13769,40476,"UGA","METT",2012,"For storage only",28,"Rom","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13761,40588,"UGA","Birdlife IBA",2001,"For storage only",28,"Moroto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13767,40602,"UGA","METT",2012,"For storage only",28,"Nyangea - Napore","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13777,40603,"UGA","METT",2012,"For storage only",28,"Timu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13778,40604,"UGA","METT",2012,"For storage only",28,"Zulia","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13760,40630,"UGA","Birdlife IBA",2001,"For storage only",28,"Mount Kei","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11609,40813,"GHA","Birdlife IBA",2001,"For storage only",28,"Bia Trributaries South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11614,40815,"GHA","METT",2009,"For storage only",28,"Krokosua Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13413,40922,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13725,40923,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22047,40927,"FIN","RAPPAM",2004,"For storage only",28,"Koloveden kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22108,40928,"FIN","RAPPAM",2004,"For storage only",28,"Perämeren kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22001,40929,"FIN","RAPPAM",2004,"For storage only",28,"Tammisaaren saariston kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22157,40930,"FIN","RAPPAM",2004,"For storage only",28,"Torronsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22158,40930,"FIN","Birdlife IBA",2010,"For storage only",28,"Torronsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12293,40968,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12290,40968,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12291,40968,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12287,40968,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12292,40968,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12288,40968,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11512,40977,"EGY","RAPPAM",2006,"For storage only",28,"Nabq","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11511,40977,"EGY","METT",2009,"For storage only",28,"Nabq","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11503,40978,"EGY","RAPPAM",2006,"For storage only",28,"Abu Gallum","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14840,41011,"HND","PROARCA/CAPAS",2002,"For storage only",28,"Capiro Calentura","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14858,41013,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Patuca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14859,41013,"HND","METT",2010,"For storage only",28,"Patuca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14857,41013,"HND","METT",2005,"For storage only",28,"Patuca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14867,41014,"HND","METT",2010,"For storage only",28,"Río Plátano","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14848,41019,"HND","PROARCA/CAPAS",2000,"For storage only",28,"El Jicarito","Habitat Management Area by Species","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14864,41027,"HND","METT",2006,"For storage only",28,"Port Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14866,41027,"HND","METT",2012,"For storage only",28,"Port Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14865,41027,"HND","METT",2008,"For storage only",28,"Port Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14839,41045,"HND","METT",2010,"For storage only",28,"Tawahka Asangni _x000D_",NA,NA,NA,NA,NA,FALSE -14891,41045,"HND","METT",2005,"For storage only",28,"Tawahka Asangni _x000D_",NA,NA,NA,NA,NA,FALSE -1255,41049,"GUY","METT",2017,"For storage only",17,"Kanuku Mountains Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -1253,41049,"GUY","METT",2015,"For storage only",17,"Kanuku Mountains Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -1254,41049,"GUY","METT",2016,"For storage only",17,"Kanuku Mountains Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -1259,41053,"GUY","METT",2017,"For storage only",17,"Kanashen Amerindian Protected Area","Community Owned Conservation Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -1256,41057,"GUY","METT",2015,"For storage only",17,"Shell Beach Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -1257,41057,"GUY","METT",2016,"For storage only",17,"Shell Beach Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -1258,41057,"GUY","METT",2017,"For storage only",17,"Shell Beach Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English",FALSE -13619,41069,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13588,41079,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -486,41084,"BRA","RAPPAM",2015,"For storage only",9,"Área De Relevante Interesse Ecológica Vale Dos Dinossauros","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -564,41084,"BRA","SAMGe",2016,"For storage only",9,"Área De Relevante Interesse Ecológica Vale Dos Dinossauros","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -728,41087,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Mar. De Fernando De Noronha","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -487,41087,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Mar. De Fernando De Noronha","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -12162,61044,"NIC","METT",2013,"For storage only",28,"Complejo Volcánico Pilas El Hoyo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12161,61044,"NIC","METT",2012,"For storage only",28,"Complejo Volcánico Pilas El Hoyo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12145,61046,"NIC","METT",2012,"For storage only",28,"Laguna de Asososca","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12201,61049,"NIC","METT",2012,"For storage only",28,"Tepesomoto/Pataste","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12202,61049,"NIC","METT",2013,"For storage only",28,"Tepesomoto/Pataste","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12185,61050,"NIC","METT",2013,"For storage only",28,"Cerro Quiabuc Las Brisas","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12184,61050,"NIC","METT",2012,"For storage only",28,"Cerro Quiabuc Las Brisas","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12158,61053,"NIC","METT",2012,"For storage only",28,"Volcán Yalí","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12146,61054,"NIC","METT",2012,"For storage only",28,"Cerro El Arenal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12149,61054,"NIC","METT",2013,"For storage only",28,"Cerro El Arenal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12150,61054,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Cerro El Arenal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12151,61054,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Cerro El Arenal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12154,61055,"NIC","METT",2012,"For storage only",28,"Fila Cerro Frío La Cumplida","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12155,61055,"NIC","METT",2013,"For storage only",28,"Fila Cerro Frío La Cumplida","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12148,61056,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Cerro Apante","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12147,61056,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Cerro Apante","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20761,61401,"MEX","How is your MPA doing?",2016,"For storage only",33,"Región de Calakmul","UNESCO-MAB Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -11529,61414,"EGY","GOBI Survey",2006,"For storage only",28,"Wadi Allaqi","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13983,61416,"VEN","GOBI Survey",2006,"For storage only",28,"Alto Orinoco - Casiquiare","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1068,61426,"EST","PANParks",2009,"For storage only",15,"Soomaa rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1070,61426,"EST","METT",2010,"For storage only",15,"Soomaa rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -13058,61502,"RUS","RAPPAM",2001,"For storage only",28,"Zemlya Frantsa-Iosifa / Franz Josef Land","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12886,61504,"RUS","RAPPAM",2001,"For storage only",28,"Meschersky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28186,61506,"RUS","METT",2011,"For storage only",28,"Yugyd Va","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13053,61506,"RUS","METT",2006,"For storage only",28,"Yugyd Va","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13054,61506,"RUS","RAPPAM",2001,"For storage only",28,"Yugyd Va","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12761,61508,"RUS","RAPPAM",2001,"For storage only",28,"Botchinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12935,61509,"RUS","RAPPAM",2001,"For storage only",28,"Polistovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12946,61510,"RUS","RAPPAM",2001,"For storage only",28,"Rdeisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12911,61511,"RUS","RAPPAM",2001,"For storage only",28,"Nurgush","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13050,61512,"RUS","RAPPAM",2001,"For storage only",28,"Voroninsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21997,61523,"FIN","PANPARKS",2007,"For storage only",28,"Archipelago Sea Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21998,61523,"FIN","GOBI Survey",2006,"For storage only",28,"Archipelago Sea Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21999,61523,"FIN","Stockholm BR Survey",2008,"For storage only",28,"Archipelago Sea Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14618,61525,"ESP","GOBI Survey",2006,"For storage only",28,"Menorca","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14619,61525,"ESP","Stockholm BR Survey",2008,"For storage only",28,"Menorca","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14601,61526,"ESP","GOBI Survey",2006,"For storage only",28,"Reserva de la Biósfera Lanzarote","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20635,61530,"PNG","RAPPAM",2004,"For storage only",28,"Loroko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20631,61533,"PNG","RAPPAM",2004,"For storage only",28,"Lake Kutubu","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20630,61533,"PNG","METT",2005,"For storage only",28,"Lake Kutubu","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14209,61551,"VNM","METT",2006,"For storage only",28,"Xuan Thuy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14210,61551,"VNM","METT",2009,"For storage only",28,"Xuan Thuy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14208,61551,"VNM","Birdlife IBA",2003,"For storage only",28,"Xuan Thuy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14211,61551,"VNM","METT",2011,"For storage only",28,"Xuan Thuy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13060,61575,"RUS","METT",2003,"For storage only",28,"Zjuratkul","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13061,61575,"RUS","METT",2005,"For storage only",28,"Zjuratkul","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13062,61575,"RUS","RAPPAM",2001,"For storage only",28,"Zjuratkul","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12922,61576,"RUS","RAPPAM",2001,"For storage only",28,"Orlovskoye Poles'e","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28292,61588,"GEO","METT",2010,"For storage only",28,"Borjomi-Kharagauli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9443,61588,"GEO","RAPPAM",2012,"For storage only",20,"Borjomi-Kharagauli","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9499,61588,"GEO","PANPARKS",2007,"For storage only",20,"Borjomi-Kharagauli","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9466,61588,"GEO","RAPPAM",2009,"For storage only",20,"Borjomi-Kharagauli","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9535,61588,"GEO","METT",2017,"For storage only",20,"Borjomi-Kharagauli","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -14189,61595,"VNM","RAPPAM",2004,"For storage only",28,"Pu Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14188,61595,"VNM","METT",2005,"For storage only",28,"Pu Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15399,61604,"AUS","WHA Outlook Report",2014,"For storage only",28,"Australian Fossil Mammal Sites (Riversleigh / Naracoorte)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13774,61608,"UGA","WHA Outlook Report",2014,"For storage only",28,"Rwenzori Mountains National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13772,61608,"UGA","Birdlife IBA",2001,"For storage only",28,"Rwenzori Mountains National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13739,61609,"UGA","Birdlife IBA",2001,"For storage only",28,"Bwindi Impenetrable National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13740,61609,"UGA","WHA Outlook Report",2014,"For storage only",28,"Bwindi Impenetrable National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14553,61611,"ESP","WHA Outlook Report",2014,"For storage only",28,"Doñana National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13992,61612,"VEN","WHA Outlook Report",2014,"For storage only",28,"Canaima National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13973,61700,"VCT","RAPPAM",2006,"For storage only",28,"Cumberland","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10575,61707,"BDI","IMET",2015,"For storage only",27,"Gisagara","Nature Reserve","JRC IMET information","JRC",2018,"English",FALSE -13695,61723,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -924,61767,"PER","METT",2016,"For storage only",13,"Purus","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -12760,61771,"RUS","RAPPAM",2001,"For storage only",28,"Bolshoy Arktichesky / Great Arctic","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9798,61793,"BHS","METT-RAPPAM",2018,"For storage only",25,"Rand Nature Centre","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -69,61822,"ARG","METT",2003,"For storage only",3,"Los Alerces","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -72,61822,"ARG","Valdiviana",2001,"For storage only",3,"Los Alerces","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -81,61824,"ARG","Valdiviana",2001,"For storage only",3,"Nahuel Huapi","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -11857,61943,"KHM","METT",2010,"For storage only",28,"Kulen Promtep","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11858,61943,"KHM","METT",2006,"For storage only",28,"Kulen Promtep","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11859,61943,"KHM","RAPPAM",2004,"For storage only",28,"Kulen Promtep","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28266,61943,"KHM","METT",2012,"For storage only",28,"Kulen Promtep","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15275,61956,"BLZ","Belize MEE",2009,"For storage only",29,"Sarstoon-Temash National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15278,61956,"BLZ","Belize MEE",2006,"For storage only",29,"Sarstoon-Temash National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15133,61957,"BLZ","Belize MEE",2006,"For storage only",29,"Aguas Turbias National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15134,61957,"BLZ","Belize MEE",2009,"For storage only",29,"Aguas Turbias National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15249,61958,"BLZ","Belize MEE",2009,"For storage only",29,"Paynes Creek National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15251,61958,"BLZ","METT",2013,"For storage only",29,"Paynes Creek National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15250,61958,"BLZ","METT",2010,"For storage only",29,"Paynes Creek National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15248,61958,"BLZ","Belize MEE",2006,"For storage only",29,"Paynes Creek National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15259,61959,"BLZ","Belize MEE",2006,"For storage only",29,"Rio Blanco National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15260,61959,"BLZ","Belize MEE",2009,"For storage only",29,"Rio Blanco National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -13127,62035,"SLV","PROARCA/CAPAS",2006,"For storage only",28,"La Joya","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13126,62037,"SLV","METT",2010,"For storage only",28,"Isla San Sebastián","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14885,62046,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Rus-Rus","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14894,62052,"HND","METT",2008,"For storage only",28,"Turtle Harbor","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14895,62052,"HND","METT",2012,"For storage only",28,"Turtle Harbor","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14893,62052,"HND","METT",2006,"For storage only",28,"Turtle Harbor","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11634,62085,"GMB","METT",2011,"For storage only",28,"Tanji","Bird Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11632,62085,"GMB","RAPPAM",2009,"For storage only",28,"Tanji","Bird Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11633,62085,"GMB","METT",2010,"For storage only",28,"Tanji","Bird Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14229,62095,"ZMB","METT",2012,"For storage only",28,"Chiawa","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14227,62095,"ZMB","METT",2004,"For storage only",28,"Chiawa","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14228,62095,"ZMB","METT",2009,"For storage only",28,"Chiawa","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20610,62282,"LTU","METT",2006,"For storage only",28,"Labanoro regioninis parkas","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20611,62290,"LTU","METT",2006,"For storage only",28,"Pajurio regioninis parkas","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21910,62304,"ZAF","METT",2011,"For storage only",28,"Wonderkop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21911,62304,"ZAF","METT",2012,"For storage only",28,"Wonderkop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21909,62304,"ZAF","METT",2010,"For storage only",28,"Wonderkop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21912,62304,"ZAF","METT",2013,"For storage only",28,"Wonderkop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21148,62368,"ZAF","METT",2005,"For storage only",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21149,62368,"ZAF","METT",2007,"For storage only",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21154,62368,"ZAF","METT",2013,"For storage only",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21152,62368,"ZAF","METT",2011,"For storage only",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21153,62368,"ZAF","METT",2012,"For storage only",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21150,62368,"ZAF","METT",2010,"For storage only",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21772,62385,"ZAF","METT",2009,"For storage only",28,"Groot Swartberg Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21390,62389,"ZAF","METT",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21391,62389,"ZAF","METT",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21392,62389,"ZAF","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21393,62389,"ZAF","METT",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21394,62389,"ZAF","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21521,62407,"ZAF","RAPPAM",2001,"For storage only",28,"Matshitsholo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12945,62445,"RUS","RAPPAM",2001,"For storage only",28,"Putoransky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10786,62485,"BGR","RAPPAM",2004,"For storage only",28,"Rila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10784,62485,"BGR","PANPARKS",2006,"For storage only",28,"Rila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10785,62485,"BGR","PANPARKS",2007,"For storage only",28,"Rila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10783,62485,"BGR","PANPARKS",2005,"For storage only",28,"Rila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21058,62486,"IDN","METT",2015,"For storage only",35,"Gunung Pancar","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21074,62488,"IDN","METT",2015,"For storage only",35,"Pananjung Pangandaran","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21087,62491,"IDN","METT",2015,"For storage only",35,"Sangeh","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21092,62492,"IDN","METT",2015,"For storage only",35,"Sukawayana","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20905,62495,"IDN","METT",2015,"For storage only",35,"Gunung Nyiut Penrissen","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21003,62496,"IDN","METT",2015,"For storage only",35,"Bukit Baka - Bukit Raya","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21040,62500,"IDN","METT",2015,"For storage only",35,"Baning","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21078,62502,"IDN","METT",2015,"For storage only",35,"Pleihari Tanah Laut","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -12019,62548,"MNG","RAPPAM",2005,"For storage only",28,"Onon - Balj river /B/","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20959,62552,"IDN","METT",2015,"For storage only",35,"Harlu","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21018,62567,"IDN","METT",2015,"For storage only",35,"Kelimutu","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21039,62584,"IDN","METT",2015,"For storage only",35,"Bangko-bangko","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21065,62585,"IDN","METT",2015,"For storage only",35,"Kerandangan","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28080,62609,"IDN","METT",2000,"For storage only",28,"Karakelang","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28081,62609,"IDN","METT",2006,"For storage only",28,"Karakelang","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28082,62609,"IDN","METT",2007,"For storage only",28,"Karakelang","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21001,62621,"IDN","METT",2016,"For storage only",35,"Bogani Nani Wartabone","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -11752,62625,"KAZ","Birdlife IBA",2004,"For storage only",28,"Turgaiskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20967,62632,"IDN","METT",2016,"For storage only",35,"Nantu","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21105,62636,"IDN","METT",2015,"For storage only",35,"Wera","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21043,62637,"IDN","METT",2015,"For storage only",35,"Cani Sirenreng","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -11747,62641,"KAZ","METT",2009,"For storage only",28,"Bayanayl'skiy","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21084,62659,"IDN","METT",2015,"For storage only",35,"Punti Kayu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21089,62660,"IDN","METT",2015,"For storage only",35,"D. Sicikeh-cikeh","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20368,62663,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Buxa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20367,62663,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Buxa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20366,62663,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Buxa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20528,62665,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Gudavi Bird","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20446,62666,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Eagle Nest","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -22238,62667,"CHE","Annual Report",2015,"For storage only",37,"Rade et Rhône genevois","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -20587,62668,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Kamlang","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20547,62669,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Kane","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20414,62670,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Sessa Orchid","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -22239,62673,"CHE","Annual Report",2015,"For storage only",37,"Grandson jusqu'à Champ Pittet","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22240,62675,"CHE","Annual Report",2015,"For storage only",37,"Yvonand jusqu'à Cheyres","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22241,62676,"CHE","Annual Report",2015,"For storage only",37,"Fanel - Chablais de Cudrefin, Pointe de Marin","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -12834,62691,"RUS","RAPPAM",2001,"For storage only",28,"Khankaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12943,62692,"RUS","METT",2009,"For storage only",28,"Privolzhskaya Lesostep","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12990,62693,"RUS","METT",2008,"For storage only",28,"Ostrov Vrangelya / Wrangel Island","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12861,62694,"RUS","RAPPAM",2001,"For storage only",28,"Kuznetsky Alatau","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13795,62696,"UKR","RAPPAM",2008,"For storage only",28,"Medobory","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20423,62848,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Gundla Brahmeswaram","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -15347,62941,"AUS","Victorian SOP",2005,"For storage only",28,"Alpine National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15349,62941,"AUS","Victorian SOP",2013,"For storage only",28,"Alpine National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15348,62941,"AUS","Victorian SOP",2010,"For storage only",28,"Alpine National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15755,62952,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Blackwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15756,62952,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Blackwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16439,62983,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Conondale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16438,62983,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Conondale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16629,62990,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Currawinya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16628,62990,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Currawinya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16651,62993,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Dalrymple","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16652,62993,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Dalrymple","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16719,62994,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Denham Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16718,62994,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Denham Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16805,63001,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Dryander","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16804,63001,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Dryander","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16927,63014,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Fitzroy Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16926,63014,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Fitzroy Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16952,63020,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16955,63021,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Fort Lytton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16956,63021,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Fort Lytton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17026,63026,"AUS","NSW SOP",2004,"For storage only",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17023,63026,"AUS","NSW SOP",2007,"For storage only",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17022,63026,"AUS","NSW SOP",2005,"For storage only",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17024,63026,"AUS","NSW SOP",2010,"For storage only",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17025,63026,"AUS","NSW SOP",2013,"For storage only",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17272,63040,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Hann Tableland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17271,63040,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Hann Tableland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17296,63046,"AUS","NSW SOP",2007,"For storage only",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17299,63046,"AUS","NSW SOP",2004,"For storage only",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17295,63046,"AUS","NSW SOP",2005,"For storage only",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17298,63046,"AUS","NSW SOP",2013,"For storage only",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17297,63046,"AUS","NSW SOP",2010,"For storage only",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17351,63057,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Howick Group (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17352,63057,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Howick Group (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17362,63058,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Idalia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17363,63058,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Idalia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17996,63115,"AUS","Tasmanian WHA",2004,"For storage only",28,"Macquarie Harbour","Historic Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18216,63136,"AUS","NSW SOP",2010,"For storage only",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18214,63136,"AUS","NSW SOP",2005,"For storage only",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18215,63136,"AUS","NSW SOP",2007,"For storage only",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18218,63136,"AUS","NSW SOP",2004,"For storage only",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18217,63136,"AUS","NSW SOP",2013,"For storage only",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18308,63144,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Buangor","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18309,63144,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Buangor","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18310,63144,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Buangor","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18335,63145,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Coolum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18336,63145,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Coolum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18576,63165,"AUS","Victorian SOP",2013,"For storage only",28,"Murray - Sunset National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18575,63165,"AUS","Victorian SOP",2010,"For storage only",28,"Murray - Sunset National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18574,63165,"AUS","Victorian SOP",2005,"For storage only",28,"Murray - Sunset National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17771,63268,"AUS","Birdlife IBA",2008,"For storage only",28,"Lacepede Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12660,63612,"ROU","METT",2012,"For storage only",28,"Cheile Bicazului - Hasmas","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12678,63612,"ROU","METT",2009,"For storage only",28,"Cheile Bicazului - Hasmas","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12646,63612,"ROU","RAPPAM",2006,"For storage only",28,"Cheile Bicazului - Hasmas","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12700,63623,"ROU","RAPPAM",2006,"For storage only",28,"Portile de Fier","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11950,63656,"MKD","METT",0,"For storage only",28,"Katlanovski predel","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13209,63662,"SVN","RAPPAM",2009,"For storage only",28,"Logarska dolina","Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9382,63664,"HRV","METT",2014,"For storage only",19,"Telašcica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9363,63664,"HRV","METT",2012,"For storage only",19,"Telašcica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9401,63664,"HRV","METT",2016,"For storage only",19,"Telašcica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9383,63666,"HRV","METT",2014,"For storage only",19,"Lonjsko polje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9402,63666,"HRV","METT",2016,"For storage only",19,"Lonjsko polje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9364,63666,"HRV","METT",2012,"For storage only",19,"Lonjsko polje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -16249,63710,"AUS","Birdlife IBA",2008,"For storage only",28,"Carnac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15971,63740,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15972,63740,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15973,63740,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15974,63740,"AUS","Victorian SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15970,63740,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15969,63740,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18274,63863,"AUS","NSW SOP",2010,"For storage only",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18272,63863,"AUS","NSW SOP",2005,"For storage only",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18280,63863,"AUS","NSW SOP",2004,"For storage only",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18275,63863,"AUS","NSW SOP",2013,"For storage only",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18273,63863,"AUS","NSW SOP",2007,"For storage only",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15570,63907,"AUS","Birdlife IBA",2008,"For storage only",28,"Bedout Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17974,63912,"AUS","Birdlife IBA",2008,"For storage only",28,"Lowendal Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15627,63926,"AUS","Birdlife IBA",2008,"For storage only",28,"Benger Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16800,63940,"AUS","Birdlife IBA",2008,"For storage only",28,"Dragon Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18865,64015,"AUS","Victorian SOP",2005,"For storage only",28,"Paddys Ranges","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18866,64015,"AUS","Victorian SOP",2013,"For storage only",28,"Paddys Ranges","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18864,64015,"AUS","Victorian SOP",2010,"For storage only",28,"Paddys Ranges","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18952,64022,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Piper Islands (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18951,64022,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Piper Islands (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18999,64028,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Precipice","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18998,64028,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Precipice","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19036,64031,"AUS","NSW SOP",2010,"For storage only",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19038,64031,"AUS","NSW SOP",2004,"For storage only",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19035,64031,"AUS","NSW SOP",2007,"For storage only",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19034,64031,"AUS","NSW SOP",2005,"For storage only",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19037,64031,"AUS","NSW SOP",2013,"For storage only",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19053,64032,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19094,64038,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19113,64039,"AUS","NSW SOP",2004,"For storage only",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19109,64039,"AUS","NSW SOP",2005,"For storage only",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19112,64039,"AUS","NSW SOP",2013,"For storage only",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19110,64039,"AUS","NSW SOP",2007,"For storage only",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19111,64039,"AUS","NSW SOP",2010,"For storage only",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19165,64046,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Sandbanks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19166,64046,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Sandbanks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19251,64055,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Sir Charles Hardy Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19250,64055,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Sir Charles Hardy Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19276,64056,"AUS","NSW SOP",2010,"For storage only",28,"Solitary Islands","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19414,64065,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Tamborine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19415,64065,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Tamborine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19508,64070,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Thrushton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19509,64070,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Thrushton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19703,64080,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Undara Volcanic","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19704,64080,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Undara Volcanic","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19776,64087,"AUS","NSW SOP",2007,"For storage only",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19777,64087,"AUS","NSW SOP",2010,"For storage only",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19779,64087,"AUS","NSW SOP",2004,"For storage only",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19775,64087,"AUS","NSW SOP",2005,"For storage only",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19778,64087,"AUS","NSW SOP",2013,"For storage only",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19730,64100,"AUS","Victorian SOP",2010,"For storage only",28,"Wabba","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19731,64100,"AUS","Victorian SOP",2005,"For storage only",28,"Wabba","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19732,64100,"AUS","Victorian SOP",2013,"For storage only",28,"Wabba","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19989,64103,"AUS","NSW SOP",2010,"For storage only",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19988,64103,"AUS","NSW SOP",2007,"For storage only",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19991,64103,"AUS","NSW SOP",2004,"For storage only",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19990,64103,"AUS","NSW SOP",2013,"For storage only",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19987,64103,"AUS","NSW SOP",2005,"For storage only",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16384,64182,"AUS","NSW SOP",2005,"For storage only",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16386,64182,"AUS","NSW SOP",2010,"For storage only",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16388,64182,"AUS","NSW SOP",2004,"For storage only",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16385,64182,"AUS","NSW SOP",2007,"For storage only",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16387,64182,"AUS","NSW SOP",2013,"For storage only",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17403,64183,"AUS","NSW SOP",2013,"For storage only",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17401,64183,"AUS","NSW SOP",2007,"For storage only",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17400,64183,"AUS","NSW SOP",2005,"For storage only",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17404,64183,"AUS","NSW SOP",2004,"For storage only",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17402,64183,"AUS","NSW SOP",2010,"For storage only",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19271,64184,"AUS","NSW SOP",2004,"For storage only",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19268,64184,"AUS","NSW SOP",2005,"For storage only",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19270,64184,"AUS","NSW SOP",2010,"For storage only",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19272,64184,"AUS","NSW SOP",2013,"For storage only",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19269,64184,"AUS","NSW SOP",2007,"For storage only",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19533,64185,"AUS","NSW SOP",2005,"For storage only",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19535,64185,"AUS","NSW SOP",2010,"For storage only",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19534,64185,"AUS","NSW SOP",2007,"For storage only",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19536,64185,"AUS","NSW SOP",2013,"For storage only",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19537,64185,"AUS","NSW SOP",2004,"For storage only",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17405,64244,"AUS","Victorian SOP",2010,"For storage only",28,"Inverleigh F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17407,64244,"AUS","Victorian SOP",2013,"For storage only",28,"Inverleigh F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17406,64244,"AUS","Victorian SOP",2005,"For storage only",28,"Inverleigh F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17565,64251,"AUS","Victorian SOP",2005,"For storage only",28,"Kangerong N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18407,64277,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Mitta Mitta F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16106,64353,"AUS","Victorian SOP",2013,"For storage only",28,"Bunyip","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16103,64353,"AUS","Victorian SOP",2010,"For storage only",28,"Bunyip","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16104,64353,"AUS","Victorian SOP",2005,"For storage only",28,"Bunyip","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16722,64354,"AUS","Victorian SOP",2013,"For storage only",28,"Dergholm","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16720,64354,"AUS","Victorian SOP",2005,"For storage only",28,"Dergholm","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16721,64354,"AUS","Victorian SOP",2010,"For storage only",28,"Dergholm","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17828,64360,"AUS","Birdlife IBA",2008,"For storage only",28,"Lake Torrens","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17822,64362,"AUS","Birdlife IBA",2008,"For storage only",28,"Lake Newland","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18664,64383,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Narrien Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18665,64383,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Narrien Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17778,64385,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Lake Bindegolly","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17779,64385,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Lake Bindegolly","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16638,64387,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Curtis Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16639,64387,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Curtis Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19938,64388,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Wild Cattle Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19939,64388,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Wild Cattle Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16345,64389,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Chesterton Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16346,64389,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Chesterton Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16055,64390,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bulleringa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16056,64390,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bulleringa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18070,64391,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mariala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18069,64391,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mariala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17445,64392,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Japoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17446,64392,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Japoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17311,64393,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Hell Hole Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17312,64393,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Hell Hole Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18171,64394,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Minerva Hills","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18172,64394,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Minerva Hills","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20049,64395,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Wondul Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20050,64395,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Wondul Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15099,64412,"PHL","Asean MEE",2012,"For storage only",28,"Mount Kitanglad Range","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -119,64415,"BTN","Bhutan METT+",2016,"For storage only",4,"Sakteng","Widlife Sanctuary","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English",FALSE -115,64417,"BTN","Bhutan METT+",2016,"For storage only",4,"Phibsoo","Widlife Sanctuary","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English",FALSE -21090,64445,"IDN","METT",2015,"For storage only",35,"Sidrap","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21086,64446,"IDN","METT",2015,"For storage only",35,"Ruteng","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -12930,64472,"NOR","RAPPAM",2001,"For storage only",28,"Pasvik","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22162,64497,"FIN","RAPPAM",2004,"For storage only",28,"Tsarmitunturin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22163,64499,"FIN","RAPPAM",2004,"For storage only",28,"Tuntsan erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22166,64499,"FIN","Birdlife IBA",2010,"For storage only",28,"Tuntsan erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22028,64500,"FIN","RAPPAM",2004,"For storage only",28,"Kemihaaran erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22112,64501,"FIN","RAPPAM",2004,"For storage only",28,"Puljun erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22153,64502,"FIN","RAPPAM",2004,"For storage only",28,"Tarvantovaaran erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22111,64503,"FIN","RAPPAM",2004,"For storage only",28,"Pöyrisjärven erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22174,64504,"FIN","RAPPAM",2004,"For storage only",28,"Vätsärin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22077,64505,"FIN","RAPPAM",2004,"For storage only",28,"Muotkatunturin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22098,64506,"FIN","RAPPAM",2004,"For storage only",28,"Paistunturin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22006,64507,"FIN","RAPPAM",2004,"For storage only",28,"Hammastunturin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22020,64508,"FIN","Birdlife IBA",2010,"For storage only",28,"Käsivarren erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22026,64508,"FIN","RAPPAM",2004,"For storage only",28,"Käsivarren erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22023,64509,"FIN","RAPPAM",2004,"For storage only",28,"Kaldoaivin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11709,64513,"ITA","PANPARKS",2007,"For storage only",28,"Parco nazionale della Maiella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11708,64513,"ITA","PANPARKS",2006,"For storage only",28,"Parco nazionale della Maiella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11707,64513,"ITA","PANPARKS",2005,"For storage only",28,"Parco nazionale della Maiella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11706,64513,"ITA","METT",2005,"For storage only",28,"Parco nazionale della Maiella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22053,64531,"FIN","Birdlife IBA",2010,"For storage only",28,"Lämsänaavan-Sakkala-aavan soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22096,64532,"FIN","Birdlife IBA",2010,"For storage only",28,"Pöyrisvuoman soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22014,64540,"FIN","Birdlife IBA",2010,"For storage only",28,"Joutsenaavan-Kaita-aavan soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22054,64542,"FIN","Birdlife IBA",2010,"For storage only",28,"Lätäsenon-Hietajoen soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22141,64544,"FIN","Birdlife IBA",2010,"For storage only",28,"Sammuttijängän-Vaijoenjängän soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11347,64588,"DNK","Birdlife IBA",2006,"For storage only",28,"Arreskov Sø","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21920,66090,"CAN","Parks Canada",2004,"For storage only",28,"Georgian Bay Islands National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21984,66090,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Georgian Bay Islands National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21940,66628,"CAN","MPA MEE",2003,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13211,67621,"SVN","RAPPAM",2009,"For storage only",28,"Secoveljske soline","Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14441,67623,"ECU","Ecuador MEE",1999,"For storage only",28,"El Ángel","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14442,67623,"ECU","METT",2005,"For storage only",28,"El Ángel","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -488,67692,"BRA","RAPPAM",2015,"For storage only",9,"Área De Relevante Interesse Ecológica Projeto Dinâmica Biológica De Fragmentos Florestais","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -561,67692,"BRA","SAMGe",2016,"For storage only",9,"Área De Relevante Interesse Ecológica Projeto Dinâmica Biológica De Fragmentos Florestais","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -454,67715,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Marinha Pirajubaé","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -814,67715,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Marinha Pirajubaé","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -12813,67718,"RUS","RAPPAM",2001,"For storage only",28,"Kaluzhskie Zaseki","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12831,67719,"RUS","RAPPAM",2001,"For storage only",28,"Kerzhensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12845,67720,"RUS","RAPPAM",2001,"For storage only",28,"Komandorsky / Commander Islands",NA,NA,NA,NA,NA,FALSE -12846,67720,"RUS","METT",2008,"For storage only",28,"Komandorsky / Commander Islands",NA,NA,NA,NA,NA,FALSE -13017,67722,"RUS","METT",2009,"For storage only",28,"Ubsunurskaya Kotlovina","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13016,67722,"RUS","RAPPAM",2001,"For storage only",28,"Ubsunurskaya Kotlovina","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13015,67722,"RUS","METT",2006,"For storage only",28,"Ubsunurskaya Kotlovina","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13014,67722,"RUS","METT",2008,"For storage only",28,"Ubsunurskaya Kotlovina","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19235,67724,"AUS","WHA Outlook Report",2014,"For storage only",28,"Shark Bay, Western Australia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12118,67727,"NER","WHA Outlook Report",2014,"For storage only",28,"Aïr and Ténéré Natural Reserves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10631,67727,"NER","IMET",2016,"For storage only",27,"Aïr and Ténéré Natural Reserves","World Heritage Site","JRC IMET information","JRC",2018,"English",FALSE -12120,67727,"NER","RAPPAM",2010,"For storage only",28,"Aïr and Ténéré Natural Reserves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12126,67727,"NER","Birdlife IBA",2001,"For storage only",28,"Aïr and Ténéré Natural Reserves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12121,67727,"NER","RAPPAM",2009,"For storage only",28,"Aïr and Ténéré Natural Reserves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12670,67728,"ROU","WHA Outlook Report",2014,"For storage only",28,"Danube Delta","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13291,67729,"THA","WHA Outlook Report",2014,"For storage only",28,"Thungyai - Huai Kha Khaeng Wildlife Sanctuaries","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13289,67729,"THA","Birdlife IBA",2007,"For storage only",28,"Thungyai - Huai Kha Khaeng Wildlife Sanctuaries","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16967,67730,"AUS","WHA Outlook Report",2014,"For storage only",28,"Fraser Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16471,67730,"AUS","Birdlife IBA",2008,"For storage only",28,"Fraser Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11060,67731,"CHN","WHA Outlook Report",2014,"For storage only",28,"Wulingyuan Scenic and Historic Interest Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11012,67732,"CHN","WHA Outlook Report",2014,"For storage only",28,"Jiuzhaigou Valley Scenic and Historic Interest Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11000,67733,"CHN","WHA Outlook Report",2014,"For storage only",28,"Huanglong Scenic and Historic Interest Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11066,67737,"CHN","GOBI Survey",2006,"For storage only",28,"Yancheng","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22078,67739,"FIN","GOBI Survey",2006,"For storage only",28,"North Karelian","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11553,67740,"GLP","GOBI Survey",2006,"For storage only",28,"Archipel de la Guadeloupe","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11580,67741,"DEU","GOBI Survey",2006,"For storage only",28,"Vosges du Nord/Pfälzerwald (Germany)","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14550,67752,"ESP","GOBI Survey",2006,"For storage only",28,"Doñana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14551,67752,"ESP","Stockholm BR Survey",2008,"For storage only",28,"Doñana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13815,67754,"UKR","Stockholm BR Survey",2008,"For storage only",28,"East Carpathians (UKR)","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11546,67756,"DZA","Birdlife IBA",2001,"For storage only",28,"Lac Tonga","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17545,67763,"AUS","Birdlife IBA",2008,"For storage only",28,"Kakadu National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18290,67764,"AUS","Birdlife IBA",2008,"For storage only",28,"Moulting Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11035,67859,"CHN","METT",2005,"For storage only",28,"Poyanghuhouniao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11036,67859,"CHN","METT",2007,"For storage only",28,"Poyanghuhouniao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11035,67859,"CHN","METT",2005,"Not Reported",28,"Poyanghuhouniao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11037,67859,"CHN","METT",2009,"For storage only",28,"Poyanghuhouniao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11037,67859,"CHN","METT",2009,"Not Reported",28,"Poyanghuhouniao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11036,67859,"CHN","METT",2007,"Not Reported",28,"Poyanghuhouniao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1007,67864,"CRI","SINAD",2016,"For storage only",14,"Caño Negro","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -11361,67874,"DNK","Birdlife IBA",2010,"For storage only",28,"Filso","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11445,67875,"DNK","Birdlife IBA",2010,"For storage only",28,"Ringkobing Fjord","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11429,67877,"DNK","Birdlife IBA",2010,"For storage only",28,"Nissum Fjord","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11404,67879,"DNK","Birdlife IBA",2010,"For storage only",28,"Vejlerne and Logstor Bredning","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11489,67880,"DNK","Birdlife IBA",2010,"For storage only",28,"Ulvedybet and Nibe Bredning","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11375,67881,"DNK","Birdlife IBA",2010,"For storage only",28,"Hirsholmene","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11432,67882,"DNK","Birdlife IBA",2006,"For storage only",28,"Nordre Ronner","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11379,67886,"DNK","Birdlife IBA",2010,"For storage only",28,"Horsens Fjord & Endelave","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11475,67887,"DNK","Birdlife IBA",2006,"For storage only",28,"Stavns Fjord and adjacent waters","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11408,67888,"DNK","Birdlife IBA",2010,"For storage only",28,"Lillebælt","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11400,67889,"DNK","Birdlife IBA",2006,"For storage only",28,"Nærå Coast and Æbelo area","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11480,67890,"DNK","Birdlife IBA",2010,"For storage only",28,"South Funen Archipelago","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11460,67891,"DNK","Birdlife IBA",2006,"For storage only",28,"Sejro Bugt, Nekselo Bugt & Saltbæk Vig","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11438,67895,"DNK","Birdlife IBA",2010,"For storage only",28,"Præsto Fjord, Jungshoved Nor, Ulvshale and Nyord","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11423,67896,"DNK","Birdlife IBA",2010,"For storage only",28,"Nakskov Fjord and Inner Fjord","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11385,67898,"DNK","Birdlife IBA",2010,"For storage only",28,"Waters between Lolland and Falster including Rods*","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11357,67899,"DNK","Birdlife IBA",2006,"For storage only",28,"Ertholmene","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11635,67909,"GRL","Birdlife IBA",2013,"For storage only",28,"Heden (Jameson Land)","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22048,67917,"FIN","Birdlife IBA",2010,"For storage only",28,"Krunnit Islands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22105,67920,"FIN","Birdlife IBA",2010,"For storage only",28,"Patvinsuo National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22073,67921,"FIN","Birdlife IBA",2010,"For storage only",28,"Martimoaapa - Lumiaapa - Penikat Mires","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11618,67968,"GHA","RAPPAM",2009,"For storage only",28,"Sakumo Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11619,67969,"GHA","RAPPAM",2009,"For storage only",28,"Songor Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11603,67970,"GHA","RAPPAM",2009,"For storage only",28,"Anlo-Keta lagoon complex","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11613,67970,"GHA","Birdlife IBA",2001,"For storage only",28,"Anlo-Keta lagoon complex","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14801,67983,"GIN","RAPPAM",2007,"For storage only",28,"Ile Alcatraz","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14807,67983,"GIN","METT",2006,"For storage only",28,"Ile Alcatraz","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14808,67984,"GIN","METT",2006,"For storage only",28,"Iles Tristao","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14809,67986,"GIN","METT",2006,"For storage only",28,"Rio Pongo","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14823,67986,"GIN","Birdlife IBA",2001,"For storage only",28,"Rio Pongo","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14812,67987,"GIN","Birdlife IBA",2001,"For storage only",28,"Konkouré","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11694,68003,"ISL","Birdlife IBA",2013,"For storage only",28,"Myvatn-Laxá region","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14932,68012,"IRN","METT",2013,"For storage only",28,"Lake Parishan & Dasht-e-Arjan","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14925,68014,"IRN","Birdlife IBA",1994,"For storage only",28,"Lake Gori","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11808,68092,"KEN","Birdlife IBA",1999,"For storage only",28,"Lake Nakuru","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9638,68093,"LIE","METT",2017,"For storage only",22,"Ruggeller Riet","Ramsar Site, Wetland of International Importance","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -12512,68135,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12517,68135,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12518,68135,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12516,68135,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12514,68135,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12511,68135,"PAN","METT",2006,"For storage only",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12515,68135,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13068,68151,"SEN","RAPPAM",2009,"For storage only",28,"Djoudj","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13069,68151,"SEN","RAPPAM",2011,"For storage only",28,"Djoudj","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13066,68153,"SEN","Birdlife IBA",2001,"For storage only",28,"Delta du Saloum","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13073,68154,"SEN","RAPPAM",2011,"For storage only",28,"Gueumbeul","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13074,68154,"SEN","METT",0,"For storage only",28,"Gueumbeul","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21447,68168,"ZAF","Birdlife IBA",2013,"For storage only",28,"St. Lucia System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21758,68168,"ZAF","RAPPAM",2001,"For storage only",28,"St. Lucia System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21851,68171,"ZAF","METT",2007,"For storage only",28,"Verlorenvlei","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21852,68171,"ZAF","METT",2010,"For storage only",28,"Verlorenvlei","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21850,68171,"ZAF","METT",2005,"For storage only",28,"Verlorenvlei","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21445,68174,"ZAF","Birdlife IBA",1998,"For storage only",28,"Lake Sibaya","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14670,68185,"ESP","Birdlife IBA",2008,"For storage only",28,"Complejo intermareal Umia-Grove","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1279,68243,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Fochno & Dyfi","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1271,68247,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lindisfarne","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1273,68249,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Leven","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1274,68250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Lomond","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1275,68251,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Neagh & Lough Beg","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1276,68252,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minsmere - Walberswick","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1277,68253,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Norfolk Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1278,68254,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ouse Washes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1260,68255,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rannoch Moor","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1298,68256,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairngorm Lochs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1299,68257,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Lintrathen","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1300,68258,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Claish Moss","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1301,68259,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Silver Flowe","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1302,68260,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abberton Reservoir","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1303,68261,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rostherne Mere","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1261,68262,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Dee Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1262,68263,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Swale","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1263,68264,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chesil Beach & The Fleet","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1264,68265,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Derwent Valley","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1296,68266,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holburn Lake & Moss","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1297,68267,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Irthinghead Mires","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1308,68268,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leighton Moss","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1304,68269,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Martin Mere","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1306,68271,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Skene","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1309,68272,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Eye","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1310,68273,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Solway Flats & Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1311,68274,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chichester and Langstone Harbours","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1312,68276,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wash","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1313,68277,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pagham Harbour","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1314,68278,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gruinart Flats, Islay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1315,68279,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eilean Na Muice Duibhe","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1316,68280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bridgend Flats, Islay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1317,68281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gladhouse Reservoir","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1318,68282,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Din Moss - Hoselaw Loch","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1307,68283,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fala Flow","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1320,68286,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch an Duin","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1338,68287,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redgrave and South Lopham Fens","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1324,68288,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rutland Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1325,68289,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Idwal","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1326,68290,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Tegid","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1327,68291,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Esthwaite Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1339,68292,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walmore Common","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1329,68293,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Exe Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1330,68295,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chippenham Fen","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1331,68296,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burry Inlet","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1332,68297,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ken & River Dee Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1337,68298,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Spynie","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1265,68299,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Caron","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1266,68300,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nene Washes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1267,68301,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roydon Common","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1269,68302,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Tayside Goose Roosts","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1281,68303,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hamford Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1282,68304,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crymlyn Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -12830,68347,"RUS","RAPPAM",2001,"For storage only",28,"Kenozersky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28296,68348,"RUS","METT",2008,"For storage only",28,"Kurshskaya Kosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12860,68348,"RUS","RAPPAM",2001,"For storage only",28,"Kurshskaya Kosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28288,68348,"RUS","METT",2012,"For storage only",28,"Kurshskaya Kosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12906,68350,"RUS","RAPPAM",2001,"For storage only",28,"Nizhnyaya Kama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12926,68351,"RUS","RAPPAM",2001,"For storage only",28,"Paanayarvi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12928,68351,"RUS","PANPARKS",2006,"For storage only",28,"Paanayarvi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12927,68351,"RUS","PANPARKS",2005,"For storage only",28,"Paanayarvi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12929,68351,"RUS","PANPARKS",2007,"For storage only",28,"Paanayarvi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12952,68352,"RUS","RAPPAM",2001,"For storage only",28,"Russky Sever","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12969,68353,"RUS","METT",2006,"For storage only",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12968,68353,"RUS","METT",2008,"For storage only",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12984,68353,"RUS","METT",2011,"For storage only",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12967,68353,"RUS","METT",2005,"For storage only",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12966,68353,"RUS","METT",2003,"For storage only",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12970,68353,"RUS","RAPPAM",2001,"For storage only",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12978,68354,"RUS","RAPPAM",2001,"For storage only",28,"Smolenskoye Poozer'e / Smolemsk Lakeland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12999,68355,"RUS","RAPPAM",2001,"For storage only",28,"Taganai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12997,68355,"RUS","METT",2003,"For storage only",28,"Taganai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12998,68355,"RUS","METT",2005,"For storage only",28,"Taganai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13031,68357,"RUS","RAPPAM",2001,"For storage only",28,"Valdaisky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13040,68358,"RUS","RAPPAM",2001,"For storage only",28,"Vodlozersky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12885,68359,"RUS","RAPPAM",2001,"For storage only",28,"Meschera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12934,68361,"RUS","RAPPAM",2001,"For storage only",28,"Plescheevo Ozero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12854,68431,"RUS","METT",2007,"For storage only",28,"Kunovatsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12853,68431,"RUS","METT",2005,"For storage only",28,"Kunovatsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12855,68431,"RUS","METT",2008,"For storage only",28,"Kunovatsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12758,68518,"RUS","RAPPAM",2001,"For storage only",28,"Bolshaya Kokshaga","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12819,68519,"RUS","METT",2008,"For storage only",28,"Katunsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12822,68519,"RUS","METT",2005,"For storage only",28,"Katunsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12823,68519,"RUS","RAPPAM",2001,"For storage only",28,"Katunsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12821,68519,"RUS","METT",2003,"For storage only",28,"Katunsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13037,68546,"RUS","RAPPAM",2001,"For storage only",28,"Vishersky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12920,68547,"RUS","RAPPAM",2001,"For storage only",28,"Orenburgsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12921,68547,"RUS","METT",2009,"For storage only",28,"Orenburgsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12784,68549,"RUS","METT",2009,"For storage only",28,"Chernye Zemli","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12783,68549,"RUS","RAPPAM",2001,"For storage only",28,"Chernye Zemli","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12782,68579,"RUS","RAPPAM",2001,"For storage only",28,"Chavash Varmane","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12940,68580,"RUS","RAPPAM",2001,"For storage only",28,"Pripyshmenskie Bory","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11615,68788,"GHA","METT",2003,"For storage only",28,"Kyabobo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11616,68788,"GHA","RAPPAM",2002,"For storage only",28,"Kyabobo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11865,68856,"KHM","Birdlife IBA",2006,"For storage only",28,"Preah Monivong (Bokor)","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11854,68857,"KHM","RAPPAM",2004,"For storage only",28,"Kep","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11879,68859,"KHM","RAPPAM",2004,"For storage only",28,"Ream","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11866,68861,"KHM","RAPPAM",2004,"For storage only",28,"Phnom Kulen","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11890,68862,"KHM","Asean MEE",2012,"For storage only",28,"Virachey","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11891,68862,"KHM","RAPPAM",2004,"For storage only",28,"Virachey","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11863,68864,"KHM","RAPPAM",2004,"For storage only",28,"Peam Krasop","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11871,68865,"KHM","Birdlife IBA",2005,"For storage only",28,"Phnom Samkos","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11872,68865,"KHM","RAPPAM",2004,"For storage only",28,"Phnom Samkos","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11847,68867,"KHM","RAPPAM",2004,"For storage only",28,"Beng Per","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11867,68868,"KHM","RAPPAM",2004,"For storage only",28,"Pnom Namlear","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11882,68869,"KHM","RAPPAM",2004,"For storage only",28,"Snoul","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11846,68870,"KHM","RAPPAM",2004,"For storage only",28,"Banteay Chhmar","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11853,68871,"KHM","RAPPAM",2004,"For storage only",28,"Dong Peng","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11881,68872,"KHM","RAPPAM",2004,"For storage only",28,"Samlaut","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15107,68917,"PHL","WHA Outlook Report",2014,"For storage only",28,"Tubbataha Reefs Natural Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20725,68918,"MEX","Ecological Evaluation Score Cards",2012,"For storage only",33,"Whale Sanctuary of El Vizcaino","World Heritage Site","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20726,68918,"MEX","How is your MPA doing?",2016,"For storage only",33,"Whale Sanctuary of El Vizcaino","World Heritage Site","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20724,68918,"MEX","Ecological Evaluation Score Cards",2008,"For storage only",33,"Whale Sanctuary of El Vizcaino","World Heritage Site","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -16421,70931,"AUS","NSW SOP",2013,"For storage only",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16422,70931,"AUS","NSW SOP",2004,"For storage only",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16418,70931,"AUS","NSW SOP",2005,"For storage only",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16420,70931,"AUS","NSW SOP",2010,"For storage only",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16419,70931,"AUS","NSW SOP",2007,"For storage only",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16093,70967,"AUS","Victorian SOP",2010,"For storage only",28,"Bunurong Marine Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16095,70967,"AUS","Victorian SOP",2005,"For storage only",28,"Bunurong Marine Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16097,70967,"AUS","Victorian SOP",2013,"For storage only",28,"Bunurong Marine Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15006,71020,"LCA","RAPPAM",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1090,71235,"EST","METT",2012,"For storage only",15,"Alam-Pedja looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -14151,71337,"VNM","METT",2010,"For storage only",28,"Hoang Lien-Van Ban","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14152,71337,"VNM","METT",2011,"For storage only",28,"Hoang Lien-Van Ban","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20598,71350,"MMR","Asean MEE",2012,"For storage only",28,"Khakaborazi","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20643,71364,"PNG","RAPPAM",2004,"For storage only",28,"Mt Wilhelm National Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11166,72312,"COD","METT",2010,"For storage only",28,"Itombwe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11167,72312,"COD","RAPPAM",2010,"For storage only",28,"Itombwe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10597,72320,"GAB","IMET",2015,"For storage only",27,"Akanda","National Park","JRC IMET information","JRC",2018,"English",FALSE -28284,72324,"GAB","METT",2013,"For storage only",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11593,72324,"GAB","METT",2005,"For storage only",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10598,72324,"GAB","IMET",2015,"For storage only",27,"Minkebe","National Park","JRC IMET information","JRC",2018,"English",FALSE -11592,72324,"GAB","METT",2004,"For storage only",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11595,72324,"GAB","RAPPAM",2010,"For storage only",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11596,72324,"GAB","METT",2010,"For storage only",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11225,72332,"COG","METT",2013,"For storage only",28,"Nouabalé-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11224,72332,"COG","METT",2007,"For storage only",28,"Nouabalé-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11223,72332,"COG","RAPPAM",2012,"For storage only",28,"Nouabalé-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -49,77777,"USA","Valdiviana",2001,"For storage only",3,"Boswell Bay Beaches","State Marine Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -391,81060,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Marinho Dos Abrolhos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -729,81060,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Marinho Dos Abrolhos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -14485,81072,"ECU","Ecuador MEE",1999,"For storage only",28,"Sumaco Napo-Galeras","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14426,81073,"ECU","Ecuador MEE",1999,"For storage only",28,"Antisana","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14427,81073,"ECU","PIP Site Consolidation",2004,"For storage only",28,"Antisana","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22242,81074,"CHE","Annual Report",2015,"For storage only",37,"Ermatinger Becken","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22243,81075,"CHE","Annual Report",2015,"For storage only",37,"Stein am Rhein","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22244,81076,"CHE","Annual Report",2015,"For storage only",37,"Klingnauerstausee","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22245,81077,"CHE","Annual Report",2015,"For storage only",37,"Chevroux jusqu'à Portalban","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22246,81078,"CHE","Annual Report",2015,"For storage only",37,"Col de Bretolet","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22247,81079,"CHE","Annual Report",2015,"For storage only",37,"Witi","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -11933,81080,"MKD","METT",0,"For storage only",28,"Cham Chiflik","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11944,81083,"MKD","METT",0,"For storage only",28,"Kale Banjicko","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11971,81084,"MKD","METT",0,"For storage only",28,"Prevalec","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11945,81085,"MKD","METT",0,"For storage only",28,"Kalnica","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11948,81086,"MKD","METT",0,"For storage only",28,"Karaslari","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28204,81224,"ROU","METT",2012,"For storage only",28,"Semenic - Cheile Carasului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12716,81224,"ROU","RAPPAM",2006,"For storage only",28,"Semenic - Cheile Carasului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9062,87075,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beagh Big","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9031,87076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9089,87077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrickbrawn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8993,87078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleggan Valley","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9065,87079,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumlisaleen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8981,87080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garry Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9071,87081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garvros","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8987,87082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenariff","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8977,87083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gortnagory","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9066,87084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lergan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9021,87085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Beg","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9074,87086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monawilkin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9041,87087,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moneendogue","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9026,87088,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moneygal Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9028,87089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teal Lough & Slaghtfreeden Bogs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -11394,92413,"DNK","Birdlife IBA",2010,"For storage only",28,"Skast og Kogsbøl Moser","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11417,92423,"DNK","Birdlife IBA",2006,"For storage only",28,"Mandø","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -7110,92992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foxwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -13878,93291,"USA","WHA Outlook Report",2014,"For storage only",28,"Carlsbad Caverns National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14902,93292,"SVK;HUN","WHA Outlook Report",2014,"For storage only",28,"Caves of Aggtelek Karst and Slovak Karst","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13036,93294,"RUS","WHA Outlook Report",2014,"For storage only",28,"Virgin Komi Forests","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13945,93295,"CAN;USA","WHA Outlook Report",2014,"For storage only",28,"Waterton Glacier International Peace Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20712,93298,"SVK","CCPAMET",2017,"For storage only",32,"Strazovske vrchy","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -109,93409,"ARG","GOBI Survey",2009,"For storage only",3,"Yabotí","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -12017,93518,"MNG","RAPPAM",2005,"For storage only",28,"Numrug","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12001,93533,"MNG","RAPPAM",2005,"For storage only",28,"Khan Khentii","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12000,93533,"MNG","METT",2012,"For storage only",28,"Khan Khentii","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12011,93536,"MNG","METT",2012,"For storage only",28,"Khukh Serkhyn range","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12013,93538,"MNG","RAPPAM",2005,"For storage only",28,"Mongol Daguur","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12020,93541,"MNG","RAPPAM",2005,"For storage only",28,"Otgontenger mountain","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12028,93566,"MNG","METT",2005,"For storage only",28,"Altan Els","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12029,93566,"MNG","RAPPAM",2005,"For storage only",28,"Altan Els","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12030,93566,"MNG","METT",2012,"For storage only",28,"Altan Els","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12012,93579,"MNG","RAPPAM",2005,"For storage only",28,"Khuvsgul","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11996,93580,"MNG","RAPPAM",2005,"For storage only",28,"Gobi Gurvansaikhan range","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11997,93582,"MNG","RAPPAM",2005,"For storage only",28,"Gorkhi - Terelj","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10816,93900,"BLR","METT",2009,"For storage only",28,"Sporovskiy","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10808,93900,"BLR","METT",2012,"For storage only",28,"Sporovskiy","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10815,93900,"BLR","METT",2005,"For storage only",28,"Sporovskiy","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10817,93917,"BLR","METT",2011,"For storage only",28,"Yelnya","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10683,93999,"ARM","METT",2012,"For storage only",28,"Gyulagarak","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10682,93999,"ARM","METT",2009,"For storage only",28,"Gyulagarak","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10664,94004,"ARM","METT",2009,"For storage only",28,"Arzakan-Meghradzor","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10665,94004,"ARM","METT",2012,"For storage only",28,"Arzakan-Meghradzor","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13814,94043,"UKR","RAPPAM",2008,"For storage only",28,"Ukrainskiy Stepnoy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20604,94072,"LTU","METT",2007,"For storage only",28,"Cepkeliai","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20609,94073,"LTU","METT",2006,"For storage only",28,"Kamanos","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1284,94081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Malham Tarn","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1341,94082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Medway Estuary & Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1342,94083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stodmarsh","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1285,94084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thursley & Ockley Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1286,94085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benfleet & Southend Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1340,94086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cameron Reservoir","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1344,94089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Midland Meres & Mosses","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -14362,94110,"CHL","METT",2004,"For storage only",28,"Lahuen Nadi","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14363,94110,"CHL","METT",2010,"For storage only",28,"Lahuen Nadi","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14310,94111,"CHL","RAPPAM",2005,"For storage only",28,"Altos de Lircay","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14387,94115,"CHL","METT",2010,"For storage only",28,"Nevado Tres Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14388,94115,"CHL","METT",0,"For storage only",28,"Nevado Tres Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14372,94116,"CHL","METT",0,"For storage only",28,"Bellotos El Melado","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14373,94116,"CHL","RAPPAM",2005,"For storage only",28,"Bellotos El Melado","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14311,94116,"CHL","METT",2010,"For storage only",28,"Bellotos El Melado","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14376,94117,"CHL","RAPPAM",2005,"For storage only",28,"Los Queules","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14382,94118,"CHL","METT",0,"For storage only",28,"Mocho - Choshuenco","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14383,94118,"CHL","METT",2010,"For storage only",28,"Mocho - Choshuenco","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14403,94119,"CHL","RAPPAM",2005,"For storage only",28,"Radal Siete Tazas","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14401,94119,"CHL","METT",0,"For storage only",28,"Radal Siete Tazas","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14336,95209,"CHL","RAPPAM",2005,"For storage only",28,"Futaleufu","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14335,95209,"CHL","METT",2004,"For storage only",28,"Futaleufu","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14337,95209,"CHL","METT",2010,"For storage only",28,"Futaleufu","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13824,95268,"URY","METT",2005,"For storage only",28,"Bosques del Río Negro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13825,95268,"URY","METT",2009,"For storage only",28,"Bosques del Río Negro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1283,95280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The New Forest","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1287,95287,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dengie","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1343,95288,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Kinnordy","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1345,95290,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stour & Orwell Estuaries","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1346,95291,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Humber Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1347,95292,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thanet Coast & Sandwich Bay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1348,95293,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colne Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1349,95294,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Maree","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1270,95295,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broadland","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1350,95296,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Montrose Basin","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1305,95297,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ribble & Alt Estuaries","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1351,95298,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portsmouth Harbour","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1352,95299,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crouch & Roach Estuaries","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1353,95300,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coll","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1405,95301,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackwater Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1280,95302,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Severn Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1354,95303,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teesmouth & Cleveland Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1288,95304,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dersingham Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1289,95305,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wicken Fen","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1355,95306,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodwalton Fen","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1356,95307,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Strathbeg","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1319,95308,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rinns of Islay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1357,95309,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westwater","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -11561,95332,"FRA","Birdlife IBA",2013,"For storage only",28,"Grande Briere","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22193,95339,"LVA","European Diploma",1967,"For storage only",28,"Lake Engure","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11903,95339,"LVA","METT",2006,"For storage only",28,"Lake Engure","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10629,95349,"MRT","IMET",2016,"For storage only",27,"Parc National du Diawling","Ramsar Site, Wetland of International Importance","JRC IMET information","JRC",2018,"English",FALSE -12107,95354,"NAM","Birdlife IBA",2001,"For storage only",28,"Sandwich Harbour","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12088,95356,"NAM","Birdlife IBA",2001,"For storage only",28,"Etosha Pan, Lake Oponono & Cuvelai drainage","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13035,95389,"RUS","Birdlife IBA",2006,"For storage only",28,"Veselovskoye Reservoir","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -841,95397,"TGO","METT",2013,"For storage only",10,"Parc national de la Keran","Ramsar Site, Wetland of International Importance","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French",FALSE -843,95398,"TGO","METT",2017,"For storage only",10,"Reserve de faune de Togodo Nord","Ramsar Site, Wetland of International Importance","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French",FALSE -13332,95399,"TUR","Birdlife IBA",2013,"For storage only",28,"Göksu Delta","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13329,95401,"TUR","Birdlife IBA",2011,"For storage only",28,"Lake Burdur","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13338,95403,"TUR","Birdlife IBA",2000,"For storage only",28,"Lake Kus","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11018,95450,"CHN","METT",2005,"For storage only",28,"Momoge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11019,95450,"CHN","METT",2007,"Not Reported",28,"Momoge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11020,95450,"CHN","METT",2008,"For storage only",28,"Momoge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11020,95450,"CHN","METT",2008,"Not Reported",28,"Momoge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11019,95450,"CHN","METT",2007,"For storage only",28,"Momoge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11018,95450,"CHN","METT",2005,"Not Reported",28,"Momoge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11061,95451,"CHN","METT",2009,"For storage only",28,"Xianghai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11061,95451,"CHN","METT",2009,"Not Reported",28,"Xianghai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10993,95467,"CHN","METT",2012,"For storage only",28,"Huzhong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10993,95467,"CHN","METT",2012,"Not Reported",28,"Huzhong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11068,95531,"CHN","Birdlife IBA",2010,"Not Reported",28,"Huanghesanjiaozhou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11067,95531,"CHN","METT",2011,"Not Reported",28,"Huanghesanjiaozhou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11068,95531,"CHN","Birdlife IBA",2010,"For storage only",28,"Huanghesanjiaozhou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11067,95531,"CHN","METT",2011,"For storage only",28,"Huanghesanjiaozhou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11005,95549,"CHN","METT",2012,"For storage only",28,"Changjiangxinluoduanbaijitun (Hubei)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11005,95549,"CHN","METT",2012,"Not Reported",28,"Changjiangxinluoduanbaijitun (Hubei)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11002,95550,"CHN","METT",2003,"Not Reported",28,"Houhe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11002,95550,"CHN","METT",2003,"For storage only",28,"Houhe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11004,95556,"CHN","METT",2012,"For storage only",28,"Changjiangtianeezhoubaijitun (Hubei)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11004,95556,"CHN","METT",2012,"Not Reported",28,"Changjiangtianeezhoubaijitun (Hubei)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11003,95557,"CHN","METT",2012,"For storage only",28,"Longganhu","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11003,95557,"CHN","METT",2012,"Not Reported",28,"Longganhu","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11006,95579,"CHN","METT",2003,"Not Reported",28,"Badagongshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11006,95579,"CHN","METT",2003,"For storage only",28,"Badagongshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10990,95596,"CHN","METT",2011,"For storage only",28,"Neilingding-futian","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10990,95596,"CHN","METT",2011,"Not Reported",28,"Neilingding-futian","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11030,95620,"CHN","METT",2009,"For storage only",28,"Nonggang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11031,95620,"CHN","METT",0,"For storage only",28,"Nonggang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11032,95620,"CHN","METT",2005,"For storage only",28,"Nonggang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11030,95620,"CHN","METT",2009,"Not Reported",28,"Nonggang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11031,95620,"CHN","METT",NA,"Not Reported",28,"Nonggang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11032,95620,"CHN","METT",2005,"Not Reported",28,"Nonggang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11017,95632,"CHN","METT",2005,"For storage only",28,"Maoershan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11017,95632,"CHN","METT",2005,"Not Reported",28,"Maoershan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11044,95655,"CHN","METT",2009,"For storage only",28,"Sanya Coral Reef National Nature Reserve","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11045,95655,"CHN","METT",2012,"For storage only",28,"Sanya Coral Reef National Nature Reserve","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11045,95655,"CHN","METT",2012,"Not Reported",28,"Sanya Coral Reef National Nature Reserve","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11044,95655,"CHN","METT",2009,"Not Reported",28,"Sanya Coral Reef National Nature Reserve","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11043,95655,"CHN","METT",2006,"For storage only",28,"Sanya Coral Reef National Nature Reserve","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11043,95655,"CHN","METT",2006,"Not Reported",28,"Sanya Coral Reef National Nature Reserve","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10992,95678,"CHN","METT",2012,"For storage only",28,"Xinyinghongshulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10992,95678,"CHN","METT",2012,"Not Reported",28,"Xinyinghongshulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11063,95691,"CHN","METT",2003,"For storage only",28,"Xiaozhaizigou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11063,95691,"CHN","METT",2003,"Not Reported",28,"Xiaozhaizigou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11055,95692,"CHN","METT",2003,"For storage only",28,"Wanglang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11055,95692,"CHN","METT",2003,"Not Reported",28,"Wanglang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11052,95693,"CHN","METT",2003,"For storage only",28,"Tangjiahe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11052,95693,"CHN","METT",2003,"Not Reported",28,"Tangjiahe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11057,95695,"CHN","METT",2003,"Not Reported",28,"Wolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11057,95695,"CHN","METT",2003,"For storage only",28,"Wolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11009,95716,"CHN","RAPPAM",2001,"For storage only",28,"Jiaozishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11009,95716,"CHN","RAPPAM",2001,"Not Reported",28,"Jiaozishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11048,95725,"CHN","RAPPAM",2001,"Not Reported",28,"Shibalianshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11048,95725,"CHN","RAPPAM",2001,"For storage only",28,"Shibalianshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11016,95727,"CHN","RAPPAM",2001,"For storage only",28,"Zhangmuqing","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11016,95727,"CHN","RAPPAM",2001,"Not Reported",28,"Zhangmuqing","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11058,95733,"CHN","RAPPAM",2001,"For storage only",28,"Shizishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11058,95733,"CHN","RAPPAM",2001,"Not Reported",28,"Shizishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11015,95734,"CHN","RAPPAM",2001,"For storage only",28,"Diaolingshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11015,95734,"CHN","RAPPAM",2001,"Not Reported",28,"Diaolingshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10987,95742,"CHN","Birdlife IBA",2008,"For storage only",28,"Jinpingfenshuiling","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10987,95742,"CHN","Birdlife IBA",2008,"Not Reported",28,"Jinpingfenshuiling","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10999,95743,"CHN","Birdlife IBA",2008,"For storage only",28,"Huanglianshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -10999,95743,"CHN","Birdlife IBA",2008,"Not Reported",28,"Huanglianshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -10976,95750,"CHN","Birdlife IBA",2008,"Not Reported",28,"Caiyanghe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10976,95750,"CHN","Birdlife IBA",2008,"For storage only",28,"Caiyanghe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11070,95770,"CHN","Birdlife IBA",2008,"For storage only",28,"Yulongxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11070,95770,"CHN","Birdlife IBA",2008,"Not Reported",28,"Yulongxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11027,95774,"CHN","Birdlife IBA",2008,"For storage only",28,"Napahai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11027,95774,"CHN","Birdlife IBA",2008,"Not Reported",28,"Napahai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11029,95776,"CHN","Birdlife IBA",2008,"For storage only",28,"Nangunhe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11029,95776,"CHN","Birdlife IBA",2008,"Not Reported",28,"Nangunhe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11051,95794,"CHN","METT",2003,"For storage only",28,"Taibaishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11051,95794,"CHN","METT",2003,"Not Reported",28,"Taibaishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10973,95843,"CHN","METT",2003,"Not Reported",28,"Baishuijiang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -10973,95843,"CHN","METT",2003,"For storage only",28,"Baishuijiang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -10996,95853,"CHN","METT",2006,"For storage only",28,"Hepu rugen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10997,95853,"CHN","METT",2009,"For storage only",28,"Hepu rugen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10998,95853,"CHN","METT",2012,"For storage only",28,"Hepu rugen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10996,95853,"CHN","METT",2006,"Not Reported",28,"Hepu rugen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10997,95853,"CHN","METT",2009,"Not Reported",28,"Hepu rugen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10998,95853,"CHN","METT",2012,"Not Reported",28,"Hepu rugen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10991,95861,"CHN","METT",2005,"For storage only",28,"Damingshanshuiyuanlin (Guangxi)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10991,95861,"CHN","METT",2005,"Not Reported",28,"Damingshanshuiyuanlin (Guangxi)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10978,96016,"CHN","METT",2003,"For storage only",28,"Changbaishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10978,96016,"CHN","METT",2003,"Not Reported",28,"Changbaishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11008,96033,"CHN","METT",0,"For storage only",28,"Dafengmilu (Jiangsu)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11008,96033,"CHN","METT",0,"Not Reported",28,"Dafengmilu (Jiangsu)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10995,96070,"CHN","METT",2006,"For storage only",28,"Helanshan (Ningxia)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10995,96070,"CHN","METT",2006,"Not Reported",28,"Helanshan (Ningxia)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11041,96077,"CHN","METT",2010,"For storage only",28,"Mengda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11041,96077,"CHN","METT",2010,"Not Reported",28,"Mengda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11040,96078,"CHN","METT",2010,"For storage only",28,"Qinghaihuniaodao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11040,96078,"CHN","METT",2010,"Not Reported",28,"Qinghaihuniaodao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11047,96090,"CHN","METT",2003,"Not Reported",28,"Foping","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11047,96090,"CHN","METT",2003,"For storage only",28,"Foping","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11014,96097,"CHN","METT",2003,"For storage only",28,"Longxihongkou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11014,96097,"CHN","METT",2003,"Not Reported",28,"Longxihongkou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11001,96103,"CHN","METT",2003,"For storage only",28,"Huanglongsi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11001,96103,"CHN","METT",2003,"Not Reported",28,"Huanglongsi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11011,96104,"CHN","METT",2003,"For storage only",28,"Jiuzhaigou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11011,96104,"CHN","METT",2003,"Not Reported",28,"Jiuzhaigou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10982,96129,"CHN","Birdlife IBA",2008,"For storage only",28,"Dashanbaoheijinghe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10982,96129,"CHN","Birdlife IBA",2008,"Not Reported",28,"Dashanbaoheijinghe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10977,96143,"CHN","Birdlife IBA",2008,"For storage only",28,"Cangshanerhai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10977,96143,"CHN","Birdlife IBA",2008,"Not Reported",28,"Cangshanerhai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10986,96145,"CHN","Birdlife IBA",2008,"For storage only",28,"Gaoligongshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10989,96145,"CHN","METT",2003,"Not Reported",28,"Gaoligongshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10989,96145,"CHN","METT",2003,"For storage only",28,"Gaoligongshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10986,96145,"CHN","Birdlife IBA",2008,"Not Reported",28,"Gaoligongshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10984,96148,"CHN","RAPPAM",2001,"Not Reported",28,"Yongdedaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -10984,96148,"CHN","RAPPAM",2001,"For storage only",28,"Yongdedaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11069,96148,"CHN","Birdlife IBA",2008,"Not Reported",28,"Yongdedaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11069,96148,"CHN","Birdlife IBA",2008,"For storage only",28,"Yongdedaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -10971,96156,"CHN","Birdlife IBA",2008,"For storage only",28,"Baimaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10971,96156,"CHN","Birdlife IBA",2008,"Not Reported",28,"Baimaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11071,96156,"CHN","METT",2003,"Not Reported",28,"Baimaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11071,96156,"CHN","METT",2003,"For storage only",28,"Baimaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11026,96178,"CHN","METT",2005,"For storage only",28,"Mulun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11026,96178,"CHN","METT",2005,"Not Reported",28,"Mulun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15001,97461,"LCA","RAPPAM",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15005,97463,"LCA","RAPPAM",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -92,97478,"ARG","Valdiviana",2001,"For storage only",3,"Rio Limay","Protected Nature Area - Protected Landscape","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -62,97479,"ARG","Valdiviana",2001,"For storage only",3,"Laguna Los Juncos","Wildlife Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -38,97481,"ARG","METT",2009,"For storage only",3,"Bahía de San Antonio","Protected Landscape","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -91,97483,"ARG","Valdiviana",2001,"For storage only",3,"Ría Azul - Lago Escondido","Protected Nature Area","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -14454,97512,"ECU","PIP Site Consolidation",2004,"For storage only",28,"Llanganates","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14453,97512,"ECU","Ecuador MEE",1999,"For storage only",28,"Llanganates","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14432,97513,"ECU","Ecuador MEE",1999,"For storage only",28,"Manglares Cayapas Mataje","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14440,97513,"ECU","METT",2009,"For storage only",28,"Manglares Cayapas Mataje","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -76,97545,"ARG","METT",2009,"For storage only",3,"Mburucuyá","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -11919,97566,"MDA","METT",2010,"For storage only",28,"Codru","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11926,97566,"MDA","METT",2008,"For storage only",28,"Codru","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28286,97566,"MDA","METT",2013,"For storage only",28,"Codru","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11929,97569,"MDA","METT",2008,"For storage only",28,"Prutul de jos","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11928,97570,"MDA","METT",2008,"For storage only",28,"Plaiul fagului","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11925,97570,"MDA","METT",2010,"For storage only",28,"Plaiul fagului","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28287,97570,"MDA","METT",2013,"For storage only",28,"Plaiul fagului","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11927,97571,"MDA","METT",2008,"For storage only",28,"Padurca Domneasca","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11930,97571,"MDA","METT",2011,"For storage only",28,"Padurca Domneasca","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11924,97653,"MDA","METT",2013,"For storage only",28,"Orhei Gorge","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11923,97653,"MDA","METT",2010,"For storage only",28,"Orhei Gorge","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -95,98129,"ARG","METT",2009,"For storage only",3,"Costa Atlántica Tierra del Fuego","Hemispheric Shorebird Reserve and Ramsar Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -46,98129,"ARG","METT",2012,"For storage only",3,"Costa Atlántica Tierra del Fuego","Hemispheric Shorebird Reserve and Ramsar Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -933,98158,"PER","METT",2016,"For storage only",13,"de Tumbes","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -942,98159,"PER","METT",2016,"For storage only",13,"Sub Cuenca del Cotahuasi","Reservas Paisajísticas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -10865,98182,"BOL","RAPPAM",2004,"For storage only",28,"Cotapata","National Park and Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10861,98182,"BOL","MEMS",2001,"For storage only",28,"Cotapata","National Park and Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -938,98228,"PER","METT",2016,"For storage only",13,"Pucacuro","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -12378,99631,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12487,99631,"PAN","METT",0,"For storage only",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12384,99631,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12383,99631,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12385,99631,"PAN","METT",2010,"For storage only",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12381,99631,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12382,99631,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12379,99631,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12391,99632,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12386,99632,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12392,99632,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12389,99632,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12387,99632,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12390,99632,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15136,99651,"BLZ","Belize MEE",2009,"For storage only",29,"Bacalar Chico Marine Reserve","Bacalar Chico Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15221,99651,"BLZ","METT",2013,"For storage only",29,"Bacalar Chico Marine Reserve","Bacalar Chico Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15287,99652,"BLZ","METT",2013,"For storage only",29,"South Water Caye Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15288,99652,"BLZ","METT",2010,"For storage only",29,"South Water Caye Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15286,99652,"BLZ","Belize MEE",2009,"For storage only",29,"South Water Caye Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15197,99653,"BLZ","Belize MEE",2009,"For storage only",29,"Glover's Reef Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15273,99656,"BLZ","METT",2013,"For storage only",29,"Sapodilla Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15272,99656,"BLZ","Belize MEE",2009,"For storage only",29,"Sapodilla Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15274,99656,"BLZ","METT",2010,"For storage only",29,"Sapodilla Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -13794,99722,"UKR","RAPPAM",2008,"For storage only",28,"Luganskiy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11989,99844,"MNG","METT",2012,"For storage only",28,"Altai Tavan range","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11988,99844,"MNG","METT",2005,"For storage only",28,"Altai Tavan range","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11987,99844,"MNG","RAPPAM",2005,"For storage only",28,"Altai Tavan range","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12015,99848,"MNG","METT",0,"For storage only",28,"Ikh nart","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11999,99848,"MNG","METT",2013,"For storage only",28,"Ikh nart","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10594,99855,"COG","IMET",2016,"For storage only",27,"Tchimpounga","Wildlife Sanctuary","JRC IMET information","JRC",2018,"English",FALSE -11235,99855,"COG","RAPPAM",2012,"For storage only",28,"Tchimpounga","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10595,99862,"COG","IMET",2015,"For storage only",27,"Lessio-Louna","Wildlife Sanctuary","JRC IMET information","JRC",2018,"English",FALSE -11221,99862,"COG","RAPPAM",2012,"For storage only",28,"Lessio-Louna","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13910,99998,"USA","Birdlife IBA",2009,"For storage only",28,"Kilauea Point","National Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11745,100017,"KAZ","Birdlife IBA",2005,"For storage only",28,"Altun Emel","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11765,100017,"KAZ","METT",2012,"For storage only",28,"Altun Emel","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11748,100018,"KAZ","METT",2011,"For storage only",28,"Ele Alatau","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11750,100018,"KAZ","METT",2009,"For storage only",28,"Ele Alatau","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11749,100018,"KAZ","METT",2006,"For storage only",28,"Ele Alatau","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11946,100037,"MKD","METT",0,"For storage only",28,"Matka Canyon","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11932,100037,"MKD","METT",2011,"For storage only",28,"Matka Canyon","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21977,100660,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Kejimkujik National Park and National Historic Site of Canada (Seaside Adjunct)","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21978,100672,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Ivvavik National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21972,100673,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Vuntut National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21990,100676,"CAN","Ecological Integrity Monitoring",2017,"For storage only",36,"Aulavik National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -14903,100798,"HUN","Wetland tracking tool",2005,"For storage only",28,"Duna-Dráva","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1096,101286,"EST","METT",2012,"For storage only",15,"Loodi looduspark","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1082,101304,"EST","METT",2010,"For storage only",15,"Naissaare looduspark","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1099,101310,"EST","METT",2012,"For storage only",15,"Ontika maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1080,101316,"EST","METT",2010,"For storage only",15,"Panga maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -20893,101407,"IDN","METT",2015,"For storage only",35,"Lembah Harau","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20730,101409,"MEX","Ecological Evaluation Score Cards",2013,"For storage only",33,"Alto Golfo de California y Delta del Río Colorado","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20729,101409,"MEX","Ecological Evaluation Score Cards",2008,"For storage only",33,"Alto Golfo de California y Delta del Río Colorado","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20989,101410,"IDN","METT",2015,"For storage only",35,"Pulau Rempang","Game Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20756,101416,"MEX","METT",2014,"For storage only",33,"Sierra del Abra Tanchipa","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20749,101431,"MEX","METT",2014,"For storage only",33,"Maderas del Carmen","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -10577,101434,"BDI","IMET",2016,"For storage only",27,"Forêt de Vyanda","Nature Reserve","JRC IMET information","JRC",2018,"English",FALSE -20747,101457,"MEX","METT",2014,"For storage only",33,"Cañón de Santa Elena","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20924,101486,"IDN","METT",2015,"For storage only",35,"Pulau Anak Krakatau","Marine Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20904,101584,"IDN","METT",2015,"For storage only",35,"Nusakambangan Barat","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21961,101586,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Wapusk National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21988,101590,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Tuktut Nogait National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -20988,101798,"IDN","METT",2015,"For storage only",35,"Pulau Moyo","Marine Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20993,101824,"IDN","METT",2015,"For storage only",35,"Ngurah Rai","Grand Forest Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -13324,101837,"TUN","METT",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10805,101855,"BLR","METT",2007,"For storage only",28,"Braslavskie Ozera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10813,101859,"BLR","METT",2005,"For storage only",28,"Prostyr","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10814,101859,"BLR","METT",2009,"For storage only",28,"Prostyr","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10807,101859,"BLR","METT",2012,"For storage only",28,"Prostyr","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13064,101910,"SAU","Birdlife IBA",2013,"For storage only",28,"Ibex Reserve (Hawtat Bani Tamin)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22168,101951,"FIN","RAPPAM",2004,"For storage only",28,"Valkmusan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22116,101964,"FIN","RAPPAM",2004,"For storage only",28,"Puurijärven ja Isonsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22113,101964,"FIN","Birdlife IBA",2010,"For storage only",28,"Puurijärven ja Isonsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22082,101965,"FIN","RAPPAM",2004,"For storage only",28,"Nuuksion kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22079,101965,"FIN","Birdlife IBA",2010,"For storage only",28,"Nuuksion kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22097,101966,"FIN","RAPPAM",2004,"For storage only",28,"Päijänteen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22135,101968,"FIN","RAPPAM",2004,"For storage only",28,"Ruunaan luonnonsuojelualue","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22132,101968,"FIN","Birdlife IBA",2010,"For storage only",28,"Ruunaan luonnonsuojelualue","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22169,101976,"FIN","Birdlife IBA",2010,"For storage only",28,"Valtavaaran ja Pyhävaaran luonnonsuojelualue","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22066,102003,"FIN","Birdlife IBA",2010,"For storage only",28,"Lapiosuon-Ison Äijönsuon soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22074,102004,"FIN","Birdlife IBA",2010,"For storage only",28,"Martimoaavan-Lumiaavan-Penikoiden soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22033,102005,"FIN","Birdlife IBA",2010,"For storage only",28,"Kilsiaavan-Ristivuoman soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22017,102007,"FIN","Birdlife IBA",2010,"For storage only",28,"Juortanansalon-Lapinsuon soidensuojelualue (Ystävyyden p.)","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22125,102013,"FIN","Birdlife IBA",2010,"For storage only",28,"Rumalan-Kuvajan-Oudonrimpien soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22175,102016,"FIN","Birdlife IBA",2010,"For storage only",28,"Veittiaavan soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12504,102216,"HND","PROARCA/CAPAS",2001,"For storage only",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12510,102216,"HND","PROARCA/CAPAS",2006,"For storage only",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12198,102216,"HND","PROARCA/CAPAS",0,"For storage only",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12509,102216,"HND","PROARCA/CAPAS",2005,"For storage only",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12507,102216,"HND","PROARCA/CAPAS",2003,"For storage only",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12508,102216,"HND","PROARCA/CAPAS",2004,"For storage only",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12505,102216,"HND","PROARCA/CAPAS",2002,"For storage only",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -851,102224,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2011,"For storage only",11,"Lower Odra Valley","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -13816,102250,"UKR","RAPPAM",2008,"For storage only",28,"Vyzhnetskiy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13798,102251,"UKR","RAPPAM",2008,"For storage only",28,"Podolskie Tovtry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12398,102252,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12396,102252,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12394,102252,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12397,102252,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12393,102252,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12399,102252,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1003,102300,"CRI","SINAD",2016,"For storage only",14,"Cabo Blanco","Reserva Natural Absoluta","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1021,102304,"CRI","SINAD",2016,"For storage only",14,"Fernando Castro","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1036,102310,"CRI","SINAD",2016,"For storage only",14,"Las Baulas","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1047,102311,"CRI","SINAD",2016,"For storage only",14,"Nicolás Wessberg","Reserva Natural Absoluta","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -993,102320,"CRI","SINAD",2016,"For storage only",14,"Abangares","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1028,102321,"CRI","SINAD",2016,"For storage only",14,"Iguanita","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1006,102322,"CRI","SINAD",2016,"For storage only",14,"Camaronal","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1034,102332,"CRI","SINAD",2016,"For storage only",14,"Junquillal","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1066,102334,"CRI","SINAD",2016,"For storage only",14,"Volcán Tenorio","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28280,102334,"CRI","METT",2011,"For storage only",28,"Volcán Tenorio","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28064,102334,"CRI","METT",2006,"For storage only",28,"Volcán Tenorio","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -994,102337,"CRI","SINAD",2016,"For storage only",14,"Alberto Manuel Brenes","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1009,102351,"CRI","SINAD",2016,"For storage only",14,"Cerro Vueltas","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -28276,102367,"CRI","METT",2011,"For storage only",28,"Piedras Blancas","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28060,102367,"CRI","METT",2006,"For storage only",28,"Piedras Blancas","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1050,102367,"CRI","SINAD",2016,"For storage only",14,"Piedras Blancas","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -15323,102535,"AUS","NSW SOP",2010,"For storage only",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15321,102535,"AUS","NSW SOP",2005,"For storage only",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15326,102535,"AUS","NSW SOP",2004,"For storage only",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15324,102535,"AUS","NSW SOP",2013,"For storage only",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15322,102535,"AUS","NSW SOP",2007,"For storage only",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15613,102537,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15614,102537,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15615,102537,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15611,102537,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15612,102537,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15820,102538,"AUS","NSW SOP",2010,"For storage only",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15818,102538,"AUS","NSW SOP",2005,"For storage only",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15822,102538,"AUS","NSW SOP",2004,"For storage only",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15819,102538,"AUS","NSW SOP",2007,"For storage only",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15821,102538,"AUS","NSW SOP",2013,"For storage only",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15825,102539,"AUS","NSW SOP",2010,"For storage only",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15826,102539,"AUS","NSW SOP",2013,"For storage only",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15823,102539,"AUS","NSW SOP",2005,"For storage only",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15827,102539,"AUS","NSW SOP",2004,"For storage only",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15824,102539,"AUS","NSW SOP",2007,"For storage only",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16433,102541,"AUS","NSW SOP",2005,"For storage only",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16437,102541,"AUS","NSW SOP",2004,"For storage only",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16434,102541,"AUS","NSW SOP",2007,"For storage only",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16435,102541,"AUS","NSW SOP",2010,"For storage only",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16436,102541,"AUS","NSW SOP",2013,"For storage only",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16474,102543,"AUS","NSW SOP",2007,"For storage only",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16477,102543,"AUS","NSW SOP",2013,"For storage only",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16476,102543,"AUS","NSW SOP",2004,"For storage only",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16473,102543,"AUS","NSW SOP",2005,"For storage only",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16475,102543,"AUS","NSW SOP",2010,"For storage only",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16588,102544,"AUS","NSW SOP",2010,"For storage only",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16589,102544,"AUS","NSW SOP",2013,"For storage only",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16587,102544,"AUS","NSW SOP",2007,"For storage only",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16590,102544,"AUS","NSW SOP",2004,"For storage only",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16586,102544,"AUS","NSW SOP",2005,"For storage only",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16717,102546,"AUS","NSW SOP",2013,"For storage only",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16716,102546,"AUS","NSW SOP",2004,"For storage only",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16714,102546,"AUS","NSW SOP",2007,"For storage only",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16713,102546,"AUS","NSW SOP",2005,"For storage only",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16715,102546,"AUS","NSW SOP",2010,"For storage only",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16890,102547,"AUS","NSW SOP",2013,"For storage only",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16888,102547,"AUS","NSW SOP",2007,"For storage only",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16891,102547,"AUS","NSW SOP",2004,"For storage only",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16887,102547,"AUS","NSW SOP",2005,"For storage only",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16889,102547,"AUS","NSW SOP",2010,"For storage only",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16996,102548,"AUS","NSW SOP",2005,"For storage only",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17000,102548,"AUS","NSW SOP",2004,"For storage only",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16999,102548,"AUS","NSW SOP",2013,"For storage only",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16997,102548,"AUS","NSW SOP",2007,"For storage only",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16998,102548,"AUS","NSW SOP",2010,"For storage only",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17117,102551,"AUS","NSW SOP",2004,"For storage only",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17115,102551,"AUS","NSW SOP",2010,"For storage only",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17113,102551,"AUS","NSW SOP",2005,"For storage only",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17116,102551,"AUS","NSW SOP",2013,"For storage only",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17114,102551,"AUS","NSW SOP",2007,"For storage only",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17214,102552,"AUS","NSW SOP",2010,"For storage only",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17212,102552,"AUS","NSW SOP",2005,"For storage only",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17213,102552,"AUS","NSW SOP",2007,"For storage only",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17216,102552,"AUS","NSW SOP",2004,"For storage only",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17215,102552,"AUS","NSW SOP",2013,"For storage only",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17853,102553,"AUS","NSW SOP",2005,"For storage only",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17854,102553,"AUS","NSW SOP",2007,"For storage only",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17855,102553,"AUS","NSW SOP",2010,"For storage only",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17856,102553,"AUS","NSW SOP",2013,"For storage only",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17857,102553,"AUS","NSW SOP",2004,"For storage only",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18380,102554,"AUS","NSW SOP",2007,"For storage only",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18381,102554,"AUS","NSW SOP",2010,"For storage only",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18379,102554,"AUS","NSW SOP",2005,"For storage only",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18378,102554,"AUS","NSW SOP",2004,"For storage only",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18382,102554,"AUS","NSW SOP",2013,"For storage only",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18506,102555,"AUS","NSW SOP",2013,"For storage only",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18507,102555,"AUS","NSW SOP",2004,"For storage only",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18505,102555,"AUS","NSW SOP",2010,"For storage only",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18503,102555,"AUS","NSW SOP",2005,"For storage only",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18504,102555,"AUS","NSW SOP",2007,"For storage only",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18982,102556,"AUS","NSW SOP",2007,"For storage only",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18984,102556,"AUS","NSW SOP",2013,"For storage only",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18985,102556,"AUS","NSW SOP",2004,"For storage only",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18981,102556,"AUS","NSW SOP",2005,"For storage only",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18983,102556,"AUS","NSW SOP",2010,"For storage only",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19564,102558,"AUS","NSW SOP",2013,"For storage only",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19561,102558,"AUS","NSW SOP",2005,"For storage only",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19565,102558,"AUS","NSW SOP",2004,"For storage only",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19563,102558,"AUS","NSW SOP",2010,"For storage only",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19562,102558,"AUS","NSW SOP",2007,"For storage only",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18357,102569,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Granya","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18358,102569,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Granya","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18356,102569,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Granya","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20188,102573,"AUS","Victorian SOP",2005,"For storage only",28,"Yarra Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20190,102573,"AUS","Victorian SOP",2013,"For storage only",28,"Yarra Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20189,102573,"AUS","Victorian SOP",2010,"For storage only",28,"Yarra Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16316,102674,"AUS","Tasmanian WHA",2004,"For storage only",28,"Central Plateau","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1161,102717,"GTM","PIP Site Consolidation",2015,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1167,102717,"GTM","PIP Site Consolidation",2013,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1157,102717,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1160,102717,"GTM","PIP Site Consolidation",2000,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1158,102717,"GTM","PIP Site Consolidation",1998,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1166,102717,"GTM","PIP Site Consolidation",2014,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1159,102717,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1165,102717,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1162,102717,"GTM","PROARCA/CAPAS",2002,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1164,102717,"GTM","PIP Site Consolidation",1999,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1163,102717,"GTM","PIP Site Consolidation",2001,"For storage only",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1169,102817,"GTM","Parks profiles",2014,"For storage only",16,"Naachtún - Dos Lagunas","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1168,102817,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Naachtún - Dos Lagunas","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1170,102817,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Naachtún - Dos Lagunas","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1171,102817,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Naachtún - Dos Lagunas","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1174,102855,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Cordillera Alux","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1173,102855,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Cordillera Alux","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1172,102855,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Cordillera Alux","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1175,102855,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Cordillera Alux","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -848,103142,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"For storage only",11,"Harz","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -20757,103166,"MEX","METT",2014,"For storage only",33,"Sierra Gorda","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20744,103168,"MEX","RAPPAM",2013,"For storage only",33,"Yum Balam","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20745,103168,"MEX","METT",2014,"For storage only",33,"Yum Balam","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -10643,103547,"ALB","Birdlife IBA",2013,"For storage only",28,"Karavasta Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11806,103549,"KEN","Birdlife IBA",1999,"For storage only",28,"Lake Naivasha","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12762,103550,"RUS","RAPPAM",2001,"For storage only",28,"Brekhovsky Islands in the Yenisei estuary","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20619,106683,"PNG","RAPPAM",2004,"For storage only",28,"Crater Mountain","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1177,107034,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Cuenca del Lago Atitlán","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1176,107034,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Cuenca del Lago Atitlán","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1178,107034,"GTM","PROARCA/CAPAS",2003,"For storage only",16,"Cuenca del Lago Atitlán","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1179,107034,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Cuenca del Lago Atitlán","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1181,107088,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"La Vega del Zope","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1180,107088,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"La Vega del Zope","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1183,107096,"GTM","PROARCA/CAPAS",2016,"For storage only",16,"Parque Nacional Las Victorias","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1182,107096,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Parque Nacional Las Victorias","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1184,107119,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Naciones Unidas","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1186,107119,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Naciones Unidas","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1189,107132,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1190,107132,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1187,107132,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1188,107132,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1191,107132,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1192,107152,"GTM","METT",2013,"For storage only",16,"Todos Santos Cuchumatán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1194,107152,"GTM","METT",2014,"For storage only",16,"Todos Santos Cuchumatán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1193,107152,"GTM","METT",2015,"For storage only",16,"Todos Santos Cuchumatán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -12143,107231,"NIC","METT",2012,"For storage only",28,"Cañon de Somoto","National Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12144,107231,"NIC","METT",2013,"For storage only",28,"Cañon de Somoto","National Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12159,107232,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Chocoyero El Brujo","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12160,107232,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Chocoyero El Brujo","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12400,107289,"PAN","METT",2006,"For storage only",28,"Damani-Guariviara","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12401,107289,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Damani-Guariviara","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12402,107289,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Damani-Guariviara","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12286,107292,"PAN","METT",2006,"For storage only",28,"Donoso","Multiple Use Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12281,107315,"PAN","PIP Site Consolidation",2003,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12437,107315,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12440,107315,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12435,107315,"PAN","METT",2006,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12282,107315,"PAN","PIP Site Consolidation",2004,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12450,107315,"PAN","METT",2009,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12438,107315,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12449,107315,"PAN","METT",2010,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12284,107315,"PAN","PIP Site Consolidation",2002,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12436,107315,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12283,107315,"PAN","PIP Site Consolidation",2005,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12439,107315,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12441,107315,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12472,107326,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12476,107326,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12475,107326,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12473,107326,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12477,107326,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12486,107334,"PAN","METT",0,"For storage only",28,"Narganá","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12534,107372,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12528,107372,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12535,107372,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12531,107372,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12533,107372,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12532,107372,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12557,107377,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12558,107377,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12556,107377,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12553,107377,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12552,107377,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12555,107377,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13115,107387,"SLV","PROARCA/CAPAS",2006,"For storage only",28,"Cerro Cacahuatique","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13114,107387,"SLV","PROARCA/CAPAS",2003,"For storage only",28,"Cerro Cacahuatique","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13113,107387,"SLV","PROARCA/CAPAS",2002,"For storage only",28,"Cerro Cacahuatique","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13131,107424,"SLV","PROARCA/CAPAS",2006,"For storage only",28,"Los C+¦banos","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13110,107426,"SLV","METT",2005,"For storage only",28,"Manglar Bah+¡a de Jiquilisco","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13132,107426,"SLV","METT",2010,"For storage only",28,"Manglar Bah+¡a de Jiquilisco","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13111,107427,"SLV","PROARCA/CAPAS",2001,"For storage only",28,"Manglar Barra de Santiago","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13112,107427,"SLV","PROARCA/CAPAS",2006,"For storage only",28,"Manglar Barra de Santiago","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13133,107436,"SLV","METT",2010,"For storage only",28,"Manglar Portezuelo","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20740,107537,"MEX","How is your MPA doing?",2016,"For storage only",33,"Zona marina Bahía de los Ángeles, canales de Ballenas y de Salsipuedes","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20739,107537,"MEX","Ecological Evaluation Score Cards",2012,"For storage only",33,"Zona marina Bahía de los Ángeles, canales de Ballenas y de Salsipuedes","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20754,107621,"MEX","METT",2014,"For storage only",33,"C.A.D.N.R. 004 Don Martín","Natural Resources Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20737,107706,"MEX","Ecological Evaluation Score Cards",2012,"For storage only",33,"Islas Marietas","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20738,107706,"MEX","METT",2017,"For storage only",33,"Islas Marietas","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20751,107806,"MEX","METT",2014,"For storage only",33,"Ocampo","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20753,108073,"MEX","METT",2014,"For storage only",33,"Sistema Arrecifal Lobos-Tuxpan","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20723,108125,"MEX","Ecological Evaluation Score Cards",2014,"For storage only",33,"Zona marina del Archipiélago de Espíritu Santo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20722,108125,"MEX","Ecological Evaluation Score Cards",2010,"For storage only",33,"Zona marina del Archipiélago de Espíritu Santo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20721,108125,"MEX","How is your MPA doing?",2008,"For storage only",33,"Zona marina del Archipiélago de Espíritu Santo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -1005,108133,"CRI","SINAD",2016,"For storage only",14,"Caletas-Arío","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1012,108137,"CRI","SINAD",2016,"For storage only",14,"Cipancí- ACAT","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1018,108140,"CRI","SINAD",2016,"For storage only",14,"Diriá","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1020,108142,"CRI","SINAD",2016,"For storage only",14,"Estero Puntarenas","Humedales","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1032,108144,"CRI","SINAD",2016,"For storage only",14,"Isla San Lucas","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1035,108146,"CRI","SINAD",2016,"For storage only",14,"La Cangreja","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1038,108150,"CRI","SINAD",2016,"For storage only",14,"Los Quetzales","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1045,108153,"CRI","SINAD",2016,"For storage only",14,"Monte Alto","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1046,108154,"CRI","SINAD",2016,"For storage only",14,"Monumento Nacional Guayabo","Otras","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1053,108162,"CRI","SINAD",2016,"For storage only",14,"Playa Hermosa","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1056,108169,"CRI","SINAD",2016,"For storage only",14,"Romelia","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1059,108173,"CRI","SINAD",2016,"For storage only",14,"Tapantí Macizo De La Muerte","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -10800,109004,"BIH","Birdlife IBA",2013,"For storage only",28,"Livanjsko Polje","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12035,111111,"USA","RAPPAM",2007,"For storage only",28,"Hideaway Islands","Research Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11518,111111,"USA","RAPPAM",2006,"For storage only",28,"Hideaway Islands","Research Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11129,111111,"USA","RAPPAM",2002,"For storage only",28,"Hideaway Islands","Research Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13243,111111,"USA","RAPPAM",2008,"For storage only",28,"Hideaway Islands","Research Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1197,115081,"GTM","Parks profiles",2014,"For storage only",16,"Laguna del Tigre - Río Escondido","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1196,115081,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Laguna del Tigre - Río Escondido","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1195,115081,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Laguna del Tigre - Río Escondido","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -12519,115110,"PAN","METT",2006,"For storage only",28,"Santa Fe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12520,115110,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Santa Fe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12314,115116,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12310,115116,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12315,115116,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12312,115116,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12313,115116,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12309,115116,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12419,115137,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12424,115137,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12423,115137,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12422,115137,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12425,115137,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12420,115137,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1041,115179,"CRI","SINAD",2016,"For storage only",14,"Maquenque","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -538,115666,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Delta Do Parnaiba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -252,115666,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Delta Do Parnaiba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -489,115769,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Serra Ricardo Franco","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -289,115772,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Do Rio Ronuro","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -238,115868,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Anhatomirim","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -518,115868,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Anhatomirim","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -793,115891,"BRA","SAMGe",2016,"For storage only",9,"RESEX Extremo Norte do Tocantins","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -490,115907,"BRA","RAPPAM",2015,"For storage only",9,"Área De Relevante Interesse Ecológica Floresta Da Cicuta","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -552,115907,"BRA","SAMGe",2016,"For storage only",9,"Área De Relevante Interesse Ecológica Floresta Da Cicuta","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -557,115976,"BRA","SAMGe",2016,"For storage only",9,"Área De Relevante Interesse Ecológica Mata De Santa Genebra","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -491,115976,"BRA","RAPPAM",2015,"For storage only",9,"Área De Relevante Interesse Ecológica Mata De Santa Genebra","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -558,115977,"BRA","SAMGe",2016,"For storage only",9,"Área De Relevante Interesse Ecológica Matão De Cosmópolis","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -492,115977,"BRA","RAPPAM",2015,"For storage only",9,"Área De Relevante Interesse Ecológica Matão De Cosmópolis","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -565,115987,"BRA","SAMGe",2016,"For storage only",9,"ARIE Vassununga","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -520,115993,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Barra Do Rio Mamanguape","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -239,115993,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Barra Do Rio Mamanguape","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -277,116085,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Tamoios","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -585,116085,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Tamoios","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -248,116096,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental De Fernando De Noronha","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -533,116096,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental De Fernando De Noronha","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -21350,116189,"ZAF","RAPPAM",2001,"For storage only",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21352,116189,"ZAF","METT",2012,"For storage only",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21353,116189,"ZAF","METT",2013,"For storage only",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21354,116189,"ZAF","METT",2010,"For storage only",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21351,116189,"ZAF","METT",2011,"For storage only",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21360,116251,"ZAF","METT",2013,"For storage only",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21357,116251,"ZAF","METT",2012,"For storage only",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21358,116251,"ZAF","METT",2011,"For storage only",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21355,116251,"ZAF","METT",2005,"For storage only",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21356,116251,"ZAF","METT",2010,"For storage only",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21502,116257,"ZAF","METT",2013,"For storage only",28,"Marakele National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21501,116257,"ZAF","METT",2012,"For storage only",28,"Marakele National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21500,116257,"ZAF","METT",2010,"For storage only",28,"Marakele National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21314,116275,"ZAF","Enhancing Our Heritage",2003,"For storage only",28,"St. Lucia Game Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15308,116297,"BLZ","Belize MEE",2009,"For storage only",29,"Vaca Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15307,116297,"BLZ","Belize MEE",2006,"For storage only",29,"Vaca Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -14836,116321,"GRD","RAPPAM",2006,"For storage only",28,"Mt. Hartman","Surveyed/Undesignated Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14838,116322,"GRD","RAPPAM",2006,"For storage only",28,"Perseverance","Designated Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21585,116329,"ZAF","METT",2012,"For storage only",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21583,116329,"ZAF","METT",2010,"For storage only",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21587,116329,"ZAF","Birdlife IBA",1998,"For storage only",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21586,116329,"ZAF","METT",2013,"For storage only",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21584,116329,"ZAF","METT",2011,"For storage only",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21629,116330,"ZAF","METT",2011,"For storage only",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21630,116330,"ZAF","METT",2012,"For storage only",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21632,116330,"ZAF","RAPPAM",2001,"For storage only",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21628,116330,"ZAF","METT",2010,"For storage only",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21631,116330,"ZAF","METT",2013,"For storage only",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21733,116333,"ZAF","METT",2013,"For storage only",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21734,116333,"ZAF","RAPPAM",2001,"For storage only",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21732,116333,"ZAF","METT",2012,"For storage only",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21731,116333,"ZAF","METT",2011,"For storage only",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21730,116333,"ZAF","METT",2010,"For storage only",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21194,116337,"ZAF","METT",2010,"For storage only",28,"Bosbokrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21900,116356,"ZAF","METT",2010,"For storage only",28,"Witsand Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21460,116363,"ZAF","METT",2010,"For storage only",28,"Nature Reserve: Co-operation and Development","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13202,124157,"SVN","RAPPAM",2009,"For storage only",28,"Kozjanski park","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12022,124309,"MNG","RAPPAM",2005,"For storage only",28,"Gobiin baga /A/, /B/","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15140,124383,"BLZ","WHA Outlook Report",2014,"For storage only",29,"Belize Barrier Reef Reserve System (World Heritage Site)","World Heritage Site","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -11021,124384,"CHN","WHA Outlook Report",2014,"For storage only",28,"Mount Emei Scenic Area, including Leshan Giant Buddha Scenic Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12131,124385,"BFA;NER;BEN","Enhancing Our Heritage",2009,"For storage only",28,"W-Arly-Pendjari Complex","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12132,124385,"BFA;NER;BEN","WHA Outlook Report",2014,"For storage only",28,"W-Arly-Pendjari Complex","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12867,124386,"RUS","WHA Outlook Report",2014,"For storage only",28,"Lake Baikal","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13041,124387,"RUS","WHA Outlook Report",2014,"For storage only",28,"Volcanoes of Kamchatka","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22192,124388,"SWE","WHA Outlook Report",2014,"For storage only",28,"Laponian Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11191,124389,"COD","Birdlife IBA",2001,"For storage only",28,"Okapi Wildlife Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11168,124389,"COD","Africa Rainforest Study",2001,"For storage only",28,"Okapi Wildlife Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11192,124389,"COD","WHA Outlook Report",2014,"For storage only",28,"Okapi Wildlife Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21006,124434,"IDN","METT",2015,"For storage only",35,"Bukit Tiga Puluh","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -15355,125956,"AUS","NSW SOP",2005,"For storage only",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15358,125956,"AUS","NSW SOP",2013,"For storage only",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15359,125956,"AUS","NSW SOP",2004,"For storage only",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15356,125956,"AUS","NSW SOP",2007,"For storage only",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15357,125956,"AUS","NSW SOP",2010,"For storage only",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15360,125957,"AUS","Victorian SOP",2005,"For storage only",28,"Anglesea B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15363,125957,"AUS","Victorian SOP",2013,"For storage only",28,"Anglesea B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15362,125957,"AUS","Victorian SOP",2010,"For storage only",28,"Anglesea B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15452,125976,"AUS","NSW SOP",2005,"For storage only",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15454,125976,"AUS","NSW SOP",2010,"For storage only",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15453,125976,"AUS","NSW SOP",2007,"For storage only",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15456,125976,"AUS","NSW SOP",2004,"For storage only",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15455,125976,"AUS","NSW SOP",2013,"For storage only",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15507,125983,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Barnard Island Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15508,125983,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Barnard Island Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15663,126017,"AUS","NSW SOP",2010,"For storage only",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15662,126017,"AUS","NSW SOP",2007,"For storage only",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15661,126017,"AUS","NSW SOP",2005,"For storage only",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15665,126017,"AUS","NSW SOP",2004,"For storage only",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15664,126017,"AUS","NSW SOP",2013,"For storage only",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15931,126061,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bribie Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15932,126061,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bribie Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15988,126080,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Brook Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15989,126080,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Brook Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16233,126133,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Capricorn Coast","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16234,126133,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Capricorn Coast","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16235,126134,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Capricornia Cays","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16236,126134,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Capricornia Cays","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16266,126140,"AUS","NSW SOP",2010,"For storage only",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16265,126140,"AUS","NSW SOP",2007,"For storage only",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16619,126140,"AUS","NSW SOP",2004,"For storage only",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16267,126140,"AUS","NSW SOP",2013,"For storage only",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16264,126140,"AUS","NSW SOP",2005,"For storage only",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16347,126152,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Chillagoe-Mungana Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16348,126152,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Chillagoe-Mungana Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16358,126159,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Claremont Isles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16359,126159,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Claremont Isles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16570,126199,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Crater Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16571,126199,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Crater Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16599,126205,"AUS","NSW SOP",2004,"For storage only",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16600,126205,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16595,126205,"AUS","NSW SOP",2005,"For storage only",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16598,126205,"AUS","NSW SOP",2013,"For storage only",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16596,126205,"AUS","NSW SOP",2007,"For storage only",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16597,126205,"AUS","NSW SOP",2010,"For storage only",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16601,126205,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16748,126240,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Diamantina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16750,126240,"AUS","Birdlife IBA",2008,"For storage only",28,"Diamantina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16749,126240,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Diamantina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16771,126252,"AUS","NSW SOP",2005,"For storage only",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16775,126252,"AUS","NSW SOP",2004,"For storage only",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16773,126252,"AUS","NSW SOP",2010,"For storage only",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16774,126252,"AUS","NSW SOP",2013,"For storage only",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16772,126252,"AUS","NSW SOP",2007,"For storage only",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16813,126263,"AUS","Victorian SOP",2005,"For storage only",28,"Dundas","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16905,126281,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Expedition (Limited Depth)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16906,126281,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Expedition (Limited Depth)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16910,126284,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Family Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16909,126284,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Family Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16954,126295,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Forest Den","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16953,126295,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Forest Den","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16964,126304,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Frankland Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16965,126304,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Frankland Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17031,126313,"AUS","Birdlife IBA",2008,"For storage only",28,"Gawler Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17105,126331,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Gloucester Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17106,126331,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Gloucester Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17107,126333,"AUS","Victorian SOP",2005,"For storage only",28,"Gobarup N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17108,126333,"AUS","Victorian SOP",2010,"For storage only",28,"Gobarup N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17109,126333,"AUS","Victorian SOP",2013,"For storage only",28,"Gobarup N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17111,126335,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Goneaway","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17112,126335,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Goneaway","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17126,126336,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Goodedulla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17125,126336,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Goodedulla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17194,126356,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Green Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17195,126356,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Green Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17267,126363,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Halifax Bay Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17268,126363,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Halifax Bay Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17348,126397,"AUS","NSW SOP",2013,"For storage only",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17349,126397,"AUS","NSW SOP",2004,"For storage only",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17346,126397,"AUS","NSW SOP",2007,"For storage only",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17347,126397,"AUS","NSW SOP",2010,"For storage only",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17345,126397,"AUS","NSW SOP",2005,"For storage only",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17559,126427,"AUS","Victorian SOP",2005,"For storage only",28,"Kanawinka F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17569,126434,"AUS","Birdlife IBA",2008,"For storage only",28,"Karroun Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17602,126446,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Keppel Bay Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17601,126446,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Keppel Bay Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17613,126448,"AUS","NSW SOP",2013,"For storage only",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17612,126448,"AUS","NSW SOP",2010,"For storage only",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17610,126448,"AUS","NSW SOP",2005,"For storage only",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17611,126448,"AUS","NSW SOP",2007,"For storage only",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17614,126448,"AUS","NSW SOP",2004,"For storage only",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17841,126510,"AUS","Victorian SOP",2010,"For storage only",28,"Lambert Island N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17922,126538,"AUS","Victorian SOP",2005,"For storage only",28,"Little Desert National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17923,126538,"AUS","Victorian SOP",2010,"For storage only",28,"Little Desert National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17924,126538,"AUS","Victorian SOP",2013,"For storage only",28,"Little Desert National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17921,126538,"AUS","Birdlife IBA",2008,"For storage only",28,"Little Desert National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17947,126547,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Lochern","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17946,126547,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Lochern","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17987,126559,"AUS","Victorian SOP",2005,"For storage only",28,"Macfarlane Lookout N.F.S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18195,126598,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Molle Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18194,126598,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Molle Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18224,126608,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Moogerah Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18225,126608,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Moogerah Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18250,126614,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Moorrinya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18249,126614,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Moorrinya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18256,126620,"AUS","Victorian SOP",2010,"For storage only",28,"Mornington Peninsula National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18258,126620,"AUS","Victorian SOP",2013,"For storage only",28,"Mornington Peninsula National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18257,126620,"AUS","Victorian SOP",2005,"For storage only",28,"Mornington Peninsula National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18298,126624,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Archer","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18297,126624,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Archer","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18303,126627,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Beckworth S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18338,126642,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Delegate S.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18352,126643,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Erip F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18353,126644,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Etna Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18354,126644,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Etna Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18355,126648,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Gibbo N.F.S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18390,126656,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Korong N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18405,126657,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Martin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18404,126657,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Martin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18429,126660,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Ossa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18428,126660,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Ossa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18544,126692,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18663,126709,"AUS","Victorian SOP",2013,"For storage only",28,"Narrawong F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18661,126709,"AUS","Victorian SOP",2010,"For storage only",28,"Narrawong F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18662,126709,"AUS","Victorian SOP",2005,"For storage only",28,"Narrawong F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18668,126711,"AUS","NSW SOP",2010,"For storage only",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18674,126711,"AUS","NSW SOP",2004,"For storage only",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18669,126711,"AUS","NSW SOP",2013,"For storage only",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18666,126711,"AUS","NSW SOP",2005,"For storage only",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18667,126711,"AUS","NSW SOP",2007,"For storage only",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18773,126746,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Northumberland Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18774,126746,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Northumberland Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18788,126747,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Nuga Nuga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18787,126747,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Nuga Nuga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18802,126754,"AUS","Victorian SOP",2005,"For storage only",28,"Nunniong Plain N.F.S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18836,126763,"AUS","NSW SOP",2005,"For storage only",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18839,126763,"AUS","NSW SOP",2013,"For storage only",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18837,126763,"AUS","NSW SOP",2007,"For storage only",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18838,126763,"AUS","NSW SOP",2010,"For storage only",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18840,126763,"AUS","NSW SOP",2004,"For storage only",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18948,126817,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Pioneer Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18947,126817,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Pioneer Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18963,126820,"AUS","Victorian SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18979,126826,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Poona","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18980,126826,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Poona","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19167,126842,"AUS","Birdlife IBA",2008,"For storage only",28,"Quagering","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19145,126906,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Rundle Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19144,126906,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Rundle Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19178,126921,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Saunders Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19177,126921,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Saunders Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19279,126973,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"South Cumberland Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19280,126973,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"South Cumberland Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19296,126987,"AUS","Tasmanian WHA",2004,"For storage only",28,"Southwest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19309,126991,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Springbrook","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19310,126991,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Springbrook","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19333,127010,"AUS","NSW SOP",2004,"For storage only",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19331,127010,"AUS","NSW SOP",2010,"For storage only",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19329,127010,"AUS","NSW SOP",2005,"For storage only",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19332,127010,"AUS","NSW SOP",2013,"For storage only",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19330,127010,"AUS","NSW SOP",2007,"For storage only",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19447,127039,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19448,127039,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19566,127091,"AUS","Victorian SOP",2005,"For storage only",28,"Tooloy F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19572,127094,"AUS","NSW SOP",2010,"For storage only",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19574,127094,"AUS","NSW SOP",2013,"For storage only",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19571,127094,"AUS","NSW SOP",2007,"For storage only",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19570,127094,"AUS","NSW SOP",2005,"For storage only",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19577,127094,"AUS","NSW SOP",2004,"For storage only",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19610,127108,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Tregole","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19611,127108,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Tregole","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19620,127111,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Triunia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19619,127111,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Triunia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19685,127129,"AUS","Victorian SOP",2005,"For storage only",28,"Tyrendarra F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17197,127143,"AUS","Victorian SOP",2013,"For storage only",28,"Gresswell Forest (part a) N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17237,127155,"AUS","Victorian SOP",2005,"For storage only",28,"Gunners Tank B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18180,127186,"AUS","Victorian SOP",2005,"For storage only",28,"Mitchell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18181,127186,"AUS","Victorian SOP",2010,"For storage only",28,"Mitchell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18182,127186,"AUS","Victorian SOP",2013,"For storage only",28,"Mitchell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16293,127207,"AUS","Victorian SOP",2010,"For storage only",28,"Cathedral Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16294,127207,"AUS","Victorian SOP",2013,"For storage only",28,"Cathedral Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16292,127207,"AUS","Victorian SOP",2005,"For storage only",28,"Cathedral Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16198,127239,"AUS","Victorian SOP",2005,"For storage only",28,"Cann River B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15748,127240,"AUS","Victorian SOP",2010,"For storage only",28,"Black Dog Creek K30 SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15749,127240,"AUS","Victorian SOP",2005,"For storage only",28,"Black Dog Creek K30 SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15750,127240,"AUS","Victorian SOP",2013,"For storage only",28,"Black Dog Creek K30 SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16208,127242,"AUS","Victorian SOP",2013,"For storage only",28,"Cape Conran Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16206,127242,"AUS","Victorian SOP",2010,"For storage only",28,"Cape Conran Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16207,127242,"AUS","Victorian SOP",2005,"For storage only",28,"Cape Conran Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16214,127244,"AUS","Victorian SOP",2005,"For storage only",28,"Cape Liptrap Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16216,127244,"AUS","Victorian SOP",2013,"For storage only",28,"Cape Liptrap Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16215,127244,"AUS","Victorian SOP",2010,"For storage only",28,"Cape Liptrap Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16165,127268,"AUS","Victorian SOP",2010,"For storage only",28,"Buxton Silver Gum N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16166,127268,"AUS","Victorian SOP",2005,"For storage only",28,"Buxton Silver Gum N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16167,127268,"AUS","Victorian SOP",2013,"For storage only",28,"Buxton Silver Gum N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15408,127332,"AUS","Victorian SOP",2005,"For storage only",28,"Avon - Mt Hedrick N.F.S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17097,127426,"AUS","Victorian SOP",2005,"For storage only",28,"Glenorchy I5 B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15458,127429,"AUS","Victorian SOP",2005,"For storage only",28,"Baluk Willam N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15479,127448,"AUS","Victorian SOP",2005,"For storage only",28,"Bannockburn B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17179,127512,"AUS","Victorian SOP",2005,"For storage only",28,"Grants B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17093,127514,"AUS","Victorian SOP",2005,"For storage only",28,"Glenelg River (8) SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17094,127518,"AUS","Victorian SOP",2005,"For storage only",28,"Glenelg River, Fulham SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17096,127518,"AUS","Victorian SOP",2013,"For storage only",28,"Glenelg River, Fulham SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17095,127518,"AUS","Victorian SOP",2010,"For storage only",28,"Glenelg River, Fulham SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17104,127565,"AUS","Victorian SOP",2005,"For storage only",28,"Glenrowan I69 B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17103,127565,"AUS","Victorian SOP",2010,"For storage only",28,"Glenrowan I69 B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19722,127581,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Venman Bushland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19721,127581,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Venman Bushland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19885,127667,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Welford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19886,127667,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Welford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19963,127696,"AUS","Victorian SOP",2005,"For storage only",28,"William Hunter F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19964,127703,"AUS","NSW SOP",2005,"For storage only",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19966,127703,"AUS","NSW SOP",2010,"For storage only",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19968,127703,"AUS","NSW SOP",2004,"For storage only",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19965,127703,"AUS","NSW SOP",2007,"For storage only",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19967,127703,"AUS","NSW SOP",2013,"For storage only",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20021,127721,"AUS","NSW SOP",2013,"For storage only",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20018,127721,"AUS","NSW SOP",2005,"For storage only",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20020,127721,"AUS","NSW SOP",2010,"For storage only",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20022,127721,"AUS","NSW SOP",2004,"For storage only",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20019,127721,"AUS","NSW SOP",2007,"For storage only",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20092,127739,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Wooroonooran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20090,127739,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Wooroonooran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28247,127825,"PER","METT",2012,"For storage only",28,"Bahuaja Sonene","Parques Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -901,127825,"PER","METT",2016,"For storage only",13,"Bahuaja Sonene","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28109,127825,"PER","METT",0,"For storage only",28,"Bahuaja Sonene","Parques Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28107,127825,"PER","METT",2003,"For storage only",28,"Bahuaja Sonene","Parques Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22150,127828,"FIN","Birdlife IBA",2010,"For storage only",28,"Talaskankaan luonnonsuojelualue","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12589,127881,"PRT","Birdlife IBA",2005,"For storage only",28,"Paúl de Arzila","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12574,127885,"PRT","Birdlife IBA",2005,"For storage only",28,"Sapais de Castro Marim","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11970,127887,"MKD","METT",0,"For storage only",28,"Lake Prespa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1295,127889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alde-Ore Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1372,127890,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breydon Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1359,127891,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deben Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1294,127892,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foulness","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1360,127893,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenlaw Moor","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1377,127894,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ruthven","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1321,127895,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morecambe Bay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -14455,129914,"ECU","Ecuador MEE",1999,"For storage only",28,"Los ILinizas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14456,129914,"ECU","METT",2009,"For storage only",28,"Los ILinizas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14465,129915,"ECU","Ecuador MEE",1999,"For storage only",28,"Mache Chindul","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9805,129917,"BHS","METT-RAPPAM",2018,"For storage only",25,"Abaco National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -1361,129935,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Loch, Lochmaben","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -11249,134938,"CZE","Stockholm BR Survey",2008,"For storage only",28,"Bílé Karpaty","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14743,134940,"ESP","GOBI Survey",2006,"For storage only",28,"Sierra de las Nieves y su Entorno","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1358,134954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mersey Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1268,134955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gibraltar Point","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8622,134957,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitlowie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8095,134958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Easthaven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8452,134959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Vaa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7995,134960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dales Voe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8295,134961,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinlochlaggan Boulder Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8661,134962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Feshie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8713,134963,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shannel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8390,134964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Etteridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7729,134965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bailliewhirr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5949,134966,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blair Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8639,134967,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Qui Ness to Pund Stacks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8113,134968,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eshaness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8101,134969,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eigg - Cleadale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7996,134970,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalsetter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8725,134971,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skelda Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7739,134972,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balmedie Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8061,134973,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumore Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8421,134974,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8558,134975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muckle Burn, Clunas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8619,134976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitcaple and Legatsden Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8454,134977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Locharbriggs Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8865,134978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wether Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5024,134979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Back Burn Wood and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8012,134980,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dollar Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8795,134981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thornylee Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7981,134982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crossbog Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8344,134983,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linn Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8003,134984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Damhead Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7880,134985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Catshawhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7844,134986,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Leith and Myreton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8667,134987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rousay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8685,134988,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ross Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8568,134989,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ness of Clousta - The Brigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8364,134990,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Glenshee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8801,134991,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tomnadashan Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8154,134992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Esk and West Water Palaeochannels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8315,134993,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lime Craig Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8127,134994,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Findhorn Terraces","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7861,134995,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn Gorm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8102,134997,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eigg - Laig to Kildonnan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8492,134998,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Strathavon Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7984,134999,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cruggleton Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8811,135000,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tressa Ness to Colbinstoft","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8402,135001,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quoys of Garth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8848,135002,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Burrow Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8209,135003,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grennan Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8828,135004,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Virva","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8644,135005,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8875,135006,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitlaw Rig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7681,135007,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt a' Choire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8515,135009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meall Reamhar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5192,135010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Falloch Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7956,135011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Rossie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8376,135012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Bee Machair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7884,135013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carron Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7913,135014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cnoc an Alaskie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8627,135015,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Port of Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8510,135016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meall Dail-chealach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7912,135017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cnoc a' Chapuill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8219,135018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ham Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6371,135019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben More - Scarisdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7459,135020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Perchhall Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8373,135021,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ba Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7694,135022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Molach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8688,135023,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roughneuk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8694,135024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rubh' a' Mhail to Uamhannan Donna Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7982,135026,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cruach Choireadail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7688,135028,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Coire Chailein","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7856,135029,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cape Wrath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8270,135030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Isle of Whithorn Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8533,135031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Milton Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8068,135032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Durness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8774,135033,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stroupster Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8512,135034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meall Imireach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8888,135035,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodhall Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8626,135036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Port o' Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7977,135037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crawton Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8665,135038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Clyde Meanders","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7877,135039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrick Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8718,135040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strone Point, North Loch Fyne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8647,135041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ree Burn and Glenbuck Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8347,135042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Largs Coast Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8160,135043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garpel Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8236,135045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill of Johnston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8145,135046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foula Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6023,135047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenarbuck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8755,135048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stairhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7833,135049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Byne Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8719,135050,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shiel Wood Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8590,135051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oliclett","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8446,135052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Manse Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8729,135053,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skinsdale Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8450,135054,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Tummel Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5030,135055,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bad na Gallaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8148,135056,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fountainhead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8609,135057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Randolph's Leap","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8136,135058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fodderletter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8328,135059,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lagganmullan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8550,135060,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mortlach Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8303,135061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8830,135062,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Uyea - North Roe Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8020,135063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dullatur Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7401,135064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Millenderdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8728,135065,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skeo Taing to Clugan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8712,135066,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sel Ayre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8646,135067,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Moss, Oldtown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5424,135068,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sgavoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8735,135069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sletill Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7719,135070,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auchencorth Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7799,135071,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bo'mains Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8407,135072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Meadie Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7674,135073,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aldons Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8560,135074,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moss of Kirkhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8679,135075,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roscobie Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8319,135076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lag Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8607,135077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penwhapple Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7969,135078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craignure Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8367,135079,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Littleton and Balhamie Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8490,135080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower River Cree","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8764,135081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strath Duchally","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8456,135082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longbridge Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8786,135083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tayvallich Juniper and Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8819,135084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turnberry Lighthouse to Port Murray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7758,135085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bay of Skaill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8519,135086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7782,135087,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bennane Head Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8026,135088,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Denny Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8025,135089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Den Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8073,135090,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eas na Broige","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8866,135091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weydale Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7764,135092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn an Lochain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7928,135093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craighoyle Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8747,135094,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St John's Church","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8406,135095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Maree","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8563,135096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muckle Head and Selwick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8730,135097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Laggan Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8629,135098,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portnellan - Ross Priory - Claddochside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8526,135099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moidach More","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7645,135100,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardchyline Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7924,135101,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coleburn Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8370,135102,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Arkaig Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7771,135103,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bellscamphie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8703,135104,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rumsdale Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8471,135105,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lockshaw Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8348,135106,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lea Larks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8803,135107,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Torrs Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8381,135108,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Caluim Flows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8766,135109,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strathmore Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8307,135110,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knocknairs Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8564,135111,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muckle Roe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8855,135113,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Tayvallich Peninsula","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8824,135114,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ulva, Danna and the McCormaig Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7962,135115,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craighall Den","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8845,135116,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Bradieston and Craig of Garvock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8879,135117,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Williamhope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8080,135118,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Kirkton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7915,135119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cobbinshaw Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8213,135120,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grudie Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8815,135121,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Truderscaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8844,135122,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Borgie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7768,135123,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bell's Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8691,135124,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Royal Ordnance, Powfoot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8734,135125,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skyreburn Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8039,135126,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dolphinton - West Linton Fens and Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8243,135127,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Howierig Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8854,135128,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Strathnaver","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8582,135129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Roe Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8279,135130,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laxo Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8778,135131,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Syre Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8636,135132,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Punds to Wick of Hagdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8474,135133,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lon a' Chuil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8495,135134,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mallart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8360,135135,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Battan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8443,135136,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochan Buidhe Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7830,135137,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burn of Lunklet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8355,135138,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lethenhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8677,135139,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rora Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8200,135140,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glendoe Lochans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8489,135141,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower River Conon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7659,135142,"GBR","Common Standards Monitoring",2013,"For storage only",18,"A' Mhoine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8915,135143,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longman and Castle Stuart Bays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8088,135144,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Mires and Lumbister","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8047,135145,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Druim na Coibe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8372,135146,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ashie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8870,135147,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitehill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8404,135148,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Lubnaig Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8157,135149,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garbh Choire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7724,135150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auskerry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7707,135151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardgour Pinewoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7958,135152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigallian Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8601,135154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pass of Killiecrankie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8034,135155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dun Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8618,135156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitarrig Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7998,135157,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalkeith Oakwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8518,135158,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meggernie and Croch na Keys Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8291,135159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kincardine Castle Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6312,135160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barns Ness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8082,135161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunhog Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7787,135162,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birks of Aberfeldy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8869,135163,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whiteadder Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8280,135164,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keith Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7786,135165,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bilston Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7663,135166,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abbey Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7933,135167,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Connachan Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7953,135168,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig More","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8235,135169,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Herman Law and Muchra Cleuchs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8165,135170,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gartfarran Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8859,135171,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wester Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8067,135172,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dupplin Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8022,135173,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flanders Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8028,135174,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devon Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8155,135176,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Esk Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8744,135177,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Abb's Head to Fast Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7820,135178,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Chriche","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8780,135179,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tay Bank Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8109,135180,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elliot Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8604,135181,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pease Bridge Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8876,135182,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitmuirhall Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7930,135183,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colmsliehill Junipers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8675,135184,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Romadie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7757,135185,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bass Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8653,135186,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Restenneth Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8343,135187,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linlithgow Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8092,135188,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Faldonside Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8266,135189,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Isle of May","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8336,135190,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lammermuir Deans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7932,135191,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Conic Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8249,135193,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inchmickery","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8122,135194,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fearnan Cowpark","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8120,135195,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fala Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8820,135196,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tweedsmuir Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8458,135197,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochindores","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8260,135198,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Tay Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8874,135200,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitlaw Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8332,135201,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lake of Menteith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8809,135202,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Traprain Law","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7950,135203,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cragbank and Wolfehopelee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8539,135204,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moorfoot Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7653,135205,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arnprior Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8687,135206,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rossie Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8246,135207,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hummelknowes Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8142,135208,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forth Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8158,135209,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gattonside Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8600,135210,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Hill and Tipperton Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8212,135211,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grieston Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8335,135212,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lammer Law","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7788,135214,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishop Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7647,135215,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Agassiz Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8053,135216,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunalastair Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8750,135217,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Michael's Wood Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8188,135218,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Queich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6313,135219,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barry Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7988,135220,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cuilvona and Craigmore Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8308,135222,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkton Burn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8250,135223,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Innishewan Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7872,135224,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cassindonald Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7685,135225,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Almondbank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8544,135226,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monifieth Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8473,135227,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Logierait Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7732,135228,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballanucater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8821,135229,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tweedwood - Gateheugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8757,135230,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Steelend Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8293,135231,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingside Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8056,135232,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gannochy Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7927,135233,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Collymoon Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8773,135234,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stronvar Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7658,135235,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Airhouse Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8633,135236,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redmyre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8494,135238,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Makerstoun - Corbie Craigs to Trows' Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8024,135239,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Den of Riechip","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8232,135240,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Henderland Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6376,135241,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben More - Stob Binnein","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7970,135242,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigs of Lundie and Ardgarth Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8745,135244,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Andrews - Craig Hartle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7862,135245,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn Gorm and Meall Garbh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8004,135246,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dilty Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8197,135247,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenartney Juniper Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8546,135248,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morenish Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7655,135249,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arthur's Seat Volcano","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7906,135250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clarilaw Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7853,135251,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cambusurich Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8669,135252,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rowardennan Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7777,135254,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Heasgarnich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7738,135255,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballyoukan Juniper Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8684,135256,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roslin Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7923,135257,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coldingham Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8781,135258,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tailend Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8760,135259,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swallow Craig Den","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8217,135260,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Habbies Howe - Logan Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5241,135262,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Papana Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8534,135263,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Milton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8019,135264,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duddingston Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8562,135265,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mount Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8167,135266,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gartwhinzean Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5221,135267,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Garry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8016,135268,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Den of Ogil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8237,135269,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hewan Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8521,135270,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7868,135272,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carie and Cragganester Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8119,135273,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Falls of Dochart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8005,135274,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Danskine Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8283,135275,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kielderhead Moors: Carter Fell to Peel Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7791,135276,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Wood of Rannoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8668,135277,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Dochart Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7869,135279,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carlingnose","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8203,135280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gordon Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8262,135281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keltneyburn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8363,135282,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Ballo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8287,135283,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kings Myre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7644,135284,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardblair and Myreside Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8465,135285,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochs of Butterstone, Craiglush and Lowes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8513,135286,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meall na Samhna","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7812,135287,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckstruther Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8096,135289,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eden Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8690,135290,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Round Loch of Lundie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8652,135291,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rescobie and Balgavies Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8724,135292,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shirgarton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7796,135293,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blawhorn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8791,135294,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Threepwood Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8775,135295,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Struan Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8649,135296,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rickle Craig - Scurdie Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8890,135297,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yetholm Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7687,135298,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inchcoonans Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7735,135299,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balerno Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7762,135300,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tynaspirit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7745,135301,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balquhidderock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5912,135302,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blair Atholl Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7775,135303,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Chonzie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8282,135304,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kershope Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8499,135305,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lurg & Dow Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8081,135306,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dundreich Plateau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8642,135307,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rammer Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6365,135308,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Lawers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8147,135309,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foulden Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8001,135310,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalveich Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8427,135311,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Lintrathen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7972,135312,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croftintygan Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8872,135313,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitehouse Den","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8130,135314,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Finlarig Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7890,135316,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrot Hill Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5037,135317,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cobbinshaw Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8320,135318,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plora Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7737,135319,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balglass Corries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6399,135320,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Vrackie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8862,135321,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westerton Water Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7742,135322,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Loch (Cleish)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8444,135323,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Siccar Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8602,135324,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pass of Leny Flushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8294,135325,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kippilaw Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7806,135326,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bolfracks Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8405,135327,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Mahaick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7740,135328,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balmerino - Wormit Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8615,135329,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Philpstoun Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7865,135330,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cardney Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8711,135331,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Schiehallion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8455,135332,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Moss - Drinkstone Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8304,135333,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leny Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7891,135334,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carsebreck and Rhynd Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7751,135335,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bankhead Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7821,135336,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brig o' Turk Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7747,135337,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balshando Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8756,135338,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Star Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7750,135340,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bangley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7761,135341,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn a' Ghlo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6311,135342,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barnsmuir Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7769,135343,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Loch (Abdie)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8342,135344,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linhouse Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7734,135345,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballo and Harperleas Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8864,135346,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westwater Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7462,135347,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Petershill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8338,135348,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lindores Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7857,135349,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cameron Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7815,135350,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brerachan Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7990,135351,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cullaloe Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8621,135352,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitkeathly Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8887,135353,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodhall Dean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7797,135354,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blind Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8013,135355,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Den of Fowlis","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6294,135356,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balloch Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8723,135357,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shingle Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7772,135358,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bemersyde Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8193,135359,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Tilt Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8225,135360,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hare Myre, Monk Myre and Stormont Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5210,135361,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Falloch Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8553,135362,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morton Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8131,135363,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fintulich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8578,135364,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Fife Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7677,135365,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alemoor West Loch and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8514,135366,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Methven Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7994,135367,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalbeath Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8878,135368,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodhead Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8226,135369,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hareheugh Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7730,135370,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballagan Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8603,135371,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pease Bay Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8138,135372,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forest Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8331,135373,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laird's Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7968,135374,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigmead Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8383,135375,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Con","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7841,135376,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairnleith Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8098,135377,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edinample Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7840,135378,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coldingham Common, Long Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5226,135379,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Lochay Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7832,135380,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burnmouth Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5220,135381,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Fender Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8464,135382,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochs Clunie and Marlee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8503,135383,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lurgie Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8508,135384,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lynslie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5422,135385,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Selkirk Racecourse Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8673,135386,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Tweed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8594,135387,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Otterston Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8857,135388,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whiting Ness - Ethie Haven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8159,135389,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garleton Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7847,135390,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calderwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8680,135391,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roscobie Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8856,135392,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wester Craiglockhart Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8035,135394,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fungarth Juniper Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8531,135395,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mollands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8616,135396,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pickletillem Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8538,135397,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monzie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7748,135398,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blacklaw Hill Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8132,135400,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fleecefaulds Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8507,135401,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lynnwood - Whitlaw Wood, Slitrig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7963,135403,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craighall Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8201,135404,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gleneagles Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8133,135405,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flisk Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8623,135406,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redden Bank Lime Works","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7873,135407,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carriber Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8044,135408,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drone Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8762,135409,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Straloch Moraines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7662,135410,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aldclune and Invervack Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8384,135411,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Freuchie Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8576,135412,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Berwick Law","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8462,135413,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochmill Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7675,135414,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allan Water, Hillhead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8793,135415,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Hirsel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8426,135416,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Kinnordy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8099,135417,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edinchip Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8205,135418,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenlaw Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8610,135419,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rannoch Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8345,135420,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linn of Tummel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8256,135421,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langholm - Newcastleton Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8087,135422,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Earlshall Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8054,135423,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gagie Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7843,135424,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairnwell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7725,135426,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avenel Hill and Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8777,135427,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swinkie Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7943,135428,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Royston Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7892,135429,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigdilly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8588,135430,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Offerance Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7929,135431,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crook Burn, Dyeshaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6368,135432,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Lomond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7866,135433,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carriston Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7722,135434,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aucheneck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7882,135435,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Tronach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7763,135437,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn a' Chuallaich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8846,135438,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wester Balgair Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8166,135439,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gartmorn Dam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8398,135440,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Leven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8817,135441,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turin Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7811,135443,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Branxholme Easter Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8124,135444,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ferry Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8202,135445,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenkinnon Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8596,135446,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oxendean Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8749,135447,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Mary's Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8520,135448,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Dam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8497,135449,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meikleour Area","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7859,135450,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carbeth Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8732,135451,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skolie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8052,135453,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drummond Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8842,135454,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weem Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8597,135455,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Palmers Hill Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7792,135456,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Water Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5256,135457,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalcroy Promontory","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8413,135458,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Moraig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8516,135459,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Methven Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8480,135460,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Loch of Lundie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8074,135461,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunbog Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8477,135462,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longnewton Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8785,135463,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tayport - Tentsmuir Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8362,135465,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lielowan Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8350,135466,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lintmill Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8180,135467,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gladhouse Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8300,135468,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kippenrait Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8041,135469,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Double Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7931,135470,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Comrie Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8139,135471,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forest of Alyth Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8325,135472,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pollochro Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8587,135473,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ochtertyre Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8436,135474,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Watston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7672,135475,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holl Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8457,135476,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochcote Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8181,135477,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glas Tulaichean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8545,135478,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Montrose Basin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8029,135479,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Din Moss and Hoselaw Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8009,135480,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Den of Airlie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8858,135481,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitlaw Bank to Hardies Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7642,135482,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Adderstonlee Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5231,135484,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Lyon Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8662,135485,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Riskinhope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8059,135486,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumore Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8305,135487,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkhope Linns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8448,135488,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Tay Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8008,135489,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Darnrig Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7744,135490,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balnaguard Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8337,135491,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lindean Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8290,135492,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Killorn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8340,135493,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langtonlees Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8296,135494,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinnoull Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7661,135495,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Akermoor Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7718,135496,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashkirk Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8316,135497,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lacesston Muir and Glen Burn Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8118,135499,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairy Knowe and Doon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7916,135500,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Coire Chuilc","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7826,135501,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coire Bhachdaidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8218,135502,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hadfast Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8066,135503,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dun Ban","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8529,135504,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Milton Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7774,135505,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben A'an and Brenachoile Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8051,135506,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumadoon - Tormore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8298,135507,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinuachdrach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6396,135509,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Vorlich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8849,135510,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Coast of Jura","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8329,135511,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lagganulva Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8527,135512,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Millburn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8257,135513,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inchmurrin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5029,135514,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Back Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8169,135515,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Geal and Dubh Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8178,135516,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Girvan to Ballantrae Coast Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7902,135517,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cartland Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7919,135518,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Leitire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8187,135519,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Nant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8614,135520,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ravenshall Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5467,135521,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Treshnish Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7816,135522,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bridgend Flats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8259,135523,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inchtavannach and Inchconnachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7684,135524,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Broighleachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8823,135525,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tynron Juniper Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8393,135526,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Fada","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7756,135527,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barmufflock Dam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8272,135528,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jock's Gill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8525,135529,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moffat Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8721,135530,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shielhill Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7741,135531,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balnabraid Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7823,135532,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brother and Little Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8396,135533,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Humphrey Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8761,135534,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stenhouse Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8779,135535,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tarbert to Skipness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8572,135536,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newlaw Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7871,135537,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carnwath Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8686,135538,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ross Park - Lochshore Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7713,135539,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardrossan to Saltcoats Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8575,135540,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Bellstane Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8301,135542,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkconnell Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8658,135543,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ring Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7755,135544,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barlosh Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8199,135545,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glendaruel Wood and Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8330,135546,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lagrae Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7807,135548,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boylestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8387,135549,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Doon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8630,135550,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Coast of Arran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8311,135551,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockdolian Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8077,135552,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dundonald Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8224,135553,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hannaston Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8613,135554,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raven Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7901,135555,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Claonaig Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8528,135556,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Miller's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8506,135557,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lynn Spout","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8482,135558,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longriggend Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8567,135559,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ness Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7849,135560,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calgary Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7651,135562,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardwall Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8324,135563,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Polhote and Polneul Burns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7705,135564,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardalanish Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7689,135565,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auchalton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8501,135566,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mennock Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8818,135567,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turnberry Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8042,135568,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dowalton Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8175,135569,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Geilston Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5368,135570,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Threave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7904,135571,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleghorn Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8125,135572,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Feur Lochain - Moine nam Faoileann","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8485,135573,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Machrihanish Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8486,135574,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maidens to Doonfoot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8660,135575,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Esk, Glencartholm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8739,135576,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sound of Mull Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8097,135577,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Falls of Clyde","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7780,135578,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benbeoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8062,135579,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dryfe Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8323,135580,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laggan Peninsula and Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8076,135581,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dundonald Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7834,135582,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairnbaber","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7965,135583,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cree Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8841,135584,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waulkmill Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8346,135585,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linne Mhuirich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7671,135586,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Airds of Kells Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8659,135587,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rinns of Islay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8268,135588,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kennacraig and Esragan Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7910,135589,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clochodrick Stone","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8313,135590,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockgardner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8123,135592,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Feoch Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7709,135593,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardmeanach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7702,135594,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ard Bheinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8140,135595,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Formakin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8208,135596,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenock Mains","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7926,135597,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craighouse Ravine, Jura","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8826,135598,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Solway Flats and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7940,135599,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsewall Point to Milleur Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8861,135600,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Western Gailes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8107,135601,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ellary Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8502,135602,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Merrick Kells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7903,135603,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clauchlands Point - Corrygills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8161,135604,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garrion Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8354,135605,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lismore Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7889,135606,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carron Water and Hapland Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8628,135607,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Braes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8021,135608,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dumbarton Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7938,135609,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corrie Foreshore and Limestone Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7897,135610,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clais Dhearg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7789,135611,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishop Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8716,135612,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shiel Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7945,135613,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crossapol and Gunna","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8788,135614,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Talnotry Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7874,135615,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8252,135616,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inchmoan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8548,135617,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morroch Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8182,135618,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gleann Dubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6027,135619,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glentrool Oakwoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8810,135620,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trearne Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8186,135621,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7781,135622,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benlister Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8321,135624,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laggan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7885,135625,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Central Lochs, Bute","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8211,135626,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gribun Shore and Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7900,135627,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cart and Kittoch Valleys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7646,135628,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afton Lodge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6370,135630,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Lui","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8804,135631,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Torrs to Mason's Walk","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8126,135632,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fiddler Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8318,135633,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lady Bell's Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7676,135634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hough Bay and Balevullin Machair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7634,135635,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bonawe to Cadderlie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8104,135636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eilean na Muice Duibhe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8459,135637,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochmaben Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8143,135638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fossil Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7964,135639,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craighead Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7845,135640,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caldarvan Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8825,135641,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Nethan Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8663,135642,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Ayr Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8152,135644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North End of Bute","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7754,135645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8641,135646,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raeburn Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7635,135647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Borgue Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8733,135648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Shian and Balure","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8850,135649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Colonsay Seabird Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5328,135650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sanda Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8327,135651,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Port Logan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8883,135652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wood of Cree","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8796,135653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Threave and Carlingwark Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8220,135654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hamilton High Parks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7717,135655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashgrove Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8717,135656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shiel Dod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8275,135657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kames Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7894,135658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carsegowan Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7637,135659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bothwell Castle Grounds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8000,135660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalmellington Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7835,135661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cadder Wilderness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8063,135662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dumbarton Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8524,135663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mochrum Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8530,135664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moine Mhor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8852,135665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Loch Lomondside Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8006,135666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dargavel Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8710,135667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scare Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7714,135668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardtun Leaf Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7842,135669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairnsmore of Fleet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7704,135670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ard Trilleachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7654,135671,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arran Northern Mountains","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8263,135672,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inverneil Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8185,135673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Loin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7887,135674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chanlockfoot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8086,135675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunrod Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8581,135676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Newton Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8799,135677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tinto Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8771,135678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tangy Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7946,135679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cotland Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7648,135680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ailsa Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8229,135681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heart Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8069,135682,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunaskin Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7899,135684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carstramon Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6360,135685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Shiantaidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8447,135686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Tallant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7895,135687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carstairs Kames","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8267,135688,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kenmure Holms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7888,135689,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8400,135690,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Libo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8269,135692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laughenghie and Airie Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7954,135693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craighead Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8886,135694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodend Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8247,135695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inchlonaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8031,135696,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dippin Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8808,135697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Townhead Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8379,135698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Eck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8241,135699,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Howford Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8177,135700,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gills Burn and Mare Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8288,135701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilhern Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8135,135702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flow of Dergoals","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8813,135703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Troon Golf Links and Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8802,135705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Torrisdale Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7633,135706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blood Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8179,135707,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glac na Criche","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7896,135708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clach Tholl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7909,135709,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7942,135710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coshogle Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7770,135711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bellochantuy and Tangy Gorges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7985,135712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalavich Oakwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8433,135713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shovelboard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7631,135714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blairbeich Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4391,135715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avondale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7937,135716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corrie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8493,135717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lugar Sill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8322,135718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laggan Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8302,135720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkcowan Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5227,135721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mull of Galloway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8656,135723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhunahaorine Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7794,135724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blantyre Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7783,135725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bernera Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6300,135726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballochmartin Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8570,135727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nethan Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8168,135728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garvellachs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7798,135729,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blood Moss and Slot Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8805,135730,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Torrs Warren - Luce Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8036,135732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doire Darach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8228,135733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haw Craig - Glenarbuck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7728,135734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auchenreoch Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8708,135735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sculliongour Limestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8470,135736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8437,135737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Sguabain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8460,135738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Martnaham Loch and Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7656,135739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Artilligan and Abhainn Srathain Burns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8339,135740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lang Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8221,135741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hamilton Low Parks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8631,135742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Kerrera and Gallanach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7876,135743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Semple and Barr Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7803,135744,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bogside Flats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8134,135745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nith Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8754,135746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Staffa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8532,135747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Milton-Lockhart Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8807,135748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Totamore Dunes and Loch Ballyhaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7710,135749,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardmore, Kildalton and Callumkill Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8632,135750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Possil Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7695,135751,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auchensail Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8349,135752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leadhills - Wanlockhead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8284,135753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilberry Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8689,135754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rouken Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8784,135755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Taynish Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8536,135757,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mollinsburn Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8214,135758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gruinart Flats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7625,135759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bin Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7925,135760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Collieston to Whinnyfold Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8868,135761,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Loch - Lochinch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8189,135762,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Ralloch to Baravalla Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8681,135763,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rosehearty to Fraserburgh Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8701,135764,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ruel Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8430,135765,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Strathbeg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8171,135766,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gight Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8176,135767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Geordie Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8566,135768,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muir of Dinnet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7948,135769,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7971,135770,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigs of Succoth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8129,135771,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Findrassie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7986,135772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crussa Field and the Heogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5045,135773,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fidlar Geo to Watsness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8115,135774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eynhallow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8326,135775,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pool of Virkie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8055,135776,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gamrie and Pennan Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5443,135777,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tore of Troup","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6028,135778,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glims Moss and Durka Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7935,135779,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corby, Lily and Bishops Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8441,135780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Spynie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8468,135781,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochs of Spiggie and Brow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7997,135782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gull Nest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8496,135784,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meikle Loch and Kippet Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8422,135785,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Clousta","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8707,135786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Saxa Vord","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8671,135787,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Spey - Insh Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8240,135788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill of Towanreef","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7838,135789,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairngorms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5191,135790,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Ey Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8822,135791,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tynet Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8191,135792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Tanar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5556,135793,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teindland Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7983,135794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cruaday Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8483,135795,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lossiemouth East Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8598,135796,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Paradise Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7773,135797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Alder and Aonach Beag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7989,135798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Culbin Sands, Culbin Forest and Findhorn Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8461,135799,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marwick Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8648,135800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhynie Chert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8751,135801,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sule Skerry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8678,135802,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scaat Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8428,135803,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7959,135804,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag nan Gamhainn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8194,135805,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northwall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8880,135806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Windy Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8836,135807,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wartle Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8114,135808,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eslie Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8040,135809,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doomy and Whitemaw Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8162,135810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garron Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8752,135811,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Ninian's Tombolo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8557,135812,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moss of Cruden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8245,135813,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hoy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7831,135814,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burn of Valayre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7952,135815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Leek","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8839,135816,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ward of Culswick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7828,135817,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burn of Benholm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7673,135818,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holm of Papa Westray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8522,135819,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8569,135820,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ness of Cullivoe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8705,135821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7749,135822,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balta","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8491,135824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower River Spey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7817,135825,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buinach and Glenlatterach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7819,135826,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burn of Ballintomb","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8637,135827,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quarry Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7800,135828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bochel Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8172,135829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Sandwick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8277,135830,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keen of Hamar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8333,135831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lamb Hoga","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8484,135832,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lossiemouth Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8853,135833,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Mainland Moorlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8281,135834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kellas Oakwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8612,135835,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Philorth Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8419,135836,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Aboyne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8640,135837,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quithel Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7957,135838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag Meagaidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8790,135839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Cletts, Exnaboe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8840,135840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Westray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8541,135841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monadhliath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5182,135842,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Callater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8156,135843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Fetlar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8812,135844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trona Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8469,135845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochs of Tingwall and Asta","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7934,135846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Copinsay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8695,135847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scotstown Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7848,135848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calf of Eday","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8204,135849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Green Hill of Strathdon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8585,135850,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Norwick Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7837,135851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairnbulg to St Combs Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8149,135852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foveran Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8500,135853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Melby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7878,135854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Catfirth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8094,135855,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eastern Cairngorms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7992,135856,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Culswick Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8589,135857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Wood of Drum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8173,135858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northern Corries, Cairngorms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7955,135859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag Dhubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8551,135860,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mousa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8423,135861,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Lumgair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8411,135862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Oire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7818,135863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bullers of Buchan Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8746,135864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Cyrus and Kinnaber Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8871,135865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitehills to Melrose Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8759,135866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sumburgh Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8798,135867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tingon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8472,135868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Masonshaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8634,135869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Potarch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8591,135870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orphir and Stenness Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8832,135871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Villians of Hamnavoe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8030,135872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dinnet Oakwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8554,135874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morven and Mullachdubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8488,135875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Findhorn Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8676,135876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ronas Hill - North Roe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7886,135877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Central Sanday","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8625,135878,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pittodrie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8556,135879,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moss of Crombie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8758,135880,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sule Stack","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4543,135881,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Papa Stour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8789,135882,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Ayres of Swinister","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8258,135883,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inchrory","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8645,135884,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Moss of Netherley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5268,135885,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalnabo Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8835,135886,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ward Hill Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5329,135887,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sands of Forvie and Ythan Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7911,135888,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clothister Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7991,135889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cullen to Stake Ness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8151,135890,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fugla Ness - North Roe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5394,135891,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spey Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8838,135892,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waulkmill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8552,135893,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muckle and Little Green Holm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7698,135894,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alvie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8234,135895,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hermaness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7814,135896,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breckon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8045,135897,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Funzie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8466,135898,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochs of Harray and Stenness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8128,135899,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Findon Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7893,135900,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigellachie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7976,135901,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crathie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8797,135902,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tilliefoure Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8429,135903,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Skene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8093,135904,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Easter Rova Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7949,135905,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coyles of Muick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8425,135906,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Isbister and the Loons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8424,135907,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Girlsta","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8090,135908,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Easter Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8549,135909,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morrone Birkwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8498,135910,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lunda Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8144,135911,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foula","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5376,135912,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Whiteness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8011,135913,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Den of Finella","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8643,135914,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ramna Stacks and Gruney","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8574,135915,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nigg Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7881,135916,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cawdor Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8638,135917,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quendale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7665,135918,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abernethy Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8674,135920,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roineval","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8007,135921,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dipple Brae","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8117,135922,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fair Isle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8150,135923,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fowlsheugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8239,135924,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill of Longhaven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7851,135925,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cam Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8697,135926,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rubha Camas na Cailinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8714,135927,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheigra - Oldshoremore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7700,135928,"GBR","Common Standards Monitoring",2013,"For storage only",18,"An Cleireach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7667,135929,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill of Warehouse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8831,135930,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Vallay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8736,135931,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sligachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7711,135932,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardnamurchan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8368,135933,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Achnacloich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5452,135934,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Torridon Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8043,135935,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drimnin to Killundine Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8440,135936,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochailort","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8877,135937,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wick River Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8611,135938,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rassal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8592,135939,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oykel Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8089,135940,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Easter Fearn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7767,135941,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Freiceadain and Ben Dorrery","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8651,135942,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Reisgill Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7939,135943,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corrieshalloch Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7726,135944,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avernish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7686,135945,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alness River Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7870,135946,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn a' Bhealaich Mhoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8682,135947,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rosemarkie to Shandwick Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7701,135948,"GBR","Common Standards Monitoring",2013,"For storage only",18,"An Teallach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8164,135950,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gartally Limestone Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8254,135951,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inverhope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8106,135952,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elgol Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8409,135953,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Meodal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7941,135954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cosag Sallow Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8737,135955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slumbay Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7765,135956,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Bhan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7680,135957,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt nan Caorach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7863,135958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn nan Tri-tighearnan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8377,135959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Bran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8210,135960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gress Saltings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8184,135962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Barisdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8700,135963,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rubha Hunish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7905,135964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ceann Loch Eishort","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8121,135965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fannich Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5314,135966,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalroy and Clava Landforms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7898,135967,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Claish Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7760,135968,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn a' Chapuill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8579,135969,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Harris","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8420,135970,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Durran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7944,135971,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigroy Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8255,135972,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Invernaver","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5441,135973,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Torboll Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7790,135974,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Park, Edderton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8702,135975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8814,135976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trotternish Ridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8389,135977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Hallan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7852,135978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Camas Mor, Muck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5036,135979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bagh Tharsgabhaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7987,135980,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cuillins","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7666,135981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abhainn Alligin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8274,135982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"John o' Groats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8438,135983,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Shiel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5332,135984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandside Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8057,135985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drummondreach Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7824,135986,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Thogabhaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7632,135987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blar nam Faoileag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8445,135988,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Stiapavat","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8183,135989,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Affric","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8369,135990,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch an Duin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7641,135991,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Achnasheen Terraces","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7805,135992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boirearaig to Carn Dearg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8341,135994,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langwell Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8309,135995,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockan Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8559,135996,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moss of Killimster","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8561,135997,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mound Alderwoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8378,135998,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Dubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8555,135999,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morven and Scaraben","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8072,136000,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunbeath Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8033,136001,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doire Damh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8375,136002,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Bee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7650,136003,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aird Torrisdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8264,136004,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inverpolly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8787,136005,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Talladale Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8371,136006,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ashaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7679,136007,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt na Feithe Sheilich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7822,136008,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broubster Leans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8306,136009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockinnon Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7697,136010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Altnaharra","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8720,136011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shieldaig Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8547,136012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morrich More","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8439,136013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Watten","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8542,136014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monar Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6364,136016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Klibreck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8357,136017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch a' Sgurr Pegmatite","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8032,136018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dirlot Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8571,136019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newlands of Geise Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8605,136020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pennylands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6369,136021,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Loyal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6377,136022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben More Assynt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8365,136023,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Loch Roag Valley Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8767,136024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strathy Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7850,136025,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calrossie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8359,136026,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Levishie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7723,136027,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aultbea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7668,136028,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ach an Todhair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8851,136029,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Halladale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7920,136030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Mhialairidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7829,136031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cailleach Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8699,136032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rubha Dunan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8397,136033,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Laxavat Ard and Loch Laxavat Iorach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8023,136034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flannan Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8261,136035,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inninmore Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8091,136036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Easter Ness Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8478,136037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meall a' Mhaoil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8657,136038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rigg - Bile","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7973,136039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cromarty Firth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8543,136040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moniack Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8537,136041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monach Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5031,136042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Badanloch Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8198,136043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Coe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8392,136044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Eye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8312,136045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockfin Heights","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8286,136046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kildrummie Kames","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7639,136047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Achanarras Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8792,136048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Dens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8418,136049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Obisary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8192,136050,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Tarff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7779,136051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Hutig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8292,136052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingshouse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8481,136053,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Wick River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8463,136054,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochs at Clachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8748,136055,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Kilda","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8385,136056,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Glencoul","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8297,136057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinrive - Strathrory","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7917,136058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Dalavil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7691,136059,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Geodh' a' Ghamhna","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8434,136060,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Scarmclate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8683,136061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roskill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8783,136062,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Talisker","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8174,136063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northton Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8740,136064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spinningdale Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8253,136065,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inverfarigaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7979,136066,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag na Croiche","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7733,136067,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballinreach Coastal Gorges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7692,136068,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Grillan Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8509,136069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Machairs Robach and Newton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8829,136070,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ushat Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8075,136071,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duncansby Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7875,136072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle of Old Wick to Craig Hammel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7643,136074,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Affric - Cannich Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7652,136076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Armadale Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7716,136077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardvar Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8046,136078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Druim Iosal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8103,136080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eilean Chlamail - Camas nan Ceann","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8624,136081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitmaduthy Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8608,136082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Phillips Mains Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7918,136083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Dhubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7776,136084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Griams","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8366,136085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Littlemill Fluvioglacial Landforms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8843,136086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Benbecula Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8442,136087,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Stack and River Laxford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7699,136088,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Amat Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8251,136089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inverbrora","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8722,136090,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shielton Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8753,136091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stack Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8222,136092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Handa Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8382,136093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Cleat","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8432,136094,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Winless","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8449,136095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Tuamister","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5429,136096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tong Saltings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7855,136097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Canna and Sanday","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8672,136098,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Thurso","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8153,136099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garbh Allt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8772,136100,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tarbat Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7708,136101,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardlair - Letterewe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7649,136102,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aird Thuirinis - Port na Long","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8827,136104,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Urquhart Bay Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8388,136105,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Druidibeg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8693,136106,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rubh' an Eireannaich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7752,136107,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banniskirk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8415,136108,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch na Cartach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8475,136109,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lon Leanachain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8765,136110,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strathfleet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6400,136111,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Wyvis","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8517,136112,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Migdale Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5380,136113,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southern Parphe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8806,136115,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Torvean Landforms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7947,136116,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coulin Pinewoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8196,136117,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Valtos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8352,136118,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ledmore Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6339,136119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Eighe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7683,136120,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Bholagair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7678,136121,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alladale Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8394,136122,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Fleet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7753,136123,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baosbheinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8248,136124,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kyle of Sutherland Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8451,136125,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ussie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8770,136126,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strontian Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7640,136128,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Achmore Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5155,136129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Beasdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7746,136130,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balranald Bog and Loch nam Feithean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8417,136131,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch nan Eilean Valley Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8599,136132,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parallel Roads of Lochaber","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7736,136133,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baleshare and Kirkibost","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8278,136134,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kentra Bay and Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8416,136135,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mointeach Scadabhaigh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8071,136136,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunbeath to Sgaps Geo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8190,136138,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Strathfarrar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7864,136139,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carnach Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7759,136140,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beauly Firth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8738,136142,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Small Seal Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8873,136143,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whiteness Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8664,136144,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rockall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7978,136145,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag Chorcurach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8137,136147,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foinaven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8583,136148,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Rona and Sula Sgeir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5416,136149,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thrumster Mill Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8085,136150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunrobin Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8505,136151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mangersta Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8386,136152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Dalbeg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7636,136154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bornish and Ormiclate Machairs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8244,136155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Howmore Estuary, Lochs Roag and Fada","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7784,136156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berriedale Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8374,136158,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Beannach Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8105,136159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eilean nan Ron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7785,136160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berriedale Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7879,136161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrol Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7682,136162,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt nan Carnan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7921,136163,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Mhor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8170,136164,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Geary Ravine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8535,136165,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mingulay and Berneray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7980,136166,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag nan Clag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6384,136167,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Nevis","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7808,136168,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braelangwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5232,136169,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Munlochy Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8395,136170,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Heilen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8635,136171,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Priest Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8768,136172,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stroma","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8111,136173,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eoligarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8356,136174,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leven Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8715,136175,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shiant Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8742,136176,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spittal Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7766,136177,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Dearg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8083,136178,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunnet Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8015,136179,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fionn Loch Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8431,136180,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Wester","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8776,136181,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Struie Channels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7690,136182,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Cracaig Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8479,136183,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meall an t-Sithe and Creag Rainich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8084,136184,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunnet Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8112,136185,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eriboll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8207,136186,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ob Lusa to Ardnish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7703,136187,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ard Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8487,136188,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loth Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7778,136190,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Hope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8654,136191,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhidorroch Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8412,136192,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ruthven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7669,136193,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holborn Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7827,136195,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coire na Beinne Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8800,136197,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tolsta Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8696,136198,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scourie Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8141,136199,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forsinard Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8223,136200,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hangman's Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7860,136201,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn a' Mhadaidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8403,136202,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raasay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8414,136203,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Morar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8763,136205,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8595,136207,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ousdale Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8863,136208,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westfield Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7706,136209,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardersier Glacial Deposits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4618,136210,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Halesend Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6173,136211,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Milkingstead Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5668,136212,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waterdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3881,136213,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanford Training Area","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4321,136214,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Checkhill Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4933,136215,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aversley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4795,136216,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bush Wood and High Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6041,136217,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cropple How Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3784,136218,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chancellor's Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2653,136219,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Larkey Valley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2490,136220,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ash To Brookwood Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4516,136221,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aston Grove & Withycombe Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6176,136222,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanley Ghyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6263,136223,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parley Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3127,136224,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Woodford Water Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3321,136225,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fremington Quay Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5564,136226,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barrow Burn Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3617,136227,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braunton Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2654,136228,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lenham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3666,136229,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haytor and Smallacombe Iron Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4796,136230,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chorley Covert and Deserts Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4934,136231,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balsham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3786,136232,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Millwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4563,136233,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grace Dieu and High Sharpley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4304,136234,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combes Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3926,136235,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanley and Alder Carrs, Aldeby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4619,136236,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hanley Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2832,136237,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West's Meadow, Aldermaston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5555,136238,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenhaugh Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5388,136239,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cowpen Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5817,136240,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Briarwood Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5669,136241,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bull Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3336,136242,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westhay Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3930,136244,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crostwick Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4798,136245,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clunton Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3787,136246,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Viaduct Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4936,136247,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barrington Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2914,136248,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombe Wood and The Lythe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4564,136249,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grantham Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5818,136250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duncombe Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4722,136251,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Highbury Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4600,136252,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hartlebury Common and Hillditch Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5389,136253,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hart Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6177,136254,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wast Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5670,136255,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wharram Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6042,136256,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dodgson Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4861,136257,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Causey Bank Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2890,136258,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coulters Dean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4305,136259,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cop Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4799,136260,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Sychtyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3788,136261,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leighton Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4937,136262,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bassenhally Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3123,136263,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morgan's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3458,136264,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peashill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2491,136265,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colyers Hanger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3582,136266,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Godminster Lane Quarry and Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2655,136267,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tower Hill To Cockham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2835,136268,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shabbington Woods Complex","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2827,136270,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Priest's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5671,136271,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitby-Saltwick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3338,136272,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hawkesbury Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3789,136273,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maes Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4938,136274,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bedford Purlieus","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4801,136275,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crofts Mill Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3459,136276,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Piddles Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6043,136277,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drigg Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4746,136278,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Bowden Borrowpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6179,136279,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birk Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5672,136280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wintringham Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6178,136281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shap Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5390,136282,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pinkney and Gerrick Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2337,136283,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Daddyhole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5814,136284,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bamburgh Coast and Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2891,136285,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Danebury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3128,136286,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Odstock Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4940,136287,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berry Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4601,136288,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hewell Park Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3583,136289,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Emborough Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5228,136290,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Groby Pool and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3461,136291,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitcombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2492,136292,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combe Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2828,136293,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chilbolton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2656,136294,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lullingstone Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6044,136296,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duddon Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4604,136297,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill Hole Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4802,136298,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woolston Eyes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2493,136299,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devil's Punch Bowl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4327,136300,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forest Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4944,136301,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bonemills Hollow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3048,136302,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pishill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2447,136303,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poole Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4669,136304,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newport Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5969,136305,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gelt Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2829,136306,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foxlease and Ancells Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3129,136307,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Okus Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2657,136308,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lydden and Temple Ewell Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6047,136309,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dungeon Ghyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5815,136310,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Howick To Seaton Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5383,136312,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roseberry Topping","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2916,136313,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Downend Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6180,136314,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lindrick Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3462,136315,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Isle Of Portland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4605,136316,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hopwood Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6280,136317,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fernhill Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5229,136318,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harby Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2494,136319,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Epsom and Ashtead Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3049,136320,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pixey and Yarnton Meads","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3931,136321,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swangey Fen, Attleborough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6181,136322,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bilham Sand Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2658,136323,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brook Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3585,136324,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Breach and Copley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5610,136325,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lindisfarne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5230,136326,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holwell Mouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4606,136327,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ipsley Alders Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6281,136328,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Topley Pike and Deepdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4370,136329,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seal Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4670,136330,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salmonsbury Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3888,136331,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swannington Upgate Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3394,136332,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3790,136333,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thrupe Lane Swallet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4387,136334,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seaton Dunes and Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3050,136335,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Port Meadow With Wolvercote Common & Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2659,136336,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lympne Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5605,136337,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ling Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2358,136338,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleaves Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2917,136339,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eelmoor Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4330,136340,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Goat Lodge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6264,136341,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Povington and Grange Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2660,136342,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lynsore Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4823,136343,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Stukeley Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3088,136344,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moon's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4941,136345,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brackland Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5941,136346,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gowk Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3053,136347,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Reed Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4508,136348,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wyns Tor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4804,136349,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hencott Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4672,136350,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prescott Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5673,136351,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashes Pasture and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4390,136352,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Gare & Coatham Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2918,136353,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eling and Bury Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4807,136354,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hodnet Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2833,136355,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stockbridge Common Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3344,136356,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ribsons Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3056,136357,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rock Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4942,136358,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brampton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3791,136359,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wurt Pit and Devil's Punchbowl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5944,136361,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4827,136362,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holland Hall (Melbourn) Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4517,136363,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breadsall Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3896,136364,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thetford Golf Course & Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5375,136365,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cow Cliff Pasture and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6150,136366,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duddon Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2991,136367,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Madeley Heath Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5674,136368,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Askham Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5945,136369,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollows Farm Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4333,136370,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinver Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2661,136371,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Magpie Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4948,136372,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buff Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5233,136374,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ketton Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3230,136375,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holwell Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4518,136376,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cromford Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3331,136377,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drakenorth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4403,136378,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boulby Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4215,136379,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dane-In-Shaw Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3055,136380,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitehorse Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4808,136381,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lin Can Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4328,136382,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loynton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2662,136383,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marden Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5946,136384,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Honister Crag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5234,136385,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilby - Foxton Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3464,136386,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Radipole Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3522,136387,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5565,136388,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crime Rigg and Sherburn Hill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5820,136389,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brignall Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6168,136391,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wharncliffe Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3792,136392,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandpit Hole and Bishop's Lot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2663,136393,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Medway Estuary and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3379,136394,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2425,136395,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lamb Leer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5964,136396,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5235,136397,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Launde Big Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3897,136398,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thompson Water, Carr and Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3059,136399,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sharp's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4509,136400,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baileycroft Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6182,136401,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stannington Ruffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6532,136402,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Durham Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3523,136403,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frome St, Quintin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5391,136404,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langbaurgh Ridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2919,136405,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gilkicker Lagoon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5392,136406,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redcar Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2426,136407,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langford Heathfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3793,136408,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blue Pool and Norden Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5236,136409,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leighfield Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4809,136410,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lydebrook Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6174,136411,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carlton Main Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3586,136412,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Nectan's Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4810,136413,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Montgomery Canal, Aston Locks - Keeper's Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4828,136414,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sherrardspark Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3794,136415,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bourne Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3038,136416,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheep's Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3524,136417,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4520,136418,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carver's Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3932,136419,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Narborough Railway Embankment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2664,136420,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oldbury and Seal Chart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5142,136421,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Potterhanworth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5973,136422,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Johnny Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4335,136423,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maer Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2920,136424,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greywell Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5393,136425,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shibdon Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4024,136426,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shelfanger Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5567,136427,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairy Holes Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5821,136428,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Saltburn Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3042,136429,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shellingford Crossroads Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2969,136430,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alvescot Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4949,136431,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castor Flood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4787,136432,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morton Pool and Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4033,136433,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ducan's Marsh, Claxton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5568,136434,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hawthorn Dene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4829,136435,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashton's Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3933,136436,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upton Broad & Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6184,136437,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Neepsend Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5800,136438,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stonepit and Nova Slacks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2578,136439,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shipton-On-Cherwell & Whitehill Farm Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2926,136440,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Norley Copse and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2970,136441,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harpsden Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3587,136442,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Quantocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4521,136443,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cawdor Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4034,136444,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aslacton Parish Land","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5974,136445,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lodore - Troutdale Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2665,136446,"GBR","Common Standards Monitoring",2013,"For storage only",18,"One Tree Hill and Bitchet Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3525,136447,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lambert's Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3934,136448,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warham Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2364,136449,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cold Ash Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4866,136450,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hell Kettles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3043,136451,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shirburn Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4830,136452,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wing Water Treatment Works","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4813,136453,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old River Bed, Shrewsbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5144,136454,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sapperton & Pickworth Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6185,136455,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Neepsend Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5806,136456,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Backstone Bank and Baal Hill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2971,136457,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berrick Trench","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2365,136458,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Thrift Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2666,136460,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Otford To Shoreham Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4951,136461,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cherry Hinton Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6183,136462,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradgate Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4522,136463,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combs Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5975,136464,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lyne Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3526,136465,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mapperton and Poorton Vales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3590,136466,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Priddy Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4035,136467,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shotesham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5395,136468,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Claxheugh Rock and Ford Limestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4499,136469,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ramsey's Burn Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4511,136470,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crabtree Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2973,136471,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stockbridge Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2668,136472,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Wood, Chilham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3591,136473,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prior's Park & Adcombe Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5140,136474,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scotton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4814,136475,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flat Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4339,136476,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stafford Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3935,136477,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wayland Wood, Watton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3044,136478,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brasenose Wood and Shotover Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3527,136479,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oakers Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6188,136480,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hesketh Golf Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4036,136481,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fritton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2836,136482,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pincent's Kiln","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2670,136483,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parkgate Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5148,136484,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scotton and Laughton Forest Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5822,136485,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Hartley Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6191,136486,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Millfield Verges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4803,136487,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Fiddle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4524,136488,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duckmanton Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3179,136489,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hook Heath Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2673,136490,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parsonage Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5400,136491,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fulwell and Carley Hill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2837,136492,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woolhampton Reed Bed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5976,136493,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mollen Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2606,136494,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beeding Hill To Newtimber Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4037,136495,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forncett Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3593,136496,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Dunstan's Well Catchment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3183,136497,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warblington Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3045,136498,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sidling's Copse and College Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3805,136499,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wells Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4525,136500,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moss Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4805,136501,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ruewood Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5566,136502,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilmond Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5149,136503,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sea Bank Clay Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4162,136504,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stocking Meadows, Oreton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2838,136505,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aston Clinton Ragpits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3046,136506,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stonesfield Common, Bottoms & Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4953,136507,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dernford Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5978,136508,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moorthwaite Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3184,136509,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warnborough Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4039,136510,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sweetbriar Road Meadows, Norwich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2607,136511,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fyning Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5823,136512,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burnhope Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5007,136513,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middleton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3938,136514,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Runton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4674,136515,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodbury Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3588,136516,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seavington St, Mary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4175,136517,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ginny Spring,Whitwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3939,136518,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westwick Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5012,136519,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4954,136520,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devil's Dyke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5979,136521,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3051,136522,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stonesfield Slate Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5824,136523,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Railway Stell West","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2885,136524,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Winchester Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5034,136525,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porter's Lodge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3188,136526,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Burghclere Lime Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3854,136527,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4955,136528,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eversden Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5150,136529,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skendleby Psalter Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5980,136530,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oulton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2608,136531,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harting Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5752,136532,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flamborough Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3052,136533,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stratton Audley Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2367,136534,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aston Rowant Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5498,136535,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Carrs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5078,136536,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleatham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3060,136537,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sturt Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4530,136538,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hilton Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4040,136539,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hardley Flood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5982,136540,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Over Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5152,136541,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sotby Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4675,136542,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wormbridge Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4956,136543,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eye Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2609,136544,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heyshott Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3589,136545,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sharpham Moor Plot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3855,136546,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodham Walter Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4831,136547,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alpine Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2610,136549,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurston Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3185,136550,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Toyd Down and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4531,136551,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hipley Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3250,136552,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aunt Mary's Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5021,136553,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pow Hill Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2368,136554,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bierton Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3667,136555,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barle Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3594,136556,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Snowdon Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3856,136557,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breydon Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4832,136558,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashridge Commons and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3529,136560,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Agnes Beacon Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5747,136561,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warks Burn Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2611,136562,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Iping Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4677,136563,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wylde Moor, Feckenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3808,136564,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alderfen Broad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3061,136565,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swyncombe Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4532,136566,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollinhill and Markland Grips","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4833,136567,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kings and Bakers Woods and Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5023,136568,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Moss Lead Vein","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2373,136569,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bolter End Sand Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5984,136570,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salta Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3595,136571,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sparkford Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3669,136572,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Freshmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3063,136573,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Taynton Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3261,136574,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitchurch Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5985,136575,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandybeck Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2374,136576,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradenham Woods, Park Wood & The Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5569,136577,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park End Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4821,136578,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salcey Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4682,136579,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Box Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5287,136580,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cooper's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3859,136581,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alderford Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3530,136582,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Steeple Point To Marsland Mouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3531,136583,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Erth Sand Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5296,136584,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deacon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3066,136585,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tuckmill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5989,136586,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scaleby Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4527,136587,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hulland Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5754,136588,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arcot Hall Grasslands and Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5570,136589,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raisby Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3670,136590,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ringdown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3262,136591,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kismeldon Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2375,136592,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bugle Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3860,136593,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ant Broads and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4824,136594,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ouse Washes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5991,136595,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scales Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3067,136596,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waterperry Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4528,136597,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Matlock Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3532,136598,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St John's Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2376,136599,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burnham Beeches","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3664,136600,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Road Quarry, Bath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4028,136601,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cawston & Marsham Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5755,136602,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Darras Hall Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3068,136603,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Watlington and Pyrton Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5153,136604,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Surfleet Lows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4529,136605,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morley Brick Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4610,136606,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devil's Hole, Morville","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5299,136607,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fancott Woods and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4685,136608,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashleworth Ham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4825,136611,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Over and Lawn Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3368,136612,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stourscombe Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2613,136613,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lavington Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3665,136614,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bickley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5300,136615,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Felmersham Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2614,136616,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Mens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4533,136617,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ogston Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5879,136618,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hatfield Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4686,136619,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Badgeworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2979,136620,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Headon Warren and West High Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3861,136621,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barnhamcross Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2776,136622,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buttler's Hangings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3369,136623,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tintagel Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5571,136624,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shipley and Great Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3186,136625,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Briddlesford Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5145,136626,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swallow Wold","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4188,136627,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fox Hole Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4038,136628,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Cressingham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2981,136629,"GBR","Common Standards Monitoring",2013,"For storage only",18,"King's Quay Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6276,136630,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barnsley Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5290,136631,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flitwick Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2615,136632,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mills Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2779,136634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ebblake Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4189,136635,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Green Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3671,136636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3376,136637,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trebetherick Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4834,136638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sawbridgeworth Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5291,136639,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Galley and Warden Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5902,136640,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roche Abbey Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4691,136641,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wellacre Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4179,136642,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombe Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4191,136643,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wilderness & Vermin Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2576,136644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Medina Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2616,136645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northpark Copse To Snapelands Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5573,136646,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slit Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2781,136647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dancersend","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5146,136648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tattershall Carrs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3187,136649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parkhurst Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4041,136650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kenninghall & Banham Fens With Quidenham Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4676,136651,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bourton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5757,136652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longhorsley Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4793,136653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cottonshope Head Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2982,136654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mottistone Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2711,136655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horton Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4835,136656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashwell Springs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5574,136657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cotherstone Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3266,136658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yanal Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4043,136659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Badley Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5156,136660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tattershall Old Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3377,136661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Treen Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5904,136662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maltby Low Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3844,136663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Limpenhoe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2618,136664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pads Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5501,136665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cresswell Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2984,136666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prospect Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5758,136667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Conistone Old Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3267,136668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morcombelake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5159,136669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tetford Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4044,136670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Islington Heronry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3471,136671,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tregargus Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2985,136672,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rew Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2565,136673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pagham Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5759,136674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen Y Ghent Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4678,136675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boxwell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3190,136676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eaglehead and Bloodstone Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2713,136677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Levin Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3862,136678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blo' Norton and Thelnetham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4836,136679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benington High Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2986,136680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rowridge Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3268,136681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trevone Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5160,136682,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tetney Blow Wells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5905,136683,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Owston Hay Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4679,136684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brassey Reserve and Windrush Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2566,136685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parham Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5293,136686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kings Wood and Glebe Meadows, Houghton Conquest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2839,136687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ellesborough and Kimble Warrens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3986,136688,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Heath, Barnham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3465,136689,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Brentor Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3472,136690,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crowhill Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2714,136692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marehill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3466,136693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lydford Railway Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5161,136694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Troy Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2588,136695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Farm Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3367,136696,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ventongimps Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3987,136697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lordswell Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2787,136698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fern House Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2715,136699,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rake Hanger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3191,136700,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greatwood and Cliff Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3239,136701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ottery Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3863,136702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Booton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5051,136703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clarborough Tunnel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4680,136704,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bull Cross, The Frith and Juniper Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5761,136705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkby Wharfe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5502,136706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Farne Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5052,136707,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clumber Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2791,136708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foxcote Reservoir and Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3639,136709,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colne Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3865,136710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boughton Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2357,136712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shapwick Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3989,136713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maidscross Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5762,136714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenfield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5906,136715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Potteric Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4165,136716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chaceley Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3489,136717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Lizard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5907,136719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandall Beat","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5053,136720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dyscarr Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3990,136721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mickfield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5295,136722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marston Thrift","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3192,136723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"America Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2840,136724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gomm Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3467,136725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Babcary Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3866,136726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bramerton Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3672,136727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hembury Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3828,136728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middle Harling Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5503,136729,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ford Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3500,136730,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Helen's (With Northwethel & Men-A-Vaur)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5909,136731,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shirley Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4837,136732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bricket Wood Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2987,136733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Lawrence Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2589,136734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St. Leonard's Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3534,136735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Purn Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4984,136736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glebe Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4340,136737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurcott and Podmore Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3857,136738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Milden Thicks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5054,136739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eakring and Maplebeck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2928,136740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Galley Down Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2410,136741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shide Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2716,136742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waltham Brooks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4346,136743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Friezeland Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2619,136744,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St. Leonard's Park Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3673,136745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hense Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4838,136746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wormley-Hoddesdonpark Wood South","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3858,136747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minsmere-Walberswick Heaths and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4341,136748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lea & Pagets Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3195,136749,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northpark Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4681,136750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleeve Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3468,136751,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dozmary Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5910,136752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Totley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3538,136753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aust Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5297,136754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maulden Wood and Pennyfather's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6192,136755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Calder Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2620,136756,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shillinglee Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3651,136757,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dengie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4428,136758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Lime Works Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3988,136759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monewden Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5913,136760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Went Ings Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4364,136761,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gamston & Eaton Woods & Roadside Verges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5552,136762,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Eden Dene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4683,136763,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Lump, Priestweston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3774,136764,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trehane Barton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4344,136766,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5401,136767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gilleylaw Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3674,136768,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Down Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6189,136769,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nostell Brickyard Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3469,136770,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Dartmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3528,136771,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banwell Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4693,136772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coaley Wood Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6048,136773,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elterwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5504,136774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenleighton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3870,136775,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broad Fen, Dilham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5057,136776,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gotham Hill Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5402,136777,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Angram Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3196,136778,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cridmore Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6193,136779,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tonge River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3835,136780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryant's Heath, Felmingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2463,136781,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Arun","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5058,136782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hills and Holes and Sookholme Brook, Warsop","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5764,136783,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Dunsforth Carrs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2411,136785,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ventnor Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6049,136786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ennerdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3535,136787,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barnhill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2703,136788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hart Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4694,136790,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Collinpark Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2495,136791,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Esher Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2371,136792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Neutral Farm Pit, Butley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6196,136793,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lowside Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5765,136794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pike Whin Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4840,136796,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croxley Common Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4695,136797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombe Hill Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2582,136798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lullington Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2372,136799,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newbourn Springs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3675,136800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollow Moor & Odham Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5301,136801,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Odell Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4332,136802,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodshuts Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5397,136803,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deepdale Meadows, Langstrothdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5760,136804,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raisby Hill Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2496,136806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glover's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2412,136807,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitecliff Bay and Bembridge Ledges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5920,136808,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Artle Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3536,136809,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blagdon Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3676,136810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hope's Nose To Wall's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5398,136812,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Green Lane Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6197,136813,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blea Tarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2932,136814,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quarley Hill Fort","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5767,136815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleadon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3543,136816,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bodkin Hazel Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4314,136817,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leigh Brook Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4961,136818,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tilwick Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2497,136820,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Godstone Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5059,136821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holme Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2988,136822,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wilderness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5404,136824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barn Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4334,136825,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eastnor Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4841,136826,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northaw Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5768,136827,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Big Waters","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4347,136828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swanpool Wood and Furnace Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5302,136829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Potton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3677,136830,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hunshaw Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2577,136831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yar Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3544,136832,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowlditch Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5505,136834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harbottle Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3991,136836,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Norton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4408,136837,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4844,136838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blagrove Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4962,136839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elsworth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5405,136840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishop Wilton Poor Land","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6200,136841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trowbarrow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3596,136842,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langport Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2498,136843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hedgecourt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4620,136844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Byefields Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3545,136845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Uphill Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6052,136846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greendale Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5061,136847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kimberley Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2717,136848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorpe Hay Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5406,136849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spiker's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4966,136850,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Paxton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2428,136851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shepton Montague Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5506,136852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hareshaw Dene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6201,136853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cowraik Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2718,136854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3546,136855,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brinkmarsh Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4883,136856,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinoulton Marsh and Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2499,136857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horsell Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5307,136858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandy Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3678,136859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kent's Cavern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5507,136860,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hesleyside Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5921,136861,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2429,136862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laycock Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4815,136863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whittlesford - Thriplow Hummocky Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3832,136864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bure Broads and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5370,136865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Golden Hill Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3680,136866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kersdown Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4751,136867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lockington Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2989,136868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Appleton Lower Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2719,136869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stones Road Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4622,136870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Littlemarsh Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4945,136872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Biddenham Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3470,136873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Studland Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5922,136874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clitheroe Knoll Reefs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4889,136875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkby Grives","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6053,136876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haile Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5509,136877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holburn Lake and Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3995,136878,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pashford Poor's Fen, Lakenheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3684,136879,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lady's Wood and Viaduct Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5237,136880,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lount Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2990,136881,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardley Cutting and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6056,136882,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cotehill Pastures and Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2430,136883,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edford Woods & Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5240,136884,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Luffenham Heath Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3996,136885,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rockhall Wood Pit, Sutton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2591,136886,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pevensey Levels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2927,136887,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arncott Bridge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3776,136888,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Canford Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2431,136889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Ironstone Works, Mells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2500,136890,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langham Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5914,136891,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crag Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2929,136892,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aston Upthorpe Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2501,136893,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leith Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4969,136894,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clipstone Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5915,136895,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cringlebarrow and Deepdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4411,136896,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Meadow, Thorn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2933,136897,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hazeley Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5112,136898,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Main Quarry, Mountsorrel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3999,136899,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Snape Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6057,136900,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hallsenna Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4890,136901,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laxton Sykes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4895,136902,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linby Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5510,136903,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holystone Burn Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4535,136904,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calcutt Locks Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2433,136905,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunsdon Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3473,136906,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thrasher's Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3685,136907,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lockridge Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4412,136908,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bittell Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3779,136909,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandford Lane Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4084,136910,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Metfield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2434,136911,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woolcombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5511,136912,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holywell Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2502,136913,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lingfield Cernes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3477,136914,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Townsend","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5063,136915,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lord Stubbins Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4085,136916,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chippenhall Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3783,136917,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradford Abbas Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5363,136918,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Derwent Gorge & Horsleyhope Ravine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4536,136919,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Four Ashes Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4000,136920,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sotterley Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5141,136921,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Durtrees Burn Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3668,136922,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lord's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3478,136923,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4348,136924,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swineholes Wood and Blackheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5243,136925,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Narborough Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4001,136926,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sprat's Water and Marshes, Carlton Colville","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2567,136928,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Highcliffe To Milford Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4541,136929,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swan Pool & The Swag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5576,136930,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tophill Low","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5245,136931,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2503,136932,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mole Gap To Reigate Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2678,136934,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pembury Cutting and Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5403,136935,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gosforth Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5065,136936,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mather Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2720,136937,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Firle Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3679,136938,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lummaton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3955,136939,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cavenham - Icklingham Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4349,136940,"GBR","Common Standards Monitoring",2013,"For storage only",18,"King's and Hargreaves Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3993,136941,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stallode Wash, Lakenheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4624,136942,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mains Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5512,136943,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kielderhead and Emblehope Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5066,136944,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mattersey Hill Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4086,136945,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maldon Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6058,136946,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Humphrey Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3479,136947,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upton Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4350,136948,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doxey and Tillington Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3994,136949,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanton Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3237,136950,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shillingstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4087,136951,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Bodney Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2679,136952,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Polebrook Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3821,136953,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hamford Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5577,136954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Carr Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5407,136955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Herrington Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5067,136956,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Misson Line Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2570,136957,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurst Castle and Lymington River Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3480,136958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Valley Of Stones","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3681,136959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lydford Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4625,136960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Malvern Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3795,136961,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upwey Quarries and Bincombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2550,136962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moor Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4352,136963,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old River Dove, Marston On Dove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5246,136964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newhurst Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4089,136965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Priory Meadows, Hickling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4002,136966,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Staverton Park and The Thicks, Wantisden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5298,136967,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Moorsley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5578,136968,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birkham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5247,136969,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newton Burgoland Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4164,136970,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longstone Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5068,136972,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newhall Reservoir Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2680,136973,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Preston Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2934,136974,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hythe To Calshot Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4358,136975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ufton Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2551,136976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Papercourt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4092,136977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Coppice, Kelvedon Hatch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4542,136978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cornbrook Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5345,136979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Haining Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5086,136980,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkham Park & Riverside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3682,136981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lundy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6045,136982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knipe Tarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4626,136983,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mayhill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5115,136984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Luffenham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5072,136985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Normanton Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2552,136986,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ockham and Wisley Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3683,136987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meldon Aplite Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6046,136988,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brantrake Moss & Devoke Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2683,136989,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Purple Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3744,136990,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roche Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3481,136991,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Dorset Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5825,136992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strother Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5408,136994,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Humbledon Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5579,136995,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalby Bush Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5249,136996,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oakley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3482,136997,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winfrith Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2553,136998,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Puttenham & Crooksbury Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4964,136999,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fleam Dyke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2359,137000,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morte Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2842,137001,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calbourne Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2390,137002,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Mewan Beacon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3358,137003,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Priddy Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2684,137004,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Robins Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5827,137005,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wharmley Riverside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5409,137006,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hylton Castle Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4972,137008,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fowlmere Watercress Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6054,137009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Langdale Tarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3686,137010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Napp's Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8110,137011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Endrick Mouth and Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7961,137012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigengar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8361,137013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Liatrie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5019,137014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Back Bay to Carghidown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8108,137015,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ellergower Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8215,137016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Cambus Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7696,137017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Mor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2435,137018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tealham and Tadham Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2392,137019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wheal Martyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5410,137020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Joe's Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2555,137021,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quarry Hangers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4093,137022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Oakley Channel Deposit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5580,137023,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scar Closes, Kisdon Side","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4359,137024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bannam's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4239,137025,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sweeney Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4976,137026,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fulbourn Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6055,137027,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longsleddale Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4095,137030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frithy and Chadacre Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2395,137031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yeolmbridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5828,137032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishop Monkton Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3796,137033,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slop Bog and Uddens Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5412,137034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prestwick Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4627,137036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mocktree Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4163,137037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bentley Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2436,137038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thurlbear Wood and Quarrylands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2556,137039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ranmore Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5118,137040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Owston Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4977,137041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Furze Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6060,137042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low Church Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4096,137043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thrift Wood, Woodham Ferrers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4240,137044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thatchers Wood and Westwood Covert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5829,137045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gibside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4241,137046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trefonen Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4098,137047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Field Barn Heaths, Hilborough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3364,137048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dyer's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6061,137049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meathop Woods and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2557,137050,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Reigate Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5121,137051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pasture and Asplin Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2685,137052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandwich Bay To Hacklinge Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2437,137053,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Vallis Vale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2843,137054,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Locks Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4983,137055,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gamlingay Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5993,137056,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Siddick Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4242,137057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2504,137058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seale Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3427,137060,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bridgwater Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2353,137061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wendlebury Meads and Mansmoor Closes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4422,137062,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monkwood Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6065,137063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meathop Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2438,137064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walton and Ivythorn Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4100,137065,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hooks Well Meadows, Great Cressingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4360,137066,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brandon Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5413,137067,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tunstall Hills and Ryhope Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5826,137068,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drewton Lane Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2686,137069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scord's Wood and Brockhoult Mount","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3836,137071,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eriswell Low Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5250,137072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prior's Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4985,137073,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hardwick Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6170,137074,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Argill Woods and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4243,137075,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wolverton Wood and Alcaston Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2846,137076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salt Way, Ditchley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2938,137077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ladle Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2505,137078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheepleas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5356,137079,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tynemouth To Seaton Sluice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5251,137080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Eye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2427,137081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cull-Peppers Dish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2687,137082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scotney Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4538,137083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ambergate and Ridgeway Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2939,137084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langstone Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3797,137085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spara Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2439,137086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westhay Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4244,137087,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Betton Dingle and Gulley Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4628,137088,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mutlow's Orchard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2841,137089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Worsham Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4101,137090,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandbeach Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4826,137091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belshaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3054,137092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitehill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3370,137093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braunton Swanpool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5414,137094,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wear River Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2688,137095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sevenoaks Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3798,137096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wistman's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4245,137097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buildwas River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2847,137098,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knightsbridge Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5415,137099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harton Down Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3597,137100,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitevine Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5998,137101,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stonethwaite Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5830,137103,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Messingham Sand Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2940,137104,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lincegrove and Hackett's Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4539,137105,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shining Cliff Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2777,137106,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wicklesham and Coxwell Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4216,137107,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Malthouse Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4365,137108,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coleshill and Bannerly Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5999,137109,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thirlmere Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3936,137110,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coston Farm Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5252,137111,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rutland Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4217,137112,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pikes Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5831,137113,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Ure Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3799,137114,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stout's Cottage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3378,137115,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blandford Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3807,137116,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yare Broads and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4088,137118,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gooderstone Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3071,137119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodeaton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5832,137120,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stutton Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4987,137121,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hayley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4337,137122,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combe Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4540,137123,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ticknall Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4850,137124,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greetham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5582,137125,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Town Kelloe Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4246,137126,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coundmoor Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4219,137127,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longhope Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3599,137128,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Windsor Hill Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6000,137129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thurstonfield Lough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5411,137130,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hastings Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2689,137131,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shorne and Ashenbank Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5367,137132,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lovely Seat - Stainton Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3600,137133,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Windsor Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2690,137134,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sissinghurst Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4045,137135,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dillington Carr, Gressenhall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4306,137136,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Toddbrook Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6001,137137,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Unity Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3800,137138,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Two Bridges Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4986,137139,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hildersham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6257,137140,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodeaton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4338,137141,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Copmill Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4851,137142,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blisworth Rectory Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5417,137143,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ryton Willows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5584,137145,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waldridge Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9349,137146,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5254,137147,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shacklewell Hollow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5151,137148,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheepy Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4342,137149,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cross Hands Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5419,137150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thornley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4852,137151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bozeat Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4307,137152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poole's Cavern and Grin Low Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3603,137153,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wookey Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2941,137154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Test Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2942,137155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lymington River Reedbeds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5585,137156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westernhope Burn Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4774,137157,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plumpton Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4366,137158,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Draycote Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4048,137159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hilgay Heronry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2440,137160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aller Sand Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4047,137161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gunton Park Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6002,137162,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wedholme Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3604,137163,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Andrew's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4432,137164,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Irchester Old Lodge Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5586,137165,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Rigg Open Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4051,137166,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Happisburgh Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4762,137167,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brampton Racecourse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5862,137168,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alston Shingle Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4367,137170,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harbury Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3726,137171,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Whipcott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5587,137172,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Witton-Le-Wear","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3107,137173,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fyfield Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2915,137174,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mapledurwell Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3073,137175,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wytham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4777,137176,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashby Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4545,137177,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashmoor Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4854,137178,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tolethorpe Road Verges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5421,137179,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allerthorpe Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4435,137180,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanton Pastures & Cuckoocliff Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2921,137181,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Micheldever Spoil Heaps","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2397,137182,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wheal Emily","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5588,137183,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crag Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2850,137184,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grangelands & Pulpit Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4989,137185,"GBR","Common Standards Monitoring",2013,"For storage only",18,"L-Moor, Shepreth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2691,137186,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westerham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4052,137187,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Briton's Lane Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2851,137188,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grendon and Doddershall Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5981,137189,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackdike Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3605,137190,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arlington","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4550,137191,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bank and Cother Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3607,137192,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashculm Turbary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6237,137193,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Town End Meadows, Little Asby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4450,137194,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rawbones Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2674,137195,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wouldham To Detling Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3608,137196,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Babbacombe Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4990,137197,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Out and Plunder Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4081,137198,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Norfolk Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5418,137199,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beckhead Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4054,137200,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beeston Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6109,137202,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Darwen River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4297,137203,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alveley Grindstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5423,137205,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishop Wilton Deep Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5589,137206,"GBR","Common Standards Monitoring",2013,"For storage only",18,"God's Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5639,137207,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raincliffe & Forge Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6238,137208,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Annaside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2897,137209,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Solent","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6004,137210,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blea Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2852,137211,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ham Home-Cum-Hamgreen Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5590,137212,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pig Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4546,137213,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birchend","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4453,137214,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pennsylvania Fields, Sedbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6111,137215,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harper Clough and Smalley Delph Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2621,137216,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sullington Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2676,137217,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yockletts Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4055,137218,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Runton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5244,137219,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boynton Willow Garth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5591,137220,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rogerley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6005,137221,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Borrow Beck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3197,137222,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lacey's Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2399,137223,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corfe & Barrow Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5514,137224,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorneyburn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6006,137225,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brothers Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5592,137226,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hesledon Moor West","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6231,137227,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clints Crags, Blindcrake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2854,137228,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollowhill and Pullingshill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2532,137229,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rough Bank, Miserden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3612,137230,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beaford Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5593,137231,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pittington Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4456,137232,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bromsgrove Road Cutting, Tenterfields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3613,137233,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beer Quarry and Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4058,137234,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackborough End Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2855,137235,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Homefield Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4690,137236,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crickley Hill and Barrow Wake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4991,137237,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Madingley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5833,137238,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowes Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3201,137239,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redhill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4247,137240,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mersey Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5983,137241,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burrells Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3839,137242,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burgh Common and Muckfleet Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6165,137243,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rusland Valley Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4059,137244,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pulham Market Big Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2622,137245,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Dean Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3202,137246,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Enborne Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6009,137247,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cliburn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2856,137248,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ivinghoe Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6112,137249,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leck Beck Head Catchment Area","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4457,137250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ketley Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3075,137251,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bestmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3614,137252,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berry Head To Sharkham Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2592,137253,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wakehurst & Chiddingly Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3076,137255,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanton Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3687,137256,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brockley Hall Stables","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3203,137257,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Freeman's Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4859,137258,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tring Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6013,137259,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Clouds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2624,137260,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Harting Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4692,137261,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Daneway Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6113,137262,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Light Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2441,137265,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Froward Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9342,137266,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Goss and Tregoss Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3204,137267,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wellington College Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3872,137268,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buxton Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6115,137269,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Mearley Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4783,137270,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hertford Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5517,137271,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Cliffe Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2857,137272,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lodge Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4696,137273,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dingle Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2442,137274,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bickleigh Wood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5594,137275,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redcar Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4547,137276,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradnor Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3688,137277,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cattybrook Brickpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2625,137279,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wolstonbury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3746,137280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ferndown Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5519,137281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roos Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6014,137282,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crosby Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3873,137283,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caistor St, Edmund Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3205,137285,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boxford Water Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5596,137286,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sherburn Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4248,137287,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brewin's Canal Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6232,137288,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pillar and Ennerdale Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2626,137289,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Worth Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6116,137290,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorne Crowle and Goole Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3747,137291,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lidcott Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4296,137292,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wybunbury Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3740,137293,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loggans Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4701,137294,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edgehills Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4548,137295,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brampton Bryan Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2858,137296,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Herdon Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2474,137297,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hothfield Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2860,137298,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Millfield Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4702,137299,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foss Cross Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5308,137300,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Smithcombe, Sharpenhoe and Sundon Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3689,137301,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quarry Steps, Durdham Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4135,137303,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bredon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2861,137304,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moorend Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6383,137305,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holton and Sandford Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3875,137306,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calthorpe Broad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6015,137307,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eden Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4703,137308,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frampton Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5309,137309,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southill Lake and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2445,137310,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ham Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4060,137311,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tindall Wood, Ditchingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5597,137312,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Farndale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3143,137313,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scabbacombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5771,137314,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brockadale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4249,137315,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clowes Wood & New Fallings Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3189,137316,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longmoor Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3270,137317,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Common Moor Langtree","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6016,137318,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Geltsdale & Glendue Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2862,137319,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Rectory Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5310,137320,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stevington Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3193,137321,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sugworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4250,137322,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edgbaston Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3690,137323,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hampton Rocks Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3876,137324,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Catton Grove Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4061,137325,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Round Hill Pit, Aldeburgh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4553,137326,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broad Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3077,137327,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coate Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4784,137328,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knebworth Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3271,137329,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meadfoot Sea Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2631,137330,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Queendown Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6017,137331,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glencoyne Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2387,137332,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ham Street Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3691,137333,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holly Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3000,137334,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barrow Farm Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5916,137335,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eaves Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3078,137336,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inkpen and Walbury Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5312,137337,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swineshead Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4704,137338,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garden Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3194,137339,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitecross Green and Oriel Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4800,137340,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Heath Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4062,137341,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Valley Farm Pit, Sudbourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5772,137342,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mount Pleasant Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3972,137343,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stubbers Green Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5798,137344,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ingleborough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3692,137345,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Dole Wood and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5600,137346,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aubert Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2863,137347,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pilch Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5598,137348,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashberry and Reins Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3745,137349,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bude Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3001,137350,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bear, Oveys and Great Bottom Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5773,137352,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenfoot Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3002,137353,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bix Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6253,137354,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitstone Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5315,137355,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Totternhoe Knolls","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2393,137356,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Curry Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4197,137357,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Green Lane Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4063,137358,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aldeburgh Hall Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4706,137359,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hampen Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3273,137360,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ge-Mare Farm Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4629,137361,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dean Hall Coach House & Cellar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4906,137362,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barnack Hills & Holes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3877,137363,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranberry Rough Hockham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2394,137364,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crook Peak To Shute Shelve Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4042,137365,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Richmond Farm Pit, Gedgrave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3275,137366,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Polyphant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2865,137367,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3003,137368,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blenheim Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5601,137369,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beck Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2632,137370,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alkham, Lydden and Swingfield Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3985,137371,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sutton Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4707,137372,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hobb's Quarry, Longhope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5917,137373,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gale Clough and Shooterslee Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5316,137374,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wavendon Heath Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2400,137375,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Polyne Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4176,137376,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hornsleasow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5602,137377,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Betton Farm Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4251,137378,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tilehill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2975,137379,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bould Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4046,137380,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ramsholt Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5918,137381,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hawes Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4458,137382,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wrekin & The Ercall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5763,137383,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pockerley Farm Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3878,137384,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Decoy Carr, Acle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2725,137385,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hemingfold Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4914,137386,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castor Hanglands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2726,137387,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2848,137388,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rodbed Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3198,137389,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Picket and Clanger Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3276,137390,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Haldon Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4862,137391,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Patmore Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4200,137392,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upton Ham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5775,137393,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Hylton Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4631,137394,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beckford Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4438,137395,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tick Wood and Benthall Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2627,137396,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baker's Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4253,137397,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turner's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3879,137398,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dersingham Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4049,137399,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crag Pit, Aldeburgh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3923,137400,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chippenham Fen and Snailwell Poor's Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4201,137401,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Merriman's Hill Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3199,137402,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southampton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3004,137404,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurst Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4439,137405,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Titterstone Clee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3174,137406,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wylye and Church Dean Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5776,137407,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Biller Howe Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5926,137408,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hodder River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4711,137409,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hornsleasow Roughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4915,137410,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holme Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4050,137411,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red House Farm Pit, Sudbourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3244,137412,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hardington Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2401,137413,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harbour Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4863,137414,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plashes Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5521,137415,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linbrigg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3005,137417,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chimney Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3200,137418,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greywell Tunnel ( Basingstoke Canal )","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2707,137419,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burgh Hill Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5317,137420,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wadenhoe Marsh and Achurch Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4003,137421,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sudbourne Park Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4709,137422,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Hudnalls","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4994,137423,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longhoughton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4255,137424,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abbots Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3475,137425,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Draycott Sleights","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3476,137426,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brenscombe Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2709,137427,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harefield Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2849,137428,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rushbeds Wood and Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3206,137429,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fletchwood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5303,137430,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wakerley Spinney","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5522,137431,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monk Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5777,137432,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ruston Cottage Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5927,137433,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leighton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3176,137434,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Martin and Tidpit Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3006,137435,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chinnor Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4970,137436,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orston Plaster Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2853,137437,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheephouse Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4714,137438,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Huntsman's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4916,137439,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monk's Wood and The Odd Quarter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5082,137440,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pleasley Vale Railway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2721,137441,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heathfield Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5366,137442,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haugh and Gundale Slacks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5304,137443,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weldon Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4257,137444,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plumley Lime Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5523,137445,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muckle Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3882,137446,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Didlington Park Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3007,137447,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chinnor Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4256,137448,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alderley Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4917,137449,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upwood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3207,137450,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rushy Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5083,137451,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rainworth Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3883,137452,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Ruston Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5084,137453,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rainworth Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5780,137454,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jeffry Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2405,137455,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rosenun Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2630,137456,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brookland Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4918,137457,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodwalton Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3227,137458,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greystone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4004,137459,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sutton and Hollesley Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4718,137460,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Juniper Hill, Edgeworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2859,137461,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Lodge Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3209,137462,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wolvercote Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4441,137463,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wenlock Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5782,137464,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Askrigg Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3884,137465,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Winch Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4368,137466,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Illing's Trenches","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5783,137467,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pry and Bottom Meadows, Mid-Mossdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3693,137468,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Dartmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2339,137469,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bourne Alder Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4864,137470,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2864,137471,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stoke Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4234,137472,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bar Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4254,137473,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bagmere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5928,137474,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lune Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4705,137475,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingscote and Horsley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4867,137476,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roughdown Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4712,137477,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Land Grove Quarry, Mitcheldean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4369,137478,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waterswallow's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2473,137479,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Thames Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3694,137480,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Otter Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2340,137481,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Charing Beech Hangers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3998,137482,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorpe Morieux Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4237,137483,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beechmill Wood and Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4371,137484,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strawberry Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3885,137485,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Wretham Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4973,137486,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redgate Woods and Mansey Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5526,137487,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redesdale Ironstone Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5527,137489,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roman Wall Escarpments","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3485,137490,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tater-Du","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6242,137491,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crimsworth Dean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2722,137492,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peter's Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4974,137493,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Idle Washlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4372,137494,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monkspath Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5778,137495,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cockerham Meadows, Thorpe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5248,137496,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hawthorn Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6066,137497,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Miterdale Head Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2999,137498,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Culham Brake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3695,137499,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Gate Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3886,137501,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eaton Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6067,137502,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nichols Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3842,137503,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Felbrigg Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4715,137504,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lark Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3131,137505,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Town Railway Cutting, Swindon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5253,137506,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yoden Village Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2506,137508,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Staffhurst Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4373,137509,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Blythe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6088,137510,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Dib Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3696,137511,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Piles Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6548,137512,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knight & Bessborough Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4005,137513,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Titsal Wood, Shadingfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4975,137514,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roe Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5929,137515,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Martin Mere, Burscough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4716,137516,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leckhampton Hill and Charlton Kings Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3008,137517,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ditchley Road Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2723,137518,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Saltbox Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3887,137519,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flordon Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3133,137520,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Out Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4719,137521,"GBR","Common Standards Monitoring",2013,"For storage only",18,"May Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2471,137522,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Staines Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3697,137523,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plaistow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6090,137524,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5930,137525,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marton Mere, Blackpool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4634,137526,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Inn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4006,137527,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trundley and Wadgell's Wood, Great Thurlow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5931,137530,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morecambe Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3864,137531,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High House Meadows, Monewden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5255,137532,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pocklington Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5528,137533,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Simonside Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6068,137534,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barker Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4635,137535,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oakley Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4868,137536,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sarratt Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3009,137537,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dry Sandford Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5085,137538,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rushcliffe Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4351,137539,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haresfield Beacon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2507,137540,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Titsey Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4637,137541,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Olchon Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5784,137542,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Hall Meadows, Healaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2729,137543,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tankerton Slopes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3699,137544,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wallsend Industrial Estate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4353,137545,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Mere, Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4008,137546,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tunstall Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5934,137547,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newton Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2508,137548,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Vann Lake and Ockley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4146,137549,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sweat Mere and Crose Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5087,137550,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seller's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5781,137552,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stephen Ings, Crackpot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4992,137553,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gosling's Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3816,137554,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Epping Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4871,137555,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Therfield Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4993,137556,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allington Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5657,137557,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Austwick and Lawkland Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4870,137558,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tewinbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5530,137559,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spindlestone Heughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3817,137560,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Norsey Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3010,137561,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ducklington Mead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4443,137562,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abney & Bretton Cloughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4354,137563,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Risley Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5425,137564,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nabgate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5318,137565,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teversal To Pleasley Railway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5089,137566,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sledder Wood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5683,137567,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cocket Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2730,137568,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ingrebourne Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5662,137569,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clints Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5319,137570,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingston Wood and Outliers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6244,137572,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Standedge Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3138,137573,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Piggledene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5430,137574,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4639,137575,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Osebury Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9344,137576,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oak Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4771,137577,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hainton Sheepwalk","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2731,137578,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combe Haven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4877,137579,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Scrubbs Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3700,137580,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Common Moor, East Putford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2509,137581,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitmoor Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5306,137582,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Freeholders Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3139,137583,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bracknell Croft","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4094,137584,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorley Flood Pound","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6278,137585,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stawardpeel Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5090,137586,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teversal Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4109,137588,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gypsy Camp Meadows, Thrandeston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4010,137589,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wangford Warren and Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5531,137590,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tipalt Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5426,137591,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keasden Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5863,137592,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Bees Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3698,137593,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pridhamsleigh Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3615,137594,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southmoor Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4642,137595,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4995,137596,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Math and Elsea Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2734,137597,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Denham Lock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5257,137598,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheet Hedges Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3818,137599,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Wood & Dodd's Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6085,137600,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yeadon Brickworks and Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4007,137601,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weather and Horn Heaths, Eriswell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5320,137602,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Casterton Road Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3616,137603,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brocks Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2510,137604,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arlington Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3701,137605,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ransley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5935,137606,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ravenhead Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4643,137607,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penny Hill Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3011,137609,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frilford Heath, Ponds and Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4997,137610,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scotton Beck Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5092,137611,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thoresby Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3144,137612,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rack Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3702,137613,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Reed's Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3012,137614,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grafton Lock Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5258,137615,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shepshed Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2735,137616,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chingford Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4097,137617,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hedenham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3620,137618,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gilmoor and Moorlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3819,137619,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abberton Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5936,137620,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Scar and Tun Brook Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3845,137621,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hales and Shadwell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5001,137622,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swinstead Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4978,137623,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Treswell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6110,137624,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beckfoot Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2512,137625,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chailey Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3145,137626,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ravensroost Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3013,137627,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hackpen, Warren & Gramp's Hill Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6070,137628,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scafell Pikes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5686,137629,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cracoe Reef Knolls","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5939,137630,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Robert Hall Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4979,137631,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Welbeck Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5002,137632,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Debdale Meadow, Muston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5157,137633,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sproxton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4647,137634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Perton Roadside Section and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4110,137635,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Geldeston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3014,137636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hartslock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6245,137637,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cockerham Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3626,137638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sutton Combe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3493,137639,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3627,137640,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turbary and Kinson Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3822,137641,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nunn Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4111,137642,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardleigh Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5158,137643,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanford Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5003,137644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oughtonhead Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3146,137645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roundway Down and Covert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4648,137647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pipershill Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4980,137648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wellow Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4445,137649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradwell Dale and Bagshaw Cavern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6071,137650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sea Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2737,137651,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colony Bog and Bagshot Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3628,137652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Fowey Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5532,137653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holystone North Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4012,137654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Stow Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2514,137655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashburnham Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3823,137656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashdon Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3147,137657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Savernake Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4649,137658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poolhay Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5184,137659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stonesby Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6062,137660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scout and Cunswick Scars","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5533,137661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corbridge Limestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5259,137662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Terrace Hills Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4651,137663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rabbit Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4015,137664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weston Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5603,137665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grassington Hospital Grounds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3703,137666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Verwood Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5676,137667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Feetham Holme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2515,137668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashdown Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3827,137669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Basildon Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6359,137670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Feckenham Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5137,137671,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stonehead Beck ('Gill Beck')","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2738,137672,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairmile Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5677,137673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Giggleswick Scar and Kinsey Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4355,137674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingsbury Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4988,137675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilford Claypits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5427,137676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breighton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5604,137677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Till Riverbanks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4356,137678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knavenhill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5534,137679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roddam Dene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6072,137680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Silver Tarn, Hollas and Harnsey Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3148,137681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scratchbury & Cotley Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2517,137682,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seaford To Beachy Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3704,137683,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rushford Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3130,137684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seend Cleeve Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2558,137685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Binglett's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5431,137686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broughton Far Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3829,137687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belcher's & Broadfield Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6063,137688,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skelsmergh Tarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5260,137689,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tilton Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6064,137692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Walney and Piel Channel Flats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2692,137693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fray's Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3132,137694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seend Ironstone Quarry and Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3940,137695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weybourne Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5432,137697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryan Mills Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5688,137698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haw Crag Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5581,137699,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fothering Holme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2681,137700,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stockstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4652,137701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ridgeway Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5262,137702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Twenty Acre Piece","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3705,137703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salcombe To Kingsbridge Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5077,137704,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3902,137705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weybourne Town Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2444,137706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holton Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6073,137707,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tarn Hows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4357,137708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Itchington & Ufton Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5437,137709,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burton Bushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6075,137710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tilberthwaite Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5263,137711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ulverscroft Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5834,137712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wyedale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5093,137713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ancaster Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5438,137714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cliff Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3941,137715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitwell Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3136,137716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Silbury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3706,137717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sampford Spiney","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5689,137718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hawkswick Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4221,137719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yarley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4099,137720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edgefield Little Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5442,137721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cottam Well Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5264,137722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wymondham Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5690,137723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hell Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5004,137724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nene Washes (Whittlesey)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2402,137725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dinton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4632,137726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rockhall Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3624,137727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blake's Wood & Lingwood Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2559,137728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bream Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3707,137729,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Saunton To Baggy Point Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3625,137730,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bovingdon Hall Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5206,137731,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brada Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6076,137732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Troutbeck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2682,137733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"House Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5266,137734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Sulehay Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3708,137735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shapwick Grange Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3137,137736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Midford Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3391,137737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Exe Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5691,137738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swarth Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5433,137739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crowle Borrow Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4103,137740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Major Farm, Braiseworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2866,137741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stratford Toney Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3360,137742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bedruthan Steps and Park Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4252,137743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eaton Track","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3632,137744,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackslade Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5434,137745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Derwent Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4882,137746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Overhall Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3503,137747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Island (Off St, Martin'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5692,137748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holy Well, Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3361,137749,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shiplate Slait","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4374,137750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middleton Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6078,137751,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wart Barrow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5835,137752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moorsley Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4258,137753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Farley Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4375,137754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Napton Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3140,137755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spye Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3633,137756,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bolt Head To Bolt Tail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4998,137757,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Papworth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4114,137758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dereham Rush Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2561,137759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clayton To Offham Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6079,137760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wasdale Screes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5267,137761,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chettisham Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3908,137762,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wiveton Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4259,137763,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grinshill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2693,137764,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingston Escarpment & Iford Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3909,137765,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wretham Park Meres","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5836,137766,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kettlewell Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2867,137767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pike Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5265,137768,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southorpe Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3365,137769,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenthorne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4376,137770,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oxhouse Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4115,137771,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roding Valley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3492,137772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Amble Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2562,137773,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dallington Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3392,137774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Halsdon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3149,137776,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Starveall and Stony Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3609,137777,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bonhay Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2403,137779,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lake Allotments","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5435,137780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fordon Chalk Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4226,137781,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hoar Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6080,137782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitbarrow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6018,137783,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gowbarrow Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2563,137784,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Darwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4105,137785,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Osyth Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6081,137786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yewbarrow Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4227,137787,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitacre Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4116,137788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beetley & Hoe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4768,137789,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Perry Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5282,137790,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barton Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5269,137791,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bosworth Mill Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3505,137792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boconnoc Park & Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4640,137793,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rye Street Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5439,137794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Everthorpe Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5273,137795,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wollaston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3611,137796,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradiford Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4769,137797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portholme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4260,137798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hughley Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5440,137799,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eastoft Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3637,137800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cattawade Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4448,137801,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Stiperstones & The Hollies","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2404,137802,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hook Meadow and The Trap Grounds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2564,137803,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ditchling Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2694,137804,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plashett Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2370,137805,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baverstock Juniper Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4638,137806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salt Meadow, Earl's Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5986,137807,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hallinhag Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3914,137808,"GBR","Common Standards Monitoring",2013,"For storage only",18,"How Hill Track","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4261,137809,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lincoln Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4720,137810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Park Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4223,137811,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flaxmere Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3638,137812,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chalkney Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5693,137813,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kisdon Force Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4842,137814,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swaby Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3942,137815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abbey Wood, Flixton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5694,137816,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Attermire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2868,137817,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Murcott Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5987,137818,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Helbeck Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3083,137819,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bincknoll Dip Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4778,137820,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roman Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4262,137821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longville To Stanway Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3366,137822,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northam Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4721,137823,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Puddlebrook Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4118,137824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hall Farm Fen, Hemsby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4377,137825,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ryton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3506,137826,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bodmin Moor, North","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4779,137827,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Neot's Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4378,137828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shrewley Canal Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5274,137829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Snailwell Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4119,137831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waldringfield Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4224,137832,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Puxton Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5695,137833,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leyburn Glebe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2380,137834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marsh Wood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5988,137835,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Helvellyn & Fairfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3084,137837,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackmoor Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3507,137838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boscastle To Widemouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4876,137839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loughborough Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5270,137840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southorpe Roughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6010,137841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lamonby Verges and Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5595,137842,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Botton Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4379,137843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Snitterfield and Bearley Bushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4120,137844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glandford (Hurdle Lane)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4875,137845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Hormead Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5005,137846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sawston Hall Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2695,137847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Willingdon Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2382,137848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tar Grove Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3944,137849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arger Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5606,137851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bride Stones","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3508,137852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gerrans Bay To Camels Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5842,137853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hulam Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4607,137854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Enthorpe Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5271,137855,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Wilbraham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3618,137856,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckfastleigh Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6299,137857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Exmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4878,137858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swanholme Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6011,137859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lazonby Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5444,137861,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Epworth Turbary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3619,137862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckland-In-The-Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4053,137863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5843,137864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"College Valley Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5607,137865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brimham Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5272,137866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Houghton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4121,137867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thundersley Great Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5753,137868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flamborough Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3494,137869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carnkief Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3945,137870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bangrove Wood, Ixworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4879,137871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranford St John","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5275,137872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brampton Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5008,137873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Soham Wet Horse Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4056,137874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandy Lane Pit, Barham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4057,137875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flixton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3640,137876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Budleigh Salterton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5608,137877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broughton Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5445,137878,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haxey Grange Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4845,137879,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wormley-Hoddesdonpark Woods North","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5609,137880,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burton Leonard Lime Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5844,137881,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alnmouth Saltmarsh and Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3380,137882,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abbotsbury Blind Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3621,137883,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buller's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5162,137884,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wickenby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3547,137885,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rempstone Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3946,137886,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barking Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3393,137887,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abbotsbury Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3548,137888,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turners Puddle Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2453,137889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bobbitshole, Belstead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3212,137890,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hobb's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5449,137892,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haxey Turbary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6020,137893,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Murthwaite Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4064,137894,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stoke Tunnel Cutting, Ipswich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4847,137895,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grafham Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3947,137896,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barnham Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5009,137897,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stow-Cum-Quy Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5163,137898,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Willoughby Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5396,137899,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castlebeck and Scar Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3087,137900,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brimsdown Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4385,137902,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stockton Railway Cutting and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5165,137904,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Willoughby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4065,137905,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ferry Cliff, Sutton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4848,137906,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Paxton Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3395,137907,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Babylon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4451,137908,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kempley Daffodil Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6021,137909,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Naddle Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3549,137910,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wareham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4320,137911,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chartley Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2870,137912,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swain's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3642,137913,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Potter's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2406,137914,"GBR","Common Standards Monitoring",2013,"For storage only",18,"King's Sedgemoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3089,137915,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Britford Water Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4388,137916,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whichford Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6024,137917,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newton Reigny Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3949,137918,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bawdsey Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5164,137919,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilsford Heath Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2871,137921,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tingewick Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2457,137922,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hornchurch Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2458,137923,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oxleas Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3550,137924,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warmwell Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5611,137925,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cockrah Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2407,137926,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moorlinch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4455,137927,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moseley Common, Pembridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5006,137928,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sutton Heath and Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6355,137929,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Purbeck Ridge (East)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5167,137930,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilsford & Rauceby Warrens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5450,137931,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hoddy Cows Spring","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4066,137932,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middle Wood, Offton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3643,137933,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burrator Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6025,137934,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orton Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3091,137935,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burcombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4067,137936,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burgate Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4389,137937,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wolford Wood and Old Covert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3551,137938,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wootton Fitzpaine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2383,137939,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Betley Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5613,137940,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cow Myers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2874,137941,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turville Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3399,137942,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Batcombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2459,137943,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Richmond Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2845,137944,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warren Farm, Stewkley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3644,137945,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bursdon Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5011,137946,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ten Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5451,137947,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hornsea Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4396,137948,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eymore Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4454,137949,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilton Bluff, Ross-On-Wye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4919,137950,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thriplow Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5169,137951,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodhall Spa Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3950,137952,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berner's Heath, Icklingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2384,137953,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bickerton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5845,137954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilnsey Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2879,137955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weston Turville Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6117,137956,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2408,137957,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3386,137958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belle Vue Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5614,137959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cropton Banks and Howlgate Head Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4068,137960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Iken Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5172,137961,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodnook Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2464,137962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Lake, Delamere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5537,137963,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hack Fall Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3645,137964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Lemon Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3092,137965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burderop Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3951,137966,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Ditches, Cavenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3124,137967,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Meadow, Cricklade","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2409,137968,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southlake Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4459,137969,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monnington Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5615,137970,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Heslerton Brow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3927,137972,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fox Fritillary Meadow, Framsden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3400,137973,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bere Stream","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2880,137974,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Widdenton Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4317,137975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minchinhampton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5013,137976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thriplow Peat Holes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3093,137977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calstone and Cherhill Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4460,137978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shorn Cliff and Caswell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5612,137979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ellerburn Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5538,137980,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mar Field Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4070,137981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ipswich Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4263,137982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brookhouse Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6026,137983,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pooley Bridge Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5990,137984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raisbeck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5173,137985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Downfield Pit, Westmill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6283,137986,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bamburgh Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3928,137987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradfield Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4925,137988,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Traveller's Rest Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3868,137989,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foxley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3629,137990,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chipley Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3943,137991,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aldeburgh Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4329,137992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nagshead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3094,137993,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Camp Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5616,137994,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broughton Alder Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4461,137995,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Midsummer Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2413,137996,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Faraday Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3867,137997,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foulden Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2882,137998,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Windsor Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4343,137999,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Severn Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3404,138000,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackdown (Hardy Monument)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3096,138001,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chickengrove Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4468,138002,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loxley Church Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2448,138003,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chudleigh Caves and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2454,138004,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barnby Broad & Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4264,138005,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Comber Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6121,138006,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Leys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5994,138007,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skiddaw Group","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5174,138008,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hillcollins Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5846,138009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hadston Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3095,138010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Charnage Down Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3408,138011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blashenwell Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5970,138012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glasson Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3630,138013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chudleigh Knighton Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4724,138014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nibley Knoll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3749,138015,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Richmond Walk","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4926,138016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upware North Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4469,138017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rough Hill & Wirehill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4849,138018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wain Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5995,138019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Smardale Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5175,138020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westwood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6122,138021,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swindale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5539,138022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hartlepool Submerged Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6114,138023,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wet Sleddale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4725,138024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Notgrove Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3409,138025,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Dorset Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5179,138026,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kensworth Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3710,138027,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newton St, Loe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4853,138028,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Water End Swallow Holes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3750,138029,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Western King","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4267,138030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dee Cliffs, Farndon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3892,138031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swanton Novers Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6246,138032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shaw Meadow & Sea Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6247,138033,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yeathouse Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5617,138034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Filey Brigg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6003,138035,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scandal Beck and Stone Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4717,138036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Innsworth Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3711,138037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nightingale Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3631,138038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holne Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3100,138039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chilmark Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3552,138040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brown's Folly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4855,138041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moor Hall Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2455,138042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orwell Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3751,138043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mount Wise","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5180,138044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nine Acres Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2782,138045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bere Mill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3712,138046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tytherington Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3101,138047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chilton Foliat Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2456,138048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rex Graham Reserve","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3889,138049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grime's Graves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3553,138051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckover Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3554,138052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burrington Combe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3410,138053,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bracket's Coppice and Ryewater Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2883,138054,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knighton Downs & Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4728,138056,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poor's Allotment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4166,138057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Puckham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6008,138058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swindale Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3809,138059,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Halvergate Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4856,138060,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whippendell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5181,138061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Double Arches Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2783,138062,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warren Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3234,138063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weston-In-Gordano","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5620,138064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gormire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3289,138065,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingford Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3753,138066,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barrington Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3102,138067,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clattinger Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3097,138068,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clearbury Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4865,138069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aldwincle Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3555,138070,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chew Valley Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3890,138072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heacham Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2785,138073,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hang Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4270,138074,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flood Brook Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3411,138075,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryanston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5183,138076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gog Magog Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3720,138077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stidham Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4071,138078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knettishall Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5977,138079,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tarn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5322,138080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banhaw, Spring and Blackthorn's Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3721,138081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winterbourne Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3105,138082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cley Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6029,138083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Temple Sowerby Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4069,138084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cockthorpe Common, Stiffkey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5940,138085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roeburndale Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5185,138086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pulloxhill Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4732,138087,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Purton Passage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3556,138088,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleeve Wood, Hanham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2784,138089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Botley Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9343,138090,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longworth Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3021,138091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Highlands Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4272,138092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frodsham Railway and Road Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3412,138093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sydling Valley Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5621,138094,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gouthwaite Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2705,138095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inkpen Crocus Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5324,138096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doddington Clay Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3413,138097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burton Bradstock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5942,138099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rough Hey Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5618,138100,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gowerdale Windy Pits/Peak Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3022,138101,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holly Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4880,138102,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashton Wold","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4273,138103,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gleads Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2786,138104,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Briff Lane Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3754,138105,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cogley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5187,138106,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allexton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4470,138107,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4729,138108,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Robin's Wood Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5325,138109,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Welton-Le-Wold Old Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3023,138110,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2771,138111,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broxhead and Kingsley Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4336,138112,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mottey Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3755,138113,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quants","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5143,138114,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Saltfleetby - Theddlethorpe Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6125,138115,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Myttons Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3384,138116,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cullimore's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5943,138117,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salthill and Bellmanpark Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3722,138118,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hawkstor Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5326,138119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nares Gladley Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3444,138120,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Damery Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3893,138121,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hockering Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4730,138122,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rodborough Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2788,138123,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Easton Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4819,138124,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Badby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5623,138125,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gristhorpe Bay and Red Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3874,138126,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holly Farm Meadow, Wendling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4471,138127,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brownend Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2466,138128,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Well Rough and Long Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3414,138129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chalbury Hill and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3024,138130,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hook Norton Cutting & Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6130,138131,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drigg Holme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5947,138132,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thrang End and Yealand Hall Allotment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5188,138133,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bardon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4265,138134,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hatch Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4735,138135,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harford Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4472,138136,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castleton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3025,138138,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horsehay Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5330,138139,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frogmore Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2872,138140,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Catherington Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3871,138141,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holkham Brickpits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3756,138142,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southey and Gotleigh Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4881,138143,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Badsaddle, Withmale Park and Bush Walk Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3415,138144,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chesil & The Fleet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3278,138145,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Haldon Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5624,138146,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hackness Head Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4205,138147,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northwick Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3416,138148,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lyscombe and Highdon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3445,138149,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dolebury Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5189,138150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barrow Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5948,138151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warton Crag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4654,138152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyrley Canal Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4266,138153,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hatton's Hey Wood, Whittle's Corner and Bank Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3510,138154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hobby To Peppercombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4655,138155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Claverley Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4474,138156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Canyards Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5542,138157,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gunnerton Nick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5327,138158,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Titchmarsh Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4884,138159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birch Spinney and Mawsley Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6132,138160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thornhill Moss & Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4207,138161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Illey Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3757,138162,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4736,138163,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edge Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4072,138164,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Riddles Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6131,138165,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gribbs Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3417,138166,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Christchurch Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3937,138167,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weeting Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5190,138168,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beacon Hill, Hangingstone and Out Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4475,138169,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chrome and Parkhouse Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3272,138171,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Posbury Clump","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3418,138172,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Town Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2338,138173,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Killerton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3450,138174,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dundry Main Road South Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5193,138175,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benscliffe Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4268,138176,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holly Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3592,138177,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rodney Stoke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4885,138178,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Collyweston Great Wood and Easton Hornstocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3894,138179,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hay Wood, Whepstead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5543,138180,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allolee To Walltown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3898,138181,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holt Lowes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9350,138182,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Coppice Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4476,138183,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clough Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2930,138184,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirtlington Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5335,138185,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dropshort Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2739,138186,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seabrook Stream","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3242,138187,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gordano Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3758,138188,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lions Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4656,138189,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hillend Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3511,138190,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Brewham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2875,138191,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fleet Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4738,138192,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Selsley Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3557,138193,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harptree Combe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5544,138194,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Close House Riverside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3891,138195,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Honeypot Wood, Wendling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4636,138196,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muxton Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6136,138197,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meols Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5338,138198,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tebworth Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4477,138199,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombs Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4526,138200,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moccas Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4739,138201,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Severn Ham, Tewkesbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2946,138202,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lambridge Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2876,138203,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Littleworth Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4269,138204,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lindow Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3759,138205,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laughter Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4886,138206,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Collyweston Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4462,138207,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cressbrook Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2366,138208,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aston Rowant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5103,138209,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baston and Thurlby Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3512,138210,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hog Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5877,138211,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3460,138212,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hawkesbury Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2740,138213,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Folkington Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3723,138214,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shaugh Prior Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4887,138215,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Collyweston Slate Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4741,138216,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Speech House Oaks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3015,138217,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langley's Lane Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5547,138218,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beltingham River Shingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3760,138219,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broom Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5339,138220,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hardwick Lodge Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2775,138221,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pamber Forest and Silchester Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4274,138222,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Budworth Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3895,138223,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horningtoft Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6139,138224,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Astley & Bedford Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5950,138225,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winmarleigh Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3513,138226,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prawle Point and Start Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5551,138227,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ninebanks River Shingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2877,138228,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sarsgrove Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4275,138229,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Norbury Meres","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2789,138230,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thatcham Reed Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3533,138231,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hinton Charterhouse Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3027,138232,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spartum Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4891,138233,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombe Hill Hollow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3724,138234,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sidmouth To Beer Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6143,138235,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Highfield Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2922,138236,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Odiham Common With Bagwell Green and Shaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3537,138237,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilmersdon Road Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4742,138239,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stenders Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4892,138240,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cowthick Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5104,138242,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bratoft Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3028,138243,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Littlemore Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6148,138244,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollinwood Branch Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2790,138245,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aldermaston Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4276,138246,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oak Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5554,138247,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burnfoot River Shingle and Wydon Nabb","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4464,138249,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4463,138250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dove Valley and Biggin Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2792,138251,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashridge Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4743,138252,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stinchcombe Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3540,138253,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4362,138254,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blodwel Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5952,138255,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brookheys Covert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4277,138256,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peckforton Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3514,138257,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portland Harbour Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3515,138258,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Toller Porcorum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5105,138259,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calceby Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3029,138260,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Littleworth Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4361,138261,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doe Lea Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6149,138262,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Huddersfield Narrow Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4363,138263,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wellington Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3903,138264,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kelling Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2793,138265,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avery's Pightle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6082,138266,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashgill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3152,138267,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Steeple Langford Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3541,138269,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middle Hope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5342,138270,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roade Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5097,138271,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Candlesby Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3900,138272,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hunstanton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2612,138273,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingley Vale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6154,138274,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanley Bank Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3727,138275,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southacre Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5545,138276,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Williamston River Shingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4167,138277,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ryton and Brandon Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5953,138278,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Compstall Nature Reserve","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4551,138279,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berrington Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6077,138280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coplow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5098,138281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Bytham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4744,138282,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swift's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4186,138283,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Midger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2794,138285,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bisham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3904,138286,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leziate, Sugar and Derby Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3153,138287,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stockton Wood and Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2571,138288,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eridge Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4745,138289,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Veizey's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5546,138290,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warkworth Dunes and Saltmarsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3905,138291,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Wood, Ashwellthorpe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3731,138292,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Milton Ley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4159,138293,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bickenhill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3030,138294,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Hanborough Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4465,138295,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Goyt Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4381,138296,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lineover Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3031,138297,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lye Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2741,138298,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allington Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5954,138299,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cotteril Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2924,138300,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Froghall Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5446,138301,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boldon Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5548,138302,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newton Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5344,138303,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bucknell Wood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3374,138304,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spring Head, Axmouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3032,138305,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lyehill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2572,138306,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fore Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3906,138307,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ludham - Potter Heigham Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5549,138308,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hartley Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3542,138309,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portishead Pier To Black Nore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3150,138310,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teffont Evias Quarry / Lane Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4644,138311,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scutterdine Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5101,138312,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Claxby Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2745,138313,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Houlder and Monarch Hill Pits, Upper Halling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2724,138314,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boxford Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5955,138315,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dibbinsdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4816,138316,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bagthorpe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5878,138317,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dee Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3641,138318,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Curtismill Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2925,138319,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Naphill Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4382,138320,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Easter Park Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2573,138321,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hastings Cliffs To Pett Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4893,138322,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Everdon Stubbs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2733,138323,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brimpton Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6083,138324,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowness Knott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2468,138325,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wateringbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6084,138326,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elliscales Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5901,138327,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blelham Tarn & Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2377,138328,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Magdalen Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5447,138329,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low Hauxley Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4383,138330,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mortimer Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3558,138331,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slickstones Quarry, Cromhall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3156,138332,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Throope Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5106,138333,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cliff House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4660,138334,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sharpnage Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3646,138335,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Danbury Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4896,138336,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Geddington Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5956,138337,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Dungeon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3732,138339,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stokenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5453,138340,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hawthorn Cottage Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5110,138341,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Copper Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5346,138342,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Twywell Gullet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4466,138343,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hamps and Manifold Valleys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3033,138344,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moulsford Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3159,138345,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pincombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5702,138346,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Malham-Arncliffe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6194,138347,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scandal Beck, Brunt Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2574,138348,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Herstmonceux Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5550,138349,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3650,138350,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Debden Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5015,138351,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sherwood Forest Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3709,138352,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stoke Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4478,138353,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harewood Grange Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5111,138354,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deeping Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3160,138355,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tytherington Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2746,138356,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Philpot's and Hook Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5348,138357,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Wood and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5703,138358,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meal Bank Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5454,138359,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cresswell and Newbiggin Shores","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2579,138360,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6086,138361,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hale Moss Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4650,138362,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shrawley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3559,138363,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spring Cove Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5958,138364,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunham Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5704,138365,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ox Close","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2742,138366,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cannoncourt Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3516,138367,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrine Common & Penwethers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6074,138368,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hodge Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3164,138369,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Chicksgrove Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2747,138370,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auclaye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2580,138371,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leasam Heronry Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5107,138372,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dole Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3733,138373,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stover Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3560,138374,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Steep Holm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3035,138375,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Neithrop Fields Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2750,138377,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clock House Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3652,138378,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roman River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5705,138379,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oxenber and Wharfe Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5557,138380,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wingate Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2743,138381,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Catmore and Winterly Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4661,138382,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sling Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2751,138383,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Smokejack Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3713,138384,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Dartmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4820,138385,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mavis Enderby Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2581,138387,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lewes Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5016,138388,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Houghton Regis Marl Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5558,138389,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishop Middleham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3036,138390,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Otmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3165,138392,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Waterhay Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3517,138393,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chyenhal Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2744,138394,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanford End Mill and River Loddon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5706,138395,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pan Beck Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5108,138396,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunsby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3830,138397,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elsenham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3714,138398,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Saltern Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6087,138399,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Asby Inrakes and Outrakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4935,138400,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingerby Beck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5018,138401,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hanger Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3037,138402,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Out Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2748,138403,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cock Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2727,138404,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Common Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5707,138405,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen-Y-Ghent","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3518,138406,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clicker Tor Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6256,138407,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foulness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3715,138408,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Taw-Torridge Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6089,138409,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Short Gill Cave System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5708,138410,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pikedaw Calamine Caverns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4950,138411,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cross Drain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5294,138412,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knocking Hoe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3716,138413,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teign Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3519,138415,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cligga Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2583,138416,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maplehurst Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5559,138417,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Botany Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2947,138418,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moorgreen Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2472,138419,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heswall Dales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3488,138420,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hartland Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2728,138421,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lewes Brooks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4142,138422,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Via Gellia Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4662,138423,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stourvale Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6091,138424,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skelwith Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2584,138426,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marline Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2753,138427,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gong Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5553,138428,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brasside Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5113,138429,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greetwell Hollow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2948,138430,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Moors, Bishop's Waltham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2749,138431,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combe Wood and Linkenholt Hanging","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2795,138433,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombe Wood, Frilsham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4384,138434,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wolston Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3717,138436,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorne and Doves Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4169,138437,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hallwood Farm Marl Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2585,138438,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brighton To Newhaven Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3831,138439,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garnetts Wood / Barnston Lays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2949,138440,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The New Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4386,138441,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodlands Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3279,138442,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trevose Head and Constantine Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5709,138443,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Ribble (Long Preston Deeps)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5627,138444,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baldersdale Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2950,138445,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Noar Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5204,138446,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salt Lake Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2460,138447,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walthamstow Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3718,138448,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roundham Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4556,138449,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clayhanger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4074,138450,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glemsford Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5710,138451,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Wharfe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6195,138452,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birkett Hill and High Out Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2756,138453,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Charleshill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5114,138454,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grimsthorpe Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5560,138455,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Butterby Oxbow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2799,138456,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Englemere Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3167,138457,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Harnham Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4392,138458,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilmcote Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2774,138459,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westbury Ironstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4559,138460,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harbury Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5628,138461,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foster's Hush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4792,138462,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tiddesley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5561,138463,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cassop Vale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4393,138464,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allscott Settling Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3539,138465,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avon Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3820,138466,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Globe Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5456,138467,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kelsey Hill Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2800,138468,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fognam Chalk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3869,138469,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bridgham & Brettenham Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2461,138470,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aylesford Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4562,138472,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorncliffe Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4171,138473,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boulton Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2587,138474,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Corner Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3419,138475,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Worgret Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6366,138476,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dryhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5369,138477,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fallowfield Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3734,138478,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tor Royal Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6092,138479,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broad Dales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4566,138480,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chapel Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2590,138481,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penn's Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4397,138482,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cole Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3719,138483,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Torbryan Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4663,138484,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tunnel Hill Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4172,138485,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hall Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5062,138487,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kiplingcotes Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4570,138489,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wildmoorway Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5457,138490,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirmington Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5116,138491,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Hermitage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3420,138492,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lorton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3168,138493,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Yatton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4664,138494,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Welson Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3294,138495,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Draynes Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2533,138496,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hubbard's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5847,138497,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haggburn Gate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2935,138498,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peake Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2801,138499,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowdown and Chamberhouse Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4398,138500,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bomere, Shomere and Betton Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5713,138501,"GBR","Common Standards Monitoring",2013,"For storage only",18,"School Share Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2593,138502,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4665,138503,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upton Warren Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2802,138504,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenham and Crookham Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4957,138505,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upware South Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2696,138506,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oaken Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6093,138507,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Far Arnside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3295,138508,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eglarooze Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3929,138509,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brent Eleigh Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3735,138510,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tower Wood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6050,138511,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Esthwaite Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4399,138512,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brown Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5458,138513,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Lagoons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2803,138514,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hamstead Marshall Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3169,138515,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whiteparish Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4400,138516,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Catherton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5459,138517,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leven Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5714,138518,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scoska Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4958,138519,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warboy's and Wistow Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6051,138520,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Farleton Knott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2936,138521,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3397,138524,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dawlish Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3396,138525,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fivehead Arable Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2697,138526,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orlestone Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2878,138527,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Aston Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3952,138528,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creeting St, Mary Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2805,138529,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inkpen Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5715,138530,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burr Closes, Selby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5020,138531,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waresley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3398,138532,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brean Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3375,138533,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deadman","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3170,138534,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitesheet Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5460,138535,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Manton Stone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4653,138536,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wayne Herbert Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5022,138538,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weaveley and Sand Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2806,138539,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Irish Hill Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2881,138540,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Emmett Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2698,138541,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Otterpool Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3954,138542,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cavendish Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2943,138543,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portsmouth Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3953,138544,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garrold's Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5850,138545,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swale Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2937,138546,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portsdown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5716,138547,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Semerwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9341,138548,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breney Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3296,138549,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Godrevy Head To St Agnes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6094,138550,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waberthwaite Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5462,138551,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Manton and Twigmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6199,138552,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Udford Low Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2944,138553,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roydon Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3385,138554,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upton Coombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2378,138555,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Shute","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2869,138556,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Landford Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2594,138557,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eridge Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4402,138558,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clarepool Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2945,138560,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rushmore and Conholt Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4279,138561,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitwell Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5718,138562,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sherburn Willows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3992,138563,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alde-Ore Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4271,138564,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hope Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3425,138565,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roebuck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5851,138566,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Withow Gap, Skipsea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2379,138567,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seven Barrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6096,138568,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skelghyll Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4023,138569,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckanay Farm Pit, Alderton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6203,138570,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Lickbarrow Mires and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3172,138571,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winklebury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4657,138573,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westwood Great Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2595,138574,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weir Wood Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2699,138575,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rusthall Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6205,138576,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sprotbrough Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3387,138577,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Lye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3297,138578,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Goonhilly Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5484,138579,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tadcaster Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4658,138580,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilden Marsh and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4280,138581,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chermes Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3948,138582,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cherry Hill and The Gallops, Barton Mills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3298,138583,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hayle Estuary & Carrack Gladden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5463,138584,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Melton Bottom Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4996,138585,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitewater Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6266,138587,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stoborough & Creech Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4747,138588,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oakenhill Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2596,138589,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilmington Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3108,138590,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clout's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4394,138591,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Comley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3173,138592,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowerchalke Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2535,138593,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chichester Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5719,138594,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skipwith Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3824,138595,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hanningfield Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2369,138596,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chillesford Church Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4667,138597,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Windmill Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2462,138598,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spot Lane Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5464,138599,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Messingham Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4749,138600,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old River Severn, Upper Lode","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4281,138601,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gannister Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4999,138602,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wicken Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4395,138604,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cuckoopen Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4668,138605,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orchid Bank, Winslow Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2536,138606,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Selsey, East Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2951,138607,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Catherine's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3389,138609,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Hill Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3109,138610,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cockey Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5720,138611,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stran's Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2888,138612,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackwater Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4754,138613,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Danes Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5880,138614,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashclough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6267,138615,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Studland & Godlingston Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4505,138616,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Edlington Brickpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4897,138617,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carlton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5465,138618,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Millington Wood and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2452,138619,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sturry Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4750,138620,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boon's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4572,138621,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brotheridge Green Disused Railway Line","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5000,138622,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilbraham Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3958,138623,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combs Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2952,138624,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Selborne Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3110,138625,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colerne Park and Monk's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5721,138626,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strid Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3956,138627,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southrepps Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4282,138628,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkham's Silica Sandpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3825,138629,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harlow Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5722,138630,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thornton and Twisleton Glens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5468,138631,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hisehope Burn Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3299,138633,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kelsey Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4573,138634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brotheridge Green Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5853,138635,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Green Croft and Langley Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3959,138636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cornard Mere, Little Cornard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3303,138637,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loe Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4283,138638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Masson Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3302,138639,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kennack To Coverack","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6206,138640,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollin Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4898,138641,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upware Bridge Pit North","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3111,138642,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsham Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5242,138643,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5724,138644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thwaite Stones","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4467,138645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coten End Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3960,138646,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crag Farm Pit, Sudbourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4756,138647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Guy's Cliffe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4405,138648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Granham's Moor Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4284,138649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bage Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2953,138650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shortheath Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2700,138651,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wansunt Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5017,138652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodwalton Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5529,138653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hayburn Wyke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5472,138654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newton Mask","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4560,138655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burrington Farm Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2475,138656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brent Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4158,138657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Griff Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4872,138658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalby Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3561,138659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greylake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5855,138660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cinquefoil Brow and Wood Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6450,138661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gilbert's Pit (Charlton)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5619,138662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill House Nab","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2701,138663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Blean and Thornden Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4567,138664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burrington Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5474,138665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pulfin Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6208,138666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elland Bypass Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3426,138667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corfe Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3961,138668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cransford Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5630,138669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hole Of Horcum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4873,138670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fulsby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5025,138671,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warboys Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3562,138672,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurcott Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2702,138673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Adur Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2476,138674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crofton Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3304,138675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenscoombe Wood , Luckett","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4623,138676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rostherne Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4568,138677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bushy Hazels & Cwmma Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5469,138678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Risby Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4569,138679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Byton & Combe Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5194,138680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackbrook Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5217,138681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Honley Station Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2954,138682,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sidley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4888,138684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hundleby Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5475,138685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rifle Butts Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5631,138686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Iron Scar and Hundale Point To Scalby Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3112,138687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranborne Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2704,138688,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bognor Common Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2477,138689,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croham Hurst","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3962,138690,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deadman's Grave, Icklingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2706,138691,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chantry Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3103,138692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dead Maid Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4571,138693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cage Brook Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3428,138694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranborne Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5856,138695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keasey Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2957,138696,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sowley Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3564,138697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low Ham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6059,138698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hutton Roof Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4894,138699,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winceby Rectory Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5470,138701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Derwent","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5195,138702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bloody Oaks Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4406,138703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hope Bowdler Outcrops","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5026,138704,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Attenborough Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5632,138705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkdale Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5197,138706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Botcheston Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5854,138708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Noddle End","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3401,138709,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crookhill Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2958,138710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stockbridge Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5857,138711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Almscliff Crag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5027,138712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barnstone Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2414,138713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Viverdon Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4401,138714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harrington Hall Sand Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2478,138715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Downe Bank and High Elms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4479,138716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stretton-On-Fosse Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3963,138717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sizewell Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3565,138719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Twinhills Woods and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4575,138720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Capler Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5471,138721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Hull Headwaters","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4576,138722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castlemorton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3113,138723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ebsbury Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5198,138724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradgate Park and Cropston Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3402,138725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eggardon Hill & Luccas Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9340,138726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belowda Beacon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2889,138727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wild Grounds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5633,138728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Littlebeck Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4076,138729,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wretton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5028,138730,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barrow Hills Sandpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4480,138731,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ullenhall Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5199,138732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breedon Cloud Wood and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2451,138733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Farthing Downs and Happy Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2479,138735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hampstead Heath Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4285,138736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pettypool Brook Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5201,138737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breedon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5032,138738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bevercotes Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4077,138739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaxhall Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2892,138740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alresford Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4577,138741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chanstone Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3964,138742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crag Pit, Sutton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5202,138743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Briery Wood Heronry, Belvoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5033,138744,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birklands and Bilhaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2757,138745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wey Valley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2480,138746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mid Colne Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3965,138747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edwardstone Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5473,138748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rush Furlong","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2758,138749,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Singleton and Cocking Tunnels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2708,138751,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Dean Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3403,138752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fontmell and Melbury Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5461,138753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Ferriby Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4483,138754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rowlee Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3106,138756,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Figsbury Ring","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3966,138757,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elmsett Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4582,138758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cherry Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2341,138759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chequer's Wood and Old Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3245,138760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Terras Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2710,138761,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Felpham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5466,138762,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dimlington Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4286,138763,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quoisley Meres","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5371,138764,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newbridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3405,138765,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frogden Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4757,138766,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wainlode Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2342,138767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cobham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2481,138768,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keston and Hayes Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2415,138769,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trelavour Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4287,138770,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raw Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2732,138771,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buxted Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6156,138772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Backside Beck and Spen Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5634,138773,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newsome Bridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4079,138774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cornmill Stream and Old River Lea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5038,138775,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bogs Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3967,138776,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fakenham Wood and Sapiston Great Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4078,138777,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bugg's Hole Fen, Thelnetham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3406,138778,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creech Grange","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2759,138779,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sapperton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6160,138780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harthwaite Sike","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2894,138781,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baddesley Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5042,138782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bulwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5203,138783,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buddon Wood and Swithland Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2416,138784,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tremearne Par","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2482,138785,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abbey Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2343,138786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4141,138787,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rixton Clay Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4578,138788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Church Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4758,138789,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walmore Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6119,138790,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keisley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2895,138791,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Butter Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3407,138792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Giant Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5205,138793,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burbage Wood and Aston Firs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5043,138794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4491,138795,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pennerley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5635,138796,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newtondale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3748,138797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hunsdon Mead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2633,138798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cowden Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5996,138799,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gait Barrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4760,138800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winson Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2537,138801,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4288,138802,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandbach Flashes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2634,138803,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Darenth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5170,138804,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cave's Inn Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5636,138805,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nine Spring Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4579,138806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hay Wood and Tinkers' Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3115,138807,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Cheverell Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3434,138808,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Goathill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3910,138809,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morston Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3114,138810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gallows Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2760,138811,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thanet Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4761,138812,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodchester Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4580,138813,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Common Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5171,138814,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Charnwood Lodge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5787,138815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harker's House Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3761,138816,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wheal Alfred","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4492,138817,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Derrington Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3762,138818,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wheal Gorland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2538,138819,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Riddlesdown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5786,138820,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Holme Meadow, Thwaite","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4080,138821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Glen Chalk Caves, Bury St, Edmund'S","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6120,138822,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pus Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3911,138823,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mundesley Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4763,138824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wood Green Quarry & Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3435,138825,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Purbeck Ridge (West)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3292,138826,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Curry and Hay Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4289,138827,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tabley Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2635,138828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dover To Kingsdown Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5638,138829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nunnington Cutting and Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2754,138830,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trottiscliffe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6163,138831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swindale Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2896,138832,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beacon Hill, Warnford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4764,138833,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wotton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2752,138834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3728,138835,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn Grey Rock and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3566,138836,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weston Big Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3433,138837,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dendles Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4584,138838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombhill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2636,138839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Blean Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3436,138840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Halfway House Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5788,138841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cliff Beck Meadow, Buttertubs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2637,138842,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ellenden Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2807,138843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ratlake Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5642,138844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rievaulx Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3764,138845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hingston Down Quarry & Consols","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5789,138846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swineley Meadow, Widdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3313,138847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Folly Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3437,138848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hod and Hambledon Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2808,138849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frieth Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3913,138850,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Overstrand Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4290,138851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tatton Meres","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4082,138852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shallam Dyke Marshes, Thurne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4901,138853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mantles Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2539,138854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elmstead Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3729,138855,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Luxulyan Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4765,138856,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Wye Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4687,138857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Flits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3912,138858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Buckenham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4902,138859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pipewell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4291,138860,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Taylor's Rough & Wellmeadow Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3730,138861,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cudden Point To Prussia Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5643,138862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ripon Parks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5583,138863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Teesdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3567,138864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Street Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5176,138865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chater Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5790,138866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wanlass Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4766,138867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doley Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3316,138868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brent Tor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4585,138869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crews Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3765,138870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penberthy Croft Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4903,138871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitsford Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3568,138872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aller and Beer Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3438,138873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Handcocks Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3117,138874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Yews","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4588,138875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crumpton Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3899,138876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poplar Farm Meadows, Langley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2669,138877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stodmarsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5791,138878,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Close, Calvert Houses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2540,138879,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ruislip Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2898,138880,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Binswood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4292,138881,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warburton's Wood and Well Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3737,138882,"GBR","Common Standards Monitoring",2013,"For storage only",18,"De Lank Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2644,138883,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Farningham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4293,138884,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wettenhall and Darnhall Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4595,138885,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dagnell End Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3569,138886,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Asham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2809,138887,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wormsley Chalk Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2541,138888,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ruxley Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6164,138889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nob End","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3738,138890,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Folly Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5177,138891,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cliffe Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2645,138892,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Folkestone To Etchinghill Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4710,138893,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Racecourse Farm Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5792,138894,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oughtershaw and Beckermonds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2389,138895,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gripwood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5178,138896,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clipsham Old Quarry and Pickworth Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2810,138897,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dancersend Waterworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2646,138898,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Folkestone Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3901,138899,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Potter's Carr, Cranworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5336,138900,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Finedon Top Lodge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2672,138901,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Swale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4083,138902,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bullock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3767,138903,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wheal Penrose","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4294,138904,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wimboldsley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2671,138905,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swanscombe Skull Site","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5959,138906,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Wirral Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4767,138907,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knap House Quarry, Birdlip","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3421,138908,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haydon and Askerswell Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3915,138909,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Potter & Scarning Fens, East Dereham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5644,138910,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Runswick Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3072,138911,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wychwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4905,138912,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ramsden Corner Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2542,138913,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harrow Weald","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3768,138914,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meneage Coastal Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4210,138915,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wollaston Ridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5350,138916,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glapthorn Cow Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3736,138917,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porthcew","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4554,138918,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devil's Spittleful","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2811,138919,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glyme Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5207,138920,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coalville Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6669,138923,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Conwy Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4565,138925,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alexanderstone Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6661,138926,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aberithon and Bedw Turbaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6673,138927,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Penycoed Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6674,138928,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Pontfaen - Coed Gelli-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6675,138929,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Wen a Traeth Tanybwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6676,138930,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt y Gaer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6175,138931,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt y Main Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6670,138932,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt Cynhelyg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6679,138933,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt-y-gest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6680,138934,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alyn Valley Woods and Alyn Gorge Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6186,138935,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arfordir Saundersfoot - Telpyn/Saundersfoot - Telpyn Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6677,138938,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allt y wern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6689,138939,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bach Howey Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6678,138940,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bach-y-graig Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6690,138941,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baltic and Tyle'r-bont Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6694,138942,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banc Llety-spence","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6695,138943,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banc y Mwldan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6688,138944,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arthog Hall Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6699,138945,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barland Common Stream Section, Bishopston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6700,138946,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barmouth Hillside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6701,138947,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baron Hill Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6696,138948,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barry Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6692,138949,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beacon Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6691,138950,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banc-y-Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6697,138951,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beddmanarch-Cymyran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6702,138952,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benallt Mine and Nant-y-Gadwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6703,138953,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benarth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6704,138954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berry Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7190,138955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwynfynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6706,138956,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birdshill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6708,138957,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishops Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7499,138958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Offshore Inlets of Pembrokeshire/Ynysoedd Glannau Penfro","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6705,138959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6710,138960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackcliff-Wyndcliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6711,138961,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackmill Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6712,138962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackpill, Swansea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6713,138963,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaen Cilieni","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5109,138964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaen y Wergloedd Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6709,138965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Mountains","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6715,138966,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaenrhondda Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6716,138967,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaentrothy Meadows (Caeau Blaentroddi)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6717,138968,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blorenge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6719,138969,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boxbush Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6720,138970,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bracelet Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6722,138972,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brecon Beacons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6723,138973,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breidden Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6727,138975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broad Oak & Thornhill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6728,138976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broadwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6721,138977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brechfa Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6732,138978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brofiscin Quarry, Groes Faen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6733,138979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bron Aberanerch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6734,138980,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bron-y-Buckley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6735,138981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brook Cottage, Llangybi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6736,138982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broomhill Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6729,138983,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brockwell's Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6738,138984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn Alyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6740,138985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn Bras","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4493,138987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Eden - Cors Goch Trawsfynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6744,138990,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn Glas Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6750,138991,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn-Llin-Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6751,138992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryncarnau Grasslands, Llwydcoed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6752,138993,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryngwyn Hall Stables and Coach House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6754,138994,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brynmawr Sections","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6743,138995,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn Euryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6756,138996,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckland Coach House & Ice House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6758,138997,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burfa Boglands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6759,138999,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burry Inlet and Loughor Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6760,139000,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bushy Close","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6761,139001,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bwlch Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6762,139002,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bwrdd Arthur","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6763,139003,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caban Lakeside Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7618,139004,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cadair Idris","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6749,139006,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Aber-Glanhirin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6793,139007,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Blaenau-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6797,139008,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Bryn-du","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6766,139009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Bryn-tywarch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6767,139010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Cilmaenllwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6764,139011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Coed-gleision","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6747,139012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cadnant Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5213,139013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Cwm-bach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6768,139014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Cwm-rhocas (Cwm Roches Meadow)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6769,139015,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Cwm-tywyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6770,139016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Ffos-yr-odyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6771,139017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Gwernllertai","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6773,139018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Gwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6765,139019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Comin Coch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6775,139020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Henfron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6778,139022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Llwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6780,139023,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Maes-y-ffynnon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6779,139024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Penmaes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6781,139025,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Pwll-y-bo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6774,139026,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Gwynfryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6784,139027,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Ty-hen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6785,139028,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae'r Felin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6786,139029,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae'r Meirch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6787,139030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Afon Gwili","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6514,139031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Ardwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6791,139032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Blaen-yr-Orfa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6817,139033,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Tir-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6799,139034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Capel Hendre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6801,139035,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Clochfaen-Isaf (Clochfaen-isaf Fields)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6802,139036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Cnwch a Ty'n-y-graig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6803,139037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Coed Mawr (Coedmawr Fields)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6782,139038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Cwm-Ffrwd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6795,139039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Bronydd-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6794,139040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Ffos Fach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6805,139041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Glyn (Glyn Fields)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6796,139042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Llety-cybi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6808,139043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Llwyn Gwrgan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6809,139044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Lotwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6810,139045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Nant Garenig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6789,139046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Cwmcoynant (Caeau Cwncaenant)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6813,139047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Pant-y-Bryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6726,139048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Penglaneinon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6815,139049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Tan y Bwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6818,139050,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Ton-y-fildre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6819,139051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Troed-Rhiw-Drain (Troed-Rhiw-Drain Meadows)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6811,139052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Nant y Llechau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6824,139054,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Tyddyn Dicwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6825,139055,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Wern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6829,139056,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caer Llan Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6830,139057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caerau Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6832,139058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caerwys Tufa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6820,139059,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Ty'n-llwyni","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6833,139060,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cappas Lwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6834,139061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carew Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6835,139063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carmel Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6836,139064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn Gafallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6838,139065,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carreg Cennen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6839,139066,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carreg y Llam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6840,139067,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castell Coch Woodlands and Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6816,139068,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castell Prysor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6999,139069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eryri","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6841,139070,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castlemartin Corse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6843,139071,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caswell Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6845,139072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cathedine Common Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6846,139073,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cefn Blaenau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6847,139074,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cefn Bryn Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6842,139075,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castlemartin Range","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6848,139077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cefn Gwrhyd, Rhydyfro","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6849,139078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cefn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6852,139080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cefn y Brithdir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6853,139081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cefndeuddwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6854,139083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cemlyn Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6855,139084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cernydd Carmel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6857,139085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cerrig-gwalch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6827,139086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ceunant Cynfal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6828,139087,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ceunant Dulyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6862,139089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwarel Bryn Banc (Bryn Bank Quarry)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6858,139091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwarel Pant Glas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6859,139092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwarel Ponterwyd (Ponterwyd Quarry)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5650,139093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwarel Talar Wen (Talar Wen Quarry)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6946,139094,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd De Dyffryn Maentwrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7024,139095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cil-y-groeslwyd Woods, Eyarth Woods & Rocks & Craig Adwy-wyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5658,139096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cilcenni Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6867,139097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cilwrgi Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6865,139099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwythlyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6874,139100,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleddon Shoots Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6875,139101,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clegir Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6777,139102,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clemenstone Meadows, Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6783,139103,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cliff Wood - Golden Stairs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6822,139104,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clogau Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6870,139105,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleddon Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6878,139106,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cloy Brook Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6880,139107,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cobbler's Plain Meadows, Devauden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6881,139108,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed A Gweunydd Gilfach-gwyddil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6883,139109,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Aber Artro","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6869,139110,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Aberdulas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6877,139111,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clogwynygarreg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6872,139112,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Afon Crewi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6873,139113,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Afon Pumryd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6876,139114,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Allt Craig Arth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6884,139115,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Allt Lan-las","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6886,139116,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Blaen-y-cwm (Blaen-y-cwm Wood)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6871,139117,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Aberedw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6887,139118,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Bryn-Person","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6888,139119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Byrwydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6882,139120,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Cae-Awr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6885,139122,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Cochion Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6889,139123,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Copi'r Graig,","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4594,139125,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Craig-iar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6891,139126,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Cwm Cletwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6892,139127,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Cwm Du, Cilmaengwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4598,139128,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Cwmgwared","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4659,139129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Dinorwig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4666,139130,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Dolgarrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6890,139131,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Cors y Gedol","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6895,139132,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Elernion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6897,139133,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Ffordd-Las","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7109,139134,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ganllwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6898,139135,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Gorswen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6899,139136,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Graig Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6900,139137,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Gwempa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6894,139138,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Dyrysiog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6904,139139,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Llandyfan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6905,139140,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Llechwedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6906,139142,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Lletywalter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6907,139143,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Llys-Aled","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6903,139144,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Hafod-fraith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5010,139145,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5014,139146,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Mawr - Blaen-Car","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6908,139147,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Merchlyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6909,139148,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Mynachlog-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6910,139149,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Nant Llolwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6911,139150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Nant Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4673,139151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Maes-mawr, Coed Esgairneiriau a Cheunant Caecenau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6896,139152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Nant-y-merddyn-uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6901,139153,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Pentre (Pentre Wood)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6902,139154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Talon Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6913,139155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Trefraith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6914,139156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Tremadog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6912,139157,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Nant Menascin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6916,139158,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Ty-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6917,139159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Tyddyn-du","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6930,139160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Ynys-Faen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6918,139161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Bedw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6919,139162,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Bwl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6923,139163,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Cefn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6915,139164,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Ty-canol (Tycanol Wood)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6926,139165,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Ciliau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6920,139166,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Crychydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6921,139167,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Gell and Morfa Dulas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6922,139168,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Gofer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6925,139169,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Gopa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6927,139170,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Lawnt a Coed Oli","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6924,139171,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Cerrig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6931,139172,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed yr Allt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6933,139173,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed yr Allt-goch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6932,139174,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed-mawr Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6936,139175,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed-y-Darren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6937,139176,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed-y-Person","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6929,139177,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed y Rhygen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6940,139178,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Aber","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6941,139179,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Abergwynant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6943,139180,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Afon Menai","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6952,139182,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Llawr-y-glyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6949,139183,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Dyffryn Ffesiniog (Gogleddol)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6953,139184,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Tregyb","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6938,139185,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd a Cheunant Rheidol (Rheidol Woods & Gorge)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6951,139186,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Glannau a Cwm Coel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4697,139187,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd y Beili, Malgwyn a Cribin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4713,139188,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd y Garn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6928,139189,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedymwstwr Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5147,139190,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glynllifon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6939,139191,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd a Chorsydd Aber Teifi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6957,139192,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Comin Esgairmaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4726,139193,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Comin Silian","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6959,139195,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Comins Tre-rhos (Tre-rhos Common)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6961,139196,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombe Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6956,139197,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colwyn Brook Marshes (North & South)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4740,139199,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Barfog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6963,139200,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Bodeilio","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6964,139201,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Bodwrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6968,139202,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Bwlch-y-baedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6969,139203,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Cae'r Neuadd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6962,139204,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corndon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6973,139206,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Caron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4752,139208,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Erddreiniog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6976,139209,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Farchwel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6972,139210,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Caranod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6978,139211,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Geirch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6981,139212,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Geuallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6982,139213,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Goch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6984,139214,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Goch, Llanllwch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6977,139215,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Farlais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6986,139216,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Graianog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6987,139217,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Gyfelog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6990,139218,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Hirdre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6991,139219,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Lawnt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6995,139220,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Llanllugan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6983,139221,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Gorsgoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6996,139222,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Llyn Coethlyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7001,139223,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Llyn Farch a Llyn Fanod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7003,139224,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Penally (Penally Marsh)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7004,139225,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Penbwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7006,139226,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Ty-Llwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7005,139227,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Ty-gwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6998,139228,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Llyferin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7009,139229,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors y Farl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7013,139230,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors y Sarnau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7014,139231,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors y Sychnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7015,139232,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsydd Llanbrynmair (Llanbrynmair Moors)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7017,139233,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsydd Llangloffan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7010,139234,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Y Llyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7287,139235,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llynnoedd Cosmeston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4727,139236,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Ddu-Wharley Point Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7133,139237,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Graig Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4753,139239,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Pont Rhondda","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7025,139240,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Wen/Cors Castell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5785,139242,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig-y-don","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7027,139243,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig y Rhiwarth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5807,139246,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig-y-Llyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7026,139247,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig y Benglog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5808,139248,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigyfulfran & Clarach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6989,139249,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cregennen a Pared y Cefn Hir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6992,139250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creigiau Aberarth-Morfa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6993,139251,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creigiau Abergwaun (Fishguard Cliffs)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6994,139252,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creigiau Cwm-Ceriw a Ffos-las (Morfa Bychan)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6988,139253,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigypistyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7029,139254,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creigiau Llansteffan (Llanstephan Cliffs)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7030,139256,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creigiau Pen y graig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7032,139259,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crest Mawr Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6718,139260,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Borth-Clarach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7034,139261,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croes Robert Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7007,139262,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crug Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7035,139263,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crychan Forest Tracks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6975,139264,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Crymlyn/Crymlyn Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7036,139265,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crymlyn Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7039,139267,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwar Glas Quarry and Sawdde Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7040,139268,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Bach, Sychpant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7041,139270,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Cadlan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7037,139272,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cutiau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7042,139273,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Clydach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7044,139275,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Craig-ddu Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7045,139276,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Crymlyn Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7038,139277,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Cydfin, Leckwith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7046,139278,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Cyffog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7049,139279,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Doethie - Mynydd Mallaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7050,139280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Du Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5957,139281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Dwythwch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5971,139282,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Gwrelych and Nant Llyn Fach Streams","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5972,139283,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Gwynllyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7047,139284,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Cynfal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7051,139285,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Llanwenarth Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7052,139286,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Llyfnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7053,139287,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Merddog Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6742,139288,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Mill Section, Mardy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7100,139289,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fforestganol a Cwm Nofydd Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7261,139290,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morfa a Chraig Cwm Ivy/Cwm Ivy Marsh and Tor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7055,139291,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Taf Fechan Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7056,139292,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Twrch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7057,139293,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm yr Abbey Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6967,139295,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm-Ton, Glascoed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7054,139296,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Risca Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7060,139297,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwmsymlog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7062,139298,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cynwyd Forest Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7064,139300,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dan y Graig Quarry, Risca","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7065,139301,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dan-Lan-Y-Castell Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7058,139302,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm-gwanon Dingle and Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7067,139303,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Daren y Dimbath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7309,139304,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Milford Haven Waterway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7068,139305,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ddol Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7066,139309,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Daren Fach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7071,139310,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Derwen-fach Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7620,139311,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dinas Bran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7072,139312,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dinas Dinlle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7073,139313,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dinefwr Estate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7074,139314,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dinham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6864,139315,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwareli a glaswelltir Degannwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7077,139316,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dolaucothi Gold Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7008,139317,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dolyhir Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7020,139318,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dolyhir Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7021,139319,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dowrog Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7078,139320,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drostre Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7076,139321,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dolau Hafod a Winllan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7080,139323,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dwrhyd Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7081,139324,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dyffryn Gwaun","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7083,139325,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dyfi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6965,139326,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dylife Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6685,139327,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arfordir Niwgwl - Aber Bach/Newgale - Little Haven Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6979,139328,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Aberthaw Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6980,139329,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eglwys Nunydd Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7084,139330,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eidda Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7086,139331,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elenydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6971,139332,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Earlswood Road Cutting and Ferryboat Inn Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6985,139333,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Erwood Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7000,139334,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Esgyrn Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7090,139335,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairwood, Pengwern and Welshmoor Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7091,139336,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairy Glen Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7087,139338,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ely Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6683,139340,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arfordir Gogleddol Penmon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7093,139341,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Felin Fach Meadows, Cwmgwili","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7092,139343,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Far Hall Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7098,139345,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ffordd Coed Dol-Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7101,139348,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ffridd Mathrafal Track Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7096,139349,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ffair Fach Railway Cutting and River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7105,139351,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ffynnon Beuno and Cae Gwyn Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7106,139352,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fiddlers Elbow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7102,139353,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Figyn Blaen-Brefi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7103,139354,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flat Holm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4857,139357,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gaer House Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4858,139358,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gaer Wood, Llangoven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4869,139359,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gallt Llanerch - Coed Gelli-deg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7108,139360,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gallt-y-Bwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4874,139362,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garn Wood, Kilkiffeth Wood & Dan-Deri-Cwm Felin-Ban","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5071,139363,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garth Bank Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5075,139364,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5088,139365,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garth-eryr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7111,139366,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gas Works Lane Section (Haverfordwest)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7113,139368,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gilwern Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7114,139369,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glais Moraine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7115,139370,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glamorgan Canal / Long Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7116,139371,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glan Pibwr Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7117,139372,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glan-traeth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7112,139374,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gatewen Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5123,139375,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Ynys Gybi: Holy Island Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7125,139376,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glascwm and Gladestry Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7126,139378,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glaslyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7120,139379,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Aberdaron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7033,139380,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creuddyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7129,139383,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gorsllwyn, Onllwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7069,139384,"GBR","Common Standards Monitoring",2013,"For storage only",18,"De Porth Sain Ffraid/St Bride's Bay South","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7130,139385,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gower Coast: Rhossili to Porteynon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7132,139386,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Graig Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7134,139387,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Graig Fawr, Pontardulais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5154,139388,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Golden Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7138,139389,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Graig Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7140,139390,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grassholm/Ynys Gwales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7403,139392,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen y Gogarth/Great Orme's Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7135,139393,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gregynog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7123,139394,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Graig Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7142,139395,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gungrog Flash","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5168,139396,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Bryn (Bryn Pasture)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7143,139397,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Bwlch Hafod-y-gog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7144,139398,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Cilgwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7141,139400,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gronant Dunes and Talacre Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7145,139403,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Llan (Llan Pastures)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7149,139404,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Llwyn-gwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7150,139405,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Pen-lan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7147,139406,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Efail-Llwydiarth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7152,139407,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Wern-y-wig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7153,139408,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Ystrad Caron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7154,139409,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwenfro and Rhos y Gad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7155,139410,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwent Levels - Magor and Undy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7156,139411,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwent Levels - Nash and Goldcliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7151,139412,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Troed-rhiw-seiri a Llyn Mynydd-gorddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7619,139413,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwent Levels - Rumney and Peterstone","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7158,139414,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwent Levels - St, Brides","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7159,139415,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwent Levels - Whitson","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7160,139416,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwern-y-brain Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7161,139417,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwern-yfed-fach Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7157,139418,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwent Levels - Redwick and Llandevenny","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7168,139419,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Coch-y-dwst","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7170,139420,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Crychell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7169,139422,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Dwfnant (Dwfnant Pasture)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7173,139423,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Dyfnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7162,139424,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwernaffel Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7177,139425,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Glan-y-glasnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7178,139426,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Hendre Eynon (Hendre Eynon Pastures)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7179,139427,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Llechwedd-newydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7180,139428,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Pen-y-Coed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7181,139429,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Pendinas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7174,139430,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Esgairdraenllwyn (Esgairdraenllwyn Pastures)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7183,139431,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Ty'n-y-Llidiart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7186,139432,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Ty-Brith (Ty-Brith Meadows)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7163,139433,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd a Choed Pen-Ty (Pen-Ty Pastures & Wood)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7188,139434,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwrhyd Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7182,139435,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Penstrowed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6934,139436,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Nanmor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7185,139437,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hafod Wennol Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7191,139439,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Halfway Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7192,139440,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hanmer Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7189,139441,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwydir Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4909,139442,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hayes Point to Bendrick Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7193,139444,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hen Berth Fron-Badarn a Phersondy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7194,139445,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hen-allt Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7196,139446,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Henborth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4900,139447,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harper's Grove-Lord's Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7204,139448,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Henllys Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5680,139449,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heol Senni Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7207,139450,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hermon Copper Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7209,139451,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hillington Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7195,139452,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollybush Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7197,139453,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hook Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7203,139454,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hendre, Llangedwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7201,139455,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Illtyd Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7211,139456,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ilston Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7213,139457,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ithon Valley Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7217,139458,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jeffreyston Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7061,139459,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cynffig/Kenfig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7200,139460,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Howey Brook Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7219,139461,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lake Wood, Llandrindod Wells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7220,139463,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langland Bay (Rotherslade)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7222,139464,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langstone-Llanmartin Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7487,139465,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Twyni Lacharn-Pentywyn/Laugharne and Pendine Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7218,139466,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingswood Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7224,139467,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lisvane Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7225,139469,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Hoyle and Hoyle's Mouth Caves & Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7031,139471,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creigiau Rhiwledyn/Little Orme's Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7228,139473,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llan Bwch-llyn Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7230,139474,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanbradach Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7229,139475,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanbadrig - Dinas Gynfor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6671,139476,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Traeth Pensarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7232,139477,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llandegfedd Resevoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7226,139478,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Livox Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7234,139479,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llandeilo, Rhulen and Llanbedr Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7235,139480,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanelwedd Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7223,139481,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanfallteg Track Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7236,139482,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanfawr Quarries, Llandrindod Wells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7237,139483,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanfihangel Moraine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7233,139484,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llandegla Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7210,139487,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanover Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7238,139489,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llangammarch Wells Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7243,139492,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llety - Wen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7242,139493,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7245,139494,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llwyn y Celyn Wetland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7240,139495,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llay Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7248,139496,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llwyn-Cus","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7251,139497,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Alaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7252,139498,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Bedydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7254,139499,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Bodgylched","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7255,139500,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Bychan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7246,139501,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llwyn y Coed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7256,139502,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Creiniog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4503,139503,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Gwyrfai a Llyn Cwellyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7258,139504,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Eiddwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7259,139505,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Garreg-lwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7260,139506,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Glasfryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7263,139507,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Goddionduon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7269,139509,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Hafodol and Cors Clegyrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7244,139511,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Llech Owain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7272,139512,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Llygeirian","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7273,139513,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Llywenan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7264,139514,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Gwernan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7275,139515,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7247,139516,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Padarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7276,139517,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Padrig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7278,139518,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Pencarreg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7279,139520,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Peris","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7274,139521,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Maelog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7281,139522,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Tegid","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7282,139523,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Traffwll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7283,139524,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Ty'n y Llyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7284,139525,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Ty'n y Mynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7280,139527,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Syfaddan (Llangorse Lake)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7285,139528,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llynnau Bodgynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7286,139530,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llynnau y Fali : Valley Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7288,139531,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llynoedd Ieuan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7270,139532,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llynoedd Tal-y-llechau, (Talley Lakes)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7265,139533,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn y Fawnog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7290,139534,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Caerfaelog Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7277,139535,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Garth Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7291,139536,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Ground, Penrhos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7292,139537,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Hael Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7293,139538,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower House Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7289,139539,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llystyn Isaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7206,139540,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maelienydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7298,139541,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maes-yr-Uchaf Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7299,139542,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maesyprior","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7300,139543,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Magor Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7301,139544,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Malltraeth Marsh/Cors Ddyga","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7202,139545,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Nex Meadows, Devauden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7303,139546,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marcheini Uplands, Gilfach Farm & Gamallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7305,139547,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marford Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7304,139548,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Margam Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7310,139550,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marloes Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7302,139551,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mandinam a Coed Deri","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6684,139552,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arfordir Marros-Pentywyn/Marros Pendine Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7311,139553,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mawnog Gwaunynog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7306,139554,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meidrim Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6942,139555,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd ac Ogofau Elwy a Meirchion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7063,139556,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dale and South Marloes Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7313,139558,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Merthyr Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7314,139559,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Migneint-Arenig-Dduallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7315,139561,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minchin Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7312,139562,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Memorial Park Meadows Pontllanfraith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4910,139563,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mochdre Dingles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4911,139564,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moel Hebog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4913,139565,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moel Hiraddug a Bryn Gop","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7317,139566,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moel Tryfan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7318,139567,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moel y Golfa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7319,139568,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moelwyn Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7316,139569,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minwear Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7322,139570,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monknash Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4923,139571,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Montgomery Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7257,139573,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moorlands Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7321,139574,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moity and Garth Dingles and Fron Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7267,139576,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morfa Dyffryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7268,139577,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morfa Harlech","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7271,139578,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morfa Uchaf, Dyffryn Conwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6648,139579,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tiroedd a Glannau rhwng Cricieth ac Afon Glaslyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7307,139580,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mountain Cottage Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7323,139581,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mountain Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7326,139583,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Castell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7335,139584,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Llety Ifan Hen (Vaughan Mine)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7296,139585,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mosshill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7347,139586,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mylett Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7348,139587,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Du (Black Mountain)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7350,139588,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Hiraethog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7351,139589,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Llangatwg (Mynydd Llangattock)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7331,139590,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Nant-y-cagl (Eaglebrook Mine)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4943,139591,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Parys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4946,139592,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Penarfynnydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4947,139593,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Preseli","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7352,139594,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Ty-Isaf, Rhondda","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7353,139595,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Ystyfflau-Carn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7339,139596,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Llangyndeyrn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7356,139597,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant Gelliwion Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7358,139598,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant Glais Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7359,139599,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant Llech","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7360,139600,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant Whitton Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7354,139601,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant Cledlyn Pingos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7366,139602,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nash Lighthouse Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7367,139603,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nedern Brook Wetlands, Caldicot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7368,139604,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nelson Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7373,139606,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Castle Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7374,139607,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New House Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7364,139608,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant-y-Belan and Prynela Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7375,139609,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newborough Warren - Ynys Llanddwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7376,139610,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newmead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7377,139611,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newport Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7380,139613,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ogof Ffynnon Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7369,139614,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ogof Ffynnon Ddu-Pant Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7370,139615,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Castle Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7381,139616,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Cilgwyn and Cae Heslop","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7384,139617,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oxwich Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7379,139618,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ogof Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7387,139619,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pandora Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7372,139620,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pandy Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7391,139621,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pant y Panel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7392,139623,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pant-y-Sais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7396,139624,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parc Bodlondeb and Gwenallt-parc, Lixwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7386,139625,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oystermouth Old Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7393,139626,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parc Pont-faen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7398,139627,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parc Seymour Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5849,139628,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parc-y-rhos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7399,139629,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park House Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6686,139630,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arfordir Pen-Bre/Pembrey Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7385,139631,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parc Linden, Lixwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7405,139633,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen-Common, Llanbedr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7406,139634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen-Dugwm Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7404,139635,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen-cerrig Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7408,139636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen-y-Cefn Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7411,139638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penard Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7412,139639,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penarth Brook Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7413,139640,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penarth Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7407,139641,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penarth Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7414,139642,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pencarreg-gopa a Moel Hyrddod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7410,139644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen-yr-hen-Allt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4965,139645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pengelli Forest and Pant-teg Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4967,139646,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penhow Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7415,139647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penllergaer Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7416,139648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penllwyn Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7418,139649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penllwyn-yr-Hendy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4960,139650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pencreigiau'r Llan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7424,139652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penmoelallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7420,139653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penpergwm Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7421,139654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penplas Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7422,139655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penrhos Lligwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4968,139656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penrhynoedd Llangadwaladr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7419,139657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penmaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5882,139658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penstrowed Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5884,139659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pentregwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7425,139660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pentrosfa Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7426,139661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pentwyn Farm Grasslands, Penallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7428,139662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penygarnedd Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5876,139663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penrice Stables and Underhill Cottage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7430,139664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pierce, Alcove and Piercefield Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7435,139665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plas Iolyn Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7436,139666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plas Machen Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7438,139667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plas-y-Gors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7440,139668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pont Bancog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7429,139669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penylan Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7390,139670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pont y Fenni Quarry and Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7394,139672,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porth Ceiriad, Porth Neigwl ac Ynysoedd Sant Tudwal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7395,139673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porth Diana","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7441,139676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portheiddy Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7397,139677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porth Dinllaen i Borth Pistyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7442,139678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prestatyn Hillside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7443,139679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Priory Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7444,139680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Puffin Island - Ynys Seiriol","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7417,139681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pumlumon (Plynlimon)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7447,139684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pwll-y-wrach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7448,139686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pyllau Machynys (Machynys Ponds)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7433,139687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pysgodlyn Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7446,139688,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pwll Du Head and Bishopston Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7451,139690,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Radnor Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7452,139691,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ramsey/Ynys Ddewi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7449,139692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rectory Meadow - Rogiet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4971,139693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rheidol Shingles and Backwaters","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6660,139694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aberarth-carreg Wylan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7453,139695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhiw-for-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7454,139696,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Blaen Carrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7455,139697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Blaenclettwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7616,139698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosydd Bryn y Maen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7456,139700,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Bryn-wichell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4981,139701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhinog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7458,139702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Cilcennin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7460,139703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Cross Inn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7463,139704,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Cruglas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7461,139705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Cwmsaeson","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7465,139706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Dolau-Bran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7466,139707,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Dwfnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7457,139708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Bwlch-y-rhandir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7469,139709,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Fullbrook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7470,139710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Gargoed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7474,139711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Gellie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7475,139712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Glwydwern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7476,139713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Glyn-yr-helyg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7467,139714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Esgairwen-fawr a Rhosgoch-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7478,139715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Hen-Glyn-Isaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7479,139716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Llawr Cwrt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7483,139717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Penrhiw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7485,139718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Pil-bach a Pennar-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7489,139719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Pwllygawnen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7477,139720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Goch (Rhos Goch Common)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7495,139721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Talglas a Chors yr Hafod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7464,139722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos yr Hafod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7500,139723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos-Rydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5099,139724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Rhoscolyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7468,139725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhoscolyn Reedbed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7492,139726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Rhyd-y-ceir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7504,139727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosneigr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7505,139728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosneigr Reefs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7506,139729,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhossili Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7507,139730,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosydd Castell-du & Plas-y-bettws","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7471,139731,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosydd Llanwrthwl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7501,139732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosgyll Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7510,139733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhymney River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7511,139734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ritec Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7520,139738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Robeston Wathen Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7522,139739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roundton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7523,139740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ruabon/Llantysilio Mountains and Minera","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7524,139741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rumney Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7503,139745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Severn Estuary (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7527,139746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shell Brook Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7502,139747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salbri","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7531,139748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Siambre Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7532,139749,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skokholm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7533,139750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skomer Island & Middleholm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7528,139752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slebech Stable Yard Loft, Cellars & Tunnels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7529,139753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shoalshook Railway Cutting and Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7536,139754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sontley Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7537,139755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southerndown Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7538,139756,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spy Wood and Aldress Dingle (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7535,139758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Smarts Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7539,139759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St. David's Airfield Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7540,139760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St. David's Peninsula Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7542,139761,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stackpole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7541,139762,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St. Margaret's Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5903,139763,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stackpole Quay - Trewent Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7543,139764,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanner Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7490,139765,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stormy Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7544,139766,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strawberry Cottage Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5898,139767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stackpole Courtyard Flats & Walled Garden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7547,139768,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sugar Loaf Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7548,139769,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sully Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7549,139771,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sychnant Pass","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7545,139772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strumble Head - Llechdafad Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7551,139773,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Talhenbont","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9347,139774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Talybont Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7552,139775,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tan y Grisiau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7497,139777,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teilia Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6645,139780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wern, Rhosgoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6950,139782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Dyffryn Wnion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6649,139783,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Traeth Lafan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6650,139784,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Traeth Llanon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6662,139785,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Traeth Lligwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6644,139786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Skerries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7553,139787,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tre'r Gof","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7554,139788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trecoed/Castle Crab","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7556,139789,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trefeiddian Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7557,139790,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Treffgarne Bridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6860,139791,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Treffgarne Gorge & Tors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6672,139792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tre Wilmot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7563,139794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trwyn Dwlban","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7567,139795,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Twenty-five Acre Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7558,139796,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tretio Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7571,139797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyddyn y Waen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7561,139798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyn Llan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7576,139799,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tywyn Aberffraw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7572,139800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Nantserth Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7573,139801,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Wye Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7555,139802,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ty'n y Ffordd Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7578,139803,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Vicarage Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7581,139804,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun Cimla","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7582,139805,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun Cwm Calch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7583,139806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun Eurad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7584,139807,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun Fawr, Puncheston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7585,139808,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun Fawr, Ty Ddewi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7577,139809,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Vicarage Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7592,139810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun-Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7594,139811,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7596,139814,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wern Ddu Claypits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7597,139815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wern Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7590,139816,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun Ton-y-spyddaden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7599,139818,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Llangynog Slate Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7600,139820,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Grit Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7482,139821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Twyni Chwitffordd, Morfa Landim“r a Bae Brychdwn/Whiteford Burrows, Landimore Marsh and Broughton Ba","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7598,139822,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wernbongam Stream Section and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7586,139823,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wye Valley Lesser Horseshoe Bat","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7604,139824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Y Glyn-diffwys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7605,139825,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Y Gors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7606,139826,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Y Werthyr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7601,139828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitehill Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7608,139829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ynys Enlli: Bardsey Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7609,139830,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ynys Feurig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7610,139831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ynys Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7611,139833,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ynysoedd y Gwylanod: Gwylan Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7607,139834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ydw Valley and Fron Road Geological Exposures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8163,139835,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garry Falls","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5060,139836,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fife Ness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8580,139837,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7638,139838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boturich Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8285,139839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilconquhar Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7613,139840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yr Eifl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8146,139841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North East Coll Lochs and Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7804,139842,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bogton Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8206,139843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nut Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8310,139844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockdaw Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8573,139845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newtown St Boswells Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7854,139846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cander Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8769,139847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stromness Heaths and Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7802,139848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boghole, Muckle Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7883,139849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carron Dams","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8882,139850,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wolf's Hole Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8065,139851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dumbrock Loch Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8276,139852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keelylang Hill and Swartaback Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8565,139853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mugdock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7715,139854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardura - Auchnacraig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8401,139855,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Lieurary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8435,139856,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Scarrasdale Valley Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6036,139857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8617,139858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pinbain Burn to Cairn Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8860,139859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westerdale Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8070,139860,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunbeath Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8453,139861,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochan Lairig Cheile","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7839,139862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coladoir Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8706,139863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sauchie Craig Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8586,139864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Noss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8289,139865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Killiegowan Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7836,139867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caenlochan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8242,139868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockormal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8727,139869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skelpick Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8060,139870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garabal Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7960,139871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigendarroch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8698,139872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"S' Airde Beinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8116,139873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eyre Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8358,139874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch a' Mhuilinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8504,139875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Luskentyre Banks and Saltings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5448,139876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shochie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8408,139877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Macanrie Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8216,139878,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gutcher","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7975,139879,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crannach Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8014,139880,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dornoch Firth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8334,139881,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lambsdale Leans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7966,139882,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crichton Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8704,139883,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salt Pans Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8273,139884,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kennox Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8078,139885,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dundonnell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8351,139886,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leavad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6345,139887,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Iadain and Beinn na h-Uamha","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8540,139888,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monadh Mor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8467,139889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochs of Kirkigarth and Bardister","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6454,139891,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bigholms Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7867,139892,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8743,139893,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spynie Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8391,139894,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quoich Spillway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7731,139895,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballantrae Shingle Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8271,139896,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jedwater Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8726,139897,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skelmorlie Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8620,139898,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Point Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8100,139899,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eigg - An Sgurr and Gleann Charadail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8650,139900,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Reidside Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7908,139901,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clatteringshaws Dam Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8410,139902,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Moidart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8010,139903,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Den of Alyth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8233,139904,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hermand Birchwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8038,139905,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doire Donn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8731,139906,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Mull Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7967,139907,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigmad Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7846,139908,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calder Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8050,139909,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Druimindarroch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7951,139910,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig Hammel to Sgaps Geo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8353,139911,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lennel, Charley's Brae","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8230,139912,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hells Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7801,139913,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bog Wood and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8655,139914,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhu Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8238,139915,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill of Colvadale and Sobul","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7999,139916,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill of Barra","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8399,139917,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quoigs Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7922,139918,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Phuiteachain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8017,139919,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Den of Pitlurg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7795,139920,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blar na Caillich Buidhe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8511,139921,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meall Ghaordie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7813,139922,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Branxholme Wester Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7993,139923,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cutties Hillock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8049,139924,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dun's Dish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8380,139925,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Brandy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7907,139926,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clashach - Covesea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8670,139927,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Lyon Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7657,139928,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Attadale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8816,139929,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tulach Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8584,139930,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Rothiemurchus Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7858,139931,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Camilla Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8231,139932,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Helmsdale Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8058,139933,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumochter Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8002,139934,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dam Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8265,139935,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Invertiel Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8227,139936,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hascosay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7721,139937,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auchterhouse Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5239,139938,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenacardoch Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8523,139939,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minto Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8867,139940,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whim Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7720,139942,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auchrochar Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8195,139943,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Norwick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7743,139944,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Balnagrantach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7712,139945,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardpatrick and Dunmore Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8837,139946,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Water of Ken Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8794,139947,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thistle Brig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8048,139948,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Druim nam Bad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8782,139949,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Talich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8027,139950,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Derskelpin Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8833,139951,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Voxter Voe and Valayre Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7670,139952,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Achanalt Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8476,139953,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Berry Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8037,139954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doire Dhonn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8018,139955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dryleys Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7914,139956,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coalburn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7936,139958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Correen Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8064,139959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7793,139960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7660,139961,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abbey Burn Foot to Balcary Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7627,139962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birk Knowes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7628,139963,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birkenhead Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6496,139964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shoulder o' Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7693,139965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auchencairn and Orchardton Bays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6658,139966,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aber Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7344,139967,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddiau a Chreigiau Gwydyr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6641,139968,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abercriban Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6682,139969,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arfordir Abereiddi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6944,139971,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Beddgelert a Cheunant Aberglaslyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4770,139972,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Astridge Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5961,139973,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5208,139974,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cotes Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2899,139975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Botley Wood and Everett's and Mushes Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2796,139976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holly Court Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2647,139977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gibbin's Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3769,139978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Five Oaks, Bampton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6166,139979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowber Head and Piper Hole Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4486,139981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lathkill Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2900,139982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boulsbury Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3570,139984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berrow Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4295,139985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Witton Lime Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2648,139986,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Crabbles Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3422,139987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Higher Houghton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3770,139988,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishop's Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5353,139989,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tortoiseshell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4206,139990,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4772,139991,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Soudley Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3916,139992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redgrave and Lopham Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5354,139993,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muckton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5924,139994,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thurstaston Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5794,139995,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meadow Croft, Skythorns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2398,139996,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Axmouth To Lyme Regis Undercliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3771,139997,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Huish Colliery Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5200,139998,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cribb's Lodge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5645,139999,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scar End Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4487,140000,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portway Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3424,140001,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holt and West Moors Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6167,140002,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bretherdale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4211,140003,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frog End Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3318,140004,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenaways and Freshmarsh, Braunton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6169,140005,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Moss, Crosbymoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5211,140006,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croft and Huncote Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2649,140007,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Shuttlesfield Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3917,140008,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ringstead Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2901,140009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bramshott and Ludshott Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3571,140010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Down and Sampford Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5860,140011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Silloth Dunes and Mawbray Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4908,140012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Short Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3305,140013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Hill Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5795,140014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Far Mains and Far Limekiln Close Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4173,140015,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fens Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3319,140016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breach Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3572,140017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blue Anchor To Lilstock Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5214,140018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croft Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2385,140019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greatness Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5932,140020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Armboth Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2675,140021,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wye and Crundale Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4773,140022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bigsweir Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5341,140023,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colwick Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5797,140024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yockenthwaite Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3440,140025,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horn Park Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4298,140026,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allimore Green Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4488,140027,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leek Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3772,140028,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Max Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3441,140029,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langford Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4775,140030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rake Dike","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2902,140031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bransbury Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2386,140032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Halling To Trottiscliffe Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4018,140033,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Harling Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5933,140034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bassenthwaite Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4489,140035,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Dale & Gratton Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4299,140036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alvecote Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5215,140037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croxton Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3918,140038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roydon Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6172,140039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Norwood Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5119,140040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Barn, Oxcombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4776,140041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bushley Muzzard, Brimpsfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3575,140042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brimble Pit and Cross Swallet Basins","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5218,140043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Donington Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2422,140044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barns Batch Spinney","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4019,140045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"London Road Industrial Estate, Brandon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2903,140046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breamore Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4689,140047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cotswold Commons and Beechwoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5712,140048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walden Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4731,140049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whelford Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2388,140050,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hatch Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5347,140051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caldecote Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4300,140052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aqualate Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4020,140053,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilde Street Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5951,140054,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Biglands Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4912,140055,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stoke & Bowd Lane Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5124,140056,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Dyke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2955,140057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanton Harcourt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5801,140058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brantingham Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2904,140059,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brickworth Down and Dean Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3306,140060,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corfe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2905,140061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brockley Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2360,140063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ugbrooke Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5120,140064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holywell Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5349,140066,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wansford Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4174,140067,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belvide Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4733,140068,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dymock Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3919,140069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scoulton Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4748,140070,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thrapston Station Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2956,140071,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cumnor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5802,140072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horse Dale and Holm Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3921,140073,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sea Mere, Hingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2623,140074,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dalham Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2906,140075,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broughton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6123,140076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eccup Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2798,140077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"King's Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5960,140078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bothel Craggs Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4308,140079,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Firs & Cranberry Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5125,140080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Honington Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3573,140081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bruton Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4415,140082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baswich Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4497,140083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Lathkill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5803,140084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Vessey Pasture Dale and Back Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4011,140085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Vange & Fobbing Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2959,140086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunbridge Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5357,140087,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Abbot's and Lound Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4404,140088,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowness Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2812,140089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lardon Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4780,140090,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hucclecote Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4309,140091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blithfield Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5064,140092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hoplands Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6124,140093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cautley Thwaite Meadows and Ecker Secker Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4147,140094,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monk's Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4409,140095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bath Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6211,140096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tebay Road Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5804,140097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quarry Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3922,140098,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sexton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4021,140099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Cliff, Burnham-On-Crouch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5351,140100,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orwell Clunch Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2814,140101,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lodge Wood & Sandford Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4310,140102,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braken Hurst","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4495,140103,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brooks Head Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2638,140105,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Thames Estuary and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4413,140107,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Butterburn Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4418,140108,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caldon Dales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2960,140109,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dinton Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2639,140110,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hoad's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2361,140111,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Watersmeet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2628,140112,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northward Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3574,140113,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Catcott Edington and Chilton Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4781,140114,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duchy Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6127,140115,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilson Place Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2818,140116,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chawridge Bourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6099,140117,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bramcrag Quarry & Wanthwaite Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5352,140118,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southorpe Paddock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4500,140119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dirtlow Rake and Pindale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6213,140120,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langcliff Cross Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2964,140121,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Distillery Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5799,140122,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ridley Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5477,140123,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Ure Bank, Ripon Parks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4504,140124,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moss Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3924,140125,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheringham and Beeston Regis Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2362,140126,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wembury Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5127,140127,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jenkins Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4414,140128,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buttermere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2819,140129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Copse, Beenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3576,140130,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cloford Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4022,140131,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clacton Cliffs & Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2640,140132,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holborough To Burham Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5809,140133,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hetton Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3175,140134,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yarnbury Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5355,140135,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swithland Wood and The Brand","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2965,140136,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5478,140137,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muker Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5358,140138,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kendall's Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6100,140139,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rosthwaite Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3925,140140,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sidestrand and Trimingham Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2820,140141,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langley Wood and Homan's Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5811,140142,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyne Watersmeet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4473,140143,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buttermere Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4782,140144,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colehill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2363,140145,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westward Ho! Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4013,140146,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Goldsands Road Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2961,140147,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sutton Lane Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3826,140148,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hatfield Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5938,140149,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairnbridge Sand Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5128,140150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keal Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2821,140151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sulham and Tidmarsh Woods and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3806,140152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hall's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4424,140153,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pasturefields Salt Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3577,140154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Cheddar Complex","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4501,140155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jumble Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6216,140156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ash Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2962,140157,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bramshill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5479,140158,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barrow Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3579,140159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cheddar Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4014,140160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harwich Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5360,140161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creswell Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5962,140162,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castlehead Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4502,140163,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yarncliff Wood, Padley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2804,140164,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parkfarm Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5729,140165,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bastow Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5812,140166,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heatheryburn Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5480,140167,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cliff Ridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5069,140168,"GBR","Common Standards Monitoring",2013,"For storage only",18,"King Lud's Entrenchments and The Drift","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5963,140169,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caudbeck Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4496,140170,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parwich Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3833,140171,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Wood, Dunmow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2519,140173,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Amberley Mount To Sullington Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3580,140174,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cheddar Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3739,140175,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilmington Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5361,140176,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dovedale Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4920,140177,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alder Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5730,140178,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grass Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4016,140179,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newney Green Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6102,140180,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mere Sands Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5481,140181,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castlethorpe Tufas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6217,140182,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middlesceugh Woods and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6103,140183,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3834,140184,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hockley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2520,140185,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Amberley Wild Brooks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4755,140187,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Enderby Warren Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5482,140188,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colour Heugh and Bowden Doors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3742,140189,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sutton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2521,140190,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ambersham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3177,140191,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berins Hill Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6095,140192,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ash Fell Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4785,140193,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4708,140194,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wren's Nest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3310,140195,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lynher Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3837,140196,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Syderstone Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3743,140197,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ladram Bay To Sidmouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5132,140198,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langtoft Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3578,140200,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doulting Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2822,140201,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandhurst To Owlsmoor Bogs and Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4017,140202,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Purfleet Chalk Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5485,140203,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradford Kames","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5717,140204,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spell Howe Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3838,140205,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lion Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5362,140207,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Godmanchester Eastside Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2522,140208,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arun Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2823,140209,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Snelsmore Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5276,140210,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cam Washes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5966,140211,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cumwhitton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5731,140212,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birks Fell Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3840,140213,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marks Tey Brickpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3311,140214,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Malpas Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4025,140215,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gawdyhall Big Wood, Harleston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3247,140216,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whiteleigh Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5732,140217,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birkwith Caves and Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3314,140218,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marazion Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5967,140219,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumburgh Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4519,140220,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hemingford Grey Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2523,140221,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arundel Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2824,140222,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swinley Park and Brick Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6104,140223,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eycott Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4026,140224,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hainault Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5885,140225,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breary Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5968,140226,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Finglandrigg Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5134,140227,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linwood Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2524,140228,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duncton To Bignor Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4027,140229,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horse Wood, Mileham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2629,140230,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Church Woods, Blean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6105,140231,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Janny Wood Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5733,140232,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boreham Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3154,140233,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wytham Ditches and Flushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4498,140234,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stoney Middleton Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2826,140235,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wasing Wood Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5135,140236,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Metheringham Heath Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3315,140237,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Merthen Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4581,140238,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Histon Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5886,140239,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Irthing Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2525,140240,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bognor Reef","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3155,140241,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lamb and Flag Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2963,140243,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Titchfield Haven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6106,140244,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mousegill Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2526,140246,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bracklesham Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4425,140247,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Mynd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2813,140248,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Woodhay Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3520,140250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mulberry Downs Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5887,140252,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broadhead Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6097,140253,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Melmerby Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5133,140254,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moor Closes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4599,140255,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hulme Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3634,140256,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Court Farm, Sydling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5525,140257,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4181,140258,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jackdaw Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3249,140259,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bovey Heathfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5277,140260,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ryhall Pasture and Little Warren Verges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3841,140261,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitsea Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2356,140262,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mullion Cliff To Predannack Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2966,140263,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waltham Chase Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2598,140264,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buchan Hill Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4583,140265,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Metallic Tileries, Parkhouse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2815,140266,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winterbourne Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3997,140267,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thetford Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3158,140268,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Iffley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5723,140270,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dow Cave System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5279,140271,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sudborough Green Lodge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4426,140272,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spy Wood & Aldress Dingle (England)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3161,140273,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bentley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2816,140274,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Windsor Forest and Great Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5136,140275,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moor Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5888,140276,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairburn and Newton Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5486,140277,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wrawby Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5734,140278,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stump Cross Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3843,140279,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quendon Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4182,140280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oak Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4586,140281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Campden Tunnel Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3251,140282,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plaster's Green Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6254,140283,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wealden Edge Hangers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2528,140284,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burton Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3521,140285,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nance Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5889,140286,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hetchell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5138,140287,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nettleton Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4157,140288,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kemble Railway Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5735,140289,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Farnham Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4183,140290,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broom Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6268,140291,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Luscombe Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5280,140292,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whittlewood Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4407,140293,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fenemere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4029,140295,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Buckenham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3322,140296,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penhale Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2529,140297,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chanctonbury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3968,140298,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foxhole Heath, Eriswell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5890,140299,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leeds - Liverpool Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4589,140302,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stony Furlong Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3252,140303,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Exmoor Coastal Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6098,140304,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Don Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3846,140305,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stour and Copperas Woods, Ramsey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5284,140306,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southfield Farm Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3969,140307,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Freston and Cutler's Woods With Holbrook Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5139,140308,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New England Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5305,140309,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tring Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3323,140310,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pentire Peninsula","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2530,140311,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cissbury Ring","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3442,140312,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Knowle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4429,140313,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marton Pool, Chirbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5736,140314,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cayton, Cornelian and South Bays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5891,140315,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2817,140316,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wraysbury & Hythe End Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5487,140317,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horse Field, Gilling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2344,140318,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wick Wood and Worldham Hangers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3324,140319,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwithian To Mexico Towans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3847,140320,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stour Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2825,140321,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wykery Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2531,140322,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Climping Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2443,140324,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gedgrave Hall Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5285,140325,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yardley Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4430,140326,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meadowtown Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4590,140327,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trench Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5738,140328,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eller's Wood and Sand Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3134,140329,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parsonage Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3970,140330,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gipping Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3446,140331,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banwell Ochre Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2568,140332,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woolmer Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2830,140333,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashdown Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5865,140334,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Madbanks and Ledsham Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3848,140336,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weeleyhall Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4431,140337,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Onny River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5739,140339,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenhow Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4442,140340,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wyre Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5740,140341,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Nidderdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3971,140342,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gosbeck Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5881,140343,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Micklefield Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6107,140344,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ladcastle and Den Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3447,140345,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Compton Martin Ochre Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5286,140346,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dungee Corner Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3635,140347,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dawlish Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3135,140348,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pewsey Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4134,140349,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shotesham-Woodton Hornbeam Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3325,140350,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porthgwarra To Pordenack Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3163,140351,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashford Hill Woods and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4417,140352,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oss Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4315,140353,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aston Ingham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5892,140354,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mickletown Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2600,140355,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cow Wood and Harry's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3849,140356,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Naze","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3957,140357,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Blakenham Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3773,140358,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meddon Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2831,140359,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broadmoor To Bagshot Woods and Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3448,140360,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Exmoor Coast and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5725,140361,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hallow Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3326,140362,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porthleven Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5288,140363,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Syresham Marshy Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5894,140364,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roach Lime Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4316,140365,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birch Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2575,140366,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newtown Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3973,140367,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gromford Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6069,140368,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roudsea Wood & Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3647,140369,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dean Steep","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2601,140370,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Treyford To Bepton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3449,140371,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Purewell Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4420,140372,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Earl's Hill & Habberley Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5741,140373,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Derwent Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3178,140374,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lye Heath Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4318,140375,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broadway Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2602,140376,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ebernoe Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4433,140377,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prees Branch Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3850,140378,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorndon Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3974,140379,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Groton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2345,140380,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alverstone Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3648,140381,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devon Great Consols","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5895,140382,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seckar Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6108,140383,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cock Wood Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3180,140384,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ron Ward's Meadow With Tadley Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3451,140385,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whetley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3142,140386,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prescombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5311,140387,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Farm Meadow, Boldon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5289,140388,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Ise and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3181,140389,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Minley Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3851,140391,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tiptree Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9345,140392,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3119,140393,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gutch Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5742,140394,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brants Gill Catchment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3649,140395,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devon United Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5292,140397,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bulwick Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2605,140398,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forest Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6031,140399,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wan Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2417,140400,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ham Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4322,140401,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burrington Sections","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2543,140402,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Syon Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9346,140403,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Retire Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3606,140404,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Webberton Cross Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2346,140405,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arreton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3775,140406,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cabilla Manor Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5323,140407,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Catton Lea Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3852,140408,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waltham Abbey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3653,140409,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunnabridge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4786,140410,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meezy Hurst","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5331,140411,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Knock Shield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4591,140412,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dinmore Hill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2347,140413,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bembridge Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5937,140414,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ribble Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5896,140415,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Elmsall Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5743,140416,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sleightholme Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2544,140417,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walthamstow Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5476,140418,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barelees Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3975,140419,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hascot Hill Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4436,140420,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheinton Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5893,140421,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Townclose Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2348,140422,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bonchurch Landslips","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5377,140423,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peckriding Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4323,140424,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coughton Wood and Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6032,140425,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arnside Knott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3328,140426,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rock Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2545,140427,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wimbledon Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3654,140428,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Dunscombe Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2418,140429,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Homington and Coombe Bissett Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4921,140430,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Misterton Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5483,140432,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bavington Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5745,140433,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tranmire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5281,140435,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spalford Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4324,140436,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Doward","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3329,140437,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rosenannon Bog and Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4592,140438,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Downton Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4788,140439,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Daw End Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2484,140440,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chobham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4904,140441,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Withens Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4437,140443,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shelve Church Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4924,140444,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bardon Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2349,140445,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bouldnor and Hamstead Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5641,140446,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shaw's Gate Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5381,140447,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Humbleton Hill and The Trows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5382,140448,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Ridge Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3976,140449,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horringer Court Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3496,140450,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ebbor Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4907,140451,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Anston Stones Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6262,140452,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brading Marshes To St, Helen's Ledges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4444,140453,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shelve Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6033,140454,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baysbrown Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4789,140456,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hay Head Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2485,140457,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hackhurst and White Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4596,140458,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duke Of York Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4301,140459,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haugh Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5655,140460,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seive Dale Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6034,140461,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beech Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4446,140463,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shrawardine Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2420,140464,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inwood, Warleigh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4927,140465,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benniworth Haven Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3655,140466,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Devon Pebblebed Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4597,140467,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dumbleton Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5659,140468,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sked Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5488,140469,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Billsmoor Park and Grasslees Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4602,140470,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Earl's Croome Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2677,140471,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thursley, Hankley & Frensham Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5840,140472,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashfield Brick Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3330,140473,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caerthillian To Kennack","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3452,140474,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lodmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3656,140475,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Ogwell Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4447,140476,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Soudley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4928,140477,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tickencote Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2773,140478,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colwell Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4791,140479,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burcot Lane Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5660,140480,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Snape Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5212,140481,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Wood, Great Casterton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3657,140482,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Erme Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3977,140483,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hintlesham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3453,140484,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2350,140485,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Compton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4929,140486,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maulden Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5897,140487,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cadeby Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5661,140488,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Bay To South Toll House Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3981,140489,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hopton Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6037,140490,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3658,140491,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fremington Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5074,140492,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gibraltar Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5899,140493,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Denaby Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2421,140494,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jones's Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4603,140496,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elton Lane Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2351,140497,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Freshwater Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4930,140498,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maulden Church Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5489,140499,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brunton Bank Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2967,140500,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garston's Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3982,140501,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hoxne Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3454,140502,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lulworth Park & Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5900,140503,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edlington Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3120,140504,"GBR","Common Standards Monitoring",2013,"For storage only",18,"King's Play Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3602,140505,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benfleet and Southend Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5222,140506,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Empingham Marshy Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2547,140507,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banstead Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5663,140508,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spring Wood,Hawnby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3983,140510,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kentwell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3659,140511,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Furley Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4608,140512,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fishpool Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3623,140513,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackwater Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4932,140514,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunstable and Whipsnade Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5223,140515,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eye Brook Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5664,140516,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Staithes - Port Mulgrave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2908,140517,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Browndown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3121,140518,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knapp and Barnett's Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5490,140519,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Campfield Kettle Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3581,140520,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hense Moor Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2909,140521,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burghclere Beacon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2548,140522,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blindley Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3243,140523,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grenofen Wood and West Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5216,140524,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eye Brook Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3455,140525,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Melbury Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6038,140526,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brathay Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2424,140527,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lady Down Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4507,140528,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hatherton Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4609,140529,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flintsham & Titley Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5491,140530,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Point To Cullernose Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4427,140531,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teme Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3978,140532,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lakenheath Poors Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3907,140533,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winterton - Horsey Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4302,140534,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burnt Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4611,140535,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foster's Green Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2549,140536,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bookham Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4621,140537,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradwell Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3777,140538,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holme Moor & Clean Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6505,140539,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moors River System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5665,140540,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strensall Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3661,140541,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Halstock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2487,140542,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Charterhouse To Eashing","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3979,140543,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lakenheath Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2560,140544,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4303,140545,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rue Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3778,140546,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Postlebury Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5666,140548,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thixen Dale and Longdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5219,140550,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Catworth Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4311,140551,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caldon Low","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4612,140552,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grafton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2910,140553,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3780,140554,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stowell Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4510,140555,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunsdale Hollow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3980,140556,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Landguard Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5629,140557,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marsett Rigg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3662,140558,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hannaborough Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3122,140559,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Grubbins Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5224,140560,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alder Wood and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2641,140561,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollingbourne Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6040,140562,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Browgill & Stockdale Becks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5494,140563,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coquet Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5647,140564,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Three Dykes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3984,140565,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lineage Wood & Railway Track, Long Melford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6012,140566,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burns Beck Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4312,140567,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cannock Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2911,140568,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Butser Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2650,140569,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westerham Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3781,140570,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wet Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2488,140572,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woldingham & Oxted Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3125,140573,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Knoll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4513,140574,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bee's Nest and Green Clay Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2651,140575,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ileden and Oxenden Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4613,140576,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grimley Brick Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3920,140577,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Smallburgh Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3782,140578,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Sedgemoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5225,140579,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frisby Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6022,140580,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Claife Tarns and Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4319,140581,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cauldon Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6128,140582,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wentbridge Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3457,140583,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oakers Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5667,140584,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Troutsdale and Rosekirk Dale Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3610,140585,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bovey Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4514,140586,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moss Valley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3853,140587,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Blakenham Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5385,140588,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mallerstang-Swaledale Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2912,140589,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Hamble Estuary and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5562,140590,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Acaster South Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3880,140591,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Snettisham Carstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2913,140592,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cheesefoot Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4515,140593,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lee Farm Meadow, Tideswell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2652,140594,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knole Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6035,140595,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clints Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4794,140596,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brownheath Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5386,140597,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whernside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2489,140598,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chipstead Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3663,140599,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hare's Down, Knowstone & Rackenford Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3126,140600,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanton St, Quintin Quarry & Motorway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4561,140601,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gipsy Lane Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6019,140602,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Asby Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6144,140603,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clear Beck Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4617,140604,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Hall Farm Quarry and Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5563,140605,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brenkley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5805,140606,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Willow Burn Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4192,140608,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Herald Way Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2983,140609,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Streatley Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5039,140610,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yelden Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5646,140611,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newton Ketton Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5651,140612,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hannah's Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4222,140613,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quebb Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4220,140614,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oxlow Rake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4112,140615,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bawsey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4113,140616,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bilsey Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4107,140617,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glandford (Letheringsett Road)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3363,140618,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monkswood Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2423,140619,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Houghton Green Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3069,140620,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dank's Down and Truckle Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4193,140621,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gang Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2465,140622,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waldron Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2483,140623,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winchelsea Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4630,140624,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Windmill Tump","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2764,140625,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southborough Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3345,140626,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ellenborough Park West","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4449,140627,"GBR","Common Standards Monitoring",2013,"For storage only",18,"View Edge Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3423,140629,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aller Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5035,140630,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blow's Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3263,140631,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leusdon Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5040,140632,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rye Meads","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5046,140633,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Crook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5047,140634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Delph Bridge Drain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2976,140635,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hog's Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2980,140636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trodds Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5048,140637,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Adventurers' Land","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5675,140638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Park Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5050,140639,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shippea Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5678,140640,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rigg Farm and Stake Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5056,140641,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strawberry Hill Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2974,140642,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heath Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5679,140643,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mere Beck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2977,140644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poors Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5681,140645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cornriggs Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6202,140646,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birky Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5682,140647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Newlandside Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4232,140648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Millichope Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5656,140649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Far High House Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4233,140650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bonsall Leys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3254,140651,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Billacombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3210,140652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"King's Wood and Urchin Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6204,140653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pinskey Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3255,140654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brampford Speke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6270,140655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Lyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4922,140656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Silverines Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4544,140657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aileshurst Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2907,140658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Highclere Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2432,140659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fivehead Woods and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6198,140660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowland Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4230,140661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elmlea Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6413,140662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Camel Valley and Tributaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4229,140663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Itchen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4482,140664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Keswick Fitts","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5992,140665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seatoller Wood, Sourmilk Gill & Seathwaite Graphite Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6118,140666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moorhouse and Cross Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5497,140667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hambleton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5499,140668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frog Wood Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6209,140669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hook Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6210,140670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chapel Bridge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2765,140671,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chiddingfold Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4202,140673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mercaston Marsh and Muggington Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2766,140674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coppedhall Hanger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2486,140675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stone Hill Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5873,140676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jumb Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2518,140677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Perry Copse Outcrops","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2527,140678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slinfold Stream and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3371,140679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Friar's Oven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3208,140680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oakhills Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5076,140681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Totternhoe Chalk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2992,140682,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holies Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5079,140683,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sundon Chalk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5080,140684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dimminsdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2993,140685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duncroft Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5081,140686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chesterfield Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2994,140687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckland Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2995,140689,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Finemere Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2996,140690,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fayland Chalk Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2997,140691,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Temple Island Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2968,140692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Acres Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3085,140693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bratton Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2972,140694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Box Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3280,140695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combe Down and Bathampton Down Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2998,140696,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Coombs, Hinton Parva","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3151,140697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clevedon Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6214,140698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tarnbrook Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6215,140699,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Charnock Richard Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2931,140701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bentley Station Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4963,140702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bugbrooke Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5599,140703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allen Confluence Gravels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5238,140704,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blagill Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6190,140705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shap Fell Road Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6218,140706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River South Tyne and Tynebottom Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6219,140707,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Smallcleugh Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5866,140708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lytham St, Anne's Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6155,140710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn Marsh & Ince Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5516,140711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hotham Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3383,140712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barricane Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4208,140713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lydney Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5520,140714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newbald Becksies","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4209,140715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roe Park Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5868,140716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Mell Fell Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3390,140717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brendon and Vealand Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3660,140718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nettlecombe Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3285,140719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poole Bay Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3288,140720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitt's Cleave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3162,140721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crab Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3016,140722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winsley Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3277,140723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6222,140724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Downholland Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6126,140725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deepdale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3018,140726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westfield Farm Chalk Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4555,140727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Doulton's Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3017,140728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3019,140729,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hodgemoor Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3020,140730,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middle Barton Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3300,140731,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wolborough Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3116,140732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Quarry, Swindon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5626,140733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Settlingstones Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6221,140734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abram Flashes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5625,140735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stonecroft Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5524,140736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harthope Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5536,140737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wath Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5541,140738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kildale Hall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4671,140739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prees Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4860,140740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oddy Hill and Tring Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4168,140741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Windmill Naps Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3317,140742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ryecroft Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2763,140743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brede Pit and Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3332,140744,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Popehouse Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3333,140745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ruttersleigh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2923,140746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hook Common and Bartley Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5649,140747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lambwath Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5637,140748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cawthorn Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5652,140749,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roman Wall Loughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3504,140750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meldon Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5653,140751,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Tyne At Ovingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5373,140753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Snaper Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2469,140754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hankley Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2755,140755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Offham Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5654,140756,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaiskey Bank Springs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5640,140757,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grains O'Th' Beck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2761,140758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackhorse Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2762,140759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Down Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3563,140760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleeve Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4218,140761,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeiron Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4225,140762,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tideslow Rake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4698,140763,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Big Hyde Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4177,140764,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ford Green Reedbed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4688,140765,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gentleshaw Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4180,140766,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eckington Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4030,140767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moat Farm Meadows, Otley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4031,140768,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Gardens, Great Ashfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4032,140769,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westhall Wood and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4184,140770,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Micklefield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3221,140771,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crockham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4185,140772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ailstone Old Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4102,140773,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Thurne Broads and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3039,140774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upton Cow Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3040,140775,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rotherley Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3041,140776,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Restrop Farm and Brockhurst Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3047,140777,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stert Brook Exposure","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4614,140778,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Madams Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4616,140779,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Brow Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4313,140780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calke Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3351,140781,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Perch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3352,140782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maiden Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6030,140783,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Appleby Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3246,140784,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombe Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3248,140785,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haytor Rocks and Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3253,140786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wareham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4090,140787,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holland-On-Sea Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4091,140788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wivenhoe Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4104,140789,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Setchey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3257,140790,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tidcombe Lane Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3802,140791,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wiggenhall St, German'S","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3259,140792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nymet Barton Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3260,140793,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Axbridge Hill and Fry's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3223,140794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grove Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3062,140795,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Landford Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3064,140796,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loosehanger Copse and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3264,140797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stepper Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3785,140798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rosemullion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4235,140799,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ledbury Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4143,140800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Lugg Meanders","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5699,140801,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New House Meadows, Malham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5700,140802,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thowker Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5696,140803,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low Gill Moor Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5697,140804,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foredale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5698,140805,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aysgarth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3065,140806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lee-On-The Solent To Itchen Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4106,140807,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pakenham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3803,140808,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Ter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4108,140809,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Hallingbury Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5701,140810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lambley River Shingles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6223,140811,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maryport Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6258,140812,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linmer Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5726,140813,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Len Pastures, Crackpot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5727,140814,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Neasham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5372,140815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill and Whiskershiel Burns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5813,140816,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairy Call Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5793,140817,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lord's Wood and Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5756,140818,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Swaledale Woods and Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3070,140819,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stone","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2352,140820,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fernham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5508,140821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low Redford Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4790,140822,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peckriding Top Lot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5513,140823,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fallowlees Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5728,140824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trimdon Limestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5094,140825,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Cherwell At Trafford House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5096,140826,"GBR","Common Standards Monitoring",2013,"For storage only",18,"King's Cliffe Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2767,140827,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southerham Grey Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2768,140828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Netherside Stream Outcrops","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6228,140829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coldwell Farm Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6212,140830,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pye Flatts Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6224,140831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wadsley Fossil Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6230,140832,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bingley South Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6234,140833,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Blencow Meadows and Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6235,140834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skelton Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6229,140835,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crosby Ravensworth Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6220,140836,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jenny Dam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6227,140837,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jack Scout","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3284,140838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Wheal Fortune","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3350,140839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trevaunance Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3282,140840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mambury and Stowford Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2355,140841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tamar - Tavy Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3283,140842,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langmead and Weston Level","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3258,140843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Writhlington","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3320,140844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3211,140845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porthleven Cliffs East","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3265,140846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brendonmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3274,140847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3281,140848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Okehampton Park Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5095,140849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aldbury Nowers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3301,140850,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haldon Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3622,140851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hinton Charterhouse Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6236,140852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Snib","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6233,140853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spadeadam Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4238,140854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cooksholme Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3286,140855,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hartcliff Rocks Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3290,140856,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penlee Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3231,140857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pentridge Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5746,140858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Scar Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3074,140859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Magdalen Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3763,140860,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maesbury Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4122,140862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Acre Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5374,140863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newby Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2597,140864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bentley Priory","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5196,140865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hale Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5209,140866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loughrigg Fell Flushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6239,140867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Outley Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6240,140868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ludderburn and Candlestick Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6241,140869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Subberthwaite, Blawith and Torver Low Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6243,140870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winster Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2769,140871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hastingford Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5100,140872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Robbinetts","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4123,140873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wortham Ling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4236,140874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fall Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4484,140875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upham Meadow and Summer Leasow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4481,140876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cropthorne New Inn Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4419,140877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Stour Flood Plain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4325,140878,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clee Hill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4152,140879,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Severn At Montford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4331,140880,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buildwas Sand Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2470,140881,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Beult","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5340,140882,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Helmdon Disused Railway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5750,140883,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hackness Rock Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4699,140884,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hope Valley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4423,140885,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill Houses & Crumpsbrook Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4615,140886,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Dane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4131,140887,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cotswold Water Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4537,140888,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turvey's Piece","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3079,140889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croker's Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3080,140890,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bray Pennyroyal Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3081,140891,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingcup Meadows and Oldhouse Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3082,140892,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poker's Pond Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3256,140893,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whiddon Deer Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3269,140894,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunsland Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3287,140895,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quarry Fields Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3291,140896,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingweston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3327,140897,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bugden's Copse and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3334,140898,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Staddon Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3335,140899,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Small Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3337,140900,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bulkamore Iron Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3340,140901,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whiddon Moor, Luckcoft and Odham Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3341,140902,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chapel Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3342,140903,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lang's Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3220,140904,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingdown and Middledown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5869,140905,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Augill Valley Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5737,140906,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bolton Percy Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5751,140907,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Church Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4126,140908,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hunstanton Park Esker","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2770,140909,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Willingford Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5102,140910,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seaton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4199,140911,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berkswell Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4117,140912,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranwich Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5622,140913,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seato Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5848,140914,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River West Allen At Blackett Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3118,140915,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Howe Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3346,140916,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Briggins Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5749,140917,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heslington Tillmire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5816,140918,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ladyhills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5839,140919,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forlorn Hope Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5858,140920,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chris's Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4124,140921,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bixley Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5925,140922,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wrightington Bar Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6101,140923,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkby Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3232,140924,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plymbridge Lane & Estover Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5540,140926,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middle Side & Stonygill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5819,140927,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowlees and Friar House Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5770,140928,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middle Crossthwaite","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2736,140929,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Milton Gate Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4125,140930,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mucking Flats and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3811,140931,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Thurrock Lagoon & Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2381,140933,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coneyhurst Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4127,140934,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deben Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5810,140935,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gingerfields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4009,140936,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nacton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5420,140937,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fulford Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3381,140938,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradworthy Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3348,140939,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deptford Farm Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3353,140940,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coverack Cove and Dolor Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2844,140941,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muswell Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3382,140942,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Congrove Field and The Tumps","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5321,140943,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moor Mill Quarry, West","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6225,140944,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heysham Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6226,140945,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Ing Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5838,140946,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hewson's Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6171,140947,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stagmire Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5870,140948,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Combe Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5923,140949,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Red Lees Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3804,140950,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Nar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6286,140951,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Wye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4073,140952,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Wensum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4198,140953,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Temeside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4212,140954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishon Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4213,140955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Queestmoor Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3812,140956,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Yarmouth North Denes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3813,140957,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Damgate Marshes, Acle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4075,140958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holland Haven Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2546,140959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stockland Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5496,140960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Naburn Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5500,140961,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenhow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4228,140962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cockleford Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3308,140964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bulmoor Pastures & Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3312,140965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brendon Farm (North)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3339,140966,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Occombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3343,140967,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bolshayne Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3355,140968,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woolhayes Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3814,140969,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Colne Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3090,140970,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Goldborough Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2419,140971,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Honeybrook Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2797,140972,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Decoy Pit , Pools & Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4822,140973,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burley and Rushpit Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4839,140974,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mother Drain, Misterton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3815,140975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raf Lakenheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4129,140976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Potton Hall Fields, Westleton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5515,140977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pilmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3349,140978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Borlasevath and Retallack Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3359,140979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sylvia's Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3222,140980,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swanpool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4132,140981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hangman's Wood & Deneholes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5379,140982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fishburn Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4416,140983,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sherbourne Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4434,140984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holcroft Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5278,140985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knarsdale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5492,140986,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aules Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4485,140987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Huglith Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4494,140988,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Milford Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3354,140989,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lymsworthy Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4133,140990,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coston Fen, Runhall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4931,140991,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scrooby Top Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3356,140992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grimscott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2712,140993,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Halnaker Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2599,140995,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coates Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3309,140996,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenamoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4737,140997,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scully Grove Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3373,140998,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corfe Mullen Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3166,140999,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salisbury Plain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3766,141000,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kernick and Ottery Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5875,141001,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3213,141002,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Exmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3372,141003,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marsland To Clovelly Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3293,141004,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Longleat Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4187,141005,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cannock Extension Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3388,141006,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coverack To Porthoustock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5117,141007,"GBR","Common Standards Monitoring",2013,"For storage only",18,"One Barrow Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3601,141008,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lingwood Meadows, Earl Stonham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5384,141009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hesley Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5387,141010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bellerby Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5495,141011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newton-Le-Willows Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2893,141012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Basingstoke Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5455,141013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lampert Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2617,141014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Warnham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2516,141015,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St. Dunstan's Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6039,141016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Far Holme Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3026,141017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Marston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2884,141018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avon Valley ( Bickton To Christchurch )","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4194,141019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Romsley Manor Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4195,141020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portway Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4170,141021,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yellow House Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4190,141022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baynhall Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3057,141024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westwell Gorse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4196,141025,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oakhanger Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4148,141026,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brook Meadow, Darley Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4204,141027,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ensor's Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5283,141028,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dogsthorpe Star Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4846,141029,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newmarket Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6275,141030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballidon Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3034,141031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cassington Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5313,141032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hunder Beck Juniper","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5378,141033,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tuthill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4130,141034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rosie Curston's Meadow, Mattishall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3058,141035,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cothill Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2511,141036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Asham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2586,141037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Paines Cross Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2603,141038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fonthill Grottoes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2886,141039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bourley and Long Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2667,141040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alex Farm Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6260,141041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oxley Mead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3439,141042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Puxton Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3226,141043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Biddle Street, Yatton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6287,141044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Ings, Amotherby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2554,141045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Smart's and Prey Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5883,141046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Butterwick Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5861,141047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low Beckside Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5859,141048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duddon Valley Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2873,141049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Bottom To Yateley Common and Hawley Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4136,141050,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Riverside House Meadow, Hasketon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5685,141051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Wharfedale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3086,141052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stoke Common Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5687,141053,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teesdale Allotments","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4178,141054,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moss Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3598,141055,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croft Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3307,141057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingsand To Sandway Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2643,141058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cowden Pound Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4155,141059,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sound Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4137,141061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Churnet Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4326,141062,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dimmings Dale & The Ranger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4203,141063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gospel End Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4149,141064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jockey Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3215,141065,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tregonning Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4140,141066,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Saltersford Lane Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4156,141067,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barton Bushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2396,141068,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baulk Head To Mullion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3238,141069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Lizard Heathlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4160,141070,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaisdon Hall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4161,141071,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sylvan House Barn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5864,141072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Iron Pit Spring Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5535,141073,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northumberland Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6007,141074,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sunbiggin Tarn & Moors and Little Asby Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6375,141075,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Pennine Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2534,141076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dumsey Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2778,141077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heath Brow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4593,141078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kielder Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3810,141079,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laurel Farm Meadow, St, Cross South Elmham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6408,141080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teddon Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6407,141082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ranters Bank Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6409,141083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckeridge Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6406,141084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Showground Meadow, Callow Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6432,141085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bliss Gate Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6405,141086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brown's Close Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6282,141088,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lord's Wood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6436,141089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hillend Meadow & Orchard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6437,141090,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quarry Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6438,141091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Starling Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5049,141092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tudor Cottage Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6439,141093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Merries Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6440,141095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avenue Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6441,141096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Napleton Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6449,141097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Blaythorn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6443,141098,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rectory Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6446,141099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dean Brook Valley Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6448,141100,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Naunton Court Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6447,141101,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dormston Church Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5055,141102,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rookery Cottage Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5130,141103,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stock Wood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6444,141104,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trickses Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6442,141105,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Highclere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6410,141106,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nine Holes Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6414,141107,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurst Farm Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6423,141108,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Royal Farm Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6430,141109,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oakland Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4139,141110,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penorchard & Spring Farm Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6434,141111,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Romsley Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6435,141112,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berry Mound Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6259,141113,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bardney Limewoods, Lincolnshire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3509,141115,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aire Point To Carrick Du","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4153,141117,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birches Barn Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6342,141118,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bollihope, Pikestone, Eggleston and Woodland Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6279,141119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colshaw Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6373,141120,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Conesby (Yorkshire East) Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6284,141122,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dawson's Plantation Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6401,141124,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drybank Meadow, Cherington","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6273,141125,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Nidderdale Moors (Flamstone Pin - High Ruckles)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6271,141126,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elm Road Field, Thetford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6372,141129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hay-A-Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6349,141130,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurcott Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6207,141131,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jockie's Syke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6133,141132,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kennet and Lambourn Floodplain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4154,141133,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingsbury Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2772,141134,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Tew Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6394,141136,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lofts Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6398,141138,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Melverley Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6269,141139,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mermaid's Pool To Rowden Gut","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3456,141140,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morden Bog and Hyde Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3141,141141,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Cut, Torquay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6374,141142,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Killingholme Haven Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6357,141144,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rame Head & Whitsand Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3225,141146,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Redlake Meadows & Hoggs Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6302,141147,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Coquet and Coquet Valley Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6344,141150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sinks Valley, Kesgrave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6397,141151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southerham Works Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3224,141152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Michael's Mount","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3099,141153,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stokeford Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5041,141154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stony Cut, Cold Hesledon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6309,141155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorness Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3104,141156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tickenham, Nailsea and Kenn Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4817,141158,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turnford & Cheshunt Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3241,141159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Fal Estuary and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4700,141160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Wye Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6250,141161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waverley Wood Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9000,142750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Altmover Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9076,142752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Annacramph Meadow","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9030,142753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballymacormick Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9015,142754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballynahone Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9079,142755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballyquintin Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9114,142757,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Straghans Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9044,142758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bardahessiagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9104,142765,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bellanaleck","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9073,142767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benburb","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8881,142770,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bovevagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9051,142772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braade","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9123,142774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burdautien Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8978,142778,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corraslough Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9022,142780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crockaghole Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9126,142782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cuilcagh Mountain","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9012,142784,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Culnafay","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9130,142786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dernish Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9046,142788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deroran Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9134,142792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Derryleckagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9027,142794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumlea and Mullan Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8847,142795,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunloy Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9137,142797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eastern Mournes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8998,142798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ervey Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9037,142800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairy Water Bogs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9141,142806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Finn Floods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8885,142810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garron Plateau","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8994,142812,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Burn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9058,142815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenmore Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9068,142821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horse Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9111,142824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inishroosk","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8969,142828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rathlin Island - Ballycarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9038,142829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Belfast Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9095,142830,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Killard","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9140,142831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Killymackan Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8971,142832,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rathlin Island - Ballygill North","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8972,142834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rathlin Island Coast","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9103,142835,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kiltubbrid Loughs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9128,142836,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockballymore Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8970,142837,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rathlin Island - Kinramer South","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9107,142838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lackan Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9001,142839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scawt Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9019,142840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Larne Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9045,142841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scrabo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8902,142843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheep Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9099,142844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slieve Beagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9017,142845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9047,142846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slievenacloy","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9013,142847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strabane Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9050,142848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strangford Lough Part 1","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9057,142849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Neagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9082,142850,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strangford Lough Part 2","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9087,142851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loughkeelan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9072,142852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strangford Lough Part 3","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8975,142853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Magilligan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9124,142854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Summerhill Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9023,142857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teal Lough Part II","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8984,142858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tievebulliagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9106,142859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9055,142860,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tullanaguiggy","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9112,142861,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Lough Erne - Belleisle","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9136,142862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Lough Erne - Crom","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9142,142863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Lough Erne - Galloon","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9131,142864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Lough Erne - Trannish","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9006,142865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waterloo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9088,142866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodgrange","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9139,142867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moninea Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9115,142868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Murlough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8995,142869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ness Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9014,142870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Woodburn Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9016,142871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Owenkillew and Glenelly Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9056,142872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pettigoe Plateau","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8951,142873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portballintrae","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9048,142874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portmore Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -14596,142934,"ESP","Birdlife IBA",2008,"For storage only",28,"Corralejo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20496,142995,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Vikramshila Gangetic Dolphin","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20441,143000,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Barsey Rhododendron","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -12229,143001,"NPL","Birdlife IBA",2004,"For storage only",28,"Kanchanjunga","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12227,143001,"NPL","METT",2003,"For storage only",28,"Kanchanjunga","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12228,143001,"NPL","RAPPAM",2002,"For storage only",28,"Kanchanjunga","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12230,143001,"NPL","METT",2005,"For storage only",28,"Kanchanjunga","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12237,143002,"NPL","RAPPAM",2002,"For storage only",28,"Manaslu","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12595,143012,"PRT","Birdlife IBA",2005,"For storage only",28,"Vale do Guadiana","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21820,145120,"ZAF","METT",2013,"For storage only",28,"Umgeni Vlei","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21823,145120,"ZAF","RAPPAM",2001,"For storage only",28,"Umgeni Vlei","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21821,145120,"ZAF","Birdlife IBA",2013,"For storage only",28,"Umgeni Vlei","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21713,145122,"ZAF","METT",2013,"For storage only",28,"S. A. Lombard Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21712,145122,"ZAF","METT",2012,"For storage only",28,"S. A. Lombard Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13177,145132,"SRB","METT",2012,"For storage only",28,"Sargan - Mokra Gora","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13179,145136,"SRB","RAPPAM",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13185,145145,"SRB","RAPPAM",2009,"For storage only",28,"Veliki Sturac","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13181,145248,"SRB","METT",2009,"For storage only",28,"Danilova kosa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13166,145248,"SRB","RAPPAM",2009,"For storage only",28,"Danilova kosa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13174,145250,"SRB","RAPPAM",2009,"For storage only",28,"Feljesana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13162,145272,"SRB","RAPPAM",2009,"For storage only",28,"Bukovo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10668,145392,"ARM","METT",2009,"For storage only",28,"Boghaqar","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10669,145392,"ARM","METT",2012,"For storage only",28,"Boghaqar","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10685,145394,"ARM","METT",2012,"For storage only",28,"Hanqavan Hydrological","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10684,145394,"ARM","METT",2009,"For storage only",28,"Hanqavan Hydrological","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13148,145399,"SRB","RAPPAM",2009,"For storage only",28,"Kalenic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -98,145501,"ARG","GOBI Survey",2009,"For storage only",3,"Parque Atlantico Mar Chiquito","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -11054,145503,"CHN","GOBI Survey",2006,"For storage only",28,"Tianmushan","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12133,145510,"NER","GOBI Survey",2006,"For storage only",28,"W Region","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1022,145524,"CRI","SINAD",2016,"For storage only",14,"Gandoca-Manzanillo","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1060,145527,"CRI","SINAD",2016,"For storage only",14,"Térraba-Sierpe","Humedales","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -11622,145529,"GMB","Birdlife IBA",2001,"For storage only",28,"Baobolon Wetland Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15058,145538,"MWI","Birdlife IBA",2001,"For storage only",28,"Lake Chilwa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21588,145553,"ZAF","Birdlife IBA",1998,"For storage only",28,"Ndumo Game Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21589,145553,"ZAF","RAPPAM",2001,"For storage only",28,"Ndumo Game Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21726,145554,"ZAF","METT",2010,"For storage only",28,"Seekoeivlei Nature Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12002,145566,"MNG","RAPPAM",2005,"For storage only",28,"Khan Khukhii-Khyragas Lake","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11543,145569,"DZA","GOBI Survey",2006,"For storage only",28,"Djurdjura","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17300,145576,"HMD","WHA Outlook Report",2014,"For storage only",28,"Heard and McDonald Islands","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17997,145579,"AUS","WHA Outlook Report",2014,"For storage only",28,"Macquarie Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10760,145580,"BGD","WHA Outlook Report",2014,"For storage only",28,"The Sundarbans","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12119,145581,"NER","GOBI Survey",2006,"For storage only",28,"Air and Ténéré","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11339,145583,"DMA","WHA Outlook Report",2014,"For storage only",28,"Morne Trois Pitons National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12141,145584,"NIC","PIP Site Consolidation",2005,"For storage only",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12142,145584,"NIC","METT",2005,"For storage only",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12186,145584,"NIC","METT",2010,"For storage only",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12139,145584,"NIC","PIP Site Consolidation",2003,"For storage only",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12138,145584,"NIC","PIP Site Consolidation",2002,"For storage only",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12140,145584,"NIC","PIP Site Consolidation",2004,"For storage only",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12136,145584,"NIC","GOBI Survey",2006,"For storage only",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11816,145585,"KEN","WHA Outlook Report",2014,"For storage only",28,"Mount Kenya National Park/Natural Forest","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11809,145586,"KEN","WHA Outlook Report",2014,"For storage only",28,"Lake Turkana National Parks","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12987,145588,"RUS","METT",2011,"For storage only",28,"Ubsunorskaya Kotlovina","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12791,145589,"RUS","METT",2009,"For storage only",28,"Daursky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12790,145589,"RUS","RAPPAM",2001,"For storage only",28,"Daursky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11575,145590,"FRA;ESP","WHA Outlook Report",2014,"For storage only",28,"Pyrénées - Mont Perdu","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13001,145591,"RUS","European Diploma",1994,"For storage only",28,"Teberda","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11887,145807,"KHM","GOBI Survey",2006,"For storage only",28,"Tonle Sap","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11907,145808,"LVA","METT",2009,"For storage only",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11908,145808,"LVA","Stockholm BR Survey",2008,"For storage only",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11906,145808,"LVA","METT",2008,"For storage only",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11905,145808,"LVA","METT",2005,"For storage only",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11904,145808,"LVA","GOBI Survey",2006,"For storage only",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14520,145809,"ESP","Stockholm BR Survey",2008,"For storage only",28,"Cabo de Gata-Nijar","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14944,145816,"JAM","METT",2009,"For storage only",28,"Black River Lower Morass","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14945,145816,"JAM","RAPPAM",2006,"For storage only",28,"Black River Lower Morass","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10819,145850,"BLR","METT",2009,"For storage only",28,"Zvanets","Nature Sanctuary or Partial Reserve (Local)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10818,145850,"BLR","METT",2005,"For storage only",28,"Zvanets","Nature Sanctuary or Partial Reserve (Local)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10809,145850,"BLR","METT",2012,"For storage only",28,"Zvanets","Nature Sanctuary or Partial Reserve (Local)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -6272,146244,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitfield Moor, Plenmeller and Asholme Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6362,146246,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whiston Eaves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4145,146248,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kedleston Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4138,146249,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rose End Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6308,146250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Dale, Hartington","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4345,146251,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wye Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6249,146252,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Line","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2467,146253,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eartham Pit, Boxgrove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6411,146254,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newlyn Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6129,146255,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitcliffe Section, Quarry Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6310,146256,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lackford Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3228,146261,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pentle Bay, Merrick and Round Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6332,146262,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duckpool To Furzey Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3216,146263,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Watermill Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3182,146264,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porthloo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3098,146265,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yarner Wood & Trendlebere Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6358,146267,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Martin's Sedimentary Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3217,146268,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cameron Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3218,146269,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Phoenix United Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6298,146270,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Bostraze and Leswidden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6318,146272,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Misson Training Area","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6307,146273,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wootton Bassett Mud Spring","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6338,146274,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Avon System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4151,146275,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Snailbeach Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4150,146276,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wetley Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2642,146278,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Kennet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2604,146279,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Lambourn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4144,146280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Close Farm, Snitterfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5365,146281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thrislington Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6337,146283,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muggleswick,Stanhope & Edmundbyes Commons & Blanchland Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6379,146570,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tees and Hartlepool Foreshore and Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6354,146571,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cloatley Manor Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6329,146595,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lymington River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4939,146596,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northiam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6451,146597,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Hoathly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -12866,146613,"RUS","RAPPAM",2001,"For storage only",28,"Kytalyk","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12865,146613,"RUS","METT",2009,"For storage only",28,"Kytalyk","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12864,146613,"RUS","METT",2007,"For storage only",28,"Kytalyk","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12862,146613,"RUS","METT",2005,"For storage only",28,"Kytalyk","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14055,146676,"VEN","Venezuela Vision",2001,"For storage only",28,"Mariusa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18000,146690,"AUS","NSW SOP",2010,"For storage only",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17999,146690,"AUS","NSW SOP",2007,"For storage only",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17998,146690,"AUS","NSW SOP",2005,"For storage only",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18003,146690,"AUS","NSW SOP",2004,"For storage only",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18001,146690,"AUS","NSW SOP",2013,"For storage only",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17170,146691,"AUS","NSW SOP",2004,"For storage only",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17169,146691,"AUS","NSW SOP",2013,"For storage only",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17166,146691,"AUS","NSW SOP",2005,"For storage only",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17167,146691,"AUS","NSW SOP",2007,"For storage only",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17168,146691,"AUS","NSW SOP",2010,"For storage only",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16429,146692,"AUS","NSW SOP",2007,"For storage only",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16431,146692,"AUS","NSW SOP",2013,"For storage only",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16430,146692,"AUS","NSW SOP",2010,"For storage only",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16432,146692,"AUS","NSW SOP",2004,"For storage only",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16428,146692,"AUS","NSW SOP",2005,"For storage only",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19131,146693,"AUS","NSW SOP",2013,"For storage only",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19132,146693,"AUS","NSW SOP",2004,"For storage only",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19128,146693,"AUS","NSW SOP",2005,"For storage only",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19130,146693,"AUS","NSW SOP",2010,"For storage only",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19129,146693,"AUS","NSW SOP",2007,"For storage only",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19946,146695,"AUS","NSW SOP",2013,"For storage only",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19947,146695,"AUS","NSW SOP",2004,"For storage only",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19944,146695,"AUS","NSW SOP",2007,"For storage only",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19945,146695,"AUS","NSW SOP",2010,"For storage only",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19943,146695,"AUS","NSW SOP",2005,"For storage only",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -6322,146715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plymouth Sound Shores and Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6323,146716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yealm Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6487,146718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pulborough Brooks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -11902,146748,"LVA","METT",2006,"For storage only",28,"Kemeru nacionalais parks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22248,146766,"CHE","Annual Report",2015,"For storage only",37,"Les Grangettes","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -1076,147534,"EST","METT",2010,"For storage only",15,"Viljandi maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1081,147544,"EST","METT",2010,"For storage only",15,"Hiiumaa laidude maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -20713,148026,"SVK","CCPAMET",2017,"For storage only",32,"Poloniny","National Park; third level of protection","third level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -847,148534,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2013,"For storage only",11,"Hainich","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -22273,148580,"CHE","National Inventory",2011,"For storage only",37,"Seldenhalde","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22274,148581,"CHE","National Inventory",2011,"For storage only",37,"Koblenzer Rhein und Laufen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22275,148582,"CHE","National Inventory",2011,"For storage only",37,"Auenreste Klingnauer Stausee","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22276,148583,"CHE","National Inventory",2011,"For storage only",37,"Eggrank - Thurspitz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22277,148584,"CHE","National Inventory",2011,"For storage only",37,"Rossgarten","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22278,148585,"CHE","National Inventory",2011,"For storage only",37,"Schäffäuli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22279,148586,"CHE","National Inventory",2011,"For storage only",37,"Wyden bei Pfyn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22280,148587,"CHE","National Inventory",2011,"For storage only",37,"Haumättli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22281,148588,"CHE","National Inventory",2011,"For storage only",37,"Hau - Äuli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22282,148589,"CHE","National Inventory",2011,"For storage only",37,"Wuer","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22283,148590,"CHE","National Inventory",2011,"For storage only",37,"Wasserschloss Brugg - Stilli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22284,148591,"CHE","National Inventory",2011,"For storage only",37,"Altenrhein","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22285,148592,"CHE","National Inventory",2011,"For storage only",37,"Unteres Ghögg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22286,148593,"CHE","National Inventory",2011,"For storage only",37,"Ghöggerhütte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22287,148594,"CHE","National Inventory",2011,"For storage only",37,"Umiker Schachen - Stierenhölzli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22288,148595,"CHE","National Inventory",2011,"For storage only",37,"Gillhof - Glattbrugg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22289,148596,"CHE","National Inventory",2011,"For storage only",37,"Thurauen Wil-Weieren","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22290,148597,"CHE","National Inventory",2011,"For storage only",37,"Glatt nordwestlich Flawil","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22291,148598,"CHE","National Inventory",2011,"For storage only",37,"Rüsshalden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22292,148599,"CHE","National Inventory",2011,"For storage only",37,"Reussinsel Risi","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22293,148600,"CHE","National Inventory",2011,"For storage only",37,"Thur und Necker bei Lütisburg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22294,148601,"CHE","National Inventory",2011,"For storage only",37,"Tote Reuss - Alte Reuss","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22295,148603,"CHE","National Inventory",2011,"For storage only",37,"La Lomenne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22296,148604,"CHE","National Inventory",2011,"For storage only",37,"Rottenschwiler Moos","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22297,148605,"CHE","National Inventory",2011,"For storage only",37,"La Réchesse","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22298,148606,"CHE","National Inventory",2011,"For storage only",37,"Still Rüss - Rickenbach","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22299,148607,"CHE","National Inventory",2011,"For storage only",37,"Ober Schachen - Rüssspitz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22300,148608,"CHE","National Inventory",2011,"For storage only",37,"Emmenschachen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22301,148609,"CHE","National Inventory",2011,"For storage only",37,"Frauental","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22302,148610,"CHE","National Inventory",2011,"For storage only",37,"Aahorn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22303,148611,"CHE","National Inventory",2011,"For storage only",37,"Aare bei Altreu","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22304,148612,"CHE","National Inventory",2011,"For storage only",37,"Altwässer der Aare und der Zihl","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22305,148613,"CHE","National Inventory",2011,"For storage only",37,"Biber im Ägeriried","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22306,148614,"CHE","National Inventory",2011,"For storage only",37,"Alte Aare: Lyss - Dotzigen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22307,148615,"CHE","National Inventory",2011,"For storage only",37,"Utzenstorfer Schachen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22308,148616,"CHE","National Inventory",2011,"For storage only",37,"Alte Aare: Aarberg - Lyss","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22309,148617,"CHE","National Inventory",2011,"For storage only",37,"Heidenweg / St. Petersinsel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22310,148618,"CHE","National Inventory",2011,"For storage only",37,"Hagneckdelta","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22311,148619,"CHE","National Inventory",2011,"For storage only",37,"Oberburger Schachen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22312,148620,"CHE","National Inventory",2011,"For storage only",37,"Ämmenmatt","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22313,148621,"CHE","National Inventory",2011,"For storage only",37,"Hinter Klöntal","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22314,148622,"CHE","National Inventory",2011,"For storage only",37,"Seewald - Fanel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22315,148623,"CHE","National Inventory",2011,"For storage only",37,"Niederried - Oltigenmatt","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22316,148624,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves du Chablais de Cudrefin","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22317,148625,"CHE","National Inventory",2011,"For storage only",37,"Tristel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22318,148626,"CHE","National Inventory",2011,"For storage only",37,"Chrauchbach: Haris","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22319,148627,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves de Portalban - Cudrefin","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22320,148628,"CHE","National Inventory",2011,"For storage only",37,"Städerried","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22321,148629,"CHE","National Inventory",2011,"For storage only",37,"Laupenau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22322,148630,"CHE","National Inventory",2011,"For storage only",37,"Schlierenrüti","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22323,148631,"CHE","National Inventory",2011,"For storage only",37,"Belper Giessen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22324,148632,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves de Chevroux - Portalban","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22325,148633,"CHE","National Inventory",2011,"For storage only",37,"Reussdelta","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22326,148634,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves d'Estavayer-le-Lac - Chevroux","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22327,148635,"CHE","National Inventory",2011,"For storage only",37,"Senseauen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22328,148636,"CHE","National Inventory",2011,"For storage only",37,"Strada","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22329,148637,"CHE","National Inventory",2011,"For storage only",37,"Steinibach","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22330,148638,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves de Concise","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22331,148639,"CHE","National Inventory",2011,"For storage only",37,"Teuffengraben - Sackau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22332,148640,"CHE","National Inventory",2011,"For storage only",37,"Plan-Sot","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22333,148641,"CHE","National Inventory",2011,"For storage only",37,"Laui","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22334,148643,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves de Cheyres - Font","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22335,148644,"CHE","National Inventory",2011,"For storage only",37,"Panas-ch-Resgia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22336,148645,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves de Grandson - Bonvillars - Onnens","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22337,148646,"CHE","National Inventory",2011,"For storage only",37,"Rhäzünser Rheinauen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22338,148647,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves d'Yvonand - Cheyres","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22339,148648,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves d'Yverdon - Yvonand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22340,148649,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves d'Yverdon - des Tuileries","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22341,148650,"CHE","National Inventory",2011,"For storage only",37,"Lischana - Suronnas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22342,148652,"CHE","National Inventory",2011,"For storage only",37,"Cauma","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22343,148653,"CHE","National Inventory",2011,"For storage only",37,"Bois du Dévin","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22344,148654,"CHE","National Inventory",2011,"For storage only",37,"Stössi","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22345,148655,"CHE","National Inventory",2011,"For storage only",37,"Plaun da Foppas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22346,148656,"CHE","National Inventory",2011,"For storage only",37,"Ogna da Pardiala","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22347,148657,"CHE","National Inventory",2011,"For storage only",37,"La Sarine: Rossens - Fribourg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22348,148658,"CHE","National Inventory",2011,"For storage only",37,"Ärgera: Plasselb - Marly","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22349,148659,"CHE","National Inventory",2011,"For storage only",37,"Sotruinas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22350,148660,"CHE","National Inventory",2011,"For storage only",37,"Blaisch dal Piz dal Ras","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22351,148661,"CHE","National Inventory",2011,"For storage only",37,"Les Iles de Villeneuve","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22352,148662,"CHE","National Inventory",2011,"For storage only",37,"Sytenwald","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22353,148663,"CHE","National Inventory",2011,"For storage only",37,"Jägglisglunte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22354,148664,"CHE","National Inventory",2011,"For storage only",37,"La Neirigue et la Glâne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22355,148665,"CHE","National Inventory",2011,"For storage only",37,"Cahuons","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22356,148666,"CHE","National Inventory",2011,"For storage only",37,"Chandergrien","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22357,148667,"CHE","National Inventory",2011,"For storage only",37,"Disla - Pardomat","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22358,148668,"CHE","National Inventory",2011,"For storage only",37,"Cumparduns","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22359,148669,"CHE","National Inventory",2011,"For storage only",37,"Augand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22360,148670,"CHE","National Inventory",2011,"For storage only",37,"Fontanivas - Sonduritg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22361,148671,"CHE","National Inventory",2011,"For storage only",37,"Sandey","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22362,148672,"CHE","National Inventory",2011,"For storage only",37,"Gravas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22363,148673,"CHE","National Inventory",2011,"For storage only",37,"Weissenau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22364,148674,"CHE","National Inventory",2011,"For storage only",37,"Brünnlisau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22365,148675,"CHE","National Inventory",2011,"For storage only",37,"Wilerau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22366,148676,"CHE","National Inventory",2011,"For storage only",37,"Niedermettlisau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22367,148677,"CHE","National Inventory",2011,"For storage only",37,"Heustrich","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22368,148678,"CHE","National Inventory",2011,"For storage only",37,"Chappelistutz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22369,148680,"CHE","National Inventory",2011,"For storage only",37,"Bois de Vaux","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22370,148681,"CHE","National Inventory",2011,"For storage only",37,"In Erlen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22371,148682,"CHE","National Inventory",2011,"For storage only",37,"Il Rom Valchava - Graveras (Müstair)","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22372,148683,"CHE","National Inventory",2011,"For storage only",37,"Widen bei Realp","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22373,148684,"CHE","National Inventory",2011,"For storage only",37,"La Roujarde","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22374,148685,"CHE","National Inventory",2011,"For storage only",37,"San Batrumieu","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22375,148686,"CHE","National Inventory",2011,"For storage only",37,"Les Auges d'Estavannens","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22376,148687,"CHE","National Inventory",2011,"For storage only",37,"Les Monod","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22377,148688,"CHE","National Inventory",2011,"For storage only",37,"Engstlige: bim Stei - Oybedly","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22378,148689,"CHE","National Inventory",2011,"For storage only",37,"Isla Glischa - Arvins - Seglias","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22379,148691,"CHE","National Inventory",2011,"For storage only",37,"Sagnes de la Burtignière","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22380,148692,"CHE","National Inventory",2011,"For storage only",37,"Les Iles de Bussigny","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22381,148693,"CHE","National Inventory",2011,"For storage only",37,"Sand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22382,148694,"CHE","National Inventory",2011,"For storage only",37,"Les Auges de Neirivue","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22383,148695,"CHE","National Inventory",2011,"For storage only",37,"Flaz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22384,148696,"CHE","National Inventory",2011,"For storage only",37,"Brenno di Blenio","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22385,148697,"CHE","National Inventory",2011,"For storage only",37,"Campall","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22386,148698,"CHE","National Inventory",2011,"For storage only",37,"Albinasca","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22387,148699,"CHE","National Inventory",2011,"For storage only",37,"Geròra","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22388,148700,"CHE","National Inventory",2011,"For storage only",37,"Soria","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22389,148701,"CHE","National Inventory",2011,"For storage only",37,"Bosco dei Valloni","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22390,148702,"CHE","National Inventory",2011,"For storage only",37,"La Sarine près Château-d'Oex","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22391,148703,"CHE","National Inventory",2011,"For storage only",37,"Embouchure de l'Aubonne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22392,148704,"CHE","National Inventory",2011,"For storage only",37,"Gastereholz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22393,148706,"CHE","National Inventory",2011,"For storage only",37,"Matte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22394,148707,"CHE","National Inventory",2011,"For storage only",37,"Zeiterbode","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22395,148709,"CHE","National Inventory",2011,"For storage only",37,"La Torneresse à l'Etivaz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22396,148710,"CHE","National Inventory",2011,"For storage only",37,"Chiemadmatte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22397,148711,"CHE","National Inventory",2011,"For storage only",37,"Tännmattu","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22398,148712,"CHE","National Inventory",2011,"For storage only",37,"Rohr - Oey","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22399,148713,"CHE","National Inventory",2011,"For storage only",37,"Sonlèrt - Sabbione","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22400,148714,"CHE","National Inventory",2011,"For storage only",37,"Les Grangettes","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22401,148715,"CHE","National Inventory",2011,"For storage only",37,"Bolla di Loderio","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22402,148716,"CHE","National Inventory",2011,"For storage only",37,"Somprei - Lovalt","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22403,148717,"CHE","National Inventory",2011,"For storage only",37,"Canton","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22404,148718,"CHE","National Inventory",2011,"For storage only",37,"Pian di Alne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22405,148719,"CHE","National Inventory",2011,"For storage only",37,"Bilderne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22406,148720,"CHE","National Inventory",2011,"For storage only",37,"Pomareda","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22407,148721,"CHE","National Inventory",2011,"For storage only",37,"Grand Bataillard","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22408,148722,"CHE","National Inventory",2011,"For storage only",37,"Iles des Clous","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22409,148723,"CHE","National Inventory",2011,"For storage only",37,"Maggia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22410,148724,"CHE","National Inventory",2011,"For storage only",37,"Pfynwald","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22411,148725,"CHE","National Inventory",2011,"For storage only",37,"Rosera","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22412,148726,"CHE","National Inventory",2011,"For storage only",37,"Grund","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22413,148727,"CHE","National Inventory",2011,"For storage only",37,"Derborence","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22414,148728,"CHE","National Inventory",2011,"For storage only",37,"Les Gravines","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22415,148729,"CHE","National Inventory",2011,"For storage only",37,"Pascoletto","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22416,148730,"CHE","National Inventory",2011,"For storage only",37,"Isola","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22417,148731,"CHE","National Inventory",2011,"For storage only",37,"Ai Fornas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22418,148732,"CHE","National Inventory",2011,"For storage only",37,"Saleggio","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22419,148733,"CHE","National Inventory",2011,"For storage only",37,"Bassa","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22420,148734,"CHE","National Inventory",2011,"For storage only",37,"Vallon de l'Allondon","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22421,148735,"CHE","National Inventory",2011,"For storage only",37,"Moulin de Vert","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22422,148736,"CHE","National Inventory",2011,"For storage only",37,"Boschetti","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22423,148737,"CHE","National Inventory",2011,"For storage only",37,"Bolle di Magadino","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22424,148738,"CHE","National Inventory",2011,"For storage only",37,"Ciossa Antognini","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22425,148739,"CHE","National Inventory",2011,"For storage only",37,"Foce della Maggia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22426,148740,"CHE","National Inventory",2011,"For storage only",37,"Vallon de la Laire","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22427,148741,"CHE","National Inventory",2011,"For storage only",37,"Vers Vaux","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22428,148742,"CHE","National Inventory",2011,"For storage only",37,"Lotrey","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22429,148743,"CHE","National Inventory",2011,"For storage only",37,"Salay","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22430,148744,"CHE","National Inventory",2011,"For storage only",37,"Ferpècle","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22431,148745,"CHE","National Inventory",2011,"For storage only",37,"Pramousse - Satarma","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22432,148746,"CHE","National Inventory",2011,"For storage only",37,"Source du Trient","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22433,148747,"CHE","National Inventory",2011,"For storage only",37,"La Borgne en amont d'Arolla","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22434,148748,"CHE","National Inventory",2011,"For storage only",37,"Madonna del Piano","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22435,148750,"CHE","National Inventory",2011,"For storage only",37,"Chatzensee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22436,148751,"CHE","National Inventory",2011,"For storage only",37,"Taumoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22437,148752,"CHE","National Inventory",2011,"For storage only",37,"Moos Schoenenhof bei Wallisellen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22438,148753,"CHE","National Inventory",2011,"For storage only",37,"Wildert","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22439,148754,"CHE","National Inventory",2011,"For storage only",37,"Rotmoos 4","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22440,148755,"CHE","National Inventory",2011,"For storage only",37,"Suruggen/Chellersegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22441,148756,"CHE","National Inventory",2011,"For storage only",37,"Hofguetmoor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22442,148757,"CHE","National Inventory",2011,"For storage only",37,"Weid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22443,148758,"CHE","National Inventory",2011,"For storage only",37,"Torfriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22444,148759,"CHE","National Inventory",2011,"For storage only",37,"Fischbacher Moos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22445,148760,"CHE","National Inventory",2011,"For storage only",37,"Forenmoos/Schachenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22446,148761,"CHE","National Inventory",2011,"For storage only",37,"Robenhauserriet/Pfaeffikersee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22447,148762,"CHE","National Inventory",2011,"For storage only",37,"Hirschberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22448,148763,"CHE","National Inventory",2011,"For storage only",37,"Nisplismoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22449,148764,"CHE","National Inventory",2011,"For storage only",37,"Moor suedoestlich Beldschwendi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22450,148765,"CHE","National Inventory",2011,"For storage only",37,"Gontenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22451,148767,"CHE","National Inventory",2011,"For storage only",37,"Barchetsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22452,148768,"CHE","National Inventory",2011,"For storage only",37,"Raeubrichseen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22453,148769,"CHE","National Inventory",2011,"For storage only",37,"Gurisee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22454,148770,"CHE","National Inventory",2011,"For storage only",37,"Hudelmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22455,148771,"CHE","National Inventory",2011,"For storage only",37,"Mettmenhasler See","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22456,148772,"CHE","National Inventory",2011,"For storage only",37,"Bergwis","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22457,148773,"CHE","National Inventory",2011,"For storage only",37,"Chraeenriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22458,148774,"CHE","National Inventory",2011,"For storage only",37,"Huetten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22459,148775,"CHE","National Inventory",2011,"For storage only",37,"Moor nordwestlich Gisleren/Schoenauwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22460,148776,"CHE","National Inventory",2011,"For storage only",37,"Helchen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22461,148777,"CHE","National Inventory",2011,"For storage only",37,"Loechli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22462,148778,"CHE","National Inventory",2011,"For storage only",37,"Ambitzgi/Boehnlerriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22463,148779,"CHE","National Inventory",2011,"For storage only",37,"Breitmoos 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22464,148780,"CHE","National Inventory",2011,"For storage only",37,"Moor auf dem Schwarzenberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22465,148781,"CHE","National Inventory",2011,"For storage only",37,"Stillert","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22466,148782,"CHE","National Inventory",2011,"For storage only",37,"Untere Fischeren","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22467,148783,"CHE","National Inventory",2011,"For storage only",37,"Hiwiler Riet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22468,148784,"CHE","National Inventory",2011,"For storage only",37,"Oberhoefler Riet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22469,148785,"CHE","National Inventory",2011,"For storage only",37,"Vordere Wartegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22470,148786,"CHE","National Inventory",2011,"For storage only",37,"Forenmoesli/Burketwald/Paradisli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22471,148787,"CHE","National Inventory",2011,"For storage only",37,"Guggenhalden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22472,148788,"CHE","National Inventory",2011,"For storage only",37,"Bruggerenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22473,148789,"CHE","National Inventory",2011,"For storage only",37,"Moore noerdlich Guggeien","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22474,148790,"CHE","National Inventory",2011,"For storage only",37,"La Tourbiere des Enfers","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22475,148791,"CHE","National Inventory",2011,"For storage only",37,"Ober Bad","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22476,148792,"CHE","National Inventory",2011,"For storage only",37,"Moore zwischen Alp Stoeck und Gschwend","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22477,148793,"CHE","National Inventory",2011,"For storage only",37,"Moor zwischen Telleren und Chli Langboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22478,148794,"CHE","National Inventory",2011,"For storage only",37,"Plain de Saigne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22479,148795,"CHE","National Inventory",2011,"For storage only",37,"Moor Rinderweiderhau/Hinter Bisliken","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22480,148796,"CHE","National Inventory",2011,"For storage only",37,"Salomonstempel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22481,148797,"CHE","National Inventory",2011,"For storage only",37,"Potersalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22482,148798,"CHE","National Inventory",2011,"For storage only",37,"Chellen/Allmeindswald/Bendelried","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22483,148799,"CHE","National Inventory",2011,"For storage only",37,"La Couaye","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22484,148800,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere a l'est des Neufs Pres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22485,148801,"CHE","National Inventory",2011,"For storage only",37,"Unterloch/Grundlosen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22486,148802,"CHE","National Inventory",2011,"For storage only",37,"Derriere les Embreux","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22487,148803,"CHE","National Inventory",2011,"For storage only",37,"Foret du Peche","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22488,148804,"CHE","National Inventory",2011,"For storage only",37,"Moore auf dem Rickenpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22489,148805,"CHE","National Inventory",2011,"For storage only",37,"Cholwald Schwaegalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22490,148806,"CHE","National Inventory",2011,"For storage only",37,"Les Embreux","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22491,148807,"CHE","National Inventory",2011,"For storage only",37,"Chlosterwald-Moore/Ampferenboedeli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22492,148808,"CHE","National Inventory",2011,"For storage only",37,"Moore bei Steig und Schartegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22493,148809,"CHE","National Inventory",2011,"For storage only",37,"Unter Huettenbueel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22494,148810,"CHE","National Inventory",2011,"For storage only",37,"Egelsee 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22495,148811,"CHE","National Inventory",2011,"For storage only",37,"Moore im Traemelloch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22496,148812,"CHE","National Inventory",2011,"For storage only",37,"La Saigne a l'est des Rouges-Terres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22497,148813,"CHE","National Inventory",2011,"For storage only",37,"Schoenbuehl","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22498,148814,"CHE","National Inventory",2011,"For storage only",37,"Seeweidsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22499,148815,"CHE","National Inventory",2011,"For storage only",37,"La Sagne et les Tourbieres de Bellelay","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22500,148816,"CHE","National Inventory",2011,"For storage only",37,"Moore auf dem Chraezerenpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22501,148817,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere a l'ouest de Predame","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22502,148818,"CHE","National Inventory",2011,"For storage only",37,"Eggweid auf dem Ricken","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22503,148819,"CHE","National Inventory",2011,"For storage only",37,"Moor zwischen Turn und Laub","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22504,148820,"CHE","National Inventory",2011,"For storage only",37,"Ruetiwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22505,148821,"CHE","National Inventory",2011,"For storage only",37,"Les Royes","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22506,148822,"CHE","National Inventory",2011,"For storage only",37,"Bilchenriet/Unterwald/Schiltmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22507,148823,"CHE","National Inventory",2011,"For storage only",37,"Unterrifferswilermoos/Chrutzelen/Oberrifferswilermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22508,148824,"CHE","National Inventory",2011,"For storage only",37,"La Tourbiere au sud des Veaux","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22509,148825,"CHE","National Inventory",2011,"For storage only",37,"Etang de la Gruere","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22510,148826,"CHE","National Inventory",2011,"For storage only",37,"Gruen/Neuhuettli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22511,148827,"CHE","National Inventory",2011,"For storage only",37,"La Tourbiere/Ronde Sagne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22512,148828,"CHE","National Inventory",2011,"For storage only",37,"Aegelsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22513,148829,"CHE","National Inventory",2011,"For storage only",37,"Grindelmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22514,148830,"CHE","National Inventory",2011,"For storage only",37,"Hochmoor bei Etzelwil","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22515,148831,"CHE","National Inventory",2011,"For storage only",37,"Hinterschluchen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22516,148832,"CHE","National Inventory",2011,"For storage only",37,"Hagenholz/Hagenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22517,148833,"CHE","National Inventory",2011,"For storage only",37,"Rorholz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22518,148834,"CHE","National Inventory",2011,"For storage only",37,"Paturage du Droit","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22519,148835,"CHE","National Inventory",2011,"For storage only",37,"Friessen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22520,148836,"CHE","National Inventory",2011,"For storage only",37,"Moore auf der Wolzenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22521,148837,"CHE","National Inventory",2011,"For storage only",37,"La Tourbiere de la Chaux-des-Breuleux","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22522,148838,"CHE","National Inventory",2011,"For storage only",37,"Gubelspitz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22523,148839,"CHE","National Inventory",2011,"For storage only",37,"Chrutzelenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22524,148840,"CHE","National Inventory",2011,"For storage only",37,"Feldmoos/Moore auf dem Feldmooshubel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22525,148841,"CHE","National Inventory",2011,"For storage only",37,"Luetisalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22526,148842,"CHE","National Inventory",2011,"For storage only",37,"Ballmoos Lieli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22527,148843,"CHE","National Inventory",2011,"For storage only",37,"Haeglimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22528,148844,"CHE","National Inventory",2011,"For storage only",37,"Dreihuetten/Gampluet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22529,148845,"CHE","National Inventory",2011,"For storage only",37,"Tourbieres de Chanteraine","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22530,148846,"CHE","National Inventory",2011,"For storage only",37,"Spitzenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22531,148847,"CHE","National Inventory",2011,"For storage only",37,"Schoenenboden/Sommerigchopf","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22532,148848,"CHE","National Inventory",2011,"For storage only",37,"Creux de l'Epral","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22533,148849,"CHE","National Inventory",2011,"For storage only",37,"Moor noerdlich Heeg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22534,148850,"CHE","National Inventory",2011,"For storage only",37,"Hinter Engi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22535,148851,"CHE","National Inventory",2011,"For storage only",37,"Munzenriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22536,148852,"CHE","National Inventory",2011,"For storage only",37,"Moor zwischen Bueel uns Blattwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22537,148853,"CHE","National Inventory",2011,"For storage only",37,"Hinterbergried","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22538,148854,"CHE","National Inventory",2011,"For storage only",37,"Vorderwaengi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22539,148855,"CHE","National Inventory",2011,"For storage only",37,"Au/Hinterlaad","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22540,148856,"CHE","National Inventory",2011,"For storage only",37,"Gubelmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22541,148857,"CHE","National Inventory",2011,"For storage only",37,"Vermoorungen um das Sagenhoelzli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22542,148858,"CHE","National Inventory",2011,"For storage only",37,"Goldach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22543,148859,"CHE","National Inventory",2011,"For storage only",37,"Chaelenmoor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22544,148860,"CHE","National Inventory",2011,"For storage only",37,"Schwendiseen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22545,148861,"CHE","National Inventory",2011,"For storage only",37,"Aelpli/Eggenriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22546,148862,"CHE","National Inventory",2011,"For storage only",37,"Egelsee 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22547,148863,"CHE","National Inventory",2011,"For storage only",37,"Hirzenbaeder/Sommerweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22548,148864,"CHE","National Inventory",2011,"For storage only",37,"Taennlimoos/Hintercher-Moos/Muserholz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22549,148865,"CHE","National Inventory",2011,"For storage only",37,"Hinter Hoehi/Boenisriet/Stoecklerriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22550,148866,"CHE","National Inventory",2011,"For storage only",37,"Schaersboden-Moor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22551,148867,"CHE","National Inventory",2011,"For storage only",37,"Tourbieres de la Chaux d'Abel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22552,148868,"CHE","National Inventory",2011,"For storage only",37,"Gamperfin/Turbenriet/Tischenriet/Gapels","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22553,148869,"CHE","National Inventory",2011,"For storage only",37,"Westlich Etzel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22554,148870,"CHE","National Inventory",2011,"For storage only",37,"Altstofel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22555,148871,"CHE","National Inventory",2011,"For storage only",37,"Schoenboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22556,148872,"CHE","National Inventory",2011,"For storage only",37,"Chlepfimoos/Burgmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22557,148873,"CHE","National Inventory",2011,"For storage only",37,"Moor noerdlich Schwandegg/Twaerfallen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22558,148874,"CHE","National Inventory",2011,"For storage only",37,"Neugrundmoor/Wuerzgarten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22559,148875,"CHE","National Inventory",2011,"For storage only",37,"Schwantenau","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22560,148876,"CHE","National Inventory",2011,"For storage only",37,"Champ Meusel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22561,148877,"CHE","National Inventory",2011,"For storage only",37,"Altschenchopf","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22562,148878,"CHE","National Inventory",2011,"For storage only",37,"Witi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22563,148879,"CHE","National Inventory",2011,"For storage only",37,"Roblosen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22564,148880,"CHE","National Inventory",2011,"For storage only",37,"Schindellegi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22565,148881,"CHE","National Inventory",2011,"For storage only",37,"Moore beim Chlausechappeli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22566,148882,"CHE","National Inventory",2011,"For storage only",37,"Breitried 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22567,148883,"CHE","National Inventory",2011,"For storage only",37,"Altmatt-Biberbrugg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22568,148884,"CHE","National Inventory",2011,"For storage only",37,"Zigermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22569,148885,"CHE","National Inventory",2011,"For storage only",37,"Vorderer Geissboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22570,148886,"CHE","National Inventory",2011,"For storage only",37,"Grossriet/Arvenbueel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22571,148887,"CHE","National Inventory",2011,"For storage only",37,"Hessenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22572,148888,"CHE","National Inventory",2011,"For storage only",37,"Braemenegg/Furen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22573,148889,"CHE","National Inventory",2011,"For storage only",37,"Tubenloch/Huenggi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22574,148890,"CHE","National Inventory",2011,"For storage only",37,"Les Pontins","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22575,148891,"CHE","National Inventory",2011,"For storage only",37,"Eigenried/Birchried/Kellersforen/Frueebueelmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22576,148892,"CHE","National Inventory",2011,"For storage only",37,"Le Marais de la Joux du Plane","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22577,148893,"CHE","National Inventory",2011,"For storage only",37,"Gross Moos im Schwendital","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22578,148894,"CHE","National Inventory",2011,"For storage only",37,"Chaesgaden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22579,148895,"CHE","National Inventory",2011,"For storage only",37,"Im Fang","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22580,148896,"CHE","National Inventory",2011,"For storage only",37,"Blimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22581,148897,"CHE","National Inventory",2011,"For storage only",37,"Moore / Huerital","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22582,148898,"CHE","National Inventory",2011,"For storage only",37,"Boggenberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22583,148899,"CHE","National Inventory",2011,"For storage only",37,"Chnoden/Heumoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22584,148900,"CHE","National Inventory",2011,"For storage only",37,"Marais de Pouillerel/Marais Jean Colard","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22585,148901,"CHE","National Inventory",2011,"For storage only",37,"Nuechenstoeck","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22586,148902,"CHE","National Inventory",2011,"For storage only",37,"Les Saignolis","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22587,148903,"CHE","National Inventory",2011,"For storage only",37,"Madils","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22588,148904,"CHE","National Inventory",2011,"For storage only",37,"Tobelwald/Guetental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22589,148905,"CHE","National Inventory",2011,"For storage only",37,"Les Eplatures-Temple","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22590,148906,"CHE","National Inventory",2011,"For storage only",37,"Breitried 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22591,148908,"CHE","National Inventory",2011,"For storage only",37,"Schwarzsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22592,148909,"CHE","National Inventory",2011,"For storage only",37,"Naserina","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22593,148910,"CHE","National Inventory",2011,"For storage only",37,"Prodriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22594,148911,"CHE","National Inventory",2011,"For storage only",37,"Ausfluss des Rotsees","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22595,148912,"CHE","National Inventory",2011,"For storage only",37,"Tuetenseeli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22596,148913,"CHE","National Inventory",2011,"For storage only",37,"Platten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22597,148914,"CHE","National Inventory",2011,"For storage only",37,"Muertschen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22598,148915,"CHE","National Inventory",2011,"For storage only",37,"Maerzental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22599,148916,"CHE","National Inventory",2011,"For storage only",37,"Meienmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22600,148917,"CHE","National Inventory",2011,"For storage only",37,"Heidmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22601,148918,"CHE","National Inventory",2011,"For storage only",37,"Tierfaederen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22602,148919,"CHE","National Inventory",2011,"For storage only",37,"Chapfensee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22603,148920,"CHE","National Inventory",2011,"For storage only",37,"Forenmoos im Sigiger Wald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22604,148921,"CHE","National Inventory",2011,"For storage only",37,"Rietlichopf im Murgtal","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22605,148922,"CHE","National Inventory",2011,"For storage only",37,"Unter Murgsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22606,148923,"CHE","National Inventory",2011,"For storage only",37,"Furenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22607,148924,"CHE","National Inventory",2011,"For storage only",37,"Gross Underbaech","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22608,148925,"CHE","National Inventory",2011,"For storage only",37,"Chli Underbaech","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22609,148926,"CHE","National Inventory",2011,"For storage only",37,"Hobacher","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22610,148927,"CHE","National Inventory",2011,"For storage only",37,"Tubenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22611,148928,"CHE","National Inventory",2011,"For storage only",37,"Inner und Usser Schnabel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22612,148929,"CHE","National Inventory",2011,"For storage only",37,"Les Chauchets","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22613,148930,"CHE","National Inventory",2011,"For storage only",37,"Moos nordwestlich Gibelegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22614,148931,"CHE","National Inventory",2011,"For storage only",37,"Furenmoos bei der Krienseregg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22615,148932,"CHE","National Inventory",2011,"For storage only",37,"Gibelegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22616,148933,"CHE","National Inventory",2011,"For storage only",37,"Tourbieres du Cachot","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22617,148934,"CHE","National Inventory",2011,"For storage only",37,"Forrenmoos/Meienstossmoos im Eigental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22618,148935,"CHE","National Inventory",2011,"For storage only",37,"Follenwald im Krienser Hohwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22619,148936,"CHE","National Inventory",2011,"For storage only",37,"Vallee des Ponts-de-Martel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22620,148937,"CHE","National Inventory",2011,"For storage only",37,"Vers le Maix Rochat","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22621,148938,"CHE","National Inventory",2011,"For storage only",37,"Obersaess","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22622,148939,"CHE","National Inventory",2011,"For storage only",37,"Arven unter Fraekmuent","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22623,148941,"CHE","National Inventory",2011,"For storage only",37,"Marais de la Chatagne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22624,148942,"CHE","National Inventory",2011,"For storage only",37,"Buesselimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22625,148943,"CHE","National Inventory",2011,"For storage only",37,"Mettilimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22626,148944,"CHE","National Inventory",2011,"For storage only",37,"Loermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22627,148945,"CHE","National Inventory",2011,"For storage only",37,"Rond Buisson","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22628,148946,"CHE","National Inventory",2011,"For storage only",37,"Bruendlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22629,148947,"CHE","National Inventory",2011,"For storage only",37,"Grossriet/Gnappiriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22630,148948,"CHE","National Inventory",2011,"For storage only",37,"Teufboeni","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22631,148949,"CHE","National Inventory",2011,"For storage only",37,"Ehemaliger Pilatussee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22632,148950,"CHE","National Inventory",2011,"For storage only",37,"Fuchserenmoos/Geugelhusenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22633,148951,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere pres de la Cornee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22634,148952,"CHE","National Inventory",2011,"For storage only",37,"Fuchseren","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22635,148953,"CHE","National Inventory",2011,"For storage only",37,"Fulried am Stelserberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22636,148954,"CHE","National Inventory",2011,"For storage only",37,"Balmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22637,148955,"CHE","National Inventory",2011,"For storage only",37,"Bemont/Chez Petoud","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22638,148956,"CHE","National Inventory",2011,"For storage only",37,"Muellerenmoesli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22639,148957,"CHE","National Inventory",2011,"For storage only",37,"Garichti","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22640,148958,"CHE","National Inventory",2011,"For storage only",37,"Moor noerdlich First","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22641,148959,"CHE","National Inventory",2011,"For storage only",37,"Staechtenmoesli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22642,148960,"CHE","National Inventory",2011,"For storage only",37,"Les Sagnes-Rouges","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22643,148961,"CHE","National Inventory",2011,"For storage only",37,"Rongg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22644,148962,"CHE","National Inventory",2011,"For storage only",37,"Riedzoepf","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22645,148963,"CHE","National Inventory",2011,"For storage only",37,"Grotzenbueel (Braunwald)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22646,148964,"CHE","National Inventory",2011,"For storage only",37,"Le Brouillet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22647,148965,"CHE","National Inventory",2011,"For storage only",37,"Matt oberhalb Stausee Garichti","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22648,148966,"CHE","National Inventory",2011,"For storage only",37,"Riedboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22649,148967,"CHE","National Inventory",2011,"For storage only",37,"Etzelhuesli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22650,148968,"CHE","National Inventory",2011,"For storage only",37,"Juchmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22651,148969,"CHE","National Inventory",2011,"For storage only",37,"Rischigenmatt - Rotibach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22652,148970,"CHE","National Inventory",2011,"For storage only",37,"Laengenfeldmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22653,148971,"CHE","National Inventory",2011,"For storage only",37,"Horn bei Tratza","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22654,148972,"CHE","National Inventory",2011,"For storage only",37,"Ober Lauenberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22655,148973,"CHE","National Inventory",2011,"For storage only",37,"Seeliboden im Choltal","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22656,148974,"CHE","National Inventory",2011,"For storage only",37,"Les Sagnettes sur Boveresse","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22657,148975,"CHE","National Inventory",2011,"For storage only",37,"Taellenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22658,148976,"CHE","National Inventory",2011,"For storage only",37,"Scheidegg im Choltal","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22659,148977,"CHE","National Inventory",2011,"For storage only",37,"Aebnistetten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22660,148978,"CHE","National Inventory",2011,"For storage only",37,"Meiengraben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22661,148979,"CHE","National Inventory",2011,"For storage only",37,"Zwischen Horweli und Rossweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22662,148980,"CHE","National Inventory",2011,"For storage only",37,"Zwischen Horweli und der Grossen Schliere","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22663,148981,"CHE","National Inventory",2011,"For storage only",37,"Gerzensee im Kernwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22664,148982,"CHE","National Inventory",2011,"For storage only",37,"Teilenboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22665,148983,"CHE","National Inventory",2011,"For storage only",37,"Le Marais/Les Bochats","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22666,148984,"CHE","National Inventory",2011,"For storage only",37,"Rosswaengenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22667,148985,"CHE","National Inventory",2011,"For storage only",37,"Unteres Schlierental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22668,148986,"CHE","National Inventory",2011,"For storage only",37,"Oestlich Brandchnubel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22669,148987,"CHE","National Inventory",2011,"For storage only",37,"Zwischen Schwand und Guermschbach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22670,148988,"CHE","National Inventory",2011,"For storage only",37,"Guermschwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22671,148989,"CHE","National Inventory",2011,"For storage only",37,"Wengli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22672,148990,"CHE","National Inventory",2011,"For storage only",37,"Seeliwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22673,148991,"CHE","National Inventory",2011,"For storage only",37,"Unter Wasserfallen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22674,148992,"CHE","National Inventory",2011,"For storage only",37,"Hueenerguetsch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22675,148993,"CHE","National Inventory",2011,"For storage only",37,"Obere Schluecht/Untere Schluecht","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22676,148994,"CHE","National Inventory",2011,"For storage only",37,"La Sagnette/Les Tourbieres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22677,148995,"CHE","National Inventory",2011,"For storage only",37,"Schwendi Kaltbad","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22678,148996,"CHE","National Inventory",2011,"For storage only",37,"Marchmettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22679,148997,"CHE","National Inventory",2011,"For storage only",37,"Haesiseggboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22680,148998,"CHE","National Inventory",2011,"For storage only",37,"Gerenstock","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22681,148999,"CHE","National Inventory",2011,"For storage only",37,"Duerrenboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22682,149000,"CHE","National Inventory",2011,"For storage only",37,"Talhubel/Siterenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22683,149001,"CHE","National Inventory",2011,"For storage only",37,"Urnerboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22684,149002,"CHE","National Inventory",2011,"For storage only",37,"Zwischen Glaubenberg und Rossalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22685,149003,"CHE","National Inventory",2011,"For storage only",37,"Obermattboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22686,149004,"CHE","National Inventory",2011,"For storage only",37,"Gross Lucht","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22687,149005,"CHE","National Inventory",2011,"For storage only",37,"Suedlich Groen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22688,149006,"CHE","National Inventory",2011,"For storage only",37,"Ober Sewen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22689,149007,"CHE","National Inventory",2011,"For storage only",37,"Trogenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22690,149008,"CHE","National Inventory",2011,"For storage only",37,"Muenchenboden/Grund/Ochsenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22691,149009,"CHE","National Inventory",2011,"For storage only",37,"Fangboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22692,149010,"CHE","National Inventory",2011,"For storage only",37,"Zwischen Guggenen und Unter Aenggenlauenen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22693,149011,"CHE","National Inventory",2011,"For storage only",37,"Unter Sewen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22694,149012,"CHE","National Inventory",2011,"For storage only",37,"Gross Trogen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22695,149013,"CHE","National Inventory",2011,"For storage only",37,"Schwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22696,149014,"CHE","National Inventory",2011,"For storage only",37,"Ruechiwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22697,149015,"CHE","National Inventory",2011,"For storage only",37,"Chli Trogen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22698,149016,"CHE","National Inventory",2011,"For storage only",37,"Zwischen Fuersteinwald und Blattli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22699,149017,"CHE","National Inventory",2011,"For storage only",37,"Nollen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22700,149018,"CHE","National Inventory",2011,"For storage only",37,"Riedboden bei Zischlig","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22701,149019,"CHE","National Inventory",2011,"For storage only",37,"Taellenmoos im Hilferental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22702,149020,"CHE","National Inventory",2011,"For storage only",37,"Doersmatt","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22703,149021,"CHE","National Inventory",2011,"For storage only",37,"Riedmattschwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22704,149022,"CHE","National Inventory",2011,"For storage only",37,"Daelenboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22705,149023,"CHE","National Inventory",2011,"For storage only",37,"Hagleren","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22706,149024,"CHE","National Inventory",2011,"For storage only",37,"Duedingermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22707,149025,"CHE","National Inventory",2011,"For storage only",37,"Mouille de la Vraconne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22708,149026,"CHE","National Inventory",2011,"For storage only",37,"Grossweid bei Laret","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22709,149027,"CHE","National Inventory",2011,"For storage only",37,"Siehenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22710,149028,"CHE","National Inventory",2011,"For storage only",37,"Staechelegg/Ghack","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22711,149029,"CHE","National Inventory",2011,"For storage only",37,"Oberer Rorwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22712,149030,"CHE","National Inventory",2011,"For storage only",37,"Cheiserschwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22713,149031,"CHE","National Inventory",2011,"For storage only",37,"Rormettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22714,149032,"CHE","National Inventory",2011,"For storage only",37,"Rorwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22715,149033,"CHE","National Inventory",2011,"For storage only",37,"Pfaffenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22716,149034,"CHE","National Inventory",2011,"For storage only",37,"Gaensenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22717,149035,"CHE","National Inventory",2011,"For storage only",37,"Mouille au Sayet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22718,149036,"CHE","National Inventory",2011,"For storage only",37,"Zwischen Schlund und Aenzihuetten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22719,149037,"CHE","National Inventory",2011,"For storage only",37,"Merliwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22720,149038,"CHE","National Inventory",2011,"For storage only",37,"Les Mouilles","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22721,149039,"CHE","National Inventory",2011,"For storage only",37,"Rischli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22722,149040,"CHE","National Inventory",2011,"For storage only",37,"Wachseldornmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22723,149041,"CHE","National Inventory",2011,"For storage only",37,"Zwischen Wagliseichnubel und Ghack","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22724,149042,"CHE","National Inventory",2011,"For storage only",37,"Flueegfaeael/Steinmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22725,149043,"CHE","National Inventory",2011,"For storage only",37,"Wagliseichnubel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22726,149044,"CHE","National Inventory",2011,"For storage only",37,"Moos bei Wachseldorn/Untermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22727,149045,"CHE","National Inventory",2011,"For storage only",37,"Husegg-Hurnischwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22728,149046,"CHE","National Inventory",2011,"For storage only",37,"Husegg-Ochsenweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22729,149047,"CHE","National Inventory",2011,"For storage only",37,"Suedlich Ober Saffertberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22730,149048,"CHE","National Inventory",2011,"For storage only",37,"Totmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22731,149049,"CHE","National Inventory",2011,"For storage only",37,"Zopf/Salwiden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22732,149050,"CHE","National Inventory",2011,"For storage only",37,"Les Araignys","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22733,149051,"CHE","National Inventory",2011,"For storage only",37,"Guntlishuetten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22734,149052,"CHE","National Inventory",2011,"For storage only",37,"Gross Gfael","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22735,149053,"CHE","National Inventory",2011,"For storage only",37,"Salwidili","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22736,149054,"CHE","National Inventory",2011,"For storage only",37,"Mouille de la Sagne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22737,149055,"CHE","National Inventory",2011,"For storage only",37,"Husegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22738,149056,"CHE","National Inventory",2011,"For storage only",37,"Rossweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22739,149057,"CHE","National Inventory",2011,"For storage only",37,"Wagliseiboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22740,149058,"CHE","National Inventory",2011,"For storage only",37,"Laubersmadghack","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22741,149059,"CHE","National Inventory",2011,"For storage only",37,"Gerschni","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22742,149060,"CHE","National Inventory",2011,"For storage only",37,"Feldmoos (Gerschni)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22743,149061,"CHE","National Inventory",2011,"For storage only",37,"Ried unter dem Raemisboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22744,149062,"CHE","National Inventory",2011,"For storage only",37,"Tuernliwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22745,149063,"CHE","National Inventory",2011,"For storage only",37,"Vorderes Steinetli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22746,149064,"CHE","National Inventory",2011,"For storage only",37,"Mittlerschwarzenegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22747,149065,"CHE","National Inventory",2011,"For storage only",37,"Fulensee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22748,149066,"CHE","National Inventory",2011,"For storage only",37,"Fischbachmoos/Obermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22749,149067,"CHE","National Inventory",2011,"For storage only",37,"Rotmoos 3","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22750,149068,"CHE","National Inventory",2011,"For storage only",37,"Baersel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22751,149069,"CHE","National Inventory",2011,"For storage only",37,"Haengstmoor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22752,149070,"CHE","National Inventory",2011,"For storage only",37,"Schwandholz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22753,149071,"CHE","National Inventory",2011,"For storage only",37,"Vorderes Rotmoesli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22754,149072,"CHE","National Inventory",2011,"For storage only",37,"Usserberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22755,149073,"CHE","National Inventory",2011,"For storage only",37,"Schwarzsee bei Arosa","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22756,149074,"CHE","National Inventory",2011,"For storage only",37,"Moore im Steiniwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22757,149075,"CHE","National Inventory",2011,"For storage only",37,"Moore oestlich Aellgaeuli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22758,149076,"CHE","National Inventory",2011,"For storage only",37,"Moore zwischen Mirrenegg und Aellgaeuli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22759,149077,"CHE","National Inventory",2011,"For storage only",37,"Lai Nair","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22760,149078,"CHE","National Inventory",2011,"For storage only",37,"Clavadeler Berg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22761,149079,"CHE","National Inventory",2011,"For storage only",37,"Esleren/Gummenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22762,149080,"CHE","National Inventory",2011,"For storage only",37,"Horneggwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22763,149081,"CHE","National Inventory",2011,"For storage only",37,"Rotmoos 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22764,149082,"CHE","National Inventory",2011,"For storage only",37,"Rueti am Arnisee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22765,149083,"CHE","National Inventory",2011,"For storage only",37,"Stouffe","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22766,149084,"CHE","National Inventory",2011,"For storage only",37,"Gmeine Schoeriz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22767,149085,"CHE","National Inventory",2011,"For storage only",37,"Trogenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22768,149086,"CHE","National Inventory",2011,"For storage only",37,"Moore noerdlich Gruenenbergpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22769,149087,"CHE","National Inventory",2011,"For storage only",37,"Entenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22770,149088,"CHE","National Inventory",2011,"For storage only",37,"Moor westlich Steinige Schoeriz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22771,149089,"CHE","National Inventory",2011,"For storage only",37,"Moor oestlich Unteres Hoernli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22772,149090,"CHE","National Inventory",2011,"For storage only",37,"Moeser oestlich Widegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22773,149091,"CHE","National Inventory",2011,"For storage only",37,"Moor suedwestlich Steinige Schoeriz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22774,149092,"CHE","National Inventory",2011,"For storage only",37,"Hoehenschwandmoor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22775,149093,"CHE","National Inventory",2011,"For storage only",37,"Moore suedwestlich Gruenenbergpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22776,149094,"CHE","National Inventory",2011,"For storage only",37,"Moor nordoestlich Oberes Hoernli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22777,149095,"CHE","National Inventory",2011,"For storage only",37,"Schluchhole","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22778,149096,"CHE","National Inventory",2011,"For storage only",37,"Moor suedlich Moeser","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22779,149097,"CHE","National Inventory",2011,"For storage only",37,"Moore hinder der Egg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22780,149098,"CHE","National Inventory",2011,"For storage only",37,"Moor nordoestlich Faerrich am Bol","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22781,149099,"CHE","National Inventory",2011,"For storage only",37,"Moor noerdlich Oberes Hoernli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22782,149100,"CHE","National Inventory",2011,"For storage only",37,"Moor zw. Lombachalp und Teufengraben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22783,149101,"CHE","National Inventory",2011,"For storage only",37,"Affeier/Pifal","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22784,149102,"CHE","National Inventory",2011,"For storage only",37,"Moor oestlich Wissenbach/Gurnigel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22785,149103,"CHE","National Inventory",2011,"For storage only",37,"Moore suedoestlich Faerrich am Bol","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22786,149104,"CHE","National Inventory",2011,"For storage only",37,"Moor westlich Wissenbach/Gurnigel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22787,149105,"CHE","National Inventory",2011,"For storage only",37,"Moor bei Lombachalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22788,149106,"CHE","National Inventory",2011,"For storage only",37,"Zettenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22789,149107,"CHE","National Inventory",2011,"For storage only",37,"Seelein bei der Maegisalp/Seemad","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22790,149108,"CHE","National Inventory",2011,"For storage only",37,"Moor oberhalb Cholischwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22791,149109,"CHE","National Inventory",2011,"For storage only",37,"Schalenberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22792,149110,"CHE","National Inventory",2011,"For storage only",37,"Moore im Schoepfewald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22793,149111,"CHE","National Inventory",2011,"For storage only",37,"Lischboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22794,149112,"CHE","National Inventory",2011,"For storage only",37,"Rotmoos 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22795,149113,"CHE","National Inventory",2011,"For storage only",37,"Heidsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22796,149114,"CHE","National Inventory",2011,"For storage only",37,"Selenen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22797,149115,"CHE","National Inventory",2011,"For storage only",37,"Feldmoos 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22798,149116,"CHE","National Inventory",2011,"For storage only",37,"Sortel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22799,149117,"CHE","National Inventory",2011,"For storage only",37,"Grossfischbaechen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22800,149118,"CHE","National Inventory",2011,"For storage only",37,"Riederen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22801,149119,"CHE","National Inventory",2011,"For storage only",37,"Moorwald Hinters Laeger","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22802,149120,"CHE","National Inventory",2011,"For storage only",37,"In Miseren","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22803,149121,"CHE","National Inventory",2011,"For storage only",37,"Schwaendlibachgraben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22804,149122,"CHE","National Inventory",2011,"For storage only",37,"Hinters Laeger","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22805,149123,"CHE","National Inventory",2011,"For storage only",37,"Moore oestlich Gemmenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22806,149124,"CHE","National Inventory",2011,"For storage only",37,"Tgiern Grond","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22807,149125,"CHE","National Inventory",2011,"For storage only",37,"Duerrentaennli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22808,149126,"CHE","National Inventory",2011,"For storage only",37,"Luegiboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22809,149127,"CHE","National Inventory",2011,"For storage only",37,"Sporz Davains","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22810,149128,"CHE","National Inventory",2011,"For storage only",37,"Muschenegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22811,149129,"CHE","National Inventory",2011,"For storage only",37,"Turen/Chaltenbrunnen/Staeckliwaeldli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22812,149130,"CHE","National Inventory",2011,"For storage only",37,"Moor oberhalb Burgfeldfluee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22813,149131,"CHE","National Inventory",2011,"For storage only",37,"Alp Nadels","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22814,149132,"CHE","National Inventory",2011,"For storage only",37,"Moor zwischen Floesch und Haelibach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22815,149133,"CHE","National Inventory",2011,"For storage only",37,"Sewelimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22816,149134,"CHE","National Inventory",2011,"For storage only",37,"Caischavedra","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22817,149135,"CHE","National Inventory",2011,"For storage only",37,"Ladengrat","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22818,149136,"CHE","National Inventory",2011,"For storage only",37,"Rigeli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22819,149137,"CHE","National Inventory",2011,"For storage only",37,"Moor im Unterholz/Waldegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22820,149139,"CHE","National Inventory",2011,"For storage only",37,"Moore am Schwyberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22821,149140,"CHE","National Inventory",2011,"For storage only",37,"Palius (Val Mutschnengia)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22822,149141,"CHE","National Inventory",2011,"For storage only",37,"La Spielmannda/Untertierliberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22823,149142,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere a l'ouest de la Joux d'Alliere","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22824,149143,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere au Paquier dessus","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22825,149145,"CHE","National Inventory",2011,"For storage only",37,"Pre Colard","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22826,149146,"CHE","National Inventory",2011,"For storage only",37,"La Sagne du Sechey","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22827,149147,"CHE","National Inventory",2011,"For storage only",37,"Les Gurles/Les Communs de Maules","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22828,149148,"CHE","National Inventory",2011,"For storage only",37,"Tourbieres dans la Foret du Frachy","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22829,149149,"CHE","National Inventory",2011,"For storage only",37,"Berg beim Goescheneralpsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22830,149150,"CHE","National Inventory",2011,"For storage only",37,"Aegelsee-Moor auf dem Diemtigbergli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22831,149151,"CHE","National Inventory",2011,"For storage only",37,"La Tourbiere d'Echarlens","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22832,149152,"CHE","National Inventory",2011,"For storage only",37,"La Sagne au sud-ouest du Lieu","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22833,149153,"CHE","National Inventory",2011,"For storage only",37,"Traejen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22834,149154,"CHE","National Inventory",2011,"For storage only",37,"Les Mosses - Rosez","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22835,149155,"CHE","National Inventory",2011,"For storage only",37,"Pontet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22836,149156,"CHE","National Inventory",2011,"For storage only",37,"Moor nordoestlich Mettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22837,149157,"CHE","National Inventory",2011,"For storage only",37,"Les Grands Marais","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22838,149158,"CHE","National Inventory",2011,"For storage only",37,"Feldmoos 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22839,149159,"CHE","National Inventory",2011,"For storage only",37,"Breitmoos 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22840,149160,"CHE","National Inventory",2011,"For storage only",37,"Moor nordoestlich Hochraejen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22841,149161,"CHE","National Inventory",2011,"For storage only",37,"Petit Sauvage","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22842,149162,"CHE","National Inventory",2011,"For storage only",37,"La Mosse d'en Bas","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22843,149163,"CHE","National Inventory",2011,"For storage only",37,"Les Sagnes du Sentier","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22844,149164,"CHE","National Inventory",2011,"For storage only",37,"Les Bouleyres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22845,149165,"CHE","National Inventory",2011,"For storage only",37,"Derriere la Cote, sud-est","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22846,149166,"CHE","National Inventory",2011,"For storage only",37,"Moore und Seen bei Brustplaetz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22847,149167,"CHE","National Inventory",2011,"For storage only",37,"Chuchifang","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22848,149168,"CHE","National Inventory",2011,"For storage only",37,"Ufem Sand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22849,149169,"CHE","National Inventory",2011,"For storage only",37,"Derriere la Cote, sud-ouest","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22850,149170,"CHE","National Inventory",2011,"For storage only",37,"Les Tourbieres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22851,149171,"CHE","National Inventory",2011,"For storage only",37,"La Sagne du Campe","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22852,149172,"CHE","National Inventory",2011,"For storage only",37,"Moor bei Aelbi Flue","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22853,149173,"CHE","National Inventory",2011,"For storage only",37,"Moor beim Fysteren Graben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22854,149174,"CHE","National Inventory",2011,"For storage only",37,"La Thomassette","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22855,149175,"CHE","National Inventory",2011,"For storage only",37,"Bruchsee auf dem Jaunpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22856,149176,"CHE","National Inventory",2011,"For storage only",37,"Moor noerdlich Toffelsweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22857,149177,"CHE","National Inventory",2011,"For storage only",37,"Station Wengernalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22858,149178,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere des Alpettes","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22859,149179,"CHE","National Inventory",2011,"For storage only",37,"La Bursine","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22860,149180,"CHE","National Inventory",2011,"For storage only",37,"Chaenelegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22861,149181,"CHE","National Inventory",2011,"For storage only",37,"Sagne de Pre Rodet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22862,149182,"CHE","National Inventory",2011,"For storage only",37,"Sagnes de la Burtigniere","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22863,149183,"CHE","National Inventory",2011,"For storage only",37,"Niremont, Arete nord","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22864,149184,"CHE","National Inventory",2011,"For storage only",37,"Sparemoos/Tots Maedli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22865,149185,"CHE","National Inventory",2011,"For storage only",37,"Gros Mont","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22866,149186,"CHE","National Inventory",2011,"For storage only",37,"Moore suedwestlich Tolmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22867,149187,"CHE","National Inventory",2011,"For storage only",37,"Bois du Carre","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22868,149188,"CHE","National Inventory",2011,"For storage only",37,"Niremont, Arete ouest","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22869,149189,"CHE","National Inventory",2011,"For storage only",37,"Cadagno di fuori","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22870,149190,"CHE","National Inventory",2011,"For storage only",37,"Daelmoos Achseten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22871,149191,"CHE","National Inventory",2011,"For storage only",37,"Lac de Lussy","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22872,149192,"CHE","National Inventory",2011,"For storage only",37,"Baerfel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22873,149193,"CHE","National Inventory",2011,"For storage only",37,"Bois du Marchairuz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22874,149194,"CHE","National Inventory",2011,"For storage only",37,"Petits Plats","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22875,149195,"CHE","National Inventory",2011,"For storage only",37,"Lai Neir","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22876,149196,"CHE","National Inventory",2011,"For storage only",37,"Bois des Cent Toises","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22877,149197,"CHE","National Inventory",2011,"For storage only",37,"Pian Segno","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22878,149198,"CHE","National Inventory",2011,"For storage only",37,"Pian Secco","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22879,149199,"CHE","National Inventory",2011,"For storage only",37,"Paleis","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22880,149200,"CHE","National Inventory",2011,"For storage only",37,"Frodalera","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22881,149201,"CHE","National Inventory",2011,"For storage only",37,"Alp Flix","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22882,149202,"CHE","National Inventory",2011,"For storage only",37,"Pe d'Munt/Prade","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22883,149203,"CHE","National Inventory",2011,"For storage only",37,"Devin des Dailles","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22884,149204,"CHE","National Inventory",2011,"For storage only",37,"Vall' Ambrosa","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22885,149205,"CHE","National Inventory",2011,"For storage only",37,"Campra di la","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22886,149206,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere au sud-est de Fruence","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22887,149207,"CHE","National Inventory",2011,"For storage only",37,"Understeinberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22888,149208,"CHE","National Inventory",2011,"For storage only",37,"Saanenmoeser/Daelweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22889,149209,"CHE","National Inventory",2011,"For storage only",37,"Choma Suot - Palued Chape","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22890,149210,"CHE","National Inventory",2011,"For storage only",37,"Stazer Wald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22891,149211,"CHE","National Inventory",2011,"For storage only",37,"Piano della Bolla","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22892,149212,"CHE","National Inventory",2011,"For storage only",37,"Mottone di Garzonera","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22893,149213,"CHE","National Inventory",2011,"For storage only",37,"Choma Sur","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22894,149214,"CHE","National Inventory",2011,"For storage only",37,"Lej da Staz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22895,149215,"CHE","National Inventory",2011,"For storage only",37,"Creux du Croue","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22896,149216,"CHE","National Inventory",2011,"For storage only",37,"Plaun da las Mujas","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22897,149217,"CHE","National Inventory",2011,"For storage only",37,"Mauntschas","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22898,149218,"CHE","National Inventory",2011,"For storage only",37,"Sass de la Golp (Lucomagno)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22899,149219,"CHE","National Inventory",2011,"For storage only",37,"Bedrina","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22900,149220,"CHE","National Inventory",2011,"For storage only",37,"Filfalle","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22901,149221,"CHE","National Inventory",2011,"For storage only",37,"Marais Rouge","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22902,149222,"CHE","National Inventory",2011,"For storage only",37,"Ruewlispass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22903,149223,"CHE","National Inventory",2011,"For storage only",37,"God Surlej","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22904,149224,"CHE","National Inventory",2011,"For storage only",37,"Bolle di Piana Selva","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22905,149225,"CHE","National Inventory",2011,"For storage only",37,"Pian Casuleta","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22906,149226,"CHE","National Inventory",2011,"For storage only",37,"Bosch de San Remo","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22907,149227,"CHE","National Inventory",2011,"For storage only",37,"Riere la Givrine","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22908,149228,"CHE","National Inventory",2011,"For storage only",37,"Vel (Gribbio)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22909,149229,"CHE","National Inventory",2011,"For storage only",37,"Moor oberhalb Geilsbueel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22910,149230,"CHE","National Inventory",2011,"For storage only",37,"Lagh Doss","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22911,149231,"CHE","National Inventory",2011,"For storage only",37,"La Trelasse","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22912,149232,"CHE","National Inventory",2011,"For storage only",37,"Suossa","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22913,149233,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere sous les Plans","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22914,149234,"CHE","National Inventory",2011,"For storage only",37,"Moore suedoestlich Haslerberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22915,149235,"CHE","National Inventory",2011,"For storage only",37,"Moore auf Betelberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22916,149236,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere a l'est de la Lecherette","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22917,149237,"CHE","National Inventory",2011,"For storage only",37,"Communs des Mosses, ouest","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22918,149238,"CHE","National Inventory",2011,"For storage only",37,"Communs des Mosses, est","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22919,149239,"CHE","National Inventory",2011,"For storage only",37,"Tourbiere de Pra Cornet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22920,149240,"CHE","National Inventory",2011,"For storage only",37,"Passo del Maloja/Aira da la Palza","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22921,149241,"CHE","National Inventory",2011,"For storage only",37,"Zwischen Malojapass und Val da Pila","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22922,149242,"CHE","National Inventory",2011,"For storage only",37,"Col des Mosses","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22923,149243,"CHE","National Inventory",2011,"For storage only",37,"Lauenensee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22924,149245,"CHE","National Inventory",2011,"For storage only",37,"Plansena (Val da Camp)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22925,149246,"CHE","National Inventory",2011,"For storage only",37,"Aletschwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22926,149247,"CHE","National Inventory",2011,"For storage only",37,"Bosch da la Furcela","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22927,149248,"CHE","National Inventory",2011,"For storage only",37,"Flesch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22928,149249,"CHE","National Inventory",2011,"For storage only",37,"Alpe di Sceng","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22929,149250,"CHE","National Inventory",2011,"For storage only",37,"Bolle di Pianazzora","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22930,149251,"CHE","National Inventory",2011,"For storage only",37,"Piano sopra Visletto","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22931,149252,"CHE","National Inventory",2011,"For storage only",37,"Pian di Scignan","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22932,149253,"CHE","National Inventory",2011,"For storage only",37,"Simplonpass/Hopschusee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22933,149254,"CHE","National Inventory",2011,"For storage only",37,"Boniger See","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22934,149255,"CHE","National Inventory",2011,"For storage only",37,"Pian Segna","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22935,149256,"CHE","National Inventory",2011,"For storage only",37,"La Maraiche de Plex","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22936,149257,"CHE","National Inventory",2011,"For storage only",37,"Gola di Lago","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22937,149258,"CHE","National Inventory",2011,"For storage only",37,"Gouille Verte","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22938,149259,"CHE","National Inventory",2011,"For storage only",37,"Lac de Champex","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22939,149260,"CHE","National Inventory",2011,"For storage only",37,"Erbagni","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22940,149261,"CHE","National Inventory",2011,"For storage only",37,"Les Mosses de la Rogivue","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22941,149262,"CHE","National Inventory",2011,"For storage only",37,"Les Tenasses","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22942,149263,"CHE","National Inventory",2011,"For storage only",37,"Plattner Berga","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22943,149264,"CHE","National Inventory",2011,"For storage only",37,"Rüwlisepass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22944,149265,"CHE","National Inventory",2011,"For storage only",37,"Alp Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22945,149266,"CHE","National Inventory",2011,"For storage only",37,"Filfalle","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22946,149267,"CHE","National Inventory",2011,"For storage only",37,"Marais de Bercher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22947,149268,"CHE","National Inventory",2011,"For storage only",37,"Cua Boussan","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22948,149269,"CHE","National Inventory",2011,"For storage only",37,"Gletti / Hubelboda","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22949,149270,"CHE","National Inventory",2011,"For storage only",37,"Bolle di Piana Selva","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22950,149271,"CHE","National Inventory",2011,"For storage only",37,"Bolle di Paltano","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22951,149272,"CHE","National Inventory",2011,"For storage only",37,"Fäng / Hinder der Egg / Göüch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22952,149273,"CHE","National Inventory",2011,"For storage only",37,"Barscheinz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22953,149274,"CHE","National Inventory",2011,"For storage only",37,"Addi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22954,149275,"CHE","National Inventory",2011,"For storage only",37,"Carà-Foppa","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22955,149276,"CHE","National Inventory",2011,"For storage only",37,"Vél (Gribbio)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22956,149277,"CHE","National Inventory",2011,"For storage only",37,"Moore oberhalb Geilsbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22957,149278,"CHE","National Inventory",2011,"For storage only",37,"Cò","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22958,149279,"CHE","National Inventory",2011,"For storage only",37,"Büelberg / Würtnere","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22959,149280,"CHE","National Inventory",2011,"For storage only",37,"Bosch de San Remo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22960,149281,"CHE","National Inventory",2011,"For storage only",37,"Alpe Zaria","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22961,149282,"CHE","National Inventory",2011,"For storage only",37,"Tgavretga","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22962,149283,"CHE","National Inventory",2011,"For storage only",37,"Cuolmens","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22963,149284,"CHE","National Inventory",2011,"For storage only",37,"Cheerweid / Ufem Lähe","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22964,149285,"CHE","National Inventory",2011,"For storage only",37,"Lagh Doss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22965,149286,"CHE","National Inventory",2011,"For storage only",37,"Chlusi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22966,149287,"CHE","National Inventory",2011,"For storage only",37,"Spittelmatte","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22967,149288,"CHE","National Inventory",2011,"For storage only",37,"Lochberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22968,149289,"CHE","National Inventory",2011,"For storage only",37,"Mot Scalotta","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22969,149290,"CHE","National Inventory",2011,"For storage only",37,"Jufer Alpa","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22970,149291,"CHE","National Inventory",2011,"For storage only",37,"Tourbière sous les Plans - Les Tésailles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22971,149292,"CHE","National Inventory",2011,"For storage only",37,"Am Eva dal Sett","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22972,149293,"CHE","National Inventory",2011,"For storage only",37,"Moore westlich Hubel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22973,149294,"CHE","National Inventory",2011,"For storage only",37,"Klöpflisberg Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22974,149295,"CHE","National Inventory",2011,"For storage only",37,"Monts Chevreuils","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22975,149296,"CHE","National Inventory",2011,"For storage only",37,"Verengo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22976,149297,"CHE","National Inventory",2011,"For storage only",37,"Garti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22977,149298,"CHE","National Inventory",2011,"For storage only",37,"Moore auf Betelberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22978,149299,"CHE","National Inventory",2011,"For storage only",37,"Chalcheras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22979,149300,"CHE","National Inventory",2011,"For storage only",37,"Moore südöstlich Haslerberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22980,149301,"CHE","National Inventory",2011,"For storage only",37,"Alp Tgavretga","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22981,149302,"CHE","National Inventory",2011,"For storage only",37,"Portweid Golderne","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22982,149303,"CHE","National Inventory",2011,"For storage only",37,"Grydmeder, Chaslepalgg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22983,149304,"CHE","National Inventory",2011,"For storage only",37,"Moor östlich Trütlisbergpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22984,149305,"CHE","National Inventory",2011,"For storage only",37,"Communs des Mosses, est de la route","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22985,149306,"CHE","National Inventory",2011,"For storage only",37,"Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22986,149307,"CHE","National Inventory",2011,"For storage only",37,"Moore südwestlich Haslerberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22987,149308,"CHE","National Inventory",2011,"For storage only",37,"Tourbière à l'ouest de la Lécherette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22988,149309,"CHE","National Inventory",2011,"For storage only",37,"La Mossette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22989,149310,"CHE","National Inventory",2011,"For storage only",37,"Sattel / Brüchi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22990,149311,"CHE","National Inventory",2011,"For storage only",37,"Corne du Soere","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22991,149312,"CHE","National Inventory",2011,"For storage only",37,"Col des Mosses","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22992,149313,"CHE","National Inventory",2011,"For storage only",37,"Pöriswaldmedli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22993,149314,"CHE","National Inventory",2011,"For storage only",37,"Trüthartsweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22994,149315,"CHE","National Inventory",2011,"For storage only",37,"Rohr","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22995,149316,"CHE","National Inventory",2011,"For storage only",37,"Muotta da Güvè / Chantunatsch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22996,149317,"CHE","National Inventory",2011,"For storage only",37,"Uf de Schibene","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22997,149318,"CHE","National Inventory",2011,"For storage only",37,"Anteinettes d'en Haut","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22998,149319,"CHE","National Inventory",2011,"For storage only",37,"Güvè / Crasta","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22999,149320,"CHE","National Inventory",2011,"For storage only",37,"Ustigwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23000,149321,"CHE","National Inventory",2011,"For storage only",37,"Chatzberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23001,149322,"CHE","National Inventory",2011,"For storage only",37,"Schmidsfang / Satteleggbärgli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23002,149323,"CHE","National Inventory",2011,"For storage only",37,"Rysch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23003,149324,"CHE","National Inventory",2011,"For storage only",37,"Val Madris, Preda","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23004,149325,"CHE","National Inventory",2011,"For storage only",37,"Val Fedoz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23005,149326,"CHE","National Inventory",2011,"For storage only",37,"Tourbière de Pra Cornet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23006,149327,"CHE","National Inventory",2011,"For storage only",37,"Stigelbergmad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23007,149328,"CHE","National Inventory",2011,"For storage only",37,"Pâquier Mottier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23008,149329,"CHE","National Inventory",2011,"For storage only",37,"Passo del Maloja / Aira da la Palza","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23009,149330,"CHE","National Inventory",2011,"For storage only",37,"Pöris","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23010,149331,"CHE","National Inventory",2011,"For storage only",37,"Fonds de l'Hongrin","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23011,149332,"CHE","National Inventory",2011,"For storage only",37,"Grandes Charbonnières","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23012,149333,"CHE","National Inventory",2011,"For storage only",37,"Falksmatte / Sodersegg / Dürri","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23013,149334,"CHE","National Inventory",2011,"For storage only",37,"Sonna","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23014,149335,"CHE","National Inventory",2011,"For storage only",37,"am ussere Saligrabe","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23015,149336,"CHE","National Inventory",2011,"For storage only",37,"Tschärzis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23016,149337,"CHE","National Inventory",2011,"For storage only",37,"Lauenensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23017,149338,"CHE","National Inventory",2011,"For storage only",37,"La Muraz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23018,149339,"CHE","National Inventory",2011,"For storage only",37,"Stieretungel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23019,149340,"CHE","National Inventory",2011,"For storage only",37,"Gros Brasset","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23020,149341,"CHE","National Inventory",2011,"For storage only",37,"Färrich","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23021,149342,"CHE","National Inventory",2011,"For storage only",37,"Le Bucley","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23022,149343,"CHE","National Inventory",2011,"For storage only",37,"Les Saviez","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23023,149344,"CHE","National Inventory",2011,"For storage only",37,"Val Fex, Alp Suot","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23024,149345,"CHE","National Inventory",2011,"For storage only",37,"Clos Montet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23025,149346,"CHE","National Inventory",2011,"For storage only",37,"Plansena","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23026,149347,"CHE","National Inventory",2011,"For storage only",37,"L'Aulagniez","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23027,149348,"CHE","National Inventory",2011,"For storage only",37,"Rohr Gsteig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23028,149349,"CHE","National Inventory",2011,"For storage only",37,"Munt da San Franzesch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23029,149350,"CHE","National Inventory",2011,"For storage only",37,"Oxefeld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23030,149351,"CHE","National Inventory",2011,"For storage only",37,"Zubenweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23031,149352,"CHE","National Inventory",2011,"For storage only",37,"Planzalard","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23032,149353,"CHE","National Inventory",2011,"For storage only",37,"Reusch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23033,149354,"CHE","National Inventory",2011,"For storage only",37,"Les Moilles (VD)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23034,149355,"CHE","National Inventory",2011,"For storage only",37,"Retaud","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23035,149356,"CHE","National Inventory",2011,"For storage only",37,"Les Rouvenes","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23036,149357,"CHE","National Inventory",2011,"For storage only",37,"Alpe di Sceng","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23037,149358,"CHE","National Inventory",2011,"For storage only",37,"Larasèd","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23038,149359,"CHE","National Inventory",2011,"For storage only",37,"Les Nicolets","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23039,149360,"CHE","National Inventory",2011,"For storage only",37,"Les Preises","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23040,149361,"CHE","National Inventory",2011,"For storage only",37,"Grand Bataillard","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23041,149362,"CHE","National Inventory",2011,"For storage only",37,"Lanche di Iragna nord","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23042,149363,"CHE","National Inventory",2011,"For storage only",37,"Lanche di Iragna sud","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23043,149364,"CHE","National Inventory",2011,"For storage only",37,"Marais d'Ensex","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23044,149365,"CHE","National Inventory",2011,"For storage only",37,"Alpe Corte Nuovo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23045,149366,"CHE","National Inventory",2011,"For storage only",37,"Les Rigoles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23046,149367,"CHE","National Inventory",2011,"For storage only",37,"Mutt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23047,149368,"CHE","National Inventory",2011,"For storage only",37,"Palü Granda","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23048,149369,"CHE","National Inventory",2011,"For storage only",37,"Les Verneys","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23049,149370,"CHE","National Inventory",2011,"For storage only",37,"Ninda","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23050,149371,"CHE","National Inventory",2011,"For storage only",37,"Boniger See","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23051,149372,"CHE","National Inventory",2011,"For storage only",37,"Prés de Villette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23052,149373,"CHE","National Inventory",2011,"For storage only",37,"Bieltini","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23053,149374,"CHE","National Inventory",2011,"For storage only",37,"Poutafontana","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23054,149375,"CHE","National Inventory",2011,"For storage only",37,"Lac de Morgins","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23055,149376,"CHE","National Inventory",2011,"For storage only",37,"Vers le Marais","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23056,149377,"CHE","National Inventory",2011,"For storage only",37,"Les Moilles (VS)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23057,149378,"CHE","National Inventory",2011,"For storage only",37,"Bochasse","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23058,149379,"CHE","National Inventory",2011,"For storage only",37,"Champoussin","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23059,149380,"CHE","National Inventory",2011,"For storage only",37,"Ar du Tsan","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23060,149381,"CHE","National Inventory",2011,"For storage only",37,"Marais d'Ardon et de Chamoson","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23061,149382,"CHE","National Inventory",2011,"For storage only",37,"Pian Segna","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23062,149383,"CHE","National Inventory",2011,"For storage only",37,"L'Echereuse","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23063,149384,"CHE","National Inventory",2011,"For storage only",37,"Lanca Sant'Antonio","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23064,149385,"CHE","National Inventory",2011,"For storage only",37,"Malcantone","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23065,149386,"CHE","National Inventory",2011,"For storage only",37,"Stagno Piano di Arbigo 2","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23066,149387,"CHE","National Inventory",2011,"For storage only",37,"Piano di Arbigo 5","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23067,149388,"CHE","National Inventory",2011,"For storage only",37,"Vigna Lunga-Trebbione","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23068,149389,"CHE","National Inventory",2011,"For storage only",37,"Isoletta","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23069,149390,"CHE","National Inventory",2011,"For storage only",37,"Barbescio","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23070,149391,"CHE","National Inventory",2011,"For storage only",37,"Bograsso / Bolette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23071,149392,"CHE","National Inventory",2011,"For storage only",37,"Lanche al Pizzante","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23072,149393,"CHE","National Inventory",2011,"For storage only",37,"Canale Demanio","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23073,149394,"CHE","National Inventory",2011,"For storage only",37,"Ciossa Antognini","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23074,149395,"CHE","National Inventory",2011,"For storage only",37,"Stagno Cugnoli Curti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23075,149396,"CHE","National Inventory",2011,"For storage only",37,"Piattone-Lischedo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23076,149397,"CHE","National Inventory",2011,"For storage only",37,"Delta della Maggia","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23077,149398,"CHE","National Inventory",2011,"For storage only",37,"Monti di Medeglia est","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23078,149399,"CHE","National Inventory",2011,"For storage only",37,"Monti di Medeglia ovest","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23079,149400,"CHE","National Inventory",2011,"For storage only",37,"Vouasson","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23080,149401,"CHE","National Inventory",2011,"For storage only",37,"Les Esserts","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23081,149402,"CHE","National Inventory",2011,"For storage only",37,"Gola di Lago","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23082,149403,"CHE","National Inventory",2011,"For storage only",37,"Chevillard","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23083,149404,"CHE","National Inventory",2011,"For storage only",37,"Villette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23084,149405,"CHE","National Inventory",2011,"For storage only",37,"Lac de Champex","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23085,149406,"CHE","National Inventory",2011,"For storage only",37,"Bolle di S. Martino","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23086,149407,"CHE","National Inventory",2011,"For storage only",37,"Pian Casoro","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23087,149408,"CHE","National Inventory",2011,"For storage only",37,"Pre Murin","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23088,149409,"CHE","National Inventory",2011,"For storage only",37,"Molino","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23089,149410,"CHE","National Inventory",2011,"For storage only",37,"Colombera","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23090,149411,"CHE","National Inventory",2011,"For storage only",37,"Pra Coltello","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23091,149412,"CHE","National Inventory",2011,"For storage only",37,"Lischetto Fossèe Seseglio","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22002,149666,"FIN","Birdlife IBA",2010,"For storage only",28,"Elimyssalon luonnonsuojelualue (Ystävyyden puisto)","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22049,150220,"FIN","Birdlife IBA",2010,"For storage only",28,"Krunnien luonnonsuojelualue","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14493,151247,"ESP","Catalonia MEE",2002,"For storage only",28,"Aiguamolls de l`Empordà","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13782,160790,"UKR","RAPPAM",2008,"For storage only",28,"Cherems'kiy","State Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13785,160920,"UKR","RAPPAM",2008,"For storage only",28,"Golosiivskyi Lis (Forest)","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13788,160966,"UKR","RAPPAM",2008,"For storage only",28,"Ichnyans'kiy","Regional Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13793,160999,"UKR","RAPPAM",2008,"For storage only",28,"Kazantypskyi","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13796,161214,"UKR","RAPPAM",2008,"For storage only",28,"Mezins'ka Shveytsariya","Regional Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13797,161304,"UKR","RAPPAM",2008,"For storage only",28,"Opukskyi","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13805,161439,"UKR","RAPPAM",2008,"For storage only",28,"Prypiat-Stokhid","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13800,161439,"UKR","METT",2007,"For storage only",28,"Prypiat-Stokhid","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13803,161439,"UKR","METT",2009,"For storage only",28,"Prypiat-Stokhid","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13802,161439,"UKR","METT",2012,"For storage only",28,"Prypiat-Stokhid","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13806,161467,"UKR","RAPPAM",2008,"For storage only",28,"Rivnens'kiy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13807,161481,"UKR","RAPPAM",2008,"For storage only",28,"Roztochchia","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13811,161555,"UKR","RAPPAM",2008,"For storage only",28,"Skolivs'kiy","State Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13783,161597,"UKR","RAPPAM",2008,"For storage only",28,"Staroguts'kiy","State Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13813,161634,"UKR","RAPPAM",2008,"For storage only",28,"Synevyr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13818,161828,"UKR","RAPPAM",2008,"For storage only",28,"Yavorivskyi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13819,161903,"UKR","RAPPAM",2008,"For storage only",28,"Znesennia","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -23092,166445,"CHE","National Inventory",2011,"For storage only",37,"Frodalera","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23093,166446,"CHE","National Inventory",2011,"For storage only",37,"Alteweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23094,166447,"CHE","National Inventory",2011,"For storage only",37,"Weierwisen / Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23095,166448,"CHE","National Inventory",2011,"For storage only",37,"Ramser Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23096,166449,"CHE","National Inventory",2011,"For storage only",37,"Schaarenwis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23097,166450,"CHE","National Inventory",2011,"For storage only",37,"Espen Riet / Ermatinger Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23098,166451,"CHE","National Inventory",2011,"For storage only",37,"Espi / Hölzli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23099,166452,"CHE","National Inventory",2011,"For storage only",37,"Espen Riet bei Ziegelhof","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23100,166453,"CHE","National Inventory",2011,"For storage only",37,"Etzwiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23101,166454,"CHE","National Inventory",2011,"For storage only",37,"Eschenzer Horn","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23102,166455,"CHE","National Inventory",2011,"For storage only",37,"Truttikerried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23103,166456,"CHE","National Inventory",2011,"For storage only",37,"Neuweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23104,166457,"CHE","National Inventory",2011,"For storage only",37,"Husemersee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23105,166458,"CHE","National Inventory",2011,"For storage only",37,"Oerlinger Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23106,166459,"CHE","National Inventory",2011,"For storage only",37,"Dachsenhuser Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23107,166460,"CHE","National Inventory",2011,"For storage only",37,"Barchetsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23108,166461,"CHE","National Inventory",2011,"For storage only",37,"Bommer Weier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23109,166462,"CHE","National Inventory",2011,"For storage only",37,"Gippinger Grien","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23110,166463,"CHE","National Inventory",2011,"For storage only",37,"Verlandung im Klingnauer Stausee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23111,166464,"CHE","National Inventory",2011,"For storage only",37,"Gurisee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23112,166465,"CHE","National Inventory",2011,"For storage only",37,"Luxburger Bucht","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23113,166466,"CHE","National Inventory",2011,"For storage only",37,"Dürrenbiel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23114,166467,"CHE","National Inventory",2011,"For storage only",37,"Baldisriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23115,166468,"CHE","National Inventory",2011,"For storage only",37,"Weinmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23116,166469,"CHE","National Inventory",2011,"For storage only",37,"Friltschener Riet / Märwiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23117,166470,"CHE","National Inventory",2011,"For storage only",37,"Mettlen Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23118,166471,"CHE","National Inventory",2011,"For storage only",37,"Hudelmoos (SG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23119,166472,"CHE","National Inventory",2011,"For storage only",37,"Überg Mas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23120,166473,"CHE","National Inventory",2011,"For storage only",37,"Neerer See","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23121,166474,"CHE","National Inventory",2011,"For storage only",37,"Neeracher Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23122,166475,"CHE","National Inventory",2011,"For storage only",37,"Warpeltal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23123,166476,"CHE","National Inventory",2011,"For storage only",37,"Altenrhein","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23124,166477,"CHE","National Inventory",2011,"For storage only",37,"Wilener Moos / Hauptwiler Weiher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23125,166478,"CHE","National Inventory",2011,"For storage only",37,"Gärtensberg / Oberholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23126,166479,"CHE","National Inventory",2011,"For storage only",37,"Steinmaurer Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23127,166480,"CHE","National Inventory",2011,"For storage only",37,"Winkler Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23128,166481,"CHE","National Inventory",2011,"For storage only",37,"Buriet / Buechsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23129,166482,"CHE","National Inventory",2011,"For storage only",37,"Huebermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23130,166483,"CHE","National Inventory",2011,"For storage only",37,"Mettmenhasler See","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23131,166484,"CHE","National Inventory",2011,"For storage only",37,"Zuzwiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23132,166485,"CHE","National Inventory",2011,"For storage only",37,"Klotener Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23133,166486,"CHE","National Inventory",2011,"For storage only",37,"Goldenes Tor / Rüti Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23134,166487,"CHE","National Inventory",2011,"For storage only",37,"Schlosswinkel / Peterli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23135,166488,"CHE","National Inventory",2011,"For storage only",37,"Erztal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23136,166489,"CHE","National Inventory",2011,"For storage only",37,"Neuf Etang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23137,166490,"CHE","National Inventory",2011,"For storage only",37,"Boppelser Weid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23138,166491,"CHE","National Inventory",2011,"For storage only",37,"Lenggenwiler Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23139,166492,"CHE","National Inventory",2011,"For storage only",37,"Gstöck / Ifang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23140,166493,"CHE","National Inventory",2011,"For storage only",37,"Hagelriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23141,166494,"CHE","National Inventory",2011,"For storage only",37,"Eigental-Riede","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23142,166495,"CHE","National Inventory",2011,"For storage only",37,"Schlossweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23143,166496,"CHE","National Inventory",2011,"For storage only",37,"Bichelsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23144,166497,"CHE","National Inventory",2011,"For storage only",37,"Ägelsee (TG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23145,166498,"CHE","National Inventory",2011,"For storage only",37,"Mooswangen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23146,166499,"CHE","National Inventory",2011,"For storage only",37,"Andwiler Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23147,166500,"CHE","National Inventory",2011,"For storage only",37,"Rüeggetschwiler Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23148,166501,"CHE","National Inventory",2011,"For storage only",37,"Awiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23149,166502,"CHE","National Inventory",2011,"For storage only",37,"Chatzensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23150,166503,"CHE","National Inventory",2011,"For storage only",37,"Chräenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23151,166504,"CHE","National Inventory",2011,"For storage only",37,"Allmend beim Chatzensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23152,166505,"CHE","National Inventory",2011,"For storage only",37,"Rod","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23153,166506,"CHE","National Inventory",2011,"For storage only",37,"Hänsiried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23154,166507,"CHE","National Inventory",2011,"For storage only",37,"Langenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23155,166508,"CHE","National Inventory",2011,"For storage only",37,"Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23156,166509,"CHE","National Inventory",2011,"For storage only",37,"Moos Schönenhof","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23157,166510,"CHE","National Inventory",2011,"For storage only",37,"Örmis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23158,166511,"CHE","National Inventory",2011,"For storage only",37,"Madetswiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23159,166512,"CHE","National Inventory",2011,"For storage only",37,"Schnäggenwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23160,166513,"CHE","National Inventory",2011,"For storage only",37,"Wollwisli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23161,166514,"CHE","National Inventory",2011,"For storage only",37,"Nördli Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23162,166516,"CHE","National Inventory",2011,"For storage only",37,"Höchstern","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23163,166517,"CHE","National Inventory",2011,"For storage only",37,"Ried Reinisbachtal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23164,166518,"CHE","National Inventory",2011,"For storage only",37,"Girenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23165,166519,"CHE","National Inventory",2011,"For storage only",37,"Egelsee / Seematten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23166,166520,"CHE","National Inventory",2011,"For storage only",37,"Wildert","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23167,166521,"CHE","National Inventory",2011,"For storage only",37,"Moosanger","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23168,166522,"CHE","National Inventory",2011,"For storage only",37,"Russiker Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23169,166523,"CHE","National Inventory",2011,"For storage only",37,"Chrutzelried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23170,166524,"CHE","National Inventory",2011,"For storage only",37,"Vordersenis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23171,166525,"CHE","National Inventory",2011,"For storage only",37,"Böschen / Suelen / Stritgfänn","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23172,166526,"CHE","National Inventory",2011,"For storage only",37,"Hofguetmoor","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23173,166527,"CHE","National Inventory",2011,"For storage only",37,"Tote Reuss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23174,166528,"CHE","National Inventory",2011,"For storage only",37,"Riet bei Ganterschwil","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23175,166529,"CHE","National Inventory",2011,"For storage only",37,"Rütermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23176,166530,"CHE","National Inventory",2011,"For storage only",37,"Hinterbitzi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23177,166531,"CHE","National Inventory",2011,"For storage only",37,"Hoperen / Hirzerenweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23178,166532,"CHE","National Inventory",2011,"For storage only",37,"Hueb","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23179,166533,"CHE","National Inventory",2011,"For storage only",37,"Giwitzenried / Bächliried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23180,166534,"CHE","National Inventory",2011,"For storage only",37,"Glattenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23181,166535,"CHE","National Inventory",2011,"For storage only",37,"Storen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23182,166536,"CHE","National Inventory",2011,"For storage only",37,"Fischbacher Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23183,166537,"CHE","National Inventory",2011,"For storage only",37,"Robenhauserriet / Pfäffikersee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23184,166538,"CHE","National Inventory",2011,"For storage only",37,"Bannriet Nordost","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23185,166539,"CHE","National Inventory",2011,"For storage only",37,"Langmoos / Foren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23186,166540,"CHE","National Inventory",2011,"For storage only",37,"Bannriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23187,166541,"CHE","National Inventory",2011,"For storage only",37,"Gross Moos / Rietlerwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23188,166542,"CHE","National Inventory",2011,"For storage only",37,"Hofschür","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23189,166543,"CHE","National Inventory",2011,"For storage only",37,"Zisetsriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23190,166544,"CHE","National Inventory",2011,"For storage only",37,"Grabenriet / Grossriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23191,166545,"CHE","National Inventory",2011,"For storage only",37,"Pfaffenbrunnen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23192,166546,"CHE","National Inventory",2011,"For storage only",37,"Spitzmäder","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23193,166547,"CHE","National Inventory",2011,"For storage only",37,"Hofhalden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23194,166548,"CHE","National Inventory",2011,"For storage only",37,"Höch Hirschberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23195,166549,"CHE","National Inventory",2011,"For storage only",37,"Hüttenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23196,166550,"CHE","National Inventory",2011,"For storage only",37,"Näppenacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23197,166551,"CHE","National Inventory",2011,"For storage only",37,"Sackriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23198,166552,"CHE","National Inventory",2011,"For storage only",37,"Seewisen / Hostig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23199,166553,"CHE","National Inventory",2011,"For storage only",37,"Bergholzriet / Ankenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23200,166554,"CHE","National Inventory",2011,"For storage only",37,"Beerimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23201,166555,"CHE","National Inventory",2011,"For storage only",37,"Gontenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23202,166556,"CHE","National Inventory",2011,"For storage only",37,"Rottenschwilermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23203,166557,"CHE","National Inventory",2011,"For storage only",37,"Seewadel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23204,166558,"CHE","National Inventory",2011,"For storage only",37,"Fronwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23205,166559,"CHE","National Inventory",2011,"For storage only",37,"Fischenthaler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23206,166560,"CHE","National Inventory",2011,"For storage only",37,"Wappenswiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23207,166561,"CHE","National Inventory",2011,"For storage only",37,"Hüttenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23208,166562,"CHE","National Inventory",2011,"For storage only",37,"Boniswiler-Seenger Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23209,166563,"CHE","National Inventory",2011,"For storage only",37,"Seelisberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23210,166564,"CHE","National Inventory",2011,"For storage only",37,"Stille Reuss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23211,166565,"CHE","National Inventory",2011,"For storage only",37,"Schnäggenmatten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23212,166566,"CHE","National Inventory",2011,"For storage only",37,"Hütten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23213,166567,"CHE","National Inventory",2011,"For storage only",37,"Östl. Haumösli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23214,166568,"CHE","National Inventory",2011,"For storage only",37,"Rottenschwiler Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23215,166569,"CHE","National Inventory",2011,"For storage only",37,"Schachen Oberlunkhofen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23216,166570,"CHE","National Inventory",2011,"For storage only",37,"Gschwend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23217,166571,"CHE","National Inventory",2011,"For storage only",37,"Moor nordwestlich Gisleren / Schönauwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23218,166572,"CHE","National Inventory",2011,"For storage only",37,"Wetziker Riet / Oberhöfler Riet / Schwändi / Hiwiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23219,166573,"CHE","National Inventory",2011,"For storage only",37,"Hinter Guldenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23220,166574,"CHE","National Inventory",2011,"For storage only",37,"Egg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23221,166575,"CHE","National Inventory",2011,"For storage only",37,"Ambitzgi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23222,166576,"CHE","National Inventory",2011,"For storage only",37,"Löchli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23223,166577,"CHE","National Inventory",2011,"For storage only",37,"Obersee Althäusern","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23224,166578,"CHE","National Inventory",2011,"For storage only",37,"Breitmoos (BE)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23225,166579,"CHE","National Inventory",2011,"For storage only",37,"Unter-Schlatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23226,166580,"CHE","National Inventory",2011,"For storage only",37,"Stillert","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23227,166581,"CHE","National Inventory",2011,"For storage only",37,"Untere Fischeren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23228,166582,"CHE","National Inventory",2011,"For storage only",37,"Waldriede am Pfannenstiel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23229,166583,"CHE","National Inventory",2011,"For storage only",37,"Aristauer Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23230,166584,"CHE","National Inventory",2011,"For storage only",37,"Vordere Wartegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23231,166585,"CHE","National Inventory",2011,"For storage only",37,"Forenmösli / Burketwald / Paradisli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23232,166586,"CHE","National Inventory",2011,"For storage only",37,"Freecht","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23233,166587,"CHE","National Inventory",2011,"For storage only",37,"Rüssmatten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23234,166588,"CHE","National Inventory",2011,"For storage only",37,"Rossweid (AI)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23235,166589,"CHE","National Inventory",2011,"For storage only",37,"Bleiken","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23236,166590,"CHE","National Inventory",2011,"For storage only",37,"Burket Wald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23237,166591,"CHE","National Inventory",2011,"For storage only",37,"Salomonstempel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23238,166592,"CHE","National Inventory",2011,"For storage only",37,"Seematten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23239,166593,"CHE","National Inventory",2011,"For storage only",37,"Dos le Cras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23240,166594,"CHE","National Inventory",2011,"For storage only",37,"Ober Bad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23241,166595,"CHE","National Inventory",2011,"For storage only",37,"La Tourbière des Enfers","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23242,166596,"CHE","National Inventory",2011,"For storage only",37,"Burenholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23243,166597,"CHE","National Inventory",2011,"For storage only",37,"Langnauer Berg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23244,166598,"CHE","National Inventory",2011,"For storage only",37,"Bislikerhau-Riede","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23245,166599,"CHE","National Inventory",2011,"For storage only",37,"Moore zwischen Alp Stöck und Gschwend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23246,166600,"CHE","National Inventory",2011,"For storage only",37,"Gattikerweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23247,166601,"CHE","National Inventory",2011,"For storage only",37,"Bergmeilen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23248,166602,"CHE","National Inventory",2011,"For storage only",37,"Gmeimatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23249,166603,"CHE","National Inventory",2011,"For storage only",37,"Plain de Saigne","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23250,166604,"CHE","National Inventory",2011,"For storage only",37,"Potersalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23251,166605,"CHE","National Inventory",2011,"For storage only",37,"Bibelaas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23252,166606,"CHE","National Inventory",2011,"For storage only",37,"Itziker Riet / Reitbacher Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23253,166607,"CHE","National Inventory",2011,"For storage only",37,"Chellen / Allmeindswald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23254,166608,"CHE","National Inventory",2011,"For storage only",37,"Ottenbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23255,166609,"CHE","National Inventory",2011,"For storage only",37,"Sibeneichen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23256,166610,"CHE","National Inventory",2011,"For storage only",37,"Bodenwis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23257,166611,"CHE","National Inventory",2011,"For storage only",37,"Laufenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23258,166612,"CHE","National Inventory",2011,"For storage only",37,"Rickenbacher Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23259,166613,"CHE","National Inventory",2011,"For storage only",37,"Südlich Seehüsli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23260,166614,"CHE","National Inventory",2011,"For storage only",37,"südöstlich Niderlaad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23261,166615,"CHE","National Inventory",2011,"For storage only",37,"Langmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23262,166616,"CHE","National Inventory",2011,"For storage only",37,"Bergli-Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23263,166617,"CHE","National Inventory",2011,"For storage only",37,"Adletshuser Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23264,166618,"CHE","National Inventory",2011,"For storage only",37,"Hell","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23265,166619,"CHE","National Inventory",2011,"For storage only",37,"Unterloch / Grundlosen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23266,166620,"CHE","National Inventory",2011,"For storage only",37,"Ruchweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23267,166621,"CHE","National Inventory",2011,"For storage only",37,"Cholwald Schwägalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23268,166622,"CHE","National Inventory",2011,"For storage only",37,"Lunnergrien","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23269,166623,"CHE","National Inventory",2011,"For storage only",37,"Schorengrindel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23270,166624,"CHE","National Inventory",2011,"For storage only",37,"Stumpenhölzlimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23271,166625,"CHE","National Inventory",2011,"For storage only",37,"nordöstlich Reisenbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23272,166626,"CHE","National Inventory",2011,"For storage only",37,"Lutiker Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23273,166627,"CHE","National Inventory",2011,"For storage only",37,"Riede im Jonental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23274,166628,"CHE","National Inventory",2011,"For storage only",37,"Moore auf dem Rickenpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23275,166629,"CHE","National Inventory",2011,"For storage only",37,"Sennweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23276,166630,"CHE","National Inventory",2011,"For storage only",37,"Hexengraben","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23277,166631,"CHE","National Inventory",2011,"For storage only",37,"Hüsliriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23278,166632,"CHE","National Inventory",2011,"For storage only",37,"Les Embreux","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23279,166633,"CHE","National Inventory",2011,"For storage only",37,"Moore bei Steig und Schartegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23280,166634,"CHE","National Inventory",2011,"For storage only",37,"Gmeindrüti-Ried / Moosried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23281,166635,"CHE","National Inventory",2011,"For storage only",37,"Unter Hüttenbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23282,166636,"CHE","National Inventory",2011,"For storage only",37,"Kämmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23283,166637,"CHE","National Inventory",2011,"For storage only",37,"Schnabellücke","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23284,166638,"CHE","National Inventory",2011,"For storage only",37,"Chlosterwald-Moore / Ampferenbödeli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23285,166639,"CHE","National Inventory",2011,"For storage only",37,"Moore im Trämelloch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23286,166640,"CHE","National Inventory",2011,"For storage only",37,"Mattliriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23287,166641,"CHE","National Inventory",2011,"For storage only",37,"östlich Hinter Schümberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23288,166642,"CHE","National Inventory",2011,"For storage only",37,"Ütziker Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23289,166643,"CHE","National Inventory",2011,"For storage only",37,"Le Droit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23290,166644,"CHE","National Inventory",2011,"For storage only",37,"Egelsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23291,166645,"CHE","National Inventory",2011,"For storage only",37,"Hüttenbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23292,166646,"CHE","National Inventory",2011,"For storage only",37,"Grossweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23293,166647,"CHE","National Inventory",2011,"For storage only",37,"Auen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23294,166648,"CHE","National Inventory",2011,"For storage only",37,"Seeweidsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23295,166649,"CHE","National Inventory",2011,"For storage only",37,"Eggweid auf dem Ricken","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23296,166650,"CHE","National Inventory",2011,"For storage only",37,"Mösli / Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23297,166651,"CHE","National Inventory",2011,"For storage only",37,"Lunnerallmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23298,166653,"CHE","National Inventory",2011,"For storage only",37,"Turbenried im Rütiwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23299,166654,"CHE","National Inventory",2011,"For storage only",37,"Müslen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23300,166655,"CHE","National Inventory",2011,"For storage only",37,"Grosswisli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23301,166656,"CHE","National Inventory",2011,"For storage only",37,"Les Royes","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23302,166657,"CHE","National Inventory",2011,"For storage only",37,"Altmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23303,166658,"CHE","National Inventory",2011,"For storage only",37,"Am Ausee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23304,166659,"CHE","National Inventory",2011,"For storage only",37,"Tüfmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23305,166660,"CHE","National Inventory",2011,"For storage only",37,"Chrutzelen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23306,166661,"CHE","National Inventory",2011,"For storage only",37,"Chamm","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23307,166662,"CHE","National Inventory",2011,"For storage only",37,"Vorder Au","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23308,166663,"CHE","National Inventory",2011,"For storage only",37,"Hagnauer Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23309,166664,"CHE","National Inventory",2011,"For storage only",37,"Gros Bois Derrière","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23310,166665,"CHE","National Inventory",2011,"For storage only",37,"Saignes des Fondrais","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23311,166666,"CHE","National Inventory",2011,"For storage only",37,"Galgenmad / Schribersmad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23312,166667,"CHE","National Inventory",2011,"For storage only",37,"Meilacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23313,166668,"CHE","National Inventory",2011,"For storage only",37,"Rüss-Spitz / Wannhüseren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23314,166669,"CHE","National Inventory",2011,"For storage only",37,"Usser Wald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23315,166670,"CHE","National Inventory",2011,"For storage only",37,"Etang de la Gruère","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23316,166671,"CHE","National Inventory",2011,"For storage only",37,"Schattenhalbriet / Zilmüslen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23317,166672,"CHE","National Inventory",2011,"For storage only",37,"Grindel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23318,166673,"CHE","National Inventory",2011,"For storage only",37,"Gruen / Neuhüttli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23319,166674,"CHE","National Inventory",2011,"For storage only",37,"Tüfiried / Katzentobel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23320,166675,"CHE","National Inventory",2011,"For storage only",37,"Ägelsee (ZH)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23321,166676,"CHE","National Inventory",2011,"For storage only",37,"Hinterschluchen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23322,166677,"CHE","National Inventory",2011,"For storage only",37,"Grindelmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23323,166678,"CHE","National Inventory",2011,"For storage only",37,"Feldbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23324,166679,"CHE","National Inventory",2011,"For storage only",37,"Schoren Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23325,166680,"CHE","National Inventory",2011,"For storage only",37,"Brüggen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23326,166681,"CHE","National Inventory",2011,"For storage only",37,"Joner Wald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23327,166682,"CHE","National Inventory",2011,"For storage only",37,"Johannisberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23328,166683,"CHE","National Inventory",2011,"For storage only",37,"Rorholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23329,166684,"CHE","National Inventory",2011,"For storage only",37,"Hagenholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23330,166685,"CHE","National Inventory",2011,"For storage only",37,"Schwellbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23331,166686,"CHE","National Inventory",2011,"For storage only",37,"Friessen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23332,166687,"CHE","National Inventory",2011,"For storage only",37,"Pâturage du Droit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23333,166688,"CHE","National Inventory",2011,"For storage only",37,"nordöstlich Chüeboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23334,166689,"CHE","National Inventory",2011,"For storage only",37,"Arbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23335,166690,"CHE","National Inventory",2011,"For storage only",37,"südlich Rüeggenschlee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23336,166691,"CHE","National Inventory",2011,"For storage only",37,"Feldmoos (BE)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23337,166692,"CHE","National Inventory",2011,"For storage only",37,"Chlosterwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23338,166693,"CHE","National Inventory",2011,"For storage only",37,"Chrutzelenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23339,166694,"CHE","National Inventory",2011,"For storage only",37,"Erlen (SZ)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23340,166695,"CHE","National Inventory",2011,"For storage only",37,"Streuweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23341,166696,"CHE","National Inventory",2011,"For storage only",37,"Joner Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23342,166697,"CHE","National Inventory",2011,"For storage only",37,"Östlich Ändenholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23343,166698,"CHE","National Inventory",2011,"For storage only",37,"Risipass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23344,166699,"CHE","National Inventory",2011,"For storage only",37,"Geeristegried / Spitzenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23345,166700,"CHE","National Inventory",2011,"For storage only",37,"Busskircher Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23346,166701,"CHE","National Inventory",2011,"For storage only",37,"Schmerikoner Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23347,166702,"CHE","National Inventory",2011,"For storage only",37,"Moos südlich Grünholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23348,166703,"CHE","National Inventory",2011,"For storage only",37,"Sennhus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23349,166704,"CHE","National Inventory",2011,"For storage only",37,"Wurmsbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23350,166705,"CHE","National Inventory",2011,"For storage only",37,"Benkner-, Burger- und Kaltbrunner Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23351,166706,"CHE","National Inventory",2011,"For storage only",37,"Schneit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23352,166707,"CHE","National Inventory",2011,"For storage only",37,"Ägertenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23353,166708,"CHE","National Inventory",2011,"For storage only",37,"Frauenwinkel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23354,166709,"CHE","National Inventory",2011,"For storage only",37,"Häglimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23355,166710,"CHE","National Inventory",2011,"For storage only",37,"Seezopf / Seematt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23356,166711,"CHE","National Inventory",2011,"For storage only",37,"Oberhag / Müselen / Langriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23357,166712,"CHE","National Inventory",2011,"For storage only",37,"Tanzboden-Guetental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23358,166713,"CHE","National Inventory",2011,"For storage only",37,"Dreihütten / Gamplüt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23359,166714,"CHE","National Inventory",2011,"For storage only",37,"Bätzimatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23360,166715,"CHE","National Inventory",2011,"For storage only",37,"Tourbières de Chanteraine","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23361,166716,"CHE","National Inventory",2011,"For storage only",37,"Gräppelen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23362,166717,"CHE","National Inventory",2011,"For storage only",37,"Ijental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23363,166718,"CHE","National Inventory",2011,"For storage only",37,"Frauental III","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23364,166719,"CHE","National Inventory",2011,"For storage only",37,"Rüschenzopf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23365,166720,"CHE","National Inventory",2011,"For storage only",37,"Rechbergmoosbachriede","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28039,166725,"ARG","METT",2003,"For storage only",28,"Urugua-í","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -61,166726,"ARG","Valdiviana",2001,"For storage only",3,"Lago Puelo","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -77,166727,"ARG","METT",2003,"For storage only",3,"Monte León","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -166,166738,"COL","AEMAPPS",2016,"For storage only",6,"Sistema Delta Estuarino del Río Magdalena, Ciénaga Grande de Santa Marta","Ramsar Site, Wetland of International Importance","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -11218,166739,"COG","Birdlife IBA",2007,"For storage only",28,"Réserve Communautaire du Lac Télé/Likouala-aux-Herbes","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13337,166757,"TUR","Birdlife IBA",2011,"For storage only",28,"Kizilirmak Delta","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1374,166758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avon Valley","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1376,166759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caithness Lochs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1375,166760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsydd Mon a Llyn","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -13787,166779,"UKR","RAPPAM",2008,"For storage only",28,"Gorgany Range","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13812,166780,"UKR","RAPPAM",2008,"For storage only",28,"Svyaty Gory","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12009,166790,"MNG","RAPPAM",2005,"For storage only",28,"Khoridol Saridag","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12005,166791,"MNG","METT",2012,"For storage only",28,"Har Us Nuur","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12003,166791,"MNG","METT",2005,"For storage only",28,"Har Us Nuur","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12004,166791,"MNG","RAPPAM",2005,"For storage only",28,"Har Us Nuur","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12016,166792,"MNG","RAPPAM",2005,"For storage only",28,"Noyon Khangai","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11991,166794,"MNG","METT",2013,"For storage only",28,"Toson Hulslai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15185,166863,"BLZ","METT",2013,"For storage only",29,"Crooked Tree Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15184,166863,"BLZ","METT",2010,"For storage only",29,"Crooked Tree Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15182,166863,"BLZ","Belize MEE",2006,"For storage only",29,"Crooked Tree Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15183,166863,"BLZ","Belize MEE",2009,"For storage only",29,"Crooked Tree Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -1336,166871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dornoch Firth and Loch Fleet","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1334,166872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Larne Lough","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1333,166874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Midland Meres and Mosses Phase 2","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1328,166875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moray and Nairn Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1323,166876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Spey - Insh Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1335,166877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Lough Erne","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -20841,166881,"MDG","IEG",2001,"For storage only",34,"Parc national Tsimanampesotse","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -11208,166889,"COD","RAPPAM",2010,"For storage only",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11205,166889,"COD","METT",2007,"For storage only",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11207,166889,"COD","METT",0,"For storage only",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11210,166889,"COD","Birdlife IBA",2001,"For storage only",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11206,166889,"COD","METT",2008,"For storage only",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13784,166901,"UKR","Birdlife IBA",2013,"For storage only",28,"Northern Part of the Dniester Liman","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13809,166906,"UKR","METT",2009,"For storage only",28,"Shatsk Lakes","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1322,166919,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pettigoe Plateau","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -28092,166969,"MEX","METT",2008,"For storage only",28,"La Sepultura","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28095,166969,"MEX","METT",2006,"For storage only",28,"La Sepultura","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20752,167051,"MEX","METT",2014,"For storage only",33,"Los Tuxtlas","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -13302,167070,"TKM","METT",2005,"For storage only",28,"Amu-Darya","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13301,167070,"TKM","METT",2003,"For storage only",28,"Amu-Darya","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13303,167070,"TKM","METT",2012,"For storage only",28,"Amu-Darya","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13312,167070,"TKM","METT",0,"For storage only",28,"Amu-Darya","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13313,167071,"TKM","METT",0,"For storage only",28,"Badkhyz","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13305,167071,"TKM","METT",2003,"For storage only",28,"Badkhyz","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13306,167071,"TKM","METT",2005,"For storage only",28,"Badkhyz","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13304,167071,"TKM","METT",2012,"For storage only",28,"Badkhyz","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11839,167076,"KGZ","Birdlife IBA",2006,"For storage only",28,"Chatyrkul","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13293,167090,"TJK","Birdlife IBA",2006,"For storage only",28,"","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13307,167099,"TKM","METT",2012,"For storage only",28,"Hazar","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13309,167099,"TKM","METT",2009,"For storage only",28,"Hazar","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13308,167099,"TKM","METT",2005,"For storage only",28,"Hazar","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13959,167102,"UZB","METT",2008,"For storage only",28,"Kitab Geological NR","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13958,167102,"UZB","METT",2006,"For storage only",28,"Kitab Geological NR","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13314,167106,"TKM","METT",0,"For storage only",28,"Kopetdag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13310,167106,"TKM","METT",2012,"For storage only",28,"Kopetdag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13315,167107,"TKM","METT",0,"For storage only",28,"Kugitang","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11841,167118,"KGZ","METT",2013,"For storage only",28,"Sarychat-Ertash NR","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13299,167121,"TJK","METT",2011,"For storage only",28," - ","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13298,167121,"TJK","METT",2008,"For storage only",28," - ","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13297,167121,"TJK","METT",2004,"For storage only",28," - ","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11842,167122,"KGZ","Birdlife IBA",2006,"For storage only",28,"Sonkul","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13319,167124,"TKM","METT",2005,"For storage only",28,"Sunt-Khasardag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13316,167124,"TKM","METT",0,"For storage only",28,"Sunt-Khasardag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13318,167124,"TKM","METT",2003,"For storage only",28,"Sunt-Khasardag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13320,167124,"TKM","METT",2012,"For storage only",28,"Sunt-Khasardag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1390,168119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pevensey Levels","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1067,168122,"CRI","SINAD",2016,"For storage only",14,"Volcán Turrialba","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1017,168129,"CRI","SINAD",2016,"For storage only",14,"Corredor Fronterizo","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1000,168136,"CRI","SINAD",2016,"For storage only",14,"Barú","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1043,168146,"CRI","SINAD",2016,"For storage only",14,"Mata Redonda","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -11568,168198,"FRA","GOBI Survey",2006,"For storage only",28,"Pays de Fontainebleau","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11569,168198,"FRA","Stockholm BR Survey",2008,"For storage only",28,"Pays de Fontainebleau","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11727,168201,"JOR","GOBI Survey",2006,"For storage only",28,"Dana Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21415,168204,"ZAF","GOBI Survey",2006,"For storage only",28,"Kogelberg Biosphere Reserve","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12183,168212,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Miraflor/Moropotente","Landscape and/or Marine Protected","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12182,168212,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Miraflor/Moropotente","Landscape and/or Marine Protected","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -768,168214,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica União","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -419,168214,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica União","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -12268,168239,"NZL","WHA Outlook Report",2014,"For storage only",28,"New Zealand Sub-Antarctic Islands","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12800,168241,"RUS","WHA Outlook Report",2014,"For storage only",28,"Golden Mountains of Altai","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15120,168242,"SLB","WHA Outlook Report",2014,"For storage only",28,"East Rennell","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14476,168274,"ECU","Ecuador MEE",1999,"For storage only",28,"Pululahua","Geobotanical Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -892,168275,"PER","METT",2016,"For storage only",13,"Aledaño a la Bocatoma del Canal Nuevo Imperial","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -927,168276,"PER","METT",2016,"For storage only",13,"Allpahuayo Mishana","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -958,168278,"PER","METT",2016,"For storage only",13,"Chancaybaños","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -965,168280,"PER","METT",2016,"For storage only",13,"Santiago Comaina","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -23366,168281,"CHE","National Inventory",2011,"For storage only",37,"Chaltenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23367,168282,"CHE","National Inventory",2011,"For storage only",37,"Nuoler Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23368,168283,"CHE","National Inventory",2011,"For storage only",37,"Uffikoner Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23369,168284,"CHE","National Inventory",2011,"For storage only",37,"Moor westlich Unterdorf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23370,168285,"CHE","National Inventory",2011,"For storage only",37,"Wisenfurt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23371,168286,"CHE","National Inventory",2011,"For storage only",37,"Langacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23372,168287,"CHE","National Inventory",2011,"For storage only",37,"Vorder Benkner Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23373,168288,"CHE","National Inventory",2011,"For storage only",37,"Hinterbergried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23374,168289,"CHE","National Inventory",2011,"For storage only",37,"Zimbel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23375,168290,"CHE","National Inventory",2011,"For storage only",37,"Bodmen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23376,168291,"CHE","National Inventory",2011,"For storage only",37,"Sarbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23377,168292,"CHE","National Inventory",2011,"For storage only",37,"Munzenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23378,168293,"CHE","National Inventory",2011,"For storage only",37,"Heiligchrüz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23379,168294,"CHE","National Inventory",2011,"For storage only",37,"Gubelried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23380,168295,"CHE","National Inventory",2011,"For storage only",37,"Au / Hinterlaad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23381,168296,"CHE","National Inventory",2011,"For storage only",37,"Oberschwelli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23382,168297,"CHE","National Inventory",2011,"For storage only",37,"Sagenhölzliriede","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23383,168298,"CHE","National Inventory",2011,"For storage only",37,"Espel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23384,168299,"CHE","National Inventory",2011,"For storage only",37,"Goldach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23385,168300,"CHE","National Inventory",2011,"For storage only",37,"Loch (SG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23386,168301,"CHE","National Inventory",2011,"For storage only",37,"Weberzopf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23387,168302,"CHE","National Inventory",2011,"For storage only",37,"Mülibachried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23388,168303,"CHE","National Inventory",2011,"For storage only",37,"Salegg / Chaltenbach / Rohr","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23389,168304,"CHE","National Inventory",2011,"For storage only",37,"Chälenhof","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23390,168305,"CHE","National Inventory",2011,"For storage only",37,"Schwendiseen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23391,168306,"CHE","National Inventory",2011,"For storage only",37,"Itlimoosweiher / Schöni","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23392,168307,"CHE","National Inventory",2011,"For storage only",37,"Älpli / Eggenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23393,168308,"CHE","National Inventory",2011,"For storage only",37,"Muserholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23394,168309,"CHE","National Inventory",2011,"For storage only",37,"Hüttner Seeli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23395,168310,"CHE","National Inventory",2011,"For storage only",37,"Choller / Sumpf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23396,168311,"CHE","National Inventory",2011,"For storage only",37,"Hirzenbäder / Sommerweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23397,168312,"CHE","National Inventory",2011,"For storage only",37,"Teuffenrohr / Stocklerriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23398,168313,"CHE","National Inventory",2011,"For storage only",37,"Etzelweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23399,168314,"CHE","National Inventory",2011,"For storage only",37,"Schärsboden-Moor","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23400,168315,"CHE","National Inventory",2011,"For storage only",37,"Altstofel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23401,168316,"CHE","National Inventory",2011,"For storage only",37,"Muserholz / Tännlimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23402,168317,"CHE","National Inventory",2011,"For storage only",37,"Ronfeld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23403,168318,"CHE","National Inventory",2011,"For storage only",37,"Tourbières de la Chaux d'Abel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23404,168319,"CHE","National Inventory",2011,"For storage only",37,"Moor westlich Etzel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23405,168320,"CHE","National Inventory",2011,"For storage only",37,"Schönenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23406,168321,"CHE","National Inventory",2011,"For storage only",37,"Wauwilermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23407,168322,"CHE","National Inventory",2011,"For storage only",37,"Altschenchopf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23408,168323,"CHE","National Inventory",2011,"For storage only",37,"Hagimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23409,168324,"CHE","National Inventory",2011,"For storage only",37,"Twerfallen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23410,168325,"CHE","National Inventory",2011,"For storage only",37,"Zällmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23411,168326,"CHE","National Inventory",2011,"For storage only",37,"Gastermatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23412,168327,"CHE","National Inventory",2011,"For storage only",37,"Niderriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23413,168328,"CHE","National Inventory",2011,"For storage only",37,"Dersbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23414,168329,"CHE","National Inventory",2011,"For storage only",37,"Neugrundmoor","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23415,168330,"CHE","National Inventory",2011,"For storage only",37,"Obermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23416,168331,"CHE","National Inventory",2011,"For storage only",37,"Risiwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23417,168332,"CHE","National Inventory",2011,"For storage only",37,"Schwantenau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23418,168333,"CHE","National Inventory",2011,"For storage only",37,"Roblosen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23419,168334,"CHE","National Inventory",2011,"For storage only",37,"Juchmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23420,168335,"CHE","National Inventory",2011,"For storage only",37,"Schindellegi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23421,168336,"CHE","National Inventory",2011,"For storage only",37,"Witi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23422,168337,"CHE","National Inventory",2011,"For storage only",37,"Ängiried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23423,168338,"CHE","National Inventory",2011,"For storage only",37,"Chlausenchappeli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23424,168339,"CHE","National Inventory",2011,"For storage only",37,"Schlänggli-Biberbrugg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23425,168340,"CHE","National Inventory",2011,"For storage only",37,"Höll","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23426,168341,"CHE","National Inventory",2011,"For storage only",37,"Breitried (ZG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23427,168342,"CHE","National Inventory",2011,"For storage only",37,"Nöchen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23428,168343,"CHE","National Inventory",2011,"For storage only",37,"Zigermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23429,168344,"CHE","National Inventory",2011,"For storage only",37,"Wissenbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23430,168345,"CHE","National Inventory",2011,"For storage only",37,"Sulzel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23431,168346,"CHE","National Inventory",2011,"For storage only",37,"Golperen / Girenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23432,168347,"CHE","National Inventory",2011,"For storage only",37,"Hessenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23433,168348,"CHE","National Inventory",2011,"For storage only",37,"Giregg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23434,168349,"CHE","National Inventory",2011,"For storage only",37,"Hunntal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23435,168350,"CHE","National Inventory",2011,"For storage only",37,"Chrottenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23436,168351,"CHE","National Inventory",2011,"For storage only",37,"Lachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23437,168352,"CHE","National Inventory",2011,"For storage only",37,"Altmatt / Ägeriried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23438,168353,"CHE","National Inventory",2011,"For storage only",37,"Alte Zihl","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23439,168354,"CHE","National Inventory",2011,"For storage only",37,"Brunnen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23440,168355,"CHE","National Inventory",2011,"For storage only",37,"Brämenegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23441,168356,"CHE","National Inventory",2011,"For storage only",37,"Zigerhüttli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23442,168357,"CHE","National Inventory",2011,"For storage only",37,"Chnodenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23443,168358,"CHE","National Inventory",2011,"For storage only",37,"Engenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23444,168359,"CHE","National Inventory",2011,"For storage only",37,"Tubenloch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23445,168360,"CHE","National Inventory",2011,"For storage only",37,"Beim Bannholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23446,168361,"CHE","National Inventory",2011,"For storage only",37,"Schorenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23447,168362,"CHE","National Inventory",2011,"For storage only",37,"Gnossenweid / Mutzenwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23448,168363,"CHE","National Inventory",2011,"For storage only",37,"Rossweid (SZ)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23449,168364,"CHE","National Inventory",2011,"For storage only",37,"Blossen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23450,168365,"CHE","National Inventory",2011,"For storage only",37,"Les Pontins","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23451,168366,"CHE","National Inventory",2011,"For storage only",37,"Riederen I","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23452,168367,"CHE","National Inventory",2011,"For storage only",37,"Erlen (SG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23453,168368,"CHE","National Inventory",2011,"For storage only",37,"Eigenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23454,168369,"CHE","National Inventory",2011,"For storage only",37,"Sattelegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23455,168370,"CHE","National Inventory",2011,"For storage only",37,"Birchriedli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23456,168371,"CHE","National Inventory",2011,"For storage only",37,"Eigen / Elsisried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23457,168372,"CHE","National Inventory",2011,"For storage only",37,"Giritz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23458,168373,"CHE","National Inventory",2011,"For storage only",37,"Riederen II","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23459,168374,"CHE","National Inventory",2011,"For storage only",37,"Rainli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23460,168375,"CHE","National Inventory",2011,"For storage only",37,"Sprädenegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23461,168376,"CHE","National Inventory",2011,"For storage only",37,"Hirzegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23462,168377,"CHE","National Inventory",2011,"For storage only",37,"Erlen/Hinterwis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23463,168378,"CHE","National Inventory",2011,"For storage only",37,"Geissmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23464,168379,"CHE","National Inventory",2011,"For storage only",37,"Langriet / Schneeloch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23465,168380,"CHE","National Inventory",2011,"For storage only",37,"Unterallmend Perlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23466,168381,"CHE","National Inventory",2011,"For storage only",37,"Mettlenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23467,168382,"CHE","National Inventory",2011,"For storage only",37,"Grossriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23468,168383,"CHE","National Inventory",2011,"For storage only",37,"Grossblätz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23469,168384,"CHE","National Inventory",2011,"For storage only",37,"Ostergau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23470,168385,"CHE","National Inventory",2011,"For storage only",37,"Erlenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23471,168386,"CHE","National Inventory",2011,"For storage only",37,"Schwarzeneggehöchi / Hinter Gwürz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23472,168387,"CHE","National Inventory",2011,"For storage only",37,"Ried bei Grossbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23473,168388,"CHE","National Inventory",2011,"For storage only",37,"Walchwiler Oberallmig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23474,168389,"CHE","National Inventory",2011,"For storage only",37,"Scheidegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23475,168390,"CHE","National Inventory",2011,"For storage only",37,"Vorderes Hürital","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23476,168391,"CHE","National Inventory",2011,"For storage only",37,"Gross Moos im Schwendital","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23477,168392,"CHE","National Inventory",2011,"For storage only",37,"Steinacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23478,168393,"CHE","National Inventory",2011,"For storage only",37,"Malunriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23479,168394,"CHE","National Inventory",2011,"For storage only",37,"Meur bei Britteren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23480,168395,"CHE","National Inventory",2011,"For storage only",37,"Trachslauer Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23481,168396,"CHE","National Inventory",2011,"For storage only",37,"Rieter / Sagen / Neselen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23482,168397,"CHE","National Inventory",2011,"For storage only",37,"Brüschegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23483,168398,"CHE","National Inventory",2011,"For storage only",37,"Blimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23484,168399,"CHE","National Inventory",2011,"For storage only",37,"Cholau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23485,168400,"CHE","National Inventory",2011,"For storage only",37,"Sabrens","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23486,168401,"CHE","National Inventory",2011,"For storage only",37,"Boggenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23487,168402,"CHE","National Inventory",2011,"For storage only",37,"nördlich Eggstofel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23488,168403,"CHE","National Inventory",2011,"For storage only",37,"Langmösli / Feldriedli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23489,168404,"CHE","National Inventory",2011,"For storage only",37,"Im Fang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23490,168405,"CHE","National Inventory",2011,"For storage only",37,"Palfris","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23491,168406,"CHE","National Inventory",2011,"For storage only",37,"Chnoden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23492,168407,"CHE","National Inventory",2011,"For storage only",37,"Salzläcki","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23493,168408,"CHE","National Inventory",2011,"For storage only",37,"Heumoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23494,168409,"CHE","National Inventory",2011,"For storage only",37,"Euthal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23495,168410,"CHE","National Inventory",2011,"For storage only",37,"Türliboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23496,168411,"CHE","National Inventory",2011,"For storage only",37,"Nätsch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23497,168412,"CHE","National Inventory",2011,"For storage only",37,"Wengi Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23498,168413,"CHE","National Inventory",2011,"For storage only",37,"Nüchenstöck","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23499,168414,"CHE","National Inventory",2011,"For storage only",37,"Eigenrieter","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23500,168415,"CHE","National Inventory",2011,"For storage only",37,"Rütiwijer","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23501,168416,"CHE","National Inventory",2011,"For storage only",37,"Madils","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23502,168417,"CHE","National Inventory",2011,"For storage only",37,"Hintere Wisstannenweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23503,168418,"CHE","National Inventory",2011,"For storage only",37,"Stäubrig / Schrä","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23504,168419,"CHE","National Inventory",2011,"For storage only",37,"Breitried (SZ)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23505,168420,"CHE","National Inventory",2011,"For storage only",37,"Am See","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23506,168421,"CHE","National Inventory",2011,"For storage only",37,"Tobelwald / Guetental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23507,168422,"CHE","National Inventory",2011,"For storage only",37,"Prodriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23508,168423,"CHE","National Inventory",2011,"For storage only",37,"Chlösterliweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23509,168424,"CHE","National Inventory",2011,"For storage only",37,"Les Eplatures-Temple","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23510,168425,"CHE","National Inventory",2011,"For storage only",37,"Chessiloch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23511,168426,"CHE","National Inventory",2011,"For storage only",37,"Schwarzsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23512,168427,"CHE","National Inventory",2011,"For storage only",37,"Naserina","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23513,168428,"CHE","National Inventory",2011,"For storage only",37,"Vord. Mäderen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23514,168429,"CHE","National Inventory",2011,"For storage only",37,"Moosweiher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23515,168430,"CHE","National Inventory",2011,"For storage only",37,"Rotseeried Abfluss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23516,168431,"CHE","National Inventory",2011,"For storage only",37,"Heitlenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23517,168432,"CHE","National Inventory",2011,"For storage only",37,"Sennenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23518,168433,"CHE","National Inventory",2011,"For storage only",37,"Hunds-Chotten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23519,168434,"CHE","National Inventory",2011,"For storage only",37,"Schlittenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23520,168435,"CHE","National Inventory",2011,"For storage only",37,"Weiherried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23521,168436,"CHE","National Inventory",2011,"For storage only",37,"Platten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23522,168437,"CHE","National Inventory",2011,"For storage only",37,"Tuetenseeli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23523,168438,"CHE","National Inventory",2011,"For storage only",37,"Regenegg / Lang Gschwänd","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23524,168439,"CHE","National Inventory",2011,"For storage only",37,"Unteriberg / Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23525,168440,"CHE","National Inventory",2011,"For storage only",37,"Padüra","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23526,168441,"CHE","National Inventory",2011,"For storage only",37,"Schmalzlad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23527,168442,"CHE","National Inventory",2011,"For storage only",37,"Täuffeler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23528,168443,"CHE","National Inventory",2011,"For storage only",37,"Bannegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23529,168444,"CHE","National Inventory",2011,"For storage only",37,"Mürtschen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23530,168445,"CHE","National Inventory",2011,"For storage only",37,"Heidenweg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23531,168446,"CHE","National Inventory",2011,"For storage only",37,"Stöckweid / Wyer","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23532,168447,"CHE","National Inventory",2011,"For storage only",37,"Forenmoos / Langenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23533,168448,"CHE","National Inventory",2011,"For storage only",37,"westlich Hobisbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23534,168449,"CHE","National Inventory",2011,"For storage only",37,"Panüöler-Spigen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23535,168450,"CHE","National Inventory",2011,"For storage only",37,"nordöstlich Schlund","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23536,168451,"CHE","National Inventory",2011,"For storage only",37,"Les Goudebas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23537,168452,"CHE","National Inventory",2011,"For storage only",37,"Stockrietli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23538,168453,"CHE","National Inventory",2011,"For storage only",37,"Ober Mürtschen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23539,168454,"CHE","National Inventory",2011,"For storage only",37,"Brüschrain","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23540,168455,"CHE","National Inventory",2011,"For storage only",37,"Gleitboden / Streuneren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23541,168456,"CHE","National Inventory",2011,"For storage only",37,"Chli Seebli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23542,168457,"CHE","National Inventory",2011,"For storage only",37,"Tierfäderen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23543,168458,"CHE","National Inventory",2011,"For storage only",37,"Fulriet / Mädems","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23544,168459,"CHE","National Inventory",2011,"For storage only",37,"Lünzelblätz / Cholhüttli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23545,168460,"CHE","National Inventory",2011,"For storage only",37,"Gross Seebli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23546,168461,"CHE","National Inventory",2011,"For storage only",37,"Ober Heikentobel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23547,168462,"CHE","National Inventory",2011,"For storage only",37,"Langeggried / Unter Heikentobel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23548,168463,"CHE","National Inventory",2011,"For storage only",37,"Langried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23549,168464,"CHE","National Inventory",2011,"For storage only",37,"Sägel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23550,168465,"CHE","National Inventory",2011,"For storage only",37,"Chapfensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23551,168466,"CHE","National Inventory",2011,"For storage only",37,"Widen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23552,168467,"CHE","National Inventory",2011,"For storage only",37,"Furenwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23553,168468,"CHE","National Inventory",2011,"For storage only",37,"Rund Blätz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23554,168469,"CHE","National Inventory",2011,"For storage only",37,"Palus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23555,168470,"CHE","National Inventory",2011,"For storage only",37,"Chaspersboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23556,168471,"CHE","National Inventory",2011,"For storage only",37,"Tamons","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23557,168472,"CHE","National Inventory",2011,"For storage only",37,"Murgsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23558,168473,"CHE","National Inventory",2011,"For storage only",37,"Auw","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23559,168474,"CHE","National Inventory",2011,"For storage only",37,"Hintersäss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23560,168475,"CHE","National Inventory",2011,"For storage only",37,"Schornen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23561,168476,"CHE","National Inventory",2011,"For storage only",37,"Gross Underbäch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23562,168477,"CHE","National Inventory",2011,"For storage only",37,"Wüest Wald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23563,168478,"CHE","National Inventory",2011,"For storage only",37,"Vorder Cavell","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23564,168479,"CHE","National Inventory",2011,"For storage only",37,"Cani","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23565,168480,"CHE","National Inventory",2011,"For storage only",37,"Seiler / Zwäcken","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23566,168481,"CHE","National Inventory",2011,"For storage only",37,"Rotenflue Allmig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23567,168482,"CHE","National Inventory",2011,"For storage only",37,"Rieter südl. Schwarzenstock","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23568,168483,"CHE","National Inventory",2011,"For storage only",37,"Hobacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23569,168484,"CHE","National Inventory",2011,"For storage only",37,"Hinter Cavell","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23570,168485,"CHE","National Inventory",2011,"For storage only",37,"Tubenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23571,168486,"CHE","National Inventory",2011,"For storage only",37,"Bueffen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23572,168487,"CHE","National Inventory",2011,"For storage only",37,"Alpnova","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23573,168488,"CHE","National Inventory",2011,"For storage only",37,"Nördlich Obersäss (Alp Ortasee)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23574,168489,"CHE","National Inventory",2011,"For storage only",37,"Langerli / Riedhütte / Rohrboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23575,168490,"CHE","National Inventory",2011,"For storage only",37,"Inner und Usser Schnabel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23576,168491,"CHE","National Inventory",2011,"For storage only",37,"Gersauer Alp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23577,168492,"CHE","National Inventory",2011,"For storage only",37,"Ibergeregg-West","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23578,168493,"CHE","National Inventory",2011,"For storage only",37,"Oberer Fischerenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23579,168494,"CHE","National Inventory",2011,"For storage only",37,"Chrüzböden (Alp Ortasee)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23580,168495,"CHE","National Inventory",2011,"For storage only",37,"Obersäss (Alp Ortasee)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23581,168496,"CHE","National Inventory",2011,"For storage only",37,"Leitiboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23582,168497,"CHE","National Inventory",2011,"For storage only",37,"Sadrein","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23583,168498,"CHE","National Inventory",2011,"For storage only",37,"Seebli / Fuederegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23584,168499,"CHE","National Inventory",2011,"For storage only",37,"Grüebli / Hintergrüebli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23585,168500,"CHE","National Inventory",2011,"For storage only",37,"Steinibachried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23586,168501,"CHE","National Inventory",2011,"For storage only",37,"Furenmoos / Dorschnei","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23587,168502,"CHE","National Inventory",2011,"For storage only",37,"Hinter Rohren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23588,168503,"CHE","National Inventory",2011,"For storage only",37,"Strit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23589,168504,"CHE","National Inventory",2011,"For storage only",37,"Chaisten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23590,168505,"CHE","National Inventory",2011,"For storage only",37,"Hinterschild","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23591,168506,"CHE","National Inventory",2011,"For storage only",37,"Röhrli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23592,168507,"CHE","National Inventory",2011,"For storage only",37,"Forrenmoos / Meienstossmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23593,168508,"CHE","National Inventory",2011,"For storage only",37,"Le Fanel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23594,168509,"CHE","National Inventory",2011,"For storage only",37,"Pragel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23595,168510,"CHE","National Inventory",2011,"For storage only",37,"Brestenburg / Rieter","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23596,168511,"CHE","National Inventory",2011,"For storage only",37,"Mülimäs","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23597,168512,"CHE","National Inventory",2011,"For storage only",37,"Wilermoos / Fräschelsweiher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23598,168513,"CHE","National Inventory",2011,"For storage only",37,"Vilterser - Alp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23599,168514,"CHE","National Inventory",2011,"For storage only",37,"Breitried / Cholhütten / Hohrüti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23600,168515,"CHE","National Inventory",2011,"For storage only",37,"Hopfräben","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23601,168516,"CHE","National Inventory",2011,"For storage only",37,"Ingenbohl","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23602,168517,"CHE","National Inventory",2011,"For storage only",37,"Vers le Maix Rochat","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23603,168518,"CHE","National Inventory",2011,"For storage only",37,"Guetentalboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23604,168519,"CHE","National Inventory",2011,"For storage only",37,"Wal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23605,168520,"CHE","National Inventory",2011,"For storage only",37,"Seewli / Riedboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23606,168521,"CHE","National Inventory",2011,"For storage only",37,"Spinnegg / Neuenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23607,168522,"CHE","National Inventory",2011,"For storage only",37,"Gnappetriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23608,168523,"CHE","National Inventory",2011,"For storage only",37,"Le Bied des Ponts-de-Martel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23609,168524,"CHE","National Inventory",2011,"For storage only",37,"Riede um Boneren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23610,168525,"CHE","National Inventory",2011,"For storage only",37,"Schofberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23611,168526,"CHE","National Inventory",2011,"For storage only",37,"Rotstock / Unter Honegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23612,168527,"CHE","National Inventory",2011,"For storage only",37,"Ärtig / Feldimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23613,168528,"CHE","National Inventory",2011,"For storage only",37,"Solcs","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23614,168529,"CHE","National Inventory",2011,"For storage only",37,"Alp Bella","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23615,168530,"CHE","National Inventory",2011,"For storage only",37,"Oltigenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23616,168531,"CHE","National Inventory",2011,"For storage only",37,"Alp Trida","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23617,168532,"CHE","National Inventory",2011,"For storage only",37,"Mettilimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23618,168533,"CHE","National Inventory",2011,"For storage only",37,"Riet (Fadära)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23619,168534,"CHE","National Inventory",2011,"For storage only",37,"Rossweid (GL)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23620,168535,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23621,168536,"CHE","National Inventory",2011,"For storage only",37,"Längriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23622,168537,"CHE","National Inventory",2011,"For storage only",37,"Teufböni","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23623,168538,"CHE","National Inventory",2011,"For storage only",37,"Nesslenbrunnenboden / Geugelhusenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23624,168539,"CHE","National Inventory",2011,"For storage only",37,"Grossriet / Gnappiriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23625,168540,"CHE","National Inventory",2011,"For storage only",37,"Fuchserenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23626,168541,"CHE","National Inventory",2011,"For storage only",37,"Salaaser Wisen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23627,168542,"CHE","National Inventory",2011,"For storage only",37,"Capelgin / Leng Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23628,168543,"CHE","National Inventory",2011,"For storage only",37,"Schulried / Uertiried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23629,168544,"CHE","National Inventory",2011,"For storage only",37,"Stelsersee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23630,168545,"CHE","National Inventory",2011,"For storage only",37,"Fulried am Stelserberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23631,168546,"CHE","National Inventory",2011,"For storage only",37,"Gfellen / Rossweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23632,168547,"CHE","National Inventory",2011,"For storage only",37,"Garichti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23633,168548,"CHE","National Inventory",2011,"For storage only",37,"Blätz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23634,168549,"CHE","National Inventory",2011,"For storage only",37,"Steinstössi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23635,168550,"CHE","National Inventory",2011,"For storage only",37,"Grèves du lac de Morat","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23636,168551,"CHE","National Inventory",2011,"For storage only",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23637,168552,"CHE","National Inventory",2011,"For storage only",37,"Hindersandboden / Stächtenmösli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23638,168553,"CHE","National Inventory",2011,"For storage only",37,"Stächtenmösli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23639,168554,"CHE","National Inventory",2011,"For storage only",37,"Städerried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23640,168555,"CHE","National Inventory",2011,"For storage only",37,"Chablais-Nord","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23641,168556,"CHE","National Inventory",2011,"For storage only",37,"Riedboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23642,168557,"CHE","National Inventory",2011,"For storage only",37,"Gschwänt / Längenschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23643,168558,"CHE","National Inventory",2011,"For storage only",37,"Schwandmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23644,168559,"CHE","National Inventory",2011,"For storage only",37,"Rongg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23645,168560,"CHE","National Inventory",2011,"For storage only",37,"Rischigenmatt / Chrüzliegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23646,168561,"CHE","National Inventory",2011,"For storage only",37,"Matt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23647,168562,"CHE","National Inventory",2011,"For storage only",37,"Luchterlimoos / Schluck","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23648,168563,"CHE","National Inventory",2011,"For storage only",37,"Goldplangg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23649,168564,"CHE","National Inventory",2011,"For storage only",37,"Ober-Längenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23650,168565,"CHE","National Inventory",2011,"For storage only",37,"Fäng / Rinderbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23651,168566,"CHE","National Inventory",2011,"For storage only",37,"Juchmoos / Angstboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23652,168567,"CHE","National Inventory",2011,"For storage only",37,"Etzelhüsli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23653,168568,"CHE","National Inventory",2011,"For storage only",37,"Chrüzgütsch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23654,168569,"CHE","National Inventory",2011,"For storage only",37,"Rischigenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23655,168570,"CHE","National Inventory",2011,"For storage only",37,"Längenfeldmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23656,168571,"CHE","National Inventory",2011,"For storage only",37,"Chastenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23657,168572,"CHE","National Inventory",2011,"For storage only",37,"Rotibachried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23658,168573,"CHE","National Inventory",2011,"For storage only",37,"Werbenrüsli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23659,168574,"CHE","National Inventory",2011,"For storage only",37,"Schimbrig / Hirsboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23660,168575,"CHE","National Inventory",2011,"For storage only",37,"Promisaun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23661,168576,"CHE","National Inventory",2011,"For storage only",37,"Ober Lauenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23662,168577,"CHE","National Inventory",2011,"For storage only",37,"Güferlitzi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23663,168578,"CHE","National Inventory",2011,"For storage only",37,"Loch (GR)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23664,168579,"CHE","National Inventory",2011,"For storage only",37,"Hohberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23665,168580,"CHE","National Inventory",2011,"For storage only",37,"Geisswis / Gaschneida / Plustorna","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23666,168581,"CHE","National Inventory",2011,"For storage only",37,"Seeliboden im Choltal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23667,168582,"CHE","National Inventory",2011,"For storage only",37,"Meien","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23668,168583,"CHE","National Inventory",2011,"For storage only",37,"Isital","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23669,168584,"CHE","National Inventory",2011,"For storage only",37,"Riedzöpf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23670,168585,"CHE","National Inventory",2011,"For storage only",37,"Tällenmoos Eschholzmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23671,168586,"CHE","National Inventory",2011,"For storage only",37,"Vorder Rotbach / Grundmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23672,168587,"CHE","National Inventory",2011,"For storage only",37,"Mättli / Schoni","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23673,168588,"CHE","National Inventory",2011,"For storage only",37,"Mittler Risch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23674,168589,"CHE","National Inventory",2011,"For storage only",37,"Scheidegg im Choltal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23675,168590,"CHE","National Inventory",2011,"For storage only",37,"Charetalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23676,168591,"CHE","National Inventory",2011,"For storage only",37,"Rossweid (OW)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23677,168592,"CHE","National Inventory",2011,"For storage only",37,"Riede von Herrenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23678,168593,"CHE","National Inventory",2011,"For storage only",37,"Äbnistetten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23679,168594,"CHE","National Inventory",2011,"For storage only",37,"Lochalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23680,168595,"CHE","National Inventory",2011,"For storage only",37,"Gürmschmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23681,168596,"CHE","National Inventory",2011,"For storage only",37,"Änggenlauenen / Grünholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23682,168597,"CHE","National Inventory",2011,"For storage only",37,"Val Fenga West","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23683,168598,"CHE","National Inventory",2011,"For storage only",37,"Glattalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23684,168599,"CHE","National Inventory",2011,"For storage only",37,"Riedboden / Galtenäbnet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23685,168600,"CHE","National Inventory",2011,"For storage only",37,"Teilenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23686,168601,"CHE","National Inventory",2011,"For storage only",37,"Unteres Schlierental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23687,168602,"CHE","National Inventory",2011,"For storage only",37,"Val Fenga Ost","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23688,168603,"CHE","National Inventory",2011,"For storage only",37,"Litzli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23689,168604,"CHE","National Inventory",2011,"For storage only",37,"Gugel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23690,168605,"CHE","National Inventory",2011,"For storage only",37,"Au bei Märchligen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23691,168606,"CHE","National Inventory",2011,"For storage only",37,"Bärenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23692,168607,"CHE","National Inventory",2011,"For storage only",37,"östlich Brandchnubel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23693,168608,"CHE","National Inventory",2011,"For storage only",37,"Nüwenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23694,168609,"CHE","National Inventory",2011,"For storage only",37,"Lengenschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23695,168610,"CHE","National Inventory",2011,"For storage only",37,"Wengli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23696,168611,"CHE","National Inventory",2011,"For storage only",37,"Rischi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23697,168612,"CHE","National Inventory",2011,"For storage only",37,"Brandmöser","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23698,168613,"CHE","National Inventory",2011,"For storage only",37,"Gürmschwald / Gugelwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23699,168614,"CHE","National Inventory",2011,"For storage only",37,"Eggwaldried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23700,168615,"CHE","National Inventory",2011,"For storage only",37,"Bi den Hüscheren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23701,168616,"CHE","National Inventory",2011,"For storage only",37,"Gerenstock","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23702,168617,"CHE","National Inventory",2011,"For storage only",37,"Selez","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23703,168618,"CHE","National Inventory",2011,"For storage only",37,"Unter Wasserfallen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23704,168619,"CHE","National Inventory",2011,"For storage only",37,"Schwendi Kaltbad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23705,168620,"CHE","National Inventory",2011,"For storage only",37,"La Sagnette / Les Tourbières","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23706,168621,"CHE","National Inventory",2011,"For storage only",37,"Marchmettlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23707,168622,"CHE","National Inventory",2011,"For storage only",37,"Argseeli Urnerboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23708,168623,"CHE","National Inventory",2011,"For storage only",37,"Häsiseggboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23709,168624,"CHE","National Inventory",2011,"For storage only",37,"Chneuwis / Gitschenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23710,168625,"CHE","National Inventory",2011,"For storage only",37,"Wasserfallenegg / Grön","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23711,168626,"CHE","National Inventory",2011,"For storage only",37,"Au bei Kleinhöchstetten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23712,168627,"CHE","National Inventory",2011,"For storage only",37,"Gross Lucht","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23713,168628,"CHE","National Inventory",2011,"For storage only",37,"Glaubenberg / Hinter Rotbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23714,168629,"CHE","National Inventory",2011,"For storage only",37,"Obermattboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23715,168630,"CHE","National Inventory",2011,"For storage only",37,"Eggberge","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23716,168631,"CHE","National Inventory",2011,"For storage only",37,"Flüeler Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23717,168632,"CHE","National Inventory",2011,"For storage only",37,"Vorderegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23718,168633,"CHE","National Inventory",2011,"For storage only",37,"Unter Jetz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23719,168634,"CHE","National Inventory",2011,"For storage only",37,"Ober Sewen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23720,168635,"CHE","National Inventory",2011,"For storage only",37,"Mättenwang Urnerboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23721,168636,"CHE","National Inventory",2011,"For storage only",37,"Trogenwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23722,168637,"CHE","National Inventory",2011,"For storage only",37,"Heustettli / Bösen-Ritzenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23723,168638,"CHE","National Inventory",2011,"For storage only",37,"Guggenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23724,168639,"CHE","National Inventory",2011,"For storage only",37,"Seedorfer Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23725,168640,"CHE","National Inventory",2011,"For storage only",37,"Uf den Riederen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23726,168641,"CHE","National Inventory",2011,"For storage only",37,"Glatt-Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23727,168642,"CHE","National Inventory",2011,"For storage only",37,"Münchenboden / Ochsenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23728,168643,"CHE","National Inventory",2011,"For storage only",37,"Unter Sewen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23729,168644,"CHE","National Inventory",2011,"For storage only",37,"Rieter bei Oberrickenbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23730,168645,"CHE","National Inventory",2011,"For storage only",37,"Portenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23731,168646,"CHE","National Inventory",2011,"For storage only",37,"Schaftelenmoos / Stäldili / Sattelpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23732,168647,"CHE","National Inventory",2011,"For storage only",37,"Ahornenweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23733,168648,"CHE","National Inventory",2011,"For storage only",37,"Tanail","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23734,168649,"CHE","National Inventory",2011,"For storage only",37,"Sewen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23735,168650,"CHE","National Inventory",2011,"For storage only",37,"Birchenbüelen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23736,168651,"CHE","National Inventory",2011,"For storage only",37,"Hilferenpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23737,168652,"CHE","National Inventory",2011,"For storage only",37,"Ried bei Altzellen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23738,168653,"CHE","National Inventory",2011,"For storage only",37,"Schwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23739,168654,"CHE","National Inventory",2011,"For storage only",37,"Plaun Segnas Sut","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23740,168655,"CHE","National Inventory",2011,"For storage only",37,"Chli Trogen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23741,168656,"CHE","National Inventory",2011,"For storage only",37,"Fideriser Heuberge","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23742,168657,"CHE","National Inventory",2011,"For storage only",37,"Plan Nai / Marangun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23743,168658,"CHE","National Inventory",2011,"For storage only",37,"Egghütten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23744,168659,"CHE","National Inventory",2011,"For storage only",37,"Miesenegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23745,168660,"CHE","National Inventory",2011,"For storage only",37,"Tällenmoos im Hilferental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23746,168661,"CHE","National Inventory",2011,"For storage only",37,"Dörsmatt / Miesen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23747,168662,"CHE","National Inventory",2011,"For storage only",37,"Mettlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23748,168663,"CHE","National Inventory",2011,"For storage only",37,"Riedboden bei Zischlig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23749,168664,"CHE","National Inventory",2011,"For storage only",37,"Toregg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23750,168665,"CHE","National Inventory",2011,"For storage only",37,"Riedböden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23751,168666,"CHE","National Inventory",2011,"For storage only",37,"Faniner Galtihütte","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23752,168667,"CHE","National Inventory",2011,"For storage only",37,"Riedmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23753,168668,"CHE","National Inventory",2011,"For storage only",37,"Niemerstafel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23754,168669,"CHE","National Inventory",2011,"For storage only",37,"Bleikenboden / Schüfilimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23755,168670,"CHE","National Inventory",2011,"For storage only",37,"Chesselsmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23756,168671,"CHE","National Inventory",2011,"For storage only",37,"Clun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23757,168672,"CHE","National Inventory",2011,"For storage only",37,"Hefti / Salzboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23758,168673,"CHE","National Inventory",2011,"For storage only",37,"Ried Faninpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23759,168674,"CHE","National Inventory",2011,"For storage only",37,"Gauderböden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23760,168675,"CHE","National Inventory",2011,"For storage only",37,"Teilenmäder / Seebüelen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23761,168676,"CHE","National Inventory",2011,"For storage only",37,"Triemel / Cunggel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23762,168677,"CHE","National Inventory",2011,"For storage only",37,"Gloggenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23763,168678,"CHE","National Inventory",2011,"For storage only",37,"Rossboden / Looegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23764,168679,"CHE","National Inventory",2011,"For storage only",37,"La Grève","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23765,168680,"CHE","National Inventory",2011,"For storage only",37,"Hagleren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23766,168681,"CHE","National Inventory",2011,"For storage only",37,"Dörsmattgraben","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23767,168682,"CHE","National Inventory",2011,"For storage only",37,"Dälenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23768,168683,"CHE","National Inventory",2011,"For storage only",37,"Müseren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23769,168684,"CHE","National Inventory",2011,"For storage only",37,"Zwirchi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23770,168685,"CHE","National Inventory",2011,"For storage only",37,"Eggen Rieter","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23771,168686,"CHE","National Inventory",2011,"For storage only",37,"Usser Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23772,168687,"CHE","National Inventory",2011,"For storage only",37,"Bargaboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23773,168688,"CHE","National Inventory",2011,"For storage only",37,"Palü Lunga","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23774,168689,"CHE","National Inventory",2011,"For storage only",37,"Rormettlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23775,168690,"CHE","National Inventory",2011,"For storage only",37,"Fondei","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23776,168691,"CHE","National Inventory",2011,"For storage only",37,"Junkholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23777,168692,"CHE","National Inventory",2011,"For storage only",37,"Hanenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23778,168693,"CHE","National Inventory",2011,"For storage only",37,"Düdingermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23779,168694,"CHE","National Inventory",2011,"For storage only",37,"Mouille de la Vraconnaz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23780,168695,"CHE","National Inventory",2011,"For storage only",37,"Siechenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23781,168696,"CHE","National Inventory",2011,"For storage only",37,"Girsch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23782,168697,"CHE","National Inventory",2011,"For storage only",37,"Prau Grass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23783,168698,"CHE","National Inventory",2011,"For storage only",37,"Gustiweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23784,168699,"CHE","National Inventory",2011,"For storage only",37,"Stächelegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23785,168700,"CHE","National Inventory",2011,"For storage only",37,"Fragnière-Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23786,168701,"CHE","National Inventory",2011,"For storage only",37,"Pfaffenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23787,168702,"CHE","National Inventory",2011,"For storage only",37,"Marbachegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23788,168703,"CHE","National Inventory",2011,"For storage only",37,"Chadhus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23789,168704,"CHE","National Inventory",2011,"For storage only",37,"Palü Marscha","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23790,168705,"CHE","National Inventory",2011,"For storage only",37,"Salwiden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23791,168706,"CHE","National Inventory",2011,"For storage only",37,"Tegia Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23792,168707,"CHE","National Inventory",2011,"For storage only",37,"Habchegg (LU)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23793,168708,"CHE","National Inventory",2011,"For storage only",37,"Wachseldornmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23794,168709,"CHE","National Inventory",2011,"For storage only",37,"Sapüner Mäder","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23795,168710,"CHE","National Inventory",2011,"For storage only",37,"Totmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23796,168711,"CHE","National Inventory",2011,"For storage only",37,"Paliu Marscha","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23797,168712,"CHE","National Inventory",2011,"For storage only",37,"Wagliseichnubel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23798,168713,"CHE","National Inventory",2011,"For storage only",37,"Ochsenweid / Schwand / Gwün","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23799,168714,"CHE","National Inventory",2011,"For storage only",37,"Tschessas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23800,168715,"CHE","National Inventory",2011,"For storage only",37,"Prada da Tuoi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23801,168716,"CHE","National Inventory",2011,"For storage only",37,"Südlich Ober Saffertberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23802,168717,"CHE","National Inventory",2011,"For storage only",37,"Schwarzenegg / Steinetli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23803,168718,"CHE","National Inventory",2011,"For storage only",37,"Naluns","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23804,168719,"CHE","National Inventory",2011,"For storage only",37,"Mouille des Creux","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23805,168720,"CHE","National Inventory",2011,"For storage only",37,"Cavarschons","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23806,168721,"CHE","National Inventory",2011,"For storage only",37,"Alpoglen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23807,168722,"CHE","National Inventory",2011,"For storage only",37,"Alp da Schnaus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23808,168723,"CHE","National Inventory",2011,"For storage only",37,"Feldmoos (OW)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23809,168724,"CHE","National Inventory",2011,"For storage only",37,"Emmen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23810,168725,"CHE","National Inventory",2011,"For storage only",37,"Schwandweid / Büelmeschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23811,168726,"CHE","National Inventory",2011,"For storage only",37,"Laubersmadghack / Bärsel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23812,168727,"CHE","National Inventory",2011,"For storage only",37,"Gustiweidli / Obere Mastweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23813,168728,"CHE","National Inventory",2011,"For storage only",37,"Weihermühle","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23814,168729,"CHE","National Inventory",2011,"For storage only",37,"Lag digl Oberst","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23815,168730,"CHE","National Inventory",2011,"For storage only",37,"Val Frisal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23816,168731,"CHE","National Inventory",2011,"For storage only",37,"Oberes Roseggli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23817,168732,"CHE","National Inventory",2011,"For storage only",37,"Alp Dado Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23818,168733,"CHE","National Inventory",2011,"For storage only",37,"Furmièrs","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23819,168734,"CHE","National Inventory",2011,"For storage only",37,"Riede südlich Joch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23820,168735,"CHE","National Inventory",2011,"For storage only",37,"Unter Prätschsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23821,168736,"CHE","National Inventory",2011,"For storage only",37,"Wimmisalp / Innerer Windbruch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23822,168737,"CHE","National Inventory",2011,"For storage only",37,"Fulensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23823,168738,"CHE","National Inventory",2011,"For storage only",37,"Riede westlich Schwarzwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23824,168739,"CHE","National Inventory",2011,"For storage only",37,"Rotmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23825,168740,"CHE","National Inventory",2011,"For storage only",37,"Schöniseischwand / Spierweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23826,168741,"CHE","National Inventory",2011,"For storage only",37,"Alp dil Plaun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23827,168742,"CHE","National Inventory",2011,"For storage only",37,"Lac de Seedorf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23828,168743,"CHE","National Inventory",2011,"For storage only",37,"Schönisei / Harzisboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23829,168744,"CHE","National Inventory",2011,"For storage only",37,"Schärpfenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23830,168745,"CHE","National Inventory",2011,"For storage only",37,"Sachsler Seefeld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23831,168746,"CHE","National Inventory",2011,"For storage only",37,"Arnibergli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23832,168747,"CHE","National Inventory",2011,"For storage only",37,"Vorderes Rotmösli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23833,168748,"CHE","National Inventory",2011,"For storage only",37,"Moor östlich Ober Breitwang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23834,168749,"CHE","National Inventory",2011,"For storage only",37,"Quadras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23835,168750,"CHE","National Inventory",2011,"For storage only",37,"Prümarans","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23836,168751,"CHE","National Inventory",2011,"For storage only",37,"Usserberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23837,168752,"CHE","National Inventory",2011,"For storage only",37,"Schwändli / Hungerschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23838,168753,"CHE","National Inventory",2011,"For storage only",37,"Moor zwischen Mirrenegg und Ällgäu","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23839,168754,"CHE","National Inventory",2011,"For storage only",37,"Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23840,168755,"CHE","National Inventory",2011,"For storage only",37,"Tannen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23841,168756,"CHE","National Inventory",2011,"For storage only",37,"Habchegg (BE)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23842,168757,"CHE","National Inventory",2011,"For storage only",37,"Isla Sut","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23843,168758,"CHE","National Inventory",2011,"For storage only",37,"Grundmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23844,168759,"CHE","National Inventory",2011,"For storage only",37,"Moore östlich Pfidertschegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23845,168760,"CHE","National Inventory",2011,"For storage only",37,"Cuolms da Breil","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23846,168761,"CHE","National Inventory",2011,"For storage only",37,"Trogen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23847,168762,"CHE","National Inventory",2011,"For storage only",37,"Fuchser","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23848,168763,"CHE","National Inventory",2011,"For storage only",37,"Lai Nair","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23849,168764,"CHE","National Inventory",2011,"For storage only",37,"Ällgäu","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23850,168765,"CHE","National Inventory",2011,"For storage only",37,"Hintere und Vordere Nollen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23851,168766,"CHE","National Inventory",2011,"For storage only",37,"Moore nordöstlich Ober Sol","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23852,168767,"CHE","National Inventory",2011,"For storage only",37,"Distelboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23853,168768,"CHE","National Inventory",2011,"For storage only",37,"Clavadeler Berg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23854,168769,"CHE","National Inventory",2011,"For storage only",37,"Horneggwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23855,168770,"CHE","National Inventory",2011,"For storage only",37,"Schöriz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23856,168771,"CHE","National Inventory",2011,"For storage only",37,"Moore nördl. Grünenbergpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23857,168772,"CHE","National Inventory",2011,"For storage only",37,"Moor zwischen Lombachalp und Teufen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23858,168773,"CHE","National Inventory",2011,"For storage only",37,"Trogenmoos Nord","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23859,168774,"CHE","National Inventory",2011,"For storage only",37,"Cuolm Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23860,168775,"CHE","National Inventory",2011,"For storage only",37,"Melchsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23861,168776,"CHE","National Inventory",2011,"For storage only",37,"In Erlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23862,168777,"CHE","National Inventory",2011,"For storage only",37,"Bolsitenallmi / Chuelibrunnen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23863,168778,"CHE","National Inventory",2011,"For storage only",37,"Trogenmoos Süd","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23864,168779,"CHE","National Inventory",2011,"For storage only",37,"Hornmettlen / Ruer","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23865,168780,"CHE","National Inventory",2011,"For storage only",37,"Moor östlich Unteres Hörnli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23866,168781,"CHE","National Inventory",2011,"For storage only",37,"Höhenschwandmoor","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23867,168782,"CHE","National Inventory",2011,"For storage only",37,"Ruuschi / Magerbad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23868,168783,"CHE","National Inventory",2011,"For storage only",37,"Schleifgraben","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23869,168784,"CHE","National Inventory",2011,"For storage only",37,"Moore hinder der Egg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23870,168785,"CHE","National Inventory",2011,"For storage only",37,"Schluchhole","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23871,168786,"CHE","National Inventory",2011,"For storage only",37,"Moor bei Lombachalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23872,168787,"CHE","National Inventory",2011,"For storage only",37,"Wagenmoos / Mittleres Seefeld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23873,168788,"CHE","National Inventory",2011,"For storage only",37,"Moore südwestlich Grünenbergpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23874,168789,"CHE","National Inventory",2011,"For storage only",37,"Bosch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23875,168790,"CHE","National Inventory",2011,"For storage only",37,"Dittligsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23876,168791,"CHE","National Inventory",2011,"For storage only",37,"Schwarzenbühl / Fettbeder","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23877,168792,"CHE","National Inventory",2011,"For storage only",37,"Hubelhörnli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23878,168793,"CHE","National Inventory",2011,"For storage only",37,"Paliu Marscha","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23879,168794,"CHE","National Inventory",2011,"For storage only",37,"Untere und Obere Mäscher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23880,168795,"CHE","National Inventory",2011,"For storage only",37,"Horbüelallmid / Schwantenbüelallmid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23881,168796,"CHE","National Inventory",2011,"For storage only",37,"Affeier / Pifal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23882,168797,"CHE","National Inventory",2011,"For storage only",37,"Moor westl. Wissenbach / Gurnigel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23883,168798,"CHE","National Inventory",2011,"For storage only",37,"Sytenvorsess","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23884,168799,"CHE","National Inventory",2011,"For storage only",37,"Dünzenegg / Tönimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23885,168800,"CHE","National Inventory",2011,"For storage only",37,"Prau Mitgiert","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23886,168801,"CHE","National Inventory",2011,"For storage only",37,"Moore nordwestlich Plitsches","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23887,168802,"CHE","National Inventory",2011,"For storage only",37,"Ligneida","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23888,168803,"CHE","National Inventory",2011,"For storage only",37,"Zettenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23889,168804,"CHE","National Inventory",2011,"For storage only",37,"Cuolm Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23890,168805,"CHE","National Inventory",2011,"For storage only",37,"Teuftal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23891,168806,"CHE","National Inventory",2011,"For storage only",37,"Moore westlich Rotenschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23892,168807,"CHE","National Inventory",2011,"For storage only",37,"Ruschneras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23893,168808,"CHE","National Inventory",2011,"For storage only",37,"Selital","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23894,168809,"CHE","National Inventory",2011,"For storage only",37,"Schwarzwasser / Bärgli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23895,168810,"CHE","National Inventory",2011,"For storage only",37,"Seemad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23896,168811,"CHE","National Inventory",2011,"For storage only",37,"Schalenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23897,168812,"CHE","National Inventory",2011,"For storage only",37,"Sältenüeb","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23898,168813,"CHE","National Inventory",2011,"For storage only",37,"Lerchmatt / Schmittmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23899,168814,"CHE","National Inventory",2011,"For storage only",37,"Obere Zettenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23900,168815,"CHE","National Inventory",2011,"For storage only",37,"Mad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23901,168816,"CHE","National Inventory",2011,"For storage only",37,"Schwendli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23902,168817,"CHE","National Inventory",2011,"For storage only",37,"Im Rüeggers","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23903,168818,"CHE","National Inventory",2011,"For storage only",37,"Wallengaden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23904,168819,"CHE","National Inventory",2011,"For storage only",37,"Nordufer Heidsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23905,168820,"CHE","National Inventory",2011,"For storage only",37,"Schwendallmi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23906,168821,"CHE","National Inventory",2011,"For storage only",37,"Heidsee, Pedra Grossa","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23907,168822,"CHE","National Inventory",2011,"For storage only",37,"Bodmi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23908,168823,"CHE","National Inventory",2011,"For storage only",37,"Feldmoos (SG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23909,168824,"CHE","National Inventory",2011,"For storage only",37,"Kartitscha","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23910,168825,"CHE","National Inventory",2011,"For storage only",37,"Sortel / Althuser","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23911,168826,"CHE","National Inventory",2011,"For storage only",37,"Übeschisee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23912,168827,"CHE","National Inventory",2011,"For storage only",37,"Fischbächen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23913,168828,"CHE","National Inventory",2011,"For storage only",37,"Allmi westlich Läger","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23914,168829,"CHE","National Inventory",2011,"For storage only",37,"Riederen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23915,168830,"CHE","National Inventory",2011,"For storage only",37,"Lenzerheide","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23916,168831,"CHE","National Inventory",2011,"For storage only",37,"Stierenberg / Alp Brändli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23917,168832,"CHE","National Inventory",2011,"For storage only",37,"Bannwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23918,168833,"CHE","National Inventory",2011,"For storage only",37,"Widmoos / Endorfallmi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23919,168834,"CHE","National Inventory",2011,"For storage only",37,"Moore westlich Bröndlisegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23920,168835,"CHE","National Inventory",2011,"For storage only",37,"Bröndlisegg / Hinters Läger","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23921,168836,"CHE","National Inventory",2011,"For storage only",37,"nordöstlich Lavadinas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23922,168837,"CHE","National Inventory",2011,"For storage only",37,"Wuost","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23923,168838,"CHE","National Inventory",2011,"For storage only",37,"Moore südlich Ottenleuebad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23924,168839,"CHE","National Inventory",2011,"For storage only",37,"Chueberg / Schwändli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23925,168840,"CHE","National Inventory",2011,"For storage only",37,"Selibüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23926,168841,"CHE","National Inventory",2011,"For storage only",37,"Moor östlich Gemmenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23927,168842,"CHE","National Inventory",2011,"For storage only",37,"Büelbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23928,168843,"CHE","National Inventory",2011,"For storage only",37,"Salignas / Combras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23929,168844,"CHE","National Inventory",2011,"For storage only",37,"Pré Bernard","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23930,168845,"CHE","National Inventory",2011,"For storage only",37,"Gwattlischenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23931,168846,"CHE","National Inventory",2011,"For storage only",37,"Walenhütten / Lauchboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23932,168847,"CHE","National Inventory",2011,"For storage only",37,"Chüematte","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23933,168848,"CHE","National Inventory",2011,"For storage only",37,"Dürrentännli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23934,168849,"CHE","National Inventory",2011,"For storage only",37,"Tschafanna","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23935,168850,"CHE","National Inventory",2011,"For storage only",37,"Luegiboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23936,168851,"CHE","National Inventory",2011,"For storage only",37,"Rossbodensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23937,168852,"CHE","National Inventory",2011,"For storage only",37,"Stierenmoos / Im lätzen Hengst","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23938,168853,"CHE","National Inventory",2011,"For storage only",37,"Waldeggallmi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23939,168854,"CHE","National Inventory",2011,"For storage only",37,"Murtes","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23940,168855,"CHE","National Inventory",2011,"For storage only",37,"Tgiern Grond","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23941,168856,"CHE","National Inventory",2011,"For storage only",37,"Turen / Chaltenbrunnen / Stäckewäld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23942,168857,"CHE","National Inventory",2011,"For storage only",37,"Schärpfi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23943,168858,"CHE","National Inventory",2011,"For storage only",37,"Ladengrat / Stäckhüttenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23944,168859,"CHE","National Inventory",2011,"For storage only",37,"Alp Nadels","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23945,168860,"CHE","National Inventory",2011,"For storage only",37,"Alp Nova","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23946,168861,"CHE","National Inventory",2011,"For storage only",37,"Torry d'Arau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23947,168862,"CHE","National Inventory",2011,"For storage only",37,"Moore am Schwyberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23948,168863,"CHE","National Inventory",2011,"For storage only",37,"Tamangur","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23949,168864,"CHE","National Inventory",2011,"For storage only",37,"Rohrmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23950,168865,"CHE","National Inventory",2011,"For storage only",37,"nordöstlich Oberläger","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23951,168866,"CHE","National Inventory",2011,"For storage only",37,"Glaspass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23952,168867,"CHE","National Inventory",2011,"For storage only",37,"Weissenau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23953,168868,"CHE","National Inventory",2011,"For storage only",37,"Lac Brenet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23954,168869,"CHE","National Inventory",2011,"For storage only",37,"Liets","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23955,168870,"CHE","National Inventory",2011,"For storage only",37,"La Spielmannda / Untertierliberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23956,168871,"CHE","National Inventory",2011,"For storage only",37,"Val Val","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23957,168872,"CHE","National Inventory",2011,"For storage only",37,"Palius","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23958,168873,"CHE","National Inventory",2011,"For storage only",37,"In Schroteggen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23959,168874,"CHE","National Inventory",2011,"For storage only",37,"Alte Stand / Wischbääch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23960,168875,"CHE","National Inventory",2011,"For storage only",37,"Breitenmoostor / Alpiglen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23961,168876,"CHE","National Inventory",2011,"For storage only",37,"Grattavache","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23962,168877,"CHE","National Inventory",2011,"For storage only",37,"Oberalppass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23963,168878,"CHE","National Inventory",2011,"For storage only",37,"Les Cruilles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23964,168879,"CHE","National Inventory",2011,"For storage only",37,"L'Ochère","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23965,168880,"CHE","National Inventory",2011,"For storage only",37,"Hambiel / Rossboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23966,168881,"CHE","National Inventory",2011,"For storage only",37,"La Sagne du Séchey","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23967,168882,"CHE","National Inventory",2011,"For storage only",37,"Zu den Staflen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23968,168883,"CHE","National Inventory",2011,"For storage only",37,"Les Gurles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23969,168884,"CHE","National Inventory",2011,"For storage only",37,"Lac Ter","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23970,168885,"CHE","National Inventory",2011,"For storage only",37,"Berg beim Göscheneralpsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23971,168886,"CHE","National Inventory",2011,"For storage only",37,"Stavels Veders","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23972,168887,"CHE","National Inventory",2011,"For storage only",37,"Uf Brandsbort / Schopfweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23973,168888,"CHE","National Inventory",2011,"For storage only",37,"La Tourbière d'Echarlens","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23974,168889,"CHE","National Inventory",2011,"For storage only",37,"Plaun Pardatsch / Crest Darvun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23975,168890,"CHE","National Inventory",2011,"For storage only",37,"Tgatlems","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23976,168891,"CHE","National Inventory",2011,"For storage only",37,"Schatschas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23977,168892,"CHE","National Inventory",2011,"For storage only",37,"Plidutscha / Trutg Nurschalas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23978,168893,"CHE","National Inventory",2011,"For storage only",37,"Pontet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23979,168894,"CHE","National Inventory",2011,"For storage only",37,"Alp Stierva, Sigliots","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23980,168895,"CHE","National Inventory",2011,"For storage only",37,"Fulwasser","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23981,168896,"CHE","National Inventory",2011,"For storage only",37,"Buffalora","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23982,168897,"CHE","National Inventory",2011,"For storage only",37,"Träjen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23983,168898,"CHE","National Inventory",2011,"For storage only",37,"Alp Tuma","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23984,168899,"CHE","National Inventory",2011,"For storage only",37,"Feldmoos (BE)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23985,168900,"CHE","National Inventory",2011,"For storage only",37,"Jufplaun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23986,168901,"CHE","National Inventory",2011,"For storage only",37,"Alp Anarosa I","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23987,168902,"CHE","National Inventory",2011,"For storage only",37,"Plan Palé","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23988,168903,"CHE","National Inventory",2011,"For storage only",37,"Chez le Poisson","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23989,168904,"CHE","National Inventory",2011,"For storage only",37,"Alp Anarosa II","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23990,168905,"CHE","National Inventory",2011,"For storage only",37,"Breitmoos (AR)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23991,168906,"CHE","National Inventory",2011,"For storage only",37,"Stavel da Maighels","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23992,168907,"CHE","National Inventory",2011,"For storage only",37,"Champ-Buet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23993,168908,"CHE","National Inventory",2011,"For storage only",37,"Riedboden (GR)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23994,168909,"CHE","National Inventory",2011,"For storage only",37,"Sattelegg / Am undren Brand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23995,168910,"CHE","National Inventory",2011,"For storage only",37,"Crap la Crusch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23996,168911,"CHE","National Inventory",2011,"For storage only",37,"Alp Neaza","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23997,168912,"CHE","National Inventory",2011,"For storage only",37,"La Mosse d'en Bas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23998,168913,"CHE","National Inventory",2011,"For storage only",37,"Tourbière de Derrière la Côte, sud-est","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -23999,168914,"CHE","National Inventory",2011,"For storage only",37,"Chuchifang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24000,168915,"CHE","National Inventory",2011,"For storage only",37,"Le Brassus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24001,168916,"CHE","National Inventory",2011,"For storage only",37,"Engi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24002,168917,"CHE","National Inventory",2011,"For storage only",37,"Les Tourbières","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24003,168918,"CHE","National Inventory",2011,"For storage only",37,"Tourbière de Derrière la Côte, sud-ouest","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24004,168919,"CHE","National Inventory",2011,"For storage only",37,"Sunnsbiel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24005,168920,"CHE","National Inventory",2011,"For storage only",37,"La Thomassette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24006,168921,"CHE","National Inventory",2011,"For storage only",37,"Seeberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24007,168922,"CHE","National Inventory",2011,"For storage only",37,"Auf den Lägern","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24008,168923,"CHE","National Inventory",2011,"For storage only",37,"Wengernalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24009,168924,"CHE","National Inventory",2011,"For storage only",37,"Moore nördlich Toffelsweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24010,168925,"CHE","National Inventory",2011,"For storage only",37,"Chessibidmer","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24011,168926,"CHE","National Inventory",2011,"For storage only",37,"Lambegn","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24012,168927,"CHE","National Inventory",2011,"For storage only",37,"Alp Tobel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24013,168928,"CHE","National Inventory",2011,"For storage only",37,"Im Roten Herd","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24014,168929,"CHE","National Inventory",2011,"For storage only",37,"Station Wengernalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24015,168930,"CHE","National Inventory",2011,"For storage only",37,"Les Alpettes","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24016,168931,"CHE","National Inventory",2011,"For storage only",37,"Le Penny","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24017,168932,"CHE","National Inventory",2011,"For storage only",37,"Chänelegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24018,168933,"CHE","National Inventory",2011,"For storage only",37,"La Burtignière","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24019,168934,"CHE","National Inventory",2011,"For storage only",37,"Les Mosses de la Rogivue","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24020,168935,"CHE","National Inventory",2011,"For storage only",37,"Farreras / Scargneras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24021,168936,"CHE","National Inventory",2011,"For storage only",37,"Mederlouwenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24022,168937,"CHE","National Inventory",2011,"For storage only",37,"La Léchire","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24023,168938,"CHE","National Inventory",2011,"For storage only",37,"Sparemoos / Tots Mädli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24024,168939,"CHE","National Inventory",2011,"For storage only",37,"Oberste Gurbs","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24025,168940,"CHE","National Inventory",2011,"For storage only",37,"Sparemoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24026,168941,"CHE","National Inventory",2011,"For storage only",37,"Gammerschal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24027,168942,"CHE","National Inventory",2011,"For storage only",37,"Gros Mont","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24028,168943,"CHE","National Inventory",2011,"For storage only",37,"Uf em Hubel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24029,168944,"CHE","National Inventory",2011,"For storage only",37,"Passo dell'Uomo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24030,168945,"CHE","National Inventory",2011,"For storage only",37,"Niremont, arête nord","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24031,168946,"CHE","National Inventory",2011,"For storage only",37,"Cadagno di dentro","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24032,168947,"CHE","National Inventory",2011,"For storage only",37,"Schwarzesee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24033,168948,"CHE","National Inventory",2011,"For storage only",37,"Gros Niremont","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24034,168949,"CHE","National Inventory",2011,"For storage only",37,"Sèche de Gimel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24035,168950,"CHE","National Inventory",2011,"For storage only",37,"Dälmoos Achseten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24036,168951,"CHE","National Inventory",2011,"For storage only",37,"Cadagno di fuori","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24037,168952,"CHE","National Inventory",2011,"For storage only",37,"Triest","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24038,168953,"CHE","National Inventory",2011,"For storage only",37,"Alpe Gana","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24039,168954,"CHE","National Inventory",2011,"For storage only",37,"Bärfel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24040,168955,"CHE","National Inventory",2011,"For storage only",37,"Lac de Lussy","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24041,168956,"CHE","National Inventory",2011,"For storage only",37,"Rüti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24042,168957,"CHE","National Inventory",2011,"For storage only",37,"Le Paudex","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24043,168959,"CHE","National Inventory",2011,"For storage only",37,"Campo Solario","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24044,168960,"CHE","National Inventory",2011,"For storage only",37,"Fessu Derrière","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24045,168961,"CHE","National Inventory",2011,"For storage only",37,"Cassinal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24046,168962,"CHE","National Inventory",2011,"For storage only",37,"Chilchalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24047,168963,"CHE","National Inventory",2011,"For storage only",37,"Les Chapelles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24048,168964,"CHE","National Inventory",2011,"For storage only",37,"Lai Neir","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24049,168965,"CHE","National Inventory",2011,"For storage only",37,"Zwisched Bäch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24050,168966,"CHE","National Inventory",2011,"For storage only",37,"Pinett (Ritom)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24051,168967,"CHE","National Inventory",2011,"For storage only",37,"Moor südlich Vorderi Schneit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24052,168968,"CHE","National Inventory",2011,"For storage only",37,"Pian Segno","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24053,168969,"CHE","National Inventory",2011,"For storage only",37,"Les Roseys","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24054,168970,"CHE","National Inventory",2011,"For storage only",37,"Obers - Plani","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24055,168971,"CHE","National Inventory",2011,"For storage only",37,"Fidertschi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24056,168972,"CHE","National Inventory",2011,"For storage only",37,"Alp Flix","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24057,168973,"CHE","National Inventory",2011,"For storage only",37,"Tga d'Meir","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24058,168974,"CHE","National Inventory",2011,"For storage only",37,"Pè d'Munt / Pradè","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24059,168975,"CHE","National Inventory",2011,"For storage only",37,"Rietboden (Tamboalp)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24060,168976,"CHE","National Inventory",2011,"For storage only",37,"Glawis Fäng","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24061,168977,"CHE","National Inventory",2011,"For storage only",37,"Füürbüel, Raafgarte","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24062,168978,"CHE","National Inventory",2011,"For storage only",37,"Son Roc","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24063,168979,"CHE","National Inventory",2011,"For storage only",37,"Lischigi Weid / Vierschröti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24064,168980,"CHE","National Inventory",2011,"For storage only",37,"Vall'Ambròsa ovest","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24065,168981,"CHE","National Inventory",2011,"For storage only",37,"Campra di là","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24066,168982,"CHE","National Inventory",2011,"For storage only",37,"Vers Champ","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24067,168983,"CHE","National Inventory",2011,"For storage only",37,"Vall'Ambròsa est","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24068,168984,"CHE","National Inventory",2011,"For storage only",37,"Blasestafel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24069,168985,"CHE","National Inventory",2011,"For storage only",37,"Val Savriez","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24070,168986,"CHE","National Inventory",2011,"For storage only",37,"Les Cases","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24071,168987,"CHE","National Inventory",2011,"For storage only",37,"Val Scura (Alpe di Chièra)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24072,168988,"CHE","National Inventory",2011,"For storage only",37,"Rossweidli / Horefäng","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24073,168989,"CHE","National Inventory",2011,"For storage only",37,"Muttariet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24074,168990,"CHE","National Inventory",2011,"For storage only",37,"La Manche","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24075,168991,"CHE","National Inventory",2011,"For storage only",37,"Choma Suot - Palüd Chapè","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24076,168992,"CHE","National Inventory",2011,"For storage only",37,"Albristmeder","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24077,168993,"CHE","National Inventory",2011,"For storage only",37,"Ciernes Picat","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24078,168994,"CHE","National Inventory",2011,"For storage only",37,"Alpe di Vignone","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24079,168995,"CHE","National Inventory",2011,"For storage only",37,"Ransung","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24080,168996,"CHE","National Inventory",2011,"For storage only",37,"God da Staz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24081,168997,"CHE","National Inventory",2011,"For storage only",37,"Alp Ses","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24082,168998,"CHE","National Inventory",2011,"For storage only",37,"Val da Natons","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24083,168999,"CHE","National Inventory",2011,"For storage only",37,"Creux du Croue","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24084,169000,"CHE","National Inventory",2011,"For storage only",37,"Lej da Staz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24085,169001,"CHE","National Inventory",2011,"For storage only",37,"Am vordere Parwenge","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24086,169002,"CHE","National Inventory",2011,"For storage only",37,"Les Tenasses","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24087,169003,"CHE","National Inventory",2011,"For storage only",37,"Bolle di Cassina di Lago","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -10717,169111,"AUT","European SCS",2007,"For storage only",28,"Thayatal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10716,169111,"AUT","European Diploma",2003,"For storage only",28,"Thayatal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -7664,169631,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abbey St Bathans Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6656,169632,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aber Geirch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6657,169633,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aber Mawddach/Mawddach Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6663,169634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aberbargoed Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6151,169636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Achnahaird","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6665,169637,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Dyfi ger Mallwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4506,169638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Irfon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4534,169639,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Rheidol ger Capel Bangor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4549,169640,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Seiont","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4552,169641,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Teifi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4557,169642,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Tywi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8912,169643,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Airds Park and Coille Nathais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6386,169644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alderton Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6392,169645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Allendale Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8980,169646,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Altikeeragh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6541,169647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Amwell Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9116,169648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Annachullion Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6464,169649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Annaside and Gutterby Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3483,169650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Annet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8891,169651,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardsheal Peninsula","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6453,169652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Areley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6367,169653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arkengarthdale, Gunnerside and Reeth Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5841,169654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arkle Beck Meadows, Whaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6569,169655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arnecliff and Park Hole Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3214,169656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashburton Road Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6508,169657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashton Court","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8944,169658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Assynt Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6535,169659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Attingham Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9063,169660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aughnadarragh Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7727,169661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avon Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2780,169662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bacombe and Coombe Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9108,169663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballybannan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9097,169664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballycam","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9154,169665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballycastle Coalfield","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9101,169666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballykilbeg","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9007,169667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballyknock","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9093,169668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballynagross Lower","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9042,169669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballysudden","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9008,169670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banagher Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6693,169671,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banc Hirllwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8903,169672,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bankhead Moss, Beith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8976,169673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bann Estuary","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6415,169674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barf and Thornthwaite","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6378,169675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barn Gill Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4818,169676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barrington Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4574,169677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beech Cottage, Waterwynch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6479,169678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beeston Brook Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6555,169679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belah Woods and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6513,169680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bell Sykes Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6499,169681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bembridge School and Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2887,169682,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bencroft Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8945,169683,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berneray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8927,169684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berwickshire Coast (Intertidal)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5744,169685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Besthorpe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3429,169686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Big Pool & Browarth Point(St, Agnes)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8982,169687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Binevenagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6296,169688,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birk Fell Hawse Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8985,169689,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Burn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8930,169690,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Cart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6291,169691,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Keld Catchment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8904,169692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Loch Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9091,169693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6562,169695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackstone Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3233,169696,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bleadon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9094,169697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boho","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8946,169698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boreray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3235,169699,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Boscawen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7809,169700,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braehead Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6563,169701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braithwaite Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6486,169702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bray Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6576,169703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breckland Farmland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6577,169704,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breckland Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8979,169705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breen Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2446,169706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broome Heath Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6745,169707,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn y Gwin Isaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6737,169708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn-Bach, Cefn Cribwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6748,169709,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn-bwch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5874,169710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckbarrow Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6473,169711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckshraft Mine & Bradley Hill Railway Tunnel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6466,169712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bullhill Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6488,169713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burley Dene Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6146,169714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burrow Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6746,169715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cadnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6753,169716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cae Blaen-dyffryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6790,169717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Blaen-bydernyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6798,169718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Bwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6776,169719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Cefn Cribwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6792,169720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Fferm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6807,169721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Hirnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6812,169722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Nantsais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6814,169723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Pen-y-coed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6730,169724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Rhyd-y-gwiail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6731,169725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Talwrn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6823,169726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Ty-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6476,169727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caerwood and Ashberry Goose House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8988,169728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caldanagh Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6554,169729,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calf Hill and Cragg Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6388,169730,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cantley Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9149,169731,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carlingford Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6837,169732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn Ingli","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9005,169733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn/Glenshane","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4645,169734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrick Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8908,169735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrickarade","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6567,169736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carricknath Point To Porthbean Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9077,169737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrowcarlin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9145,169738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cashel Loughs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3430,169739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Down (Tresco)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9110,169740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Enigan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5333,169742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ceann a' Mhara to Loch a' Phuill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6851,169743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cefn Rofft","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6861,169744,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ceunant Twymyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6493,169745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chapel Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3431,169746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chapel Down (St, Martin'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6498,169747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Charity Land","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6495,169748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chatsworth Old Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6403,169750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cholwell Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6831,169751,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwarel Cwm Hirnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6844,169752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwareli Gelli-grin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6866,169753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ciliau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6868,169754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cilybebyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9125,169755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cladagh (Swanlinbar) River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6428,169756,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clarke's Pool Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3157,169757,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cleeve Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6385,169758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cliff Force Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6288,169759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clints Quarry, Moota","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4587,169760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Close House Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6879,169761,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cnap Twt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7810,169762,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cockinhead Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6893,169763,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Cwm Einion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6945,169764,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Capel Dyddgen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6955,169765,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cog Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7825,169766,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coir' an Eoin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6137,169767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Comb Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6404,169768,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Conegar Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6324,169769,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coniston Mines and Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6960,169770,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Connah's Quay Ponds and Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6556,169771,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coombe Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9105,169772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corbally","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9004,169773,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corbylin Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6974,169774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Cefn Llwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6997,169775,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Llanllyfni","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7002,169776,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Nantcwnlle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7022,169777,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsydd a Rwyth Cilyblaidd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7018,169778,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsydd Nug a Merddwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6416,169779,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corton Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6341,169780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coryton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3236,169781,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Court Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5261,169782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cowbit Wash","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7023,169783,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crabtree Green Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7028,169784,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig yr Aderyn (Bird's rock)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8973,169785,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigahulliar","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9040,169786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigantlet Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7974,169787,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranley Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9054,169788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranny Bogs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8929,169789,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag Clunie and the Lion's Face","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6457,169790,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crocadon Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9121,169791,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crossbane Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3636,169792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crouch and Roach Estuaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6518,169793,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crow's Nest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6328,169794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cuckoo Rock To Turbot Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6467,169795,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cumpston Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9018,169797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Curran Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7011,169798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwar yr Ystrad a Cwar Blaen-dyffryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7043,169799,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Clydach, Cydweli","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7059,169800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwmsaise","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6402,169801,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dale Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4128,169802,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dark Peak","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8999,169803,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dead Island Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7070,169804,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dee Estuary/Aber Afon Dyfrdwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6317,169805,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Denby Grange Colliery Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6460,169806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devil's Chapel Scowles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6570,169807,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dew's Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6537,169808,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dixton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6970,169809,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dolorgan Barn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9109,169810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumacrittin Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9122,169811,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumcarn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9146,169812,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumlougher Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8897,169813,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dubh Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6530,169814,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunster Park and Heathlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7082,169815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dyffrynnoedd Nedd a Mellte a Moel Penderyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8884,169816,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dykeneuk Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8079,169817,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Halladale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6261,169818,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Harnham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4641,169819,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Polden Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8918,169820,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Sanday Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3752,169821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Walton and Adcock's Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3432,169822,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eastern Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6520,169823,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eastern Peak District Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6387,169824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ecton Copper Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8925,169825,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eilean Hoan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6455,169826,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ellery Sike","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8926,169827,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Endrick Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9033,169828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Essan Burn & Mullyfamore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6558,169829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ewefell Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7088,169830,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ewenny and Pant Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8928,169831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fafernie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8933,169832,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Faray and Holm of Faray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9083,169833,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fardross Stream","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9078,169834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fardrum & Roosky Turloughs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7094,169835,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Felin Llwyngwair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7095,169836,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fenn's Whixall, Bettisfield, Wem and Cadney Mosses (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7104,169838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ffriddoedd Garndolbenmaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6517,169839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Field Head Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6158,169840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Firth of Forth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5867,169841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Florence Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4806,169842,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foel Gron Stream Sections","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7107,169843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foel Ispri","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6463,169844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Force Crag Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8941,169845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forest of Clunie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6319,169846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foulshaw Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6483,169847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Freshfield Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4812,169848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Freshwater East Cliffs to Skrinkle Haven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6525,169849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Froghall Meadow and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4843,169850,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frondeg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8991,169851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frosses Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6145,169852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garbh Shlios","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8983,169853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garry Bog Part 2","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6292,169854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"George Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8921,169855,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Giant'S Causeway and Dunseverick","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6424,169856,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gill Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7119,169857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glanllynnau a Glannau Pen-ychain i Gricieth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5122,169858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Tonfanau i Friog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7122,169859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glanrhocca","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8923,169860,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glas Eileanan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9002,169861,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenarm Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8894,169862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenmore Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9070,169863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glennasheevar","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5126,169864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glyn Cywarch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6504,169865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Goblin Combe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7139,169866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Graig, Llanarmon-yn-Ial","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6490,169867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grange Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9029,169868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grange Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7128,169869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Granllyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6138,169870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Graveland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3801,169871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grays Thurrock Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3357,169872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Pool (Tresco)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8986,169873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9135,169874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenan Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6350,169875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grimston Warren Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7136,169876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gro Ty'n yr Helyg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7137,169877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gro Ystwyth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8692,169878,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ground Bridge","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3443,169879,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7165,169880,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwernydd Penbre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7164,169881,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Blaencleddau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7167,169882,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Ceunant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7171,169883,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Dolwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7172,169884,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Dyffryn Nedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7175,169885,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Ger Fronhaul","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7176,169886,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Nant y Dernol","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7184,169887,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gyfartha","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6559,169888,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haggs Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6327,169889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hallsands-Beesands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3584,169890,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ham Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5044,169891,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harwood Dale Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8907,169892,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hassockrigg and North Shotts Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5436,169893,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hatfield Chase Ditches","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6502,169894,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haydon Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6361,169895,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heath Hill Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2450,169896,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hele, Samson's and Combe Martin Bays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7199,169897,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hendre Bach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9064,169898,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Heron & Carrigullian Loughs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6497,169899,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hesledon Moor East","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6572,169900,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hestercombe House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6482,169901,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hexhamshire Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3484,169902,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Higher Moors & Porth Hellick Pool (St, Mary'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2391,169903,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hinton Hill, Wellow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9090,169904,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollymount","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6351,169905,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holway Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5428,169906,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horbling Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6503,169907,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horseshoe Bend, Shirehampton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7198,169908,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Horton, Eastern and Western Slade","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6335,169909,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurcott Lane Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6265,169910,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurn Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6251,169911,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Iford Manor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5334,169912,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Clyde","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7212,169913,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Marsh Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6469,169914,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Marsh Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8913,169915,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inverasdale Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6334,169916,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kellaways - West Tytherton, River Avon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6550,169917,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kempton Park Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3240,169918,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kenn Church, Kenn Pier & Yew Tree Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6293,169919,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kennet Valley Alderwoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8892,169920,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kentallen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6248,169921,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kershope Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9100,169922,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilnameel","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9127,169923,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilroosky Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8920,169924,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kintyre Goose Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8299,169925,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinveachy Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6568,169926,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirk Deighton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5129,169927,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkby Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4899,169928,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirton Wood, Lincolnshire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5131,169929,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirton Wood, Notts,","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5343,169930,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knapdale Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8314,169931,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockie Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9120,169932,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockninny Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8317,169933,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ladder Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5337,169934,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lairg and Strath Brora Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5779,169935,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langcliffe Scars and Jubilee, Albert and Victoria Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6425,169936,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langdale Pikes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6325,169937,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langdale, Bowderdale and Carlin Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9069,169938,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Largalinny","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6553,169939,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laughton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6507,169940,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lea Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9035,169941,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leathemstown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6305,169942,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lee Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6412,169943,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leet Hill, Kirby Cane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6510,169944,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leiston - Aldeburgh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9043,169945,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lime Hill Farm","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6470,169946,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linley Big Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6561,169947,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Wittenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7227,169948,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llafar River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7231,169949,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanddulas Limestone and Gwrych Castle Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7215,169950,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llantrisant Common and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7216,169951,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanymynech and Llynclys Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7241,169952,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llofft-y-bardd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7250,169953,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llymwynt Brook Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6506,169954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lobbington Hall Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8893,169955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Aline","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8942,169956,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Awe and Loch Ailsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8943,169957,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Calder","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8914,169958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch nam Madadh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8911,169959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Mey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8900,169960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Siadar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8898,169961,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Urigill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8896,169962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Craig Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8989,169963,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Foyle","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8709,169964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Melvin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9129,169965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loughaveeley","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9086,169966,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loughmoney","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6542,169967,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lovell Hill Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6255,169968,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Low Wray Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6533,169969,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Coombe and Ferne Brook Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6431,169970,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Dicker","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6303,169971,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Fal & Helford Intertidal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3474,169972,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Moors (St, Mary'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6489,169973,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Saleway Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6422,169974,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ludworth Intake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6326,169975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lulsgate Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6393,169976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lune Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7205,169977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lydstep Head to Tenby Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6571,169978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lyppard Grange Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6331,169979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lytham Coastal Changes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7294,169980,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maes Hiraddug","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7297,169981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maes y Grug","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9061,169982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Magheramenagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5684,169983,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Malham-Arncliffe ( Cool Pasture )","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6348,169984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marble Quarry and Hale Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7308,169985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mariandyrys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6485,169986,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marked Ash Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9010,169987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"McKEAN 'S MOSS","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9009,169988,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mckean'S Moss Part II","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5070,169989,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Melbourne and Thornton Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6320,169990,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Merrivale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6574,169991,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mersey Narrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6346,169992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Middlebarrow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6544,169993,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mill Meadows, Billericay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5518,169994,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Miller's Hill, Milborne Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6481,169995,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minster Church","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6516,169996,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minsterley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8889,169998,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mointeach nan Lochain Dubha","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9025,169999,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moneygal Bog Part II","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4421,170000,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monk Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9052,170001,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Montiaghs Moss","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7266,170002,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morfa Dinlle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9098,170003,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moyrourkan Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6526,170004,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mungrisdale Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7328,170006,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Cwmbrwyno","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7329,170007,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Cwmystwyth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7341,170008,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Marian","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4952,170009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Tir y Cwmwd a'r Glannau at Garreg yr Imbill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6340,170010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nab Gill Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7355,170011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant Clydach Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7363,170012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant-y-rhos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7371,170013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Neuadd and Tylelo Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6534,170014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Ferry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7378,170016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newton Court Stable Block","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6531,170017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nicodemus Heights","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3486,170018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Norrard Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8577,170019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Colonsay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5748,170020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North York Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6523,170021,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oak Tree Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6419,170022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oakshaw Ford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8916,170023,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Obain Loch Euphoirt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6462,170024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Bow and Old Ham Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7382,170025,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Old Pulford Brook Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6573,170028,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Otterburn Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6134,170029,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Otterswick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9032,170030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Outer Belfast Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9024,170031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Owenkillew River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8593,170032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pabbay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5852,170034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park House Outbuildings, Stackpole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4759,170035,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3741,170036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6529,170037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Paston Great Barn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9059,170038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peatlands Park","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7402,170039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen Benar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3487,170040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peninnis Head (St, Mary'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3219,170041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penlee Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7423,170042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penmaenuchaf Hall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8917,170043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pentland Firth Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8606,170044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penton Linns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7427,170045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penycastell, Cefn Cribwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6140,170046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pets Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7431,170047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pine Lodge Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7432,170048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pistyll Rhaeadr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3490,170049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plains & Great Bay (St, Martin'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6452,170050,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Polruan To Polperro","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3495,170051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pool Of Bryher & Popplestone Bank (Bryher)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3362,170052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porth Seal (St, Martin'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9003,170053,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portmuck","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6478,170055,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poxwell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6512,170056,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prince's Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6330,170057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Priory Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6433,170058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Purfleet Road, Aveley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6538,170059,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quarrington Hill Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9085,170060,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quoile","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4633,170061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Racecourse Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6521,170062,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Railway Meadow, Langley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8963,170063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ramore Head and The Skerries","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6429,170064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Range Farm Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6141,170065,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rannoch Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6316,170066,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ray and Crinkle Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8924,170067,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7473,170068,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Garth-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7481,170069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Pant-tyle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7484,170070,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosydd Nant-yr-henfron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6277,170071,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Richmond Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6381,170072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Axe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6321,170073,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Barle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8935,170074,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Borgie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8666,170076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Dee (Parton to Crossmichael)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6380,170077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Derwent and Tributaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4231,170078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Derwent At Hathersage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6304,170079,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Eden and Tributaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6382,170080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Ehen (Ennerdale Water To Keekle Confluence)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6306,170081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Frome","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6343,170082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Itchen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6509,170083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Kent and Tributaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8937,170084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Kerry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7513,170086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Lugg (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6557,170087,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Mease","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8905,170088,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Moidart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6475,170089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Nent At Blagill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6426,170090,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Rawthey, Wandale Beck and Sally Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8931,170091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Spey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7514,170092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Teme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6285,170093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Teme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6356,170094,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Test","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6566,170095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Till","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7515,170096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Usk (Lower Usk)/ Afon Wysg (Wysg Isaf)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7516,170097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Usk (Upper Usk)/Afon Wysg (Wysg Uchaf)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7517,170098,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Wye (Lower Wye)/Afon Gwy (Gwy Isaf)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7519,170099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Wye (Upper Wye)/Afon Gwy (Gwy Uchaf)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6289,170100,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Robin Hood's Bay: Maw Wyke To Beast Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6564,170101,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rochdale Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6314,170102,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rook Clift","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8992,170103,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rostrevor Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8922,170105,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Runkerry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3497,170106,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rushy Bay & Heathy Hill (Bryher)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2569,170107,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ryde Sands and Wootton Creek","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6527,170108,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Saddington Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3498,170109,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Samson (With Green, White, Puffin & Stony Islands)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6575,170110,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandlings Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8934,170111,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6417,170112,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scawgill and Blaze Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6418,170113,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scaynes Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6315,170114,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Seathwaite Copper Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6565,170115,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sefton Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5364,170117,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shaw Beck Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6389,170118,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheppey Cliffs and Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3499,170119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shipman Head & Shipman Down (Bryher)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7530,170120,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shotton Lagoons and Reedbeds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6301,170121,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Side Pike","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9011,170122,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Silverbrook Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6468,170123,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Silverdale Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6536,170124,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sinah Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6427,170125,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skipsea Bail Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6159,170126,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slaidhills Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8940,170127,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sleibhtean agus Cladach Thiriodh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5572,170128,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sleightholme Beck Gorge `The Troughs'","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9143,170129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slieve Gullion","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6445,170130,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southerham Machine Bottom Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6458,170131,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St James' Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6543,170132,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Leonards and St Ives Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8899,170133,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Margaret's Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5711,170134,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Austell Clay Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6456,170135,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, Catherine's Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6465,170136,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stairfoot Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6459,170137,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Standridge Farm Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6333,170138,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Steeple Ashton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6420,170139,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stile End","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6511,170140,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stowe Pool and Walk Mill Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9049,170141,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Straduff","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8990,170142,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Straidkilly Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5399,170143,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strath an Loin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8906,170144,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strathy Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7546,170146,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stryt Las a'r Hafod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6353,170147,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Styrrup Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6461,170148,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Swinden Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8938,170149,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Switha","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9096,170150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tattenamona","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3501,170151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7498,170152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tenby Cliffs and St. Catherine's Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6501,170153,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Allers and Lilburn Valley Junipers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6515,170154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6395,170155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Brinks, Northwold","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5493,170156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Cheviot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9067,170157,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Cliffs of Magho","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6474,170159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Sturts","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8919,170160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Vadills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5186,170161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wash","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6290,170162,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thornsgill Beck, Mosedale Beck and Wolf Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6547,170163,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorpe Park No 1 Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6491,170164,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thrang Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2449,170165,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Throstle Shaw and Sandbeds Fan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8741,170166,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tieveshilly","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8939,170167,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tips of Corsemaul and Tom Mor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8901,170168,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tob Valasay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9060,170169,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tonnagh Beg Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9020,170170,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Toome","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6363,170171,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Totternhoe Stone Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8974,170172,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tow River Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9348,170173,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tregonetha & Belowda Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6519,170174,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trelow Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4646,170175,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trench Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7559,170177,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trewern Brook (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6492,170178,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trinity Broads","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5648,170179,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tripsdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7562,170180,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trum y Ddysgl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7491,170181,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ty Croes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7480,170182,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tryweryn River Sections","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6539,170183,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tudor Farm Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6552,170184,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tuetoes Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9039,170185,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tully Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9081,170186,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tullysranadeega","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8932,170187,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turclossie Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6152,170188,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turflundie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9075,170189,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turmennan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6421,170190,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turners Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6390,170191,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tweed Catchment Rivers - England: Till Catchment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7494,170192,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ty Du Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7574,170193,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyddyn-y-barcut","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7575,170194,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyncoed Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6347,170195,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Underlaid Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9034,170196,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Ballinderry River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7570,170197,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Chapel Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5872,170198,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Dentdale Cave System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6546,170199,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Greensand Hangers : Empshott To Hawkley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6545,170200,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Greensand Hangers : Wyck To Wheatley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5359,170202,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Valla Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8895,170203,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Valtos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7579,170204,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waen Rydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7580,170205,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wallis Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8834,170206,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waltonhill and Cradle Den","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6252,170209,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Water Crag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4982,170210,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waterwynch Bay to Saundersfoot Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8910,170211,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waukenwae Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7595,170212,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun-fawr, Cefn Cribwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6522,170213,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Welford Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6484,170214,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Cornwall Bryophytes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5837,170215,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West End Meadow, Lunds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9092,170216,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Fermanagh Scarplands","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6477,170217,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Nidderdale, Barden and Blubberhouses Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6471,170218,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westbury Brook Ironstone Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6142,170219,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wester Ross Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3502,170220,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Western Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2354,170221,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Weston Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6297,170222,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitberry Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3347,170223,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Horse Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8909,170224,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Park Bay","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8952,170225,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Rocks","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6560,170226,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitesike Mine and Flinty Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9036,170227,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitespots","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6480,170228,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitfield Gill and Mill Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6472,170229,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wigpool Ironstone Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5073,170230,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wilwell Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3171,170231,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Win Green Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3491,170233,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wingletang Down (St, Agnes)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8996,170234,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wolf Island Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5919,170235,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wood Lee Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7603,170236,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woodland Park and Pontypren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3229,170237,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wookey Station","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6494,170238,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woolbeding and Pound Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6549,170239,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wraysbury No 1 Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6551,170240,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wraysbury Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7587,170241,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wyndrush Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5871,170242,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wyre Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8936,170243,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yell Sound Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6295,170245,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yewdale Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -11494,170248,"DNK","Birdlife IBA",2010,"For storage only",28,"Vangså, område ved","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21936,170353,"EST","Parks Canada",2006,"For storage only",28,"Ohepalu LKA, Udriku skv.","Wilderness conservation zone of nature reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1095,171052,"EST","METT",2012,"For storage only",15,"Kõnnumaa maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -11911,172550,"LVA","METT",2006,"For storage only",28,"Užava","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20715,172823,"SVK","CCPAMET",2011,"For storage only",32,"Dunajske luhy","Protected Landscape Area; second level of protection","second level of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20689,173002,"SVK","CCPAMET",2017,"For storage only",32,"Mala Fatra-OP","Buffer Zone of the National Park; second level/grade of protection","second level/grade of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20703,173003,"SVK","CCPAMET",2017,"For storage only",32,"Muranska Planina-OP","Buffer Zone of the National Park; second level/grade of protection","second level/grade of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20700,173004,"SVK","CCPAMET",2017,"For storage only",32,"Nizke Tatry-OP","Buffer Zone of the National Park; second level/grade of protection","second level/grade of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20714,173006,"SVK","CCPAMET",2017,"For storage only",32,"Poloniny-OP","Buffer Zone of the National Park; second level/grade of protection","second level/grade of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20691,173007,"SVK","CCPAMET",2017,"For storage only",32,"Slovensky Kras-OP","Buffer Zone of the National Park; second level/grade of protection","second level/grade of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20693,173008,"SVK","CCPAMET",0,"For storage only",32,"Slovensky Raj-OP","Buffer Zone of the National Park; second level/grade of protection","second level/grade of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20687,173009,"SVK","CCPAMET",2017,"For storage only",32,"Tatransky-OP","Buffer Zone of the National Park; second level/grade of protection","second level/grade of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -20695,173010,"SVK","CCPAMET",2017,"For storage only",32,"Velka Fatra-OP","Buffer Zone of the National Park; second level/grade of protection","second level/grade of protection","Slovakia Management Effectiveness Evaluation",2018,NA,FALSE -6659,174643,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aber Taf/Taf Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6681,174644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Amnodd-Bwll Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6162,174645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arran Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9053,174646,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballynanaghten","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6698,174647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barbadoes Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5769,174648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barn Elms Wetland Centre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6584,174649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beck Dale Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6757,174650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buckley Claypits and Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6586,174651,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caen Valley Bats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9080,174652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrickastickan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9113,174653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castletown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6826,174654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ceunant Aberderfel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6336,174655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chapel Point To Wolla Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5575,174656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwarel Singret","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6966,174657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Bryn-y-gaer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7016,174658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors y Wlad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7019,174659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Courthouse Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5796,174660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig-y-garn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6582,174661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranmore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9084,174662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cullentra Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6528,174663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dabble Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9133,174664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Derryvore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7079,174665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duhonw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7097,174666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fferam Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4797,174667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foel Gron a Thir Comin Mynytho","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7630,174668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fymore Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7118,174669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glanfedw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6157,174670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen App and Galloway Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7146,174671,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Efail Wig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7208,174672,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Herward Smithy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8947,174673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inchcruin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9132,174674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Killough Bay and Strand Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8948,174675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinloch and Kyleakin Hills (Monadh Chaol Acainn is Cheann Loch)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6147,174676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knapdale Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9144,174677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Levallymore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7239,174678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llangofan Church","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7249,174679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llwyn-iarth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6580,174680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Long Lye Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9151,174681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Doo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7295,174682,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maes Meillion a Gefail-y-cwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7320,174683,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moelypenmaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7262,174684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morfa Abererch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6161,174685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muirkirk Uplands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7327,174686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwynfgloddfa Ceulan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7325,174687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Brynrarf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7334,174688,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Llechweddhelyg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7336,174689,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Mynydd-Bach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7337,174690,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Nantiago","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7349,174691,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Eppynt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7361,174692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant y Crimp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7365,174693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nantanog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7362,174694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nicholaston Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5908,174695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Normanby Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6153,174696,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Lowther Uplands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7383,174697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orielton Stable Block and Sellars","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9152,174698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Outer Ards","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7388,174699,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pant Cae Haidd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8953,174700,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peeswit Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7434,174701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plantation Farm and the Gethley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7437,174702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plas Maenan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6540,174703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porlock Ridge & Saltmarsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7400,174704,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porth Towyn i Borth Wen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7445,174705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pwll Lagoon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7493,174706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhychell Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5774,174707,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Dee (England)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7512,174708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Ithon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7518,174709,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Wye (Tributaries)/Afon Gwy (Isafonydd)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7521,174710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rose Cottage, Llethrid","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9147,174711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Selshion","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7534,174712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sluxton Marsh, Whitemoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5911,174713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stiffkey Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8949,174714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sunart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6583,174715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sutton & Lound Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9150,174716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tully Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8997,174717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tullyard","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9102,174718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tullybrick Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6391,174719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tweed Catchment Rivers - England: Lower Tweed and Whiteadder","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8950,174720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Fannyside Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6585,174721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Withcall and South Willingham Tunnels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7588,174722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Y Foryd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7612,174723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yr Arddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -10703,174775,"AUT","European SCS",2007,"For storage only",28,"Gesäuse","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22052,175210,"FIN","RAPPAM",2004,"For storage only",28,"Kurjenrahkan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22119,175211,"FIN","RAPPAM",2004,"For storage only",28,"Repoveden kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22057,175212,"FIN","RAPPAM",2004,"For storage only",28,"Leivonmäen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22149,175225,"FIN","RAPPAM",2004,"For storage only",28,"Syötteen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22065,176188,"FIN","RAPPAM",2004,"For storage only",28,"Linnansaari","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11939,176293,"MKD","METT",0,"For storage only",28,"Ezerani","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11976,176294,"MKD","METT",0,"For storage only",28,"Tikvesh","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11954,176295,"MKD","METT",0,"For storage only",28,"Kozle","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11936,176297,"MKD","METT",0,"For storage only",28,"Drenachka Reka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11941,176298,"MKD","METT",0,"For storage only",28,"Garska Reka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11943,176300,"MKD","METT",0,"For storage only",28,"Iberliska Reka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11969,176304,"MKD","METT",0,"For storage only",28,"Popova Shapka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11975,176307,"MKD","METT",0,"For storage only",28,"Suvi Dol","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11931,176309,"MKD","METT",0,"For storage only",28,"Arboretum","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11934,176312,"MKD","METT",0,"For storage only",28,"Crna dudinka, Lesnovski Manastir","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11935,176314,"MKD","METT",0,"For storage only",28,"Crni orevi, Demir Kapija","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11938,176319,"MKD","METT",0,"For storage only",28,"Duvalo (Kosel)","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11942,176320,"MKD","METT",0,"For storage only",28,"Gladnica","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11965,176322,"MKD","METT",0,"For storage only",28,"Gorna Slatinska Peshtera","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11949,176323,"MKD","METT",0,"For storage only",28,"Karshi Bavchi","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11952,176324,"MKD","METT",0,"For storage only",28,"Koleshinski Vodopad","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11953,176325,"MKD","METT",0,"For storage only",28,"Konche","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11955,176328,"MKD","METT",0,"For storage only",28,"Makedonski dab, s.Trpejca, Ohrid","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11956,176329,"MKD","METT",0,"For storage only",28,"Manastir, Mariovo","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11959,176332,"MKD","METT",0,"For storage only",28,"Morodvis","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11960,176333,"MKD","METT",0,"For storage only",28,"Murite","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11963,176334,"MKD","METT",0,"For storage only",28,"Orashac","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11964,176335,"MKD","METT",0,"For storage only",28,"Ostrovo, Gazi Baba","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11966,176337,"MKD","METT",0,"For storage only",28,"Peshtera Mlechnik","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11967,176338,"MKD","METT",0,"For storage only",28,"Peshtera Ubavica","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11968,176343,"MKD","METT",0,"For storage only",28,"Platan, Tetovo","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11972,176347,"MKD","METT",0,"For storage only",28,"Rechica","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11973,176348,"MKD","METT",0,"For storage only",28,"Beleshnicka Reka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11974,176352,"MKD","METT",0,"For storage only",28,"Stebla od platan, Star Dojran","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11978,176359,"MKD","METT",0,"For storage only",28,"Zvegor","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10777,176774,"BGR","RAPPAM",2004,"For storage only",28,"Persina","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10787,176805,"BGR","RAPPAM",2004,"For storage only",28,"Rilski manastir","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10766,176815,"BGR","RAPPAM",2004,"For storage only",28,"Bulgarka","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10790,176828,"BGR","RAPPAM",2004,"For storage only",28,"Strandzha","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22249,178706,"CHE","Annual Report",2015,"For storage only",37,"Zürich-Obersee: Guntliweid bis Bätzimatt","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22250,178707,"CHE","Annual Report",2015,"For storage only",37,"Bolle di Magadino","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22251,178708,"CHE","Annual Report",2015,"For storage only",37,"Versoix jusqu'à Genf","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22252,178709,"CHE","Annual Report",2015,"For storage only",37,"Rorschacher Bucht / Arbon","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22253,178710,"CHE","Annual Report",2015,"For storage only",37,"Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22254,178711,"CHE","Annual Report",2015,"For storage only",37,"Kanderdelta bis Hilterfingen","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22255,178712,"CHE","Annual Report",2015,"For storage only",37,"Wohlensee (Halenbrücke bis Wohleibrücke)","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22256,178713,"CHE","Annual Report",2015,"For storage only",37,"Stausee Niederried","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22257,178714,"CHE","Annual Report",2015,"For storage only",37,"Port Noir jusqu'à Hermance","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22258,178715,"CHE","Annual Report",2015,"For storage only",37,"Häftli bei Büren","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22259,178716,"CHE","Annual Report",2015,"For storage only",37,"Aare bei Solothurn und Naturschutzreservat Aare Flumenthal","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22260,178717,"CHE","Annual Report",2015,"For storage only",37,"Plaine de l'Orbe: Chavornay jusqu'à Bochuz","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22261,178718,"CHE","Annual Report",2015,"For storage only",37,"Salavaux","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22262,178719,"CHE","Annual Report",2015,"For storage only",37,"Alter Rhein: Rheineck","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22263,178721,"CHE","Annual Report",2015,"For storage only",37,"Pointe de Promenthoux","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -13210,178735,"SVN","RAPPAM",2009,"For storage only",28,"Notranjski regijski park","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11696,178867,"ITA","METT",2003,"For storage only",28,"Riserva naturale guidata Abetina di Rosello","Regional/Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11702,178894,"ITA","METT",2003,"For storage only",28,"Oasi naturale di Guardiaregia - Campochiaro","Other Protected Natural Regional Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11715,178942,"ITA","METT",2003,"For storage only",28,"Oasi naturale del Monte Polveracchio","Other Protected Natural Regional Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11705,178992,"ITA","METT",2003,"For storage only",28,"Oasi di Macchiagrande","Other Protected Natural Regional Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22264,179001,"CHE","Annual Report",2015,"For storage only",37,"Hagneckdelta und St. Petersinsel","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -1079,180991,"EST","METT",2010,"For storage only",15,"Nõmme-Mustamäe maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -11901,181880,"LVA","METT",2006,"For storage only",28,"Bernati","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22183,182768,"SWE","PANPARKS",2006,"For storage only",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22184,182768,"SWE","PANPARKS",2007,"For storage only",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22182,182768,"SWE","PANPARKS",2005,"For storage only",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22181,182768,"SWE","PANPARKS",2004,"For storage only",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22179,182768,"SWE","PANPARKS",2002,"For storage only",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22180,182768,"SWE","PANPARKS",2003,"For storage only",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22185,182768,"SWE","METT",2005,"For storage only",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9157,183412,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castlewellan Lake","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6274,183413,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fenn'S, Whixall, Bettisfield, Wem & Cadney Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8955,183414,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barran Dubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2834,183415,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aston Rowant Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4380,183416,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berrington Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6578,183417,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birklands West and Ollerton Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4440,183418,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Mountains","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6352,183419,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cook's Wood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6581,183420,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dibden Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4410,183421,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanymynech & Llynclys Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5766,183422,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mattishall Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6135,183423,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penton Linns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3463,183424,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Powerstock Common & Wytherston Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4214,183425,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Lugg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6579,183426,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roecliffe Manor Lawns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4723,183427,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Severn Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4278,183428,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trewern Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5997,183429,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Solway Flats & Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6655,183431,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aber Afon Conwy/ Conwy Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4452,183432,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dee Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9155,183433,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lurgan Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8954,183434,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Creran Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9148,183435,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portrush West Strand","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9153,183436,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Foyle and Tributaries","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2978,183437,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Compton Chine To Steephill Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6755,183438,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brynna a Wern Tarw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6948,183439,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Dyffryn Alwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5965,183440,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Glo a Glyndyrus","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6587,183441,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harries Ground, Rodbourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6589,183442,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holehaven Creek","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6588,183443,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mottisfont Bats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6590,183444,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slade Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6667,183445,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Cleddau Dwyreiniol/Eastern Cleddau River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6668,183446,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Cleddau Gorllewinol/Western Cleddau River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4558,183447,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Wysg (Isafonydd)/River Usk (Tributaries)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6947,183448,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Derw Elwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6935,183449,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Nantgwynant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7346,183450,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddia Wnion a Eglwys Sant Marc","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7602,183451,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wig Bach a'r Glannau I Borth Alwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4523,183452,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Llyfni","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9156,183453,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Torr Head","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -12683,184172,"ROU","METT",2005,"For storage only",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12685,184172,"ROU","METT",2008,"For storage only",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12684,184172,"ROU","METT",2007,"For storage only",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12689,184172,"ROU","RAPPAM",2006,"For storage only",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12686,184172,"ROU","METT",2009,"For storage only",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12719,184173,"ROU","METT",2009,"For storage only",28,"Vânatori Neamt","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12694,184173,"ROU","METT",2012,"For storage only",28,"Vânatori Neamt","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12718,184173,"ROU","RAPPAM",2006,"For storage only",28,"Vânatori Neamt","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12690,193310,"ROU","METT",2005,"For storage only",28,"Muntii Maramuresului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12687,193310,"ROU","METT",2010,"For storage only",28,"Muntii Maramuresului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12692,193310,"ROU","RAPPAM",2006,"For storage only",28,"Muntii Maramuresului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12691,193310,"ROU","METT",2006,"For storage only",28,"Muntii Maramuresului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9158,193560,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9159,193561,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Derrycloony Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9162,193562,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Conagher","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9161,193563,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumcrow","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9165,193564,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aghnadarragh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9164,193565,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newlands","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9166,193566,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aghanloo Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9167,193567,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fathom Upper","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9168,193568,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bonds Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9117,193569,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cam Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9118,193570,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Copeland Islands","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9119,193571,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mullynaskeagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6643,193717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aberdunant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6687,193718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arfordir Penrhyn Angle/Angle Peninsula Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6714,193719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaen Nedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6804,193720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Crug Bychan, Ty Gwyn a Llwyn Ysgaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4684,193721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Parkmill a Cwm Llethrid/Parkmill Woodlands and Llethrid Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7121,193722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Penmon-Biwmares","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5091,193723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Porthaethwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -5166,193724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaith Brics Buttington/Buttington Brick Works","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7345,193725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddiau Llanfrothen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7550,193726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tairgwaith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7565,193727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trychiad Ffordd Craig Fach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7566,193728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trychiad Ffordd Moel Hafod-Owen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6602,193732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Besthorpe Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6594,193733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Briarcroft Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6603,193734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caydale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6591,193735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holnest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6592,193736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Humber Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4811,193737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orton Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -3725,193738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slapton Ley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6524,193739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thwaite House Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6593,193740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitton Bridge Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6707,193741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bishop's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7450,193742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhagnentydd Gwy Uchaf / Upper Wye Triburaties","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7486,193743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosydd Yerbeston / Yerbeston Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -21995,195092,"FIN","Birdlife IBA",2010,"For storage only",28,"Ahmasjärven luonnonsuojelualue","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14497,196014,"ESP","Catalonia MEE",2002,"For storage only",28,"Aigüestortes i Estany de Sant Maurici","Nacional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14657,196099,"ESP","Birdlife IBA",2008,"For storage only",28,"Jandía","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14571,196147,"ESP","Birdlife IBA",2007,"For storage only",28,"Fuentes Carrionas y Fuente Cobre - Montaña Palentina","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14763,196192,"ESP","Catalonia MEE",2002,"For storage only",28,"Utxesa","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14540,196213,"ESP","Catalonia MEE",2002,"For storage only",28,"Delta de l`Ebre","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14775,196372,"ESP","Catalonia MEE",2002,"For storage only",28,"Zona Volcànica de la Garrotxa","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12703,196474,"ROU","METT",2012,"For storage only",28,"Putna - Vrancea","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12702,196474,"ROU","RAPPAM",2006,"For storage only",28,"Putna - Vrancea","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12701,196474,"ROU","METT",2009,"For storage only",28,"Putna - Vrancea","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12679,196477,"ROU","RAPPAM",2006,"For storage only",28,"Geoparcul Dinozaurilor Tara Hategului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12680,196477,"ROU","METT",2009,"For storage only",28,"Geoparcul Dinozaurilor Tara Hategului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12681,196477,"ROU","METT",2012,"For storage only",28,"Geoparcul Dinozaurilor Tara Hategului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12652,196478,"ROU","METT",2009,"For storage only",28,"Buila - Vânturarita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12651,196478,"ROU","RAPPAM",2006,"For storage only",28,"Buila - Vânturarita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12653,196478,"ROU","METT",2012,"For storage only",28,"Buila - Vânturarita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28099,196501,"MKD","METT",2007,"For storage only",28,"Pelister","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -736,198281,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Viruá","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -397,198281,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Viruá","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -84,198291,"ARG","WHA Outlook Report",2014,"For storage only",3,"Península Valdés","World Heritage Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -21932,198294,"CAN","WHA Outlook Report",2014,"For storage only",28,"Miguasha National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11025,198295,"CHN","WHA Outlook Report",2014,"For storage only",28,"Mount Wuyi","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15105,198299,"PHL","WHA Outlook Report",2014,"For storage only",28,"Puerto-Princesa Subterranean River National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12586,198300,"PRT","WHA Outlook Report",2014,"For storage only",28,"Laurisilva of Madeira","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13051,198301,"RUS","WHA Outlook Report",2014,"For storage only",28,"Western Caucasus","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12826,198301,"RUS","Birdlife IBA",2007,"For storage only",28,"Western Caucasus","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21371,198302,"ZAF","METT",2009,"For storage only",28,"iSimangaliso Wetland Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21372,198302,"ZAF","METT",2010,"For storage only",28,"iSimangaliso Wetland Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21373,198302,"ZAF","WHA Outlook Report",2014,"For storage only",28,"iSimangaliso Wetland Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14586,198303,"ESP","WHA Outlook Report",2014,"For storage only",28,"Ibiza, Biodiversity and Culture","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11849,198314,"KHM","METT",2010,"For storage only",28,"Boeng Chhmar and Associated River System and Floodplain","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11856,198315,"KHM","RAPPAM",2004,"For storage only",28,"Koh Kapik and Associated Islets","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15091,198328,"PHL","Birdlife IBA",2001,"For storage only",28,"Agusan Marsh Wildlife Sanctuary","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1388,198334,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caithness & Sutherland Peatlands","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1367,198335,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arun Valley","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -21938,198338,"CAN","GOBI Survey",2006,"For storage only",28,"Redberry Lake","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12434,198343,"PAN","GOBI Survey",2006,"For storage only",28,"Reserva de la Biósfera de La Amistad","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12824,198345,"RUS","Stockholm BR Survey",2008,"For storage only",28,"Katunsky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12820,198345,"RUS","GOBI Survey",2006,"For storage only",28,"Katunsky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -305,198350,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Humaitá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -617,198350,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Humaitá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -734,198351,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Serra Da Mocidade","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -396,198351,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Serra Da Mocidade","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -705,198352,"BRA","SAMGe",2016,"For storage only",9,"PARNA Descobrimento","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -394,198353,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Pau Brasil","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -732,198353,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Pau Brasil","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -259,198355,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Serra Da Ibiapaba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -546,198355,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Serra Da Ibiapaba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -242,198356,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Chapada Do Araripe","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -523,198356,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Chapada Do Araripe","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -291,198359,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Altamira","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -598,198359,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Altamira","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -301,198360,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Carajás","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -611,198360,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Carajás","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -308,198361,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Itacaiunas","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -621,198361,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Itacaiunas","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -622,198362,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Itaituba I","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -309,198362,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Itaituba I","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -310,198363,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Itaituba Ii","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -623,198363,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Itaituba Ii","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -735,198366,"BRA","SAMGe",2016,"For storage only",9,"PARNA Serra das Confusões","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -257,198367,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Ilhas E Várzeas Do Rio Paraná","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -543,198367,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Ilhas E Várzeas Do Rio Paraná","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -395,198369,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Restinga De Jurubatiba","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -733,198369,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Restinga De Jurubatiba","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -141,198387,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Sibu Hujung","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -142,198389,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Gual","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -143,198391,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Harimau","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -144,198392,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Mensirip","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -145,198394,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Pemanggil","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -146,198395,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Aur","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -147,198397,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Sri Buat","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -148,198401,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2015,"For storage only",5,"Pulau Susu Dara","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -149,198402,"MYS","Combination of Methods (PAME and METT)",2012,"For storage only",5,"Pulau Lima","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -150,198406,"MYS","Combination of Methods (PAME and METT)",2012,"For storage only",5,"Pulau Ekor Tebu","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -151,198407,"MYS","Combination of Methods (PAME and METT)",2012,"For storage only",5,"Pulau Pinang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -152,198410,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Labas","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -153,198411,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Sepoi","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -154,198412,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Jahat","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -155,198413,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"For storage only",5,"Pulau Tokong Bara","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -156,198420,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2016,"For storage only",5,"Pulau Rusukan Besar","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -157,198421,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2016,"For storage only",5,"Pulau Rusukan Kecil","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -158,198422,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2016,"For storage only",5,"Pulau Kuraman","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian",FALSE -21064,198424,"IDN","METT",2015,"For storage only",35,"Kepulauan Banyak","Marine Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -12729,198618,"RUS","RAPPAM",2001,"For storage only",28,"Altyn-Solok","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12720,198919,"RUS","RAPPAM",2001,"For storage only",28,"Agrakhansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13009,198920,"RUS","Birdlife IBA",2007,"For storage only",28,"Tlyaratinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13008,198920,"RUS","RAPPAM",2001,"For storage only",28,"Tlyaratinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12828,198923,"RUS","Birdlife IBA",2007,"For storage only",28,"Kayakentskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12818,198924,"RUS","Birdlife IBA",2006,"For storage only",28,"Kasumkentskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12848,198929,"RUS","Birdlife IBA",2006,"For storage only",28,"Kosobsko-Kelebskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12801,198939,"RUS","RAPPAM",2001,"For storage only",28,"Golubye ozera","Nature Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12882,198942,"RUS","METT",2013,"For storage only",28,"Mekletinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12883,198942,"RUS","RAPPAM",2001,"For storage only",28,"Mekletinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12884,198942,"RUS","METT",2009,"For storage only",28,"Mekletinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12957,198943,"RUS","METT",2009,"For storage only",28,"Sarpinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12835,198944,"RUS","METT",2013,"For storage only",28,"Kharbinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12991,198952,"RUS","RAPPAM",2001,"For storage only",28,"Stepnoj","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12919,198956,"RUS","RAPPAM",2001,"For storage only",28,"Olonetsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12802,199330,"RUS","METT",2011,"For storage only",28,"Ilychskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12809,199330,"RUS","METT",2007,"For storage only",28,"Ilychskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12912,199337,"RUS","METT",2007,"For storage only",28,"Boloto Okean","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12881,199337,"RUS","METT",2011,"For storage only",28,"Boloto Okean","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12786,199360,"RUS","METT",2011,"For storage only",28,"Udorskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13022,199360,"RUS","METT",2007,"For storage only",28,"Udorskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12979,199587,"RUS","RAPPAM",2001,"For storage only",28,"Smolny","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12722,199626,"RUS","RAPPAM",2001,"For storage only",28,"Alania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13020,199808,"RUS","METT",2006,"For storage only",28,"Kara-Hol'skiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13018,199808,"RUS","METT",2003,"For storage only",28,"Kara-Hol'skiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13021,199808,"RUS","METT",2008,"For storage only",28,"Kara-Hol'skiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13019,199808,"RUS","METT",2005,"For storage only",28,"Kara-Hol'skiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12899,199940,"RUS","RAPPAM",2001,"For storage only",28,"Nechkinsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12941,199960,"RUS","RAPPAM",2001,"For storage only",28,"Prisursky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12856,199980,"RUS","METT",2008,"For storage only",28,"Kuoluma","Reserved Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12874,199988,"RUS","RAPPAM",2001,"For storage only",28,"Lenskie stolby","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12779,199993,"RUS","METT",2008,"For storage only",28,"Chabda","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12778,199993,"RUS","METT",2007,"For storage only",28,"Chabda","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12780,199993,"RUS","METT",2009,"For storage only",28,"Chabda","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12781,199997,"RUS","RAPPAM",2001,"For storage only",28,"Charuoda","Reserved Territory","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13006,200004,"RUS","METT",2005,"For storage only",28,"Terpej-Tumus","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13007,200004,"RUS","RAPPAM",2001,"For storage only",28,"Terpej-Tumus","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12766,200009,"RUS","RAPPAM",2001,"For storage only",28,"Bur","Resource Reserve (project)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12721,200029,"RUS","RAPPAM",2001,"For storage only",28,"Alakit","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12748,200033,"RUS","RAPPAM",2001,"For storage only",28,"Beke","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12747,200033,"RUS","METT",2005,"For storage only",28,"Beke","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12889,200034,"RUS","RAPPAM",2001,"For storage only",28,"Muna","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12948,200404,"RUS","METT",2011,"For storage only",28,"Ukok","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13025,200404,"RUS","METT",2006,"For storage only",28,"Ukok","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12937,200490,"RUS","RAPPAM",2001,"For storage only",28,"Priazovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12965,200525,"RUS","RAPPAM",2001,"For storage only",28,"Severozemel'skiy","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12739,200814,"RUS","RAPPAM",2001,"For storage only",28,"Barsovy","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12789,200854,"RUS","METT",2013,"For storage only",28,"Dautsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12792,200854,"RUS","RAPPAM",2001,"For storage only",28,"Dautsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12735,201129,"RUS","RAPPAM",2001,"For storage only",28,"Badzhal'sky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12755,201130,"RUS","RAPPAM",2001,"For storage only",28,"Birskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12757,201132,"RUS","RAPPAM",2001,"For storage only",28,"Bolon'sky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12785,201133,"RUS","RAPPAM",2001,"For storage only",28,"Chukenskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12836,201138,"RUS","RAPPAM",2001,"For storage only",28,"Khekhtsirsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12915,201139,"RUS","RAPPAM",2001,"For storage only",28,"Oldzhikansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13023,201143,"RUS","RAPPAM",2001,"For storage only",28,"Udyl'","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12745,201177,"RUS","RAPPAM",2001,"For storage only",28,"Bastack","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12837,201242,"RUS","RAPPAM",2001,"For storage only",28,"Khingano-Arkharinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12878,201245,"RUS","METT",2005,"For storage only",28,"Magdagachinskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12877,201245,"RUS","METT",2003,"For storage only",28,"Magdagachinskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12909,201247,"RUS","METT",2005,"For storage only",28,"Norsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12908,201247,"RUS","METT",2003,"For storage only",28,"Norsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12910,201247,"RUS","RAPPAM",2001,"For storage only",28,"Norsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12925,201248,"RUS","RAPPAM",2001,"For storage only",28,"Orlovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12924,201248,"RUS","METT",2005,"For storage only",28,"Orlovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12923,201248,"RUS","METT",2003,"For storage only",28,"Orlovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13010,201252,"RUS","RAPPAM",2001,"For storage only",28,"Tomskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12753,201263,"RUS","METT",2003,"For storage only",28,"Birminskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12754,201263,"RUS","METT",2005,"For storage only",28,"Birminskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12977,201368,"RUS","RAPPAM",2001,"For storage only",28,"Siysky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12900,201384,"RUS","METT",2005,"For storage only",28,"Nenetsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12901,201384,"RUS","RAPPAM",2001,"For storage only",28,"Nenetsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12903,201385,"RUS","RAPPAM",2001,"For storage only",28,"Nenetsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12888,201387,"RUS","RAPPAM",2001,"For storage only",28,"Moree-U","Zapovednik (project)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12805,201427,"RUS","METT",2009,"For storage only",28,"Il'menno-bugrovoi","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12803,201427,"RUS","METT",2005,"For storage only",28,"Il'menno-bugrovoi","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12804,201427,"RUS","METT",2006,"For storage only",28,"Il'menno-bugrovoi","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12756,201428,"RUS","RAPPAM",2001,"For storage only",28,"Bogdinsko-Baskunchaksky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12833,201742,"RUS","RAPPAM",2001,"For storage only",28,"Khakassky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12832,201742,"RUS","METT",2008,"For storage only",28,"Khakassky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12989,201742,"RUS","METT",2011,"For storage only",28,"Khakassky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12843,201827,"RUS","RAPPAM",2001,"For storage only",28,"Kletnyansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12891,201984,"RUS","RAPPAM",2001,"For storage only",28,"Muromsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12844,201985,"RUS","RAPPAM",2001,"For storage only",28,"Klyazminsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12794,202074,"RUS","Birdlife IBA",2007,"For storage only",28,"Drofiny","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12814,202643,"RUS","RAPPAM",2001,"For storage only",28,"Kamennaya Step'","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13024,203386,"RUS","RAPPAM",2001,"For storage only",28,"Ugra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12772,203437,"RUS","RAPPAM",2001,"For storage only",28,"Bystrinskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12771,203437,"RUS","METT",2009,"For storage only",28,"Bystrinskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12770,203437,"RUS","METT",2005,"For storage only",28,"Bystrinskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12893,203438,"RUS","METT",2005,"For storage only",28,"Nalychevskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12895,203438,"RUS","RAPPAM",2001,"For storage only",28,"Nalychevskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12894,203438,"RUS","METT",2009,"For storage only",28,"Nalychevskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12892,203438,"RUS","METT",2004,"For storage only",28,"Nalychevskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13056,203439,"RUS","RAPPAM",2001,"For storage only",28,"Juzhno-Kamchatskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13055,203440,"RUS","RAPPAM",2001,"For storage only",28,"Yuzhno-Kamchatsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12752,204024,"RUS","METT",2008,"For storage only",28,"Belozerskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12751,204024,"RUS","METT",2007,"For storage only",28,"Belozerskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12857,204038,"RUS","RAPPAM",2001,"For storage only",28,"Kurgansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12890,204563,"RUS","RAPPAM",2001,"For storage only",28,"Murmansky Tundrovy","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12817,204564,"RUS","RAPPAM",2001,"For storage only",28,"Kanozersky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13013,204565,"RUS","RAPPAM",2001,"For storage only",28,"Tulomsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12841,205236,"RUS","RAPPAM",2001,"For storage only",28,"Kirzinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12746,205471,"RUS","RAPPAM",2001,"For storage only",28,"Bairovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12953,205496,"RUS","RAPPAM",2001,"For storage only",28,"Ryazanskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12963,205993,"RUS","RAPPAM",2001,"For storage only",28,"Sebezshsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12949,205996,"RUS","RAPPAM",2001,"For storage only",28,"Remdovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12951,206114,"RUS","METT",2009,"For storage only",28,"Rostovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12950,206114,"RUS","RAPPAM",2001,"For storage only",28,"Rostovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12873,206117,"RUS","Birdlife IBA",2007,"For storage only",28,"Rostovskoe GOOH (Aleksandrovskiy uchastok)","Managed Resource Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13012,206121,"RUS","METT",2009,"For storage only",28,"Tsimlyansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12942,206543,"RUS","RAPPAM",2001,"For storage only",28,"Privolzhskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12840,206707,"RUS","RAPPAM",2001,"For storage only",28,"Khvalynsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12955,206725,"RUS","METT",2013,"For storage only",28,"Saratovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12956,206725,"RUS","METT",2009,"For storage only",28,"Saratovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12904,206948,"RUS","METT",2013,"For storage only",28,"Nikol'skiy sosnovyi bor","Nature Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12726,208547,"RUS","METT",2003,"For storage only",28,"Kaltajskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12810,208696,"RUS","RAPPAM",2001,"For storage only",28,"Kabanskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13032,208714,"RUS","RAPPAM",2001,"For storage only",28,"Vaspukhol'skiy","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12795,208715,"RUS","RAPPAM",2001,"For storage only",28,"Elizarovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13033,208716,"RUS","RAPPAM",2001,"For storage only",28,"Verkhne-Kondinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12982,208853,"RUS","RAPPAM",2001,"For storage only",28,"Starokulatkinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12996,208854,"RUS","RAPPAM",2001,"For storage only",28,"Sursky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12796,209576,"RUS","METT",2008,"For storage only",28,"Ergaki","Nature park (project)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12947,209576,"RUS","METT",2011,"For storage only",28,"Ergaki","Nature park (project)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12975,209640,"RUS","RAPPAM",2001,"For storage only",28,"Shushensky Bor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12974,209640,"RUS","METT",2008,"For storage only",28,"Shushensky Bor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12976,209640,"RUS","METT",2006,"For storage only",28,"Shushensky Bor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12985,209640,"RUS","METT",2011,"For storage only",28,"Shushensky Bor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12994,209747,"RUS","METT",2008,"For storage only",28,"Stershiny (uchastok2)","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12992,209747,"RUS","METT",2005,"For storage only",28,"Stershiny (uchastok2)","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12993,209747,"RUS","METT",2007,"For storage only",28,"Stershiny (uchastok2)","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12827,209778,"RUS","RAPPAM",2001,"For storage only",28,"Kavkazskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20670,220005,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngeruangel","Reserve","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20672,220009,"PLW","National PAME Assessment",2014,"For storage only",31,"Ebiil","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20683,220010,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngermasech","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -13780,220033,"UKR","European Diploma",1997,"For storage only",28,"Carpathian","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13781,220033,"UKR","Stockholm BR Survey",2008,"For storage only",28,"Carpathian","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15195,220039,"BLZ","METT",2013,"For storage only",29,"Gladden Spit and Silk Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15196,220039,"BLZ","METT",2010,"For storage only",29,"Gladden Spit and Silk Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15194,220039,"BLZ","Belize MEE",2009,"For storage only",29,"Gladden Spit and Silk Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -11894,220043,"LBN","Birdlife IBA",1994,"For storage only",28,"Ammiq Wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1385,220044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballynahone Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1384,220045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belfast Lough","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1290,220048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carlingford Lough","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1362,220049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cromarty Firth","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1386,220051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cuilcagh Mountain","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1292,220052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duddon Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1381,220053,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dorset Heathlands","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1380,220057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Sanday Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1387,220058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garron Plateau","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1363,220061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Moray Firth","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1383,220062,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kintyre Goose Roosts","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1389,220064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Inch & Torrs Warren","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1391,220065,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Foyle","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -11922,220067,"MDA","METT",2011,"For storage only",28,"Lower Prut Lakes","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1364,220069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muir of Dinnet","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1365,220072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Uist Machair and Islands","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1368,220073,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northumbria Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1366,220076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poole Harbour","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1379,220077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ronas Hill - North Roe & Tingon","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1382,220079,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Solent and Southampton Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1378,220080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Somerset Levels and Moors","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1272,220082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Uist Machair & Lochs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1291,220084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strangford Loch","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1369,220086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thames Estuary and Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1293,220089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ythan Estuary & Meikle Loch","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1392,220091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1393,220092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairy Water Bogs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1394,220093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Firth of Tay and Eden Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1396,220094,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Clyde Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1370,220095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lee Valley","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1395,220096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slieve Beagh","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1371,220097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South West London Waterbodies","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -15256,220100,"BLZ","METT",2005,"For storage only",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15255,220100,"BLZ","Belize MEE",2009,"For storage only",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15258,220100,"BLZ","METT",2011,"For storage only",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15257,220100,"BLZ","METT",2009,"For storage only",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15253,220100,"BLZ","METT",2010,"For storage only",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15254,220100,"BLZ","METT",2013,"For storage only",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -28246,220101,"JAM","METT",2015,"For storage only",28,"Portland Bight","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14985,220101,"JAM","METT",2009,"For storage only",28,"Portland Bight","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14984,220101,"JAM","RAPPAM",2006,"For storage only",28,"Portland Bight","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13920,220201,"USA","Birdlife IBA",2009,"For storage only",28,"Papah-ünaumoku-ükea Marine National Monument","Marine National Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13558,220235,"TZA","METT",2009,"For storage only",28,"Mnazi Bay-Ruvuma Estuary","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -614,220239,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Contendas do Sincorá","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -642,220241,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Ritápolis","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -20626,220242,"PNG","RAPPAM",2004,"For storage only",28,"Kamiali","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20655,220246,"PNG","RAPPAM",2004,"For storage only",28,"Sinub","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -48,220252,"ARG","GOBI Survey",2006,"For storage only",3,"Delta del Parana","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -101,220252,"ARG","GOBI Survey",2009,"For storage only",3,"Delta del Parana","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -107,220253,"ARG","GOBI Survey",2009,"For storage only",3,"Riacho Teuquito","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -10705,220254,"AUT","Stockholm BR Survey",2008,"For storage only",28,"Grosses Walsertal","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10706,220254,"AUT","GOBI Survey",2008,"For storage only",28,"Grosses Walsertal","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10704,220254,"AUT","GOBI Survey",2006,"For storage only",28,"Grosses Walsertal","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21933,220257,"CAN","GOBI Survey",2006,"For storage only",28,"Mount Arrowsmith","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14486,220263,"ECU","GOBI Survey",2006,"For storage only",28,"Sumaco","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15066,220264,"MWI","GOBI Survey",2006,"For storage only",28,"Mount Mulanje","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12621,220266,"PRY","GOBI Survey",2006,"For storage only",28,"Bosque Mbaracayú","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21205,220267,"ZAF","GOBI Survey",2006,"For storage only",28,"Cape West Coast Biosphere Reserve","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14639,220269,"ESP","GOBI Survey",2006,"For storage only",28,"Muniellos","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14745,220270,"ESP","GOBI Survey",2006,"For storage only",28,"Somiedo","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -54,220291,"ARG","WHA Outlook Report",2014,"For storage only",3,"Parcs naturels d’Ischigualasto / Talampaya","World Heritage Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -17193,220294,"AUS","WHA Outlook Report",2014,"For storage only",28,"Greater Blue Mountains Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10905,220295,"BOL","WHA Outlook Report",2014,"For storage only",28,"Noel Kempff Mercado National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13190,220298,"SUR","WHA Outlook Report",2014,"For storage only",28,"Central Suriname Nature Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11148,222222,"CMR","RAPPAM",2002,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -40,300021,"ARG","Valdiviana",2001,"For storage only",3,"Cañada Molina","Provincial Nature Monument","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -41,300025,"ARG","Valdiviana",2001,"For storage only",3,"Cerro Currumahuida","Forest Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -55,300054,"ARG","METT",2010,"For storage only",3,"Isla Pinguinos","Provincial Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -57,300059,"ARG","Valdiviana",2001,"For storage only",3,"Lago Baggilt","Protected Nature Area","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -58,300060,"ARG","Valdiviana",2001,"For storage only",3,"Lago Guacho","Forest Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -28038,300069,"ARG","METT",2003,"For storage only",28,"Los Morrillos","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -82,300073,"ARG","Valdiviana",2001,"For storage only",3,"Nant y Fall (Arroyo Las Caídas)","Tourist Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -21979,300103,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Sirmilik National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -11222,300342,"COG","RAPPAM",2012,"For storage only",28,"Lossi","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21519,300345,"ZAF","METT",2012,"For storage only",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21518,300345,"ZAF","METT",2011,"For storage only",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21515,300345,"ZAF","METT",2007,"For storage only",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21514,300345,"ZAF","METT",2005,"For storage only",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21520,300345,"ZAF","METT",2013,"For storage only",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21516,300345,"ZAF","METT",2010,"For storage only",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21883,300367,"ZAF","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21882,300367,"ZAF","METT",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21885,300367,"ZAF","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21884,300367,"ZAF","METT",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21752,300393,"ZAF","METT",2010,"For storage only",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21756,300393,"ZAF","RAPPAM",2001,"For storage only",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21755,300393,"ZAF","METT",2013,"For storage only",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21753,300393,"ZAF","METT",2011,"For storage only",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21754,300393,"ZAF","METT",2012,"For storage only",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21779,300408,"ZAF","METT",2012,"For storage only",28,"Table Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21778,300408,"ZAF","METT",2010,"For storage only",28,"Table Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21780,300408,"ZAF","METT",2013,"For storage only",28,"Table Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21184,300420,"ZAF","METT",2013,"For storage only",28,"Borakalalo National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21182,300420,"ZAF","METT",2010,"For storage only",28,"Borakalalo National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21183,300420,"ZAF","METT",2012,"For storage only",28,"Borakalalo National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21653,300440,"ZAF","Birdlife IBA",2013,"For storage only",28,"Pietersburg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21725,300451,"ZAF","METT",2013,"For storage only",28,"Schuinsdraai Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21724,300451,"ZAF","METT",2012,"For storage only",28,"Schuinsdraai Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21722,300451,"ZAF","METT",2010,"For storage only",28,"Schuinsdraai Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21723,300451,"ZAF","METT",2011,"For storage only",28,"Schuinsdraai Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21523,300529,"ZAF","METT",2011,"For storage only",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21522,300529,"ZAF","METT",2010,"For storage only",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21526,300529,"ZAF","RAPPAM",2001,"For storage only",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21524,300529,"ZAF","METT",2012,"For storage only",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21525,300529,"ZAF","METT",2013,"For storage only",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13564,301415,"TZA","METT",2006,"For storage only",28,"Mramba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13562,301415,"TZA","METT",2005,"For storage only",28,"Mramba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13563,301415,"TZA","METT",2009,"For storage only",28,"Mramba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13435,301420,"TZA","METT",2005,"For storage only",28,"Kindoroko","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13721,301428,"TZA","METT",2005,"For storage only",28,"Vumari","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13722,301428,"TZA","METT",2009,"For storage only",28,"Vumari","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13349,301431,"TZA","METT",2005,"For storage only",28,"Chambogo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13350,301431,"TZA","METT",2009,"For storage only",28,"Chambogo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13351,301431,"TZA","METT",2006,"For storage only",28,"Chambogo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13540,301432,"TZA","METT",2005,"For storage only",28,"Minja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13491,301435,"TZA","METT",2005,"For storage only",28,"Maganda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13363,301436,"TZA","METT",2005,"For storage only",28,"Chongweni","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13374,301437,"TZA","METT",2005,"For storage only",28,"Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13404,301440,"TZA","METT",2005,"For storage only",28,"Kankoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13686,301442,"TZA","METT",2005,"For storage only",28,"Shagayu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13341,301444,"TZA","METT",2005,"For storage only",28,"Bagai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13688,301450,"TZA","METT",2005,"For storage only",28,"Shume Magamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13576,301453,"TZA","METT",2005,"For storage only",28,"Mtumbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13446,301458,"TZA","METT",2005,"For storage only",28,"Kitara Ridge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13346,301462,"TZA","METT",2005,"For storage only",28,"Bombo West","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13347,301462,"TZA","METT",2009,"For storage only",28,"Bombo West","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13410,301463,"TZA","METT",2005,"For storage only",28,"Kwembago","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13411,301463,"TZA","METT",2013,"For storage only",28,"Kwembago","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13441,301465,"TZA","METT",2005,"For storage only",28,"Kisima Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13572,301469,"TZA","METT",2005,"For storage only",28,"Mtai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28227,301469,"TZA","METT",2015,"For storage only",28,"Mtai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13573,301469,"TZA","METT",2006,"For storage only",28,"Mtai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13591,301475,"TZA","METT",2005,"For storage only",28,"Ndekemai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13344,301476,"TZA","METT",2011,"For storage only",28,"Bamba Ridge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13343,301476,"TZA","METT",2005,"For storage only",28,"Bamba Ridge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13489,301478,"TZA","METT",2005,"For storage only",28,"Mafi Hill","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13468,301479,"TZA","METT",2005,"For storage only",28,"Kwamgumi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13467,301479,"TZA","METT",2011,"For storage only",28,"Kwamgumi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13672,301480,"TZA","METT",2011,"For storage only",28,"Sengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28166,301484,"TZA","METT",2011,"For storage only",28,"Manga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28224,301484,"TZA","METT",2015,"For storage only",28,"Manga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13465,301487,"TZA","METT",2011,"For storage only",28,"Kwamrimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13466,301487,"TZA","METT",2005,"For storage only",28,"Kwamrimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13592,301488,"TZA","METT",2005,"For storage only",28,"Ndolwa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13548,301503,"TZA","METT",2005,"For storage only",28,"Mkongo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13570,301505,"TZA","METT",2011,"For storage only",28,"Msumbugwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13421,301512,"TZA","METT",2013,"For storage only",28,"Kilindi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13427,301512,"TZA","METT",2005,"For storage only",28,"Kilindi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13429,301512,"TZA","METT",2006,"For storage only",28,"Kilindi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13428,301512,"TZA","METT",2009,"For storage only",28,"Kilindi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13634,301517,"TZA","METT",2005,"For storage only",28,"Pumula","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13653,301521,"TZA","METT",2005,"For storage only",28,"Rudewa South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13549,301522,"TZA","METT",2005,"For storage only",28,"Mkuli Exten.","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13718,301527,"TZA","METT",2011,"For storage only",28,"Uzigua","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13402,301528,"TZA","METT",2009,"For storage only",28,"Kanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13403,301528,"TZA","METT",2006,"For storage only",28,"Kanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13401,301528,"TZA","METT",2005,"For storage only",28,"Kanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13615,301532,"TZA","METT",2005,"For storage only",28,"Talagwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13690,301532,"TZA","METT",2007,"For storage only",28,"Talagwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13375,301544,"TZA","METT",2011,"For storage only",28,"Gwami","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13371,301547,"TZA","METT",2013,"For storage only",28,"Dodoma Reservoir","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13554,301549,"TZA","METT",2005,"For storage only",28,"Mlali","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13511,301553,"TZA","METT",2005,"For storage only",28,"Mamiwa Kisara South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13512,301553,"TZA","METT",2006,"For storage only",28,"Mamiwa Kisara South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13510,301553,"TZA","METT",0,"For storage only",28,"Mamiwa Kisara South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13513,301553,"TZA","METT",2007,"For storage only",28,"Mamiwa Kisara South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13724,301556,"TZA","METT",2005,"For storage only",28,"Wotta","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13370,301561,"TZA","METT",2005,"For storage only",28,"Dindili","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13712,301564,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13713,301564,"TZA","METT",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13550,301565,"TZA","METT",2005,"For storage only",28,"Mkungwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13490,301567,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13440,301568,"TZA","Birdlife IBA",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13667,301568,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13633,301570,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13412,301571,"TZA","METT",2011,"For storage only",28,"Kazimzumbwi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13707,301577,"TZA","METT",2005,"For storage only",28,"Ukwiva","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13710,301577,"TZA","METT",2013,"For storage only",28,"Ukwiva","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13709,301577,"TZA","METT",2006,"For storage only",28,"Ukwiva","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13708,301577,"TZA","METT",2009,"For storage only",28,"Ukwiva","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13715,301578,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13716,301578,"TZA","METT",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13714,301578,"TZA","METT",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13516,301585,"TZA","METT",2005,"For storage only",28,"Mangalisa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13624,301588,"TZA","METT",2005,"For storage only",28,"Pala Mountains","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13627,301588,"TZA","METT",2013,"For storage only",28,"Pala Mountains","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13575,301592,"TZA","METT",2011,"For storage only",28,"Mtita","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13657,301595,"TZA","METT",2011,"For storage only",28,"Ruhoi River","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13723,301596,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13443,301601,"TZA","METT",2005,"For storage only",28,"Kisinga Lugaro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13444,301601,"TZA","METT",2013,"For storage only",28,"Kisinga Lugaro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13442,301601,"TZA","METT",2006,"For storage only",28,"Kisinga Lugaro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13574,301602,"TZA","METT",2011,"For storage only",28,"Mtanza","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13387,301612,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13622,301613,"TZA","METT",2005,"For storage only",28,"Nyaganje","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13407,301615,"TZA","METT",2014,"For storage only",28,"Katundu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13409,301615,"TZA","METT",2013,"For storage only",28,"Katundu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13408,301615,"TZA","METT",2011,"For storage only",28,"Katundu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28223,301615,"TZA","METT",2015,"For storage only",28,"Katundu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13378,301618,"TZA","METT",2009,"For storage only",28,"Ihanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13379,301618,"TZA","METT",2005,"For storage only",28,"Ihanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13381,301618,"TZA","METT",2013,"For storage only",28,"Ihanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13376,301621,"TZA","METT",2005,"For storage only",28,"Idewa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13377,301621,"TZA","METT",2009,"For storage only",28,"Idewa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13693,301624,"TZA","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13691,301624,"TZA","METT",2014,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13692,301624,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13447,301629,"TZA","METT",2008,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13448,301629,"TZA","METT",2014,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13449,301629,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13450,301629,"TZA","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13526,301634,"TZA","METT",2014,"For storage only",28,"Mbinga Kimaji / Kimate","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13529,301634,"TZA","METT",2011,"For storage only",28,"Mbinga Kimaji / Kimate","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13527,301634,"TZA","METT",2009,"For storage only",28,"Mbinga Kimaji / Kimate","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13528,301634,"TZA","METT",2013,"For storage only",28,"Mbinga Kimaji / Kimate","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13415,301635,"TZA","METT",2005,"For storage only",28,"Kibao","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13577,301638,"TZA","METT",2005,"For storage only",28,"Mufindi Scarp","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13586,301639,"TZA","METT",2005,"For storage only",28,"Nambinga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13587,301639,"TZA","METT",2009,"For storage only",28,"Nambinga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13585,301639,"TZA","METT",2006,"For storage only",28,"Nambinga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13493,301640,"TZA","METT",2005,"For storage only",28,"Mahenge Scarp","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13420,301641,"TZA","METT",2005,"For storage only",28,"Kigogo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13431,301642,"TZA","METT",2011,"For storage only",28,"Mangroves-Bagamoyo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13566,301646,"TZA","METT",2005,"For storage only",28,"Mselezi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13567,301646,"TZA","METT",2009,"For storage only",28,"Mselezi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13542,301647,"TZA","METT",2013,"For storage only",28,"Mtarure","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13541,301647,"TZA","METT",2008,"For storage only",28,"Mtarure","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13581,301654,"TZA","METT",2005,"For storage only",28,"Mhulu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13518,301656,"TZA","METT",2013,"For storage only",28,"Masagati","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28225,301656,"TZA","METT",2015,"For storage only",28,"Masagati","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13571,301662,"TZA","METT",2010,"For storage only",28,"Rungwe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13596,301663,"TZA","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13597,301663,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13598,301663,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13599,301663,"TZA","METT",2008,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13595,301663,"TZA","METT",2014,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13661,301673,"TZA","METT",2008,"For storage only",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13659,301673,"TZA","METT",2014,"For storage only",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28235,301673,"TZA","METT",2015,"For storage only",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13660,301673,"TZA","METT",2013,"For storage only",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13662,301673,"TZA","METT",2011,"For storage only",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13628,301676,"TZA","METT",2005,"For storage only",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13631,301676,"TZA","METT",2013,"For storage only",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13630,301676,"TZA","METT",2014,"For storage only",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13629,301676,"TZA","METT",2008,"For storage only",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28234,301676,"TZA","METT",2015,"For storage only",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13632,301676,"TZA","METT",2011,"For storage only",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13437,301682,"TZA","METT",2012,"For storage only",28,"Nyera/Kiperere","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13504,301685,"TZA","METT",2011,"For storage only",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13503,301685,"TZA","METT",2009,"For storage only",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13505,301685,"TZA","METT",2013,"For storage only",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13502,301685,"TZA","METT",2014,"For storage only",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28231,301685,"TZA","METT",2015,"For storage only",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13367,301687,"TZA","METT",2007,"For storage only",28,"Ndimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13369,301687,"TZA","METT",2006,"For storage only",28,"Ndimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13368,301687,"TZA","METT",2011,"For storage only",28,"Ndimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13652,301692,"TZA","METT",2011,"For storage only",28,"Ruawa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13651,301692,"TZA","METT",2007,"For storage only",28,"Ruawa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13649,301692,"TZA","METT",2006,"For storage only",28,"Ruawa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13522,301693,"TZA","METT",2011,"For storage only",28,"Matapwa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13636,301702,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13637,301702,"TZA","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13638,301702,"TZA","METT",2014,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13640,301702,"TZA","METT",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13642,301702,"TZA","METT",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13643,301702,"TZA","METT",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13644,301702,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13475,301703,"TZA","METT",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13671,301717,"TZA","METT",2013,"For storage only",28,"Sasawara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13523,301719,"TZA","METT",2012,"For storage only",28,"Mbagala","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13590,301720,"TZA","METT",2005,"For storage only",28,"Ndechela","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13583,301722,"TZA","METT",2013,"For storage only",28,"Mwambesi","Forest Reserve and Game Controlled Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10599,301850,"GAB","IMET",2015,"For storage only",27,"Mayumba","National Park","JRC IMET information","JRC",2018,"English",FALSE -11591,301850,"GAB","METT",2007,"For storage only",28,"Mayumba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10964,301877,"CAF","Birdlife IBA",2001,"For storage only",28,"Ngotto extension","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21113,301881,"ZAF","METT",2010,"For storage only",28,"Agulhas National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21112,301881,"ZAF","METT",2008,"For storage only",28,"Agulhas National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21111,301881,"ZAF","METT",2004,"For storage only",28,"Agulhas National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15151,301906,"BLZ","Belize MEE",2009,"For storage only",29,"Blue Hole Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15152,301906,"BLZ","METT",2010,"For storage only",29,"Blue Hole Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15150,301906,"BLZ","Belize MEE",2006,"For storage only",29,"Blue Hole Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15153,301906,"BLZ","METT",2013,"For storage only",29,"Blue Hole Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15161,301908,"BLZ","METT",2010,"For storage only",29,"Caye Caulker Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15160,301908,"BLZ","METT",2013,"For storage only",29,"Caye Caulker Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15181,301909,"BLZ","Belize MEE",2009,"For storage only",29,"Corozal Bay Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15180,301909,"BLZ","Belize MEE",2006,"For storage only",29,"Corozal Bay Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15193,301911,"BLZ","Belize MEE",2009,"For storage only",29,"Gales Point Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15192,301911,"BLZ","Belize MEE",2006,"For storage only",29,"Gales Point Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15217,301912,"BLZ","Belize MEE",2006,"For storage only",29,"Honey Camp National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15218,301912,"BLZ","Belize MEE",2009,"For storage only",29,"Honey Camp National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15237,301914,"BLZ","Belize MEE",2006,"For storage only",29,"Monkey Bay Naitonal Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15238,301914,"BLZ","Belize MEE",2009,"For storage only",29,"Monkey Bay Naitonal Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15241,301915,"BLZ","Belize MEE",2009,"For storage only",29,"Monkey Caye Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15240,301915,"BLZ","Belize MEE",2006,"For storage only",29,"Monkey Caye Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15302,301916,"BLZ","METT",2013,"For storage only",29,"Tapir Mountian Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15301,301916,"BLZ","METT",2010,"For storage only",29,"Tapir Mountian Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15299,301916,"BLZ","Belize MEE",2006,"For storage only",29,"Tapir Mountian Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15300,301916,"BLZ","Belize MEE",2009,"For storage only",29,"Tapir Mountian Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15311,301918,"BLZ","METT",2010,"For storage only",29,"Victoria Peak Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15312,301918,"BLZ","METT",2013,"For storage only",29,"Victoria Peak Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15309,301918,"BLZ","Belize MEE",2006,"For storage only",29,"Victoria Peak Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15310,301918,"BLZ","Belize MEE",2009,"For storage only",29,"Victoria Peak Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15142,301930,"BLZ","Belize MEE",2009,"For storage only",29,"Billy Barquedier National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15141,301930,"BLZ","Belize MEE",2006,"For storage only",29,"Billy Barquedier National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15247,301932,"BLZ","Belize MEE",2009,"For storage only",29,"Nojkaaxmeen Eligio Panti","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15246,301932,"BLZ","Belize MEE",2006,"For storage only",29,"Nojkaaxmeen Eligio Panti","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15236,301934,"BLZ","Belize MEE",2009,"For storage only",29,"MayflowerBocawina National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15235,301934,"BLZ","Belize MEE",2006,"For storage only",29,"MayflowerBocawina National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15199,301941,"BLZ","METT",2005,"For storage only",29,"Gloden Stream Corridor Presever,Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15200,301941,"BLZ","METT",2009,"For storage only",29,"Gloden Stream Corridor Presever,Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15198,301941,"BLZ","Belize MEE",2009,"For storage only",29,"Gloden Stream Corridor Presever,Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15201,301941,"BLZ","METT",2011,"For storage only",29,"Gloden Stream Corridor Presever,Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -111,301949,"BTN","Bhutan METT+",2016,"For storage only",4,"Bumdeling","Widlife Sanctuary","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English",FALSE -12340,301969,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12336,301969,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12341,301969,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12337,301969,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12342,301969,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12339,301969,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15137,301985,"BLZ","Belize MEE",2009,"For storage only",29,"Bacalar Chico National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15135,301985,"BLZ","Belize MEE",2006,"For storage only",29,"Bacalar Chico National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15138,301985,"BLZ","METT",2013,"For storage only",29,"Bacalar Chico National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15139,301985,"BLZ","METT",2010,"For storage only",29,"Bacalar Chico National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15131,301992,"BLZ","Belize MEE",2009,"For storage only",29,"Aguacaliente Wildlife Sancutary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15130,301992,"BLZ","Belize MEE",2006,"For storage only",29,"Aguacaliente Wildlife Sancutary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -1019,301995,"CRI","SINAD",2016,"For storage only",14,"Estación Experimental Horizontes","Otras","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -1016,302001,"CRI","SINAD",2016,"For storage only",14,"Corral De Piedra","Humedales","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish",FALSE -13123,302006,"SLV","METT",2010,"For storage only",28,"El Tercio","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13128,302009,"SLV","PROARCA/CAPAS",2004,"For storage only",28,"La Magdalena","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13116,302026,"SLV","METT",2010,"For storage only",28,"Chaparron o Chaguantique","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13137,302030,"SLV","PROARCA/CAPAS",2004,"For storage only",28,"Nancuchiname (Mata de Piña, La Maroma, Porción 5 y 6)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13136,302030,"SLV","PROARCA/CAPAS",2003,"For storage only",28,"Nancuchiname (Mata de Piña, La Maroma, Porción 5 y 6)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13138,302030,"SLV","METT",2010,"For storage only",28,"Nancuchiname (Mata de Piña, La Maroma, Porción 5 y 6)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13142,302035,"SLV","PROARCA/CAPAS",2006,"For storage only",28,"Plan de Amayo","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13141,302035,"SLV","PROARCA/CAPAS",2005,"For storage only",28,"Plan de Amayo","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13146,302036,"SLV","PROARCA/CAPAS",2006,"For storage only",28,"Taquillo","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1201,302095,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Volcán y Laguna de Ipala","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1199,302095,"GTM","PROARCA/CAPAS",2016,"For storage only",16,"Volcán y Laguna de Ipala","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1200,302095,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Volcán y Laguna de Ipala","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1198,302095,"GTM","PROARCA/CAPAS",2013,"For storage only",16,"Volcán y Laguna de Ipala","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1204,302112,"GTM","PROARCA/CAPAS",2016,"For storage only",16,"Volcán de Suchitán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1205,302112,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Volcán de Suchitán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1203,302112,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Volcán de Suchitán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1202,302112,"GTM","PROARCA/CAPAS",2013,"For storage only",16,"Volcán de Suchitán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1209,302113,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1206,302113,"GTM","PROARCA/CAPAS",2013,"For storage only",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1207,302113,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1210,302113,"GTM","PROARCA/CAPAS",2016,"For storage only",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1208,302113,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1212,302115,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Volcán Chicabal","Zona de Veda Definitiva","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1215,302115,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Volcán Chicabal","Zona de Veda Definitiva","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1214,302115,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Volcán Chicabal","Zona de Veda Definitiva","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1211,302115,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Volcán Chicabal","Zona de Veda Definitiva","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -14896,302119,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Yuscarán","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14897,302119,"HND","PROARCA/CAPAS",2001,"For storage only",28,"Yuscarán","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12194,302128,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Río San Juan","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12193,302128,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Río San Juan","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12179,302129,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"La Flor","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12165,302131,"NIC","PROARCA/CAPAS",2000,"For storage only",28,"Cerro Datanli El Diablo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12153,302131,"NIC","METT",2013,"For storage only",28,"Cerro Datanli El Diablo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12152,302131,"NIC","METT",2012,"For storage only",28,"Cerro Datanli El Diablo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12166,302131,"NIC","PROARCA/CAPAS",2005,"For storage only",28,"Cerro Datanli El Diablo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12187,302135,"NIC","METT",2012,"For storage only",28,"Apacunca","Genetic Resources Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12134,302135,"NIC","METT",2013,"For storage only",28,"Apacunca","Genetic Resources Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15122,302579,"SYR","METT",2012,"For storage only",28,"Abu Kubeiss","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15121,302579,"SYR","METT",2008,"For storage only",28,"Abu Kubeiss","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14170,302848,"VNM","METT",2006,"For storage only",28,"Na Hang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14171,302848,"VNM","METT",2008,"For storage only",28,"Na Hang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28250,302848,"VNM","METT",2012,"For storage only",28,"Na Hang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14198,303020,"VNM","Birdlife IBA",2007,"For storage only",28,"Tien Hai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14205,303022,"VNM","METT",2006,"For storage only",28,"Xuan Lien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14207,303022,"VNM","METT",2011,"For storage only",28,"Xuan Lien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14206,303022,"VNM","METT",2010,"For storage only",28,"Xuan Lien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14182,303024,"VNM","METT",2005,"For storage only",28,"Pu Huong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14148,303029,"VNM","METT",2009,"For storage only",28,"Du Gia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14181,303030,"VNM","METT",2005,"For storage only",28,"Pu Hu","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14153,303032,"VNM","METT",2013,"For storage only",28,"Hon Me (marine)","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14174,303039,"VNM","METT",2003,"For storage only",28,"Phong Dien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28178,303039,"VNM","METT",2013,"For storage only",28,"Phong Dien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14175,303039,"VNM","METT",2007,"For storage only",28,"Phong Dien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14176,303039,"VNM","RAPPAM",2004,"For storage only",28,"Phong Dien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28157,303041,"VNM","METT",2005,"For storage only",28,"Nui Chua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14202,303045,"VNM","METT",2004,"For storage only",28,"Van Long","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14203,303045,"VNM","METT",2005,"For storage only",28,"Van Long","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14183,303059,"VNM","METT",2001,"For storage only",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14187,303059,"VNM","METT",2011,"For storage only",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14186,303059,"VNM","METT",2010,"For storage only",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28175,303059,"VNM","METT",2013,"For storage only",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14185,303059,"VNM","METT",2005,"For storage only",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14184,303059,"VNM","METT",2004,"For storage only",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14172,303065,"VNM","METT",2005,"For storage only",28,"Ngoc Linh (Kon Tum)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14192,303066,"VNM","METT",2006,"For storage only",28,"Song Thanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14191,303066,"VNM","METT",2003,"For storage only",28,"Song Thanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14193,303066,"VNM","RAPPAM",2004,"For storage only",28,"Song Thanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28179,303066,"VNM","METT",2007,"For storage only",28,"Song Thanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14126,303067,"VNM","RAPPAM",2004,"For storage only",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14122,303067,"VNM","METT",2003,"For storage only",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14124,303067,"VNM","METT",2011,"For storage only",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14123,303067,"VNM","METT",2010,"For storage only",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14125,303067,"VNM","METT",2005,"For storage only",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14195,303068,"VNM","RAPPAM",2004,"For storage only",28,"Ta Dung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14127,303069,"VNM","METT",2003,"For storage only",28,"Bu Gia Map","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14128,303069,"VNM","METT",2005,"For storage only",28,"Bu Gia Map","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14129,303069,"VNM","RAPPAM",2004,"For storage only",28,"Bu Gia Map","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14134,303072,"VNM","METT",2003,"For storage only",28,"Cat Tien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14136,303072,"VNM","RAPPAM",2004,"For storage only",28,"Cat Tien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14135,303072,"VNM","METT",2005,"For storage only",28,"Cat Tien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14190,303074,"VNM","METT",2013,"For storage only",28,"Quy Nhon","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14144,303075,"VNM","METT",2013,"For storage only",28,"Cu Mong","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14173,303076,"VNM","METT",2013,"For storage only",28,"O Loan","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14196,303080,"VNM","METT",2010,"For storage only",28,"Ta Kou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14197,303080,"VNM","METT",2011,"For storage only",28,"Ta Kou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -941,303315,"PER","METT",2016,"For storage only",13,"Nor Yauyos Cochas","Reservas Paisajísticas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -900,303316,"PER","METT",2016,"For storage only",13,"Alto Purus","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28106,303317,"PER","METT",2003,"For storage only",28,"Amarakaeri","Reservas Comunales","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -918,303317,"PER","METT",2016,"For storage only",13,"Amarakaeri","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -919,303318,"PER","METT",2016,"For storage only",13,"Asháninka","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -943,303319,"PER","METT",2016,"For storage only",13,"Bosques de Pomac","Santuarios Historicos","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -903,303320,"PER","METT",2016,"For storage only",13,"Cordillera Azul","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -921,303321,"PER","METT",2016,"For storage only",13,"El Sira","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -923,303322,"PER","METT",2016,"For storage only",13,"Machiguenga","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -910,303323,"PER","METT",2016,"For storage only",13,"Otishi","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -12497,303325,"PAN","PROARCA/CAPAS",2002,"For storage only",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12502,303325,"PAN","PROARCA/CAPAS",2005,"For storage only",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12501,303325,"PAN","PROARCA/CAPAS",2004,"For storage only",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12500,303325,"PAN","PROARCA/CAPAS",2003,"For storage only",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12503,303325,"PAN","PROARCA/CAPAS",2006,"For storage only",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12496,303325,"PAN","PROARCA/CAPAS",2001,"For storage only",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13625,303333,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13626,303333,"TZA","Birdlife IBA",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13362,303351,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13669,303354,"TZA","METT",2013,"For storage only",28,"Salanga/Bereku","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13726,303358,"TZA","METT",2003,"For storage only",28,"Zaraninge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13618,303367,"TZA","METT",2006,"For storage only",28,"Kilanga (Nilo)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13488,303367,"TZA","METT",2005,"For storage only",28,"Kilanga (Nilo)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13617,303367,"TZA","METT",2009,"For storage only",28,"Kilanga (Nilo)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13666,303377,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13386,303378,"TZA","METT",2013,"For storage only",28,"Image","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13385,303378,"TZA","METT",2005,"For storage only",28,"Image","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13612,303380,"TZA","METT",2011,"For storage only",28,"Nyumburuni","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13457,303383,"TZA","METT",2014,"For storage only",28,"Kiwengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13458,303383,"TZA","METT",2011,"For storage only",28,"Kiwengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13455,303383,"TZA","METT",2005,"For storage only",28,"Kiwengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13456,303383,"TZA","METT",2013,"For storage only",28,"Kiwengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13545,303387,"TZA","METT",2013,"For storage only",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28232,303387,"TZA","METT",2015,"For storage only",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13544,303387,"TZA","METT",2008,"For storage only",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13543,303387,"TZA","METT",2014,"For storage only",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13546,303387,"TZA","METT",2011,"For storage only",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13620,303389,"TZA","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13498,303391,"TZA","METT",2005,"For storage only",28,"Makonde Scarp II","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13499,303391,"TZA","METT",2006,"For storage only",28,"Makonde Scarp II","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13589,303392,"TZA","METT",2013,"For storage only",28,"Nandembo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13462,303443,"TZA","METT",2005,"For storage only",28,"Koko Hill","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13472,303444,"TZA","METT",2005,"For storage only",28,"Kwizu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13445,303445,"TZA","METT",2005,"For storage only",28,"Kisiwani","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13405,303451,"TZA","METT",2005,"For storage only",28,"Kiranga Hengae","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13345,303466,"TZA","METT",2005,"For storage only",28,"Bombo East II","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13687,303467,"TZA","METT",2005,"For storage only",28,"Shambalai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13342,303471,"TZA","METT",2005,"For storage only",28,"Balangai West","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13395,303475,"TZA","METT",2005,"For storage only",28,"Kambai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13396,303475,"TZA","METT",2011,"For storage only",28,"Kambai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13720,303476,"TZA","METT",2005,"For storage only",28,"Vugiri","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13463,303481,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13469,303484,"TZA","METT",2005,"For storage only",28,"Kwani","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13470,303484,"TZA","METT",2011,"For storage only",28,"Kwani","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13373,303486,"TZA","METT",2011,"For storage only",28,"South Gendagenda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13509,303502,"TZA","METT",2013,"For storage only",28,"Mamboya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13508,303502,"TZA","METT",2005,"For storage only",28,"Mamboya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13717,303506,"TZA","METT",2005,"For storage only",28,"Uponera","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28124,303507,"TZA","METT",2005,"For storage only",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13384,303509,"TZA","METT",2013,"For storage only",28,"Ikwamba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13383,303509,"TZA","METT",2005,"For storage only",28,"Ikwamba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13689,303512,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13423,303513,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13348,303516,"TZA","METT",2005,"For storage only",28,"Chamanyani","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13582,303517,"TZA","METT",2005,"For storage only",28,"Mvuha","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13517,303519,"TZA","METT",2011,"For storage only",28,"Marenda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13436,303522,"TZA","METT",2011,"For storage only",28,"Kingoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13533,303523,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13364,303523,"TZA","METT",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13422,303524,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13611,303525,"TZA","METT",2011,"For storage only",28,"Ngulakula","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13515,303526,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13559,303526,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13438,303527,"TZA","METT",2011,"For storage only",28,"Kipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28228,303529,"TZA","METT",2015,"For storage only",28,"Rupiage","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13664,303529,"TZA","METT",2011,"For storage only",28,"Rupiage","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13663,303529,"TZA","METT",2014,"For storage only",28,"Rupiage","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13665,303529,"TZA","METT",2013,"For storage only",28,"Rupiage","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13594,303531,"TZA","METT",2013,"For storage only",28,"Dabaga New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13593,303531,"TZA","METT",2005,"For storage only",28,"Dabaga New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -160,303541,"COL","AEMAPPS",2016,"For storage only",6,"Alto Fragua - Indiwasi","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -173,303546,"COL","AEMAPPS",2016,"For storage only",6,"El Corchal ""el Mono Hernandez""","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -202,303547,"COL","AEMAPPS",2016,"For storage only",6,"Rio Pure","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -197,303548,"COL","AEMAPPS",2016,"For storage only",6,"Otun Quimbaya","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -216,303549,"COL","AEMAPPS",2016,"For storage only",6,"Utria","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -28212,303552,"COL","METT",2010,"For storage only",28,"Malpelo","Fauna and Flora Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -191,303552,"COL","AEMAPPS",2016,"For storage only",6,"Malpelo","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -13719,303559,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28125,303560,"TZA","METT",2005,"For storage only",28,"Ruvu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28207,303575,"TZA","METT",2009,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28229,303575,"TZA","METT",2015,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13356,303575,"TZA","METT",2007,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13361,303575,"TZA","METT",2012,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13360,303575,"TZA","METT",2013,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13353,303575,"TZA","METT",2014,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13352,303575,"TZA","METT",2005,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13354,303575,"TZA","METT",2006,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13358,303575,"TZA","METT",2011,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13359,303575,"TZA","METT",0,"For storage only",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13477,303576,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13478,303576,"TZA","METT",2014,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13479,303576,"TZA","METT",0,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13480,303576,"TZA","METT",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13482,303576,"TZA","METT",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13483,303576,"TZA","METT",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13484,303576,"TZA","METT",2011,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13485,303576,"TZA","METT",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13397,303582,"TZA","METT",2005,"For storage only",28,"Kambona","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13398,303582,"TZA","METT",2012,"For storage only",28,"Kambona","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13497,303583,"TZA","METT",2006,"For storage only",28,"Makonde Scarp I","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13495,303583,"TZA","METT",2012,"For storage only",28,"Makonde Scarp I","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13496,303583,"TZA","METT",2005,"For storage only",28,"Makonde Scarp I","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13584,303585,"TZA","METT",2012,"For storage only",28,"Nagaga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14298,303628,"BWA","METT",2008,"For storage only",28,"Nata","Bird Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12111,303691,"NAM","Birdlife IBA",2001,"For storage only",28,"Tsau // Khaeb (Sperrgebiet)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12113,303691,"NAM","METT",2009,"For storage only",28,"Tsau // Khaeb (Sperrgebiet)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12114,303691,"NAM","METT",2011,"For storage only",28,"Tsau // Khaeb (Sperrgebiet)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12112,303691,"NAM","METT",2004,"For storage only",28,"Tsau // Khaeb (Sperrgebiet)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12081,303692,"NAM","METT",0,"For storage only",28,"Bwabwata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12079,303692,"NAM","METT",2009,"For storage only",28,"Bwabwata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12078,303692,"NAM","METT",2004,"For storage only",28,"Bwabwata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12222,303694,"NPL","Enhancing Our Heritage",2003,"For storage only",28,"Chitwan - Buffer Zone","National Park - Buffer Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12250,303694,"NPL","RAPPAM",2002,"For storage only",28,"Chitwan - Buffer Zone","National Park - Buffer Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12221,303694,"NPL","Enhancing Our Heritage",2007,"For storage only",28,"Chitwan - Buffer Zone","National Park - Buffer Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20820,303695,"MDG","IEG",2011,"For storage only",34,"Masoala","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20783,303698,"MDG","IEG",2011,"For storage only",34,"Baie de Baly","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20806,303700,"MDG","IEG",2016,"For storage only",34,"Kirindy Mitea","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -959,303705,"PER","METT",2016,"For storage only",13,"Cordillera de Huayhuash","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -13464,303860,"TZA","METT",2011,"For storage only",28,"Mkundi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10600,303872,"GAB","IMET",2015,"For storage only",27,"Biringou","National Park","JRC IMET information","JRC",2018,"English",FALSE -28283,303873,"GAB","METT",2013,"For storage only",28,"Ivindo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11585,303873,"GAB","METT",2006,"For storage only",28,"Ivindo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11584,303873,"GAB","METT",2005,"For storage only",28,"Ivindo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10601,303873,"GAB","IMET",2015,"For storage only",27,"Ivindo","National Park","JRC IMET information","JRC",2018,"English",FALSE -10602,303874,"GAB","IMET",2015,"For storage only",27,"Loango","National Park","JRC IMET information","JRC",2018,"English",FALSE -11586,303874,"GAB","METT",2007,"For storage only",28,"Loango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11587,303874,"GAB","METT",2010,"For storage only",28,"Loango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11588,303874,"GAB","RAPPAM",2010,"For storage only",28,"Loango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11590,303875,"GAB","RAPPAM",2010,"For storage only",28,"Lopé","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11589,303875,"GAB","Africa Rainforest Study",2001,"For storage only",28,"Lopé","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28066,303875,"GAB","METT",2010,"For storage only",28,"Lopé","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10603,303875,"GAB","IMET",2015,"For storage only",27,"Lopé","National Park","JRC IMET information","JRC",2018,"English",FALSE -11597,303877,"GAB","METT",2007,"For storage only",28,"Moukalaba doudou","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10604,303877,"GAB","IMET",2015,"For storage only",27,"Moukalaba doudou","National Park","JRC IMET information","JRC",2018,"English",FALSE -11598,303878,"GAB","METT",2005,"For storage only",28,"Mwagne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11599,303878,"GAB","METT",2006,"For storage only",28,"Mwagne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10605,303878,"GAB","IMET",2015,"For storage only",27,"Mwagne","National Park","JRC IMET information","JRC",2018,"English",FALSE -28285,303878,"GAB","METT",2013,"For storage only",28,"Mwagne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10606,303879,"GAB","IMET",2015,"For storage only",27,"Pongara","National Park","JRC IMET information","JRC",2018,"English",FALSE -10607,303880,"GAB","IMET",2015,"For storage only",27,"Waka","National Park","JRC IMET information","JRC",2018,"English",FALSE -10909,303883,"BOL","METT",2003,"For storage only",28,"Otuquis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10908,303883,"BOL","RAPPAM",2004,"For storage only",28,"Otuquis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10906,303883,"BOL","MEMS",2001,"For storage only",28,"Otuquis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10883,303884,"BOL","MEMS",2001,"For storage only",28,"Kaa-iya del Gran Chaco","Natural Integrated Management Area and National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10884,303884,"BOL","RAPPAM",2004,"For storage only",28,"Kaa-iya del Gran Chaco","Natural Integrated Management Area and National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10882,303884,"BOL","MEMS",2002,"For storage only",28,"Kaa-iya del Gran Chaco","Natural Integrated Management Area and National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10907,303885,"BOL","MEMS",2002,"For storage only",28,"Otuquis","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10874,303886,"BOL","MEMS",2002,"For storage only",28,"El Palmar","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10875,303886,"BOL","RAPPAM",2004,"For storage only",28,"El Palmar","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10873,303886,"BOL","MEMS",2001,"For storage only",28,"El Palmar","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28181,303888,"SUR","METT",2010,"For storage only",28,"Central Suriname","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13193,303889,"SUR","METT",2010,"For storage only",28,"North Commewijne - Marowijne","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13194,303890,"SUR","METT",2010,"For storage only",28,"Noord Coronie","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10920,303891,"BOL","RAPPAM",2004,"For storage only",28,"San Matías","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10922,303891,"BOL","MEMS",2002,"For storage only",28,"San Matías","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10921,303891,"BOL","MEMS",2001,"For storage only",28,"San Matías","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13195,303892,"SUR","METT",2010,"For storage only",28,"Noord Saramacca","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10845,303893,"BOL","Parks profiles",2005,"For storage only",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10843,303893,"BOL","MEMS",2002,"For storage only",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10844,303893,"BOL","PA Consolidation Index",0,"For storage only",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10842,303893,"BOL","MEMS",2001,"For storage only",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10841,303893,"BOL","CI Tracking Tool",0,"For storage only",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10846,303893,"BOL","RAPPAM",2004,"For storage only",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10890,303894,"BOL","RAPPAM",2004,"For storage only",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10886,303894,"BOL","MEMS",2001,"For storage only",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10889,303894,"BOL","Parks profiles",2005,"For storage only",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10887,303894,"BOL","MEMS",2002,"For storage only",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10888,303894,"BOL","PA Consolidation Index",0,"For storage only",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10885,303894,"BOL","CI Tracking Tool",0,"For storage only",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10862,303895,"BOL","MEMS",2002,"For storage only",28,"Cotapata","Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10864,303895,"BOL","Parks profiles",2005,"For storage only",28,"Cotapata","Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10860,303895,"BOL","CI Tracking Tool",0,"For storage only",28,"Cotapata","Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10863,303895,"BOL","PA Consolidation Index",0,"For storage only",28,"Cotapata","Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10820,303896,"BOL","RAPPAM",2004,"For storage only",28,"Aguarague","National Park and Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13098,303925,"SLE","Birdlife IBA",2005,"For storage only",28,"Kambui Hills and Extensions","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14216,305082,"VUT","METT",2009,"For storage only",28,"Nguna-Pele","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21959,305157,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Gulf Islands National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -16835,305309,"AUS","Victorian SOP",2005,"For storage only",28,"Eagle Rock","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16836,305309,"AUS","Victorian SOP",2013,"For storage only",28,"Eagle Rock","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16834,305309,"AUS","Victorian SOP",2010,"For storage only",28,"Eagle Rock","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16212,305326,"AUS","Victorian SOP",2005,"For storage only",28,"Cape Howe","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16213,305326,"AUS","Victorian SOP",2013,"For storage only",28,"Cape Howe","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16211,305326,"AUS","Victorian SOP",2010,"For storage only",28,"Cape Howe","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19675,305351,"AUS","Victorian SOP",2005,"For storage only",28,"Twelve Apostles","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19676,305351,"AUS","Victorian SOP",2013,"For storage only",28,"Twelve Apostles","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19674,305351,"AUS","Victorian SOP",2010,"For storage only",28,"Twelve Apostles","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19105,305353,"AUS","Victorian SOP",2010,"For storage only",28,"Ricketts Point","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19106,305353,"AUS","Victorian SOP",2005,"For storage only",28,"Ricketts Point","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19107,305353,"AUS","Victorian SOP",2013,"For storage only",28,"Ricketts Point","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18806,305358,"AUS","Victorian SOP",2013,"For storage only",28,"Nyerimilang Park G.L.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18805,305358,"AUS","Victorian SOP",2010,"For storage only",28,"Nyerimilang Park G.L.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19458,305369,"AUS","Victorian SOP",2010,"For storage only",28,"The Arches","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19459,305369,"AUS","Victorian SOP",2005,"For storage only",28,"The Arches","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19460,305369,"AUS","Victorian SOP",2013,"For storage only",28,"The Arches","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18972,305372,"AUS","Victorian SOP",2013,"For storage only",28,"Point Danger","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18971,305372,"AUS","Victorian SOP",2005,"For storage only",28,"Point Danger","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18970,305372,"AUS","Victorian SOP",2010,"For storage only",28,"Point Danger","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18969,305374,"AUS","Victorian SOP",2013,"For storage only",28,"Point Cooke","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18967,305374,"AUS","Victorian SOP",2010,"For storage only",28,"Point Cooke","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18968,305374,"AUS","Victorian SOP",2005,"For storage only",28,"Point Cooke","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18591,305375,"AUS","Victorian SOP",2013,"For storage only",28,"Mushroom Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18590,305375,"AUS","Victorian SOP",2005,"For storage only",28,"Mushroom Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18589,305375,"AUS","Victorian SOP",2010,"For storage only",28,"Mushroom Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18136,305377,"AUS","Victorian SOP",2005,"For storage only",28,"Merri","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18135,305377,"AUS","Victorian SOP",2010,"For storage only",28,"Merri","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18137,305377,"AUS","Victorian SOP",2013,"For storage only",28,"Merri","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15551,305387,"AUS","Victorian SOP",2005,"For storage only",28,"Barwon Bluff","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15552,305387,"AUS","Victorian SOP",2013,"For storage only",28,"Barwon Bluff","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15550,305387,"AUS","Victorian SOP",2010,"For storage only",28,"Barwon Bluff","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18059,305390,"AUS","Victorian SOP",2013,"For storage only",28,"Marengo Reefs","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18057,305390,"AUS","Victorian SOP",2010,"For storage only",28,"Marengo Reefs","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18058,305390,"AUS","Victorian SOP",2005,"For storage only",28,"Marengo Reefs","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17457,305405,"AUS","Victorian SOP",2010,"For storage only",28,"Jawbone","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17458,305405,"AUS","Victorian SOP",2005,"For storage only",28,"Jawbone","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17459,305405,"AUS","Victorian SOP",2013,"For storage only",28,"Jawbone","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15660,305407,"AUS","Victorian SOP",2013,"For storage only",28,"Beware Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15659,305407,"AUS","Victorian SOP",2005,"For storage only",28,"Beware Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15658,305407,"AUS","Victorian SOP",2010,"For storage only",28,"Beware Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20186,305418,"AUS","Victorian SOP",2005,"For storage only",28,"Yaringa","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20185,305418,"AUS","Victorian SOP",2010,"For storage only",28,"Yaringa","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20187,305418,"AUS","Victorian SOP",2013,"For storage only",28,"Yaringa","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19974,305425,"AUS","Victorian SOP",2005,"For storage only",28,"Wilsons Promontory","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19973,305425,"AUS","Victorian SOP",2010,"For storage only",28,"Wilsons Promontory","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19975,305425,"AUS","Victorian SOP",2013,"For storage only",28,"Wilsons Promontory","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18973,305438,"AUS","Victorian SOP",2010,"For storage only",28,"Point Hicks","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18974,305438,"AUS","Victorian SOP",2005,"For storage only",28,"Point Hicks","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18975,305438,"AUS","Victorian SOP",2013,"For storage only",28,"Point Hicks","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18964,305439,"AUS","Victorian SOP",2010,"For storage only",28,"Point Addis","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18965,305439,"AUS","Victorian SOP",2005,"For storage only",28,"Point Addis","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18966,305439,"AUS","Victorian SOP",2013,"For storage only",28,"Point Addis","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18731,305444,"AUS","Victorian SOP",2013,"For storage only",28,"Ninety Mile Beach","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18729,305444,"AUS","Victorian SOP",2010,"For storage only",28,"Ninety Mile Beach","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18730,305444,"AUS","Victorian SOP",2005,"For storage only",28,"Ninety Mile Beach","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16976,305458,"AUS","Victorian SOP",2005,"For storage only",28,"French Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16978,305458,"AUS","Victorian SOP",2013,"For storage only",28,"French Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16974,305458,"AUS","Victorian SOP",2010,"For storage only",28,"French Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16762,305460,"AUS","Victorian SOP",2013,"For storage only",28,"Discovery Bay","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14963,305460,"AUS","METT",2009,"For storage only",28,"Discovery Bay","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16760,305460,"AUS","Victorian SOP",2005,"For storage only",28,"Discovery Bay","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16761,305460,"AUS","Victorian SOP",2010,"For storage only",28,"Discovery Bay","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16356,305470,"AUS","Victorian SOP",2005,"For storage only",28,"Churchill Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16357,305470,"AUS","Victorian SOP",2013,"For storage only",28,"Churchill Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16355,305470,"AUS","Victorian SOP",2010,"For storage only",28,"Churchill Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18991,305993,"AUS","Victorian SOP",2010,"For storage only",28,"Port Phillip Heads","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18992,305993,"AUS","Victorian SOP",2005,"For storage only",28,"Port Phillip Heads","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18993,305993,"AUS","Victorian SOP",2013,"For storage only",28,"Port Phillip Heads","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21165,306180,"ZAF","METT",2010,"For storage only",28,"Bird Island Group Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21654,306181,"ZAF","METT",2005,"For storage only",28,"Pondoland Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21536,306181,"ZAF","METT",2010,"For storage only",28,"Pondoland Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21655,306181,"ZAF","METT",2012,"For storage only",28,"Pondoland Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10608,306235,"GAB","IMET",2015,"For storage only",27,"Plateaux Batéké","National Park","JRC IMET information","JRC",2018,"English",FALSE -10609,306237,"GAB","IMET",2015,"For storage only",27,"Monts de Cristal","National Park","JRC IMET information","JRC",2018,"English",FALSE -15092,306406,"PHL","METT",2006,"For storage only",28,"Angat","Watershed Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11506,306581,"EGY","RAPPAM",2006,"For storage only",28,"El Bourollus","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11510,306581,"EGY","Birdlife IBA",2001,"For storage only",28,"El Bourollus","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17350,306583,"AUS","Victorian SOP",2005,"For storage only",28,"Hotspur B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11534,306589,"EGY","METT",2009,"For storage only",28,"Wadi El-Gemal - Hamata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11533,306589,"EGY","RAPPAM",2006,"For storage only",28,"Wadi El-Gemal - Hamata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11540,306592,"EGY","METT",2009,"For storage only",28,"White Desert","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11541,306592,"EGY","RAPPAM",2006,"For storage only",28,"White Desert","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17517,306600,"AUS","Victorian SOP",2005,"For storage only",28,"Jones Bay G.L.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17516,306600,"AUS","Victorian SOP",2010,"For storage only",28,"Jones Bay G.L.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17797,306650,"AUS","Victorian SOP",2013,"For storage only",28,"Lake Eildon National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17796,306650,"AUS","Victorian SOP",2010,"For storage only",28,"Lake Eildon National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17795,306650,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Eildon National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17860,306662,"AUS","Victorian SOP",2013,"For storage only",28,"Langwarrin Flora & Fauna Reserve","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17859,306662,"AUS","Victorian SOP",2005,"For storage only",28,"Langwarrin Flora & Fauna Reserve","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17858,306662,"AUS","Victorian SOP",2010,"For storage only",28,"Langwarrin Flora & Fauna Reserve","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17869,306668,"AUS","Victorian SOP",2005,"For storage only",28,"Leaghur","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17870,306668,"AUS","Victorian SOP",2013,"For storage only",28,"Leaghur","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17868,306668,"AUS","Victorian SOP",2010,"For storage only",28,"Leaghur","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17949,306683,"AUS","Victorian SOP",2013,"For storage only",28,"Locksley B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17948,306683,"AUS","Victorian SOP",2005,"For storage only",28,"Locksley B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18017,306694,"AUS","NSW SOP",2005,"For storage only",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18021,306694,"AUS","NSW SOP",2004,"For storage only",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18020,306694,"AUS","NSW SOP",2013,"For storage only",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18018,306694,"AUS","NSW SOP",2007,"For storage only",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18019,306694,"AUS","NSW SOP",2010,"For storage only",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18269,306756,"AUS","Victorian SOP",2005,"For storage only",28,"Mortimers Paddock B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18340,306764,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Doboobetic B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18339,306764,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Doboobetic B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18439,306773,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Piper N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18440,306773,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Piper N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18441,306773,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Piper N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20734,306777,"MEX","Ecological Evaluation Score Cards",2012,"For storage only",33,"Bahía de Loreto","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20731,306779,"MEX","Ecological Evaluation Score Cards",2008,"For storage only",33,"Cabo Pulmo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20733,306779,"MEX","How is your MPA doing?",2016,"For storage only",33,"Cabo Pulmo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20732,306779,"MEX","Ecological Evaluation Score Cards",2014,"For storage only",33,"Cabo Pulmo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20755,306787,"MEX","METT",2014,"For storage only",33,"Z.P.F.V. la Cuenca Hidrográfica del Río Necaxa","Natural Resources Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20720,306808,"MEX","Ecological Evaluation Score Cards",2010,"For storage only",33,"Isla San Pedro Mártir","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20718,306808,"MEX","How is your MPA doing?",2014,"For storage only",33,"Isla San Pedro Mártir","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20719,306808,"MEX","Ecological Evaluation Score Cards",2007,"For storage only",33,"Isla San Pedro Mártir","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20762,306809,"MEX","METT",2017,"For storage only",33,"Islas Marías","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20748,306810,"MEX","Ecological Evaluation Score Cards",2014,"For storage only",33,"Islas del Golfo de California","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20760,306820,"MEX","METT",2017,"For storage only",33,"Meseta de Cacaxtla","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20758,306820,"MEX","Ecological Evaluation Score Cards",2015,"For storage only",33,"Meseta de Cacaxtla","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20759,306820,"MEX","How is your MPA doing?",2016,"For storage only",33,"Meseta de Cacaxtla","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20750,306850,"MEX","METT",2014,"For storage only",33,"Sistema Arrecifal Veracruzano","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -12032,307735,"NZL","MPA MEE",2003,"For storage only",28,"Bird Island","Scenic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18472,308010,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Wombat-Garden Range F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18470,308010,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Wombat-Garden Range F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18471,308010,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Wombat-Garden Range F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20397,308530,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"For storage only",30,"Marine (Tamil Nadu)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20425,308533,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Mukurthi","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20444,308535,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Orang (Rajiv Gandhi)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20381,308536,"IND","Second Cycle of MEE Tiger Reserve",2010,"For storage only",30,"Nameri","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20382,308536,"IND","Third Cycle of MEE Tiger Reserve",2014,"For storage only",30,"Nameri","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20380,308536,"IND","First Cycle of MEE Tiger Reserve",2006,"For storage only",30,"Nameri","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20455,308537,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Dibru-Saikhowa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20564,308538,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Mahaveer Harina Vanastha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20434,308541,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Gorumara","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20524,308542,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Rani Jhansi","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20574,308551,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Palkot","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20461,308553,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Kibber","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20513,308560,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Hollongapar Gibbon","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20566,308563,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"For storage only",30,"Sri Penusila Narasimha","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20503,308570,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"For storage only",30,"Mollem","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20426,308570,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"For storage only",30,"Mollem","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20460,308575,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"For storage only",30,"Kanwarjheel","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20520,308592,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Okhla","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -20521,308596,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"For storage only",30,"Sur Sarovar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English",FALSE -11083,308624,"CMR","METT",2005,"For storage only",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11082,308624,"CMR","METT",2003,"For storage only",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11085,308624,"CMR","RAPPAM",2002,"For storage only",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28047,308624,"CMR","METT",2007,"For storage only",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11084,308624,"CMR","METT",2014,"For storage only",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11130,308636,"CMR","RAPPAM",2002,"For storage only",28,"Mengame","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11145,308637,"CMR","RAPPAM",2002,"For storage only",28,"Vallée du Mbéré","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17966,308667,"AUS","Birdlife IBA",2008,"For storage only",28,"Lord Howe Island","Permanent Park Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15529,308670,"AUS","NSW SOP",2010,"For storage only",28,"Barrenjoey","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15781,308672,"AUS","NSW SOP",2010,"For storage only",28,"Boat Harbour","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16175,308673,"AUS","NSW SOP",2010,"For storage only",28,"Cabbage Tree Bay","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15984,308674,"AUS","NSW SOP",2010,"For storage only",28,"Bronte-Coogee","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16199,308675,"AUS","NSW SOP",2010,"For storage only",28,"Cape Banks","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17478,308676,"AUS","NSW SOP",2010,"For storage only",28,"Jervis Bay","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21572,308685,"ZAF","METT",2012,"For storage only",28,"Namaqua National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21573,308685,"ZAF","METT",2013,"For storage only",28,"Namaqua National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21571,308685,"ZAF","METT",2010,"For storage only",28,"Namaqua National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21497,308687,"ZAF","METT",2010,"For storage only",28,"Mapungupwe National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21499,308687,"ZAF","METT",2013,"For storage only",28,"Mapungupwe National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21498,308687,"ZAF","METT",2012,"For storage only",28,"Mapungupwe National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21248,308688,"ZAF","METT",2012,"For storage only",28,"Driftsands Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21249,308688,"ZAF","METT",2013,"For storage only",28,"Driftsands Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21247,308688,"ZAF","METT",2011,"For storage only",28,"Driftsands Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21246,308688,"ZAF","METT",2010,"For storage only",28,"Driftsands Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18769,308845,"AUS","Victorian SOP",2010,"For storage only",28,"North Western Port N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18770,308845,"AUS","Victorian SOP",2005,"For storage only",28,"North Western Port N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18771,308845,"AUS","Victorian SOP",2013,"For storage only",28,"North Western Port N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19083,308912,"AUS","Victorian SOP",2005,"For storage only",28,"Reef Island and Bass River Mouth N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19082,308912,"AUS","Victorian SOP",2010,"For storage only",28,"Reef Island and Bass River Mouth N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19084,308912,"AUS","Victorian SOP",2013,"For storage only",28,"Reef Island and Bass River Mouth N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19108,308916,"AUS","Victorian SOP",2010,"For storage only",28,"Rigby Island G.L.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19115,308919,"AUS","Victorian SOP",2005,"For storage only",28,"River Murray Reserve","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19175,308933,"AUS","Victorian SOP",2010,"For storage only",28,"Sassafras Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19176,308933,"AUS","Victorian SOP",2013,"For storage only",28,"Sassafras Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19174,308933,"AUS","Victorian SOP",2005,"For storage only",28,"Sassafras Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19366,308968,"AUS","Victorian SOP",2005,"For storage only",28,"Swan Bay - Edwards Point W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19368,308968,"AUS","Victorian SOP",2013,"For storage only",28,"Swan Bay - Edwards Point W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19367,308968,"AUS","Victorian SOP",2010,"For storage only",28,"Swan Bay - Edwards Point W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19827,308976,"AUS","Victorian SOP",2013,"For storage only",28,"Warrandyte - Kinglake N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19826,308976,"AUS","Victorian SOP",2010,"For storage only",28,"Warrandyte - Kinglake N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19569,309033,"AUS","Victorian SOP",2013,"For storage only",28,"Tooloy-Lake Mundi W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19567,309033,"AUS","Victorian SOP",2010,"For storage only",28,"Tooloy-Lake Mundi W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19568,309033,"AUS","Victorian SOP",2005,"For storage only",28,"Tooloy-Lake Mundi W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19683,309061,"AUS","Victorian SOP",2005,"For storage only",28,"Tyers Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19682,309061,"AUS","Victorian SOP",2010,"For storage only",28,"Tyers Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19684,309061,"AUS","Victorian SOP",2013,"For storage only",28,"Tyers Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20058,309223,"AUS","Victorian SOP",2005,"For storage only",28,"Wonthaggi Heathlands N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20060,309223,"AUS","Victorian SOP",2013,"For storage only",28,"Wonthaggi Heathlands N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20059,309223,"AUS","Victorian SOP",2010,"For storage only",28,"Wonthaggi Heathlands N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20070,309236,"AUS","Victorian SOP",2005,"For storage only",28,"Woodnaggerak B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20078,309244,"AUS","NSW SOP",2005,"For storage only",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20084,309244,"AUS","NSW SOP",2004,"For storage only",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20081,309244,"AUS","NSW SOP",2013,"For storage only",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20080,309244,"AUS","NSW SOP",2010,"For storage only",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20079,309244,"AUS","NSW SOP",2007,"For storage only",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15344,309250,"AUS","NSW SOP",2010,"For storage only",28,"Alma Tier","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17525,309323,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Junee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17526,309323,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Junee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16565,309349,"AUS","Birdlife IBA",2008,"For storage only",28,"Cradle Mountain-Lake St Clair","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16566,309349,"AUS","Tasmanian WHA",2004,"For storage only",28,"Cradle Mountain-Lake St Clair","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16787,309403,"AUS","Birdlife IBA",2008,"For storage only",28,"Douglas-Apsley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16966,309430,"AUS","Tasmanian WHA",2004,"For storage only",28,"Franklin-Gordon Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17273,309453,"AUS","Tasmanian WHA",2004,"For storage only",28,"Hartz Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18447,309574,"AUS","NSW SOP",2010,"For storage only",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18445,309574,"AUS","NSW SOP",2005,"For storage only",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18446,309574,"AUS","NSW SOP",2007,"For storage only",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16781,309574,"AUS","NSW SOP",2004,"For storage only",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18448,309574,"AUS","NSW SOP",2013,"For storage only",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15920,309690,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Brampton Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15921,309690,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Brampton Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19774,309715,"AUS","Tasmanian WHA",2004,"For storage only",28,"Walls of Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16849,309734,"AUS","Birdlife IBA",2008,"For storage only",28,"Wright and Egg Islands","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15396,309856,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Astrebla Downs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15395,309856,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Astrebla Downs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15741,309861,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Black Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15742,309861,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Black Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15968,309891,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Broad Sound Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15967,309891,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Broad Sound Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16099,309893,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bunya Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16100,309893,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bunya Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16593,309902,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Cudmore (Limited Depth)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16594,309902,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Cudmore (Limited Depth)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16866,309907,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Erringibba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16865,309907,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Erringibba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17087,309911,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Glass House Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17088,309911,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Glass House Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17124,309913,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Good Night Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17123,309913,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Good Night Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16472,309914,"AUS","Birdlife IBA",2008,"For storage only",28,"Great Sandy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17186,309914,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Great Sandy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17187,309914,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Great Sandy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18145,309929,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Michaelmas and Upolu Cays","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18146,309929,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Michaelmas and Upolu Cays","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18418,309932,"AUS","NSW SOP",2010,"For storage only",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18419,309932,"AUS","NSW SOP",2013,"For storage only",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18420,309932,"AUS","NSW SOP",2004,"For storage only",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18417,309932,"AUS","NSW SOP",2007,"For storage only",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18416,309932,"AUS","NSW SOP",2005,"For storage only",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18426,309933,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount O'Connell","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18427,309933,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount O'Connell","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18482,309936,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mowbray","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18481,309936,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mowbray","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18877,309943,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Paluma Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18875,309943,"AUS","Birdlife IBA",2008,"For storage only",28,"Paluma Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18876,309943,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Paluma Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18926,309944,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Percy Isles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18925,309944,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Percy Isles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19092,309945,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Repulse Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19093,309945,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Repulse Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19294,309952,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Southern Moreton Bay Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19295,309952,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Southern Moreton Bay Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19441,309955,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Tarong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19442,309955,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Tarong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19506,309956,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Three Islands Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19507,309956,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Three Islands Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15371,309969,"AUS","NSW SOP",2010,"For storage only",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15373,309969,"AUS","NSW SOP",2004,"For storage only",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15372,309969,"AUS","NSW SOP",2013,"For storage only",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15369,309969,"AUS","NSW SOP",2005,"For storage only",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15370,309969,"AUS","NSW SOP",2007,"For storage only",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15380,309970,"AUS","NSW SOP",2007,"For storage only",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15383,309970,"AUS","NSW SOP",2004,"For storage only",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15381,309970,"AUS","NSW SOP",2010,"For storage only",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15382,309970,"AUS","NSW SOP",2013,"For storage only",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15379,309970,"AUS","NSW SOP",2005,"For storage only",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15384,309971,"AUS","NSW SOP",2005,"For storage only",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15385,309971,"AUS","NSW SOP",2007,"For storage only",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15388,309971,"AUS","NSW SOP",2013,"For storage only",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15387,309971,"AUS","NSW SOP",2004,"For storage only",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15386,309971,"AUS","NSW SOP",2010,"For storage only",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15423,309972,"AUS","NSW SOP",2013,"For storage only",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15420,309972,"AUS","NSW SOP",2007,"For storage only",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15419,309972,"AUS","NSW SOP",2005,"For storage only",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15422,309972,"AUS","NSW SOP",2004,"For storage only",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15421,309972,"AUS","NSW SOP",2010,"For storage only",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15425,309973,"AUS","NSW SOP",2005,"For storage only",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15428,309973,"AUS","NSW SOP",2013,"For storage only",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15427,309973,"AUS","NSW SOP",2010,"For storage only",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15426,309973,"AUS","NSW SOP",2007,"For storage only",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15429,309973,"AUS","NSW SOP",2004,"For storage only",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15444,309974,"AUS","NSW SOP",2010,"For storage only",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15443,309974,"AUS","NSW SOP",2007,"For storage only",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15445,309974,"AUS","NSW SOP",2013,"For storage only",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15442,309974,"AUS","NSW SOP",2005,"For storage only",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15446,309974,"AUS","NSW SOP",2004,"For storage only",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15459,309976,"AUS","NSW SOP",2005,"For storage only",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15461,309976,"AUS","NSW SOP",2010,"For storage only",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15460,309976,"AUS","NSW SOP",2007,"For storage only",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15463,309976,"AUS","NSW SOP",2004,"For storage only",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15462,309976,"AUS","NSW SOP",2013,"For storage only",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15493,309978,"AUS","NSW SOP",2013,"For storage only",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17531,309978,"AUS","NSW SOP",2004,"For storage only",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15492,309978,"AUS","NSW SOP",2010,"For storage only",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15490,309978,"AUS","NSW SOP",2005,"For storage only",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15491,309978,"AUS","NSW SOP",2007,"For storage only",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15473,309979,"AUS","NSW SOP",2010,"For storage only",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15471,309979,"AUS","NSW SOP",2005,"For storage only",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15474,309979,"AUS","NSW SOP",2013,"For storage only",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15472,309979,"AUS","NSW SOP",2007,"For storage only",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15475,309979,"AUS","NSW SOP",2004,"For storage only",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15526,309981,"AUS","NSW SOP",2010,"For storage only",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15525,309981,"AUS","NSW SOP",2007,"For storage only",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15528,309981,"AUS","NSW SOP",2004,"For storage only",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15524,309981,"AUS","NSW SOP",2005,"For storage only",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15527,309981,"AUS","NSW SOP",2013,"For storage only",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15554,309982,"AUS","NSW SOP",2005,"For storage only",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15557,309982,"AUS","NSW SOP",2013,"For storage only",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15556,309982,"AUS","NSW SOP",2010,"For storage only",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15555,309982,"AUS","NSW SOP",2007,"For storage only",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15558,309982,"AUS","NSW SOP",2004,"For storage only",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15575,309983,"AUS","NSW SOP",2007,"For storage only",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15576,309983,"AUS","NSW SOP",2010,"For storage only",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15574,309983,"AUS","NSW SOP",2005,"For storage only",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15577,309983,"AUS","NSW SOP",2013,"For storage only",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15578,309983,"AUS","NSW SOP",2004,"For storage only",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15592,309984,"AUS","NSW SOP",2010,"For storage only",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16325,309984,"AUS","NSW SOP",2004,"For storage only",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15591,309984,"AUS","NSW SOP",2007,"For storage only",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15590,309984,"AUS","NSW SOP",2005,"For storage only",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15593,309984,"AUS","NSW SOP",2013,"For storage only",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15621,309986,"AUS","NSW SOP",2004,"For storage only",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15619,309986,"AUS","NSW SOP",2010,"For storage only",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15618,309986,"AUS","NSW SOP",2007,"For storage only",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15617,309986,"AUS","NSW SOP",2005,"For storage only",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15620,309986,"AUS","NSW SOP",2013,"For storage only",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15651,309987,"AUS","NSW SOP",2004,"For storage only",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15647,309987,"AUS","NSW SOP",2005,"For storage only",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15649,309987,"AUS","NSW SOP",2010,"For storage only",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15648,309987,"AUS","NSW SOP",2007,"For storage only",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15650,309987,"AUS","NSW SOP",2013,"For storage only",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15682,309988,"AUS","NSW SOP",2013,"For storage only",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15679,309988,"AUS","NSW SOP",2005,"For storage only",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15681,309988,"AUS","NSW SOP",2010,"For storage only",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15680,309988,"AUS","NSW SOP",2007,"For storage only",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15683,309988,"AUS","NSW SOP",2004,"For storage only",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15686,309989,"AUS","NSW SOP",2010,"For storage only",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15685,309989,"AUS","NSW SOP",2007,"For storage only",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15687,309989,"AUS","NSW SOP",2013,"For storage only",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15684,309989,"AUS","NSW SOP",2005,"For storage only",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15688,309989,"AUS","NSW SOP",2004,"For storage only",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15697,309990,"AUS","NSW SOP",2013,"For storage only",28,"Bindarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15695,309990,"AUS","NSW SOP",2007,"For storage only",28,"Bindarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15694,309990,"AUS","NSW SOP",2005,"For storage only",28,"Bindarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15696,309990,"AUS","NSW SOP",2010,"For storage only",28,"Bindarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15712,309991,"AUS","NSW SOP",2013,"For storage only",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15710,309991,"AUS","NSW SOP",2007,"For storage only",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15713,309991,"AUS","NSW SOP",2004,"For storage only",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15709,309991,"AUS","NSW SOP",2005,"For storage only",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15711,309991,"AUS","NSW SOP",2010,"For storage only",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15727,309992,"AUS","NSW SOP",2005,"For storage only",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15729,309992,"AUS","NSW SOP",2010,"For storage only",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15728,309992,"AUS","NSW SOP",2007,"For storage only",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16262,309992,"AUS","NSW SOP",2004,"For storage only",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15730,309992,"AUS","NSW SOP",2013,"For storage only",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15776,309993,"AUS","NSW SOP",2005,"For storage only",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15777,309993,"AUS","NSW SOP",2007,"For storage only",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15780,309993,"AUS","NSW SOP",2004,"For storage only",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15778,309993,"AUS","NSW SOP",2010,"For storage only",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15779,309993,"AUS","NSW SOP",2013,"For storage only",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15792,309994,"AUS","NSW SOP",2013,"For storage only",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15789,309994,"AUS","NSW SOP",2005,"For storage only",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15791,309994,"AUS","NSW SOP",2010,"For storage only",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15790,309994,"AUS","NSW SOP",2007,"For storage only",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15793,309994,"AUS","NSW SOP",2004,"For storage only",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15797,309995,"AUS","NSW SOP",2013,"For storage only",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15798,309995,"AUS","NSW SOP",2004,"For storage only",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15796,309995,"AUS","NSW SOP",2010,"For storage only",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15795,309995,"AUS","NSW SOP",2007,"For storage only",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15794,309995,"AUS","NSW SOP",2005,"For storage only",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15804,309996,"AUS","NSW SOP",2005,"For storage only",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15807,309996,"AUS","NSW SOP",2013,"For storage only",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15808,309996,"AUS","NSW SOP",2004,"For storage only",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15806,309996,"AUS","NSW SOP",2010,"For storage only",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15805,309996,"AUS","NSW SOP",2007,"For storage only",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15813,309997,"AUS","NSW SOP",2004,"For storage only",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15810,309997,"AUS","NSW SOP",2007,"For storage only",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15811,309997,"AUS","NSW SOP",2010,"For storage only",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15812,309997,"AUS","NSW SOP",2013,"For storage only",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15809,309997,"AUS","NSW SOP",2005,"For storage only",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15847,309999,"AUS","NSW SOP",2013,"For storage only",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15848,309999,"AUS","NSW SOP",2004,"For storage only",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15845,309999,"AUS","NSW SOP",2007,"For storage only",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15846,309999,"AUS","NSW SOP",2010,"For storage only",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15844,309999,"AUS","NSW SOP",2005,"For storage only",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15865,310000,"AUS","NSW SOP",2005,"For storage only",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15866,310000,"AUS","NSW SOP",2007,"For storage only",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15867,310000,"AUS","NSW SOP",2010,"For storage only",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15868,310000,"AUS","NSW SOP",2013,"For storage only",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15869,310000,"AUS","NSW SOP",2004,"For storage only",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15930,310002,"AUS","NSW SOP",2004,"For storage only",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15927,310002,"AUS","NSW SOP",2007,"For storage only",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15928,310002,"AUS","NSW SOP",2010,"For storage only",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15926,310002,"AUS","NSW SOP",2005,"For storage only",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15929,310002,"AUS","NSW SOP",2013,"For storage only",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15941,310003,"AUS","NSW SOP",2010,"For storage only",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15939,310003,"AUS","NSW SOP",2005,"For storage only",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15943,310003,"AUS","NSW SOP",2004,"For storage only",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15942,310003,"AUS","NSW SOP",2013,"For storage only",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15940,310003,"AUS","NSW SOP",2007,"For storage only",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15947,310004,"AUS","NSW SOP",2013,"For storage only",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15945,310004,"AUS","NSW SOP",2007,"For storage only",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15946,310004,"AUS","NSW SOP",2010,"For storage only",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15944,310004,"AUS","NSW SOP",2005,"For storage only",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15948,310004,"AUS","NSW SOP",2004,"For storage only",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15950,310005,"AUS","NSW SOP",2007,"For storage only",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15956,310005,"AUS","NSW SOP",2004,"For storage only",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15951,310005,"AUS","NSW SOP",2010,"For storage only",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15949,310005,"AUS","NSW SOP",2005,"For storage only",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15952,310005,"AUS","NSW SOP",2013,"For storage only",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15995,310007,"AUS","NSW SOP",2005,"For storage only",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15998,310007,"AUS","NSW SOP",2013,"For storage only",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15997,310007,"AUS","NSW SOP",2010,"For storage only",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15996,310007,"AUS","NSW SOP",2007,"For storage only",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15999,310007,"AUS","NSW SOP",2004,"For storage only",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16034,310008,"AUS","NSW SOP",2007,"For storage only",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16035,310008,"AUS","NSW SOP",2010,"For storage only",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16033,310008,"AUS","NSW SOP",2005,"For storage only",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16036,310008,"AUS","NSW SOP",2013,"For storage only",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16037,310008,"AUS","NSW SOP",2004,"For storage only",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16070,310011,"AUS","NSW SOP",2013,"For storage only",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16068,310011,"AUS","NSW SOP",2007,"For storage only",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16067,310011,"AUS","NSW SOP",2005,"For storage only",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16069,310011,"AUS","NSW SOP",2010,"For storage only",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16071,310011,"AUS","NSW SOP",2004,"For storage only",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16111,310012,"AUS","NSW SOP",2010,"For storage only",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16110,310012,"AUS","NSW SOP",2007,"For storage only",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16112,310012,"AUS","NSW SOP",2013,"For storage only",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16113,310012,"AUS","NSW SOP",2004,"For storage only",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16109,310012,"AUS","NSW SOP",2005,"For storage only",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16123,310013,"AUS","NSW SOP",2013,"For storage only",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16119,310013,"AUS","NSW SOP",2005,"For storage only",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16122,310013,"AUS","NSW SOP",2004,"For storage only",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16120,310013,"AUS","NSW SOP",2007,"For storage only",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16121,310013,"AUS","NSW SOP",2010,"For storage only",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16116,310016,"AUS","NSW SOP",2010,"For storage only",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16117,310016,"AUS","NSW SOP",2004,"For storage only",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16114,310016,"AUS","NSW SOP",2005,"For storage only",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16118,310016,"AUS","NSW SOP",2013,"For storage only",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16115,310016,"AUS","NSW SOP",2007,"For storage only",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16126,310020,"AUS","NSW SOP",2010,"For storage only",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16127,310020,"AUS","NSW SOP",2013,"For storage only",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16124,310020,"AUS","NSW SOP",2005,"For storage only",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16128,310020,"AUS","NSW SOP",2004,"For storage only",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16125,310020,"AUS","NSW SOP",2007,"For storage only",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16156,310021,"AUS","NSW SOP",2007,"For storage only",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16163,310021,"AUS","NSW SOP",2004,"For storage only",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16158,310021,"AUS","NSW SOP",2013,"For storage only",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16155,310021,"AUS","NSW SOP",2005,"For storage only",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16157,310021,"AUS","NSW SOP",2010,"For storage only",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16174,310022,"AUS","NSW SOP",2004,"For storage only",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16172,310022,"AUS","NSW SOP",2010,"For storage only",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16170,310022,"AUS","NSW SOP",2005,"For storage only",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16173,310022,"AUS","NSW SOP",2013,"For storage only",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16171,310022,"AUS","NSW SOP",2007,"For storage only",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16180,310025,"AUS","NSW SOP",2004,"For storage only",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16177,310025,"AUS","NSW SOP",2007,"For storage only",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16178,310025,"AUS","NSW SOP",2010,"For storage only",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16176,310025,"AUS","NSW SOP",2005,"For storage only",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16179,310025,"AUS","NSW SOP",2013,"For storage only",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16231,310027,"AUS","NSW SOP",2013,"For storage only",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16229,310027,"AUS","NSW SOP",2007,"For storage only",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16230,310027,"AUS","NSW SOP",2010,"For storage only",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16232,310027,"AUS","NSW SOP",2004,"For storage only",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16228,310027,"AUS","NSW SOP",2005,"For storage only",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16243,310028,"AUS","NSW SOP",2004,"For storage only",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16242,310028,"AUS","NSW SOP",2013,"For storage only",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16239,310028,"AUS","NSW SOP",2005,"For storage only",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16241,310028,"AUS","NSW SOP",2010,"For storage only",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16240,310028,"AUS","NSW SOP",2007,"For storage only",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16335,310029,"AUS","NSW SOP",2010,"For storage only",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16333,310029,"AUS","NSW SOP",2005,"For storage only",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16334,310029,"AUS","NSW SOP",2007,"For storage only",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16337,310029,"AUS","NSW SOP",2013,"For storage only",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16336,310029,"AUS","NSW SOP",2004,"For storage only",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16361,310030,"AUS","NSW SOP",2007,"For storage only",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16364,310030,"AUS","NSW SOP",2004,"For storage only",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16362,310030,"AUS","NSW SOP",2010,"For storage only",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16360,310030,"AUS","NSW SOP",2005,"For storage only",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16363,310030,"AUS","NSW SOP",2013,"For storage only",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16366,310031,"AUS","NSW SOP",2007,"For storage only",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16369,310031,"AUS","NSW SOP",2004,"For storage only",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16367,310031,"AUS","NSW SOP",2010,"For storage only",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16368,310031,"AUS","NSW SOP",2013,"For storage only",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16365,310031,"AUS","NSW SOP",2005,"For storage only",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16376,310032,"AUS","NSW SOP",2004,"For storage only",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16374,310032,"AUS","NSW SOP",2010,"For storage only",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16372,310032,"AUS","NSW SOP",2005,"For storage only",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16373,310032,"AUS","NSW SOP",2007,"For storage only",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16375,310032,"AUS","NSW SOP",2013,"For storage only",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16455,310038,"AUS","NSW SOP",2005,"For storage only",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16456,310038,"AUS","NSW SOP",2007,"For storage only",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16459,310038,"AUS","NSW SOP",2004,"For storage only",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16457,310038,"AUS","NSW SOP",2010,"For storage only",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16458,310038,"AUS","NSW SOP",2013,"For storage only",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16482,310039,"AUS","NSW SOP",2004,"For storage only",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16481,310039,"AUS","NSW SOP",2013,"For storage only",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16478,310039,"AUS","NSW SOP",2005,"For storage only",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16479,310039,"AUS","NSW SOP",2007,"For storage only",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16480,310039,"AUS","NSW SOP",2010,"For storage only",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16494,310040,"AUS","NSW SOP",2005,"For storage only",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16498,310040,"AUS","NSW SOP",2013,"For storage only",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16496,310040,"AUS","NSW SOP",2010,"For storage only",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16495,310040,"AUS","NSW SOP",2007,"For storage only",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16497,310040,"AUS","NSW SOP",2004,"For storage only",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16531,310041,"AUS","NSW SOP",2013,"For storage only",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16530,310041,"AUS","NSW SOP",2010,"For storage only",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16532,310041,"AUS","NSW SOP",2004,"For storage only",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16528,310041,"AUS","NSW SOP",2005,"For storage only",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16529,310041,"AUS","NSW SOP",2007,"For storage only",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16539,310043,"AUS","NSW SOP",2007,"For storage only",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16545,310043,"AUS","NSW SOP",2004,"For storage only",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16540,310043,"AUS","NSW SOP",2010,"For storage only",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16538,310043,"AUS","NSW SOP",2005,"For storage only",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16542,310043,"AUS","NSW SOP",2013,"For storage only",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16549,310044,"AUS","NSW SOP",2007,"For storage only",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16550,310044,"AUS","NSW SOP",2010,"For storage only",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16548,310044,"AUS","NSW SOP",2005,"For storage only",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16552,310044,"AUS","NSW SOP",2004,"For storage only",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16551,310044,"AUS","NSW SOP",2013,"For storage only",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16554,310046,"AUS","NSW SOP",2007,"For storage only",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16556,310046,"AUS","NSW SOP",2013,"For storage only",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16555,310046,"AUS","NSW SOP",2010,"For storage only",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16557,310046,"AUS","NSW SOP",2004,"For storage only",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16553,310046,"AUS","NSW SOP",2005,"For storage only",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16561,310047,"AUS","NSW SOP",2007,"For storage only",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16563,310047,"AUS","NSW SOP",2013,"For storage only",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16562,310047,"AUS","NSW SOP",2010,"For storage only",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16564,310047,"AUS","NSW SOP",2004,"For storage only",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16560,310047,"AUS","NSW SOP",2005,"For storage only",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16606,310050,"AUS","NSW SOP",2004,"For storage only",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16604,310050,"AUS","NSW SOP",2010,"For storage only",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16602,310050,"AUS","NSW SOP",2005,"For storage only",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16605,310050,"AUS","NSW SOP",2013,"For storage only",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16603,310050,"AUS","NSW SOP",2007,"For storage only",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16614,310051,"AUS","NSW SOP",2004,"For storage only",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16612,310051,"AUS","NSW SOP",2010,"For storage only",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16610,310051,"AUS","NSW SOP",2005,"For storage only",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16613,310051,"AUS","NSW SOP",2013,"For storage only",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16611,310051,"AUS","NSW SOP",2007,"For storage only",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19421,310052,"AUS","NSW SOP",2004,"For storage only",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16616,310052,"AUS","NSW SOP",2007,"For storage only",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16618,310052,"AUS","NSW SOP",2013,"For storage only",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16615,310052,"AUS","NSW SOP",2005,"For storage only",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16617,310052,"AUS","NSW SOP",2010,"For storage only",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16640,310053,"AUS","NSW SOP",2005,"For storage only",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16644,310053,"AUS","NSW SOP",2004,"For storage only",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16641,310053,"AUS","NSW SOP",2007,"For storage only",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16643,310053,"AUS","NSW SOP",2013,"For storage only",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16642,310053,"AUS","NSW SOP",2010,"For storage only",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16654,310054,"AUS","NSW SOP",2007,"For storage only",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16655,310054,"AUS","NSW SOP",2010,"For storage only",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16657,310054,"AUS","NSW SOP",2004,"For storage only",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16656,310054,"AUS","NSW SOP",2013,"For storage only",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16653,310054,"AUS","NSW SOP",2005,"For storage only",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16676,310055,"AUS","NSW SOP",2007,"For storage only",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16678,310055,"AUS","NSW SOP",2013,"For storage only",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16675,310055,"AUS","NSW SOP",2005,"For storage only",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16677,310055,"AUS","NSW SOP",2010,"For storage only",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16679,310055,"AUS","NSW SOP",2004,"For storage only",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16689,310056,"AUS","NSW SOP",2004,"For storage only",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16687,310056,"AUS","NSW SOP",2010,"For storage only",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16686,310056,"AUS","NSW SOP",2007,"For storage only",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16688,310056,"AUS","NSW SOP",2013,"For storage only",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16685,310056,"AUS","NSW SOP",2005,"For storage only",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16692,310057,"AUS","NSW SOP",2005,"For storage only",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16694,310057,"AUS","NSW SOP",2010,"For storage only",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16695,310057,"AUS","NSW SOP",2013,"For storage only",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16696,310057,"AUS","NSW SOP",2004,"For storage only",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16693,310057,"AUS","NSW SOP",2007,"For storage only",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16734,310058,"AUS","NSW SOP",2010,"For storage only",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16736,310058,"AUS","NSW SOP",2013,"For storage only",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16741,310058,"AUS","NSW SOP",2004,"For storage only",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16732,310058,"AUS","NSW SOP",2005,"For storage only",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16733,310058,"AUS","NSW SOP",2007,"For storage only",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18816,310059,"AUS","NSW SOP",2004,"For storage only",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16777,310059,"AUS","NSW SOP",2005,"For storage only",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16780,310059,"AUS","NSW SOP",2013,"For storage only",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16779,310059,"AUS","NSW SOP",2010,"For storage only",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16778,310059,"AUS","NSW SOP",2007,"For storage only",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16797,310060,"AUS","NSW SOP",2010,"For storage only",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16795,310060,"AUS","NSW SOP",2005,"For storage only",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16799,310060,"AUS","NSW SOP",2004,"For storage only",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16796,310060,"AUS","NSW SOP",2007,"For storage only",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16798,310060,"AUS","NSW SOP",2013,"For storage only",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16816,310061,"AUS","NSW SOP",2010,"For storage only",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16961,310061,"AUS","NSW SOP",2004,"For storage only",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16814,310061,"AUS","NSW SOP",2005,"For storage only",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16817,310061,"AUS","NSW SOP",2013,"For storage only",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16815,310061,"AUS","NSW SOP",2007,"For storage only",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16831,310062,"AUS","NSW SOP",2010,"For storage only",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16832,310062,"AUS","NSW SOP",2013,"For storage only",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16830,310062,"AUS","NSW SOP",2007,"For storage only",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16829,310062,"AUS","NSW SOP",2005,"For storage only",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16833,310062,"AUS","NSW SOP",2004,"For storage only",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16854,310063,"AUS","NSW SOP",2010,"For storage only",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16853,310063,"AUS","NSW SOP",2007,"For storage only",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16852,310063,"AUS","NSW SOP",2005,"For storage only",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16856,310063,"AUS","NSW SOP",2004,"For storage only",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16855,310063,"AUS","NSW SOP",2013,"For storage only",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16913,310064,"AUS","NSW SOP",2005,"For storage only",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16915,310064,"AUS","NSW SOP",2010,"For storage only",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16916,310064,"AUS","NSW SOP",2013,"For storage only",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16917,310064,"AUS","NSW SOP",2004,"For storage only",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16914,310064,"AUS","NSW SOP",2007,"For storage only",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16924,310065,"AUS","NSW SOP",2004,"For storage only",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16920,310065,"AUS","NSW SOP",2005,"For storage only",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16921,310065,"AUS","NSW SOP",2007,"For storage only",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16923,310065,"AUS","NSW SOP",2013,"For storage only",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16922,310065,"AUS","NSW SOP",2010,"For storage only",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16938,310066,"AUS","NSW SOP",2010,"For storage only",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16940,310066,"AUS","NSW SOP",2004,"For storage only",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16937,310066,"AUS","NSW SOP",2007,"For storage only",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16939,310066,"AUS","NSW SOP",2013,"For storage only",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16936,310066,"AUS","NSW SOP",2005,"For storage only",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16960,310067,"AUS","NSW SOP",2013,"For storage only",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18449,310067,"AUS","NSW SOP",2004,"For storage only",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16957,310067,"AUS","NSW SOP",2005,"For storage only",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16959,310067,"AUS","NSW SOP",2010,"For storage only",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16958,310067,"AUS","NSW SOP",2007,"For storage only",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16993,310068,"AUS","NSW SOP",2013,"For storage only",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16989,310068,"AUS","NSW SOP",2005,"For storage only",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16990,310068,"AUS","NSW SOP",2007,"For storage only",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16992,310068,"AUS","NSW SOP",2004,"For storage only",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16991,310068,"AUS","NSW SOP",2010,"For storage only",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17001,310069,"AUS","NSW SOP",2005,"For storage only",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17005,310069,"AUS","NSW SOP",2004,"For storage only",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17003,310069,"AUS","NSW SOP",2010,"For storage only",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17004,310069,"AUS","NSW SOP",2013,"For storage only",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17002,310069,"AUS","NSW SOP",2007,"For storage only",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17054,310070,"AUS","NSW SOP",2013,"For storage only",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19893,310070,"AUS","NSW SOP",2004,"For storage only",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17053,310070,"AUS","NSW SOP",2010,"For storage only",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17051,310070,"AUS","NSW SOP",2005,"For storage only",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17052,310070,"AUS","NSW SOP",2007,"For storage only",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17057,310071,"AUS","NSW SOP",2007,"For storage only",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17058,310071,"AUS","NSW SOP",2010,"For storage only",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17056,310071,"AUS","NSW SOP",2005,"For storage only",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17060,310071,"AUS","NSW SOP",2004,"For storage only",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17059,310071,"AUS","NSW SOP",2013,"For storage only",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17074,310072,"AUS","NSW SOP",2010,"For storage only",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17072,310072,"AUS","NSW SOP",2005,"For storage only",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17076,310072,"AUS","NSW SOP",2004,"For storage only",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17075,310072,"AUS","NSW SOP",2013,"For storage only",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17073,310072,"AUS","NSW SOP",2007,"For storage only",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17120,310073,"AUS","NSW SOP",2010,"For storage only",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17119,310073,"AUS","NSW SOP",2007,"For storage only",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17121,310073,"AUS","NSW SOP",2013,"For storage only",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17118,310073,"AUS","NSW SOP",2005,"For storage only",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17122,310073,"AUS","NSW SOP",2004,"For storage only",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17146,310074,"AUS","NSW SOP",2010,"For storage only",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17145,310074,"AUS","NSW SOP",2007,"For storage only",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17148,310074,"AUS","NSW SOP",2004,"For storage only",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17144,310074,"AUS","NSW SOP",2005,"For storage only",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17147,310074,"AUS","NSW SOP",2013,"For storage only",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17157,310075,"AUS","NSW SOP",2004,"For storage only",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17153,310075,"AUS","NSW SOP",2005,"For storage only",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17154,310075,"AUS","NSW SOP",2007,"For storage only",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17155,310075,"AUS","NSW SOP",2010,"For storage only",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17156,310075,"AUS","NSW SOP",2013,"For storage only",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17172,310076,"AUS","NSW SOP",2007,"For storage only",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17174,310076,"AUS","NSW SOP",2013,"For storage only",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17171,310076,"AUS","NSW SOP",2005,"For storage only",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17175,310076,"AUS","NSW SOP",2004,"For storage only",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17173,310076,"AUS","NSW SOP",2010,"For storage only",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17208,310077,"AUS","NSW SOP",2007,"For storage only",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17209,310077,"AUS","NSW SOP",2010,"For storage only",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17207,310077,"AUS","NSW SOP",2005,"For storage only",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17210,310077,"AUS","NSW SOP",2013,"For storage only",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17211,310077,"AUS","NSW SOP",2004,"For storage only",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17226,310078,"AUS","NSW SOP",2005,"For storage only",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17229,310078,"AUS","NSW SOP",2010,"For storage only",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17231,310078,"AUS","NSW SOP",2013,"For storage only",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17227,310078,"AUS","NSW SOP",2007,"For storage only",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17233,310078,"AUS","NSW SOP",2004,"For storage only",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17286,310080,"AUS","NSW SOP",2007,"For storage only",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17288,310080,"AUS","NSW SOP",2004,"For storage only",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17285,310080,"AUS","NSW SOP",2005,"For storage only",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17289,310080,"AUS","NSW SOP",2013,"For storage only",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17287,310080,"AUS","NSW SOP",2010,"For storage only",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17330,310081,"AUS","NSW SOP",2004,"For storage only",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17326,310081,"AUS","NSW SOP",2005,"For storage only",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17327,310081,"AUS","NSW SOP",2007,"For storage only",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17328,310081,"AUS","NSW SOP",2010,"For storage only",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17329,310081,"AUS","NSW SOP",2013,"For storage only",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17386,310082,"AUS","NSW SOP",2004,"For storage only",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17383,310082,"AUS","NSW SOP",2007,"For storage only",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17384,310082,"AUS","NSW SOP",2010,"For storage only",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17385,310082,"AUS","NSW SOP",2013,"For storage only",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17382,310082,"AUS","NSW SOP",2005,"For storage only",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17389,310083,"AUS","NSW SOP",2010,"For storage only",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17391,310083,"AUS","NSW SOP",2004,"For storage only",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17390,310083,"AUS","NSW SOP",2013,"For storage only",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17388,310083,"AUS","NSW SOP",2007,"For storage only",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17387,310083,"AUS","NSW SOP",2005,"For storage only",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17417,310084,"AUS","NSW SOP",2013,"For storage only",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17415,310084,"AUS","NSW SOP",2007,"For storage only",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17416,310084,"AUS","NSW SOP",2010,"For storage only",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17418,310084,"AUS","NSW SOP",2004,"For storage only",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17414,310084,"AUS","NSW SOP",2005,"For storage only",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17425,310086,"AUS","NSW SOP",2004,"For storage only",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17421,310086,"AUS","NSW SOP",2005,"For storage only",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17422,310086,"AUS","NSW SOP",2007,"For storage only",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17423,310086,"AUS","NSW SOP",2010,"For storage only",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17424,310086,"AUS","NSW SOP",2013,"For storage only",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17440,310087,"AUS","NSW SOP",2013,"For storage only",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17437,310087,"AUS","NSW SOP",2005,"For storage only",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17441,310087,"AUS","NSW SOP",2004,"For storage only",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17439,310087,"AUS","NSW SOP",2010,"For storage only",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17438,310087,"AUS","NSW SOP",2007,"For storage only",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17463,310089,"AUS","NSW SOP",2005,"For storage only",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17466,310089,"AUS","NSW SOP",2013,"For storage only",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17467,310089,"AUS","NSW SOP",2004,"For storage only",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17464,310089,"AUS","NSW SOP",2007,"For storage only",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17465,310089,"AUS","NSW SOP",2010,"For storage only",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17470,310090,"AUS","NSW SOP",2010,"For storage only",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17471,310090,"AUS","NSW SOP",2004,"For storage only",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17469,310090,"AUS","NSW SOP",2007,"For storage only",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17472,310090,"AUS","NSW SOP",2013,"For storage only",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17468,310090,"AUS","NSW SOP",2005,"For storage only",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17477,310091,"AUS","NSW SOP",2004,"For storage only",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17474,310091,"AUS","NSW SOP",2007,"For storage only",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17476,310091,"AUS","NSW SOP",2013,"For storage only",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17475,310091,"AUS","NSW SOP",2010,"For storage only",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17473,310091,"AUS","NSW SOP",2005,"For storage only",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17494,310092,"AUS","NSW SOP",2007,"For storage only",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17497,310092,"AUS","NSW SOP",2004,"For storage only",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17496,310092,"AUS","NSW SOP",2013,"For storage only",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17493,310092,"AUS","NSW SOP",2005,"For storage only",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17495,310092,"AUS","NSW SOP",2010,"For storage only",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17501,310093,"AUS","NSW SOP",2013,"For storage only",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17502,310093,"AUS","NSW SOP",2004,"For storage only",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17500,310093,"AUS","NSW SOP",2010,"For storage only",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17499,310093,"AUS","NSW SOP",2007,"For storage only",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17498,310093,"AUS","NSW SOP",2005,"For storage only",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17505,310094,"AUS","NSW SOP",2010,"For storage only",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17503,310094,"AUS","NSW SOP",2005,"For storage only",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17504,310094,"AUS","NSW SOP",2007,"For storage only",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17506,310094,"AUS","NSW SOP",2004,"For storage only",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17507,310094,"AUS","NSW SOP",2013,"For storage only",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17528,310095,"AUS","NSW SOP",2007,"For storage only",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17529,310095,"AUS","NSW SOP",2010,"For storage only",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16490,310095,"AUS","NSW SOP",2004,"For storage only",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17527,310095,"AUS","NSW SOP",2005,"For storage only",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17530,310095,"AUS","NSW SOP",2013,"For storage only",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17535,310097,"AUS","NSW SOP",2013,"For storage only",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17533,310097,"AUS","NSW SOP",2007,"For storage only",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17534,310097,"AUS","NSW SOP",2010,"For storage only",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17536,310097,"AUS","NSW SOP",2004,"For storage only",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17532,310097,"AUS","NSW SOP",2005,"For storage only",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17554,310098,"AUS","NSW SOP",2007,"For storage only",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17553,310098,"AUS","NSW SOP",2005,"For storage only",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17556,310098,"AUS","NSW SOP",2004,"For storage only",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17555,310098,"AUS","NSW SOP",2010,"For storage only",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17557,310098,"AUS","NSW SOP",2013,"For storage only",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17563,310099,"AUS","NSW SOP",2013,"For storage only",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17560,310099,"AUS","NSW SOP",2005,"For storage only",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17561,310099,"AUS","NSW SOP",2007,"For storage only",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17564,310099,"AUS","NSW SOP",2004,"For storage only",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17562,310099,"AUS","NSW SOP",2010,"For storage only",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17580,310100,"AUS","NSW SOP",2004,"For storage only",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17570,310100,"AUS","NSW SOP",2005,"For storage only",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17571,310100,"AUS","NSW SOP",2007,"For storage only",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17572,310100,"AUS","NSW SOP",2010,"For storage only",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17574,310100,"AUS","NSW SOP",2013,"For storage only",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17616,310101,"AUS","NSW SOP",2007,"For storage only",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17618,310101,"AUS","NSW SOP",2013,"For storage only",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17617,310101,"AUS","NSW SOP",2010,"For storage only",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17615,310101,"AUS","NSW SOP",2005,"For storage only",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17619,310101,"AUS","NSW SOP",2004,"For storage only",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17624,310102,"AUS","NSW SOP",2004,"For storage only",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17620,310102,"AUS","NSW SOP",2005,"For storage only",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17623,310102,"AUS","NSW SOP",2013,"For storage only",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17622,310102,"AUS","NSW SOP",2010,"For storage only",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17621,310102,"AUS","NSW SOP",2007,"For storage only",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17665,310103,"AUS","NSW SOP",2004,"For storage only",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17661,310103,"AUS","NSW SOP",2005,"For storage only",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17662,310103,"AUS","NSW SOP",2007,"For storage only",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17663,310103,"AUS","NSW SOP",2010,"For storage only",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17664,310103,"AUS","NSW SOP",2013,"For storage only",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17673,310104,"AUS","NSW SOP",2004,"For storage only",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17670,310104,"AUS","NSW SOP",2007,"For storage only",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17672,310104,"AUS","NSW SOP",2013,"For storage only",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17671,310104,"AUS","NSW SOP",2010,"For storage only",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17669,310104,"AUS","NSW SOP",2005,"For storage only",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17679,310105,"AUS","NSW SOP",2013,"For storage only",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17675,310105,"AUS","NSW SOP",2005,"For storage only",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17678,310105,"AUS","NSW SOP",2004,"For storage only",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17677,310105,"AUS","NSW SOP",2010,"For storage only",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17676,310105,"AUS","NSW SOP",2007,"For storage only",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17691,310106,"AUS","NSW SOP",2013,"For storage only",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17688,310106,"AUS","NSW SOP",2005,"For storage only",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17692,310106,"AUS","NSW SOP",2004,"For storage only",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17690,310106,"AUS","NSW SOP",2010,"For storage only",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17689,310106,"AUS","NSW SOP",2007,"For storage only",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17700,310108,"AUS","NSW SOP",2005,"For storage only",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17712,310108,"AUS","NSW SOP",2013,"For storage only",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17711,310108,"AUS","NSW SOP",2010,"For storage only",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17701,310108,"AUS","NSW SOP",2007,"For storage only",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17699,310108,"AUS","NSW SOP",2004,"For storage only",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17721,310109,"AUS","NSW SOP",2010,"For storage only",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17722,310109,"AUS","NSW SOP",2013,"For storage only",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17723,310109,"AUS","NSW SOP",2004,"For storage only",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17720,310109,"AUS","NSW SOP",2007,"For storage only",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17719,310109,"AUS","NSW SOP",2005,"For storage only",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17747,310110,"AUS","NSW SOP",2007,"For storage only",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17746,310110,"AUS","NSW SOP",2005,"For storage only",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17748,310110,"AUS","NSW SOP",2010,"For storage only",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17750,310110,"AUS","NSW SOP",2004,"For storage only",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17749,310110,"AUS","NSW SOP",2013,"For storage only",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17734,310111,"AUS","NSW SOP",2007,"For storage only",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17733,310111,"AUS","NSW SOP",2005,"For storage only",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17736,310111,"AUS","NSW SOP",2013,"For storage only",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17055,310111,"AUS","NSW SOP",2004,"For storage only",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17735,310111,"AUS","NSW SOP",2010,"For storage only",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17755,310112,"AUS","NSW SOP",2007,"For storage only",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17754,310112,"AUS","NSW SOP",2005,"For storage only",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17756,310112,"AUS","NSW SOP",2010,"For storage only",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17757,310112,"AUS","NSW SOP",2013,"For storage only",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17758,310112,"AUS","NSW SOP",2004,"For storage only",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19889,310113,"AUS","NSW SOP",2010,"For storage only",28,"Werakata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19887,310113,"AUS","NSW SOP",2005,"For storage only",28,"Werakata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19888,310113,"AUS","NSW SOP",2007,"For storage only",28,"Werakata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19890,310113,"AUS","NSW SOP",2013,"For storage only",28,"Werakata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19950,310114,"AUS","NSW SOP",2007,"For storage only",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19951,310114,"AUS","NSW SOP",2010,"For storage only",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19952,310114,"AUS","NSW SOP",2013,"For storage only",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19949,310114,"AUS","NSW SOP",2005,"For storage only",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15594,310114,"AUS","NSW SOP",2004,"For storage only",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20028,310116,"AUS","NSW SOP",2007,"For storage only",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20029,310116,"AUS","NSW SOP",2010,"For storage only",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20031,310116,"AUS","NSW SOP",2004,"For storage only",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20027,310116,"AUS","NSW SOP",2005,"For storage only",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20030,310116,"AUS","NSW SOP",2013,"For storage only",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20067,310118,"AUS","NSW SOP",2013,"For storage only",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20065,310118,"AUS","NSW SOP",2007,"For storage only",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20068,310118,"AUS","NSW SOP",2004,"For storage only",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20064,310118,"AUS","NSW SOP",2005,"For storage only",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20066,310118,"AUS","NSW SOP",2010,"For storage only",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17993,310119,"AUS","NSW SOP",2010,"For storage only",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17992,310119,"AUS","NSW SOP",2007,"For storage only",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17991,310119,"AUS","NSW SOP",2005,"For storage only",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17995,310119,"AUS","NSW SOP",2004,"For storage only",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17994,310119,"AUS","NSW SOP",2013,"For storage only",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18034,310120,"AUS","NSW SOP",2013,"For storage only",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18032,310120,"AUS","NSW SOP",2007,"For storage only",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18031,310120,"AUS","NSW SOP",2005,"For storage only",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18033,310120,"AUS","NSW SOP",2010,"For storage only",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18035,310120,"AUS","NSW SOP",2004,"For storage only",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19707,310121,"AUS","NSW SOP",2010,"For storage only",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19705,310121,"AUS","NSW SOP",2005,"For storage only",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19709,310121,"AUS","NSW SOP",2004,"For storage only",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19708,310121,"AUS","NSW SOP",2013,"For storage only",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19706,310121,"AUS","NSW SOP",2007,"For storage only",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18095,310122,"AUS","NSW SOP",2004,"For storage only",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18094,310122,"AUS","NSW SOP",2013,"For storage only",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18093,310122,"AUS","NSW SOP",2010,"For storage only",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18092,310122,"AUS","NSW SOP",2007,"For storage only",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18091,310122,"AUS","NSW SOP",2005,"For storage only",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18100,310123,"AUS","NSW SOP",2007,"For storage only",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18101,310123,"AUS","NSW SOP",2010,"For storage only",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18099,310123,"AUS","NSW SOP",2005,"For storage only",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18103,310123,"AUS","NSW SOP",2004,"For storage only",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18102,310123,"AUS","NSW SOP",2013,"For storage only",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18117,310124,"AUS","NSW SOP",2010,"For storage only",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18116,310124,"AUS","NSW SOP",2007,"For storage only",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18115,310124,"AUS","NSW SOP",2005,"For storage only",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18118,310124,"AUS","NSW SOP",2013,"For storage only",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18119,310124,"AUS","NSW SOP",2004,"For storage only",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20143,310125,"AUS","NSW SOP",2010,"For storage only",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20142,310125,"AUS","NSW SOP",2007,"For storage only",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20144,310125,"AUS","NSW SOP",2013,"For storage only",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20141,310125,"AUS","NSW SOP",2005,"For storage only",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20145,310125,"AUS","NSW SOP",2004,"For storage only",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18125,310126,"AUS","NSW SOP",2005,"For storage only",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18129,310126,"AUS","NSW SOP",2013,"For storage only",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18128,310126,"AUS","NSW SOP",2004,"For storage only",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18127,310126,"AUS","NSW SOP",2010,"For storage only",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18126,310126,"AUS","NSW SOP",2007,"For storage only",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18134,310127,"AUS","NSW SOP",2004,"For storage only",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18131,310127,"AUS","NSW SOP",2007,"For storage only",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18130,310127,"AUS","NSW SOP",2005,"For storage only",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18133,310127,"AUS","NSW SOP",2013,"For storage only",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18132,310127,"AUS","NSW SOP",2010,"For storage only",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20225,310128,"AUS","NSW SOP",2005,"For storage only",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20226,310128,"AUS","NSW SOP",2007,"For storage only",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20228,310128,"AUS","NSW SOP",2013,"For storage only",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20227,310128,"AUS","NSW SOP",2010,"For storage only",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20229,310128,"AUS","NSW SOP",2004,"For storage only",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20251,310129,"AUS","NSW SOP",2013,"For storage only",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20248,310129,"AUS","NSW SOP",2005,"For storage only",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20249,310129,"AUS","NSW SOP",2007,"For storage only",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20250,310129,"AUS","NSW SOP",2010,"For storage only",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20252,310129,"AUS","NSW SOP",2004,"For storage only",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20255,310130,"AUS","NSW SOP",2010,"For storage only",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20257,310130,"AUS","NSW SOP",2004,"For storage only",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20254,310130,"AUS","NSW SOP",2007,"For storage only",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20256,310130,"AUS","NSW SOP",2013,"For storage only",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20253,310130,"AUS","NSW SOP",2005,"For storage only",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18209,310133,"AUS","NSW SOP",2005,"For storage only",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18210,310133,"AUS","NSW SOP",2007,"For storage only",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18212,310133,"AUS","NSW SOP",2013,"For storage only",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18213,310133,"AUS","NSW SOP",2004,"For storage only",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18211,310133,"AUS","NSW SOP",2010,"For storage only",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18223,310134,"AUS","NSW SOP",2004,"For storage only",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18221,310134,"AUS","NSW SOP",2010,"For storage only",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18220,310134,"AUS","NSW SOP",2007,"For storage only",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18222,310134,"AUS","NSW SOP",2013,"For storage only",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18219,310134,"AUS","NSW SOP",2005,"For storage only",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18241,310135,"AUS","NSW SOP",2005,"For storage only",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18244,310135,"AUS","NSW SOP",2013,"For storage only",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18245,310135,"AUS","NSW SOP",2004,"For storage only",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18242,310135,"AUS","NSW SOP",2007,"For storage only",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18243,310135,"AUS","NSW SOP",2010,"For storage only",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18324,310138,"AUS","NSW SOP",2013,"For storage only",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18325,310138,"AUS","NSW SOP",2004,"For storage only",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18323,310138,"AUS","NSW SOP",2010,"For storage only",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18321,310138,"AUS","NSW SOP",2005,"For storage only",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18322,310138,"AUS","NSW SOP",2007,"For storage only",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18326,310139,"AUS","NSW SOP",2005,"For storage only",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18330,310139,"AUS","NSW SOP",2004,"For storage only",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18329,310139,"AUS","NSW SOP",2013,"For storage only",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18328,310139,"AUS","NSW SOP",2010,"For storage only",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18327,310139,"AUS","NSW SOP",2007,"For storage only",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18345,310140,"AUS","NSW SOP",2004,"For storage only",28,"Mount Dowling","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18400,310141,"AUS","NSW SOP",2007,"For storage only",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18399,310141,"AUS","NSW SOP",2005,"For storage only",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18402,310141,"AUS","NSW SOP",2013,"For storage only",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18406,310141,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18403,310141,"AUS","NSW SOP",2004,"For storage only",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18401,310141,"AUS","NSW SOP",2010,"For storage only",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18423,310142,"AUS","NSW SOP",2010,"For storage only",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18425,310142,"AUS","NSW SOP",2013,"For storage only",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18424,310142,"AUS","NSW SOP",2004,"For storage only",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18421,310142,"AUS","NSW SOP",2005,"For storage only",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18422,310142,"AUS","NSW SOP",2007,"For storage only",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18430,310143,"AUS","NSW SOP",2005,"For storage only",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18431,310143,"AUS","NSW SOP",2007,"For storage only",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18436,310143,"AUS","NSW SOP",2004,"For storage only",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18433,310143,"AUS","NSW SOP",2013,"For storage only",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18432,310143,"AUS","NSW SOP",2010,"For storage only",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18488,310145,"AUS","NSW SOP",2013,"For storage only",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18489,310145,"AUS","NSW SOP",2004,"For storage only",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18485,310145,"AUS","NSW SOP",2005,"For storage only",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18487,310145,"AUS","NSW SOP",2010,"For storage only",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18486,310145,"AUS","NSW SOP",2007,"For storage only",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18492,310146,"AUS","NSW SOP",2010,"For storage only",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18491,310146,"AUS","NSW SOP",2007,"For storage only",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18494,310146,"AUS","NSW SOP",2013,"For storage only",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18493,310146,"AUS","NSW SOP",2004,"For storage only",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18490,310146,"AUS","NSW SOP",2005,"For storage only",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18511,310147,"AUS","NSW SOP",2005,"For storage only",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18509,310147,"AUS","NSW SOP",2004,"For storage only",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18513,310147,"AUS","NSW SOP",2010,"For storage only",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18512,310147,"AUS","NSW SOP",2007,"For storage only",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18514,310147,"AUS","NSW SOP",2013,"For storage only",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18523,310148,"AUS","NSW SOP",2005,"For storage only",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18524,310148,"AUS","NSW SOP",2007,"For storage only",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18526,310148,"AUS","NSW SOP",2013,"For storage only",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18530,310148,"AUS","NSW SOP",2004,"For storage only",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18525,310148,"AUS","NSW SOP",2010,"For storage only",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18559,310149,"AUS","NSW SOP",2013,"For storage only",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18556,310149,"AUS","NSW SOP",2005,"For storage only",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18560,310149,"AUS","NSW SOP",2004,"For storage only",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18558,310149,"AUS","NSW SOP",2010,"For storage only",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18557,310149,"AUS","NSW SOP",2007,"For storage only",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18592,310150,"AUS","NSW SOP",2005,"For storage only",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18595,310150,"AUS","NSW SOP",2013,"For storage only",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18593,310150,"AUS","NSW SOP",2007,"For storage only",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18594,310150,"AUS","NSW SOP",2010,"For storage only",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18600,310150,"AUS","NSW SOP",2004,"For storage only",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18615,310151,"AUS","NSW SOP",2013,"For storage only",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18613,310151,"AUS","NSW SOP",2007,"For storage only",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18614,310151,"AUS","NSW SOP",2010,"For storage only",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18616,310151,"AUS","NSW SOP",2004,"For storage only",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18612,310151,"AUS","NSW SOP",2005,"For storage only",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18685,310153,"AUS","NSW SOP",2007,"For storage only",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18687,310153,"AUS","NSW SOP",2013,"For storage only",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18684,310153,"AUS","NSW SOP",2005,"For storage only",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18686,310153,"AUS","NSW SOP",2010,"For storage only",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18688,310153,"AUS","NSW SOP",2004,"For storage only",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18697,310154,"AUS","NSW SOP",2013,"For storage only",28,"Newington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18695,310154,"AUS","NSW SOP",2005,"For storage only",28,"Newington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18696,310154,"AUS","NSW SOP",2007,"For storage only",28,"Newington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18698,310154,"AUS","NSW SOP",2004,"For storage only",28,"Newington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18702,310155,"AUS","NSW SOP",2007,"For storage only",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18704,310155,"AUS","NSW SOP",2013,"For storage only",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18705,310155,"AUS","NSW SOP",2004,"For storage only",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18701,310155,"AUS","NSW SOP",2005,"For storage only",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18703,310155,"AUS","NSW SOP",2010,"For storage only",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18711,310156,"AUS","NSW SOP",2004,"For storage only",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18709,310156,"AUS","NSW SOP",2010,"For storage only",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18710,310156,"AUS","NSW SOP",2013,"For storage only",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18708,310156,"AUS","NSW SOP",2007,"For storage only",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18707,310156,"AUS","NSW SOP",2005,"For storage only",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18715,310157,"AUS","NSW SOP",2013,"For storage only",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18716,310157,"AUS","NSW SOP",2004,"For storage only",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18713,310157,"AUS","NSW SOP",2007,"For storage only",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18712,310157,"AUS","NSW SOP",2005,"For storage only",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18714,310157,"AUS","NSW SOP",2010,"For storage only",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18728,310158,"AUS","NSW SOP",2004,"For storage only",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18725,310158,"AUS","NSW SOP",2007,"For storage only",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18726,310158,"AUS","NSW SOP",2010,"For storage only",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18727,310158,"AUS","NSW SOP",2013,"For storage only",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18724,310158,"AUS","NSW SOP",2005,"For storage only",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18777,310159,"AUS","NSW SOP",2010,"For storage only",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18776,310159,"AUS","NSW SOP",2007,"For storage only",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18779,310159,"AUS","NSW SOP",2013,"For storage only",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18775,310159,"AUS","NSW SOP",2005,"For storage only",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18778,310159,"AUS","NSW SOP",2004,"For storage only",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18758,310160,"AUS","NSW SOP",2004,"For storage only",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18757,310160,"AUS","NSW SOP",2013,"For storage only",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18756,310160,"AUS","NSW SOP",2010,"For storage only",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18754,310160,"AUS","NSW SOP",2005,"For storage only",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18755,310160,"AUS","NSW SOP",2007,"For storage only",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18795,310161,"AUS","NSW SOP",2013,"For storage only",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18793,310161,"AUS","NSW SOP",2007,"For storage only",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18796,310161,"AUS","NSW SOP",2004,"For storage only",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18794,310161,"AUS","NSW SOP",2010,"For storage only",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18792,310161,"AUS","NSW SOP",2005,"For storage only",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18814,310162,"AUS","NSW SOP",2010,"For storage only",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18812,310162,"AUS","NSW SOP",2005,"For storage only",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19099,310162,"AUS","NSW SOP",2004,"For storage only",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18813,310162,"AUS","NSW SOP",2007,"For storage only",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18815,310162,"AUS","NSW SOP",2013,"For storage only",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18880,310167,"AUS","NSW SOP",2010,"For storage only",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18881,310167,"AUS","NSW SOP",2013,"For storage only",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18878,310167,"AUS","NSW SOP",2005,"For storage only",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18879,310167,"AUS","NSW SOP",2007,"For storage only",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18882,310167,"AUS","NSW SOP",2004,"For storage only",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18962,310168,"AUS","NSW SOP",2004,"For storage only",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18961,310168,"AUS","NSW SOP",2013,"For storage only",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18960,310168,"AUS","NSW SOP",2010,"For storage only",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18958,310168,"AUS","NSW SOP",2005,"For storage only",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18959,310168,"AUS","NSW SOP",2007,"For storage only",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19047,310169,"AUS","NSW SOP",2004,"For storage only",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19042,310169,"AUS","NSW SOP",2013,"For storage only",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19040,310169,"AUS","NSW SOP",2007,"For storage only",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19039,310169,"AUS","NSW SOP",2005,"For storage only",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19041,310169,"AUS","NSW SOP",2010,"For storage only",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19059,310172,"AUS","NSW SOP",2013,"For storage only",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19060,310172,"AUS","NSW SOP",2004,"For storage only",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19057,310172,"AUS","NSW SOP",2007,"For storage only",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19058,310172,"AUS","NSW SOP",2010,"For storage only",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19056,310172,"AUS","NSW SOP",2005,"For storage only",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19063,310173,"AUS","NSW SOP",2005,"For storage only",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19066,310173,"AUS","NSW SOP",2013,"For storage only",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19064,310173,"AUS","NSW SOP",2007,"For storage only",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19065,310173,"AUS","NSW SOP",2010,"For storage only",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19067,310173,"AUS","NSW SOP",2004,"For storage only",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19097,310174,"AUS","NSW SOP",2010,"For storage only",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19098,310174,"AUS","NSW SOP",2013,"For storage only",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19285,310174,"AUS","NSW SOP",2004,"For storage only",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19096,310174,"AUS","NSW SOP",2007,"For storage only",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19095,310174,"AUS","NSW SOP",2005,"For storage only",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19120,310175,"AUS","NSW SOP",2013,"For storage only",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19121,310175,"AUS","NSW SOP",2004,"For storage only",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19118,310175,"AUS","NSW SOP",2007,"For storage only",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19117,310175,"AUS","NSW SOP",2005,"For storage only",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19119,310175,"AUS","NSW SOP",2010,"For storage only",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19160,310178,"AUS","NSW SOP",2005,"For storage only",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19163,310178,"AUS","NSW SOP",2013,"For storage only",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19164,310178,"AUS","NSW SOP",2004,"For storage only",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19161,310178,"AUS","NSW SOP",2007,"For storage only",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19162,310178,"AUS","NSW SOP",2010,"For storage only",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19953,310179,"AUS","NSW SOP",2004,"For storage only",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19184,310179,"AUS","NSW SOP",2005,"For storage only",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19187,310179,"AUS","NSW SOP",2013,"For storage only",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19185,310179,"AUS","NSW SOP",2007,"For storage only",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19186,310179,"AUS","NSW SOP",2010,"For storage only",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19252,310181,"AUS","NSW SOP",2005,"For storage only",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19255,310181,"AUS","NSW SOP",2013,"For storage only",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19254,310181,"AUS","NSW SOP",2010,"For storage only",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19253,310181,"AUS","NSW SOP",2007,"For storage only",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19256,310181,"AUS","NSW SOP",2004,"For storage only",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19246,310182,"AUS","NSW SOP",2007,"For storage only",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19249,310182,"AUS","NSW SOP",2004,"For storage only",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19247,310182,"AUS","NSW SOP",2010,"For storage only",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19248,310182,"AUS","NSW SOP",2013,"For storage only",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19245,310182,"AUS","NSW SOP",2005,"For storage only",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19284,310183,"AUS","NSW SOP",2013,"For storage only",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19283,310183,"AUS","NSW SOP",2010,"For storage only",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19281,310183,"AUS","NSW SOP",2005,"For storage only",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19594,310183,"AUS","NSW SOP",2004,"For storage only",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19282,310183,"AUS","NSW SOP",2007,"For storage only",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19326,310184,"AUS","NSW SOP",2010,"For storage only",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19325,310184,"AUS","NSW SOP",2007,"For storage only",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19328,310184,"AUS","NSW SOP",2004,"For storage only",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19324,310184,"AUS","NSW SOP",2005,"For storage only",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19327,310184,"AUS","NSW SOP",2013,"For storage only",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19381,310185,"AUS","NSW SOP",2004,"For storage only",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19378,310185,"AUS","NSW SOP",2007,"For storage only",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19380,310185,"AUS","NSW SOP",2013,"For storage only",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19379,310185,"AUS","NSW SOP",2010,"For storage only",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19377,310185,"AUS","NSW SOP",2005,"For storage only",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19396,310186,"AUS","NSW SOP",2004,"For storage only",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19390,310186,"AUS","NSW SOP",2010,"For storage only",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19389,310186,"AUS","NSW SOP",2007,"For storage only",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19392,310186,"AUS","NSW SOP",2013,"For storage only",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19388,310186,"AUS","NSW SOP",2005,"For storage only",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19398,310187,"AUS","NSW SOP",2005,"For storage only",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19401,310187,"AUS","NSW SOP",2013,"For storage only",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19399,310187,"AUS","NSW SOP",2007,"For storage only",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19406,310187,"AUS","NSW SOP",2004,"For storage only",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19400,310187,"AUS","NSW SOP",2010,"For storage only",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16546,310188,"AUS","NSW SOP",2004,"For storage only",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19417,310188,"AUS","NSW SOP",2005,"For storage only",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19418,310188,"AUS","NSW SOP",2007,"For storage only",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19419,310188,"AUS","NSW SOP",2010,"For storage only",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19420,310188,"AUS","NSW SOP",2013,"For storage only",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19412,310189,"AUS","NSW SOP",2013,"For storage only",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19411,310189,"AUS","NSW SOP",2004,"For storage only",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19408,310189,"AUS","NSW SOP",2005,"For storage only",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19409,310189,"AUS","NSW SOP",2007,"For storage only",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19410,310189,"AUS","NSW SOP",2010,"For storage only",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19425,310190,"AUS","NSW SOP",2013,"For storage only",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19424,310190,"AUS","NSW SOP",2010,"For storage only",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19426,310190,"AUS","NSW SOP",2004,"For storage only",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19423,310190,"AUS","NSW SOP",2007,"For storage only",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19422,310190,"AUS","NSW SOP",2005,"For storage only",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19429,310191,"AUS","NSW SOP",2010,"For storage only",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19431,310191,"AUS","NSW SOP",2004,"For storage only",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19428,310191,"AUS","NSW SOP",2007,"For storage only",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19430,310191,"AUS","NSW SOP",2013,"For storage only",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19427,310191,"AUS","NSW SOP",2005,"For storage only",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19468,310192,"AUS","NSW SOP",2010,"For storage only",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19466,310192,"AUS","NSW SOP",2005,"For storage only",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19467,310192,"AUS","NSW SOP",2007,"For storage only",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19470,310192,"AUS","NSW SOP",2004,"For storage only",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19469,310192,"AUS","NSW SOP",2013,"For storage only",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19517,310193,"AUS","NSW SOP",2010,"For storage only",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19515,310193,"AUS","NSW SOP",2005,"For storage only",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19518,310193,"AUS","NSW SOP",2013,"For storage only",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19513,310193,"AUS","NSW SOP",2004,"For storage only",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19516,310193,"AUS","NSW SOP",2007,"For storage only",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19529,310194,"AUS","NSW SOP",2010,"For storage only",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19527,310194,"AUS","NSW SOP",2005,"For storage only",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19530,310194,"AUS","NSW SOP",2013,"For storage only",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19531,310194,"AUS","NSW SOP",2004,"For storage only",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19528,310194,"AUS","NSW SOP",2007,"For storage only",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19554,310195,"AUS","NSW SOP",2013,"For storage only",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19551,310195,"AUS","NSW SOP",2005,"For storage only",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19553,310195,"AUS","NSW SOP",2010,"For storage only",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19552,310195,"AUS","NSW SOP",2007,"For storage only",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19555,310195,"AUS","NSW SOP",2004,"For storage only",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19599,310196,"AUS","NSW SOP",2007,"For storage only",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19601,310196,"AUS","NSW SOP",2013,"For storage only",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19598,310196,"AUS","NSW SOP",2005,"For storage only",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19600,310196,"AUS","NSW SOP",2010,"For storage only",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19602,310196,"AUS","NSW SOP",2004,"For storage only",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19616,310197,"AUS","NSW SOP",2010,"For storage only",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19618,310197,"AUS","NSW SOP",2004,"For storage only",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19617,310197,"AUS","NSW SOP",2013,"For storage only",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19615,310197,"AUS","NSW SOP",2007,"For storage only",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19614,310197,"AUS","NSW SOP",2005,"For storage only",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19640,310198,"AUS","NSW SOP",2010,"For storage only",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19638,310198,"AUS","NSW SOP",2005,"For storage only",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19642,310198,"AUS","NSW SOP",2004,"For storage only",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19641,310198,"AUS","NSW SOP",2013,"For storage only",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19639,310198,"AUS","NSW SOP",2007,"For storage only",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19694,310199,"AUS","NSW SOP",2010,"For storage only",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19696,310199,"AUS","NSW SOP",2004,"For storage only",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19695,310199,"AUS","NSW SOP",2013,"For storage only",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19693,310199,"AUS","NSW SOP",2007,"For storage only",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19692,310199,"AUS","NSW SOP",2005,"For storage only",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19716,310202,"AUS","NSW SOP",2005,"For storage only",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19720,310202,"AUS","NSW SOP",2004,"For storage only",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19717,310202,"AUS","NSW SOP",2007,"For storage only",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19718,310202,"AUS","NSW SOP",2010,"For storage only",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19719,310202,"AUS","NSW SOP",2013,"For storage only",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19740,310203,"AUS","NSW SOP",2010,"For storage only",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19739,310203,"AUS","NSW SOP",2007,"For storage only",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19741,310203,"AUS","NSW SOP",2004,"For storage only",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19742,310203,"AUS","NSW SOP",2013,"For storage only",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19738,310203,"AUS","NSW SOP",2005,"For storage only",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19750,310204,"AUS","NSW SOP",2007,"For storage only",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19752,310204,"AUS","NSW SOP",2013,"For storage only",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19749,310204,"AUS","NSW SOP",2005,"For storage only",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19751,310204,"AUS","NSW SOP",2010,"For storage only",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19753,310204,"AUS","NSW SOP",2004,"For storage only",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19764,310206,"AUS","NSW SOP",2005,"For storage only",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19766,310206,"AUS","NSW SOP",2010,"For storage only",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19768,310206,"AUS","NSW SOP",2004,"For storage only",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19765,310206,"AUS","NSW SOP",2007,"For storage only",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19767,310206,"AUS","NSW SOP",2013,"For storage only",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19789,310207,"AUS","NSW SOP",2004,"For storage only",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19785,310207,"AUS","NSW SOP",2005,"For storage only",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19786,310207,"AUS","NSW SOP",2007,"For storage only",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19788,310207,"AUS","NSW SOP",2013,"For storage only",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19787,310207,"AUS","NSW SOP",2010,"For storage only",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19795,310208,"AUS","NSW SOP",2005,"For storage only",28,"Wanna Wanna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19798,310208,"AUS","NSW SOP",2013,"For storage only",28,"Wanna Wanna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19796,310208,"AUS","NSW SOP",2007,"For storage only",28,"Wanna Wanna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19797,310208,"AUS","NSW SOP",2010,"For storage only",28,"Wanna Wanna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19801,310209,"AUS","NSW SOP",2007,"For storage only",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19802,310209,"AUS","NSW SOP",2010,"For storage only",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19803,310209,"AUS","NSW SOP",2013,"For storage only",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19804,310209,"AUS","NSW SOP",2004,"For storage only",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19800,310209,"AUS","NSW SOP",2005,"For storage only",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19815,310210,"AUS","NSW SOP",2013,"For storage only",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19814,310210,"AUS","NSW SOP",2010,"For storage only",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19813,310210,"AUS","NSW SOP",2007,"For storage only",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19816,310210,"AUS","NSW SOP",2004,"For storage only",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19812,310210,"AUS","NSW SOP",2005,"For storage only",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19846,310211,"AUS","NSW SOP",2007,"For storage only",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19848,310211,"AUS","NSW SOP",2013,"For storage only",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19847,310211,"AUS","NSW SOP",2010,"For storage only",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19849,310211,"AUS","NSW SOP",2004,"For storage only",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19845,310211,"AUS","NSW SOP",2005,"For storage only",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15494,311178,"AUS","NSW SOP",2004,"For storage only",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15439,311178,"AUS","NSW SOP",2010,"For storage only",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15438,311178,"AUS","NSW SOP",2007,"For storage only",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15437,311178,"AUS","NSW SOP",2005,"For storage only",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15440,311178,"AUS","NSW SOP",2013,"For storage only",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15481,311187,"AUS","NSW SOP",2007,"For storage only",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15480,311187,"AUS","NSW SOP",2005,"For storage only",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15484,311187,"AUS","NSW SOP",2013,"For storage only",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15482,311187,"AUS","NSW SOP",2010,"For storage only",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15488,311187,"AUS","NSW SOP",2004,"For storage only",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15547,311196,"AUS","NSW SOP",2013,"For storage only",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15543,311196,"AUS","NSW SOP",2005,"For storage only",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15546,311196,"AUS","NSW SOP",2004,"For storage only",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15544,311196,"AUS","NSW SOP",2007,"For storage only",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15545,311196,"AUS","NSW SOP",2010,"For storage only",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15604,311220,"AUS","Victorian SOP",2010,"For storage only",28,"Bemm River S.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15603,311220,"AUS","Victorian SOP",2005,"For storage only",28,"Bemm River S.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15605,311220,"AUS","Victorian SOP",2013,"For storage only",28,"Bemm River S.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15337,311243,"AUS","Birdlife IBA",2008,"For storage only",28,"Black Pyramid Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15759,311246,"AUS","Victorian SOP",2005,"For storage only",28,"Blond Bay G.L.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15677,311337,"AUS","Victorian SOP",2005,"For storage only",28,"Big Reedy Lagoon W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15676,311337,"AUS","Victorian SOP",2010,"For storage only",28,"Big Reedy Lagoon W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16143,311340,"AUS","Victorian SOP",2005,"For storage only",28,"Burrowa - Pine Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16145,311340,"AUS","Victorian SOP",2013,"For storage only",28,"Burrowa - Pine Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16144,311340,"AUS","Victorian SOP",2010,"For storage only",28,"Burrowa - Pine Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16492,311457,"AUS","Victorian SOP",2010,"For storage only",28,"Cooriemungle Creek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16491,311457,"AUS","Victorian SOP",2005,"For storage only",28,"Cooriemungle Creek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16493,311457,"AUS","Victorian SOP",2013,"For storage only",28,"Cooriemungle Creek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16568,311499,"AUS","Victorian SOP",2005,"For storage only",28,"Craigieburn Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16569,311499,"AUS","Victorian SOP",2013,"For storage only",28,"Craigieburn Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16567,311499,"AUS","Victorian SOP",2010,"For storage only",28,"Craigieburn Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16637,311522,"AUS","Birdlife IBA",2008,"For storage only",28,"Curtis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16660,311539,"AUS","Victorian SOP",2013,"For storage only",28,"Dalyenong N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16658,311539,"AUS","Victorian SOP",2010,"For storage only",28,"Dalyenong N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16659,311539,"AUS","Victorian SOP",2005,"For storage only",28,"Dalyenong N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16724,311587,"AUS","Victorian SOP",2010,"For storage only",28,"Derrimut Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16726,311587,"AUS","Victorian SOP",2013,"For storage only",28,"Derrimut Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16725,311587,"AUS","Victorian SOP",2005,"For storage only",28,"Derrimut Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16861,311659,"AUS","Victorian SOP",2010,"For storage only",28,"Enfield","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16860,311659,"AUS","Victorian SOP",2005,"For storage only",28,"Enfield","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16862,311659,"AUS","Victorian SOP",2013,"For storage only",28,"Enfield","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17353,311672,"AUS","Victorian SOP",2010,"For storage only",28,"Hughes Creek Hill B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17354,311672,"AUS","Victorian SOP",2005,"For storage only",28,"Hughes Creek Hill B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17355,311672,"AUS","Victorian SOP",2013,"For storage only",28,"Hughes Creek Hill B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17398,311677,"AUS","Victorian SOP",2005,"For storage only",28,"Inglewood N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17397,311677,"AUS","Victorian SOP",2010,"For storage only",28,"Inglewood N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17399,311677,"AUS","Victorian SOP",2013,"For storage only",28,"Inglewood N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18111,311718,"AUS","Victorian SOP",2005,"For storage only",28,"Meereek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18112,311718,"AUS","Victorian SOP",2013,"For storage only",28,"Meereek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19451,311828,"AUS","Victorian SOP",2005,"For storage only",28,"Terrick Terrick National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19453,311828,"AUS","Victorian SOP",2013,"For storage only",28,"Terrick Terrick National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19452,311828,"AUS","Victorian SOP",2010,"For storage only",28,"Terrick Terrick National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19413,311868,"AUS","Birdlife IBA",2008,"For storage only",28,"Tamar","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17448,311880,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Jardine River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17447,311880,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Jardine River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17408,311882,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17842,311888,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Lamington","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18538,311889,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19244,311889,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19358,311892,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Sundown","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19357,311892,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Sundown","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19921,311895,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"White Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19920,311895,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"White Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18916,311946,"AUS","NSW SOP",2010,"For storage only",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18915,311946,"AUS","NSW SOP",2007,"For storage only",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18914,311946,"AUS","NSW SOP",2005,"For storage only",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18918,311946,"AUS","NSW SOP",2013,"For storage only",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18917,311946,"AUS","NSW SOP",2004,"For storage only",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18065,311947,"AUS","NSW SOP",2004,"For storage only",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18064,311947,"AUS","NSW SOP",2013,"For storage only",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18061,311947,"AUS","NSW SOP",2005,"For storage only",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18062,311947,"AUS","NSW SOP",2007,"For storage only",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18063,311947,"AUS","NSW SOP",2010,"For storage only",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19671,311949,"AUS","NSW SOP",2010,"For storage only",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19670,311949,"AUS","NSW SOP",2007,"For storage only",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19673,311949,"AUS","NSW SOP",2004,"For storage only",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19672,311949,"AUS","NSW SOP",2013,"For storage only",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19669,311949,"AUS","NSW SOP",2005,"For storage only",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19485,311950,"AUS","NSW SOP",2004,"For storage only",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19483,311950,"AUS","NSW SOP",2010,"For storage only",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19482,311950,"AUS","NSW SOP",2007,"For storage only",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19481,311950,"AUS","NSW SOP",2005,"For storage only",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19484,311950,"AUS","NSW SOP",2013,"For storage only",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18829,311951,"AUS","NSW SOP",2010,"For storage only",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18831,311951,"AUS","NSW SOP",2004,"For storage only",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18828,311951,"AUS","NSW SOP",2007,"For storage only",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18827,311951,"AUS","NSW SOP",2005,"For storage only",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18830,311951,"AUS","NSW SOP",2013,"For storage only",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17940,311952,"AUS","NSW SOP",2004,"For storage only",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17937,311952,"AUS","NSW SOP",2007,"For storage only",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17936,311952,"AUS","NSW SOP",2005,"For storage only",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17938,311952,"AUS","NSW SOP",2010,"For storage only",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17939,311952,"AUS","NSW SOP",2013,"For storage only",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13921,312243,"USA","Birdlife IBA",2009,"For storage only",28,"Longline","Protected Species Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21,312886,"ARE","METT",2016,"For storage only",1,"Jabal Ali","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -20596,312901,"MMR","Asean MEE",2012,"For storage only",28,"Indawgyi Lake","Wildlife Sanctuary and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13251,312937,"THA","Birdlife IBA",2007,"For storage only",28,"Doi Phukha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13267,312938,"THA","Birdlife IBA",2007,"For storage only",28,"Mae Phang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13273,312947,"THA","Birdlife IBA",2007,"For storage only",28,"Namtok Huai Yang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13265,312949,"THA","METT",2005,"For storage only",28,"Kuiburi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20,312960,"ARE","METT",2016,"For storage only",1,"Hatta","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -11526,312963,"EGY","RAPPAM",2006,"For storage only",28,"Taba","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11514,312964,"EGY","RAPPAM",2006,"For storage only",28,"Petrified Forest","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11542,312966,"EGY","RAPPAM",2006,"For storage only",28,"Zaranik","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11505,312969,"EGY","RAPPAM",2006,"For storage only",28,"Ashtum El Gamel","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11532,312975,"EGY","RAPPAM",2006,"For storage only",28,"Wadi Degla","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11531,312975,"EGY","METT",2009,"For storage only",28,"Wadi Degla","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11508,312977,"EGY","RAPPAM",2006,"For storage only",28,"Elba","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11504,313029,"EGY","RAPPAM",2006,"For storage only",28,"El Ahrash","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9458,313048,"GEO","RAPPAM",2009,"For storage only",20,"Bbatsara","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9439,313053,"GEO","RAPPAM",2012,"For storage only",20,"Tusheti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9502,313053,"GEO","METT",2017,"For storage only",20,"Tusheti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9456,313053,"GEO","RAPPAM",2009,"For storage only",20,"Tusheti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -1216,313055,"GTM","METT",2008,"For storage only",16,"Acatenango","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1217,313055,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Acatenango","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -11737,313089,"JOR","METT",2011,"For storage only",28,"Qatar Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11736,313089,"JOR","METT",2006,"For storage only",28,"Qatar Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11741,313091,"JOR","METT",2011,"For storage only",28,"Yarmouk Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11742,313091,"JOR","METT",0,"For storage only",28,"Yarmouk Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11740,313091,"JOR","METT",2006,"For storage only",28,"Yarmouk Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13758,313109,"UGA","Birdlife IBA",2001,"For storage only",28,"Mgahinga Gorilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11237,313125,"CPV","METT",2006,"For storage only",28,"Monte Gordo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11239,313125,"CPV","METT",2009,"For storage only",28,"Monte Gordo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11238,313125,"CPV","METT",2007,"For storage only",28,"Monte Gordo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11242,313160,"CPV","METT",2007,"For storage only",28,"Serra da Malagueta","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11240,313160,"CPV","METT",2009,"For storage only",28,"Serra da Malagueta","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11241,313160,"CPV","METT",2006,"For storage only",28,"Serra da Malagueta","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11236,313162,"CPV","METT",2009,"For storage only",28,"Bordeira, Chã das Caldeiras e Pico Novo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11993,313184,"MNG","METT",2005,"For storage only",28,"Develiin aral","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11994,313184,"MNG","METT",2012,"For storage only",28,"Develiin aral","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12018,313186,"MNG","METT",2012,"For storage only",28,"Onon - Balj /A/","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12021,313187,"MNG","METT",2005,"For storage only",28,"Siilxem nuruu /A/, /B/","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12023,313188,"MNG","RAPPAM",2005,"For storage only",28,"Tarvagatai nuruu","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12025,313189,"MNG","METT",2005,"For storage only",28,"Cambagarav mountain","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12026,313189,"MNG","RAPPAM",2005,"For storage only",28,"Cambagarav mountain","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12024,313189,"MNG","METT",2012,"For storage only",28,"Cambagarav mountain","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9452,313205,"GEO","RAPPAM",2012,"For storage only",20,"Kobuleti","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9494,313205,"GEO","RAPPAM",2009,"For storage only",20,"Kobuleti","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9561,313206,"GEO","METT",2015,"For storage only",20,"Chachuna","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9491,313206,"GEO","RAPPAM",2009,"For storage only",20,"Chachuna","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9451,313206,"GEO","RAPPAM",2012,"For storage only",20,"Chachuna","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9488,313208,"GEO","RAPPAM",2009,"For storage only",20,"Gardabani","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9490,313209,"GEO","RAPPAM",2009,"For storage only",20,"Iori","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9492,313210,"GEO","RAPPAM",2009,"For storage only",20,"Katsoburi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9442,313211,"GEO","RAPPAM",2012,"For storage only",20,"Kobuleti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9465,313211,"GEO","RAPPAM",2009,"For storage only",20,"Kobuleti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9489,313212,"GEO","RAPPAM",2009,"For storage only",20,"Khorugi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -14918,313251,"IRN","Birdlife IBA",1994,"For storage only",28,"Bojagh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14934,313261,"IRN","Birdlife IBA",1994,"For storage only",28,"Urumieh lake","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12246,313264,"NPL","RAPPAM",2002,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14827,313354,"GNQ","METT",0,"For storage only",28,"Caldera de Luba","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28067,313361,"GNQ","METT",0,"For storage only",28,"Rio Campo","Natural Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11509,313379,"EGY","RAPPAM",2006,"For storage only",28,"Hasana Dome","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11539,313380,"EGY","RAPPAM",2006,"For storage only",28,"Wadi Sannur Cave","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11215,313401,"COG","METT",2011,"For storage only",28,"Conkouati-Douli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11214,313401,"COG","METT",2007,"For storage only",28,"Conkouati-Douli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11213,313401,"COG","RAPPAM",2012,"For storage only",28,"Conkouati-Douli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10596,313401,"COG","IMET",2016,"For storage only",27,"Conkouati-Douli","National Park","JRC IMET information","JRC",2018,"English",FALSE -14939,313406,"IRN","Birdlife IBA",1994,"For storage only",28,"Hara-e Roud-e Gaz","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15157,313424,"BLZ","Belize MEE",2006,"For storage only",29,"Caye Caulker Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15158,313424,"BLZ","Belize MEE",2009,"For storage only",29,"Caye Caulker Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15203,313426,"BLZ","Belize MEE",2009,"For storage only",29,"Gra Gra Lagoon National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15202,313426,"BLZ","Belize MEE",2006,"For storage only",29,"Gra Gra Lagoon National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15289,313429,"BLZ","Belize MEE",2006,"For storage only",29,"Spanish Creek Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15290,313429,"BLZ","Belize MEE",2009,"For storage only",29,"Spanish Creek Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15295,313431,"BLZ","Belize MEE",2006,"For storage only",29,"Swallow Caye Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15296,313431,"BLZ","Belize MEE",2009,"For storage only",29,"Swallow Caye Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15304,313433,"BLZ","Belize MEE",2009,"For storage only",29,"Thousand Foot Falls Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15303,313433,"BLZ","Belize MEE",2006,"For storage only",29,"Thousand Foot Falls Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -11873,313443,"KHM","METT",2010,"For storage only",28,"Preah Vihear","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28290,313443,"KHM","METT",2012,"For storage only",28,"Preah Vihear","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11874,313443,"KHM","RAPPAM",2004,"For storage only",28,"Preah Vihear","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11862,313444,"KHM","METT",2009,"For storage only",28,"Mondulkiri","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11852,313445,"KHM","Birdlife IBA",2005,"For storage only",28,"Central Cardamom Mountains","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11844,313446,"KHM","Birdlife IBA",2007,"For storage only",28,"Ang Trapeng Thmor","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11864,313447,"KHM","RAPPAM",2004,"For storage only",28,"Phnom Aural","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11848,313448,"KHM","RAPPAM",2004,"For storage only",28,"Boeng Tonle Chhmar","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11886,313449,"KHM","RAPPAM",2004,"For storage only",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11884,313449,"KHM","METT",2009,"For storage only",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11883,313449,"KHM","METT",2005,"For storage only",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11885,313449,"KHM","METT",2010,"For storage only",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11861,313449,"KHM","Birdlife IBA",2007,"For storage only",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11877,313450,"KHM","RAPPAM",2004,"For storage only",28,"Prek Toal","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11878,313450,"KHM","METT",2005,"For storage only",28,"Prek Toal","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11876,313450,"KHM","METT",2010,"For storage only",28,"Prek Toal","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11875,313450,"KHM","METT",2009,"For storage only",28,"Prek Toal","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10726,313470,"AZE","METT",2005,"For storage only",28,"Hirkan National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28193,313494,"COG","METT",2009,"For storage only",28,"Lac Télé","Community Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11217,313494,"COG","RAPPAM",2012,"For storage only",28,"Lac Télé","Community Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11219,313494,"COG","Birdlife IBA",2007,"For storage only",28,"Lac Télé","Community Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20671,313499,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngardok","Nature Reserve","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -13095,313505,"SGP","Birdlife IBA",2012,"For storage only",28,"Central Catchment Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9531,313539,"GEO","METT",2017,"For storage only",20,"Ktsia-Tabatskuri","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9510,313540,"GEO","METT",2017,"For storage only",20,"Tetrobi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9501,313541,"GEO","PANPARKS",2007,"For storage only",20,"Nedzvi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9532,313541,"GEO","METT",2017,"For storage only",20,"Nedzvi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9493,313541,"GEO","RAPPAM",2009,"For storage only",20,"Nedzvi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -18090,313542,"AUS","NTMEE",2013,"For storage only",28,"Mary River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15096,313617,"PHL","Asean MEE",2012,"For storage only",28,"Mount Iglit Baco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -525,313631,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Costa Dos Corais","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -244,313631,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Costa Dos Corais","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -15538,313669,"AUS","NSW SOP",2004,"For storage only",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15530,313669,"AUS","NSW SOP",2005,"For storage only",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15532,313669,"AUS","NSW SOP",2010,"For storage only",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15533,313669,"AUS","NSW SOP",2013,"For storage only",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15531,313669,"AUS","NSW SOP",2007,"For storage only",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16041,313671,"AUS","NSW SOP",2013,"For storage only",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16038,313671,"AUS","NSW SOP",2005,"For storage only",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16039,313671,"AUS","NSW SOP",2007,"For storage only",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16040,313671,"AUS","NSW SOP",2010,"For storage only",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16042,313671,"AUS","NSW SOP",2004,"For storage only",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16257,313672,"AUS","NSW SOP",2013,"For storage only",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16272,313672,"AUS","NSW SOP",2004,"For storage only",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16255,313672,"AUS","NSW SOP",2007,"For storage only",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16256,313672,"AUS","NSW SOP",2010,"For storage only",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16254,313672,"AUS","NSW SOP",2005,"For storage only",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16319,313673,"AUS","NSW SOP",2010,"For storage only",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16318,313673,"AUS","NSW SOP",2007,"For storage only",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16317,313673,"AUS","NSW SOP",2005,"For storage only",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16818,313673,"AUS","NSW SOP",2004,"For storage only",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16320,313673,"AUS","NSW SOP",2013,"For storage only",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15731,313674,"AUS","NSW SOP",2004,"For storage only",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16486,313674,"AUS","NSW SOP",2005,"For storage only",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16488,313674,"AUS","NSW SOP",2010,"For storage only",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16489,313674,"AUS","NSW SOP",2013,"For storage only",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16487,313674,"AUS","NSW SOP",2007,"For storage only",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17017,313675,"AUS","NSW SOP",2007,"For storage only",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17019,313675,"AUS","NSW SOP",2013,"For storage only",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17020,313675,"AUS","NSW SOP",2004,"For storage only",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17016,313675,"AUS","NSW SOP",2005,"For storage only",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17018,313675,"AUS","NSW SOP",2010,"For storage only",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17307,313676,"AUS","NSW SOP",2004,"For storage only",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17305,313676,"AUS","NSW SOP",2010,"For storage only",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17303,313676,"AUS","NSW SOP",2005,"For storage only",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17306,313676,"AUS","NSW SOP",2013,"For storage only",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17304,313676,"AUS","NSW SOP",2007,"For storage only",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18177,313677,"AUS","NSW SOP",2010,"For storage only",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18175,313677,"AUS","NSW SOP",2005,"For storage only",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18179,313677,"AUS","NSW SOP",2004,"For storage only",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18178,313677,"AUS","NSW SOP",2013,"For storage only",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18176,313677,"AUS","NSW SOP",2007,"For storage only",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18198,313678,"AUS","NSW SOP",2010,"For storage only",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18196,313678,"AUS","NSW SOP",2005,"For storage only",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18199,313678,"AUS","NSW SOP",2013,"For storage only",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18203,313678,"AUS","NSW SOP",2004,"For storage only",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18197,313678,"AUS","NSW SOP",2007,"For storage only",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18597,313679,"AUS","NSW SOP",2007,"For storage only",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15441,313679,"AUS","NSW SOP",2004,"For storage only",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18598,313679,"AUS","NSW SOP",2010,"For storage only",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18599,313679,"AUS","NSW SOP",2013,"For storage only",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18596,313679,"AUS","NSW SOP",2005,"For storage only",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18782,313680,"AUS","NSW SOP",2005,"For storage only",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18783,313680,"AUS","NSW SOP",2007,"For storage only",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18784,313680,"AUS","NSW SOP",2010,"For storage only",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18786,313680,"AUS","NSW SOP",2004,"For storage only",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18785,313680,"AUS","NSW SOP",2013,"For storage only",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19591,313681,"AUS","NSW SOP",2007,"For storage only",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19590,313681,"AUS","NSW SOP",2005,"For storage only",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19592,313681,"AUS","NSW SOP",2010,"For storage only",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19593,313681,"AUS","NSW SOP",2013,"For storage only",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18601,313681,"AUS","NSW SOP",2004,"For storage only",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20167,313682,"AUS","NSW SOP",2010,"For storage only",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20177,313682,"AUS","NSW SOP",2004,"For storage only",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20168,313682,"AUS","NSW SOP",2013,"For storage only",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20166,313682,"AUS","NSW SOP",2007,"For storage only",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20165,313682,"AUS","NSW SOP",2005,"For storage only",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28159,313683,"AUS","METT",2011,"For storage only",28,"Bird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15734,313684,"AUS","NSW SOP",2010,"For storage only",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15733,313684,"AUS","NSW SOP",2007,"For storage only",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15736,313684,"AUS","NSW SOP",2004,"For storage only",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15735,313684,"AUS","NSW SOP",2013,"For storage only",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15732,313684,"AUS","NSW SOP",2005,"For storage only",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16078,313686,"AUS","NSW SOP",2010,"For storage only",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16084,313686,"AUS","NSW SOP",2004,"For storage only",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16076,313686,"AUS","NSW SOP",2005,"For storage only",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16086,313686,"AUS","NSW SOP",2013,"For storage only",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16077,313686,"AUS","NSW SOP",2007,"For storage only",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16279,313687,"AUS","NSW SOP",2007,"For storage only",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16278,313687,"AUS","NSW SOP",2005,"For storage only",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16281,313687,"AUS","NSW SOP",2013,"For storage only",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16282,313687,"AUS","NSW SOP",2004,"For storage only",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16280,313687,"AUS","NSW SOP",2010,"For storage only",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16329,313688,"AUS","NSW SOP",2010,"For storage only",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16332,313688,"AUS","NSW SOP",2004,"For storage only",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16327,313688,"AUS","NSW SOP",2005,"For storage only",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16328,313688,"AUS","NSW SOP",2007,"For storage only",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16330,313688,"AUS","NSW SOP",2013,"For storage only",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17259,313689,"AUS","NSW SOP",2004,"For storage only",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17249,313689,"AUS","NSW SOP",2005,"For storage only",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17250,313689,"AUS","NSW SOP",2007,"For storage only",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17251,313689,"AUS","NSW SOP",2010,"For storage only",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17258,313689,"AUS","NSW SOP",2013,"For storage only",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17627,313690,"AUS","NSW SOP",2010,"For storage only",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17629,313690,"AUS","NSW SOP",2004,"For storage only",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17626,313690,"AUS","NSW SOP",2007,"For storage only",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17628,313690,"AUS","NSW SOP",2013,"For storage only",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17625,313690,"AUS","NSW SOP",2005,"For storage only",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17769,313691,"AUS","NSW SOP",2004,"For storage only",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17763,313691,"AUS","NSW SOP",2010,"For storage only",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17764,313691,"AUS","NSW SOP",2013,"For storage only",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17762,313691,"AUS","NSW SOP",2007,"For storage only",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17761,313691,"AUS","NSW SOP",2005,"For storage only",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17833,313692,"AUS","NSW SOP",2013,"For storage only",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17831,313692,"AUS","NSW SOP",2007,"For storage only",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17830,313692,"AUS","NSW SOP",2005,"For storage only",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17834,313692,"AUS","NSW SOP",2004,"For storage only",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17832,313692,"AUS","NSW SOP",2010,"For storage only",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17972,313693,"AUS","NSW SOP",2013,"For storage only",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17970,313693,"AUS","NSW SOP",2007,"For storage only",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17973,313693,"AUS","NSW SOP",2004,"For storage only",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17969,313693,"AUS","NSW SOP",2005,"For storage only",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17971,313693,"AUS","NSW SOP",2010,"For storage only",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18088,313694,"AUS","NSW SOP",2013,"For storage only",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18085,313694,"AUS","NSW SOP",2005,"For storage only",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18089,313694,"AUS","NSW SOP",2004,"For storage only",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18086,313694,"AUS","NSW SOP",2007,"For storage only",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18087,313694,"AUS","NSW SOP",2010,"For storage only",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18124,313695,"AUS","NSW SOP",2004,"For storage only",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18120,313695,"AUS","NSW SOP",2005,"For storage only",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18121,313695,"AUS","NSW SOP",2007,"For storage only",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18123,313695,"AUS","NSW SOP",2013,"For storage only",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18122,313695,"AUS","NSW SOP",2010,"For storage only",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18140,313696,"AUS","NSW SOP",2010,"For storage only",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18141,313696,"AUS","NSW SOP",2013,"For storage only",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18139,313696,"AUS","NSW SOP",2007,"For storage only",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18138,313696,"AUS","NSW SOP",2005,"For storage only",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18142,313696,"AUS","NSW SOP",2004,"For storage only",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18207,313697,"AUS","NSW SOP",2013,"For storage only",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18206,313697,"AUS","NSW SOP",2010,"For storage only",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18205,313697,"AUS","NSW SOP",2007,"For storage only",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18204,313697,"AUS","NSW SOP",2005,"For storage only",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18208,313697,"AUS","NSW SOP",2004,"For storage only",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18261,313698,"AUS","NSW SOP",2010,"For storage only",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18263,313698,"AUS","NSW SOP",2004,"For storage only",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18259,313698,"AUS","NSW SOP",2005,"For storage only",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18260,313698,"AUS","NSW SOP",2007,"For storage only",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18262,313698,"AUS","NSW SOP",2013,"For storage only",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18887,313699,"AUS","NSW SOP",2004,"For storage only",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18883,313699,"AUS","NSW SOP",2005,"For storage only",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18884,313699,"AUS","NSW SOP",2007,"For storage only",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18886,313699,"AUS","NSW SOP",2013,"For storage only",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18885,313699,"AUS","NSW SOP",2010,"For storage only",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18909,313700,"AUS","NSW SOP",2010,"For storage only",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18907,313700,"AUS","NSW SOP",2005,"For storage only",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18910,313700,"AUS","NSW SOP",2013,"For storage only",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18911,313700,"AUS","NSW SOP",2004,"For storage only",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18908,313700,"AUS","NSW SOP",2007,"For storage only",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19051,313701,"AUS","NSW SOP",2013,"For storage only",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19052,313701,"AUS","NSW SOP",2004,"For storage only",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19048,313701,"AUS","NSW SOP",2005,"For storage only",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19050,313701,"AUS","NSW SOP",2010,"For storage only",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19049,313701,"AUS","NSW SOP",2007,"For storage only",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15327,313747,"AUS","Birdlife IBA",2008,"For storage only",28,"Adele Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15764,313761,"AUS","NSW SOP",2010,"For storage only",28,"Blue Gum Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15765,313761,"AUS","NSW SOP",2013,"For storage only",28,"Blue Gum Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15763,313761,"AUS","NSW SOP",2007,"For storage only",28,"Blue Gum Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19346,313782,"AUS","NSW SOP",2007,"For storage only",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19349,313782,"AUS","NSW SOP",2004,"For storage only",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19348,313782,"AUS","NSW SOP",2013,"For storage only",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19347,313782,"AUS","NSW SOP",2010,"For storage only",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19345,313782,"AUS","NSW SOP",2005,"For storage only",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19933,313783,"AUS","NSW SOP",2010,"For storage only",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19931,313783,"AUS","NSW SOP",2005,"For storage only",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19934,313783,"AUS","NSW SOP",2013,"For storage only",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19935,313783,"AUS","NSW SOP",2004,"For storage only",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19932,313783,"AUS","NSW SOP",2007,"For storage only",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20000,313784,"AUS","NSW SOP",2010,"For storage only",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20002,313784,"AUS","NSW SOP",2004,"For storage only",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19999,313784,"AUS","NSW SOP",2007,"For storage only",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19998,313784,"AUS","NSW SOP",2005,"For storage only",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20001,313784,"AUS","NSW SOP",2013,"For storage only",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20006,313785,"AUS","NSW SOP",2013,"For storage only",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20007,313785,"AUS","NSW SOP",2004,"For storage only",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20003,313785,"AUS","NSW SOP",2005,"For storage only",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20004,313785,"AUS","NSW SOP",2007,"For storage only",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20005,313785,"AUS","NSW SOP",2010,"For storage only",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20073,313786,"AUS","NSW SOP",2007,"For storage only",28,"Woollamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20075,313786,"AUS","NSW SOP",2013,"For storage only",28,"Woollamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20074,313786,"AUS","NSW SOP",2010,"For storage only",28,"Woollamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20072,313786,"AUS","NSW SOP",2005,"For storage only",28,"Woollamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20117,313788,"AUS","NSW SOP",2013,"For storage only",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20118,313788,"AUS","NSW SOP",2004,"For storage only",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20116,313788,"AUS","NSW SOP",2010,"For storage only",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20114,313788,"AUS","NSW SOP",2005,"For storage only",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20115,313788,"AUS","NSW SOP",2007,"For storage only",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20125,313789,"AUS","NSW SOP",2013,"For storage only",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20122,313789,"AUS","NSW SOP",2005,"For storage only",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20123,313789,"AUS","NSW SOP",2007,"For storage only",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20126,313789,"AUS","NSW SOP",2004,"For storage only",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20124,313789,"AUS","NSW SOP",2010,"For storage only",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20170,313790,"AUS","NSW SOP",2007,"For storage only",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20178,313790,"AUS","NSW SOP",2004,"For storage only",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20173,313790,"AUS","NSW SOP",2013,"For storage only",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20171,313790,"AUS","NSW SOP",2010,"For storage only",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20169,313790,"AUS","NSW SOP",2005,"For storage only",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20180,313791,"AUS","NSW SOP",2005,"For storage only",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20183,313791,"AUS","NSW SOP",2013,"For storage only",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20181,313791,"AUS","NSW SOP",2007,"For storage only",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20184,313791,"AUS","NSW SOP",2004,"For storage only",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20182,313791,"AUS","NSW SOP",2010,"For storage only",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17568,313802,"AUS","NTMEE",2013,"For storage only",28,"Karlu Karlu / Devils Marbles","Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16951,313804,"AUS","NTMEE",2013,"For storage only",28,"Fogg Dam","Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15343,313811,"AUS","NTMEE",2013,"For storage only",28,"Alice Springs Telegraph Station","Historical Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16857,313834,"AUS","NTMEE",2013,"For storage only",28,"Elsey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17519,313836,"AUS","NTMEE",2013,"For storage only",28,"Judbarra / Gregory","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17196,313836,"AUS","Birdlife IBA",2008,"For storage only",28,"Judbarra / Gregory","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17587,313837,"AUS","NTMEE",2013,"For storage only",28,"Keep River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17890,313839,"AUS","NTMEE",2013,"For storage only",28,"Limmen","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17911,313840,"AUS","NTMEE",2013,"For storage only",28,"Litchfield","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19850,313841,"AUS","NTMEE",2013,"For storage only",28,"Watarrka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18733,313845,"AUS","NTMEE",2013,"For storage only",28,"Nitmiluk","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16283,313850,"AUS","NTMEE",2013,"For storage only",28,"Casuarina","Coastal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15752,313894,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Blackbraes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15751,313894,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Blackbraes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16645,313895,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"D'Aguilar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16646,313895,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"D'Aguilar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16877,313896,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Eudlo Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16876,313896,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Eudlo Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17340,313897,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Homevale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17339,313897,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Homevale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16237,313898,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16238,313898,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17604,313899,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17603,313899,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17165,313919,"AUS","Birdlife IBA",2008,"For storage only",28,"Goose Island","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19275,314100,"AUS","Victorian SOP",2013,"For storage only",28,"Snowy River National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19273,314100,"AUS","Victorian SOP",2010,"For storage only",28,"Snowy River National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19274,314100,"AUS","Victorian SOP",2005,"For storage only",28,"Snowy River National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19970,314101,"AUS","Victorian SOP",2010,"For storage only",28,"Wilsons Promontory National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19971,314101,"AUS","Victorian SOP",2013,"For storage only",28,"Wilsons Promontory National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19969,314101,"AUS","Victorian SOP",2005,"For storage only",28,"Wilsons Promontory National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15368,314104,"AUS","Victorian SOP",2005,"For storage only",28,"Apsley B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18028,314301,"AUS","Victorian SOP",2005,"For storage only",28,"Mallacoota B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18184,314324,"AUS","Victorian SOP",2005,"For storage only",28,"Mitta Mitta B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16012,314476,"AUS","Victorian SOP",2005,"For storage only",28,"Buchan Caves Reserve","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16013,314476,"AUS","Victorian SOP",2010,"For storage only",28,"Buchan Caves Reserve","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16014,314476,"AUS","Victorian SOP",2013,"For storage only",28,"Buchan Caves Reserve","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15762,314491,"AUS","Victorian SOP",2013,"For storage only",28,"Blond Bay W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15760,314491,"AUS","Victorian SOP",2010,"For storage only",28,"Blond Bay W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15761,314491,"AUS","Victorian SOP",2005,"For storage only",28,"Blond Bay W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15747,314499,"AUS","Victorian SOP",2010,"For storage only",28,"Black Range S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15746,314499,"AUS","Victorian SOP",2005,"For storage only",28,"Black Range S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15334,314543,"AUS","Victorian SOP",2010,"For storage only",28,"Aire River W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15336,314543,"AUS","Victorian SOP",2013,"For storage only",28,"Aire River W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15335,314543,"AUS","Victorian SOP",2005,"For storage only",28,"Aire River W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15766,314552,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Blue Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16010,314560,"AUS","Victorian SOP",2005,"For storage only",28,"Bryan Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16377,314566,"AUS","Victorian SOP",2005,"For storage only",28,"Clydebank Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16790,314573,"AUS","Victorian SOP",2013,"For storage only",28,"Dowd Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16788,314573,"AUS","Victorian SOP",2010,"For storage only",28,"Dowd Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16789,314573,"AUS","Victorian SOP",2005,"For storage only",28,"Dowd Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16791,314574,"AUS","Victorian SOP",2010,"For storage only",28,"Dowdle Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16792,314574,"AUS","Victorian SOP",2005,"For storage only",28,"Dowdle Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16903,314576,"AUS","Victorian SOP",2005,"For storage only",28,"Ewing Morass W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16904,314576,"AUS","Victorian SOP",2010,"For storage only",28,"Ewing Morass W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17032,314578,"AUS","Victorian SOP",2010,"For storage only",28,"Gaynor Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17033,314578,"AUS","Victorian SOP",2013,"For storage only",28,"Gaynor Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17281,314586,"AUS","Victorian SOP",2005,"For storage only",28,"Hateleys Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17301,314587,"AUS","Victorian SOP",2005,"For storage only",28,"Heard Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17302,314588,"AUS","Victorian SOP",2005,"For storage only",28,"Heart Morass W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17324,314589,"AUS","Victorian SOP",2013,"For storage only",28,"Hird Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17323,314589,"AUS","Victorian SOP",2005,"For storage only",28,"Hird Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17322,314589,"AUS","Victorian SOP",2010,"For storage only",28,"Hird Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17429,314590,"AUS","Victorian SOP",2010,"For storage only",28,"Jack Smith Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17430,314590,"AUS","Victorian SOP",2013,"For storage only",28,"Jack Smith Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17428,314590,"AUS","Victorian SOP",2005,"For storage only",28,"Jack Smith Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17513,314591,"AUS","Victorian SOP",2010,"For storage only",28,"Johnson Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17515,314591,"AUS","Victorian SOP",2013,"For storage only",28,"Johnson Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17514,314591,"AUS","Victorian SOP",2005,"For storage only",28,"Johnson Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17518,314592,"AUS","Victorian SOP",2005,"For storage only",28,"Jones Bay W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17605,314594,"AUS","Victorian SOP",2005,"For storage only",28,"Kerr Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17780,314599,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Bookar W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17783,314602,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Coleman W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15589,314605,"AUS","Birdlife IBA",2008,"For storage only",28,"Lake Connewarre W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17787,314605,"AUS","Victorian SOP",2013,"For storage only",28,"Lake Connewarre W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17786,314605,"AUS","Victorian SOP",2010,"For storage only",28,"Lake Connewarre W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17785,314605,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Connewarre W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17788,314606,"AUS","Victorian SOP",2010,"For storage only",28,"Lake Corringle W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17789,314606,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Corringle W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17790,314606,"AUS","Victorian SOP",2013,"For storage only",28,"Lake Corringle W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17794,314608,"AUS","Victorian SOP",2013,"For storage only",28,"Lake Curlip W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17792,314608,"AUS","Victorian SOP",2010,"For storage only",28,"Lake Curlip W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17793,314608,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Curlip W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17799,314614,"AUS","Victorian SOP",2010,"For storage only",28,"Lake Gillear W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17809,314618,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Jollicum W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17811,314619,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Karnak W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17821,314625,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Muirhead W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17835,314632,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Wongan W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17881,314639,"AUS","Victorian SOP",2005,"For storage only",28,"Lignum Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17990,314642,"AUS","Victorian SOP",2013,"For storage only",28,"Macleod Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17988,314642,"AUS","Victorian SOP",2010,"For storage only",28,"Macleod Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17989,314642,"AUS","Victorian SOP",2005,"For storage only",28,"Macleod Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18465,314655,"AUS","Victorian SOP",2005,"For storage only",28,"Mount William Swamp (The Big Swamp) W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18683,314658,"AUS","Victorian SOP",2005,"For storage only",28,"Nerrin Nerrin Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18772,314659,"AUS","Victorian SOP",2005,"For storage only",28,"North, Centre and other Lakes W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18997,314665,"AUS","Victorian SOP",2005,"For storage only",28,"Pot Brook W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19004,314666,"AUS","Victorian SOP",2013,"For storage only",28,"Princetown W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19001,314666,"AUS","Victorian SOP",2010,"For storage only",28,"Princetown W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19002,314666,"AUS","Victorian SOP",2005,"For storage only",28,"Princetown W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19137,314671,"AUS","Victorian SOP",2010,"For storage only",28,"Rowan Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19138,314671,"AUS","Victorian SOP",2005,"For storage only",28,"Rowan Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19416,314681,"AUS","Victorian SOP",2005,"For storage only",28,"Tang Tang Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19597,314685,"AUS","Victorian SOP",2013,"For storage only",28,"Tower Hill W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19595,314685,"AUS","Victorian SOP",2005,"For storage only",28,"Tower Hill W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19596,314685,"AUS","Victorian SOP",2010,"For storage only",28,"Tower Hill W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19919,314696,"AUS","Victorian SOP",2005,"For storage only",28,"White Lake, Douglas W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20077,314699,"AUS","Victorian SOP",2005,"For storage only",28,"Woolshed Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19822,314709,"AUS","Victorian SOP",2005,"For storage only",28,"Warramate Hills N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15366,314711,"AUS","Victorian SOP",2010,"For storage only",28,"Annuello F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15367,314711,"AUS","Victorian SOP",2013,"For storage only",28,"Annuello F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15514,314713,"AUS","Victorian SOP",2005,"For storage only",28,"Barrabool F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15515,314713,"AUS","Victorian SOP",2013,"For storage only",28,"Barrabool F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15726,314714,"AUS","Victorian SOP",2010,"For storage only",28,"Birdcage F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15922,314717,"AUS","Victorian SOP",2010,"For storage only",28,"Breamlea F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15923,314717,"AUS","Victorian SOP",2013,"For storage only",28,"Breamlea F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15975,314718,"AUS","Victorian SOP",2005,"For storage only",28,"Brodribb River F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17135,314729,"AUS","Victorian SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17489,314733,"AUS","Victorian SOP",2013,"For storage only",28,"Jilpanger N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17488,314733,"AUS","Victorian SOP",2005,"For storage only",28,"Jilpanger N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17915,314738,"AUS","Victorian SOP",2005,"For storage only",28,"Little Bog Creek F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17914,314738,"AUS","Victorian SOP",2010,"For storage only",28,"Little Bog Creek F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17954,314739,"AUS","Victorian SOP",2005,"For storage only",28,"Long Forest F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17956,314739,"AUS","Victorian SOP",2013,"For storage only",28,"Long Forest F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17955,314739,"AUS","Victorian SOP",2010,"For storage only",28,"Long Forest F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18030,314740,"AUS","Victorian SOP",2013,"For storage only",28,"Mallanbool F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18029,314740,"AUS","Victorian SOP",2010,"For storage only",28,"Mallanbool F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18251,314746,"AUS","Victorian SOP",2005,"For storage only",28,"Morass Creek F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18377,314749,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Jeffcott F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18376,314749,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Jeffcott F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18520,314751,"AUS","Victorian SOP",2010,"For storage only",28,"Mullungdung F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18522,314751,"AUS","Victorian SOP",2013,"For storage only",28,"Mullungdung F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18521,314751,"AUS","Victorian SOP",2005,"For storage only",28,"Mullungdung F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19011,314756,"AUS","Victorian SOP",2013,"For storage only",28,"Providence Ponds F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19009,314756,"AUS","Victorian SOP",2010,"For storage only",28,"Providence Ponds F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19010,314756,"AUS","Victorian SOP",2005,"For storage only",28,"Providence Ponds F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19075,314757,"AUS","Victorian SOP",2013,"For storage only",28,"Red Bluff F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19074,314757,"AUS","Victorian SOP",2010,"For storage only",28,"Red Bluff F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19344,314760,"AUS","Victorian SOP",2005,"For storage only",28,"Stradbroke F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19526,314762,"AUS","Victorian SOP",2013,"For storage only",28,"Timberoo F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19855,314770,"AUS","Victorian SOP",2013,"For storage only",28,"Wathe F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19854,314770,"AUS","Victorian SOP",2005,"For storage only",28,"Wathe F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19913,314772,"AUS","Victorian SOP",2013,"For storage only",28,"West Wail F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20131,314774,"AUS","Victorian SOP",2005,"For storage only",28,"Wychitella N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20130,314774,"AUS","Victorian SOP",2010,"For storage only",28,"Wychitella N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20132,314774,"AUS","Victorian SOP",2013,"For storage only",28,"Wychitella N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18579,314792,"AUS","Victorian SOP",2005,"For storage only",28,"Murrindal F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15560,314802,"AUS","Victorian SOP",2010,"For storage only",28,"Bald Hills Creek W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15562,314803,"AUS","Victorian SOP",2013,"For storage only",28,"Bats Ridge W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15561,314803,"AUS","Victorian SOP",2005,"For storage only",28,"Bats Ridge W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15919,314805,"AUS","Victorian SOP",2005,"For storage only",28,"Bradshaw Swamp N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16383,314812,"AUS","Victorian SOP",2013,"For storage only",28,"Cobra Killuc W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17038,314817,"AUS","Victorian SOP",2013,"For storage only",28,"Gemmill Swamp W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17036,314817,"AUS","Victorian SOP",2010,"For storage only",28,"Gemmill Swamp W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17037,314817,"AUS","Victorian SOP",2005,"For storage only",28,"Gemmill Swamp W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17548,314820,"AUS","Victorian SOP",2013,"For storage only",28,"Kaladbro W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17546,314820,"AUS","Victorian SOP",2010,"For storage only",28,"Kaladbro W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17547,314820,"AUS","Victorian SOP",2005,"For storage only",28,"Kaladbro W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17674,314822,"AUS","Victorian SOP",2005,"For storage only",28,"Kooraweera Lakes W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17777,314826,"AUS","Victorian SOP",2013,"For storage only",28,"Lake Beeac W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17776,314826,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Beeac W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17781,314827,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Carchap W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17791,314828,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Cundare W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17823,314829,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Oundell W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17824,314830,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Purrumbete W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17825,314832,"AUS","Victorian SOP",2010,"For storage only",28,"Lake Terangpom W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17826,314832,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Terangpom W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17838,314833,"AUS","Victorian SOP",2013,"For storage only",28,"Lakes Powell and Carpul W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17837,314833,"AUS","Victorian SOP",2010,"For storage only",28,"Lakes Powell and Carpul W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17965,314835,"AUS","Victorian SOP",2013,"For storage only",28,"Lonsdale Lakes W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17964,314835,"AUS","Victorian SOP",2010,"For storage only",28,"Lonsdale Lakes W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18157,314836,"AUS","Victorian SOP",2010,"For storage only",28,"Milangil Lake W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18158,314836,"AUS","Victorian SOP",2005,"For storage only",28,"Milangil Lake W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19155,314844,"AUS","Victorian SOP",2013,"For storage only",28,"Sale Common N.C.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19154,314844,"AUS","Victorian SOP",2005,"For storage only",28,"Sale Common N.C.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19153,314844,"AUS","Victorian SOP",2010,"For storage only",28,"Sale Common N.C.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19218,314848,"AUS","Victorian SOP",2010,"For storage only",28,"Seven Creeks W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19220,314848,"AUS","Victorian SOP",2013,"For storage only",28,"Seven Creeks W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19219,314848,"AUS","Victorian SOP",2005,"For storage only",28,"Seven Creeks W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19498,314852,"AUS","Victorian SOP",2005,"For storage only",28,"The Spit W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19499,314852,"AUS","Victorian SOP",2010,"For storage only",28,"The Spit W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19500,314852,"AUS","Victorian SOP",2013,"For storage only",28,"The Spit W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19609,314855,"AUS","Victorian SOP",2005,"For storage only",28,"Tragowel Swamp N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15566,314861,"AUS","Victorian SOP",2010,"For storage only",28,"Yatmerone Swamp W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15568,314862,"AUS","Victorian SOP",2013,"For storage only",28,"Bay of Islands Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15567,314862,"AUS","Victorian SOP",2005,"For storage only",28,"Bay of Islands Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18572,314863,"AUS","Victorian SOP",2010,"For storage only",28,"Murray - Kulkyne Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18573,314863,"AUS","Victorian SOP",2013,"For storage only",28,"Murray - Kulkyne Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18571,314863,"AUS","Victorian SOP",2005,"For storage only",28,"Murray - Kulkyne Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16843,314878,"AUS","Birdlife IBA",2008,"For storage only",28,"Eclipse Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17820,314886,"AUS","Birdlife IBA",2008,"For storage only",28,"Lake McLarty","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19000,314898,"AUS","Birdlife IBA",2008,"For storage only",28,"Prince Regent","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19073,314899,"AUS","Birdlife IBA",2008,"For storage only",28,"Recherche Archipelago","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9827,315000,"BHS","METT-RAPPAM",2018,"For storage only",25,"Little Inagua National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9801,315001,"BHS","METT-RAPPAM",2018,"For storage only",25,"Walker’s Cay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9822,315002,"BHS","METT-RAPPAM",2018,"For storage only",25,"Bonefish Pond National Park","Ecological Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9807,315003,"BHS","METT-RAPPAM",2018,"For storage only",25,"Moriah Harbour Cay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -16452,315022,"AUS","NSW SOP",2010,"For storage only",28,"Cook Island","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17967,315023,"AUS","NSW SOP",2010,"For storage only",28,"Lord Howe Island","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18645,315024,"AUS","NSW SOP",2010,"For storage only",28,"Narrabeen","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17021,315029,"AUS","NTMEE",2013,"For storage only",28,"Garig Gunak Barlu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1221,315070,"GTM","PROARCA/CAPAS",2014,"For storage only",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1218,315070,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1222,315070,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1219,315070,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1220,315070,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -13763,315109,"UGA","Birdlife IBA",2001,"For storage only",28,"Atiya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13747,315143,"UGA","Birdlife IBA",2008,"For storage only",28,"Kasyoha - Kitomi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13144,315157,"SLV","PROARCA/CAPAS",2003,"For storage only",28,"Santa Rita","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13145,315157,"SLV","PROARCA/CAPAS",2006,"For storage only",28,"Santa Rita","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13749,315238,"UGA","Africa Rainforest Study",2001,"For storage only",28,"Kibale","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13748,315238,"UGA","METT",2003,"For storage only",28,"Kibale","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21759,315490,"ZAF","RAPPAM",2001,"For storage only",28,"St Lucia Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13321,315555,"TON","Birdlife IBA",2007,"For storage only",28,"Tofua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11056,315605,"CHN","RAPPAM",2001,"For storage only",28,"Wenshanlaojunshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11056,315605,"CHN","RAPPAM",2001,"Not Reported",28,"Wenshanlaojunshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11059,315606,"CHN","METT",2003,"For storage only",28,"Wujiao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11059,315606,"CHN","METT",2003,"Not Reported",28,"Wujiao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11062,315610,"CHN","METT",2003,"For storage only",28,"Xiaohegou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11062,315610,"CHN","METT",2003,"Not Reported",28,"Xiaohegou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11065,315614,"CHN","METT",2003,"For storage only",28,"Xuebaoding","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11065,315614,"CHN","METT",2003,"Not Reported",28,"Xuebaoding","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11072,315626,"CHN","METT",2009,"Not Reported",28,"Zhalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11072,315626,"CHN","METT",2009,"For storage only",28,"Zhalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11033,315631,"CHN","METT",2011,"For storage only",28,"Zhujiangkouzhonghuabaijitun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11033,315631,"CHN","METT",2011,"Not Reported",28,"Zhujiangkouzhonghuabaijitun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10972,315638,"CHN","METT",2003,"For storage only",28,"Baishuihe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10972,315638,"CHN","METT",2003,"Not Reported",28,"Baishuihe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10974,315640,"CHN","METT",2003,"Not Reported",28,"Baiyang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10974,315640,"CHN","METT",2003,"For storage only",28,"Baiyang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10975,315642,"CHN","METT",2003,"For storage only",28,"Baodinggou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10975,315642,"CHN","METT",2003,"Not Reported",28,"Baodinggou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10979,315645,"CHN","METT",2003,"For storage only",28,"Changqing","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10979,315645,"CHN","METT",2003,"Not Reported",28,"Changqing","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10988,315662,"CHN","METT",2008,"For storage only",28,"Ganligahai-zecha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10988,315662,"CHN","METT",2008,"Not Reported",28,"Ganligahai-zecha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11007,315673,"CHN","METT",2012,"For storage only",28,"Hanma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11007,315673,"CHN","METT",2012,"Not Reported",28,"Hanma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11010,315688,"CHN","METT",2003,"Not Reported",28,"Jiudingshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11010,315688,"CHN","METT",2003,"For storage only",28,"Jiudingshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11039,315691,"CHN","METT",2010,"Not Reported",28,"Kekexili","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11039,315691,"CHN","METT",2010,"For storage only",28,"Kekexili","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11013,315696,"CHN","METT",2003,"For storage only",28,"Laoxiancheng","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11013,315696,"CHN","METT",2003,"Not Reported",28,"Laoxiancheng","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -10983,315701,"CHN","Birdlife IBA",2008,"For storage only",28,"Liuyangdaweishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10983,315701,"CHN","Birdlife IBA",2008,"Not Reported",28,"Liuyangdaweishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10994,315715,"CHN","METT",2010,"For storage only",28,"Nanwenghe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10994,315715,"CHN","METT",2010,"Not Reported",28,"Nanwenghe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11034,315719,"CHN","METT",2003,"For storage only",28,"Piankou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11034,315719,"CHN","METT",2003,"Not Reported",28,"Piankou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11038,315720,"CHN","METT",2003,"Not Reported",28,"Qianfoshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11038,315720,"CHN","METT",2003,"For storage only",28,"Qianfoshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11042,315729,"CHN","METT",2010,"For storage only",28,"Sanjiangyuan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -11042,315729,"CHN","METT",2010,"Not Reported",28,"Sanjiangyuan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",TRUE -9828,316891,"BHS","METT-RAPPAM",2018,"For storage only",25,"Union Creek Reserve","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -20622,316895,"PNG","RAPPAM",2004,"For storage only",28,"Hombareta","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20657,316932,"PNG","RAPPAM",2004,"For storage only",28,"Laugum","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20658,316933,"PNG","RAPPAM",2004,"For storage only",28,"Tabad","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20641,316937,"PNG","RAPPAM",2004,"For storage only",28,"Mt Kaindi","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20633,316938,"PNG","RAPPAM",2004,"For storage only",28,"Laugum","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11666,317052,"GNB","METT",2010,"For storage only",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11644,317052,"GNB","METT",2004,"For storage only",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11643,317052,"GNB","Marine Tracking Tool",2004,"For storage only",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11647,317052,"GNB","RAPPAM",2007,"For storage only",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11645,317052,"GNB","METT",2006,"For storage only",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11646,317052,"GNB","RAPPAM",2009,"For storage only",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10625,317052,"GNB","IMET",2016,"For storage only",27,"João Vieira and Poilão Marine National Park","Marine National Park","JRC IMET information","JRC",2018,"English",FALSE -12619,317135,"PRY","Birdlife IBA",2011,"For storage only",28,"Arroyo Blanco","Natural Private Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12637,317136,"PRY","Birdlife IBA",2011,"For storage only",28,"Morombi","Natural Private Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14344,317183,"CHL","METT",2010,"For storage only",28,"Islotes de Punihuil","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14343,317183,"CHL","METT",0,"For storage only",28,"Islotes de Punihuil","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14395,317184,"CHL","METT",2010,"For storage only",28,"Pan De Azucar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14394,317184,"CHL","METT",0,"For storage only",28,"Pan De Azucar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15042,317193,"MLI","METT",2009,"For storage only",28,"Parc National de Wongo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15044,317194,"MLI","METT",2009,"For storage only",28,"Sanctuaire des Chimpanzés du Bafing","Chimpanzee Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15041,317195,"MLI","METT",2009,"For storage only",28,"Parc National Kouroufing","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28084,317197,"IDN","METT",2009,"For storage only",28,"Tesso Nilo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28073,317197,"IDN","METT",2006,"For storage only",28,"Tesso Nilo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21032,317197,"IDN","METT",2015,"For storage only",35,"Tesso Nilo","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21073,317200,"IDN","METT",2015,"For storage only",35,"Muka Kuning","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21005,317205,"IDN","METT",2015,"For storage only",35,"Bukit Dua Belas","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20997,317221,"THA","METT",2015,"For storage only",35,"Lam Nam Nan Phang Kha","Wildlife Sanctuary","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21014,317251,"IDN","METT",2015,"For storage only",35,"Gunung Merbabu","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21071,317253,"IDN","METT",2015,"For storage only",35,"Mangolo","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21067,317255,"IDN","METT",2015,"For storage only",35,"Lejja","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20986,317256,"IDN","METT",2015,"For storage only",35,"Landusa Tomata","Game Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20962,317257,"IDN","METT",2015,"For storage only",35,"Komara","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21007,317259,"IDN","METT",2015,"For storage only",35,"Danau Sentarum","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20964,317260,"IDN","METT",2015,"For storage only",35,"Lamandau","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28072,317262,"IDN","METT",2006,"For storage only",28,"Sebangau","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21028,317262,"IDN","METT",2015,"For storage only",35,"Sebangau","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20929,317275,"IDN","METT",2015,"For storage only",35,"Riung","Marine Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -28045,317281,"CAF","METT",2007,"For storage only",28,"Mbaéré-Bodingué","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15102,317296,"PHL","METT",2006,"For storage only",28,"Northern Sierra Madre Mountain Range","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15104,317298,"PHL","METT",2009,"For storage only",28,"Polilio","Watershed Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14334,317329,"CHL","METT",2010,"For storage only",28,"Francisco Coloane","Marine and Coastal Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -846,318076,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2010,"For storage only",11,"Eifel","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -850,318077,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2011,"For storage only",11,"Kellerwald-Edersee","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German",FALSE -20607,326015,"LTU","Birdlife IBA",2013,"For storage only",28,"Kalviu atkuriamasis sklypas","Recuperational plot","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13221,326108,"SVN","European Diploma",2004,"For storage only",28,"Triglav","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13213,326354,"SVN","RAPPAM",2009,"For storage only",28,"Škocjanski zatok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9619,326426,"LIE","METT",2017,"For storage only",22,"Garsaelli","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9623,326427,"LIE","METT",2017,"For storage only",22,"Hinter Baergwald /Heubueal","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9629,326428,"LIE","METT",2017,"For storage only",22,"Messweid","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9630,326429,"LIE","METT",2017,"For storage only",22,"Mittagsspitze","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9636,326430,"LIE","METT",2017,"For storage only",22,"Rinderwald","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9640,326431,"LIE","METT",2017,"For storage only",22,"Schlosswald","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9644,326432,"LIE","METT",2017,"For storage only",22,"Steger Bach","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9617,326433,"LIE","METT",2017,"For storage only",22,"Ganada","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9637,326434,"LIE","METT",2017,"For storage only",22,"Garsaelli","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9607,326435,"LIE","METT",2017,"For storage only",22,"Alta Bach","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9610,326436,"LIE","METT",2017,"For storage only",22,"Balzner Neugut","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9611,326437,"LIE","METT",2017,"For storage only",22,"Balzner Rheinau","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9612,326438,"LIE","METT",2017,"For storage only",22,"Bim Hensile","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9614,326439,"LIE","METT",2017,"For storage only",22,"Fuermazoeg","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9615,326440,"LIE","METT",2017,"For storage only",22,"Gampriner Rheinau","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -29581,326441,"LIE","METT",2017,"For storage only",22,"Ganada","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9620,326442,"LIE","METT",2017,"For storage only",22,"Guschg / Nachtsaess","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9621,326443,"LIE","METT",2017,"For storage only",22,"Haelos","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9624,326444,"LIE","METT",2017,"For storage only",22,"Hochwuerza","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9625,326445,"LIE","METT",2017,"For storage only",22,"Malanserwald/Lotzagueetle","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9627,326446,"LIE","METT",2017,"For storage only",22,"Maschera","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9631,326447,"LIE","METT",2017,"For storage only",22,"Moggawald / Schwarzwald","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9633,326448,"LIE","METT",2017,"For storage only",22,"Plattawald / Bleika","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9634,326449,"LIE","METT",2017,"For storage only",22,"Pradamee","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9635,326450,"LIE","METT",2017,"For storage only",22,"Retta","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -29582,326451,"LIE","METT",2017,"For storage only",22,"Ruggeller Rheinau","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9639,326452,"LIE","METT",2017,"For storage only",22,"Saeliwald","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9643,326453,"LIE","METT",2017,"For storage only",22,"Stachler Wald","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9645,326454,"LIE","METT",2017,"For storage only",22,"Unterau","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9618,326455,"LIE","METT",2017,"For storage only",22,"Gantenstein","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -1078,326734,"EST","METT",2010,"For storage only",15,"Päite maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1100,326903,"EST","METT",2012,"For storage only",15,"Haavakannu hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1086,326905,"EST","METT",2010,"For storage only",15,"Hiiu madala hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1102,326958,"EST","METT",2012,"For storage only",15,"Lüübnitsa hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1103,326968,"EST","METT",2012,"For storage only",15,"Nõva-Osmussaare hoiuala (Läänemaa)","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1104,326975,"EST","METT",2012,"For storage only",15,"Pakri hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -21925,327024,"EST","Parks Canada",2007,"For storage only",28,"Uhtjärve hoiuala","Limited-conservation area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13151,328830,"SRB","RAPPAM",2009,"For storage only",28,"Prebreza","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13173,328838,"SRB","METT",2009,"For storage only",28,"Carska bara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13147,328841,"SRB","METT",2012,"For storage only",28,"Deliblatska pescara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13158,328843,"SRB","METT",2012,"For storage only",28,"Karadjordjevo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13153,328846,"SRB","METT",2012,"For storage only",28,"Gornje Podunavlje","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13180,328849,"SRB","RAPPAM",2009,"For storage only",28,"Slano Kopovo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13157,328863,"SRB","METT",2009,"For storage only",28,"Reon sela Trsica i Tronose","Area of Cultural and Historical Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13159,328863,"SRB","RAPPAM",2009,"For storage only",28,"Reon sela Trsica i Tronose","Area of Cultural and Historical Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13165,328917,"SRB","RAPPAM",2009,"For storage only",28,"Petrlaska pecina","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -8957,328952,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slamannan Plateau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8958,328953,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strath Carnaig and Strath Fleet Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7166,328954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Camnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6187,328955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llanishen and Lisvane Reservoir Embankments","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6601,328956,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Lodge Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6604,328957,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Nene Valley Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6606,328958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Canvey Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6607,328959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Peaslows Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6595,328960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hurdlow Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6596,328961,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pakefield To Easton Bavents","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6597,328962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Spring Meadows, Alderman's Head & Cow Croft Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6598,328963,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burledge Sidelands and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6599,328964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Highgate Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8956,328965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Renfrewshire Heights","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9170,328974,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Feystown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9169,328975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballymacombs More","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9172,328976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edenaclogh Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9173,328977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lenaghan Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9179,328978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rehaghy Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9174,328979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Corry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9178,328980,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banagher","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9182,328981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Scolban","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9181,328982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Aleater","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9180,328983,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lurgan River Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9183,328984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballypalady","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9184,328985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Murrins","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9138,328986,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lemnalary","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9185,328987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Roe and Tributaries","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -22039,329868,"FIN","Birdlife IBA",2010,"For storage only",28,"Kirkon-Vilkkilänturan luonnonsuojelualue","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15050,330726,"MLT","Birdlife IBA",2013,"For storage only",28,"L-Inhawi tar-Ramla tat-Torri / Rdum tal-Madonna","Special Areas of Conservation - International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15049,330746,"MLT","Birdlife IBA",2013,"For storage only",28,"Ta' Cenc (Sannat, Ghawdex)","Site of Scientific Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28315,332747,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Beiaardbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28316,332770,"BEL","Natura 2000 National Monitoring",2005,"For storage only",38,"Bos Ter Rijst","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28317,332790,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Bulskampveld","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28318,332819,"BEL","Natura 2000 National Monitoring",2004,"For storage only",38,"Coolhembos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28309,332872,"BEL","Natura 2000 National Monitoring",2006,"For storage only",38,"De Heirnisse","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28322,333014,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Dilserbos - Platte Lendenberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28323,333066,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Galgenberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28324,333102,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Grootbroek","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28325,333109,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Grotenhout","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28326,333157,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Hallerbos: Jansheideberg en zaadtuin - uitbreiding1","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28327,333159,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Hallerbos: Jansheideberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28328,333160,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Hallerbos: Kluisberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28329,333161,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Hallerbos: Hallebeek","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28330,333162,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Hallerbos: Vroenenbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28331,333179,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Hellegatbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28333,333268,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Heverleebos: Grote Omheining","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28334,333298,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"In de Brand","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28335,333301,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Jagersborg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28336,333304,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Jongenbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28337,333351,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Karkoolbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28338,333391,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Kolmontbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28339,333399,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Kraaienbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28340,333417,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Lanklaarderbos-Saenhoeve","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28341,333434,"BEL","Natura 2000 National Monitoring",2005,"For storage only",38,"Liedekerkebos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28342,333476,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Meerdaalwoud: De Heide","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28343,333477,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Meerdaalwoud: Drie eiken","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28344,333478,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Meerdaalwoud: Everzwijnbad","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28345,333479,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Meerdaalwoud: Grote konijnenpijp","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28346,333480,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Meerdaalwoud: Mommedeel","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28347,333481,"BEL","Natura 2000 National Monitoring",2005,"For storage only",38,"Meerdaalwoud: Pruikemakers","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28348,333482,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Meerdaalwoud: Veldkant Renissart","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28349,333488,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Melisbroek-Vieversel","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28350,333525,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Neigembos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28351,333547,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Op den Aenhof","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28352,333566,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Overheide","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28353,333598,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Parikebos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28354,333609,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Pijnven - naaldbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28355,333610,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Pijnven - ven","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28356,333650,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Rooiveld","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28357,333678,"BEL","Natura 2000 National Monitoring",2006,"For storage only",38,"Sevendock","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28358,333787,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Vloetemveld","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28359,333790,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Broekbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28360,333791,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Roodbos-Veursbos-Vossenaerde","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28361,333792,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Teuvenerberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28362,333813,"BEL","Natura 2000 National Monitoring",2004,"For storage only",38,"Wijnendalebos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -15026,337454,"LUX","Birdlife IBA",2009,"For storage only",28,"Vallée supérieure de l'Our et affluents de Lieler à Dasbourg","ZPS - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15022,337455,"LUX","Birdlife IBA",2009,"For storage only",28,"Vallée supérieure de la Sûre et affluents de la frontière belge à Esch-sur-Sûre","ZPS - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15020,337457,"LUX","Birdlife IBA",2009,"For storage only",28,"Vallée de la Syre de Moutfort à Roodt/Syre","ZPS - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15015,337472,"LUX","Birdlife IBA",2009,"For storage only",28,"Esch-sur-Alzette Sud-est - Anciennes minières / Ellergronn 2","ZPS - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15009,337473,"LUX","Birdlife IBA",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15023,337481,"LUX","Birdlife IBA",2009,"For storage only",28,"Vallée supérieure de la Sûre / Lac du barrage","ZSC - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15016,337499,"LUX","Birdlife IBA",2009,"For storage only",28,"Esch-sur-Alzette Sud-est - Anciennes minières / Ellergronn 1","ZSC - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15010,337500,"LUX","Birdlife IBA",2009,"For storage only",28,"Dudelange Haard","ZSC - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12674,337830,"ROU","RAPPAM",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12671,337831,"ROU","METT",2009,"For storage only",28,"Defileul Jiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12672,337831,"ROU","METT",2012,"For storage only",28,"Defileul Jiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1101,339656,"EST","METT",2012,"For storage only",15,"Lahepera hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1092,339723,"EST","METT",2012,"For storage only",15,"Luitemaa looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1093,339753,"EST","METT",2012,"For storage only",15,"Mahtra looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1075,340192,"EST","METT",2010,"For storage only",15,"Vooremaa maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -6600,341128,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dungeness, Romney Marsh and Rye Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6608,341129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Bury Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8960,341280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Oa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8961,341281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oronsay and South Colonsay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -11250,342001,"CZE","Birdlife IBA",2005,"For storage only",28,"Bohdanecský rybník","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11267,342034,"CZE","European Diploma",2000,"For storage only",28,"Karlštejn","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11290,342074,"CZE","Birdlife IBA",2010,"For storage only",28,"Režabinec a Režabinecké tune","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20728,342345,"MEX","Ecological Evaluation Score Cards",2012,"For storage only",33,"Isla Guadalupe","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20727,342345,"MEX","Ecological Evaluation Score Cards",2008,"For storage only",33,"Isla Guadalupe","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -1231,342350,"GTM","PROARCA/CAPAS",2003,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1223,342350,"GTM","PIP Site Consolidation",1997,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1224,342350,"GTM","PIP Site Consolidation",1998,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1227,342350,"GTM","PIP Site Consolidation",1996,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1228,342350,"GTM","PIP Site Consolidation",2001,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1229,342350,"GTM","PROARCA/CAPAS",2002,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1230,342350,"GTM","Parks profiles",2013,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1232,342350,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1234,342350,"GTM","PIP Site Consolidation",2014,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1233,342350,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1225,342350,"GTM","PIP Site Consolidation",1999,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1226,342350,"GTM","PIP Site Consolidation",2000,"For storage only",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1238,342356,"GTM","Parks profiles",2014,"For storage only",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1235,342356,"GTM","PROARCA/CAPAS",2002,"For storage only",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1240,342356,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1237,342356,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1236,342356,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -15132,342385,"BLZ","Belize MEE",2009,"For storage only",29,"Aguacaliente Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15252,342393,"BLZ","Belize MEE",2009,"For storage only",29,"Peccary Hills National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15271,342394,"BLZ","Belize MEE",2009,"For storage only",29,"Runaway Creek Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15305,342396,"BLZ","METT",2010,"For storage only",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15149,342396,"BLZ","Belize MEE",2009,"For storage only",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15147,342396,"BLZ","METT",2009,"For storage only",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15148,342396,"BLZ","METT",2011,"For storage only",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15306,342396,"BLZ","METT",2013,"For storage only",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15146,342396,"BLZ","METT",2005,"For storage only",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -1241,342452,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Semuc Champey","Monumento Natural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1243,342452,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Semuc Champey","Monumento Natural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1244,342452,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Semuc Champey","Monumento Natural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1242,342452,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Semuc Champey","Monumento Natural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1246,342460,"GTM","PROARCA/CAPAS",2015,"For storage only",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1245,342460,"GTM","Parks profiles",2014,"For storage only",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1249,342460,"GTM","PROARCA/CAPAS",2004,"For storage only",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1247,342460,"GTM","PROARCA/CAPAS",2005,"For storage only",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -1248,342460,"GTM","PROARCA/CAPAS",2006,"For storage only",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish",FALSE -10821,342502,"BOL","METT",2003,"For storage only",28,"Altamachi","Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10724,342505,"AZE","Birdlife IBA",2008,"For storage only",28,"Shirvan National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14787,342517,"ETH","METT",2005,"For storage only",28,"Chebera-Churchura","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11754,342652,"KAZ","Birdlife IBA",2006,"For storage only",28,"Mangyshlakskiy","Experimental Botanical Garden","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14780,342654,"ETH","METT",2005,"For storage only",28,"Alatish","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11673,342655,"GNB","RAPPAM",2009,"For storage only",28,"Ilhas Formosa , Nago & Tchediã (Urok)","Marine Community Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11636,342670,"GNB","METT",2009,"For storage only",28,"Boé","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11669,342672,"GNB","METT",2009,"For storage only",28,"Salifo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11294,343199,"CZE","Birdlife IBA",2010,"For storage only",28,"Vestonická nádrž","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11270,344524,"CZE","Birdlife IBA",2005,"For storage only",28,"Krkonošský národní park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11289,344526,"CZE","European Diploma",2000,"For storage only",28,"Podyjí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11286,344526,"CZE","Birdlife IBA",2005,"For storage only",28,"Podyjí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11285,344526,"CZE","RAPPAM",2004,"For storage only",28,"Podyjí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11296,344527,"CZE","Birdlife IBA",2013,"For storage only",28,"Šumava","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11247,344528,"CZE","METT",2009,"For storage only",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11245,344528,"CZE","METT",2007,"For storage only",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11243,344528,"CZE","METT",2005,"For storage only",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11248,344528,"CZE","RAPPAM",2004,"For storage only",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11246,344528,"CZE","METT",2008,"For storage only",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11244,344528,"CZE","METT",2006,"For storage only",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11263,344537,"CZE","Birdlife IBA",2005,"For storage only",28,"Jeseníky","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11266,344538,"CZE","RAPPAM",2004,"For storage only",28,"Jizerské hory","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11273,344541,"CZE","Birdlife IBA",2005,"For storage only",28,"Labské pískovce","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11278,344544,"CZE","RAPPAM",2004,"For storage only",28,"Moravský kras","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11283,344546,"CZE","Birdlife IBA",2010,"For storage only",28,"Pálava","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11301,344552,"CZE","Birdlife IBA",2010,"For storage only",28,"Tøeboòsko","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -24088,347255,"CHE","National Inventory",2011,"For storage only",37,"Thuner Allmend","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24089,347256,"CHE","National Inventory",2011,"For storage only",37,"Wyssensee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24090,347257,"CHE","National Inventory",2011,"For storage only",37,"Im See","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24091,347258,"CHE","National Inventory",2011,"For storage only",37,"Wissenbachschlucht","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24092,347259,"CHE","National Inventory",2011,"For storage only",37,"Büeltigen-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24093,347260,"CHE","National Inventory",2011,"For storage only",37,"Schallenberg Tümpel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24094,347261,"CHE","National Inventory",2011,"For storage only",37,"Seeli-Egg, Lochsiten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24095,347262,"CHE","National Inventory",2011,"For storage only",37,"Bärenmoosweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24096,347263,"CHE","National Inventory",2011,"For storage only",37,"Gwattmösli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24097,347264,"CHE","National Inventory",2011,"For storage only",37,"Ägelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24098,347265,"CHE","National Inventory",2011,"For storage only",37,"Buechholz Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24099,347266,"CHE","National Inventory",2011,"For storage only",37,"Colas Grube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24100,347267,"CHE","National Inventory",2011,"For storage only",37,"Erlimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24101,347268,"CHE","National Inventory",2011,"For storage only",37,"Heideweg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24102,347269,"CHE","National Inventory",2011,"For storage only",37,"Muttli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24103,347270,"CHE","National Inventory",2011,"For storage only",37,"Cornez de la Mairie","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24104,347271,"CHE","National Inventory",2011,"For storage only",37,"Schintere Lerchenfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24105,347272,"CHE","National Inventory",2011,"For storage only",37,"Rottenschwiler Moos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24106,347273,"CHE","National Inventory",2011,"For storage only",37,"Töniweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24107,347274,"CHE","National Inventory",2011,"For storage only",37,"Franzosenweiher und Altes Bad","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24108,347275,"CHE","National Inventory",2011,"For storage only",37,"Kaltacker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24109,347276,"CHE","National Inventory",2011,"For storage only",37,"Wildenau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24110,347277,"CHE","National Inventory",2011,"For storage only",37,"Ramoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24111,347278,"CHE","National Inventory",2011,"For storage only",37,"Ziegelmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24112,347279,"CHE","National Inventory",2011,"For storage only",37,"Moos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24113,347280,"CHE","National Inventory",2011,"For storage only",37,"Schwarzmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24114,347281,"CHE","National Inventory",2011,"For storage only",37,"Schnydere ob Eichholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24115,347282,"CHE","National Inventory",2011,"For storage only",37,"Breitmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24116,347283,"CHE","National Inventory",2011,"For storage only",37,"Umiker Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24117,347284,"CHE","National Inventory",2011,"For storage only",37,"Windischer Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24118,347285,"CHE","National Inventory",2011,"For storage only",37,"Fröschegräbe","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24119,347286,"CHE","National Inventory",2011,"For storage only",37,"Ägelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24120,347287,"CHE","National Inventory",2011,"For storage only",37,"Lochmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24121,347288,"CHE","National Inventory",2011,"For storage only",37,"Schwarzrain","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24122,347289,"CHE","National Inventory",2011,"For storage only",37,"Kanderauen bei Mülenen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24123,347290,"CHE","National Inventory",2011,"For storage only",37,"Etang de Sagne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24124,347291,"CHE","National Inventory",2011,"For storage only",37,"Lätti Gals","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24125,347292,"CHE","National Inventory",2011,"For storage only",37,"Nordteil Fanel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24126,347293,"CHE","National Inventory",2011,"For storage only",37,"Leuschelzmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24127,347294,"CHE","National Inventory",2011,"For storage only",37,"Inser-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24128,347295,"CHE","National Inventory",2011,"For storage only",37,"Hahnenmoosbergli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24129,347296,"CHE","National Inventory",2011,"For storage only",37,"Vieille Birse","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24130,347297,"CHE","National Inventory",2011,"For storage only",37,"Spittelmatte","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24131,347298,"CHE","National Inventory",2011,"For storage only",37,"Le Bain, Oversat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24132,347299,"CHE","National Inventory",2011,"For storage only",37,"Chratzera","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24133,347300,"CHE","National Inventory",2011,"For storage only",37,"Tümpel östl. Underläger","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24134,347301,"CHE","National Inventory",2011,"For storage only",37,"Grosse Scheidegg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24135,347302,"CHE","National Inventory",2011,"For storage only",37,"Mumenthaler Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24136,347303,"CHE","National Inventory",2011,"For storage only",37,"Vogelraupfi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24137,347304,"CHE","National Inventory",2011,"For storage only",37,"Friedgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24138,347305,"CHE","National Inventory",2011,"For storage only",37,"Stirple","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24139,347306,"CHE","National Inventory",2011,"For storage only",37,"Waldgrube Tannholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24140,347307,"CHE","National Inventory",2011,"For storage only",37,"Heftihof","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24141,347308,"CHE","National Inventory",2011,"For storage only",37,"Wehrliau Muribadparkplatz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24142,347309,"CHE","National Inventory",2011,"For storage only",37,"Mettlenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24143,347310,"CHE","National Inventory",2011,"For storage only",37,"Leubachbucht, Wohlensee-Nordufer","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24144,347311,"CHE","National Inventory",2011,"For storage only",37,"Lörmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24145,347312,"CHE","National Inventory",2011,"For storage only",37,"Mettmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24146,347313,"CHE","National Inventory",2011,"For storage only",37,"La Marnière","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24147,347314,"CHE","National Inventory",2011,"For storage only",37,"Widi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24148,347315,"CHE","National Inventory",2011,"For storage only",37,"Tourbière de la Chaux d'Abel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24149,347316,"CHE","National Inventory",2011,"For storage only",37,"Tümpel b. Schulhaus","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24150,347317,"CHE","National Inventory",2011,"For storage only",37,"Tümpel bei Alter Aare Meienried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24151,347318,"CHE","National Inventory",2011,"For storage only",37,"Wengimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24152,347319,"CHE","National Inventory",2011,"For storage only",37,"Bermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24153,347320,"CHE","National Inventory",2011,"For storage only",37,"Grube Hardern","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24154,347321,"CHE","National Inventory",2011,"For storage only",37,"Sessenais","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24155,347322,"CHE","National Inventory",2011,"For storage only",37,"Biaufond","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24156,347323,"CHE","National Inventory",2011,"For storage only",37,"Kieswerk Schopsberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24157,347324,"CHE","National Inventory",2011,"For storage only",37,"Tägerhau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24158,347325,"CHE","National Inventory",2011,"For storage only",37,"Weihermatthau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24159,347326,"CHE","National Inventory",2011,"For storage only",37,"Rüssmatten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24160,347327,"CHE","National Inventory",2011,"For storage only",37,"Zurlindeninsel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24161,347328,"CHE","National Inventory",2011,"For storage only",37,"Birristrott","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24162,347329,"CHE","National Inventory",2011,"For storage only",37,"Ebni","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24163,347330,"CHE","National Inventory",2011,"For storage only",37,"Ankematt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24164,347331,"CHE","National Inventory",2011,"For storage only",37,"Ägerten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24165,347332,"CHE","National Inventory",2011,"For storage only",37,"Chalofe","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24166,347333,"CHE","National Inventory",2011,"For storage only",37,"Kohlschwärzi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24167,347334,"CHE","National Inventory",2011,"For storage only",37,"Giriz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24168,347335,"CHE","National Inventory",2011,"For storage only",37,"Sondermülldeponie","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24169,347336,"CHE","National Inventory",2011,"For storage only",37,"Grossmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24170,347337,"CHE","National Inventory",2011,"For storage only",37,"Walisgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24171,347338,"CHE","National Inventory",2011,"For storage only",37,"Zopfmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24172,347339,"CHE","National Inventory",2011,"For storage only",37,"Langenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24173,347340,"CHE","National Inventory",2011,"For storage only",37,"Heuberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24174,347341,"CHE","National Inventory",2011,"For storage only",37,"Mättenfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24175,347342,"CHE","National Inventory",2011,"For storage only",37,"Neugüeter","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24176,347343,"CHE","National Inventory",2011,"For storage only",37,"Unterzelg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24177,347344,"CHE","National Inventory",2011,"For storage only",37,"Zelgli/Höll","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24178,347345,"CHE","National Inventory",2011,"For storage only",37,"Fischbacher Moos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24179,347346,"CHE","National Inventory",2011,"For storage only",37,"Tote Reuss","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24180,347347,"CHE","National Inventory",2011,"For storage only",37,"Letzi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24181,347348,"CHE","National Inventory",2011,"For storage only",37,"Graströchni Hard","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24182,347349,"CHE","National Inventory",2011,"For storage only",37,"Zollester","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24183,347350,"CHE","National Inventory",2011,"For storage only",37,"Schümel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24184,347351,"CHE","National Inventory",2011,"For storage only",37,"Dorfrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24185,347352,"CHE","National Inventory",2011,"For storage only",37,"Forenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24186,347353,"CHE","National Inventory",2011,"For storage only",37,"Wolfshüsli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24187,347354,"CHE","National Inventory",2011,"For storage only",37,"Binsenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24188,347355,"CHE","National Inventory",2011,"For storage only",37,"Steinrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24189,347356,"CHE","National Inventory",2011,"For storage only",37,"Maiholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24190,347357,"CHE","National Inventory",2011,"For storage only",37,"Buechhübel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24191,347358,"CHE","National Inventory",2011,"For storage only",37,"Seematten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24192,347359,"CHE","National Inventory",2011,"For storage only",37,"Tannenchopf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24193,347360,"CHE","National Inventory",2011,"For storage only",37,"Chlosteräcker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24194,347361,"CHE","National Inventory",2011,"For storage only",37,"Hard","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24195,347362,"CHE","National Inventory",2011,"For storage only",37,"Krähhübel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24196,347363,"CHE","National Inventory",2011,"For storage only",37,"Breiti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24197,347364,"CHE","National Inventory",2011,"For storage only",37,"Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24198,347365,"CHE","National Inventory",2011,"For storage only",37,"Looweiher/Heidenloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24199,347366,"CHE","National Inventory",2011,"For storage only",37,"Alte Reuss","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24200,347367,"CHE","National Inventory",2011,"For storage only",37,"Steppberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24201,347368,"CHE","National Inventory",2011,"For storage only",37,"Egelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24202,347369,"CHE","National Inventory",2011,"For storage only",37,"Chli Rhy","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24203,347370,"CHE","National Inventory",2011,"For storage only",37,"Eiholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24204,347371,"CHE","National Inventory",2011,"For storage only",37,"Stockmösli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24205,347372,"CHE","National Inventory",2011,"For storage only",37,"Giriz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24206,347373,"CHE","National Inventory",2011,"For storage only",37,"Schnäggenmatten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24207,347374,"CHE","National Inventory",2011,"For storage only",37,"Wengernalp Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24208,347376,"CHE","National Inventory",2011,"For storage only",37,"Schorengrindel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24209,347377,"CHE","National Inventory",2011,"For storage only",37,"Gippinger Grien","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24210,347378,"CHE","National Inventory",2011,"For storage only",37,"Sagenmülitäli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24211,347379,"CHE","National Inventory",2011,"For storage only",37,"Talweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24212,347380,"CHE","National Inventory",2011,"For storage only",37,"Äbereich","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24213,347381,"CHE","National Inventory",2011,"For storage only",37,"Burgergrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24214,347382,"CHE","National Inventory",2011,"For storage only",37,"Schmulzenchopf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24215,347383,"CHE","National Inventory",2011,"For storage only",37,"Löliweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24216,347384,"CHE","National Inventory",2011,"For storage only",37,"Birri-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24217,347385,"CHE","National Inventory",2011,"For storage only",37,"Rütermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24218,347386,"CHE","National Inventory",2011,"For storage only",37,"Unterrütiweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24219,347387,"CHE","National Inventory",2011,"For storage only",37,"Sibeneichen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24220,347388,"CHE","National Inventory",2011,"For storage only",37,"Breitsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24221,347389,"CHE","National Inventory",2011,"For storage only",37,"Haumättli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24222,347390,"CHE","National Inventory",2011,"For storage only",37,"Schoren Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24223,347391,"CHE","National Inventory",2011,"For storage only",37,"Torfmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24224,347392,"CHE","National Inventory",2011,"For storage only",37,"Stille Reuss","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24225,347393,"CHE","National Inventory",2011,"For storage only",37,"Oberschachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24226,347394,"CHE","National Inventory",2011,"For storage only",37,"Walenberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24227,347395,"CHE","National Inventory",2011,"For storage only",37,"Bleienbacher Torfsee und Sängeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24228,347396,"CHE","National Inventory",2011,"For storage only",37,"Réserve de Laconnex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24229,347397,"CHE","National Inventory",2011,"For storage only",37,"Marais des Crêts","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24230,347399,"CHE","National Inventory",2011,"For storage only",37,"Teppes de Verbois","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24231,347400,"CHE","National Inventory",2011,"For storage only",37,"Bois des Douves","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24232,347401,"CHE","National Inventory",2011,"For storage only",37,"Prés de Villette","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24233,347402,"CHE","National Inventory",2011,"For storage only",37,"Marais du Château","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24234,347403,"CHE","National Inventory",2011,"For storage only",37,"L'Allondon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24235,347404,"CHE","National Inventory",2011,"For storage only",37,"Talsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24236,347405,"CHE","National Inventory",2011,"For storage only",37,"Niederriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24237,347406,"CHE","National Inventory",2011,"For storage only",37,"Klöntalersee Nordostufer","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24238,347407,"CHE","National Inventory",2011,"For storage only",37,"Oberblegisee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24239,347408,"CHE","National Inventory",2011,"For storage only",37,"Feldbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24240,347409,"CHE","National Inventory",2011,"For storage only",37,"Klöntalersee Vorauen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24241,347410,"CHE","National Inventory",2011,"For storage only",37,"Vieux Bois","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24242,347411,"CHE","National Inventory",2011,"For storage only",37,"Le Mouret","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24243,347412,"CHE","National Inventory",2011,"For storage only",37,"Vuibroye","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24244,347413,"CHE","National Inventory",2011,"For storage only",37,"Poutes Paluds","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24245,347414,"CHE","National Inventory",2011,"For storage only",37,"Le Liti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24246,347415,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves, Gletterens - Portalban","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24247,347416,"CHE","National Inventory",2011,"For storage only",37,"Gros Chadoua","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24248,347417,"CHE","National Inventory",2011,"For storage only",37,"Le Mongeron","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24249,347419,"CHE","National Inventory",2011,"For storage only",37,"Le Taconnet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24250,347420,"CHE","National Inventory",2011,"For storage only",37,"Duigls","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24251,347421,"CHE","National Inventory",2011,"For storage only",37,"La Tuilerie","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24252,347422,"CHE","National Inventory",2011,"For storage only",37,"Bois des Mouilles","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24253,347423,"CHE","National Inventory",2011,"For storage only",37,"La Petite Grave","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24254,347424,"CHE","National Inventory",2011,"For storage only",37,"Moulin de Vert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24255,347425,"CHE","National Inventory",2011,"For storage only",37,"Raclerets","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24256,347426,"CHE","National Inventory",2011,"For storage only",37,"Pointe à la Bise","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24257,347427,"CHE","National Inventory",2011,"For storage only",37,"Le Lity","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24258,347428,"CHE","National Inventory",2011,"For storage only",37,"Pro Niev","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24259,347429,"CHE","National Inventory",2011,"For storage only",37,"Isla","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24260,347430,"CHE","National Inventory",2011,"For storage only",37,"Ellwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24261,347431,"CHE","National Inventory",2011,"For storage only",37,"Zizerser Gumpen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24262,347432,"CHE","National Inventory",2011,"For storage only",37,"Girsch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24263,347433,"CHE","National Inventory",2011,"For storage only",37,"Bregl","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24264,347434,"CHE","National Inventory",2011,"For storage only",37,"Länder","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24265,347435,"CHE","National Inventory",2011,"For storage only",37,"Lais da Pesch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24266,347436,"CHE","National Inventory",2011,"For storage only",37,"Alp da Razen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24267,347437,"CHE","National Inventory",2011,"For storage only",37,"Liger Alp Falätscha","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24268,347438,"CHE","National Inventory",2011,"For storage only",37,"Sayser See","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24269,347439,"CHE","National Inventory",2011,"For storage only",37,"Punt Planet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24270,347440,"CHE","National Inventory",2011,"For storage only",37,"Flin","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24271,347441,"CHE","National Inventory",2011,"For storage only",37,"Lag Miert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24272,347442,"CHE","National Inventory",2011,"For storage only",37,"Tola","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24273,347443,"CHE","National Inventory",2011,"For storage only",37,"Fröschaboda Val Madris","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24274,347444,"CHE","National Inventory",2011,"For storage only",37,"Palüds - Agnas","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24275,347445,"CHE","National Inventory",2011,"For storage only",37,"Rutisc Tonghi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24276,347446,"CHE","National Inventory",2011,"For storage only",37,"Pra-les-Bous","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24277,347447,"CHE","National Inventory",2011,"For storage only",37,"Plan da Chomps","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24278,347448,"CHE","National Inventory",2011,"For storage only",37,"Craistas","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24279,347449,"CHE","National Inventory",2011,"For storage only",37,"Ischlas da Strada","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24280,347450,"CHE","National Inventory",2011,"For storage only",37,"Lai da Juata","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24281,347451,"CHE","National Inventory",2011,"For storage only",37,"Lai da Valpaschun","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24282,347452,"CHE","National Inventory",2011,"For storage only",37,"Siechenstuden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24283,347453,"CHE","National Inventory",2011,"For storage only",37,"Schler da Podestà","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24284,347454,"CHE","National Inventory",2011,"For storage only",37,"Malixer Alp","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24285,347455,"CHE","National Inventory",2011,"For storage only",37,"Crest'Ota","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24286,347456,"CHE","National Inventory",2011,"For storage only",37,"Pian di Alne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24287,347457,"CHE","National Inventory",2011,"For storage only",37,"Ils Lags Alp Ramosa","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24288,347458,"CHE","National Inventory",2011,"For storage only",37,"Ogna da Pardiala","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24289,347459,"CHE","National Inventory",2011,"For storage only",37,"Plaun da Foppas","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24290,347460,"CHE","National Inventory",2011,"For storage only",37,"Lag digl Oberst","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24291,347461,"CHE","National Inventory",2011,"For storage only",37,"Lai da Tarasp","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24292,347462,"CHE","National Inventory",2011,"For storage only",37,"Plaun Schumpeder","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24293,347463,"CHE","National Inventory",2011,"For storage only",37,"Juchli Käserstatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24294,347464,"CHE","National Inventory",2011,"For storage only",37,"Römerareal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24295,347465,"CHE","National Inventory",2011,"For storage only",37,"Reservat Gryfeberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24296,347466,"CHE","National Inventory",2011,"For storage only",37,"Elfenaureservat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24297,347467,"CHE","National Inventory",2011,"For storage only",37,"Waldgrube Scheuren, Orpundinsel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24298,347468,"CHE","National Inventory",2011,"For storage only",37,"Grien nordwestl. Dotzigen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24299,347469,"CHE","National Inventory",2011,"For storage only",37,"Ägelsee-Moor","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24300,347470,"CHE","National Inventory",2011,"For storage only",37,"Weiher ob Ottenleuebad","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24301,347471,"CHE","National Inventory",2011,"For storage only",37,"Au-Gand Kander","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24302,347472,"CHE","National Inventory",2011,"For storage only",37,"Les Chaufours","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24303,347473,"CHE","National Inventory",2011,"For storage only",37,"Weiher am Fuss der Gryde","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24304,347474,"CHE","National Inventory",2011,"For storage only",37,"Weiher am Rüschbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24305,347475,"CHE","National Inventory",2011,"For storage only",37,"Riedgebiet Saligrabe","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24306,347476,"CHE","National Inventory",2011,"For storage only",37,"Lauenensee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24307,347477,"CHE","National Inventory",2011,"For storage only",37,"Weiher Obere Brüesche","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24308,347478,"CHE","National Inventory",2011,"For storage only",37,"Petite Sarine","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24309,347479,"CHE","National Inventory",2011,"For storage only",37,"Flachmoor Oberste Gurbs","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24310,347480,"CHE","National Inventory",2011,"For storage only",37,"Oltigenmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24311,347481,"CHE","National Inventory",2011,"For storage only",37,"Weissenau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24312,347482,"CHE","National Inventory",2011,"For storage only",37,"Neuenzälgau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24313,347483,"CHE","National Inventory",2011,"For storage only",37,"Märchligenau-Flühli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24314,347484,"CHE","National Inventory",2011,"For storage only",37,"Schmittenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24315,347485,"CHE","National Inventory",2011,"For storage only",37,"Kleinhöchstettenau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24316,347486,"CHE","National Inventory",2011,"For storage only",37,"Feuerweiher Houti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24317,347487,"CHE","National Inventory",2011,"For storage only",37,"Grube uf der Hole","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24318,347488,"CHE","National Inventory",2011,"For storage only",37,"Alte Kiesgrube Schwarzhäusern","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24319,347489,"CHE","National Inventory",2011,"For storage only",37,"Le Châtelet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24320,347490,"CHE","National Inventory",2011,"For storage only",37,"Röselisee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24321,347491,"CHE","National Inventory",2011,"For storage only",37,"Mont Girod 1","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24322,347492,"CHE","National Inventory",2011,"For storage only",37,"Lac Vert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24323,347493,"CHE","National Inventory",2011,"For storage only",37,"Chlyrot Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24324,347494,"CHE","National Inventory",2011,"For storage only",37,"Mont Girod 2","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24325,347495,"CHE","National Inventory",2011,"For storage only",37,"La Noz, tourbière de La Sagne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24326,347496,"CHE","National Inventory",2011,"For storage only",37,"Fischbächen Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24327,347497,"CHE","National Inventory",2011,"For storage only",37,"Rüfenachtmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24328,347498,"CHE","National Inventory",2011,"For storage only",37,"Lac des Joncs","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24329,347499,"CHE","National Inventory",2011,"For storage only",37,"Auried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24330,347500,"CHE","National Inventory",2011,"For storage only",37,"Ehemalige Kiesgrube Reben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24331,347501,"CHE","National Inventory",2011,"For storage only",37,"Saaneboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24332,347502,"CHE","National Inventory",2011,"For storage only",37,"Stöckholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24333,347503,"CHE","National Inventory",2011,"For storage only",37,"Düdingermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24334,347504,"CHE","National Inventory",2011,"For storage only",37,"Rohrmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24335,347505,"CHE","National Inventory",2011,"For storage only",37,"Tümpel Hornberg Läger","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24336,347506,"CHE","National Inventory",2011,"For storage only",37,"Entenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24337,347507,"CHE","National Inventory",2011,"For storage only",37,"Les Nex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24338,347508,"CHE","National Inventory",2011,"For storage only",37,"La Grève, la Grande Gouille","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24339,347509,"CHE","National Inventory",2011,"For storage only",37,"La Grève, Autavaux - Forel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24340,347510,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves, Cheyres sud","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24341,347511,"CHE","National Inventory",2011,"For storage only",37,"Les Grèves, Cheyres - Font","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24342,347512,"CHE","National Inventory",2011,"For storage only",37,"Ancienne carrière Les Saus","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24343,347513,"CHE","National Inventory",2011,"For storage only",37,"Eggimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24344,347514,"CHE","National Inventory",2011,"For storage only",37,"Nümatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24345,347515,"CHE","National Inventory",2011,"For storage only",37,"Uf Sal Tonwarenfabrik","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24346,347516,"CHE","National Inventory",2011,"For storage only",37,"Waldgass-Grube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24347,347517,"CHE","National Inventory",2011,"For storage only",37,"Aareaue bei Jägerheim","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24348,347518,"CHE","National Inventory",2011,"For storage only",37,"Belpau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24349,347519,"CHE","National Inventory",2011,"For storage only",37,"Fischzuchtteich Gurnigelbad","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24350,347520,"CHE","National Inventory",2011,"For storage only",37,"Talweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24351,347521,"CHE","National Inventory",2011,"For storage only",37,"Bammertsgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24352,347522,"CHE","National Inventory",2011,"For storage only",37,"Sur Plian, Les Cases","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24353,347523,"CHE","National Inventory",2011,"For storage only",37,"Ziegelei Oberwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24354,347524,"CHE","National Inventory",2011,"For storage only",37,"Les Dailles","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24355,347525,"CHE","National Inventory",2011,"For storage only",37,"Steinbruch Andil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24356,347526,"CHE","National Inventory",2011,"For storage only",37,"Steingrube Bohlberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24357,347527,"CHE","National Inventory",2011,"For storage only",37,"Buechloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24358,347528,"CHE","National Inventory",2011,"For storage only",37,"Mooswasen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24359,347529,"CHE","National Inventory",2011,"For storage only",37,"Autal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24360,347530,"CHE","National Inventory",2011,"For storage only",37,"Eisweiher und Wiesenmatten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24361,347531,"CHE","National Inventory",2011,"For storage only",37,"Overesses","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24362,347532,"CHE","National Inventory",2011,"For storage only",37,"Herzogenmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24363,347533,"CHE","National Inventory",2011,"For storage only",37,"Glacier de Zinal","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24364,347534,"CHE","National Inventory",2011,"For storage only",37,"Vadret da Fenga """"Süd""""","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24365,347535,"CHE","National Inventory",2011,"For storage only",37,"Ova dal Fuorn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24366,347536,"CHE","National Inventory",2011,"For storage only",37,"Glatscher da Gavirolas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24367,347537,"CHE","National Inventory",2011,"For storage only",37,"Hüfifirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24368,347538,"CHE","National Inventory",2011,"For storage only",37,"Brunnifirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24369,347539,"CHE","National Inventory",2011,"For storage only",37,"Vadret Vallorgia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24370,347540,"CHE","National Inventory",2011,"For storage only",37,"Isola / Plan Grand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24371,347541,"CHE","National Inventory",2011,"For storage only",37,"Silvrettagletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24372,347542,"CHE","National Inventory",2011,"For storage only",37,"Alp Val Tenigia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24373,347543,"CHE","National Inventory",2011,"For storage only",37,"Vadrec da la Bondasca","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24374,347544,"CHE","National Inventory",2011,"For storage only",37,"Vadrec del Forno","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24375,347545,"CHE","National Inventory",2011,"For storage only",37,"Tambogletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24376,347546,"CHE","National Inventory",2011,"For storage only",37,"Paradiesgletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24377,347547,"CHE","National Inventory",2011,"For storage only",37,"Canal Gletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24378,347548,"CHE","National Inventory",2011,"For storage only",37,"Fanellgletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24379,347549,"CHE","National Inventory",2011,"For storage only",37,"Vadret da Grialetsch","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24380,347550,"CHE","National Inventory",2011,"For storage only",37,"Vezio - Aranno","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24381,347551,"CHE","National Inventory",2011,"For storage only",37,"Chiggiogna - Lavorgo","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24382,347552,"CHE","National Inventory",2011,"For storage only",37,"Biaschina - Giornico","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24383,347553,"CHE","National Inventory",2011,"For storage only",37,"Fontane","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24384,347554,"CHE","National Inventory",2011,"For storage only",37,"Madra","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24385,347555,"CHE","National Inventory",2011,"For storage only",37,"Calnegia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24386,347556,"CHE","National Inventory",2011,"For storage only",37,"Mött di Tirman","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24387,347557,"CHE","National Inventory",2011,"For storage only",37,"Ova da Roseg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24388,347558,"CHE","National Inventory",2011,"For storage only",37,"Ruscada","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24389,347559,"CHE","National Inventory",2011,"For storage only",37,"Langgletscher / Jegigletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24390,347560,"CHE","National Inventory",2011,"For storage only",37,"Caslano","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24391,347561,"CHE","National Inventory",2011,"For storage only",37,"Goldachtobel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24392,347562,"CHE","National Inventory",2011,"For storage only",37,"Ampferenboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24393,347563,"CHE","National Inventory",2011,"For storage only",37,"Schilstal / Sand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24394,347564,"CHE","National Inventory",2011,"For storage only",37,"Rheinau / Cholau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24395,347565,"CHE","National Inventory",2011,"For storage only",37,"Sarelli - Rosenbergli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24396,347566,"CHE","National Inventory",2011,"For storage only",37,"Sonogno - Brione","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24397,347567,"CHE","National Inventory",2011,"For storage only",37,"Vadrec da Fedoz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24398,347568,"CHE","National Inventory",2011,"For storage only",37,"Diechtergletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24399,347569,"CHE","National Inventory",2011,"For storage only",37,"Rhonegletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24400,347570,"CHE","National Inventory",2011,"For storage only",37,"Rosenlauigletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24401,347571,"CHE","National Inventory",2011,"For storage only",37,"Tiefengletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24402,347572,"CHE","National Inventory",2011,"For storage only",37,"Dammagletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24403,347573,"CHE","National Inventory",2011,"For storage only",37,"Chelengletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24404,347574,"CHE","National Inventory",2011,"For storage only",37,"Ghiacciaio del Basòdino W","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24405,347575,"CHE","National Inventory",2011,"For storage only",37,"Wallenburnfirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24406,347576,"CHE","National Inventory",2011,"For storage only",37,"Glacier de Cheilon","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24407,347577,"CHE","National Inventory",2011,"For storage only",37,"Vadret da Roseg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24408,347578,"CHE","National Inventory",2011,"For storage only",37,"Vadret da Morteratsch","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24409,347579,"CHE","National Inventory",2011,"For storage only",37,"Glatscher da Plattas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24410,347580,"CHE","National Inventory",2011,"For storage only",37,"Glatscher da Lavaz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24411,347581,"CHE","National Inventory",2011,"For storage only",37,"Vadret da Porchabella","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24412,347582,"CHE","National Inventory",2011,"For storage only",37,"Bösimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24413,347583,"CHE","National Inventory",2011,"For storage only",37,"Kartigelfirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24414,347584,"CHE","National Inventory",2011,"For storage only",37,"Feegletscher N","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24415,347585,"CHE","National Inventory",2011,"For storage only",37,"Stäuberboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24416,347586,"CHE","National Inventory",2011,"For storage only",37,"Üssre Baltschiedergletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24417,347587,"CHE","National Inventory",2011,"For storage only",37,"Kanderfirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24418,347588,"CHE","National Inventory",2011,"For storage only",37,"Wildstrubelgletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24419,347589,"CHE","National Inventory",2011,"For storage only",37,"Rezligletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24420,347590,"CHE","National Inventory",2011,"For storage only",37,"Geltengletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24421,347591,"CHE","National Inventory",2011,"For storage only",37,"Gauligletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24422,347592,"CHE","National Inventory",2011,"For storage only",37,"Hohlichtgletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24423,347593,"CHE","National Inventory",2011,"For storage only",37,"Grand Désert","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24424,347594,"CHE","National Inventory",2011,"For storage only",37,"Abberggletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24425,347595,"CHE","National Inventory",2011,"For storage only",37,"Glacier de Valsorey","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24426,347596,"CHE","National Inventory",2011,"For storage only",37,"Glacier d'Otemma","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24427,347597,"CHE","National Inventory",2011,"For storage only",37,"Glacier du Brenay","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24428,347598,"CHE","National Inventory",2011,"For storage only",37,"Glacier du Petit Combin","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24429,347599,"CHE","National Inventory",2011,"For storage only",37,"Glacier de Corbassière","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24430,347600,"CHE","National Inventory",2011,"For storage only",37,"Ofental Gletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24431,347601,"CHE","National Inventory",2011,"For storage only",37,"Triftgletscher VS","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24432,347602,"CHE","National Inventory",2011,"For storage only",37,"Loomettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24433,347603,"CHE","National Inventory",2011,"For storage only",37,"Muotta da Güvè","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24434,347604,"CHE","National Inventory",2011,"For storage only",37,"Son Roc","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24435,347605,"CHE","National Inventory",2011,"For storage only",37,"Nursera","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24436,347606,"CHE","National Inventory",2011,"For storage only",37,"Caritsch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24437,347607,"CHE","National Inventory",2011,"For storage only",37,"Pascuminer See / Bischolsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24438,347608,"CHE","National Inventory",2011,"For storage only",37,"Kristalloch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24439,347609,"CHE","National Inventory",2011,"For storage only",37,"Unter dem Heidberistöckli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24440,347610,"CHE","National Inventory",2011,"For storage only",37,"Zopf","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24441,347611,"CHE","National Inventory",2011,"For storage only",37,"Längriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24442,347612,"CHE","National Inventory",2011,"For storage only",37,"Nassboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24443,347613,"CHE","National Inventory",2011,"For storage only",37,"Lengenschwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24444,347614,"CHE","National Inventory",2011,"For storage only",37,"Bärmettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24445,347615,"CHE","National Inventory",2011,"For storage only",37,"Witi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24446,347616,"CHE","National Inventory",2011,"For storage only",37,"Hüenergütsch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24447,347617,"CHE","National Inventory",2011,"For storage only",37,"Ghirone","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24448,347618,"CHE","National Inventory",2011,"For storage only",37,"Buholzer Schwändi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24449,347619,"CHE","National Inventory",2011,"For storage only",37,"Harzisboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24450,347620,"CHE","National Inventory",2011,"For storage only",37,"Wissenbach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24451,347621,"CHE","National Inventory",2011,"For storage only",37,"Clairbief","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24452,347622,"CHE","National Inventory",2011,"For storage only",37,"Le Chablais","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24453,347623,"CHE","National Inventory",2011,"For storage only",37,"Embouchure du Chandon","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24454,347624,"CHE","National Inventory",2011,"For storage only",37,"Embouchure de la Broye","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24455,347625,"CHE","National Inventory",2011,"For storage only",37,"Solalex","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24456,347626,"CHE","National Inventory",2011,"For storage only",37,"Plustorna","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24457,347627,"CHE","National Inventory",2011,"For storage only",37,"Moore bei Unter Hungerschwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24458,347628,"CHE","National Inventory",2011,"For storage only",37,"Alp de Mem - Bosch Mosghé","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24459,347629,"CHE","National Inventory",2011,"For storage only",37,"Grüöbiwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24460,347630,"CHE","National Inventory",2011,"For storage only",37,"Moore westlich Bütlerschwandgraben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24461,347631,"CHE","National Inventory",2011,"For storage only",37,"Witiwald/Dälenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24462,347632,"CHE","National Inventory",2011,"For storage only",37,"Wusta","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24463,347633,"CHE","National Inventory",2011,"For storage only",37,"Pré aux Oies","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24464,347634,"CHE","National Inventory",2011,"For storage only",37,"Marais au nord du Petit Niremont","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24465,347635,"CHE","National Inventory",2011,"For storage only",37,"Aelggäu","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24466,347636,"CHE","National Inventory",2011,"For storage only",37,"Iles de Bogis","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24467,347637,"CHE","National Inventory",2011,"For storage only",37,"Oberglatt","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24468,347638,"CHE","National Inventory",2011,"For storage only",37,"Möriken - Wildegg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24469,347639,"CHE","National Inventory",2011,"For storage only",37,"Unterer Schiltwald","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24470,347640,"CHE","National Inventory",2011,"For storage only",37,"Badhus - Graben","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24471,347641,"CHE","National Inventory",2011,"For storage only",37,"Entlental","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24472,347642,"CHE","National Inventory",2011,"For storage only",37,"Flühli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24473,347643,"CHE","National Inventory",2011,"For storage only",37,"Bibermüli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24474,347644,"CHE","National Inventory",2011,"For storage only",37,"Nördlich Haldimattstock","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24475,347645,"CHE","National Inventory",2011,"For storage only",37,"Dättlikon - Freienstein","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24476,347646,"CHE","National Inventory",2011,"For storage only",37,"Gastere bei Selden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24477,347647,"CHE","National Inventory",2011,"For storage only",37,"Grosstal","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24478,347648,"CHE","National Inventory",2011,"For storage only",37,"Unterschächen - Spiringen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24479,347649,"CHE","National Inventory",2011,"For storage only",37,"Alpenrösli - Herrenrüti","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24480,347650,"CHE","National Inventory",2011,"For storage only",37,"Altboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24481,347651,"CHE","National Inventory",2011,"For storage only",37,"Gorneren","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24482,347652,"CHE","National Inventory",2011,"For storage only",37,"Glatschiu dil Segnas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24483,347653,"CHE","National Inventory",2011,"For storage only",37,"Freienstein - Tössegg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24484,347654,"CHE","National Inventory",2011,"For storage only",37,"Kalte Sense","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24485,347655,"CHE","National Inventory",2011,"For storage only",37,"Westlich Längenegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24486,347656,"CHE","National Inventory",2011,"For storage only",37,"Hinter den Weiden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24487,347657,"CHE","National Inventory",2011,"For storage only",37,"Fuederegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24488,347658,"CHE","National Inventory",2011,"For storage only",37,"Piei Bachei","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24489,347659,"CHE","National Inventory",2011,"For storage only",37,"Unter Wängi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24490,347660,"CHE","National Inventory",2011,"For storage only",37,"Sèche de Gimel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24491,347661,"CHE","National Inventory",2011,"For storage only",37,"Ganzenlouwina","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24492,347662,"CHE","National Inventory",2011,"For storage only",37,"Lac de Montsalvens","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24493,347663,"CHE","National Inventory",2011,"For storage only",37,"Tschingel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24494,347664,"CHE","National Inventory",2011,"For storage only",37,"Ober Gründli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24495,347665,"CHE","National Inventory",2011,"For storage only",37,"Emmeschlucht","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24496,347666,"CHE","National Inventory",2011,"For storage only",37,"Harzisboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24497,347667,"CHE","National Inventory",2011,"For storage only",37,"Rezliberg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24498,347668,"CHE","National Inventory",2011,"For storage only",37,"Hornbrügg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24499,347669,"CHE","National Inventory",2011,"For storage only",37,"Lochweid","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24500,347670,"CHE","National Inventory",2011,"For storage only",37,"Unteralp","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24501,347671,"CHE","National Inventory",2011,"For storage only",37,"Barme","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24502,347673,"CHE","National Inventory",2011,"For storage only",37,"Vadret da Palü","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24503,347706,"CHE","National Inventory",2011,"For storage only",37,"Weiher im Tal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24504,347707,"CHE","National Inventory",2011,"For storage only",37,"Hegnau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24505,347708,"CHE","National Inventory",2011,"For storage only",37,"Schwand","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24506,347709,"CHE","National Inventory",2011,"For storage only",37,"Haldengutweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24507,347710,"CHE","National Inventory",2011,"For storage only",37,"Auschachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24508,347711,"CHE","National Inventory",2011,"For storage only",37,"Lostorf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24509,347712,"CHE","National Inventory",2011,"For storage only",37,"Burger Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24510,347714,"CHE","National Inventory",2011,"For storage only",37,"Mattenplätz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24511,347715,"CHE","National Inventory",2011,"For storage only",37,"Feldenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24512,347716,"CHE","National Inventory",2011,"For storage only",37,"Halbmond","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24513,347717,"CHE","National Inventory",2011,"For storage only",37,"Butzenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24514,347718,"CHE","National Inventory",2011,"For storage only",37,"Bremengrien","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24515,347719,"CHE","National Inventory",2011,"For storage only",37,"Folenweid","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24516,347720,"CHE","National Inventory",2011,"For storage only",37,"Lindimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24517,347721,"CHE","National Inventory",2011,"For storage only",37,"Dickhölzli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24518,347722,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Egg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24519,347730,"CHE","National Inventory",2011,"For storage only",37,"Fischergrien","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24520,347732,"CHE","National Inventory",2011,"For storage only",37,"Niedermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24521,347737,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Im Türli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24522,347741,"CHE","National Inventory",2011,"For storage only",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24523,347742,"CHE","National Inventory",2011,"For storage only",37,"Gontenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24524,347743,"CHE","National Inventory",2011,"For storage only",37,"Gontenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24525,347744,"CHE","National Inventory",2011,"For storage only",37,"Gontenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24526,347745,"CHE","National Inventory",2011,"For storage only",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24527,347746,"CHE","National Inventory",2011,"For storage only",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24528,347747,"CHE","National Inventory",2011,"For storage only",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24529,347748,"CHE","National Inventory",2011,"For storage only",37,"Seewadel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24530,347749,"CHE","National Inventory",2011,"For storage only",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24531,347750,"CHE","National Inventory",2011,"For storage only",37,"Glatscher Davos la Buora","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24532,347751,"CHE","National Inventory",2011,"For storage only",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24533,347752,"CHE","National Inventory",2011,"For storage only",37,"Hudelmoos (TG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24534,347753,"CHE","National Inventory",2011,"For storage only",37,"Moore südlich Habchegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24535,347754,"CHE","National Inventory",2011,"For storage only",37,"Potersalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24536,347755,"CHE","National Inventory",2011,"For storage only",37,"Rongg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24537,347757,"CHE","National Inventory",2011,"For storage only",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24538,347758,"CHE","National Inventory",2011,"For storage only",37,"Bergalga","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24539,347759,"CHE","National Inventory",2011,"For storage only",37,"Val Frisal","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24540,347760,"CHE","National Inventory",2011,"For storage only",37,"Oberstafelbach","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24541,347761,"CHE","National Inventory",2011,"For storage only",37,"Rabiusa Engi","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24542,347762,"CHE","National Inventory",2011,"For storage only",37,"Pradatsch, Val Plavna","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24543,347763,"CHE","National Inventory",2011,"For storage only",37,"Plaun Segnas Sut","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24544,347764,"CHE","National Inventory",2011,"For storage only",37,"Plaun la Greina","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24545,347765,"CHE","National Inventory",2011,"For storage only",37,"Rischi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24546,347766,"CHE","National Inventory",2011,"For storage only",37,"Bächlisboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24547,347767,"CHE","National Inventory",2011,"For storage only",37,"Broc","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24548,347768,"CHE","National Inventory",2011,"For storage only",37,"Ragn d'Err","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24549,347769,"CHE","National Inventory",2011,"For storage only",37,"Plaun Vadret, Val Fex","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24550,347770,"CHE","National Inventory",2011,"For storage only",37,"Engstligenalp","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24551,347771,"CHE","National Inventory",2011,"For storage only",37,"Spittelmatte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24552,347772,"CHE","National Inventory",2011,"For storage only",37,"Gamchigletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24553,347773,"CHE","National Inventory",2011,"For storage only",37,"Aua da Fedoz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24554,347775,"CHE","National Inventory",2011,"For storage only",37,"Lampertschalp","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24555,347783,"CHE","National Inventory",2011,"For storage only",37,"Turpenriet / Torf-Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24556,347791,"CHE","National Inventory",2011,"For storage only",37,"Rotenbach","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24557,347811,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Rhinauer Feld und Oberboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24558,347813,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Härdli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24559,347814,"CHE","National Inventory",2011,"For storage only",37,"Raffoltersee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24560,347815,"CHE","National Inventory",2011,"For storage only",37,"Laichgebiet Lorzespitz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24561,347816,"CHE","National Inventory",2011,"For storage only",37,"Weiher bei Hermatswil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24562,347817,"CHE","National Inventory",2011,"For storage only",37,"Feuerweiher am Homberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24563,347818,"CHE","National Inventory",2011,"For storage only",37,"Biotop bei NOK Breite","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24564,347819,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube SW Runsberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24565,347820,"CHE","National Inventory",2011,"For storage only",37,"Schützenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24566,347821,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Ebnet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24567,347822,"CHE","National Inventory",2011,"For storage only",37,"Russiker Ried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24568,347823,"CHE","National Inventory",2011,"For storage only",37,"Gruben Hard und Gubel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24569,347824,"CHE","National Inventory",2011,"For storage only",37,"Weiher Gütighausen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24570,347825,"CHE","National Inventory",2011,"For storage only",37,"Truttiker Ried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24571,347826,"CHE","National Inventory",2011,"For storage only",37,"Seewädeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24572,347827,"CHE","National Inventory",2011,"For storage only",37,"Chatzensee, Chräenriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24573,347828,"CHE","National Inventory",2011,"For storage only",37,"Waldried Homberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24574,347829,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Hasel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24575,347830,"CHE","National Inventory",2011,"For storage only",37,"Írmis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24576,347831,"CHE","National Inventory",2011,"For storage only",37,"Ried Schlimberg/Vogelholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24577,347832,"CHE","National Inventory",2011,"For storage only",37,"Laichgebiet Bogen-Mesikon-Brand","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24578,347833,"CHE","National Inventory",2011,"For storage only",37,"Ried südl. Uerzlikon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24579,347834,"CHE","National Inventory",2011,"For storage only",37,"Alter Torfstich im Hagenholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24580,347835,"CHE","National Inventory",2011,"For storage only",37,"Glattaltlaufgebiet Schlosswinkel-Peterli-Solachten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24581,347836,"CHE","National Inventory",2011,"For storage only",37,"Enteler-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24582,347837,"CHE","National Inventory",2011,"For storage only",37,"Hoperenried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24583,347838,"CHE","National Inventory",2011,"For storage only",37,"Lehmgrube beim Gwerfihölzli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24584,347839,"CHE","National Inventory",2011,"For storage only",37,"Mülichrammweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24585,347840,"CHE","National Inventory",2011,"For storage only",37,"Elliker Auen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24586,347841,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Grischei","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24587,347842,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Hinterfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24588,347843,"CHE","National Inventory",2011,"For storage only",37,"Biotop Süessplätz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24589,347844,"CHE","National Inventory",2011,"For storage only",37,"Mördersee und Pfaffensee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24590,347846,"CHE","National Inventory",2011,"For storage only",37,"Wolfsgrueb","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24591,347848,"CHE","National Inventory",2011,"For storage only",37,"Grube Gündelhart","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24592,347850,"CHE","National Inventory",2011,"For storage only",37,"Räubrichseen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24593,347852,"CHE","National Inventory",2011,"For storage only",37,"Torfstiche im Seewadel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24594,347854,"CHE","National Inventory",2011,"For storage only",37,"Espen Riet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24595,347855,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Buchbrunnen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24596,347857,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Büelhüsli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24597,347858,"CHE","National Inventory",2011,"For storage only",37,"Wolfhöhli/Chüelespitz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24598,347860,"CHE","National Inventory",2011,"For storage only",37,"Schlossried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24599,347861,"CHE","National Inventory",2011,"For storage only",37,"Weierwies","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24600,347862,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Rosengarten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24601,347863,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Ebertswil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24602,347864,"CHE","National Inventory",2011,"For storage only",37,"Grube Seefeld und Stopperweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24603,347865,"CHE","National Inventory",2011,"For storage only",37,"Grabenriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24604,347866,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Kindhausen (Blutzwies)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24605,347867,"CHE","National Inventory",2011,"For storage only",37,"Wollwisli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24606,347868,"CHE","National Inventory",2011,"For storage only",37,"Weiher Lochrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24607,347869,"CHE","National Inventory",2011,"For storage only",37,"Seerhein Chuehorn - Paradies","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24608,347870,"CHE","National Inventory",2011,"For storage only",37,"Ambitzgi-/Bönlerried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24609,347877,"CHE","National Inventory",2011,"For storage only",37,"Schaarenwies/Schaarenwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24610,347878,"CHE","National Inventory",2011,"For storage only",37,"Werriker-/Glattenried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24611,347879,"CHE","National Inventory",2011,"For storage only",37,"Robenhauserried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24612,347880,"CHE","National Inventory",2011,"For storage only",37,"Pfyn West","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24613,347881,"CHE","National Inventory",2011,"For storage only",37,"Bendes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24614,347882,"CHE","National Inventory",2011,"For storage only",37,"Les Echelettes, La Léchère","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24615,347883,"CHE","National Inventory",2011,"For storage only",37,"Grand Marais","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24616,347884,"CHE","National Inventory",2011,"For storage only",37,"Les Mossières","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24617,347885,"CHE","National Inventory",2011,"For storage only",37,"Borire, Corjon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24618,347886,"CHE","National Inventory",2011,"For storage only",37,"Lac Coffy, Bois Ramel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24619,347887,"CHE","National Inventory",2011,"For storage only",37,"Le Malévoz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24620,347888,"CHE","National Inventory",2011,"For storage only",37,"Montagne de l'Au","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24621,347889,"CHE","National Inventory",2011,"For storage only",37,"Prés de Rosex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24622,347890,"CHE","National Inventory",2011,"For storage only",37,"Lac de Mont d'Orge","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24623,347891,"CHE","National Inventory",2011,"For storage only",37,"Pfyn Ost, Rosensee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24624,347892,"CHE","National Inventory",2011,"For storage only",37,"Bonigersee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24625,347893,"CHE","National Inventory",2011,"For storage only",37,"Bettmeralp","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24626,347894,"CHE","National Inventory",2011,"For storage only",37,"Chiebodenstafel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24627,347895,"CHE","National Inventory",2011,"For storage only",37,"Erlenhofweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24628,347896,"CHE","National Inventory",2011,"For storage only",37,"Lac de Tanay","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24629,347897,"CHE","National Inventory",2011,"For storage only",37,"Grand Bataillard, Marais de la Versoix","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24630,347898,"CHE","National Inventory",2011,"For storage only",37,"Reussdelta","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24631,347899,"CHE","National Inventory",2011,"For storage only",37,"Etang de Vigny","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24632,347900,"CHE","National Inventory",2011,"For storage only",37,"Etang du Sépey","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24633,347901,"CHE","National Inventory",2011,"For storage only",37,"Etang du Buron, les Bioles","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24634,347902,"CHE","National Inventory",2011,"For storage only",37,"Etang de la Scie","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24635,347903,"CHE","National Inventory",2011,"For storage only",37,"La Combaz, L'Abbaye","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24636,347904,"CHE","National Inventory",2011,"For storage only",37,"Ancienne Broye","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24637,347905,"CHE","National Inventory",2011,"For storage only",37,"Les Bidonnes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24638,347906,"CHE","National Inventory",2011,"For storage only",37,"Vernez-de-Chaux, la Coula","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24639,347907,"CHE","National Inventory",2011,"For storage only",37,"Palude San Giorgio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24640,347908,"CHE","National Inventory",2011,"For storage only",37,"Bioute, Etang d'Arnex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24641,347909,"CHE","National Inventory",2011,"For storage only",37,"Entremur","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24642,347910,"CHE","National Inventory",2011,"For storage only",37,"Pré Bernard, Creux-de-Terre","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24643,347911,"CHE","National Inventory",2011,"For storage only",37,"Planches de Sergey, Chassagne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24644,347912,"CHE","National Inventory",2011,"For storage only",37,"Tourbière des Mosses","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24645,347913,"CHE","National Inventory",2011,"For storage only",37,"Canal de Ceinture","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24646,347914,"CHE","National Inventory",2011,"For storage only",37,"Arborex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24647,347915,"CHE","National Inventory",2011,"For storage only",37,"Altwässer Thurspitz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24648,347916,"CHE","National Inventory",2011,"For storage only",37,"Tüfi-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24649,347917,"CHE","National Inventory",2011,"For storage only",37,"Waldweiher im Oberholz / Iffertsmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24650,347918,"CHE","National Inventory",2011,"For storage only",37,"Gurisee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24651,347919,"CHE","National Inventory",2011,"For storage only",37,"Türlersee NW-Ufer","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24652,347920,"CHE","National Inventory",2011,"For storage only",37,"Längerenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24653,347921,"CHE","National Inventory",2011,"For storage only",37,"Ried beim Scheibenstand","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24654,347922,"CHE","National Inventory",2011,"For storage only",37,"Lüsga","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24655,347923,"CHE","National Inventory",2011,"For storage only",37,"Hungerseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24656,347924,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Goldbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24657,347925,"CHE","National Inventory",2011,"For storage only",37,"Präuselen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24658,347926,"CHE","National Inventory",2011,"For storage only",37,"Kiesgruben Ebnet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24659,347927,"CHE","National Inventory",2011,"For storage only",37,"Seewadel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24660,347928,"CHE","National Inventory",2011,"For storage only",37,"Isert Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24661,347929,"CHE","National Inventory",2011,"For storage only",37,"Hätteliweiher Oberholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24662,347930,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Rüteren","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24663,347931,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Garwid","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24664,347932,"CHE","National Inventory",2011,"For storage only",37,"Weiher Häsental","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24665,347933,"CHE","National Inventory",2011,"For storage only",37,"Poutafontana","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24666,347934,"CHE","National Inventory",2011,"For storage only",37,"Le Rosel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24667,347935,"CHE","National Inventory",2011,"For storage only",37,"Rüss-Spitz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24668,347936,"CHE","National Inventory",2011,"For storage only",37,"Binzmüli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24669,347937,"CHE","National Inventory",2011,"For storage only",37,"Steinhauser Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24670,347938,"CHE","National Inventory",2011,"For storage only",37,"Eselacherried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24671,347939,"CHE","National Inventory",2011,"For storage only",37,"Amphibienbiotope Allmend III","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24672,347940,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Egghau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24673,347941,"CHE","National Inventory",2011,"For storage only",37,"Sandlochgrube Chomberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24674,347942,"CHE","National Inventory",2011,"For storage only",37,"Weiertal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24675,347943,"CHE","National Inventory",2011,"For storage only",37,"Lehmgrube Dättnau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24676,347944,"CHE","National Inventory",2011,"For storage only",37,"Hänsiried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24677,347945,"CHE","National Inventory",2011,"For storage only",37,"Mülliweiher, Weiher am Rossweg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24678,347946,"CHE","National Inventory",2011,"For storage only",37,"Weiher und Grube bei Ribacher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24679,347947,"CHE","National Inventory",2011,"For storage only",37,"Weiher Stigenhof","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24680,347948,"CHE","National Inventory",2011,"For storage only",37,"Weiher Fromoos (Gerhauweiher)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24681,347949,"CHE","National Inventory",2011,"For storage only",37,"Totentäli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24682,347950,"CHE","National Inventory",2011,"For storage only",37,"Alpe di Quarnéi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24683,347952,"CHE","National Inventory",2011,"For storage only",37,"Saint-Victor","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24684,347954,"CHE","National Inventory",2011,"For storage only",37,"Santa Maria","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24685,347955,"CHE","National Inventory",2011,"For storage only",37,"Belladrum","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24686,347958,"CHE","National Inventory",2011,"For storage only",37,"Lago d'Origlio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24687,347959,"CHE","National Inventory",2011,"For storage only",37,"Miolan","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24688,347960,"CHE","National Inventory",2011,"For storage only",37,"Pian Segno II","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24689,347961,"CHE","National Inventory",2011,"For storage only",37,"Petit Niremont","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24690,347962,"CHE","National Inventory",2011,"For storage only",37,"Waldeggmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24691,347963,"CHE","National Inventory",2011,"For storage only",37,"Les Saignolis I","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24692,347964,"CHE","National Inventory",2011,"For storage only",37,"Les Saignolis II","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24693,347968,"CHE","National Inventory",2011,"For storage only",37,"Jänzimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24694,347969,"CHE","National Inventory",2011,"For storage only",37,"Weiher Hinter Richisalp","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24695,347971,"CHE","National Inventory",2011,"For storage only",37,"Sumpf unterh. Station Heustrich","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24696,347973,"CHE","National Inventory",2011,"For storage only",37,"Campi Grandi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24697,347975,"CHE","National Inventory",2011,"For storage only",37,"Combes Chappuis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24698,347977,"CHE","National Inventory",2011,"For storage only",37,"Haute Seymaz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24699,347982,"CHE","National Inventory",2011,"For storage only",37,"Dolliets","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24700,347985,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Mülibach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24701,347988,"CHE","National Inventory",2011,"For storage only",37,"Ried Gmeimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24702,347991,"CHE","National Inventory",2011,"For storage only",37,"Bunau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24703,347993,"CHE","National Inventory",2011,"For storage only",37,"Muscherensense","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24704,347994,"CHE","National Inventory",2011,"For storage only",37,"Schlaufe","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24705,347996,"CHE","National Inventory",2011,"For storage only",37,"Ca del Boscat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24706,347997,"CHE","National Inventory",2011,"For storage only",37,"Stagni San Giorgio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24707,347998,"CHE","National Inventory",2011,"For storage only",37,"Scairolo Vecchio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24708,348000,"CHE","National Inventory",2011,"For storage only",37,"Pré-Béroux","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24709,348003,"CHE","National Inventory",2011,"For storage only",37,"En Pratchie","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24710,348010,"CHE","National Inventory",2011,"For storage only",37,"Cavloc","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24711,348014,"CHE","National Inventory",2011,"For storage only",37,"Bois de Chênes, Lac Vert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24712,348017,"CHE","National Inventory",2011,"For storage only",37,"Les Coeudres","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24713,348019,"CHE","National Inventory",2011,"For storage only",37,"La Coeuvatte","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24714,348022,"CHE","National Inventory",2011,"For storage only",37,"Eigental, Pantliried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24715,348024,"CHE","National Inventory",2011,"For storage only",37,"Bichelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24716,348028,"CHE","National Inventory",2011,"For storage only",37,"Canton del Marcio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24717,348033,"CHE","National Inventory",2011,"For storage only",37,"Ägelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24718,348036,"CHE","National Inventory",2011,"For storage only",37,"Canal de la Tuilière","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24719,348037,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Buech","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24720,348039,"CHE","National Inventory",2011,"For storage only",37,"Musital","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24721,348041,"CHE","National Inventory",2011,"For storage only",37,"Mittelfeld-Kiesgrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24722,348044,"CHE","National Inventory",2011,"For storage only",37,"Grütriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24723,348046,"CHE","National Inventory",2011,"For storage only",37,"Arales","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24724,348050,"CHE","National Inventory",2011,"For storage only",37,"Bistoquette et Paradis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24725,348053,"CHE","National Inventory",2011,"For storage only",37,"Langstuden Befang","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24726,348057,"CHE","National Inventory",2011,"For storage only",37,"Ritzenmattseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24727,348061,"CHE","National Inventory",2011,"For storage only",37,"Feret","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24728,348063,"CHE","National Inventory",2011,"For storage only",37,"Obermatteggweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24729,348064,"CHE","National Inventory",2011,"For storage only",37,"Usser Allmend","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24730,348066,"CHE","National Inventory",2011,"For storage only",37,"Glaubenbielen Ribihütte","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24731,348069,"CHE","National Inventory",2011,"For storage only",37,"Bois de Porte, les Dailles","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24732,348071,"CHE","National Inventory",2011,"For storage only",37,"Buech/Steiacher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24733,348074,"CHE","National Inventory",2011,"For storage only",37,"Chrutzelried, Heidenried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24734,348081,"CHE","National Inventory",2011,"For storage only",37,"Foort","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24735,348084,"CHE","National Inventory",2011,"For storage only",37,"Alte Oelerdeponie/Munimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24736,348086,"CHE","National Inventory",2011,"For storage only",37,"Bärmatten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24737,348089,"CHE","National Inventory",2011,"For storage only",37,"Sachsler Seefeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24738,348090,"CHE","National Inventory",2011,"For storage only",37,"Schlossweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24739,348091,"CHE","National Inventory",2011,"For storage only",37,"Le Foulet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24740,348092,"CHE","National Inventory",2011,"For storage only",37,"Gnappiried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24741,348093,"CHE","National Inventory",2011,"For storage only",37,"Vierwaldstättersee Hüttenort","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24742,348094,"CHE","National Inventory",2011,"For storage only",37,"Stansstader Ried/Rotzloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24743,348095,"CHE","National Inventory",2011,"For storage only",37,"Chrotteseeli Obbürgen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24744,348096,"CHE","National Inventory",2011,"For storage only",37,"Le Loclat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24745,348097,"CHE","National Inventory",2011,"For storage only",37,"Hanenriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24746,348098,"CHE","National Inventory",2011,"For storage only",37,"La Marnière d'Hauterive","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24747,348099,"CHE","National Inventory",2011,"For storage only",37,"Sewenseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24748,348100,"CHE","National Inventory",2011,"For storage only",37,"Melbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24749,348101,"CHE","National Inventory",2011,"For storage only",37,"Mörlisee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24750,348102,"CHE","National Inventory",2011,"For storage only",37,"Gerzensee, Blindseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24751,348103,"CHE","National Inventory",2011,"For storage only",37,"Bisen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24752,348104,"CHE","National Inventory",2011,"For storage only",37,"Eselschwanz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24753,348105,"CHE","National Inventory",2011,"For storage only",37,"Schlierenrüti, Reservat Sarna","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24754,348106,"CHE","National Inventory",2011,"For storage only",37,"Marnière du Plan du Bois","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24755,348107,"CHE","National Inventory",2011,"For storage only",37,"Forenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24756,348108,"CHE","National Inventory",2011,"For storage only",37,"Moosweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24757,348109,"CHE","National Inventory",2011,"For storage only",37,"Chänzeli / Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24758,348110,"CHE","National Inventory",2011,"For storage only",37,"Risch, Rotseeried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24759,348111,"CHE","National Inventory",2011,"For storage only",37,"Ottigenbüel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24760,348112,"CHE","National Inventory",2011,"For storage only",37,"Wannenholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24761,348113,"CHE","National Inventory",2011,"For storage only",37,"La Paulière","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24762,348114,"CHE","National Inventory",2011,"For storage only",37,"Riffigweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24763,348115,"CHE","National Inventory",2011,"For storage only",37,"Banriet / Burst","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24764,348116,"CHE","National Inventory",2011,"For storage only",37,"Les Goudebas","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24765,348117,"CHE","National Inventory",2011,"For storage only",37,"La Fabrique","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24766,348118,"CHE","National Inventory",2011,"For storage only",37,"Pointe du Grain","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24767,348119,"CHE","National Inventory",2011,"For storage only",37,"Les Eplatures","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24768,348120,"CHE","National Inventory",2011,"For storage only",37,"La Galandrure","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24769,348121,"CHE","National Inventory",2011,"For storage only",37,"La Gare","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24770,348122,"CHE","National Inventory",2011,"For storage only",37,"Lättloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24771,348123,"CHE","National Inventory",2011,"For storage only",37,"Glatttal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24772,348124,"CHE","National Inventory",2011,"For storage only",37,"St. Sebastian","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24773,348125,"CHE","National Inventory",2011,"For storage only",37,"Siessenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24774,348126,"CHE","National Inventory",2011,"For storage only",37,"Briggisweiher N Auenhof","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24775,348127,"CHE","National Inventory",2011,"For storage only",37,"Joner Allmeind","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24776,348128,"CHE","National Inventory",2011,"For storage only",37,"Allmeind","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24777,348129,"CHE","National Inventory",2011,"For storage only",37,"Ballastière","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24778,348130,"CHE","National Inventory",2011,"For storage only",37,"Bodenseeriet Altenrhein","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24779,348131,"CHE","National Inventory",2011,"For storage only",37,"Bi den Seelenen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24780,348132,"CHE","National Inventory",2011,"For storage only",37,"Baggerseen im Staffelriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24781,348133,"CHE","National Inventory",2011,"For storage only",37,"Bettenauerweier","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24782,348134,"CHE","National Inventory",2011,"For storage only",37,"Gill-Henau Reservat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24783,348135,"CHE","National Inventory",2011,"For storage only",37,"Hasenlooweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24784,348136,"CHE","National Inventory",2011,"For storage only",37,"Huserfelsen, Himmelbleichi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24785,348137,"CHE","National Inventory",2011,"For storage only",37,"Ehemalige Kiesgrube Au","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24786,348138,"CHE","National Inventory",2011,"For storage only",37,"Riet Zuzwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24787,348139,"CHE","National Inventory",2011,"For storage only",37,"Turpenriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24788,348140,"CHE","National Inventory",2011,"For storage only",37,"Burstried, Galgenmad","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24789,348141,"CHE","National Inventory",2011,"For storage only",37,"Schlossweiher Altishofen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24790,348142,"CHE","National Inventory",2011,"For storage only",37,"Alte Lehmgrube Hilpert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24791,348143,"CHE","National Inventory",2011,"For storage only",37,"Wichenstein","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24792,348144,"CHE","National Inventory",2011,"For storage only",37,"Spitzmäder","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24793,348145,"CHE","National Inventory",2011,"For storage only",37,"Wenigerweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24794,348146,"CHE","National Inventory",2011,"For storage only",37,"Wiesenfurt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24795,348147,"CHE","National Inventory",2011,"For storage only",37,"Kaltbrunnerriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24796,348148,"CHE","National Inventory",2011,"For storage only",37,"Ochsenweid","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24797,348149,"CHE","National Inventory",2011,"For storage only",37,"Mösli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24798,348150,"CHE","National Inventory",2011,"For storage only",37,"Egelsee bei Bad Forstegg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24799,348151,"CHE","National Inventory",2011,"For storage only",37,"Ziegelei Bruggwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24800,348152,"CHE","National Inventory",2011,"For storage only",37,"Huebermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24801,348153,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Schuppis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24802,348154,"CHE","National Inventory",2011,"For storage only",37,"Kiessammler Vilters","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24803,348155,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Feerbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24804,348156,"CHE","National Inventory",2011,"For storage only",37,"Fuchsloch - Buriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24805,348157,"CHE","National Inventory",2011,"For storage only",37,"Retentionsbecken Ceres Rhein-Au","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24806,348158,"CHE","National Inventory",2011,"For storage only",37,"En Cortio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24807,348159,"CHE","National Inventory",2011,"For storage only",37,"La Gruère","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24808,348160,"CHE","National Inventory",2011,"For storage only",37,"Les Royes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24809,348161,"CHE","National Inventory",2011,"For storage only",37,"Côte dOye","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24810,348162,"CHE","National Inventory",2011,"For storage only",37,"Etangs de Vendlincourt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24811,348163,"CHE","National Inventory",2011,"For storage only",37,"Lorette","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24812,348164,"CHE","National Inventory",2011,"For storage only",37,"Bellefontaine","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24813,348165,"CHE","National Inventory",2011,"For storage only",37,"Hasliweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24814,348166,"CHE","National Inventory",2011,"For storage only",37,"Sous Bâme","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24815,348167,"CHE","National Inventory",2011,"For storage only",37,"La Bouège - La Goule","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24816,348168,"CHE","National Inventory",2011,"For storage only",37,"Etangs Rougeat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24817,348169,"CHE","National Inventory",2011,"For storage only",37,"Etangs de Bonfol","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24818,348170,"CHE","National Inventory",2011,"For storage only",37,"Les Queues de Chats","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24819,348171,"CHE","National Inventory",2011,"For storage only",37,"Le Martinet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24820,348172,"CHE","National Inventory",2011,"For storage only",37,"Les Coeudres","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24821,348173,"CHE","National Inventory",2011,"For storage only",37,"Grube Stoos Hüswil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24822,348174,"CHE","National Inventory",2011,"For storage only",37,"Etang Corbat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24823,348175,"CHE","National Inventory",2011,"For storage only",37,"Le Refrain - La Bouège","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24824,348176,"CHE","National Inventory",2011,"For storage only",37,"Bois de Chaux","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24825,348177,"CHE","National Inventory",2011,"For storage only",37,"Combe Tabeillon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24826,348178,"CHE","National Inventory",2011,"For storage only",37,"Combe du Bez","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24827,348179,"CHE","National Inventory",2011,"For storage only",37,"Foradrai","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24828,348180,"CHE","National Inventory",2011,"For storage only",37,"Les Charbonnières","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24829,348181,"CHE","National Inventory",2011,"For storage only",37,"Moulin de Bavelier","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24830,348182,"CHE","National Inventory",2011,"For storage only",37,"Les Pommerats","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24831,348183,"CHE","National Inventory",2011,"For storage only",37,"La Réselle","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24832,348184,"CHE","National Inventory",2011,"For storage only",37,"Bois Banal - Moulin Jeannotat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24833,348185,"CHE","National Inventory",2011,"For storage only",37,"Les Saignes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24834,348186,"CHE","National Inventory",2011,"For storage only",37,"La Sagne à Droz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24835,348187,"CHE","National Inventory",2011,"For storage only",37,"La Vauchotte - Bois Banal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24836,348188,"CHE","National Inventory",2011,"For storage only",37,"Dos le Cras","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24837,348189,"CHE","National Inventory",2011,"For storage only",37,"Plaine de Saigne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24838,348190,"CHE","National Inventory",2011,"For storage only",37,"La Goule - Le Theusseret","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24839,348191,"CHE","National Inventory",2011,"For storage only",37,"Fuchseren","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24840,348192,"CHE","National Inventory",2011,"For storage only",37,"Les Esserts","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24841,348193,"CHE","National Inventory",2011,"For storage only",37,"Wauwilermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24842,348194,"CHE","National Inventory",2011,"For storage only",37,"Moosschürweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24843,348195,"CHE","National Inventory",2011,"For storage only",37,"Chüsenrainwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24844,348196,"CHE","National Inventory",2011,"For storage only",37,"Hetzligermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24845,348197,"CHE","National Inventory",2011,"For storage only",37,"Mühleweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24846,348198,"CHE","National Inventory",2011,"For storage only",37,"Staudenschachen Südarm","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24847,348199,"CHE","National Inventory",2011,"For storage only",37,"Unterallmend","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24848,348200,"CHE","National Inventory",2011,"For storage only",37,"Le Colliard","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24849,348201,"CHE","National Inventory",2011,"For storage only",37,"Steinibüelweier","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24850,348202,"CHE","National Inventory",2011,"For storage only",37,"Uffikonermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24851,348203,"CHE","National Inventory",2011,"For storage only",37,"NE Hirsboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24852,348204,"CHE","National Inventory",2011,"For storage only",37,"Chalchloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24853,348205,"CHE","National Inventory",2011,"For storage only",37,"Hinter Roren","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24854,348206,"CHE","National Inventory",2011,"For storage only",37,"Grueb Grossfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24855,348207,"CHE","National Inventory",2011,"For storage only",37,"Wagenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24856,348208,"CHE","National Inventory",2011,"For storage only",37,"Magdenau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24857,348209,"CHE","National Inventory",2011,"For storage only",37,"Turbemoos (Forenwäldli)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24858,348210,"CHE","National Inventory",2011,"For storage only",37,"Turbiweiher - Ronfeldweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24859,348211,"CHE","National Inventory",2011,"For storage only",37,"Gürmschmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24860,348212,"CHE","National Inventory",2011,"For storage only",37,"Moos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24861,348213,"CHE","National Inventory",2011,"For storage only",37,"Mettlenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24862,348214,"CHE","National Inventory",2011,"For storage only",37,"Gütschweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24863,348215,"CHE","National Inventory",2011,"For storage only",37,"Naturlehrgebiet Buechwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24864,348216,"CHE","National Inventory",2011,"For storage only",37,"Unter Chlotisberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24865,348217,"CHE","National Inventory",2011,"For storage only",37,"Vogelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24866,348218,"CHE","National Inventory",2011,"For storage only",37,"Schützenfeld - Moospünten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24867,348219,"CHE","National Inventory",2011,"For storage only",37,"Tuetenseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24868,348220,"CHE","National Inventory",2011,"For storage only",37,"Gütsch - Feldhof","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24869,348221,"CHE","National Inventory",2011,"For storage only",37,"Steinibachried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24870,348222,"CHE","National Inventory",2011,"For storage only",37,"Burgschachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24871,348223,"CHE","National Inventory",2011,"For storage only",37,"Wolermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24872,348224,"CHE","National Inventory",2011,"For storage only",37,"Hagimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24873,348225,"CHE","National Inventory",2011,"For storage only",37,"Stadelmoosweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24874,348226,"CHE","National Inventory",2011,"For storage only",37,"Ostergau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24875,348227,"CHE","National Inventory",2011,"For storage only",37,"Unterbüel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24876,348228,"CHE","National Inventory",2011,"For storage only",37,"Gola di Lago","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24877,348229,"CHE","National Inventory",2011,"For storage only",37,"Hauptwiler Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24878,348230,"CHE","National Inventory",2011,"For storage only",37,"Isola Sgraver","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24879,348231,"CHE","National Inventory",2011,"For storage only",37,"Bolle di Mondrigo","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24880,348232,"CHE","National Inventory",2011,"For storage only",37,"Stagno Paron","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24881,348233,"CHE","National Inventory",2011,"For storage only",37,"Stagno Motto della Costa","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24882,348234,"CHE","National Inventory",2011,"For storage only",37,"Stagno Figino-Cásoro","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24883,348235,"CHE","National Inventory",2011,"For storage only",37,"Barbescio - Bolletina Lunga","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24884,348236,"CHE","National Inventory",2011,"For storage only",37,"Stagno Agra","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24885,348237,"CHE","National Inventory",2011,"For storage only",37,"Bolle di Magadino","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24886,348238,"CHE","National Inventory",2011,"For storage only",37,"Laghetto d'Orbello","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24887,348239,"CHE","National Inventory",2011,"For storage only",37,"Laghetto","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24888,348240,"CHE","National Inventory",2011,"For storage only",37,"Lago di Lugano a Cantonetto","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24889,348241,"CHE","National Inventory",2011,"For storage only",37,"Cava Gere Croglio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24890,348242,"CHE","National Inventory",2011,"For storage only",37,"Ressiga","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24891,348243,"CHE","National Inventory",2011,"For storage only",37,"Canale Demanio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24892,348244,"CHE","National Inventory",2011,"For storage only",37,"Cava Rivaccia","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24893,348245,"CHE","National Inventory",2011,"For storage only",37,"Bächli - Gishalde","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24894,348246,"CHE","National Inventory",2011,"For storage only",37,"Pflanzgarten Tätsch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24895,348247,"CHE","National Inventory",2011,"For storage only",37,"Güttingersrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24896,348248,"CHE","National Inventory",2011,"For storage only",37,"Aue N Aachmündung","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24897,348249,"CHE","National Inventory",2011,"For storage only",37,"Stockrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24898,348250,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Freudenberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24899,348251,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Atzenholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24900,348252,"CHE","National Inventory",2011,"For storage only",37,"Piano di Arbigo","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24901,348253,"CHE","National Inventory",2011,"For storage only",37,"Arniger Witi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24902,348254,"CHE","National Inventory",2011,"For storage only",37,"Bolle di S. Martino","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24903,348255,"CHE","National Inventory",2011,"For storage only",37,"Zuckenmattweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24904,348256,"CHE","National Inventory",2011,"For storage only",37,"Riet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24905,348257,"CHE","National Inventory",2011,"For storage only",37,"Stagno di Progero","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24906,348258,"CHE","National Inventory",2011,"For storage only",37,"Cassina di Lago","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24907,348259,"CHE","National Inventory",2011,"For storage only",37,"Malcantone","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24908,348260,"CHE","National Inventory",2011,"For storage only",37,"Pescicoltura Golino","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24909,348261,"CHE","National Inventory",2011,"For storage only",37,"Wiimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24910,348262,"CHE","National Inventory",2011,"For storage only",37,"Delta della Maggia","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24911,348263,"CHE","National Inventory",2011,"For storage only",37,"Cava Motto Grande","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24912,348264,"CHE","National Inventory",2011,"For storage only",37,"Valle della Motta","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24913,348265,"CHE","National Inventory",2011,"For storage only",37,"Basciocca (ovest)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24914,348266,"CHE","National Inventory",2011,"For storage only",37,"Bolla di Loderio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24915,348267,"CHE","National Inventory",2011,"For storage only",37,"Stagno Guana","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24916,348268,"CHE","National Inventory",2011,"For storage only",37,"Pre Murin","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24917,348269,"CHE","National Inventory",2011,"For storage only",37,"Bosco Agnuzzo","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24918,348270,"CHE","National Inventory",2011,"For storage only",37,"Rompiga","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24919,348271,"CHE","National Inventory",2011,"For storage only",37,"Pian Gallina","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24920,348272,"CHE","National Inventory",2011,"For storage only",37,"Vigna","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24921,348273,"CHE","National Inventory",2011,"For storage only",37,"Torrazza - Pra Signora","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24922,348274,"CHE","National Inventory",2011,"For storage only",37,"Dosso dell'Ora - Dosso Bello","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24923,348275,"CHE","National Inventory",2011,"For storage only",37,"Ciossa Antognini","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24924,348276,"CHE","National Inventory",2011,"For storage only",37,"Vigna lunga - Trebbione","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24925,348277,"CHE","National Inventory",2011,"For storage only",37,"Alpler See","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24926,348278,"CHE","National Inventory",2011,"For storage only",37,"Valle della Motta/Ai Prati","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24927,348279,"CHE","National Inventory",2011,"For storage only",37,"Pra Coltello","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24928,348280,"CHE","National Inventory",2011,"For storage only",37,"Sürch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24929,348281,"CHE","National Inventory",2011,"For storage only",37,"Stagno Avra","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24930,348282,"CHE","National Inventory",2011,"For storage only",37,"Pozza Bosco Penz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24931,348283,"CHE","National Inventory",2011,"For storage only",37,"Stagni Campagna Seseglio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24932,348284,"CHE","National Inventory",2011,"For storage only",37,"Pozza Moreggi Pedrinate","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24933,348285,"CHE","National Inventory",2011,"For storage only",37,"Stagno Pra Vicc","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24934,348286,"CHE","National Inventory",2011,"For storage only",37,"Pozza Monzell","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24935,348287,"CHE","National Inventory",2011,"For storage only",37,"Stagno Roggio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24936,348288,"CHE","National Inventory",2011,"For storage only",37,"Lanca Saligin","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24937,348289,"CHE","National Inventory",2011,"For storage only",37,"Meandri del Laveggio e Colombera","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24938,348290,"CHE","National Inventory",2011,"For storage only",37,"Cava Boschi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24939,348291,"CHE","National Inventory",2011,"For storage only",37,"Lanche di Iragna","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24940,348292,"CHE","National Inventory",2011,"For storage only",37,"Stagno Campi Grandi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24941,348293,"CHE","National Inventory",2011,"For storage only",37,"Laghetto Pianca","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24942,348294,"CHE","National Inventory",2011,"For storage only",37,"Laghetto di Masnee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24943,348295,"CHE","National Inventory",2011,"For storage only",37,"Pozza a est di Motto","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24944,348296,"CHE","National Inventory",2011,"For storage only",37,"Prato Grande","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24945,348297,"CHE","National Inventory",2011,"For storage only",37,"Breitried - Schützenried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24946,348298,"CHE","National Inventory",2011,"For storage only",37,"Klosterried Ingenbohl","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24947,348299,"CHE","National Inventory",2011,"For storage only",37,"Tümpel Stierenberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24948,348300,"CHE","National Inventory",2011,"For storage only",37,"Tümpel untere Erli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24949,348301,"CHE","National Inventory",2011,"For storage only",37,"Obergösger Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24950,348302,"CHE","National Inventory",2011,"For storage only",37,"Erlenmoos, Haag","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24951,348303,"CHE","National Inventory",2011,"For storage only",37,"Biedermannsgrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24952,348304,"CHE","National Inventory",2011,"For storage only",37,"Trachslauerweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24953,348305,"CHE","National Inventory",2011,"For storage only",37,"Weiher Lochgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24954,348306,"CHE","National Inventory",2011,"For storage only",37,"Bätzimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24955,348307,"CHE","National Inventory",2011,"For storage only",37,"Lehmlöcher Dicki","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24956,348308,"CHE","National Inventory",2011,"For storage only",37,"Oberer Sihlsee Euthal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24957,348309,"CHE","National Inventory",2011,"For storage only",37,"Dreiwässern","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24958,348310,"CHE","National Inventory",2011,"For storage only",37,"Sihlsee S Schönbächli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24959,348312,"CHE","National Inventory",2011,"For storage only",37,"Reumeren","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24960,348313,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Schürliwiesen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24961,348314,"CHE","National Inventory",2011,"For storage only",37,"Klosterweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24962,348315,"CHE","National Inventory",2011,"For storage only",37,"Aazopf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24963,348316,"CHE","National Inventory",2011,"For storage only",37,"Bohnerzgruben Chäferhölzli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24964,348317,"CHE","National Inventory",2011,"For storage only",37,"Espel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24965,348318,"CHE","National Inventory",2011,"For storage only",37,"Waffenplatz Breitfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24966,348319,"CHE","National Inventory",2011,"For storage only",37,"Weiher NE Hohfirst","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24967,348320,"CHE","National Inventory",2011,"For storage only",37,"Bildweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24968,348321,"CHE","National Inventory",2011,"For storage only",37,"Moosanger","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24969,348322,"CHE","National Inventory",2011,"For storage only",37,"Bachtelli/Seeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24970,348323,"CHE","National Inventory",2011,"For storage only",37,"Rohrenbüeli-Stritholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24971,348324,"CHE","National Inventory",2011,"For storage only",37,"Chli Aarli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24972,348325,"CHE","National Inventory",2011,"For storage only",37,"Bohnerzgruben Färberwiesli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24973,348326,"CHE","National Inventory",2011,"For storage only",37,"Sägel, Schutt, Lauerzersee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24974,348327,"CHE","National Inventory",2011,"For storage only",37,"Moos-Buck Herblingen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24975,348328,"CHE","National Inventory",2011,"For storage only",37,"Feuchtgebiet Widen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24976,348329,"CHE","National Inventory",2011,"For storage only",37,"Eschheimer Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24977,348330,"CHE","National Inventory",2011,"For storage only",37,"Alte Biberschleife","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24978,348331,"CHE","National Inventory",2011,"For storage only",37,"Ried/Lehmgrueb Hofenacker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24979,348332,"CHE","National Inventory",2011,"For storage only",37,"Egelsee Degerfeld Wagenhausen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24980,348333,"CHE","National Inventory",2011,"For storage only",37,"Lehmlöcher Rüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24981,348334,"CHE","National Inventory",2011,"For storage only",37,"Morgetshofsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24982,348335,"CHE","National Inventory",2011,"For storage only",37,"Hüttwiler Seen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24983,348336,"CHE","National Inventory",2011,"For storage only",37,"Sihlsee Steinbach (Lukasrank)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24984,348337,"CHE","National Inventory",2011,"For storage only",37,"Kiesweiher Weidacker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24985,348338,"CHE","National Inventory",2011,"For storage only",37,"Googlete","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24986,348339,"CHE","National Inventory",2011,"For storage only",37,"Bommer Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24987,348340,"CHE","National Inventory",2011,"For storage only",37,"Lengwiler Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24988,348341,"CHE","National Inventory",2011,"For storage only",37,"Seeburg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24989,348342,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Wolfsbüel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24990,348343,"CHE","National Inventory",2011,"For storage only",37,"Lommiser Riet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24991,348344,"CHE","National Inventory",2011,"For storage only",37,"Biessenhofer Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24992,348345,"CHE","National Inventory",2011,"For storage only",37,"Kiesgruben Neuhus - Bälisteig","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24993,348346,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Bärg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24994,348347,"CHE","National Inventory",2011,"For storage only",37,"Grube Trubeschloo","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24995,348348,"CHE","National Inventory",2011,"For storage only",37,"Barchetsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24996,348349,"CHE","National Inventory",2011,"For storage only",37,"Hudelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24997,348350,"CHE","National Inventory",2011,"For storage only",37,"Schoren Riet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24998,348351,"CHE","National Inventory",2011,"For storage only",37,"Ägelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -24999,348352,"CHE","National Inventory",2011,"For storage only",37,"Waldriet Grosswis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25000,348353,"CHE","National Inventory",2011,"For storage only",37,"Heeristobel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25001,348354,"CHE","National Inventory",2011,"For storage only",37,"Etzwilerriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25002,348355,"CHE","National Inventory",2011,"For storage only",37,"Reservat Schule Kaltenbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25003,348356,"CHE","National Inventory",2011,"For storage only",37,"Grube Moos N Weerswilen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25004,348357,"CHE","National Inventory",2011,"For storage only",37,"Sangen - Mülifang","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25005,348358,"CHE","National Inventory",2011,"For storage only",37,"Lehmgrube Opfershofen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25006,348359,"CHE","National Inventory",2011,"For storage only",37,"Bächler","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25007,348360,"CHE","National Inventory",2011,"For storage only",37,"Luggeseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25008,348361,"CHE","National Inventory",2011,"For storage only",37,"Müliweier","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25009,348362,"CHE","National Inventory",2011,"For storage only",37,"Mösliweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25010,348363,"CHE","National Inventory",2011,"For storage only",37,"Ägelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25011,348364,"CHE","National Inventory",2011,"For storage only",37,"Baggersee Chasperäcker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25012,348365,"CHE","National Inventory",2011,"For storage only",37,"Allmend","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25013,348366,"CHE","National Inventory",2011,"For storage only",37,"Grüt - Bietenhart - Wolfsbüel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -14594,348781,"ESP","Birdlife IBA",2008,"For storage only",28,"Islote de Lobos","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14654,348789,"ESP","Birdlife IBA",2008,"For storage only",28,"La Caldera de Taburiente","Nacional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14624,348798,"ESP","Birdlife IBA",2008,"For storage only",28,"Izki","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14563,348858,"ESP","Catalonia MEE",2002,"For storage only",28,"Estanys de la Jonquera","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14608,348962,"ESP","Catalonia MEE",2002,"For storage only",28,"Massís de l`Albera","Nature Place (National Interest)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14589,349062,"ESP","Catalonia MEE",2002,"For storage only",28,"L`illa de Fluvià","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14517,349094,"ESP","Birdlife IBA",2007,"For storage only",28,"Cañón del Río Lobos","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14521,349127,"ESP","Catalonia MEE",2002,"For storage only",28,"Cap de Creus","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14679,349256,"ESP","Catalonia MEE",2002,"For storage only",28,"Ribera de l`Algars","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14547,349265,"ESP","Catalonia MEE",2002,"For storage only",28,"Desembocadura del Riu Gaià","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14671,349318,"ESP","Birdlife IBA",2008,"For storage only",28,"Complexo intermareal Umia-O Grove A Lanzada, punta Carreir+¦n e lagoa Bodeira","Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14672,349347,"ESP","Birdlife IBA",2008,"For storage only",28,"Complexo intermareal Umia-O Grove, A Lanzada, punta Carreir+¦n e lagoa Bodeira","Protected Wetland","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14513,349405,"ESP","Birdlife IBA",2007,"For storage only",28,"Valles Occidentales","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14751,349482,"ESP","Catalonia MEE",2002,"For storage only",28,"Torrent del Pi","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14766,349623,"ESP","Birdlife IBA",2007,"For storage only",28,"Valle de Iruelas","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14697,349647,"ESP","Birdlife IBA",2008,"For storage only",28,"Roque de Garachico","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14681,349700,"ESP","Catalonia MEE",2002,"For storage only",28,"Ribera de l`Ebre a Flix","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14688,349711,"ESP","Catalonia MEE",2002,"For storage only",28,"Riera de Merlés","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14686,349712,"ESP","Catalonia MEE",2002,"For storage only",28,"Riera d`Arbucies-Hostalric","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12673,349838,"ROU","METT",2012,"For storage only",28,"Defileul Muresului Superior","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -225,349975,"GRC","Birdlife IBA",2013,"For storage only",8,"Ethniko Parko Ygrotopon Amvrakikou","National Park","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -226,349976,"GRC","Birdlife IBA",2013,"For storage only",8,"Ethniko Parko Ygrotopon Amvrakikou - Periochi prostasias tis fysis","Nature reserve zone in National Park","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -13451,350003,"TZA","METT",2010,"For storage only",28,"Kitulo Plateau National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13552,350008,"TZA","METT",2009,"For storage only",28,"Mkusu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13551,350008,"TZA","METT",2005,"For storage only",28,"Mkusu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13553,350008,"TZA","METT",2006,"For storage only",28,"Mkusu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13494,350012,"TZA","METT",2005,"For storage only",28,"Mahezangulu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13702,350014,"TZA","METT",2005,"For storage only",28,"Tongwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13614,350015,"TZA","METT",2006,"For storage only",28,"Nguru North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13613,350015,"TZA","METT",2005,"For storage only",28,"Nguru North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28222,350016,"TZA","METT",2015,"For storage only",28,"Derema","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13365,350016,"TZA","METT",2005,"For storage only",28,"Derema","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13531,350017,"TZA","METT",2005,"For storage only",28,"Mbwegere","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13547,350021,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13519,350026,"TZA","METT",2011,"For storage only",28,"Masanganya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13425,350028,"TZA","METT",2005,"For storage only",28,"Kiranzi Kitunguu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13424,350028,"TZA","METT",2013,"For storage only",28,"Kiranzi Kitunguu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13579,350029,"TZA","METT",2011,"For storage only",28,"Mohoro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13698,350030,"TZA","METT",2005,"For storage only",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13701,350030,"TZA","METT",2011,"For storage only",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13696,350030,"TZA","METT",2008,"For storage only",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13699,350030,"TZA","METT",2014,"For storage only",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13700,350030,"TZA","METT",2013,"For storage only",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13389,350036,"TZA","METT",2006,"For storage only",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13392,350036,"TZA","METT",2011,"For storage only",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13394,350036,"TZA","METT",2013,"For storage only",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13388,350036,"TZA","METT",2007,"For storage only",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13393,350036,"TZA","METT",2014,"For storage only",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11655,351088,"GNB","METT",2005,"For storage only",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11656,351088,"GNB","METT",2006,"For storage only",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11640,351088,"GNB","Marine Tracking Tool",2004,"For storage only",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11664,351088,"GNB","METT",2010,"For storage only",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11654,351088,"GNB","METT",2004,"For storage only",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11657,351088,"GNB","RAPPAM",2007,"For storage only",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10626,351088,"GNB","IMET",2016,"For storage only",27,"Cantanhez Forest","National Park","JRC IMET information","JRC",2018,"English",FALSE -21471,351099,"ZAF","METT",2011,"For storage only",28,"Mabusa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21473,351099,"ZAF","METT",2013,"For storage only",28,"Mabusa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21472,351099,"ZAF","METT",2012,"For storage only",28,"Mabusa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21470,351099,"ZAF","METT",2010,"For storage only",28,"Mabusa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21479,351100,"ZAF","METT",2013,"For storage only",28,"Mahushe Shongwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21480,351100,"ZAF","METT",2010,"For storage only",28,"Mahushe Shongwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21478,351100,"ZAF","METT",2012,"For storage only",28,"Mahushe Shongwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21477,351100,"ZAF","METT",2011,"For storage only",28,"Mahushe Shongwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21530,351102,"ZAF","METT",2013,"For storage only",28,"Mdala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21528,351102,"ZAF","METT",2011,"For storage only",28,"Mdala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21527,351102,"ZAF","METT",2010,"For storage only",28,"Mdala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21529,351102,"ZAF","METT",2012,"For storage only",28,"Mdala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21566,351103,"ZAF","METT",2011,"For storage only",28,"Mthethomusha Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21569,351103,"ZAF","METT",2010,"For storage only",28,"Mthethomusha Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21568,351103,"ZAF","METT",2013,"For storage only",28,"Mthethomusha Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21567,351103,"ZAF","METT",2012,"For storage only",28,"Mthethomusha Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21541,351104,"ZAF","METT",2013,"For storage only",28,"Mkhombo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21538,351104,"ZAF","METT",2010,"For storage only",28,"Mkhombo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21540,351104,"ZAF","METT",2012,"For storage only",28,"Mkhombo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21539,351104,"ZAF","METT",2011,"For storage only",28,"Mkhombo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21140,351107,"ZAF","METT",2010,"For storage only",28,"Mountainlands","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21141,351107,"ZAF","METT",2011,"For storage only",28,"Mountainlands","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21142,351107,"ZAF","METT",2012,"For storage only",28,"Mountainlands","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21143,351107,"ZAF","METT",2013,"For storage only",28,"Mountainlands","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21757,351117,"ZAF","METT",2010,"For storage only",28,"S.S. Skosana Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21156,351149,"ZAF","METT",2011,"For storage only",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21158,351149,"ZAF","METT",2013,"For storage only",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21155,351149,"ZAF","METT",2010,"For storage only",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21159,351149,"ZAF","RAPPAM",2001,"For storage only",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21157,351149,"ZAF","METT",2012,"For storage only",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21188,351174,"ZAF","METT",2010,"For storage only",28,"Bracken Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21236,351215,"ZAF","RAPPAM",2001,"For storage only",28,"Hlinza Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21235,351215,"ZAF","METT",2010,"For storage only",28,"Hlinza Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21294,351263,"ZAF","METT",2010,"For storage only",28,"Geelkrans Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21312,351273,"ZAF","METT",2013,"For storage only",28,"Great Fish River Mouth Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21309,351273,"ZAF","METT",2010,"For storage only",28,"Great Fish River Mouth Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21311,351273,"ZAF","METT",2012,"For storage only",28,"Great Fish River Mouth Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21310,351273,"ZAF","METT",2011,"For storage only",28,"Great Fish River Mouth Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21334,351296,"ZAF","METT",2010,"For storage only",28,"Harmony Flats Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21291,351303,"ZAF","METT",2011,"For storage only",28,"Gariep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21290,351303,"ZAF","METT",2010,"For storage only",28,"Gariep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21293,351303,"ZAF","METT",2013,"For storage only",28,"Gariep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21292,351303,"ZAF","METT",2012,"For storage only",28,"Gariep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21367,351323,"ZAF","METT",2012,"For storage only",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21366,351323,"ZAF","METT",2011,"For storage only",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21369,351323,"ZAF","RAPPAM",2001,"For storage only",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21370,351323,"ZAF","Birdlife IBA",2013,"For storage only",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21365,351323,"ZAF","METT",2010,"For storage only",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21368,351323,"ZAF","METT",2013,"For storage only",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21623,351423,"ZAF","METT",2010,"For storage only",28,"Malekgalonyane Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21485,351426,"ZAF","METT",2012,"For storage only",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21487,351426,"ZAF","RAPPAM",2001,"For storage only",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21483,351426,"ZAF","METT",2010,"For storage only",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21486,351426,"ZAF","METT",2013,"For storage only",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21484,351426,"ZAF","METT",2011,"For storage only",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21575,351458,"ZAF","METT",2011,"For storage only",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21574,351458,"ZAF","METT",2010,"For storage only",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21577,351458,"ZAF","METT",2013,"For storage only",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21576,351458,"ZAF","METT",2012,"For storage only",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21578,351458,"ZAF","RAPPAM",2001,"For storage only",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21610,351498,"ZAF","METT",2013,"For storage only",28,"Nsikeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21609,351498,"ZAF","METT",2012,"For storage only",28,"Nsikeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21607,351498,"ZAF","METT",2010,"For storage only",28,"Nsikeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21608,351498,"ZAF","METT",2011,"For storage only",28,"Nsikeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21647,351522,"ZAF","METT",2010,"For storage only",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21659,351522,"ZAF","RAPPAM",2001,"For storage only",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21656,351522,"ZAF","METT",2011,"For storage only",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21657,351522,"ZAF","METT",2012,"For storage only",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21658,351522,"ZAF","METT",2013,"For storage only",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21652,351531,"ZAF","RAPPAM",2001,"For storage only",28,"Poccolan Robinson's Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21739,351583,"ZAF","RAPPAM",2001,"For storage only",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21735,351583,"ZAF","METT",2010,"For storage only",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21736,351583,"ZAF","METT",2011,"For storage only",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21738,351583,"ZAF","METT",2013,"For storage only",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21737,351583,"ZAF","METT",2012,"For storage only",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21777,351604,"ZAF","METT",2013,"For storage only",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21776,351604,"ZAF","METT",2012,"For storage only",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21775,351604,"ZAF","METT",2011,"For storage only",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21774,351604,"ZAF","METT",2010,"For storage only",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21773,351604,"ZAF","METT",2007,"For storage only",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21809,351625,"ZAF","METT",2013,"For storage only",28,"Tugela Drift Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21808,351625,"ZAF","METT",2012,"For storage only",28,"Tugela Drift Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21806,351625,"ZAF","METT",2010,"For storage only",28,"Tugela Drift Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21807,351625,"ZAF","METT",2011,"For storage only",28,"Tugela Drift Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21814,351628,"ZAF","METT",2011,"For storage only",28,"Ubombo Mountain Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21815,351628,"ZAF","METT",2012,"For storage only",28,"Ubombo Mountain Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21816,351628,"ZAF","METT",2013,"For storage only",28,"Ubombo Mountain Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21817,351628,"ZAF","RAPPAM",2001,"For storage only",28,"Ubombo Mountain Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21818,351631,"ZAF","METT",2010,"For storage only",28,"Ukhahlamba Drakensberg Park","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21825,351634,"ZAF","METT",2011,"For storage only",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21824,351634,"ZAF","METT",2010,"For storage only",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21828,351634,"ZAF","RAPPAM",2001,"For storage only",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21827,351634,"ZAF","METT",2013,"For storage only",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21826,351634,"ZAF","METT",2012,"For storage only",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13535,351701,"TZA","METT",2005,"For storage only",28,"Mfumbia","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13557,351702,"TZA","METT",2011,"For storage only",28,"Mlungui","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13461,351703,"TZA","METT",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13682,351704,"TZA","METT",2011,"For storage only",28,"Semdoe/Msige","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28226,351705,"TZA","METT",2015,"For storage only",28,"Mlinga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13418,351707,"TZA","METT",2013,"For storage only",28,"Kichi Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13417,351707,"TZA","METT",2014,"For storage only",28,"Kichi Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13416,351707,"TZA","METT",2005,"For storage only",28,"Kichi Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13419,351707,"TZA","METT",2011,"For storage only",28,"Kichi Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13555,351710,"TZA","METT",2011,"For storage only",28,"Mlola","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -265,351711,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Da Terra Do Meio","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -569,351711,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Da Terra Do Meio","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -364,351712,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra Do Pardo","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -684,351712,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra Do Pardo","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -825,351713,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Riozinho Da Liberdade","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -466,351713,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Riozinho Da Liberdade","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -296,351714,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Anauá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -604,351714,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Anauá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -560,351715,"BRA","SAMGe",2016,"For storage only",9,"ARIE Pontal dos Latinos e Pontal dos Santiagos","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -529,351716,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Da Baleia Franca","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -246,351716,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Da Baleia Franca","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -613,351717,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Chapecó","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -303,351717,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Chapecó","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -700,351718,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional De Saint-Hilaire/Lange","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -372,351718,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional De Saint-Hilaire/Lange","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -800,351719,"BRA","SAMGe",2016,"For storage only",9,"RESEX Mandira","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -553,351720,"BRA","SAMGe",2016,"For storage only",9,"ARIE Ilha Ameixal","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -554,351721,"BRA","SAMGe",2016,"For storage only",9,"Área De Relevante Interesse Ecológico Ilhas Queimada Grande E Queimada Pequena","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -262,351721,"BRA","RAPPAM",2015,"For storage only",9,"Área De Relevante Interesse Ecológico Ilhas Queimada Grande E Queimada Pequena","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -610,351722,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Capão Bonito","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -300,351722,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Capão Bonito","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -619,351723,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Ipanema","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -804,351725,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Marinha Arraial Do Cabo","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -451,351725,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Marinha Arraial Do Cabo","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -626,351726,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Lorena","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -313,351726,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Lorena","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -245,351727,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Da Bacia Do Rio São João - Mico Leão","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -528,351727,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Da Bacia Do Rio São João - Mico Leão","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -285,351728,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Mico Leão Preto","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -594,351728,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Mico Leão Preto","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -559,351729,"BRA","SAMGe",2016,"For storage only",9,"ARIE Pé-de-Gigante","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -357,351730,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra Da Bodoquena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -675,351730,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra Da Bodoquena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -320,351731,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Pacotuba","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -633,351731,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Pacotuba","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -304,351732,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Goytacazes","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -616,351732,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Goytacazes","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -635,351733,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Paraopeba","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -665,351734,"BRA","SAMGe",2016,"For storage only",9,"MONA dos Pontões Capixabas","Monumento Natural","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -641,351735,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Rio Preto","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -691,351736,"BRA","SAMGe",2016,"For storage only",9,"PARNA das Sempre Vivas","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -438,351737,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Corumbau","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -781,351737,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Corumbau","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -743,351738,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Da Mata Escura","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -399,351738,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Da Mata Escura","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -607,351740,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Brasília","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -350,351741,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Cavernas Do Peruaçu","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -666,351741,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Cavernas Do Peruaçu","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -530,351742,"BRA","SAMGe",2016,"For storage only",9,"APA das Nascentes do Rio Vermelho","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -837,351743,"BRA","SAMGe",2016,"For storage only",9,"REVIS Veredas do Oeste Baiano","Refúgio de Vida Silvestre","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -807,351744,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Marinha Da Baia De Iguapé","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -493,351744,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Marinha Da Baia De Iguapé","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -615,351745,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Cristópolis","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -258,351746,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Meandros Do Araguaia","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -544,351746,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Meandros Do Araguaia","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -494,351747,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Do Rio Cautário","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -791,351747,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Do Rio Cautário","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -678,351748,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra Da Cutia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -360,351748,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra Da Cutia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -431,351749,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Barreiro Das Antas","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -776,351749,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Barreiro Das Antas","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -562,351750,"BRA","SAMGe",2016,"For storage only",9,"ARIE Seringal Nova Esperança","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -597,351751,"BRA","SAMGe",2016,"For storage only",9,"ESEC Serra Geral do Tocantins","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -645,351752,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De São Francisco","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -328,351752,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De São Francisco","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -808,351753,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Marinha Da Lagoa Do Jequiá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -452,351753,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Marinha Da Lagoa Do Jequiá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -644,351755,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Santa Rosa do Purus","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -777,351756,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Cazumbá-Iracema","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -434,351756,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Cazumbá-Iracema","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -581,351757,"BRA","SAMGe",2016,"For storage only",9,"ESEC de Murici","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -495,351758,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Das Nascentes Do Rio Parnaiba","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -771,351759,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Alto Tarauacá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -427,351759,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Alto Tarauacá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -709,351760,"BRA","SAMGe",2016,"For storage only",9,"PARNA do Catimbau","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -449,351761,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Lago Do Cuniã","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -798,351761,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Lago Do Cuniã","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -269,351762,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica De Cuniã","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -574,351762,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica De Cuniã","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -625,351763,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Jatuarana","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -312,351763,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Jatuarana","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -632,351764,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Nísia Floresta","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -319,351764,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Nísia Floresta","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -601,351765,"BRA","SAMGe",2016,"For storage only",9,"FLONA de Açu","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -279,351766,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Do Castanhão","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -588,351766,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Do Castanhão","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -787,351767,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Do Lago Do Capanã Grande","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -443,351767,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Do Lago Do Capanã Grande","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -816,351768,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Mata Grande","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -456,351768,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Mata Grande","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -788,351769,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Médio Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -457,351769,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Médio Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -785,351770,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Do Batoque","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -441,351770,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Do Batoque","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -330,351771,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Sobral","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -649,351771,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Sobral","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -775,351772,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Baixo Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -430,351772,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Baixo Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -445,351773,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Do Rio Jutaí","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -792,351773,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Do Rio Jutaí","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -698,351774,"BRA","SAMGe",2016,"For storage only",9,"PARNA de Jericoacoara","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -811,351775,"BRA","SAMGe",2016,"For storage only",9,"RESEX Marinha do Delta do Parnaíba","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -469,351776,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Tapajós Arapiuns","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -828,351776,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Tapajós Arapiuns","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -774,351777,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Auatí-Paraná","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -429,351777,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Auatí-Paraná","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -440,351778,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista De Cururupu","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -784,351778,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista De Cururupu","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -630,351779,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Mulata","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -317,351779,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Mulata","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -468,351780,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista São João Da Ponta","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -827,351780,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista São João Da Ponta","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -802,351781,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Maracanã","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -450,351781,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Maracanã","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -799,351782,"BRA","SAMGe",2016,"For storage only",9,"RESEX Mãe Grande de Curuça","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -810,351783,"BRA","SAMGe",2016,"For storage only",9,"RESEX Marinha de Soure","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -392,351784,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Montanhas Do Tumucumaque","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -730,351784,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Montanhas Do Tumucumaque","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -467,351785,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Riozinho Do Anfrísio","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -826,351785,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Riozinho Do Anfrísio","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -830,351786,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Verde Para Sempre","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -471,351786,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Verde Para Sempre","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -545,351787,"BRA","SAMGe",2016,"For storage only",9,"APA Morro da Pedreira","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -337,351788,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Do Araripe-Apodi","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -656,351788,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Do Araripe-Apodi","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -292,351789,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Da Mata Grande","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -599,351789,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Da Mata Grande","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -639,351790,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Piraí Do Sul","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -325,351790,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Piraí Do Sul","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -293,351791,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Da Restinga De Cabedelo","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -600,351791,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Da Restinga De Cabedelo","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -624,351792,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Jacundá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -311,351792,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Jacundá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -697,351793,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional De Ilha Grande","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -370,351793,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional De Ilha Grande","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -742,351794,"BRA","SAMGe",2016,"For storage only",9,"REBIO da Contagem","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -418,351795,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Nascentes Serra Do Cachimbo","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -767,351795,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Nascentes Serra Do Cachimbo","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -805,351796,"BRA","SAMGe",2016,"For storage only",9,"RESEX Marinha Caeté-Taperaçu","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -455,351797,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Marinha Tracuateua","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -815,351797,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Marinha Tracuateua","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -803,351798,"BRA","SAMGe",2016,"For storage only",9,"RESEX Marinha Arai-Peroba","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -453,351799,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Marinha De Gurupi-Piriá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -809,351799,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Marinha De Gurupi-Piriá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -801,351800,"BRA","SAMGe",2016,"For storage only",9,"RESEX Mapuá","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -737,351801,"BRA","SAMGe",2016,"For storage only",9,"Reserva De Desenvolvimento Sustentável Itatupã-Baquiá","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -496,351801,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Itatupã-Baquiá","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -446,351802,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Ipaú-Anilzinho","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -795,351802,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Ipaú-Anilzinho","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -580,351803,"BRA","SAMGe",2016,"For storage only",9,"ESEC de Mata Preta","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -365,351804,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Das Araucárias","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -773,351805,"BRA","SAMGe",2016,"For storage only",9,"RESEX Arióca Pruanã","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -668,351806,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Chapada Das Mesas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -352,351806,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Chapada Das Mesas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -321,351807,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Palmares","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -634,351807,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Palmares","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -307,351809,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Irati","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -620,351809,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Irati","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -322,351810,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Passa Quatro","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -636,351810,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Passa Quatro","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -648,351811,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Silvânia","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -329,351811,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Silvânia","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -658,351812,"BRA","SAMGe",2016,"For storage only",9,"FLONA do Ibura","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -255,351813,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Do Tapajós","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -541,351813,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Do Tapajós","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -340,351814,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Do Jamanxim","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -660,351814,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Do Jamanxim","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -657,351815,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Do Crepori","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -338,351815,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Do Crepori","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -342,351816,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Do Trairão","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -662,351816,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Do Trairão","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -654,351817,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Do Amaná","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -335,351817,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Do Amaná","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -711,351818,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Jamanxim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -378,351818,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Jamanxim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -385,351819,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Rio Novo","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -718,351819,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Rio Novo","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -297,351820,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Balata-Tufari","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -605,351820,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Balata-Tufari","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -263,351821,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Da Guanabara","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -567,351821,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Da Guanabara","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -437,351822,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Chocoaré-Mato Grosso","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -780,351822,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Chocoaré-Mato Grosso","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -745,351823,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Das Perobas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -401,351823,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Das Perobas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -721,351824,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Dos Campos Gerais","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -388,351824,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Dos Campos Gerais","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -744,351825,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Das Araucárias","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -400,351825,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Das Araucárias","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -475,351826,"BRA","RAPPAM",2015,"For storage only",9,"Refúgio De Vida Silvestre Dos Campos De Palmas","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -835,351826,"BRA","SAMGe",2016,"For storage only",9,"Refúgio De Vida Silvestre Dos Campos De Palmas","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -361,351827,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra De Itabaiana","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -679,351827,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra De Itabaiana","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -363,351828,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra Do Itajaí","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -683,351828,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra Do Itajaí","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -782,351829,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista De Canavieiras","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -439,351829,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista De Canavieiras","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -462,351830,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Rio Iriri","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -821,351830,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Rio Iriri","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -470,351831,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Terra Grande Pracuuba","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -829,351831,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Terra Grande Pracuuba","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -497,351832,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Do Rio Unini","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -823,351832,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Do Rio Unini","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -387,351833,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Dos Campos Amazônicos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -720,351833,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Dos Campos Amazônicos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -772,351834,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Arapixi","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -428,351834,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Arapixi","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -638,351835,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Pau-Rosa","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -324,351835,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Pau-Rosa","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -790,351836,"BRA","SAMGe",2016,"For storage only",9,"RESEX do Recanto das Araras de Terra Ronca","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -448,351837,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Lago Do Cedro","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -797,351837,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Lago Do Cedro","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -794,351838,"BRA","SAMGe",2016,"For storage only",9,"RESEX Gurupá-Melgaço","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -380,351839,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Juruena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -713,351839,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Juruena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -534,351840,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental De Guapi-Mirim","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -249,351840,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental De Guapi-Mirim","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -540,351841,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Do Planalto Central","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -254,351841,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Do Planalto Central","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -344,351842,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Chandless","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -688,351872,"BRA","SAMGe",2016,"For storage only",9,"PARNA das Araucárias","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -690,352002,"BRA","SAMGe",2016,"For storage only",9,"PARNA das Nascentes do Rio Parnaíba","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -498,352013,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Do Cantão","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -346,352027,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Do Xingu","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -345,352062,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Da Serra Dos Martírios/Andorinhas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -499,352134,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Amanã","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -433,352135,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Catuá-Ipixuna","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -500,352136,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Piagaçu Purus","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -424,352137,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Rio Amapá","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -501,352138,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Uacarí","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -420,352139,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Cujubim","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -502,352140,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Do Uatumã","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -503,352146,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Rio Negro Setor Sul","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -504,352149,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Rio Negro Setor Norte","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -347,352197,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Igarapés Do Juruena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -505,352198,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Do Grão Pará","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -506,352202,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica De Maicuru","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -20763,352239,"MDG","SAPM",2016,"For storage only",34,"Ambatotsirongorongo","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20770,352240,"MDG","METT",2016,"For storage only",34,"Analalava","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20775,352241,"MDG","SAPM",2016,"For storage only",34,"Andreba","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20794,352242,"MDG","SAPM",2015,"For storage only",34,"Anjozorobe","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20782,352243,"MDG","PAMETT",2016,"For storage only",34,"Ankodida","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20801,352244,"MDG","SAPM",2015,"For storage only",34,"Bongolava","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20800,352246,"MDG","SGBD/SMART",2016,"For storage only",34,"Fandrina Vondrozo","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20798,352248,"MDG","METT",2016,"For storage only",34,"Mahavavy Kinkony","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20811,352250,"MDG","SAPM",2016,"For storage only",34,"Mandena","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20821,352251,"MDG","METT",2016,"For storage only",34,"Menabe","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20768,352252,"MDG","SAPM",2016,"For storage only",34,"Montagne des Français","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20769,352253,"MDG","SMART",2016,"For storage only",34,"Onilahy","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20832,352254,"MDG","IEG",2005,"For storage only",34,"Sahamalaza","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20799,352256,"MDG","SGBD/SMART",2016,"For storage only",34,"Zahamena Ankeniheny","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20809,352259,"BRA","SAPM",2016,"For storage only",34,"Médio Rio Negro I","Indigenous Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -707,352420,"BRA","SAMGe",2016,"For storage only",9,"PARNA do Araguaia","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13486,352700,"TZA","METT",2012,"For storage only",28,"Lukwika-Lumesule G.R.","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13565,352701,"TZA","METT",2012,"For storage only",28,"Msanjesi GR/Kipitimbi/Lionja FR","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13561,352703,"TZA","METT",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10639,352704,"SEN","IMET",2016,"For storage only",27,"Saint-Louis","Marine Protected Area","JRC IMET information","JRC",2018,"English",FALSE -13093,352704,"SEN","RAPPAM",2011,"For storage only",28,"Saint-Louis","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10636,352705,"SEN","IMET",2016,"For storage only",27,"Kayar","Marine Protected Area","JRC IMET information","JRC",2018,"English",FALSE -13077,352705,"SEN","RAPPAM",2009,"For storage only",28,"Kayar","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13078,352705,"SEN","RAPPAM",2011,"For storage only",28,"Kayar","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13076,352706,"SEN","RAPPAM",2011,"For storage only",28,"Joal","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13075,352706,"SEN","RAPPAM",2009,"For storage only",28,"Joal","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10637,352706,"SEN","IMET",2016,"For storage only",27,"Joal","Marine Protected Area","JRC IMET information","JRC",2018,"English",FALSE -769,354006,"BRA","SAMGe",2016,"For storage only",9,"RESEX Acaú-Goiana","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -778,354007,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Chapada Limpa","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -435,354007,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Chapada Limpa","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -318,354008,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Negreiros","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -631,354008,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Negreiros","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -11233,354009,"COG","RAPPAM",2012,"For storage only",28,"Patte d'Oie","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20829,354011,"MDG","SAPM",2016,"For storage only",34,"Tampolo","Forest Station","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20822,354012,"MDG","IEG",2005,"For storage only",34,"Mikea","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -13399,354044,"TZA","METT",2005,"For storage only",28,"Kamwalla I","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13400,354045,"TZA","METT",2005,"For storage only",28,"Kamwalla II","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13453,354046,"TZA","METT",2009,"For storage only",28,"Kiverenge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13452,354046,"TZA","METT",2005,"For storage only",28,"Kiverenge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21082,354070,"IDN","METT",2015,"For storage only",35,"Pulau Satonda","Marine Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -15314,354093,"AUS","NSW SOP",2007,"For storage only",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15313,354093,"AUS","NSW SOP",2005,"For storage only",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15315,354093,"AUS","NSW SOP",2010,"For storage only",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15316,354093,"AUS","NSW SOP",2013,"For storage only",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15317,354093,"AUS","NSW SOP",2004,"For storage only",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15346,354115,"AUS","NSW SOP",2013,"For storage only",28,"Alma B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15345,354115,"AUS","NSW SOP",2007,"For storage only",28,"Alma B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15353,354118,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Amamoor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15354,354118,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Amamoor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15365,354128,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Annan River (Yuku Baja-Muliku)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15364,354128,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Annan River (Yuku Baja-Muliku)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15377,354135,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15378,354135,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15374,354135,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15375,354135,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15376,354135,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15412,354159,"AUS","NSW SOP",2013,"For storage only",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15409,354159,"AUS","NSW SOP",2005,"For storage only",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15410,354159,"AUS","NSW SOP",2007,"For storage only",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15411,354159,"AUS","NSW SOP",2010,"For storage only",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15413,354159,"AUS","NSW SOP",2004,"For storage only",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15465,354177,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Ban Ban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15464,354177,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Ban Ban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15477,354180,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15478,354180,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15489,354182,"AUS","NSW SOP",2004,"For storage only",28,"Banyabba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15486,354182,"AUS","NSW SOP",2005,"For storage only",28,"Banyabba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15487,354182,"AUS","NSW SOP",2007,"For storage only",28,"Banyabba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15498,354189,"AUS","NSW SOP",2007,"For storage only",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15497,354189,"AUS","NSW SOP",2005,"For storage only",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15501,354189,"AUS","NSW SOP",2004,"For storage only",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15499,354189,"AUS","NSW SOP",2010,"For storage only",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15500,354189,"AUS","NSW SOP",2013,"For storage only",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15535,354195,"AUS","NSW SOP",2007,"For storage only",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15539,354195,"AUS","NSW SOP",2004,"For storage only",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15537,354195,"AUS","NSW SOP",2013,"For storage only",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15536,354195,"AUS","NSW SOP",2010,"For storage only",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15534,354195,"AUS","NSW SOP",2005,"For storage only",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15542,354196,"AUS","Birdlife IBA",2008,"For storage only",28,"Barrow Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15571,354211,"AUS","Victorian SOP",2005,"For storage only",28,"Beechworth B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15582,354220,"AUS","NSW SOP",2013,"For storage only",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15583,354220,"AUS","NSW SOP",2004,"For storage only",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15580,354220,"AUS","NSW SOP",2007,"For storage only",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15581,354220,"AUS","NSW SOP",2010,"For storage only",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15579,354220,"AUS","NSW SOP",2005,"For storage only",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15623,354233,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Benarkin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15622,354233,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Benarkin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15630,354237,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Beninbi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15631,354237,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Beninbi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15634,354239,"AUS","NSW SOP",2010,"For storage only",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15636,354239,"AUS","NSW SOP",2004,"For storage only",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15635,354239,"AUS","NSW SOP",2013,"For storage only",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15632,354239,"AUS","NSW SOP",2005,"For storage only",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15633,354239,"AUS","NSW SOP",2007,"For storage only",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15644,354240,"AUS","NSW SOP",2010,"For storage only",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15646,354240,"AUS","NSW SOP",2004,"For storage only",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15642,354240,"AUS","NSW SOP",2005,"For storage only",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15645,354240,"AUS","NSW SOP",2013,"For storage only",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15643,354240,"AUS","NSW SOP",2007,"For storage only",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15654,354242,"AUS","NSW SOP",2010,"For storage only",28,"Berowra Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15655,354242,"AUS","NSW SOP",2013,"For storage only",28,"Berowra Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15653,354242,"AUS","NSW SOP",2007,"For storage only",28,"Berowra Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15652,354242,"AUS","NSW SOP",2005,"For storage only",28,"Berowra Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15703,354256,"AUS","NSW SOP",2004,"For storage only",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15701,354256,"AUS","NSW SOP",2013,"For storage only",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15700,354256,"AUS","NSW SOP",2010,"For storage only",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15698,354256,"AUS","NSW SOP",2005,"For storage only",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15699,354256,"AUS","NSW SOP",2007,"For storage only",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15708,354257,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bingera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15707,354257,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bingera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15737,354264,"AUS","NSW SOP",2005,"For storage only",28,"Black Bulga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15740,354264,"AUS","NSW SOP",2013,"For storage only",28,"Black Bulga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15738,354264,"AUS","NSW SOP",2007,"For storage only",28,"Black Bulga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15739,354264,"AUS","NSW SOP",2010,"For storage only",28,"Black Bulga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15817,354292,"AUS","NSW SOP",2013,"For storage only",28,"Bomaderry Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15816,354292,"AUS","NSW SOP",2010,"For storage only",28,"Bomaderry Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15815,354292,"AUS","NSW SOP",2007,"For storage only",28,"Bomaderry Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15814,354292,"AUS","NSW SOP",2005,"For storage only",28,"Bomaderry Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15828,354299,"AUS","Birdlife IBA",2008,"For storage only",28,"Boodjamulla (Lawn Hill)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15830,354299,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Boodjamulla (Lawn Hill)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15829,354299,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Boodjamulla (Lawn Hill)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15854,354302,"AUS","Victorian SOP",2005,"For storage only",28,"Boonderoo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15955,354331,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15954,354331,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15957,354331,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15958,354331,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15953,354331,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15983,354342,"AUS","Victorian SOP",2013,"For storage only",28,"Broken-Boosey","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15982,354342,"AUS","Victorian SOP",2010,"For storage only",28,"Broken-Boosey","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15981,354342,"AUS","Victorian SOP",2005,"For storage only",28,"Broken-Boosey","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16045,354355,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bulburin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16046,354355,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bulburin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16061,354364,"AUS","NSW SOP",2005,"For storage only",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16066,354364,"AUS","NSW SOP",2004,"For storage only",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16064,354364,"AUS","NSW SOP",2013,"For storage only",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16063,354364,"AUS","NSW SOP",2010,"For storage only",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16062,354364,"AUS","NSW SOP",2007,"For storage only",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16080,354367,"AUS","NSW SOP",2007,"For storage only",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16082,354367,"AUS","NSW SOP",2013,"For storage only",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16079,354367,"AUS","NSW SOP",2005,"For storage only",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16085,354367,"AUS","NSW SOP",2004,"For storage only",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16081,354367,"AUS","NSW SOP",2010,"For storage only",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16090,354372,"AUS","NSW SOP",2013,"For storage only",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16088,354372,"AUS","NSW SOP",2007,"For storage only",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16092,354372,"AUS","NSW SOP",2004,"For storage only",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16087,354372,"AUS","NSW SOP",2005,"For storage only",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16089,354372,"AUS","NSW SOP",2010,"For storage only",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16101,354374,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16102,354374,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16105,354376,"AUS","Victorian SOP",2005,"For storage only",28,"Bunyip B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16130,354388,"AUS","NSW SOP",2007,"For storage only",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16131,354388,"AUS","NSW SOP",2010,"For storage only",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16132,354388,"AUS","NSW SOP",2013,"For storage only",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16133,354388,"AUS","NSW SOP",2004,"For storage only",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16129,354388,"AUS","NSW SOP",2005,"For storage only",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16154,354391,"AUS","NSW SOP",2013,"For storage only",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16150,354391,"AUS","NSW SOP",2005,"For storage only",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16153,354391,"AUS","NSW SOP",2004,"For storage only",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16152,354391,"AUS","NSW SOP",2010,"For storage only",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16151,354391,"AUS","NSW SOP",2007,"For storage only",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16160,354392,"AUS","NSW SOP",2007,"For storage only",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16164,354392,"AUS","NSW SOP",2004,"For storage only",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16159,354392,"AUS","NSW SOP",2005,"For storage only",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16162,354392,"AUS","NSW SOP",2013,"For storage only",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16161,354392,"AUS","NSW SOP",2010,"For storage only",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16201,354414,"AUS","NSW SOP",2007,"For storage only",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16202,354414,"AUS","NSW SOP",2010,"For storage only",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16205,354414,"AUS","NSW SOP",2004,"For storage only",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16204,354414,"AUS","NSW SOP",2013,"For storage only",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16200,354414,"AUS","NSW SOP",2005,"For storage only",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16258,354434,"AUS","NSW SOP",2005,"For storage only",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16263,354434,"AUS","NSW SOP",2004,"For storage only",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16260,354434,"AUS","NSW SOP",2010,"For storage only",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16261,354434,"AUS","NSW SOP",2013,"For storage only",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16259,354434,"AUS","NSW SOP",2007,"For storage only",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16268,354439,"AUS","NSW SOP",2005,"For storage only",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16274,354439,"AUS","Victorian SOP",2005,"For storage only",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16273,354439,"AUS","NSW SOP",2004,"For storage only",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16271,354439,"AUS","NSW SOP",2013,"For storage only",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16269,354439,"AUS","NSW SOP",2007,"For storage only",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16270,354439,"AUS","NSW SOP",2010,"For storage only",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16291,354444,"AUS","NSW SOP",2004,"For storage only",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16287,354444,"AUS","NSW SOP",2013,"For storage only",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16284,354444,"AUS","NSW SOP",2005,"For storage only",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16285,354444,"AUS","NSW SOP",2007,"For storage only",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16286,354444,"AUS","NSW SOP",2010,"For storage only",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16322,354447,"AUS","NSW SOP",2007,"For storage only",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16326,354447,"AUS","NSW SOP",2004,"For storage only",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16324,354447,"AUS","NSW SOP",2013,"For storage only",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16323,354447,"AUS","NSW SOP",2010,"For storage only",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16321,354447,"AUS","NSW SOP",2005,"For storage only",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16342,354452,"AUS","NSW SOP",2004,"For storage only",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16339,354452,"AUS","NSW SOP",2007,"For storage only",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16340,354452,"AUS","NSW SOP",2010,"For storage only",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16338,354452,"AUS","NSW SOP",2005,"For storage only",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16341,354452,"AUS","NSW SOP",2013,"For storage only",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16343,354454,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Cherbourg","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16344,354454,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Cherbourg","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16350,354464,"AUS","Victorian SOP",2010,"For storage only",28,"Chiltern-Mt Pilot National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16351,354464,"AUS","Victorian SOP",2013,"For storage only",28,"Chiltern-Mt Pilot National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16349,354464,"AUS","Victorian SOP",2005,"For storage only",28,"Chiltern-Mt Pilot National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16402,354482,"AUS","NSW SOP",2010,"For storage only",28,"Coffs Coast","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16400,354482,"AUS","NSW SOP",2005,"For storage only",28,"Coffs Coast","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16401,354482,"AUS","NSW SOP",2007,"For storage only",28,"Coffs Coast","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16403,354482,"AUS","NSW SOP",2013,"For storage only",28,"Coffs Coast","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16413,354487,"AUS","NSW SOP",2004,"For storage only",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16409,354487,"AUS","NSW SOP",2005,"For storage only",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16412,354487,"AUS","NSW SOP",2013,"For storage only",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16410,354487,"AUS","NSW SOP",2007,"For storage only",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16411,354487,"AUS","NSW SOP",2010,"For storage only",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16425,354496,"AUS","NSW SOP",2010,"For storage only",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16427,354496,"AUS","NSW SOP",2004,"For storage only",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16423,354496,"AUS","NSW SOP",2005,"For storage only",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16424,354496,"AUS","NSW SOP",2007,"For storage only",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16426,354496,"AUS","NSW SOP",2013,"For storage only",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16503,354514,"AUS","NSW SOP",2013,"For storage only",28,"Copeland Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16501,354514,"AUS","NSW SOP",2007,"For storage only",28,"Copeland Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16502,354514,"AUS","NSW SOP",2010,"For storage only",28,"Copeland Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16500,354514,"AUS","NSW SOP",2005,"For storage only",28,"Copeland Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16509,354516,"AUS","Victorian SOP",2013,"For storage only",28,"Coradjil N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16508,354516,"AUS","Victorian SOP",2010,"For storage only",28,"Coradjil N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16515,354517,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16516,354517,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16527,354520,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16523,354520,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16524,354520,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16525,354520,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16535,354523,"AUS","NSW SOP",2010,"For storage only",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16537,354523,"AUS","NSW SOP",2004,"For storage only",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16536,354523,"AUS","NSW SOP",2013,"For storage only",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16534,354523,"AUS","NSW SOP",2007,"For storage only",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16533,354523,"AUS","NSW SOP",2005,"For storage only",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16543,354527,"AUS","NSW SOP",2005,"For storage only",28,"Cottan-Bimbang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16544,354527,"AUS","NSW SOP",2007,"For storage only",28,"Cottan-Bimbang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16608,354552,"AUS","Victorian SOP",2005,"For storage only",28,"Cullens Lake W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16607,354552,"AUS","Victorian SOP",2010,"For storage only",28,"Cullens Lake W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16609,354552,"AUS","Victorian SOP",2013,"For storage only",28,"Cullens Lake W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16621,354554,"AUS","NSW SOP",2007,"For storage only",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16627,354554,"AUS","NSW SOP",2013,"For storage only",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16626,354554,"AUS","NSW SOP",2004,"For storage only",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16622,354554,"AUS","NSW SOP",2010,"For storage only",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16620,354554,"AUS","NSW SOP",2005,"For storage only",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16633,354555,"AUS","NSW SOP",2013,"For storage only",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16631,354555,"AUS","NSW SOP",2007,"For storage only",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16634,354555,"AUS","NSW SOP",2004,"For storage only",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16632,354555,"AUS","NSW SOP",2010,"For storage only",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16630,354555,"AUS","NSW SOP",2005,"For storage only",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16636,354557,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Curtain Fig","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16635,354557,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Curtain Fig","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16662,354567,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Dan Dan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16661,354567,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Dan Dan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16670,354570,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Danbulla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16668,354570,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Danbulla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16698,354586,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16697,354586,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16700,354587,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Dawes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16699,354587,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Dawes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16701,354593,"AUS","Victorian SOP",2010,"For storage only",28,"Deep Lead Nature Conservation Reserve (No. 2)","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16702,354593,"AUS","Victorian SOP",2005,"For storage only",28,"Deep Lead Nature Conservation Reserve (No. 2)","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16703,354593,"AUS","Victorian SOP",2013,"For storage only",28,"Deep Lead Nature Conservation Reserve (No. 2)","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16706,354594,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Deer Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16707,354594,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Deer Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16738,354604,"AUS","NSW SOP",2005,"For storage only",28,"Dharawal","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16739,354604,"AUS","NSW SOP",2007,"For storage only",28,"Dharawal","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16742,354604,"AUS","NSW SOP",2004,"For storage only",28,"Dharawal","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16752,354611,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16751,354611,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16753,354612,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Dinden","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16754,354612,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Dinden","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16768,354615,"AUS","Victorian SOP",2010,"For storage only",28,"Doctors Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16769,354615,"AUS","Victorian SOP",2005,"For storage only",28,"Doctors Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16770,354615,"AUS","Victorian SOP",2013,"For storage only",28,"Doctors Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16801,354632,"AUS","Victorian SOP",2013,"For storage only",28,"Dreeite N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16820,354651,"AUS","NSW SOP",2010,"For storage only",28,"Dural","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16821,354651,"AUS","NSW SOP",2013,"For storage only",28,"Dural","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16819,354651,"AUS","NSW SOP",2007,"For storage only",28,"Dural","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16873,354687,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Esk","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16872,354687,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Esk","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16918,354710,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Finucane Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16919,354710,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Finucane Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16981,354742,"AUS","NSW SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16982,354742,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16983,354742,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16984,354742,"AUS","NSW SOP",2004,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16985,354742,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17007,354751,"AUS","NSW SOP",2005,"For storage only",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17011,354751,"AUS","NSW SOP",2004,"For storage only",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17008,354751,"AUS","NSW SOP",2007,"For storage only",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17010,354751,"AUS","NSW SOP",2013,"For storage only",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17009,354751,"AUS","NSW SOP",2010,"For storage only",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17029,354757,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Gatton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17030,354757,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Gatton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17035,354760,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Geham","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17034,354760,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Geham","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17082,354779,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Girringun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17081,354779,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Girringun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17089,354782,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Glastonbury","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17090,354782,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Glastonbury","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17091,354785,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Glenbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17092,354785,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Glenbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17100,354794,"AUS","NSW SOP",2010,"For storage only",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17102,354794,"AUS","NSW SOP",2004,"For storage only",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17099,354794,"AUS","NSW SOP",2007,"For storage only",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17098,354794,"AUS","NSW SOP",2005,"For storage only",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17101,354794,"AUS","NSW SOP",2013,"For storage only",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17184,354835,"AUS","Victorian SOP",2010,"For storage only",28,"Great Otway National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18851,354835,"AUS","Birdlife IBA",2008,"For storage only",28,"Great Otway National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17185,354835,"AUS","Victorian SOP",2013,"For storage only",28,"Great Otway National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17188,354837,"AUS","Victorian SOP",2010,"For storage only",28,"Great Spectacle, Little Spectacle, Round Lake, Tobacco Lake","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17189,354837,"AUS","Victorian SOP",2013,"For storage only",28,"Great Spectacle, Little Spectacle, Round Lake, Tobacco Lake","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17191,354841,"AUS","Victorian SOP",2010,"For storage only",28,"Greater Bendigo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17192,354841,"AUS","Victorian SOP",2013,"For storage only",28,"Greater Bendigo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17190,354841,"AUS","Victorian SOP",2005,"For storage only",28,"Greater Bendigo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17220,354858,"AUS","NSW SOP",2010,"For storage only",28,"Gumbaynggirr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17221,354858,"AUS","NSW SOP",2013,"For storage only",28,"Gumbaynggirr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17218,354858,"AUS","NSW SOP",2005,"For storage only",28,"Gumbaynggirr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17219,354858,"AUS","NSW SOP",2007,"For storage only",28,"Gumbaynggirr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17244,354864,"AUS","NSW SOP",2004,"For storage only",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17240,354864,"AUS","NSW SOP",2005,"For storage only",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17242,354864,"AUS","NSW SOP",2010,"For storage only",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17243,354864,"AUS","NSW SOP",2013,"For storage only",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17241,354864,"AUS","NSW SOP",2007,"For storage only",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17253,354866,"AUS","NSW SOP",2007,"For storage only",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17255,354866,"AUS","NSW SOP",2013,"For storage only",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17254,354866,"AUS","NSW SOP",2010,"For storage only",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17257,354866,"AUS","NSW SOP",2004,"For storage only",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17252,354866,"AUS","NSW SOP",2005,"For storage only",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17266,354869,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Gympie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17265,354869,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Gympie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17270,354873,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Hampton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17269,354873,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Hampton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17308,354890,"AUS","Victorian SOP",2010,"For storage only",28,"Heathcote-Graytown National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17309,354890,"AUS","Victorian SOP",2005,"For storage only",28,"Heathcote-Graytown National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17310,354890,"AUS","Victorian SOP",2013,"For storage only",28,"Heathcote-Graytown National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17365,356376,"AUS","NSW SOP",2007,"For storage only",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17367,356376,"AUS","NSW SOP",2013,"For storage only",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17368,356376,"AUS","NSW SOP",2004,"For storage only",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17366,356376,"AUS","NSW SOP",2010,"For storage only",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17364,356376,"AUS","NSW SOP",2005,"For storage only",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17427,356397,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Muundhi (Jack River) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17426,356397,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Muundhi (Jack River) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17431,356398,"AUS","Victorian SOP",2005,"For storage only",28,"Jacka Lake & lakes to north W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17434,356406,"AUS","NSW SOP",2007,"For storage only",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17435,356406,"AUS","NSW SOP",2010,"For storage only",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17436,356406,"AUS","NSW SOP",2013,"For storage only",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17433,356406,"AUS","NSW SOP",2005,"For storage only",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17432,356406,"AUS","NSW SOP",2004,"For storage only",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17442,356409,"AUS","Victorian SOP",2013,"For storage only",28,"Jallukar N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17443,356413,"AUS","Victorian SOP",2010,"For storage only",28,"Jancourt N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17444,356413,"AUS","Victorian SOP",2013,"For storage only",28,"Jancourt N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17455,356417,"AUS","Victorian SOP",2005,"For storage only",28,"Jawbone F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17454,356417,"AUS","Victorian SOP",2010,"For storage only",28,"Jawbone F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17456,356417,"AUS","Victorian SOP",2013,"For storage only",28,"Jawbone F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17483,356422,"AUS","NSW SOP",2004,"For storage only",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17482,356422,"AUS","NSW SOP",2013,"For storage only",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17481,356422,"AUS","NSW SOP",2010,"For storage only",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17479,356422,"AUS","NSW SOP",2005,"For storage only",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17480,356422,"AUS","NSW SOP",2007,"For storage only",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17487,356424,"AUS","NSW SOP",2013,"For storage only",28,"Jilliby","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17485,356424,"AUS","NSW SOP",2007,"For storage only",28,"Jilliby","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17486,356424,"AUS","NSW SOP",2010,"For storage only",28,"Jilliby","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17484,356424,"AUS","NSW SOP",2005,"For storage only",28,"Jilliby","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17567,356455,"AUS","Victorian SOP",2013,"For storage only",28,"Kanyapella W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17566,356455,"AUS","Victorian SOP",2010,"For storage only",28,"Kanyapella W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17577,356457,"AUS","NSW SOP",2007,"For storage only",28,"Karuah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17576,356457,"AUS","NSW SOP",2005,"For storage only",28,"Karuah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17581,356457,"AUS","NSW SOP",2004,"For storage only",28,"Karuah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17597,356463,"AUS","NSW SOP",2007,"For storage only",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17598,356463,"AUS","NSW SOP",2010,"For storage only",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17599,356463,"AUS","NSW SOP",2013,"For storage only",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17596,356463,"AUS","NSW SOP",2005,"For storage only",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17600,356463,"AUS","NSW SOP",2004,"For storage only",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17649,356491,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Kinrara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17648,356491,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Kinrara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17650,356494,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17651,356495,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Kirrama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17652,356495,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Kirrama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17653,356496,"AUS","NSW SOP",2005,"For storage only",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17657,356496,"AUS","NSW SOP",2004,"For storage only",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17655,356496,"AUS","NSW SOP",2010,"For storage only",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17656,356496,"AUS","NSW SOP",2013,"For storage only",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17654,356496,"AUS","NSW SOP",2007,"For storage only",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17666,356505,"AUS","Victorian SOP",2010,"For storage only",28,"Koorangie W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17668,356505,"AUS","Victorian SOP",2013,"For storage only",28,"Koorangie W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17667,356505,"AUS","Victorian SOP",2005,"For storage only",28,"Koorangie W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17680,356507,"AUS","NSW SOP",2005,"For storage only",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17682,356507,"AUS","NSW SOP",2010,"For storage only",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17683,356507,"AUS","NSW SOP",2013,"For storage only",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17681,356507,"AUS","NSW SOP",2007,"For storage only",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17684,356507,"AUS","NSW SOP",2004,"For storage only",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17729,356514,"AUS","NSW SOP",2007,"For storage only",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17732,356514,"AUS","NSW SOP",2004,"For storage only",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17730,356514,"AUS","NSW SOP",2010,"For storage only",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17731,356514,"AUS","NSW SOP",2013,"For storage only",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17728,356514,"AUS","NSW SOP",2005,"For storage only",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17742,356515,"AUS","NSW SOP",2013,"For storage only",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17738,356515,"AUS","NSW SOP",2007,"For storage only",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17741,356515,"AUS","NSW SOP",2004,"For storage only",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17739,356515,"AUS","NSW SOP",2010,"For storage only",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17737,356515,"AUS","NSW SOP",2005,"For storage only",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17743,356518,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17744,356519,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Kuranda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17745,356519,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Kuranda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17768,356521,"AUS","NSW SOP",2013,"For storage only",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17765,356521,"AUS","NSW SOP",2005,"For storage only",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17770,356521,"AUS","NSW SOP",2004,"For storage only",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17767,356521,"AUS","NSW SOP",2010,"For storage only",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17766,356521,"AUS","NSW SOP",2007,"For storage only",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17782,356528,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Clarke W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17807,356534,"AUS","NSW SOP",2013,"For storage only",28,"Lake Innes","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17806,356534,"AUS","NSW SOP",2010,"For storage only",28,"Lake Innes","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17805,356534,"AUS","NSW SOP",2007,"For storage only",28,"Lake Innes","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17804,356534,"AUS","NSW SOP",2005,"For storage only",28,"Lake Innes","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17810,356537,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Kanagulk W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17812,356538,"AUS","Victorian SOP",2010,"For storage only",28,"Lake Lalbert W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17814,356538,"AUS","Victorian SOP",2013,"For storage only",28,"Lake Lalbert W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17813,356538,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Lalbert W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17819,356541,"AUS","NSW SOP",2004,"For storage only",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17817,356541,"AUS","NSW SOP",2010,"For storage only",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17818,356541,"AUS","NSW SOP",2013,"For storage only",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17815,356541,"AUS","NSW SOP",2005,"For storage only",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17816,356541,"AUS","NSW SOP",2007,"For storage only",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19668,356546,"AUS","Victorian SOP",2013,"For storage only",28,"Tutchewop W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19667,356546,"AUS","Victorian SOP",2010,"For storage only",28,"Tutchewop W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17829,356547,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Tyrrell W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17863,356564,"AUS","Victorian SOP",2005,"For storage only",28,"Laverton Grasslands F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17867,356567,"AUS","NSW SOP",2013,"For storage only",28,"Leacock","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17864,356567,"AUS","NSW SOP",2005,"For storage only",28,"Leacock","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17865,356567,"AUS","NSW SOP",2007,"For storage only",28,"Leacock","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17866,356567,"AUS","NSW SOP",2010,"For storage only",28,"Leacock","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17875,356569,"AUS","NSW SOP",2010,"For storage only",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17877,356569,"AUS","NSW SOP",2004,"For storage only",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17876,356569,"AUS","NSW SOP",2013,"For storage only",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17873,356569,"AUS","NSW SOP",2005,"For storage only",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17874,356569,"AUS","NSW SOP",2007,"For storage only",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17888,356589,"AUS","Victorian SOP",2005,"For storage only",28,"Limeburners Lagoon (Hovells Creek) F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17887,356589,"AUS","Victorian SOP",2010,"For storage only",28,"Limeburners Lagoon (Hovells Creek) F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17889,356589,"AUS","Victorian SOP",2013,"For storage only",28,"Limeburners Lagoon (Hovells Creek) F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17963,356621,"AUS","Victorian SOP",2005,"For storage only",28,"Longerenong B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17986,356647,"AUS","NSW SOP",2004,"For storage only",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17983,356647,"AUS","NSW SOP",2007,"For storage only",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17985,356647,"AUS","NSW SOP",2013,"For storage only",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17984,356647,"AUS","NSW SOP",2010,"For storage only",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17982,356647,"AUS","NSW SOP",2005,"For storage only",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18022,356655,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Malaan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18023,356655,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Malaan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18025,356657,"AUS","Victorian SOP",2005,"For storage only",28,"Maldon B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18026,356658,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Maleny","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18027,356658,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Maleny","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18055,356666,"AUS","Victorian SOP",2010,"For storage only",28,"Marble Gully - Mount Tambo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18056,356666,"AUS","Victorian SOP",2013,"For storage only",28,"Marble Gully - Mount Tambo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18460,356666,"AUS","Victorian SOP",2005,"For storage only",28,"Marble Gully - Mount Tambo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18104,356696,"AUS","NSW SOP",2005,"For storage only",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18107,356696,"AUS","NSW SOP",2013,"For storage only",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18105,356696,"AUS","NSW SOP",2007,"For storage only",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18106,356696,"AUS","NSW SOP",2010,"For storage only",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18109,356696,"AUS","NSW SOP",2004,"For storage only",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18114,356700,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Melsonby (Gaarraay) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18113,356700,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Melsonby (Gaarraay) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18151,356713,"AUS","NSW SOP",2004,"For storage only",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18148,356713,"AUS","NSW SOP",2007,"For storage only",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18149,356713,"AUS","NSW SOP",2010,"For storage only",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18147,356713,"AUS","NSW SOP",2005,"For storage only",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18150,356713,"AUS","NSW SOP",2013,"For storage only",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18270,356775,"AUS","Victorian SOP",2005,"For storage only",28,"Mortlake Common F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18271,356775,"AUS","Victorian SOP",2013,"For storage only",28,"Mortlake Common F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18294,356777,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Arapiles-Tooan","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18296,356777,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Arapiles-Tooan","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18295,356777,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Arapiles-Tooan","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18304,356780,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Binga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18305,356780,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Binga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18317,356783,"AUS","NSW SOP",2013,"For storage only",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18316,356783,"AUS","NSW SOP",2010,"For storage only",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18314,356783,"AUS","NSW SOP",2005,"For storage only",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18315,356783,"AUS","NSW SOP",2007,"For storage only",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18318,356783,"AUS","NSW SOP",2004,"For storage only",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18351,356790,"AUS","Victorian SOP",2013,"For storage only",28,"Mount Elizabeth N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18349,356790,"AUS","Victorian SOP",2010,"For storage only",28,"Mount Elizabeth N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18350,356790,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Elizabeth N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18368,356797,"AUS","NSW SOP",2004,"For storage only",28,"Mount Hyland","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18365,356797,"AUS","NSW SOP",2005,"For storage only",28,"Mount Hyland","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18366,356797,"AUS","NSW SOP",2007,"For storage only",28,"Mount Hyland","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18397,356802,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Mackay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18398,356802,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Mackay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19321,356817,"AUS","Victorian SOP",2005,"For storage only",28,"Mount Steiglitz S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18468,356825,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Windsor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18466,356825,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Windsor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18519,356849,"AUS","NSW SOP",2004,"For storage only",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18518,356849,"AUS","NSW SOP",2013,"For storage only",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18515,356849,"AUS","NSW SOP",2005,"For storage only",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18516,356849,"AUS","NSW SOP",2007,"For storage only",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18517,356849,"AUS","NSW SOP",2010,"For storage only",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18532,356852,"AUS","NSW SOP",2013,"For storage only",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18528,356852,"AUS","NSW SOP",2007,"For storage only",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18529,356852,"AUS","NSW SOP",2010,"For storage only",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18531,356852,"AUS","NSW SOP",2004,"For storage only",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18527,356852,"AUS","NSW SOP",2005,"For storage only",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18553,356856,"AUS","NSW SOP",2010,"For storage only",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18552,356856,"AUS","NSW SOP",2007,"For storage only",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18555,356856,"AUS","NSW SOP",2004,"For storage only",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18554,356856,"AUS","NSW SOP",2013,"For storage only",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18551,356856,"AUS","NSW SOP",2005,"For storage only",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18625,356886,"AUS","NSW SOP",2010,"For storage only",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18627,356886,"AUS","NSW SOP",2004,"For storage only",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18623,356886,"AUS","NSW SOP",2005,"For storage only",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18626,356886,"AUS","NSW SOP",2013,"For storage only",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18624,356886,"AUS","NSW SOP",2007,"For storage only",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18628,356888,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18629,356888,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18631,356889,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Nairana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18630,356889,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Nairana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18673,356896,"AUS","NSW SOP",2013,"For storage only",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18671,356896,"AUS","NSW SOP",2007,"For storage only",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18675,356896,"AUS","NSW SOP",2004,"For storage only",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18672,356896,"AUS","NSW SOP",2010,"For storage only",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18670,356896,"AUS","NSW SOP",2005,"For storage only",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18681,356904,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18682,356904,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18807,356941,"AUS","NSW SOP",2005,"For storage only",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18809,356941,"AUS","NSW SOP",2010,"For storage only",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18810,356941,"AUS","NSW SOP",2013,"For storage only",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18811,356941,"AUS","NSW SOP",2004,"For storage only",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18808,356941,"AUS","NSW SOP",2007,"For storage only",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18823,356942,"AUS","NSW SOP",2005,"For storage only",28,"Nymboida","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18824,356942,"AUS","NSW SOP",2007,"For storage only",28,"Nymboida","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18833,356944,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Oakview","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18834,356944,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Oakview","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18835,356946,"AUS","Victorian SOP",2005,"For storage only",28,"Olangolah Creek","Reference Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18841,356955,"AUS","NSW SOP",2004,"For storage only",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18843,356955,"AUS","NSW SOP",2007,"For storage only",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18845,356955,"AUS","NSW SOP",2013,"For storage only",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18844,356955,"AUS","NSW SOP",2010,"For storage only",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18842,356955,"AUS","NSW SOP",2005,"For storage only",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18857,356967,"AUS","NSW SOP",2007,"For storage only",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18859,356967,"AUS","NSW SOP",2013,"For storage only",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18858,356967,"AUS","NSW SOP",2010,"For storage only",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18861,356967,"AUS","NSW SOP",2004,"For storage only",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18856,356967,"AUS","NSW SOP",2005,"For storage only",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18896,356985,"AUS","NSW SOP",2004,"For storage only",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18891,356985,"AUS","NSW SOP",2013,"For storage only",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18890,356985,"AUS","NSW SOP",2010,"For storage only",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18889,356985,"AUS","NSW SOP",2007,"For storage only",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18888,356985,"AUS","NSW SOP",2005,"For storage only",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18895,356986,"AUS","NSW SOP",2013,"For storage only",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18893,356986,"AUS","NSW SOP",2007,"For storage only",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18892,356986,"AUS","NSW SOP",2005,"For storage only",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18894,356986,"AUS","NSW SOP",2010,"For storage only",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18897,356986,"AUS","NSW SOP",2004,"For storage only",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18902,356987,"AUS","NSW SOP",2004,"For storage only",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18900,356987,"AUS","NSW SOP",2010,"For storage only",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18899,356987,"AUS","NSW SOP",2007,"For storage only",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18898,356987,"AUS","NSW SOP",2005,"For storage only",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18901,356987,"AUS","NSW SOP",2013,"For storage only",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18905,356988,"AUS","NSW SOP",2010,"For storage only",28,"Parramatta River","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18906,356988,"AUS","NSW SOP",2013,"For storage only",28,"Parramatta River","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18903,356988,"AUS","NSW SOP",2005,"For storage only",28,"Parramatta River","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18904,356988,"AUS","NSW SOP",2007,"For storage only",28,"Parramatta River","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18928,357014,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Pidna","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18929,357014,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Pidna","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18976,357026,"AUS","Victorian SOP",2010,"For storage only",28,"Point Nepean National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18977,357026,"AUS","Victorian SOP",2013,"For storage only",28,"Point Nepean National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19045,357053,"AUS","NSW SOP",2010,"For storage only",28,"Queens Lake","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19043,357053,"AUS","NSW SOP",2005,"For storage only",28,"Queens Lake","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19046,357053,"AUS","NSW SOP",2013,"For storage only",28,"Queens Lake","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19044,357053,"AUS","NSW SOP",2007,"For storage only",28,"Queens Lake","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19076,357095,"AUS","Victorian SOP",2010,"For storage only",28,"Reedy Lake, Nagambie W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19078,357095,"AUS","Victorian SOP",2013,"For storage only",28,"Reedy Lake, Nagambie W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19077,357095,"AUS","Victorian SOP",2005,"For storage only",28,"Reedy Lake, Nagambie W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19135,357137,"AUS","NSW SOP",2010,"For storage only",28,"Rouse Hill","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19136,357137,"AUS","NSW SOP",2013,"For storage only",28,"Rouse Hill","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19134,357137,"AUS","NSW SOP",2007,"For storage only",28,"Rouse Hill","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19133,357137,"AUS","NSW SOP",2005,"For storage only",28,"Rouse Hill","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19158,357150,"AUS","NSW SOP",2010,"For storage only",28,"Saltwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19156,357150,"AUS","NSW SOP",2005,"For storage only",28,"Saltwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19159,357150,"AUS","NSW SOP",2013,"For storage only",28,"Saltwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19157,357150,"AUS","NSW SOP",2007,"For storage only",28,"Saltwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19311,357233,"AUS","Victorian SOP",2010,"For storage only",28,"Kara Kara National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19313,357233,"AUS","Victorian SOP",2013,"For storage only",28,"Kara Kara National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19312,357233,"AUS","Victorian SOP",2005,"For storage only",28,"Kara Kara National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19323,357248,"AUS","Victorian SOP",2005,"For storage only",28,"Stokes River (3) SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19364,357275,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Swain Reefs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19365,357275,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Swain Reefs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19382,357285,"AUS","Victorian SOP",2005,"For storage only",28,"Tabilk Lagoon W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19395,357286,"AUS","NSW SOP",2007,"For storage only",28,"Talawahl","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19394,357286,"AUS","NSW SOP",2005,"For storage only",28,"Talawahl","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19397,357286,"AUS","NSW SOP",2004,"For storage only",28,"Talawahl","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19407,357289,"AUS","NSW SOP",2004,"For storage only",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19405,357289,"AUS","NSW SOP",2013,"For storage only",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19404,357289,"AUS","NSW SOP",2010,"For storage only",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19402,357289,"AUS","NSW SOP",2005,"For storage only",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19403,357289,"AUS","NSW SOP",2007,"For storage only",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16764,357295,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Djiru","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16765,357295,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Djiru","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19474,357332,"AUS","NSW SOP",2013,"For storage only",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19473,357332,"AUS","NSW SOP",2010,"For storage only",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19475,357332,"AUS","NSW SOP",2004,"For storage only",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19471,357332,"AUS","NSW SOP",2005,"For storage only",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19472,357332,"AUS","NSW SOP",2007,"For storage only",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19491,357341,"AUS","Victorian SOP",2010,"For storage only",28,"The Pines F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19492,357341,"AUS","Victorian SOP",2013,"For storage only",28,"The Pines F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19522,357359,"AUS","NSW SOP",2007,"For storage only",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19523,357359,"AUS","NSW SOP",2010,"For storage only",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19521,357359,"AUS","NSW SOP",2005,"For storage only",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19524,357359,"AUS","NSW SOP",2004,"For storage only",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19525,357359,"AUS","NSW SOP",2013,"For storage only",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19550,357369,"AUS","Victorian SOP",2005,"For storage only",28,"Tomahawk Creek","Reference Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19575,357382,"AUS","NSW SOP",2005,"For storage only",28,"Toonumbar","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19576,357382,"AUS","NSW SOP",2007,"For storage only",28,"Toonumbar","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19578,357382,"AUS","NSW SOP",2004,"For storage only",28,"Toonumbar","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19588,357386,"AUS","NSW SOP",2013,"For storage only",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19585,357386,"AUS","NSW SOP",2005,"For storage only",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19589,357386,"AUS","NSW SOP",2004,"For storage only",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19586,357386,"AUS","NSW SOP",2007,"For storage only",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19587,357386,"AUS","NSW SOP",2010,"For storage only",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19643,357401,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19644,357401,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19645,357402,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Tully Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19646,357402,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Tully Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19655,357408,"AUS","NSW SOP",2005,"For storage only",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19658,357408,"AUS","NSW SOP",2013,"For storage only",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19657,357408,"AUS","NSW SOP",2010,"For storage only",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19659,357408,"AUS","NSW SOP",2004,"For storage only",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19656,357408,"AUS","NSW SOP",2007,"For storage only",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19662,357410,"AUS","NSW SOP",2010,"For storage only",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19660,357410,"AUS","NSW SOP",2005,"For storage only",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19664,357410,"AUS","NSW SOP",2004,"For storage only",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19661,357410,"AUS","NSW SOP",2007,"For storage only",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19663,357410,"AUS","NSW SOP",2013,"For storage only",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19729,357523,"AUS","Victorian SOP",2005,"For storage only",28,"Waanyarra N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19728,357523,"AUS","Victorian SOP",2010,"For storage only",28,"Waanyarra N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19756,357530,"AUS","NSW SOP",2010,"For storage only",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19754,357530,"AUS","NSW SOP",2005,"For storage only",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19757,357530,"AUS","NSW SOP",2013,"For storage only",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19755,357530,"AUS","NSW SOP",2007,"For storage only",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19758,357530,"AUS","NSW SOP",2004,"For storage only",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19805,357549,"AUS","Victorian SOP",2005,"For storage only",28,"Warby Range","Reference Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19840,357557,"AUS","NSW SOP",2007,"For storage only",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19844,357557,"AUS","NSW SOP",2004,"For storage only",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19841,357557,"AUS","NSW SOP",2010,"For storage only",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19839,357557,"AUS","NSW SOP",2005,"For storage only",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19842,357557,"AUS","NSW SOP",2013,"For storage only",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19897,357572,"AUS","NSW SOP",2013,"For storage only",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19898,357572,"AUS","NSW SOP",2004,"For storage only",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19894,357572,"AUS","NSW SOP",2005,"For storage only",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19895,357572,"AUS","NSW SOP",2007,"For storage only",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19896,357572,"AUS","NSW SOP",2010,"For storage only",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19916,357580,"AUS","NSW SOP",2007,"For storage only",28,"Whian Whian","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19917,357580,"AUS","NSW SOP",2010,"For storage only",28,"Whian Whian","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19915,357580,"AUS","NSW SOP",2005,"For storage only",28,"Whian Whian","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19918,357580,"AUS","NSW SOP",2013,"For storage only",28,"Whian Whian","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19924,357592,"AUS","Victorian SOP",2005,"For storage only",28,"Whroo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19937,357596,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Wietalaba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19936,357596,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Wietalaba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19962,357607,"AUS","NSW SOP",2013,"For storage only",28,"William Howe","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19960,357607,"AUS","NSW SOP",2007,"For storage only",28,"William Howe","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19961,357607,"AUS","NSW SOP",2010,"For storage only",28,"William Howe","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19959,357607,"AUS","NSW SOP",2005,"For storage only",28,"William Howe","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19972,357613,"AUS","Birdlife IBA",2008,"For storage only",28,"Wilsons Promontory Islands","Remote and Natural Area - Schedule 6, National Parks Act","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20024,357625,"AUS","NSW SOP",2007,"For storage only",28,"Wolli Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20023,357625,"AUS","NSW SOP",2005,"For storage only",28,"Wolli Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20025,357625,"AUS","NSW SOP",2010,"For storage only",28,"Wolli Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20026,357625,"AUS","NSW SOP",2013,"For storage only",28,"Wolli Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20033,357627,"AUS","NSW SOP",2007,"For storage only",28,"Wollumbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20032,357627,"AUS","NSW SOP",2005,"For storage only",28,"Wollumbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20034,357627,"AUS","NSW SOP",2010,"For storage only",28,"Wollumbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20035,357627,"AUS","NSW SOP",2013,"For storage only",28,"Wollumbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20037,357631,"AUS","NSW SOP",2007,"For storage only",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20038,357631,"AUS","NSW SOP",2010,"For storage only",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20044,357631,"AUS","NSW SOP",2004,"For storage only",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20039,357631,"AUS","NSW SOP",2013,"For storage only",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20036,357631,"AUS","NSW SOP",2005,"For storage only",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20056,357637,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Wongi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20057,357637,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Wongi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20062,357641,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Woocoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20061,357641,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Woocoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20063,357642,"AUS","Victorian SOP",2005,"For storage only",28,"Wood Point F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20088,357660,"AUS","Victorian SOP",2005,"For storage only",28,"Wooroonook Lakes (Middle and East) W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20089,357660,"AUS","Victorian SOP",2013,"For storage only",28,"Wooroonook Lakes (Middle and East) W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20087,357660,"AUS","Victorian SOP",2010,"For storage only",28,"Wooroonook Lakes (Middle and East) W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20095,357668,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Woowoonga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20094,357668,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Woowoonga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20111,357671,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Woroon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20112,357671,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Woroon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20127,357674,"AUS","Victorian SOP",2005,"For storage only",28,"Wurdi Youyang B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20150,357688,"AUS","NSW SOP",2004,"For storage only",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20146,357688,"AUS","NSW SOP",2005,"For storage only",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20147,357688,"AUS","NSW SOP",2007,"For storage only",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20148,357688,"AUS","NSW SOP",2010,"For storage only",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20149,357688,"AUS","NSW SOP",2013,"For storage only",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20175,357695,"AUS","NSW SOP",2005,"For storage only",28,"Yanununbeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20179,357695,"AUS","NSW SOP",2004,"For storage only",28,"Yanununbeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20176,357695,"AUS","NSW SOP",2007,"For storage only",28,"Yanununbeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20206,357702,"AUS","NSW SOP",2013,"For storage only",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20205,357702,"AUS","NSW SOP",2010,"For storage only",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20207,357702,"AUS","NSW SOP",2004,"For storage only",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20203,357702,"AUS","NSW SOP",2005,"For storage only",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20204,357702,"AUS","NSW SOP",2007,"For storage only",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20209,357703,"AUS","NSW SOP",2007,"For storage only",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20216,357703,"AUS","NSW SOP",2004,"For storage only",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20210,357703,"AUS","NSW SOP",2010,"For storage only",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20208,357703,"AUS","NSW SOP",2005,"For storage only",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20211,357703,"AUS","NSW SOP",2013,"For storage only",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20212,357704,"AUS","NSW SOP",2005,"For storage only",28,"Yarringully","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20215,357704,"AUS","NSW SOP",2013,"For storage only",28,"Yarringully","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20213,357704,"AUS","NSW SOP",2007,"For storage only",28,"Yarringully","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20214,357704,"AUS","NSW SOP",2010,"For storage only",28,"Yarringully","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20233,357709,"AUS","NSW SOP",2005,"For storage only",28,"Yellomundee","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20235,357709,"AUS","NSW SOP",2010,"For storage only",28,"Yellomundee","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20236,357709,"AUS","NSW SOP",2013,"For storage only",28,"Yellomundee","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20234,357709,"AUS","NSW SOP",2007,"For storage only",28,"Yellomundee","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20246,357711,"AUS","NSW SOP",2010,"For storage only",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20243,357711,"AUS","NSW SOP",2004,"For storage only",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20245,357711,"AUS","NSW SOP",2007,"For storage only",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20244,357711,"AUS","NSW SOP",2005,"For storage only",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20247,357711,"AUS","NSW SOP",2013,"For storage only",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20275,357716,"AUS","NSW SOP",2010,"For storage only",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20262,357716,"AUS","NSW SOP",2004,"For storage only",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20276,357716,"AUS","NSW SOP",2013,"For storage only",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20273,357716,"AUS","NSW SOP",2005,"For storage only",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20274,357716,"AUS","NSW SOP",2007,"For storage only",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20270,357717,"AUS","NSW SOP",2013,"For storage only",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20272,357717,"AUS","NSW SOP",2004,"For storage only",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20269,357717,"AUS","NSW SOP",2010,"For storage only",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20267,357717,"AUS","NSW SOP",2005,"For storage only",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20268,357717,"AUS","NSW SOP",2007,"For storage only",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18638,357722,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Nangur","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18637,357722,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Nangur","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19828,357742,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Warro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19829,357742,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Warro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16252,357748,"AUS","Victorian SOP",2005,"For storage only",28,"Carpendeit B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15,365025,"ARE","METT",2016,"For storage only",1,"Dubai Desert Conservation Reserve (Al Maha)","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -13873,365963,"UMI","USA SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13880,366856,"USA","USA SOP",2006,"For storage only",28,"Catoctin Mountain","Recreation Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13889,367731,"USA","USA SOP",2005,"For storage only",28,"Death Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13919,368362,"UMI","Birdlife IBA",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13908,370321,"USA","USA SOP",2005,"For storage only",28,"Joshua Tree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13915,371941,"USA","USA SOP",2005,"For storage only",28,"Mojave","National Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20629,377710,"PNG","RAPPAM",2004,"For storage only",28,"Kokoda Historical Track Reserve","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20663,377711,"PNG","RAPPAM",2004,"For storage only",28,"Wewak Peace Memorial Park","Protected Seascape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20623,377712,"PNG","RAPPAM",2004,"For storage only",28,"Hunstein Range","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20628,377713,"PNG","RAPPAM",2004,"For storage only",28,"Klampun","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20648,377715,"PNG","RAPPAM",2004,"For storage only",28,"Nusareng","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20660,377716,"PNG","RAPPAM",2004,"For storage only",28,"Tavalo","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20627,377717,"PNG","RAPPAM",2004,"For storage only",28,"Kavakuna Caves","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9403,377853,"HRV","METT",2016,"For storage only",19,"Žumberak - Samoborsko gorje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9384,377853,"HRV","METT",2014,"For storage only",19,"Žumberak - Samoborsko gorje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9365,377853,"HRV","METT",2012,"For storage only",19,"Žumberak - Samoborsko gorje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9404,377863,"HRV","METT",2016,"For storage only",19,"Vransko jezero","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9366,377863,"HRV","METT",2012,"For storage only",19,"Vransko jezero","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9385,377863,"HRV","METT",2014,"For storage only",19,"Vransko jezero","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9396,377865,"HRV","METT",2016,"For storage only",19,"Sjeverni Velebit","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9377,377865,"HRV","METT",2014,"For storage only",19,"Sjeverni Velebit","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9358,377865,"HRV","METT",2012,"For storage only",19,"Sjeverni Velebit","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9367,378015,"HRV","METT",2012,"For storage only",19,"Lastovsko otocje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9386,378015,"HRV","METT",2014,"For storage only",19,"Lastovsko otocje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9405,378015,"HRV","METT",2016,"For storage only",19,"Lastovsko otocje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9368,378033,"HRV","METT",2012,"For storage only",19,"Papuk","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9387,378033,"HRV","METT",2014,"For storage only",19,"Papuk","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9406,378033,"HRV","METT",2016,"For storage only",19,"Papuk","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9369,378034,"HRV","METT",2012,"For storage only",19,"Ucka","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9407,378034,"HRV","METT",2016,"For storage only",19,"Ucka","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -9388,378034,"HRV","METT",2014,"For storage only",19,"Ucka","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English",FALSE -11784,378055,"DEU","METT",2006,"For storage only",28,"Barnstedt-Melbecker Bach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11825,378057,"DEU","METT",2006,"For storage only",28,"Bergbaufolgelandschaft Gr++nhaus","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13670,378253,"DEU","METT",2005,"For storage only",28,"NSG Oestlicher Teutoburger Wald (LP BI-West)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13471,378263,"DEU","METT",2005,"For storage only",28,"NSG Ratinger Sandberge ","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1074,378865,"EST","METT",2010,"For storage only",15,"Põhja-Kõrvemaa looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1073,379090,"EST","METT",2010,"For storage only",15,"Kärevere looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1077,379106,"EST","METT",2010,"For storage only",15,"Struuga maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1087,379237,"EST","METT",2010,"For storage only",15,"Käntu-Kastja hoiuala (Läänemaa)","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1085,379250,"EST","METT",2010,"For storage only",15,"Lavassaare hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -1105,379261,"EST","METT",2012,"For storage only",15,"Pärnu jõe hoiuala (Pärnu)","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -29571,385992,"BEL","National PAME Assessment",0,"For storage only",41,"Poelbos","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29570,385993,"BEL","National PAME Assessment",0,"For storage only",41,"Moeraske","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29565,385995,"BEL","National PAME Assessment",0,"For storage only",41,"Bois du Laerbeek - Laarbeekbos","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29568,385996,"BEL","National PAME Assessment",0,"For storage only",41,"marais de Jette - Moeras van Jette","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29567,385997,"BEL","National PAME Assessment",0,"For storage only",41,"marais de Ganshoren - Moeras van Ganshoren","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29569,385998,"BEL","National PAME Assessment",0,"For storage only",41,"mare du Pinnebeek - Pinnebeekpoel","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29574,385999,"BEL","National PAME Assessment",0,"For storage only",41,"vallon de Trois fontaines - Dry Borrenvallei","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29576,386000,"BEL","National PAME Assessment",0,"For storage only",41,"vallon des Enfants noyés - Verdronken kinderenvallei","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29575,386001,"BEL","National PAME Assessment",0,"For storage only",41,"vallon de Vuylbeek - Vuilbeekvallei","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29578,386002,"BEL","National PAME Assessment",0,"For storage only",41,"Zavelenberg","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29573,386004,"BEL","National PAME Assessment",0,"For storage only",41,"Rouge-Cloître - Rood Klooster","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29580,386005,"BEL","National PAME Assessment",0,"For storage only",41,"Rouge-Cloître - Rood Klooster","Forest Reserves","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29566,386006,"BEL","National PAME Assessment",0,"For storage only",41,"Kinsendael-Kriekenput","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29572,386015,"BEL","National PAME Assessment",0,"For storage only",41,"Roselière du Parc des Sources - Rietveld van het Ter Bronnenpark","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28363,386104,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Helschot","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28364,386125,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Bellebargie","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28365,386133,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Pietersembos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28366,386134,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Hasselbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28367,386135,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Pijnven - vriesput","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28368,386136,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"s Herenbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28369,386138,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Duinbos Jan De Schuyter","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29579,386249,"BEL","National PAME Assessment",0,"For storage only",41,"Grippensdelle","Forest Reserves","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -13203,387295,"SVN","Birdlife IBA",2013,"For storage only",28,"Krajinski park Ljubljansko barje","Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -8959,387447,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Inverness-shire Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8962,387448,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Onich to North Ballachulish Woods and Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -25014,387604,"CHE","National Inventory",2011,"For storage only",37,"Kiesgruben Steig","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25015,387605,"CHE","National Inventory",2011,"For storage only",37,"Les Baumes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25016,387606,"CHE","National Inventory",2011,"For storage only",37,"Le Villaret","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25017,387607,"CHE","National Inventory",2011,"For storage only",37,"Vurzy","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25018,387608,"CHE","National Inventory",2011,"For storage only",37,"Peney","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25019,387609,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Balmgüeter","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25020,387610,"CHE","National Inventory",2011,"For storage only",37,"Grube Gugleracher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25021,387611,"CHE","National Inventory",2011,"For storage only",37,"Oberfeld - Oberholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25022,387612,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Mattehölzli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25023,387613,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Sticherlöchli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25024,387614,"CHE","National Inventory",2011,"For storage only",37,"Ziegelei Roggwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25025,387615,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Solenberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25026,387616,"CHE","National Inventory",2011,"For storage only",37,"ESR interna","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25027,387617,"CHE","National Inventory",2011,"For storage only",37,"Zil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25028,387618,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube HEVA Dietenboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25029,387619,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Lätten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25030,387620,"CHE","National Inventory",2011,"For storage only",37,"Tongrube Paradies","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25031,387621,"CHE","National Inventory",2011,"For storage only",37,"Lehmgrube Bergerwilen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25032,387622,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Mayer Grossfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25033,387623,"CHE","National Inventory",2011,"For storage only",37,"Tongrube Ziegelei","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25034,387624,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Zelgli und Flachweiher im Hardwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25035,387625,"CHE","National Inventory",2011,"For storage only",37,"Unterschönenbuch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25036,387626,"CHE","National Inventory",2011,"For storage only",37,"Ziegelei Rafz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25037,387627,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Hübeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25038,387628,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Bannen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25039,387629,"CHE","National Inventory",2011,"For storage only",37,"Lehmgrube Häuli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25040,387630,"CHE","National Inventory",2011,"For storage only",37,"Grube Utigen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25041,387631,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Wisgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25042,387632,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube NW Büel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25043,387633,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube List","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25044,387634,"CHE","National Inventory",2011,"For storage only",37,"Lehmgrube Pfaffwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25045,387635,"CHE","National Inventory",2011,"For storage only",37,"Côte à Bourgeois","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25046,387636,"CHE","National Inventory",2011,"For storage only",37,"Unter Balliswil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25047,387637,"CHE","National Inventory",2011,"For storage only",37,"Steinbruch Guber","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25048,387638,"CHE","National Inventory",2011,"For storage only",37,"Grube Briseck","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25049,387639,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Eichrüteli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25050,387640,"CHE","National Inventory",2011,"For storage only",37,"Chrüzstross","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25051,387641,"CHE","National Inventory",2011,"For storage only",37,"Steinbruch Mellikon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25052,387642,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Honert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25053,387643,"CHE","National Inventory",2011,"For storage only",37,"Lättgrueb","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25054,387644,"CHE","National Inventory",2011,"For storage only",37,"Ziegeleigrube Oberburg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25055,387645,"CHE","National Inventory",2011,"For storage only",37,"Kiesgruben Mittlerboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25056,387646,"CHE","National Inventory",2011,"For storage only",37,"Kiesgruben Burgauerfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25057,387647,"CHE","National Inventory",2011,"For storage only",37,"Steinbruch Jakobsberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25058,387648,"CHE","National Inventory",2011,"For storage only",37,"La Delèse","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25059,387649,"CHE","National Inventory",2011,"For storage only",37,"Laichgebiet Tambrig-Oberholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25060,387650,"CHE","National Inventory",2011,"For storage only",37,"Gruben Pfannenstil/Morgenhalden/ Höchi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25061,387651,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Härdacher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25062,387652,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Hochfurenzelg (Tobelacker)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25063,387653,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Hombrig","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25064,387654,"CHE","National Inventory",2011,"For storage only",37,"Lehmgrube Ober Huwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25065,387655,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Langfuhr","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25066,387656,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Schürli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25067,387657,"CHE","National Inventory",2011,"For storage only",37,"Tongrube Eriwis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25068,387658,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Riedt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25069,387659,"CHE","National Inventory",2011,"For storage only",37,"Le Tayment","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25070,387660,"CHE","National Inventory",2011,"For storage only",37,"Monteynan","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25071,387661,"CHE","National Inventory",2011,"For storage only",37,"Lehmgrube Tonwarenfabrik","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25072,387662,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrubenbiotope Zimiker Eichli-Breiti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25073,387663,"CHE","National Inventory",2011,"For storage only",37,"Kieswerk Sieber Agersten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25074,387664,"CHE","National Inventory",2011,"For storage only",37,"Hochrüti/Vogelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25075,387665,"CHE","National Inventory",2011,"For storage only",37,"Äbisholzgrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25076,387666,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Eschenbach (Rüchlig)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25077,387747,"CHE","National Inventory",2011,"For storage only",37,"Kies- und Betonwerk Bangerter","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25078,387748,"CHE","National Inventory",2011,"For storage only",37,"Le Chaney","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25079,387749,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Moortel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25080,387750,"CHE","National Inventory",2011,"For storage only",37,"Lugibach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25081,387751,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Ägerten/ Steinächer","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25082,387752,"CHE","National Inventory",2011,"For storage only",37,"Steinbruch Gabenchopf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25083,387753,"CHE","National Inventory",2011,"For storage only",37,"Champs Grillet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25084,387754,"CHE","National Inventory",2011,"For storage only",37,"Chrüzegg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25085,387755,"CHE","National Inventory",2011,"For storage only",37,"Ennerberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25086,387756,"CHE","National Inventory",2011,"For storage only",37,"Kiesgrube Sarbach/Hintertann","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25087,387757,"CHE","National Inventory",2011,"For storage only",37,"Stolten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25088,387758,"CHE","National Inventory",2011,"For storage only",37,"Grube Hohrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25089,387759,"CHE","National Inventory",2011,"For storage only",37,"Allmend-Forenban","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25090,387760,"CHE","National Inventory",2011,"For storage only",37,"Ägertengrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25091,387761,"CHE","National Inventory",2011,"For storage only",37,"Booler","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25092,387762,"CHE","National Inventory",2011,"For storage only",37,"Steinbruch Oberacher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25093,387763,"CHE","National Inventory",2011,"For storage only",37,"Tongrube Böttstein","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25094,387764,"CHE","National Inventory",2011,"For storage only",37,"Galmet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25095,387765,"CHE","National Inventory",2011,"For storage only",37,"Am Schöftler","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -11674,388667,"GUF","METT",0,"For storage only",28,"Guyane (parc amazonien)","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12611,388861,"PRT","Birdlife IBA",2005,"For storage only",28,"Tejo Internacional","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14771,389001,"ESP","Birdlife IBA",2008,"For storage only",28,"Lagunas de Villafafila","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14501,389005,"ESP","Catalonia MEE",2002,"For storage only",28,"Alt Àneu","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14524,389006,"ESP","Catalonia MEE",2002,"For storage only",28,"Cap de Creus","Nature Reserve (Integral)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14581,389028,"ESP","Birdlife IBA",2007,"For storage only",28,"Hoces del Alto Ebro y Rudrón","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14689,389073,"ESP","Catalonia MEE",2002,"For storage only",28,"Riera de Merlés","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14489,389074,"ESP","Catalonia MEE",2002,"For storage only",28,"Aiguabarreig Segre-Cinca","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14490,389075,"ESP","Catalonia MEE",2002,"For storage only",28,"Aiguabarreig Segre-Noguera Pallaresa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14492,389076,"ESP","Catalonia MEE",2002,"For storage only",28,"Aiguabarreig Segre-Noguera Ribagorçana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14496,389077,"ESP","Catalonia MEE",2002,"For storage only",28,"Aiguamolls de l`Alt Empordà","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14499,389079,"ESP","Catalonia MEE",2002,"For storage only",28,"Aigüestortes","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14500,389080,"ESP","Catalonia MEE",2002,"For storage only",28,"Riu Gai+á-Albereda de Santes Creus","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14503,389082,"ESP","Catalonia MEE",2002,"For storage only",28,"Alta Garrotxa, l`","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14509,389083,"ESP","Catalonia MEE",2002,"For storage only",28,"Arribèra deth Garona","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14510,389084,"ESP","Catalonia MEE",2002,"For storage only",28,"Artiga de Lin, Era","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14512,389085,"ESP","Catalonia MEE",2002,"For storage only",28,"Barrancs de Sant Antoni-Lloret-la Galera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14516,389086,"ESP","Catalonia MEE",2002,"For storage only",28,"Bessons, els","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14525,389087,"ESP","Catalonia MEE",2002,"For storage only",28,"Cap de Creus","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14526,389088,"ESP","Catalonia MEE",2002,"For storage only",28,"Cap de Santes Creus-Litoral meridional tarragoní","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14527,389089,"ESP","Catalonia MEE",2002,"For storage only",28,"Capçalera de la Noguera Ribagorçana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14528,389090,"ESP","Catalonia MEE",2002,"For storage only",28,"Capçaleres del Ter i del Freser","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14529,389091,"ESP","Catalonia MEE",2002,"For storage only",28,"Carbasí","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14534,389092,"ESP","Catalonia MEE",2002,"For storage only",28,"Cingles de Bertí","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14535,389093,"ESP","Catalonia MEE",2002,"For storage only",28,"Collegats-Queralt","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14537,389094,"ESP","Catalonia MEE",2002,"For storage only",28,"Collsacabra","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14538,389095,"ESP","Catalonia MEE",2002,"For storage only",28,"Conreria-Sant Mateu-Céllecs, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14539,389096,"ESP","Catalonia MEE",2002,"For storage only",28,"Costoja","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14543,389097,"ESP","Catalonia MEE",2002,"For storage only",28,"Delta de l`Ebre","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14544,389098,"ESP","Catalonia MEE",2002,"For storage only",28,"Delta del Llobregat","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14548,389099,"ESP","Catalonia MEE",2002,"For storage only",28,"Desembocadura del Riu Gaià","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14555,389100,"ESP","Catalonia MEE",2002,"For storage only",28,"Erms d`Aitona","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14556,389101,"ESP","Catalonia MEE",2002,"For storage only",28,"Estanh de Vielha","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14558,389102,"ESP","Catalonia MEE",2002,"For storage only",28,"Estany de Banyoles","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14559,389103,"ESP","Catalonia MEE",2002,"For storage only",28,"Estany de Montcortès","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14560,389104,"ESP","Catalonia MEE",2002,"For storage only",28,"Estany de Sils","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14562,389105,"ESP","Catalonia MEE",2002,"For storage only",28,"Estanys de Basturs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14564,389106,"ESP","Catalonia MEE",2002,"For storage only",28,"Basses de l`Albera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14565,389107,"ESP","Catalonia MEE",2002,"For storage only",28,"Riu i estanys de Tordera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14566,389108,"ESP","Catalonia MEE",2002,"For storage only",28,"Eth Portilhon","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14567,389109,"ESP","Catalonia MEE",2002,"For storage only",28,"Faiada de Malpàs, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14568,389110,"ESP","Catalonia MEE",2002,"For storage only",28,"Filià","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14569,389111,"ESP","Catalonia MEE",2002,"For storage only",28,"Foix, el","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14574,389117,"ESP","Catalonia MEE",2002,"For storage only",28,"Gallifa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14576,389118,"ESP","Catalonia MEE",2002,"For storage only",28,"Gavarres, les","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14577,389119,"ESP","Catalonia MEE",2002,"For storage only",28,"Gelada","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14580,389120,"ESP","Catalonia MEE",2002,"For storage only",28,"Guilleries, les","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14587,389121,"ESP","Catalonia MEE",2002,"For storage only",28,"Illa de Canet","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14590,389122,"ESP","Catalonia MEE",2002,"For storage only",28,"Riberes i illes de l`Ebre","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14592,389123,"ESP","Catalonia MEE",2002,"For storage only",28,"Illes Medes","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14602,389124,"ESP","Catalonia MEE",2002,"For storage only",28,"Mare de Déu de la Roca","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14603,389125,"ESP","Catalonia MEE",2002,"For storage only",28,"Marimanha","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14609,389126,"ESP","Catalonia MEE",2002,"For storage only",28,"Massís de l`Albera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14611,389127,"ESP","Catalonia MEE",2002,"For storage only",28,"Massís de les Cadiretes","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14612,389128,"ESP","Catalonia MEE",2002,"For storage only",28,"Massís de les Salines","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14613,389129,"ESP","Catalonia MEE",2002,"For storage only",28,"Massís del Garraf","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14620,389131,"ESP","Catalonia MEE",2002,"For storage only",28,"Miracle, el","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14622,389133,"ESP","Catalonia MEE",2002,"For storage only",28,"Montanhes de Les e Bossòst","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14627,389134,"ESP","Catalonia MEE",2002,"For storage only",28,"Montesquiu","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14629,389135,"ESP","Catalonia MEE",2002,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14631,389136,"ESP","Catalonia MEE",2002,"For storage only",28,"Montllober","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14633,389137,"ESP","Catalonia MEE",2002,"For storage only",28,"El Montmell-Marmellar","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14634,389138,"ESP","Catalonia MEE",2002,"For storage only",28,"Montserrat","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14640,389139,"ESP","Catalonia MEE",2002,"For storage only",28,"Muntanya de Sal de Cardona","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14641,389140,"ESP","Catalonia MEE",2002,"For storage only",28,"Muntanyes de Begur","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14643,389142,"ESP","Catalonia MEE",2002,"For storage only",28,"Muntanyes de Prades","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14646,389143,"ESP","Catalonia MEE",2002,"For storage only",28,"Muntanyes de Rocacorba","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14647,389144,"ESP","Catalonia MEE",2002,"For storage only",28,"Muntanyes de Tivissa-Vandellòs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14648,389145,"ESP","Catalonia MEE",2002,"For storage only",28,"Naut Aran","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14649,389146,"ESP","Catalonia MEE",2002,"For storage only",28,"Vall del Rigart","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14650,389147,"ESP","Catalonia MEE",2002,"For storage only",28,"Obagues del Riu Corb","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14651,389148,"ESP","Catalonia MEE",2002,"For storage only",28,"Olèrdola","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14660,389149,"ESP","Catalonia MEE",2002,"For storage only",28,"Penya-segats de la Muga","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14662,389151,"ESP","Catalonia MEE",2002,"For storage only",28,"Plana de Sant Jordi, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14663,389152,"ESP","Catalonia MEE",2002,"For storage only",28,"Platja de Torredembarra i Creixell","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14665,389153,"ESP","Catalonia MEE",2002,"For storage only",28,"Ports, els","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14668,389154,"ESP","Catalonia MEE",2002,"For storage only",28,"Puig de la Banya del Boc","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14678,389155,"ESP","Catalonia MEE",2002,"For storage only",28,"Riba-roja","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14680,389156,"ESP","Catalonia MEE",2002,"For storage only",28,"Ribera de l`Algars","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14682,389157,"ESP","Catalonia MEE",2002,"For storage only",28,"Ribera de l`Ebre a Flix","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14683,389158,"ESP","Catalonia MEE",2002,"For storage only",28,"Ribera Salada","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14684,389159,"ESP","Catalonia MEE",2002,"For storage only",28,"Riberes de l`Alt Segre","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14687,389160,"ESP","Catalonia MEE",2002,"For storage only",28,"Riera d`Arbúcies","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14690,389161,"ESP","Catalonia MEE",2002,"For storage only",28,"Riera de Navel","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14691,389162,"ESP","Catalonia MEE",2002,"For storage only",28,"Riera de Santa Coloma","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14693,389163,"ESP","Catalonia MEE",2002,"For storage only",28,"Riera de Sorreigs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14695,389164,"ESP","Catalonia MEE",2002,"For storage only",28,"Rojala-Platja del Torn, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14700,389165,"ESP","Catalonia MEE",2002,"For storage only",28,"Roques Blanques","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14701,389166,"ESP","Catalonia MEE",2002,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14702,389167,"ESP","Catalonia MEE",2002,"For storage only",28,"Sant Joan de Toran","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14703,389168,"ESP","Catalonia MEE",2002,"For storage only",28,"Sant Llorenç del Munt i l`Obac","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14706,389169,"ESP","Catalonia MEE",2002,"For storage only",28,"Sauva Negra, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14707,389170,"ESP","Catalonia MEE",2002,"For storage only",28,"Savassona","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14708,389171,"ESP","Catalonia MEE",2002,"For storage only",28,"Sèquia Major","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14709,389172,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra Cavallera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14710,389173,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra d`Aubenç i Roc de Cogul","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14711,389174,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra d`Ensija-els Rasos de Peguera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14712,389177,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra de Carreu-Sant Corneli","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14713,389178,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra de Castelltallat","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14714,389179,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra de Collserola","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14716,389180,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra de Llaberia","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14717,389181,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra de Montgrony","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14718,389182,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra de Montsià","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14720,389183,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra de Picancel","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14721,389184,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra de Queralt i Els Tossals","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14723,389185,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra de Turp i Mora Condal-Valldaran","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14724,389186,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra del Catllaràs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14725,389187,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra del Montsant","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14726,389188,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra del Montsec","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14728,389189,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra del Verd","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14729,389190,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra Llarga-Secans de la Noguera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14730,389191,"ESP","Catalonia MEE",2002,"For storage only",28,"Serra Mitjana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14731,389192,"ESP","Catalonia MEE",2002,"For storage only",28,"Serres d`Odèn-Port del Comte","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14732,389193,"ESP","Catalonia MEE",2002,"For storage only",28,"Serres de Busa-els Bastets-Lord","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14733,389194,"ESP","Catalonia MEE",2002,"For storage only",28,"Serres de Cardó-el Boix","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14734,389195,"ESP","Catalonia MEE",2002,"For storage only",28,"Serres de Milany-Santa Magdalena i Puigsacalm-Bellmunt","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14737,389196,"ESP","Catalonia MEE",2002,"For storage only",28,"Serres de Pàndols-Cavalls","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14738,389204,"ESP","Catalonia MEE",2002,"For storage only",28,"Serres de Pradell-l`Argentera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14739,389205,"ESP","Catalonia MEE",2002,"For storage only",28,"Serres del Cadí-Moixeró","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14735,389206,"ESP","Catalonia MEE",2002,"For storage only",28,"Serres del Montnegre i el Corredor","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14746,389207,"ESP","Catalonia MEE",2002,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14752,389208,"ESP","Catalonia MEE",2002,"For storage only",28,"Tossa Plana de Lles-Puigpedrós","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14531,389208,"ESP","Birdlife IBA",2008,"For storage only",28,"Tossa Plana de Lles-Puigpedrós","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14754,389209,"ESP","Catalonia MEE",2002,"For storage only",28,"Tossal Gros de Miramar","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14755,389210,"ESP","Catalonia MEE",2002,"For storage only",28,"Tossals d` Almatret","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14756,389211,"ESP","Catalonia MEE",2002,"For storage only",28,"Tossals d`Isòvol i Olopte","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14758,389212,"ESP","Catalonia MEE",2002,"For storage only",28,"Serós-Tossals de Montmeneu","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14759,389214,"ESP","Catalonia MEE",2002,"For storage only",28,"Tres Hereus, els","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14760,389215,"ESP","Catalonia MEE",2002,"For storage only",28,"Turons de la Plana Ausetana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14761,389216,"ESP","Catalonia MEE",2002,"For storage only",28,"Turons de Maçanet","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14764,389217,"ESP","Catalonia MEE",2002,"For storage only",28,"Utxesa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14773,389219,"ESP","Catalonia MEE",2002,"For storage only",28,"Volcà de la Crosa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14778,389220,"ESP","Catalonia MEE",2002,"For storage only",28,"Zona Volcànica de la Garrotxa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14557,389229,"ESP","Catalonia MEE",2002,"For storage only",28,"Estany d`Ivars-Vilasana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14722,389249,"ESP","Catalonia MEE",2002,"For storage only",28,"Vall Alta de Serradell-Terreta-Serra de Sant Gervàs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28370,393584,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Zoerselbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28310,393598,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Muizenbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28311,393599,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Heverleebos: Putten van de IJzerweg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28312,393600,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Den Doolhof","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28313,393601,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"J. Zwaenepoel","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28314,393602,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Heverleebos: Kleine Moerassen","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29577,394550,"BEL","National PAME Assessment",0,"For storage only",41,"Vogelzangbeek","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -13199,394688,"SVN","RAPPAM",2009,"For storage only",28,"Goricko","Ecological Important Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13214,394733,"SVN","Birdlife IBA",2013,"For storage only",28,"Snežnik - Pivka","Ecological Important Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13204,394847,"SVN","Birdlife IBA",2013,"For storage only",28,"Ljubljansko barje","Ecological Important Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13201,394879,"SVN","RAPPAM",2009,"For storage only",28,"Kolpa","Ecological Important Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13215,395174,"SVN","Birdlife IBA",2013,"For storage only",28,"Javorniki - Snežnik","Specialy Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13205,395208,"SVN","Birdlife IBA",2013,"For storage only",28,"Ljubljansko barje","Specialy Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13216,395224,"SVN","Birdlife IBA",2013,"For storage only",28,"Snežnik - Pivka","Specialy Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13206,395236,"SVN","Birdlife IBA",2013,"For storage only",28,"Ljubljansko barje","Specialy Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -4490,395269,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Dyfrdwy (River Dee)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6725,395270,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brithdir a Chwm Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6741,395271,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn Coch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6739,395272,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bryn Coch a Capel Hermon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6788,395273,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Blaen-Bielly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6806,395274,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Heol y Llidiart-coch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6850,395275,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cefn Onn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6856,395276,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwarel Gwenithfaen Madoc","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6954,395277,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd y Barri/Barry Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6958,395278,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Comin Helygain a Glaswelltiroedd Treffynnon/Halkyn Common and Holywell Greassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4734,395279,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Abrethin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7048,395280,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Dewi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7075,395281,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dol-cyn-afon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7085,395282,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eithinog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7099,395283,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fforest Goch Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6638,395284,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Graig Penllyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7148,395285,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwaun Gledyr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7187,395286,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gwlyptiroedd Casnewydd / Newport Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7214,395287,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Larks Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7330,395288,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Darren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7332,395289,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Erglodd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7333,395290,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Frongoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7342,395291,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Pennant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7409,395292,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen-y-graig-goch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7496,395293,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Tonyrefail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7509,395294,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosydd Llanpumsaint","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7472,395295,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosydd Nant Eithrim","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7526,395296,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sgitiau Glas Ynys Mon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7564,395297,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trychiad Ffordd Coed Llyn-y-Garnedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7488,395298,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ty Bach Ystlumod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7568,395299,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ty'r Hen Forwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7560,395300,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyllau Mwn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -22128,397426,"FIN","Birdlife IBA",2010,"For storage only",28,"Kokkolan saaristo ja Harrinniemi","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -25096,398199,"CHE","National Inventory",2011,"For storage only",37,"Nänzligenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25097,398200,"CHE","National Inventory",2011,"For storage only",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25098,398201,"CHE","National Inventory",2011,"For storage only",37,"Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25099,398202,"CHE","National Inventory",2011,"For storage only",37,"Sugiez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25100,398203,"CHE","National Inventory",2011,"For storage only",37,"Hell","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25101,398204,"CHE","National Inventory",2011,"For storage only",37,"Ober Axen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25102,398205,"CHE","National Inventory",2011,"For storage only",37,"Ober Bärchi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25103,398206,"CHE","National Inventory",2011,"For storage only",37,"Sulz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25104,398207,"CHE","National Inventory",2011,"For storage only",37,"Rophaien","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25105,398208,"CHE","National Inventory",2011,"For storage only",37,"Nant-Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25106,398209,"CHE","National Inventory",2011,"For storage only",37,"Tannegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25107,398210,"CHE","National Inventory",2011,"For storage only",37,"Hinter Wissenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25108,398211,"CHE","National Inventory",2011,"For storage only",37,"Windgällen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25109,398212,"CHE","National Inventory",2011,"For storage only",37,"Unter Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25110,398213,"CHE","National Inventory",2011,"For storage only",37,"Unter Gisleralp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25111,398214,"CHE","National Inventory",2011,"For storage only",37,"Champ Ribaud","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25112,398215,"CHE","National Inventory",2011,"For storage only",37,"Vorder Wissenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25113,398216,"CHE","National Inventory",2011,"For storage only",37,"Hüenderegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25114,398217,"CHE","National Inventory",2011,"For storage only",37,"Chäserberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25115,398218,"CHE","National Inventory",2011,"For storage only",37,"Fruttwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25116,398219,"CHE","National Inventory",2011,"For storage only",37,"Schartihöreli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25117,398220,"CHE","National Inventory",2011,"For storage only",37,"Obflüeweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25118,398221,"CHE","National Inventory",2011,"For storage only",37,"Sidenplangg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25119,398222,"CHE","National Inventory",2011,"For storage only",37,"Maison de Commune","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25120,398223,"CHE","National Inventory",2011,"For storage only",37,"Gorplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25121,398224,"CHE","National Inventory",2011,"For storage only",37,"Sassi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25122,398225,"CHE","National Inventory",2011,"For storage only",37,"Les Neigles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25123,398226,"CHE","National Inventory",2011,"For storage only",37,"Butzlichöpf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25124,398227,"CHE","National Inventory",2011,"For storage only",37,"Trudelingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25125,398228,"CHE","National Inventory",2011,"For storage only",37,"Montivert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25126,398229,"CHE","National Inventory",2011,"For storage only",37,"Wilischwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25127,398230,"CHE","National Inventory",2011,"For storage only",37,"Sassigrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25128,398231,"CHE","National Inventory",2011,"For storage only",37,"Neirvaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25129,398232,"CHE","National Inventory",2011,"For storage only",37,"Platti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25130,398233,"CHE","National Inventory",2011,"For storage only",37,"Biwaldalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25131,398234,"CHE","National Inventory",2011,"For storage only",37,"Fayaule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25132,398235,"CHE","National Inventory",2011,"For storage only",37,"Schilt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25133,398236,"CHE","National Inventory",2011,"For storage only",37,"Äschrüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25134,398237,"CHE","National Inventory",2011,"For storage only",37,"Vieux Châtel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25135,398238,"CHE","National Inventory",2011,"For storage only",37,"Spälten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25136,398239,"CHE","National Inventory",2011,"For storage only",37,"Wettmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25137,398240,"CHE","National Inventory",2011,"For storage only",37,"Ribi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25138,398241,"CHE","National Inventory",2011,"For storage only",37,"Gross Pfaffen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25139,398242,"CHE","National Inventory",2011,"For storage only",37,"Corbières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25140,398243,"CHE","National Inventory",2011,"For storage only",37,"Rossboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25141,398244,"CHE","National Inventory",2011,"For storage only",37,"Gampelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25142,398245,"CHE","National Inventory",2011,"For storage only",37,"La Guille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25143,398246,"CHE","National Inventory",2011,"For storage only",37,"Usser Siten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25144,398247,"CHE","National Inventory",2011,"For storage only",37,"Hol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25145,398248,"CHE","National Inventory",2011,"For storage only",37,"Hinteren Bänder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25146,398249,"CHE","National Inventory",2011,"For storage only",37,"Rüteli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25147,398250,"CHE","National Inventory",2011,"For storage only",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25148,398251,"CHE","National Inventory",2011,"For storage only",37,"Hinteren Bänder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25149,398252,"CHE","National Inventory",2011,"For storage only",37,"Frutt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25150,398253,"CHE","National Inventory",2011,"For storage only",37,"La Savoleire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25151,398254,"CHE","National Inventory",2011,"For storage only",37,"Tritt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25152,398255,"CHE","National Inventory",2011,"For storage only",37,"Höch Flue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25153,398256,"CHE","National Inventory",2011,"For storage only",37,"Joulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25154,398257,"CHE","National Inventory",2011,"For storage only",37,"Waldegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25155,398258,"CHE","National Inventory",2011,"For storage only",37,"Gross Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25156,398259,"CHE","National Inventory",2011,"For storage only",37,"Venettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25157,398260,"CHE","National Inventory",2011,"For storage only",37,"Seechälen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25158,398261,"CHE","National Inventory",2011,"For storage only",37,"Fryetal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25159,398262,"CHE","National Inventory",2011,"For storage only",37,"Les Utsets","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25160,398263,"CHE","National Inventory",2011,"For storage only",37,"Les Esserts Uldry","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25161,398264,"CHE","National Inventory",2011,"For storage only",37,"Chüenossen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25162,398265,"CHE","National Inventory",2011,"For storage only",37,"Rieter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25163,398266,"CHE","National Inventory",2011,"For storage only",37,"Langsimatten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25164,398267,"CHE","National Inventory",2011,"For storage only",37,"Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25165,398268,"CHE","National Inventory",2011,"For storage only",37,"Geren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25166,398269,"CHE","National Inventory",2011,"For storage only",37,"Börtli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25167,398270,"CHE","National Inventory",2011,"For storage only",37,"Oberer Nätschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25168,398271,"CHE","National Inventory",2011,"For storage only",37,"Unterer Nätschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25169,398272,"CHE","National Inventory",2011,"For storage only",37,"Mettlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25170,398273,"CHE","National Inventory",2011,"For storage only",37,"Gspender","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25171,398274,"CHE","National Inventory",2011,"For storage only",37,"Laui","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25172,398275,"CHE","National Inventory",2011,"For storage only",37,"Joggenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25173,398276,"CHE","National Inventory",2011,"For storage only",37,"Börtli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25174,398277,"CHE","National Inventory",2011,"For storage only",37,"Haltenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25175,398278,"CHE","National Inventory",2011,"For storage only",37,"Bol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25176,398279,"CHE","National Inventory",2011,"For storage only",37,"Ciernedon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25177,398280,"CHE","National Inventory",2011,"For storage only",37,"Hinter Bergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25178,398281,"CHE","National Inventory",2011,"For storage only",37,"Gartli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25179,398282,"CHE","National Inventory",2011,"For storage only",37,"Baberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25180,398283,"CHE","National Inventory",2011,"For storage only",37,"La Côte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25181,398284,"CHE","National Inventory",2011,"For storage only",37,"Bärchi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25182,398285,"CHE","National Inventory",2011,"For storage only",37,"Zur Gand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25183,398286,"CHE","National Inventory",2011,"For storage only",37,"Gletti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25184,398287,"CHE","National Inventory",2011,"For storage only",37,"Maumochy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25185,398288,"CHE","National Inventory",2011,"For storage only",37,"Oberen Hütten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25186,398289,"CHE","National Inventory",2011,"For storage only",37,"Geissegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25187,398290,"CHE","National Inventory",2011,"For storage only",37,"Chalberegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25188,398291,"CHE","National Inventory",2011,"For storage only",37,"Eggbergen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25189,398292,"CHE","National Inventory",2011,"For storage only",37,"Löli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25190,398293,"CHE","National Inventory",2011,"For storage only",37,"Plan de Tissiniva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25191,398294,"CHE","National Inventory",2011,"For storage only",37,"Wandelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25192,398295,"CHE","National Inventory",2011,"For storage only",37,"Hinteren Hütten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25193,398296,"CHE","National Inventory",2011,"For storage only",37,"Grande Oudèche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25194,398297,"CHE","National Inventory",2011,"For storage only",37,"Ligmanig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25195,398298,"CHE","National Inventory",2011,"For storage only",37,"Hüenderegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25196,398299,"CHE","National Inventory",2011,"For storage only",37,"Horlachen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25197,398300,"CHE","National Inventory",2011,"For storage only",37,"Petit Croset","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25198,398301,"CHE","National Inventory",2011,"For storage only",37,"Chessel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25199,398302,"CHE","National Inventory",2011,"For storage only",37,"Les Rontins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25200,398303,"CHE","National Inventory",2011,"For storage only",37,"Uf den Oberschwänden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25201,398304,"CHE","National Inventory",2011,"For storage only",37,"Äbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25202,398305,"CHE","National Inventory",2011,"For storage only",37,"Äbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25203,398306,"CHE","National Inventory",2011,"For storage only",37,"La Case","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25204,398307,"CHE","National Inventory",2011,"For storage only",37,"Schmidigberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25205,398308,"CHE","National Inventory",2011,"For storage only",37,"Razismatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25206,398309,"CHE","National Inventory",2011,"For storage only",37,"Graggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25207,398310,"CHE","National Inventory",2011,"For storage only",37,"Eierschwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25208,398311,"CHE","National Inventory",2011,"For storage only",37,"Gorplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25209,398312,"CHE","National Inventory",2011,"For storage only",37,"Belles Raies","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25210,398313,"CHE","National Inventory",2011,"For storage only",37,"Rüteli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25211,398314,"CHE","National Inventory",2011,"For storage only",37,"Ob den Hegen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25212,398315,"CHE","National Inventory",2011,"For storage only",37,"Platten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25213,398316,"CHE","National Inventory",2011,"For storage only",37,"Friteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25214,398317,"CHE","National Inventory",2011,"For storage only",37,"Windeggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25215,398318,"CHE","National Inventory",2011,"For storage only",37,"Gitschenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25216,398319,"CHE","National Inventory",2011,"For storage only",37,"Ahöri","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25217,398320,"CHE","National Inventory",2011,"For storage only",37,"Honegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25218,398321,"CHE","National Inventory",2011,"For storage only",37,"Vorderen Bänder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25219,398322,"CHE","National Inventory",2011,"For storage only",37,"Rimiberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25220,398323,"CHE","National Inventory",2011,"For storage only",37,"Sagerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25221,398324,"CHE","National Inventory",2011,"For storage only",37,"Plan Carré","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25222,398325,"CHE","National Inventory",2011,"For storage only",37,"Uf der Lauwi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25223,398326,"CHE","National Inventory",2011,"For storage only",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25224,398327,"CHE","National Inventory",2011,"For storage only",37,"Wischflüe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25225,398328,"CHE","National Inventory",2011,"For storage only",37,"Schützen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25226,398329,"CHE","National Inventory",2011,"For storage only",37,"Buechholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25227,398330,"CHE","National Inventory",2011,"For storage only",37,"Oberchäseren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25228,398331,"CHE","National Inventory",2011,"For storage only",37,"Hanenspil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25229,398332,"CHE","National Inventory",2011,"For storage only",37,"Les Dovalles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25230,398333,"CHE","National Inventory",2011,"For storage only",37,"Trätter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25231,398334,"CHE","National Inventory",2011,"For storage only",37,"Les Cressets","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25232,398335,"CHE","National Inventory",2011,"For storage only",37,"Halten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25233,398336,"CHE","National Inventory",2011,"For storage only",37,"Städeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25234,398337,"CHE","National Inventory",2011,"For storage only",37,"Balmen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25235,398338,"CHE","National Inventory",2011,"For storage only",37,"Holderen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25236,398339,"CHE","National Inventory",2011,"For storage only",37,"Altchilch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25237,398340,"CHE","National Inventory",2011,"For storage only",37,"Haut Letron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25238,398341,"CHE","National Inventory",2011,"For storage only",37,"Rotboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25239,398342,"CHE","National Inventory",2011,"For storage only",37,"Tristlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25240,398343,"CHE","National Inventory",2011,"For storage only",37,"Ober Frimseli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25241,398344,"CHE","National Inventory",2011,"For storage only",37,"Ober Axen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25242,398345,"CHE","National Inventory",2011,"For storage only",37,"Wasserplatten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25243,398346,"CHE","National Inventory",2011,"For storage only",37,"Bodmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25244,398347,"CHE","National Inventory",2011,"For storage only",37,"Chilcherbergen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25245,398348,"CHE","National Inventory",2011,"For storage only",37,"Chabloz Derrey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25246,398349,"CHE","National Inventory",2011,"For storage only",37,"L'Ombriau d'en Bas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25247,398350,"CHE","National Inventory",2011,"For storage only",37,"Vanil Blanc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25248,398351,"CHE","National Inventory",2011,"For storage only",37,"Fürholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25249,398352,"CHE","National Inventory",2011,"For storage only",37,"Wösch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25250,398353,"CHE","National Inventory",2011,"For storage only",37,"Sex d'Amont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25251,398354,"CHE","National Inventory",2011,"For storage only",37,"Les Tannes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25252,398355,"CHE","National Inventory",2011,"For storage only",37,"Prés d'Albeuve","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25253,398356,"CHE","National Inventory",2011,"For storage only",37,"Chenalette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25254,398357,"CHE","National Inventory",2011,"For storage only",37,"Montbovon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25255,398358,"CHE","National Inventory",2011,"For storage only",37,"Grosse Orgevalette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25256,398359,"CHE","National Inventory",2011,"For storage only",37,"Hard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25257,398360,"CHE","National Inventory",2011,"For storage only",37,"Vorderer Brandberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25258,398361,"CHE","National Inventory",2011,"For storage only",37,"Matzendörfer Stierenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25259,398362,"CHE","National Inventory",2011,"For storage only",37,"Oberdörfer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25260,398363,"CHE","National Inventory",2011,"For storage only",37,"Balmflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25261,398364,"CHE","National Inventory",2011,"For storage only",37,"Holzflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25262,398365,"CHE","National Inventory",2011,"For storage only",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25263,398366,"CHE","National Inventory",2011,"For storage only",37,"Stierenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25264,398367,"CHE","National Inventory",2011,"For storage only",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25265,398368,"CHE","National Inventory",2011,"For storage only",37,"Untere Tannmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25266,398369,"CHE","National Inventory",2011,"For storage only",37,"Ober Solterschwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25267,398370,"CHE","National Inventory",2011,"For storage only",37,"Oberbeinwil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25268,398371,"CHE","National Inventory",2011,"For storage only",37,"Burgweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25269,398372,"CHE","National Inventory",2011,"For storage only",37,"Rebenfeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25270,398373,"CHE","National Inventory",2011,"For storage only",37,"Bützen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25271,398374,"CHE","National Inventory",2011,"For storage only",37,"Rinderweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25272,398375,"CHE","National Inventory",2011,"For storage only",37,"Chellenchöpfli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25273,398376,"CHE","National Inventory",2011,"For storage only",37,"Nasenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25274,398377,"CHE","National Inventory",2011,"For storage only",37,"Unteres Brüggli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25275,398378,"CHE","National Inventory",2011,"For storage only",37,"Mausteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25276,398379,"CHE","National Inventory",2011,"For storage only",37,"Gwidem","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25277,398380,"CHE","National Inventory",2011,"For storage only",37,"Binzberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25278,398381,"CHE","National Inventory",2011,"For storage only",37,"Oberbergweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25279,398382,"CHE","National Inventory",2011,"For storage only",37,"Alte Gipsgrube","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25280,398383,"CHE","National Inventory",2011,"For storage only",37,"Wirtshof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25281,398384,"CHE","National Inventory",2011,"For storage only",37,"Chüematt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25282,398385,"CHE","National Inventory",2011,"For storage only",37,"Niederwiler Stierenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25283,398386,"CHE","National Inventory",2011,"For storage only",37,"Hasenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25284,398387,"CHE","National Inventory",2011,"For storage only",37,"Hintere Schmidematt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25285,398388,"CHE","National Inventory",2011,"For storage only",37,"Nieder Äbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25286,398389,"CHE","National Inventory",2011,"For storage only",37,"Orgevaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25287,398390,"CHE","National Inventory",2011,"For storage only",37,"Holden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25288,398391,"CHE","National Inventory",2011,"For storage only",37,"Ravellen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25289,398392,"CHE","National Inventory",2011,"For storage only",37,"Walenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25290,398393,"CHE","National Inventory",2011,"For storage only",37,"Buschle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25291,398394,"CHE","National Inventory",2011,"For storage only",37,"Sunnenhalb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25292,398395,"CHE","National Inventory",2011,"For storage only",37,"Oberer Sennhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25293,398396,"CHE","National Inventory",2011,"For storage only",37,"Motélon d'Avau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25294,398397,"CHE","National Inventory",2011,"For storage only",37,"Hagliweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25295,398398,"CHE","National Inventory",2011,"For storage only",37,"Rumpel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25296,398399,"CHE","National Inventory",2011,"For storage only",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25297,398400,"CHE","National Inventory",2011,"For storage only",37,"Sonnenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25298,398401,"CHE","National Inventory",2011,"For storage only",37,"Dummeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25299,398402,"CHE","National Inventory",2011,"For storage only",37,"Waldenstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25300,398403,"CHE","National Inventory",2011,"For storage only",37,"Schlegel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25301,398404,"CHE","National Inventory",2011,"For storage only",37,"Moretchopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25302,398405,"CHE","National Inventory",2011,"For storage only",37,"Unter Möschbach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25303,398406,"CHE","National Inventory",2011,"For storage only",37,"Niederwiler Stierenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25304,398407,"CHE","National Inventory",2011,"For storage only",37,"Müren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25305,398408,"CHE","National Inventory",2011,"For storage only",37,"Hasenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25306,398409,"CHE","National Inventory",2011,"For storage only",37,"Untere Säge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25307,398410,"CHE","National Inventory",2011,"For storage only",37,"Latschgetweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25308,398411,"CHE","National Inventory",2011,"For storage only",37,"Obere Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25309,398412,"CHE","National Inventory",2011,"For storage only",37,"Meltingerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25310,398413,"CHE","National Inventory",2011,"For storage only",37,"Oberbergmatten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25311,398414,"CHE","National Inventory",2011,"For storage only",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25312,398415,"CHE","National Inventory",2011,"For storage only",37,"Sunnenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25313,398416,"CHE","National Inventory",2011,"For storage only",37,"Lammet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25314,398417,"CHE","National Inventory",2011,"For storage only",37,"Hinter Geissberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25315,398418,"CHE","National Inventory",2011,"For storage only",37,"Mittl. Rotmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25316,398419,"CHE","National Inventory",2011,"For storage only",37,"Vorder Hofbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25317,398420,"CHE","National Inventory",2011,"For storage only",37,"Hollenrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25318,398421,"CHE","National Inventory",2011,"For storage only",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25319,398422,"CHE","National Inventory",2011,"For storage only",37,"Combe d'Allières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25320,398423,"CHE","National Inventory",2011,"For storage only",37,"Schauenburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25321,398424,"CHE","National Inventory",2011,"For storage only",37,"Kanalbord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25322,398425,"CHE","National Inventory",2011,"For storage only",37,"Hübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25323,398426,"CHE","National Inventory",2011,"For storage only",37,"Chlosterweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25324,398427,"CHE","National Inventory",2011,"For storage only",37,"Wisigweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25325,398428,"CHE","National Inventory",2011,"For storage only",37,"Wisshubel-Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25326,398429,"CHE","National Inventory",2011,"For storage only",37,"Attisholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25327,398430,"CHE","National Inventory",2011,"For storage only",37,"Plan Châtel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25328,398431,"CHE","National Inventory",2011,"For storage only",37,"Mahren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25329,398432,"CHE","National Inventory",2011,"For storage only",37,"Wartenfels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25330,398433,"CHE","National Inventory",2011,"For storage only",37,"Rämpis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25331,398434,"CHE","National Inventory",2011,"For storage only",37,"Summerhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25332,398435,"CHE","National Inventory",2011,"For storage only",37,"Rutigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25333,398436,"CHE","National Inventory",2011,"For storage only",37,"Gitziberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25334,398437,"CHE","National Inventory",2011,"For storage only",37,"Mahren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25335,398438,"CHE","National Inventory",2011,"For storage only",37,"Winzligen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25336,398439,"CHE","National Inventory",2011,"For storage only",37,"Bechburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25337,398440,"CHE","National Inventory",2011,"For storage only",37,"Rintel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25338,398441,"CHE","National Inventory",2011,"For storage only",37,"Holzbünten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25339,398442,"CHE","National Inventory",2011,"For storage only",37,"Schwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25340,398443,"CHE","National Inventory",2011,"For storage only",37,"Mettlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25341,398444,"CHE","National Inventory",2011,"For storage only",37,"Sous Mussillens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25342,398445,"CHE","National Inventory",2011,"For storage only",37,"Mahren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25343,398446,"CHE","National Inventory",2011,"For storage only",37,"Rebenfeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25344,398447,"CHE","National Inventory",2011,"For storage only",37,"Rintel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25345,398448,"CHE","National Inventory",2011,"For storage only",37,"Goldloch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25346,398449,"CHE","National Inventory",2011,"For storage only",37,"Moosmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25347,398450,"CHE","National Inventory",2011,"For storage only",37,"Le La","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25348,398451,"CHE","National Inventory",2011,"For storage only",37,"Rotenrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25349,398452,"CHE","National Inventory",2011,"For storage only",37,"Wiler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25350,398453,"CHE","National Inventory",2011,"For storage only",37,"Stollenbord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25351,398454,"CHE","National Inventory",2011,"For storage only",37,"Röselen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25352,398455,"CHE","National Inventory",2011,"For storage only",37,"Wilweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25353,398456,"CHE","National Inventory",2011,"For storage only",37,"Hard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25354,398457,"CHE","National Inventory",2011,"For storage only",37,"Chatzenstigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25355,398458,"CHE","National Inventory",2011,"For storage only",37,"Charmont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25356,398459,"CHE","National Inventory",2011,"For storage only",37,"Engelberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25357,398460,"CHE","National Inventory",2011,"For storage only",37,"Burst","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25358,398461,"CHE","National Inventory",2011,"For storage only",37,"Hohe Winde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25359,398462,"CHE","National Inventory",2011,"For storage only",37,"Hasel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25360,398463,"CHE","National Inventory",2011,"For storage only",37,"Ring","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25361,398464,"CHE","National Inventory",2011,"For storage only",37,"Hohe Winde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25362,398465,"CHE","National Inventory",2011,"For storage only",37,"Hohe Winde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25363,398466,"CHE","National Inventory",2011,"For storage only",37,"Roti Flue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25364,398467,"CHE","National Inventory",2011,"For storage only",37,"Vorder Erzberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25365,398468,"CHE","National Inventory",2011,"For storage only",37,"Luterbrunnen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25366,398469,"CHE","National Inventory",2011,"For storage only",37,"Büren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25367,398470,"CHE","National Inventory",2011,"For storage only",37,"Le Devin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25368,398471,"CHE","National Inventory",2011,"For storage only",37,"Cerniat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25369,398472,"CHE","National Inventory",2011,"For storage only",37,"Clos Richoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25370,398473,"CHE","National Inventory",2011,"For storage only",37,"Les Lésins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25371,398474,"CHE","National Inventory",2011,"For storage only",37,"Brenleire Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25372,398475,"CHE","National Inventory",2011,"For storage only",37,"Gros Moléson","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25373,398476,"CHE","National Inventory",2011,"For storage only",37,"La Challa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25374,398477,"CHE","National Inventory",2011,"For storage only",37,"Teysachaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25375,398478,"CHE","National Inventory",2011,"For storage only",37,"Le Roc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25376,398479,"CHE","National Inventory",2011,"For storage only",37,"Le Coula","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25377,398480,"CHE","National Inventory",2011,"For storage only",37,"Unterm Stein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25378,398481,"CHE","National Inventory",2011,"For storage only",37,"Im Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25379,398482,"CHE","National Inventory",2011,"For storage only",37,"Stellitobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25380,398483,"CHE","National Inventory",2011,"For storage only",37,"Listboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25381,398484,"CHE","National Inventory",2011,"For storage only",37,"Inneren Bleisa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25382,398485,"CHE","National Inventory",2011,"For storage only",37,"Flies","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25383,398486,"CHE","National Inventory",2011,"For storage only",37,"Meierhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25384,398487,"CHE","National Inventory",2011,"For storage only",37,"Zianos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25385,398488,"CHE","National Inventory",2011,"For storage only",37,"Ober Pirigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25386,398489,"CHE","National Inventory",2011,"For storage only",37,"Pirigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25387,398490,"CHE","National Inventory",2011,"For storage only",37,"Cuvigné","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25388,398491,"CHE","National Inventory",2011,"For storage only",37,"Maladers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25389,398492,"CHE","National Inventory",2011,"For storage only",37,"Seewer Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25390,398493,"CHE","National Inventory",2011,"For storage only",37,"Tewald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25391,398494,"CHE","National Inventory",2011,"For storage only",37,"Servan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25392,398495,"CHE","National Inventory",2011,"For storage only",37,"Büschalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25393,398496,"CHE","National Inventory",2011,"For storage only",37,"Runcalier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25394,398497,"CHE","National Inventory",2011,"For storage only",37,"Dent de Lys","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25395,398498,"CHE","National Inventory",2011,"For storage only",37,"Strelaberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25396,398499,"CHE","National Inventory",2011,"For storage only",37,"Chämpfenwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25397,398500,"CHE","National Inventory",2011,"For storage only",37,"Mederger Witi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25398,398501,"CHE","National Inventory",2011,"For storage only",37,"Valtschamela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25399,398502,"CHE","National Inventory",2011,"For storage only",37,"Petit Malessert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25400,398503,"CHE","National Inventory",2011,"For storage only",37,"Haupt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25401,398504,"CHE","National Inventory",2011,"For storage only",37,"Ufem Joch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25402,398505,"CHE","National Inventory",2011,"For storage only",37,"Ufem Joch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25403,398506,"CHE","National Inventory",2011,"For storage only",37,"Am Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25404,398507,"CHE","National Inventory",2011,"For storage only",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25405,398508,"CHE","National Inventory",2011,"For storage only",37,"Brüggigerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25406,398509,"CHE","National Inventory",2011,"For storage only",37,"Meni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25407,398510,"CHE","National Inventory",2011,"For storage only",37,"Schäratannen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25408,398511,"CHE","National Inventory",2011,"For storage only",37,"Chaudzerya","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25409,398512,"CHE","National Inventory",2011,"For storage only",37,"Mättjen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25410,398513,"CHE","National Inventory",2011,"For storage only",37,"Innerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25411,398514,"CHE","National Inventory",2011,"For storage only",37,"Gämpimeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25412,398515,"CHE","National Inventory",2011,"For storage only",37,"Witibergmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25413,398516,"CHE","National Inventory",2011,"For storage only",37,"Sältenüeb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25414,398517,"CHE","National Inventory",2011,"For storage only",37,"Tällimeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25415,398518,"CHE","National Inventory",2011,"For storage only",37,"Glaris","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25416,398519,"CHE","National Inventory",2011,"For storage only",37,"Rieberalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25417,398520,"CHE","National Inventory",2011,"For storage only",37,"Barietta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25418,398521,"CHE","National Inventory",2011,"For storage only",37,"Plaun Maria","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25419,398522,"CHE","National Inventory",2011,"For storage only",37,"Weng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25420,398523,"CHE","National Inventory",2011,"For storage only",37,"Munt da la Bescha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25421,398524,"CHE","National Inventory",2011,"For storage only",37,"Plaun da l'Aua","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25422,398525,"CHE","National Inventory",2011,"For storage only",37,"Lü Daint","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25423,398526,"CHE","National Inventory",2011,"For storage only",37,"Döss dal Schübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25424,398527,"CHE","National Inventory",2011,"For storage only",37,"La Crusch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25425,398528,"CHE","National Inventory",2011,"For storage only",37,"Plaunpaschun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25426,398529,"CHE","National Inventory",2011,"For storage only",37,"Alp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25427,398530,"CHE","National Inventory",2011,"For storage only",37,"Platte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25428,398531,"CHE","National Inventory",2011,"For storage only",37,"Parsenn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25429,398532,"CHE","National Inventory",2011,"For storage only",37,"Bleisstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25430,398533,"CHE","National Inventory",2011,"For storage only",37,"Chenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25431,398534,"CHE","National Inventory",2011,"For storage only",37,"Falgginis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25432,398535,"CHE","National Inventory",2011,"For storage only",37,"Fondei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25433,398536,"CHE","National Inventory",2011,"For storage only",37,"Fondei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25434,398537,"CHE","National Inventory",2011,"For storage only",37,"Bargs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25435,398538,"CHE","National Inventory",2011,"For storage only",37,"Liggboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25436,398539,"CHE","National Inventory",2011,"For storage only",37,"Pardäls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25437,398540,"CHE","National Inventory",2011,"For storage only",37,"Vascrestis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25438,398541,"CHE","National Inventory",2011,"For storage only",37,"Alat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25439,398542,"CHE","National Inventory",2011,"For storage only",37,"Sapün","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25440,398543,"CHE","National Inventory",2011,"For storage only",37,"Alpwisli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25441,398544,"CHE","National Inventory",2011,"For storage only",37,"In den Stöcken","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25442,398545,"CHE","National Inventory",2011,"For storage only",37,"Palüda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25443,398546,"CHE","National Inventory",2011,"For storage only",37,"Pfaffenbarga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25444,398547,"CHE","National Inventory",2011,"For storage only",37,"Balveins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25445,398548,"CHE","National Inventory",2011,"For storage only",37,"Leibachmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25446,398549,"CHE","National Inventory",2011,"For storage only",37,"Linaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25447,398550,"CHE","National Inventory",2011,"For storage only",37,"Saloms","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25448,398551,"CHE","National Inventory",2011,"For storage only",37,"Breit Zug","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25449,398552,"CHE","National Inventory",2011,"For storage only",37,"Linaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25450,398553,"CHE","National Inventory",2011,"For storage only",37,"Sogn Murezi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25451,398554,"CHE","National Inventory",2011,"For storage only",37,"Serenera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25452,398555,"CHE","National Inventory",2011,"For storage only",37,"Plaun Chamonas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25453,398556,"CHE","National Inventory",2011,"For storage only",37,"Chasuras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25454,398557,"CHE","National Inventory",2011,"For storage only",37,"Aveneyre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25455,398558,"CHE","National Inventory",2011,"For storage only",37,"Terza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25456,398559,"CHE","National Inventory",2011,"For storage only",37,"Costas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25457,398560,"CHE","National Inventory",2011,"For storage only",37,"Costeras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25458,398561,"CHE","National Inventory",2011,"For storage only",37,"Ob den Bender","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25459,398562,"CHE","National Inventory",2011,"For storage only",37,"Bonaudon du Milieu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25460,398563,"CHE","National Inventory",2011,"For storage only",37,"Wang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25461,398564,"CHE","National Inventory",2011,"For storage only",37,"Holz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25462,398565,"CHE","National Inventory",2011,"For storage only",37,"Cha Noschas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25463,398566,"CHE","National Inventory",2011,"For storage only",37,"Pra Vegl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25464,398567,"CHE","National Inventory",2011,"For storage only",37,"Funtauna Naira","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25465,398568,"CHE","National Inventory",2011,"For storage only",37,"Reinacherheide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25466,398569,"CHE","National Inventory",2011,"For storage only",37,"Grand Chalet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25467,398570,"CHE","National Inventory",2011,"For storage only",37,"Euschels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25468,398571,"CHE","National Inventory",2011,"For storage only",37,"Spitzflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25469,398572,"CHE","National Inventory",2011,"For storage only",37,"Pointe de Balachaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25470,398573,"CHE","National Inventory",2011,"For storage only",37,"Fochsen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25471,398574,"CHE","National Inventory",2011,"For storage only",37,"Mittler Chüeboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25472,398575,"CHE","National Inventory",2011,"For storage only",37,"Mittler Chüeboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25473,398576,"CHE","National Inventory",2011,"For storage only",37,"Balachaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25474,398577,"CHE","National Inventory",2011,"For storage only",37,"Ritzlialp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25475,398578,"CHE","National Inventory",2011,"For storage only",37,"Pletscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25476,398579,"CHE","National Inventory",2011,"For storage only",37,"Chörbli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25477,398580,"CHE","National Inventory",2011,"For storage only",37,"Gerstera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25478,398581,"CHE","National Inventory",2011,"For storage only",37,"Ob. Jansegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25479,398582,"CHE","National Inventory",2011,"For storage only",37,"Chaux de Férédetse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25480,398583,"CHE","National Inventory",2011,"For storage only",37,"La Jaquetta Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25481,398584,"CHE","National Inventory",2011,"For storage only",37,"Vorder Maischüpfen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25482,398585,"CHE","National Inventory",2011,"For storage only",37,"Schoresberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25483,398586,"CHE","National Inventory",2011,"For storage only",37,"Les Raveires","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25484,398587,"CHE","National Inventory",2011,"For storage only",37,"Dürry","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25485,398588,"CHE","National Inventory",2011,"For storage only",37,"Perlersweide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25486,398589,"CHE","National Inventory",2011,"For storage only",37,"Stützli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25487,398590,"CHE","National Inventory",2011,"For storage only",37,"Gross Rüggli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25488,398591,"CHE","National Inventory",2011,"For storage only",37,"Litemard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25489,398592,"CHE","National Inventory",2011,"For storage only",37,"Goldauer Bergsturz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25490,398593,"CHE","National Inventory",2011,"For storage only",37,"Steinhüttli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25491,398594,"CHE","National Inventory",2011,"For storage only",37,"Stöckplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25492,398595,"CHE","National Inventory",2011,"For storage only",37,"Mittler-Brunniberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25493,398596,"CHE","National Inventory",2011,"For storage only",37,"Stapfenplangg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25494,398597,"CHE","National Inventory",2011,"For storage only",37,"Fönenbergen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25495,398598,"CHE","National Inventory",2011,"For storage only",37,"Fron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25496,398599,"CHE","National Inventory",2011,"For storage only",37,"Nollen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25497,398600,"CHE","National Inventory",2011,"For storage only",37,"Martschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25498,398601,"CHE","National Inventory",2011,"For storage only",37,"Grands Feniveis d'Amont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25499,398602,"CHE","National Inventory",2011,"For storage only",37,"Dossen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25500,398603,"CHE","National Inventory",2011,"For storage only",37,"Roggenstock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25501,398604,"CHE","National Inventory",2011,"For storage only",37,"Charenstöckli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25502,398605,"CHE","National Inventory",2011,"For storage only",37,"Furggeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25503,398606,"CHE","National Inventory",2011,"For storage only",37,"Heubrigsflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25504,398607,"CHE","National Inventory",2011,"For storage only",37,"Chaux du Lapé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25505,398608,"CHE","National Inventory",2011,"For storage only",37,"Mittler-Urmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25506,398609,"CHE","National Inventory",2011,"For storage only",37,"Acherberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25507,398610,"CHE","National Inventory",2011,"For storage only",37,"Steinhüttli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25508,398611,"CHE","National Inventory",2011,"For storage only",37,"Timpel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25509,398612,"CHE","National Inventory",2011,"For storage only",37,"Rübi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25510,398613,"CHE","National Inventory",2011,"For storage only",37,"Masholdern","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25511,398614,"CHE","National Inventory",2011,"For storage only",37,"Badegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25512,398615,"CHE","National Inventory",2011,"For storage only",37,"Ratzli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25513,398616,"CHE","National Inventory",2011,"For storage only",37,"Husen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25514,398617,"CHE","National Inventory",2011,"For storage only",37,"Chalberweidli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25515,398618,"CHE","National Inventory",2011,"For storage only",37,"Eggenwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25516,398619,"CHE","National Inventory",2011,"For storage only",37,"Le Liti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25517,398620,"CHE","National Inventory",2011,"For storage only",37,"Härzig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25518,398621,"CHE","National Inventory",2011,"For storage only",37,"Struss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25519,398622,"CHE","National Inventory",2011,"For storage only",37,"Hochmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25520,398623,"CHE","National Inventory",2011,"For storage only",37,"Sperlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25521,398624,"CHE","National Inventory",2011,"For storage only",37,"Märis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25522,398625,"CHE","National Inventory",2011,"For storage only",37,"Le Rosy d'Amont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25523,398626,"CHE","National Inventory",2011,"For storage only",37,"Les Râpes Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25524,398627,"CHE","National Inventory",2011,"For storage only",37,"Le Rosy d'Avau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25525,398628,"CHE","National Inventory",2011,"For storage only",37,"Vacheresse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25526,398629,"CHE","National Inventory",2011,"For storage only",37,"Les Râpes Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25527,398630,"CHE","National Inventory",2011,"For storage only",37,"Le Moléson","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25528,398631,"CHE","National Inventory",2011,"For storage only",37,"Tsuatsaux d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25529,398632,"CHE","National Inventory",2011,"For storage only",37,"Bounavaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25530,398633,"CHE","National Inventory",2011,"For storage only",37,"Petsernetse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25531,398634,"CHE","National Inventory",2011,"For storage only",37,"Petsernetse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25532,398635,"CHE","National Inventory",2011,"For storage only",37,"Tsavas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25533,398636,"CHE","National Inventory",2011,"For storage only",37,"Joux Verte Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25534,398637,"CHE","National Inventory",2011,"For storage only",37,"Les Ontanettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25535,398638,"CHE","National Inventory",2011,"For storage only",37,"Col de Lys","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25536,398639,"CHE","National Inventory",2011,"For storage only",37,"Pierra Derrey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25537,398640,"CHE","National Inventory",2011,"For storage only",37,"Ulmet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25538,398641,"CHE","National Inventory",2011,"For storage only",37,"Mittlere Romaiweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25539,398642,"CHE","National Inventory",2011,"For storage only",37,"Chliweidli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25540,398643,"CHE","National Inventory",2011,"For storage only",37,"Brügglingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25541,398644,"CHE","National Inventory",2011,"For storage only",37,"Rumpel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25542,398645,"CHE","National Inventory",2011,"For storage only",37,"Blauenweide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25543,398646,"CHE","National Inventory",2011,"For storage only",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25544,398647,"CHE","National Inventory",2011,"For storage only",37,"Lionza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25545,398648,"CHE","National Inventory",2011,"For storage only",37,"Bolla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25546,398649,"CHE","National Inventory",2011,"For storage only",37,"Preda di Ganosa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25547,398650,"CHE","National Inventory",2011,"For storage only",37,"Fornéi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25548,398651,"CHE","National Inventory",2011,"For storage only",37,"Ronchetto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25549,398652,"CHE","National Inventory",2011,"For storage only",37,"Camperio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25550,398653,"CHE","National Inventory",2011,"For storage only",37,"Soz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25551,398654,"CHE","National Inventory",2011,"For storage only",37,"Orello","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25552,398655,"CHE","National Inventory",2011,"For storage only",37,"Bidré","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25553,398656,"CHE","National Inventory",2011,"For storage only",37,"Ticiall","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25554,398657,"CHE","National Inventory",2011,"For storage only",37,"Tortengo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25555,398658,"CHE","National Inventory",2011,"For storage only",37,"Ponto Valentino","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25556,398659,"CHE","National Inventory",2011,"For storage only",37,"S. Carlo di Negrentino","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25557,398660,"CHE","National Inventory",2011,"For storage only",37,"Campiroi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25558,398661,"CHE","National Inventory",2011,"For storage only",37,"Doro","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25559,398662,"CHE","National Inventory",2011,"For storage only",37,"Bedrin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25560,398663,"CHE","National Inventory",2011,"For storage only",37,"Brione","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25561,398664,"CHE","National Inventory",2011,"For storage only",37,"Monte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25562,398665,"CHE","National Inventory",2011,"For storage only",37,"Canscei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25563,398666,"CHE","National Inventory",2011,"For storage only",37,"Colla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25564,398667,"CHE","National Inventory",2011,"For storage only",37,"Rovadé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25565,398668,"CHE","National Inventory",2011,"For storage only",37,"Pinca Zuccone","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25566,398669,"CHE","National Inventory",2011,"For storage only",37,"Berretta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25567,398670,"CHE","National Inventory",2011,"For storage only",37,"Lunghi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25568,398671,"CHE","National Inventory",2011,"For storage only",37,"Orsàira di Fuori","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25569,398672,"CHE","National Inventory",2011,"For storage only",37,"Töira","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25570,398673,"CHE","National Inventory",2011,"For storage only",37,"Campra di Qua","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25571,398674,"CHE","National Inventory",2011,"For storage only",37,"Fontana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25572,398675,"CHE","National Inventory",2011,"For storage only",37,"Soria Sopra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25573,398676,"CHE","National Inventory",2011,"For storage only",37,"Nostengo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25574,398677,"CHE","National Inventory",2011,"For storage only",37,"Holingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25575,398678,"CHE","National Inventory",2011,"For storage only",37,"Rossinengo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25576,398679,"CHE","National Inventory",2011,"For storage only",37,"Gorda di Sotto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25577,398680,"CHE","National Inventory",2011,"For storage only",37,"Gorda di Sopra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25578,398681,"CHE","National Inventory",2011,"For storage only",37,"Premesti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25579,398682,"CHE","National Inventory",2011,"For storage only",37,"Trascis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25580,398683,"CHE","National Inventory",2011,"For storage only",37,"San Lorenzo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25581,398684,"CHE","National Inventory",2011,"For storage only",37,"Suréi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25582,398685,"CHE","National Inventory",2011,"For storage only",37,"Horn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25583,398686,"CHE","National Inventory",2011,"For storage only",37,"Ciossera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25584,398687,"CHE","National Inventory",2011,"For storage only",37,"Ca del Cucco","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25585,398688,"CHE","National Inventory",2011,"For storage only",37,"Tros","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25586,398689,"CHE","National Inventory",2011,"For storage only",37,"Pianzei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25587,398690,"CHE","National Inventory",2011,"For storage only",37,"Tasbèi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25588,398691,"CHE","National Inventory",2011,"For storage only",37,"Grotti di Loderio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25589,398692,"CHE","National Inventory",2011,"For storage only",37,"Iragna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25590,398693,"CHE","National Inventory",2011,"For storage only",37,"Aurigeno","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25591,398694,"CHE","National Inventory",2011,"For storage only",37,"Torbeccio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25592,398695,"CHE","National Inventory",2011,"For storage only",37,"Prou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25593,398696,"CHE","National Inventory",2011,"For storage only",37,"Cortone","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25594,398697,"CHE","National Inventory",2011,"For storage only",37,"Monte di Comino","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25595,398698,"CHE","National Inventory",2011,"For storage only",37,"Leimet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25596,398699,"CHE","National Inventory",2011,"For storage only",37,"Monte di Comino","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25597,398700,"CHE","National Inventory",2011,"For storage only",37,"Castra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25598,398701,"CHE","National Inventory",2011,"For storage only",37,"A. Vicania","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25599,398702,"CHE","National Inventory",2011,"For storage only",37,"Guasto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25600,398703,"CHE","National Inventory",2011,"For storage only",37,"Acquacalda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25601,398704,"CHE","National Inventory",2011,"For storage only",37,"Cassin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25602,398705,"CHE","National Inventory",2011,"For storage only",37,"Denti della Vecchia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25603,398706,"CHE","National Inventory",2011,"For storage only",37,"Monte Caslano","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25604,398707,"CHE","National Inventory",2011,"For storage only",37,"Monte Generoso","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25605,398708,"CHE","National Inventory",2011,"For storage only",37,"Corengiole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25606,398709,"CHE","National Inventory",2011,"For storage only",37,"Dübach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25607,398710,"CHE","National Inventory",2011,"For storage only",37,"Scudellate","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25608,398711,"CHE","National Inventory",2011,"For storage only",37,"Segoletto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25609,398712,"CHE","National Inventory",2011,"For storage only",37,"Roncapiano","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25610,398713,"CHE","National Inventory",2011,"For storage only",37,"Piancabella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25611,398714,"CHE","National Inventory",2011,"For storage only",37,"Dosso d'Arla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25612,398715,"CHE","National Inventory",2011,"For storage only",37,"Monte San Giorgio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25613,398716,"CHE","National Inventory",2011,"For storage only",37,"Fridhag","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25614,398717,"CHE","National Inventory",2011,"For storage only",37,"Croce","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25615,398718,"CHE","National Inventory",2011,"For storage only",37,"Sassi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25616,398719,"CHE","National Inventory",2011,"For storage only",37,"Poncione d'Arzo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25617,398720,"CHE","National Inventory",2011,"For storage only",37,"Loasa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25618,398721,"CHE","National Inventory",2011,"For storage only",37,"Perfetta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25619,398722,"CHE","National Inventory",2011,"For storage only",37,"Caviano","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25620,398723,"CHE","National Inventory",2011,"For storage only",37,"Roncaccio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25621,398724,"CHE","National Inventory",2011,"For storage only",37,"Peregai","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25622,398725,"CHE","National Inventory",2011,"For storage only",37,"Pianspessa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25623,398726,"CHE","National Inventory",2011,"For storage only",37,"Pree","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25624,398727,"CHE","National Inventory",2011,"For storage only",37,"Meride","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25625,398728,"CHE","National Inventory",2011,"For storage only",37,"Roncaia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25626,398729,"CHE","National Inventory",2011,"For storage only",37,"Grotto del Lauro","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25627,398730,"CHE","National Inventory",2011,"For storage only",37,"Pianche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25628,398731,"CHE","National Inventory",2011,"For storage only",37,"Coleta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25629,398732,"CHE","National Inventory",2011,"For storage only",37,"Liràn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25630,398733,"CHE","National Inventory",2011,"For storage only",37,"S. Giorgio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25631,398734,"CHE","National Inventory",2011,"For storage only",37,"Margonègia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25632,398735,"CHE","National Inventory",2011,"For storage only",37,"Selna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25633,398736,"CHE","National Inventory",2011,"For storage only",37,"Prato di Ce","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25634,398737,"CHE","National Inventory",2011,"For storage only",37,"Busnengo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25635,398738,"CHE","National Inventory",2011,"For storage only",37,"Deggio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25636,398739,"CHE","National Inventory",2011,"For storage only",37,"Pradóir","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25637,398740,"CHE","National Inventory",2011,"For storage only",37,"Monte di Cima","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25638,398741,"CHE","National Inventory",2011,"For storage only",37,"Gerre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25639,398742,"CHE","National Inventory",2011,"For storage only",37,"Andirö","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25640,398743,"CHE","National Inventory",2011,"For storage only",37,"Sasso Guidà","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25641,398744,"CHE","National Inventory",2011,"For storage only",37,"Travorno Maggiore","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25642,398745,"CHE","National Inventory",2011,"For storage only",37,"Biscia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25643,398746,"CHE","National Inventory",2011,"For storage only",37,"Trivelli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25644,398747,"CHE","National Inventory",2011,"For storage only",37,"San Salvatore","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25645,398748,"CHE","National Inventory",2011,"For storage only",37,"Erhollen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25646,398749,"CHE","National Inventory",2011,"For storage only",37,"Redonda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25647,398750,"CHE","National Inventory",2011,"For storage only",37,"Galbis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25648,398751,"CHE","National Inventory",2011,"For storage only",37,"Cima di Fojorina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25649,398752,"CHE","National Inventory",2011,"For storage only",37,"Posép","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25650,398753,"CHE","National Inventory",2011,"For storage only",37,"Croce Portera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25651,398754,"CHE","National Inventory",2011,"For storage only",37,"Marzanéi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25652,398755,"CHE","National Inventory",2011,"For storage only",37,"Anvéuda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25653,398756,"CHE","National Inventory",2011,"For storage only",37,"M. Tamaro","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25654,398757,"CHE","National Inventory",2011,"For storage only",37,"Camoghè","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25655,398758,"CHE","National Inventory",2011,"For storage only",37,"Casone","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25656,398759,"CHE","National Inventory",2011,"For storage only",37,"Pizzo Leone","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25657,398760,"CHE","National Inventory",2011,"For storage only",37,"Gaggio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25658,398761,"CHE","National Inventory",2011,"For storage only",37,"Giger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25659,398762,"CHE","National Inventory",2011,"For storage only",37,"Nusshalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25660,398763,"CHE","National Inventory",2011,"For storage only",37,"Hell","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25661,398764,"CHE","National Inventory",2011,"For storage only",37,"Albach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25662,398765,"CHE","National Inventory",2011,"For storage only",37,"Hoher Kasten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25663,398766,"CHE","National Inventory",2011,"For storage only",37,"Alp Sigel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25664,398767,"CHE","National Inventory",2011,"For storage only",37,"Hüslers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25665,398768,"CHE","National Inventory",2011,"For storage only",37,"Halten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25666,398769,"CHE","National Inventory",2011,"For storage only",37,"Oltme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25667,398770,"CHE","National Inventory",2011,"For storage only",37,"Linthkanal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25668,398771,"CHE","National Inventory",2011,"For storage only",37,"Tierweg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25669,398772,"CHE","National Inventory",2011,"For storage only",37,"Bergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25670,398773,"CHE","National Inventory",2011,"For storage only",37,"Chammteil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25671,398774,"CHE","National Inventory",2011,"For storage only",37,"Stäfeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25672,398775,"CHE","National Inventory",2011,"For storage only",37,"Fachtegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25673,398776,"CHE","National Inventory",2011,"For storage only",37,"Schafplänggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25674,398777,"CHE","National Inventory",2011,"For storage only",37,"Liesbergweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25675,398778,"CHE","National Inventory",2011,"For storage only",37,"Gumen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25676,398779,"CHE","National Inventory",2011,"For storage only",37,"Alpgmach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25677,398780,"CHE","National Inventory",2011,"For storage only",37,"Stock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25678,398781,"CHE","National Inventory",2011,"For storage only",37,"Rüchi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25679,398782,"CHE","National Inventory",2011,"For storage only",37,"Vordere Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25680,398783,"CHE","National Inventory",2011,"For storage only",37,"Rigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25681,398784,"CHE","National Inventory",2011,"For storage only",37,"Hintere Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25682,398785,"CHE","National Inventory",2011,"For storage only",37,"Helgehüsli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25683,398786,"CHE","National Inventory",2011,"For storage only",37,"Schlattberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25684,398787,"CHE","National Inventory",2011,"For storage only",37,"Ober Längenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25685,398788,"CHE","National Inventory",2011,"For storage only",37,"Schwämmli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25686,398789,"CHE","National Inventory",2011,"For storage only",37,"Chängelboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25687,398790,"CHE","National Inventory",2011,"For storage only",37,"Chämmenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25688,398791,"CHE","National Inventory",2011,"For storage only",37,"Ober Herberig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25689,398792,"CHE","National Inventory",2011,"For storage only",37,"Rhodannenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25690,398793,"CHE","National Inventory",2011,"For storage only",37,"Ober Rueggis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25691,398794,"CHE","National Inventory",2011,"For storage only",37,"Unter Herberig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25692,398795,"CHE","National Inventory",2011,"For storage only",37,"Ochsenfeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25693,398796,"CHE","National Inventory",2011,"For storage only",37,"Bärenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25694,398797,"CHE","National Inventory",2011,"For storage only",37,"Glattmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25695,398798,"CHE","National Inventory",2011,"For storage only",37,"Innerbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25696,398799,"CHE","National Inventory",2011,"For storage only",37,"Glattmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25697,398800,"CHE","National Inventory",2011,"For storage only",37,"Moos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25698,398801,"CHE","National Inventory",2011,"For storage only",37,"Holzbort","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25699,398802,"CHE","National Inventory",2011,"For storage only",37,"Schaft","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25700,398803,"CHE","National Inventory",2011,"For storage only",37,"Schlattbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25701,398804,"CHE","National Inventory",2011,"For storage only",37,"Ochsenbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25702,398805,"CHE","National Inventory",2011,"For storage only",37,"Baumgarten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25703,398806,"CHE","National Inventory",2011,"For storage only",37,"Sägemühle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25704,398807,"CHE","National Inventory",2011,"For storage only",37,"Bruch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25705,398808,"CHE","National Inventory",2011,"For storage only",37,"Durlaui","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25706,398809,"CHE","National Inventory",2011,"For storage only",37,"Bleiggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25707,398810,"CHE","National Inventory",2011,"For storage only",37,"Rossboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25708,398811,"CHE","National Inventory",2011,"For storage only",37,"Unter Friteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25709,398812,"CHE","National Inventory",2011,"For storage only",37,"Rufiberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25710,398813,"CHE","National Inventory",2011,"For storage only",37,"Trügglisrus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25711,398814,"CHE","National Inventory",2011,"For storage only",37,"Linthkanal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25712,398815,"CHE","National Inventory",2011,"For storage only",37,"Boggenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25713,398816,"CHE","National Inventory",2011,"For storage only",37,"Hintere Facht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25714,398817,"CHE","National Inventory",2011,"For storage only",37,"Mullerenplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25715,398818,"CHE","National Inventory",2011,"For storage only",37,"Grund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25716,398819,"CHE","National Inventory",2011,"For storage only",37,"Schlatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25717,398820,"CHE","National Inventory",2011,"For storage only",37,"Schletter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25718,398821,"CHE","National Inventory",2011,"For storage only",37,"Schilttal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25719,398822,"CHE","National Inventory",2011,"For storage only",37,"Stöckli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25720,398823,"CHE","National Inventory",2011,"For storage only",37,"Hinter Buchs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25721,398824,"CHE","National Inventory",2011,"For storage only",37,"Äschenchöpf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25722,398825,"CHE","National Inventory",2011,"For storage only",37,"Geisstal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25723,398826,"CHE","National Inventory",2011,"For storage only",37,"Bergguet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25724,398827,"CHE","National Inventory",2011,"For storage only",37,"Bischof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25725,398828,"CHE","National Inventory",2011,"For storage only",37,"Feleten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25726,398829,"CHE","National Inventory",2011,"For storage only",37,"Wildenstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25727,398830,"CHE","National Inventory",2011,"For storage only",37,"Funkeblatz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25728,398831,"CHE","National Inventory",2011,"For storage only",37,"Hindere-Bärg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25729,398832,"CHE","National Inventory",2011,"For storage only",37,"Loo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25730,398833,"CHE","National Inventory",2011,"For storage only",37,"Schelmebüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25731,398834,"CHE","National Inventory",2011,"For storage only",37,"Weierste","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25732,398835,"CHE","National Inventory",2011,"For storage only",37,"Chabishaupt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25733,398836,"CHE","National Inventory",2011,"For storage only",37,"Stettfurt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25734,398837,"CHE","National Inventory",2011,"For storage only",37,"Spottebärg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25735,398838,"CHE","National Inventory",2011,"For storage only",37,"Sandbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25736,398839,"CHE","National Inventory",2011,"For storage only",37,"Meiersbode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25737,398840,"CHE","National Inventory",2011,"For storage only",37,"Tanebööl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25738,398841,"CHE","National Inventory",2011,"For storage only",37,"Loch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25739,398842,"CHE","National Inventory",2011,"For storage only",37,"Chilpen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25740,398843,"CHE","National Inventory",2011,"For storage only",37,"Obere Schachlete","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25741,398844,"CHE","National Inventory",2011,"For storage only",37,"Bogental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25742,398845,"CHE","National Inventory",2011,"For storage only",37,"Hinter Geissberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25743,398846,"CHE","National Inventory",2011,"For storage only",37,"Wiesengriener","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25744,398847,"CHE","National Inventory",2011,"For storage only",37,"Elsässer Bahn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25745,398848,"CHE","National Inventory",2011,"For storage only",37,"Schwarzpark","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25746,398849,"CHE","National Inventory",2011,"For storage only",37,"Elsässer Bahn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25747,398850,"CHE","National Inventory",2011,"For storage only",37,"Brügglingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25748,398851,"CHE","National Inventory",2011,"For storage only",37,"Zwölf Jucharte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25749,398852,"CHE","National Inventory",2011,"For storage only",37,"Tal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25750,398853,"CHE","National Inventory",2011,"For storage only",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25751,398854,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Bendern","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25752,398855,"CHE","National Inventory",2011,"For storage only",37,"Chuffort","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25753,398856,"CHE","National Inventory",2011,"For storage only",37,"Linthdamm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25754,398857,"CHE","National Inventory",2011,"For storage only",37,"Chemeneau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25755,398858,"CHE","National Inventory",2011,"For storage only",37,"Bel Air","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25756,398859,"CHE","National Inventory",2011,"For storage only",37,"Hinterbetlis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25757,398860,"CHE","National Inventory",2011,"For storage only",37,"Petit Som Martel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25758,398861,"CHE","National Inventory",2011,"For storage only",37,"Blauenweide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25759,398862,"CHE","National Inventory",2011,"For storage only",37,"Plättli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25760,398863,"CHE","National Inventory",2011,"For storage only",37,"Le Ceylard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25761,398864,"CHE","National Inventory",2011,"For storage only",37,"Haslengaden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25762,398865,"CHE","National Inventory",2011,"For storage only",37,"Le Bredot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25763,398866,"CHE","National Inventory",2011,"For storage only",37,"Chez Blaiset","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25764,398867,"CHE","National Inventory",2011,"For storage only",37,"Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25765,398868,"CHE","National Inventory",2011,"For storage only",37,"Grütt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25766,398869,"CHE","National Inventory",2011,"For storage only",37,"Les Prises","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25767,398870,"CHE","National Inventory",2011,"For storage only",37,"Hinterer Josen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25768,398871,"CHE","National Inventory",2011,"For storage only",37,"Les Replans","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25769,398872,"CHE","National Inventory",2011,"For storage only",37,"Schloss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25770,398873,"CHE","National Inventory",2011,"For storage only",37,"Prise Milord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25771,398874,"CHE","National Inventory",2011,"For storage only",37,"Creux du Van","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25772,398875,"CHE","National Inventory",2011,"For storage only",37,"Helfenbergrütenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25773,398876,"CHE","National Inventory",2011,"For storage only",37,"Pât. de Meudon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25774,398877,"CHE","National Inventory",2011,"For storage only",37,"Les Charrières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25775,398878,"CHE","National Inventory",2011,"For storage only",37,"Eichbühl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25776,398879,"CHE","National Inventory",2011,"For storage only",37,"Portnol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25777,398880,"CHE","National Inventory",2011,"For storage only",37,"Noirvaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25778,398881,"CHE","National Inventory",2011,"For storage only",37,"Mét. de Dombresson","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25779,398882,"CHE","National Inventory",2011,"For storage only",37,"Mét. de Dombresson","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25780,398883,"CHE","National Inventory",2011,"For storage only",37,"Le Crosat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25781,398884,"CHE","National Inventory",2011,"For storage only",37,"La Chaux d'Amin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25782,398885,"CHE","National Inventory",2011,"For storage only",37,"Les Monts Orientaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25783,398886,"CHE","National Inventory",2011,"For storage only",37,"Monthey du Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25784,398887,"CHE","National Inventory",2011,"For storage only",37,"Combes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25785,398888,"CHE","National Inventory",2011,"For storage only",37,"Brisecou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25786,398889,"CHE","National Inventory",2011,"For storage only",37,"La Serment","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25787,398890,"CHE","National Inventory",2011,"For storage only",37,"Rochers Bruns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25788,398891,"CHE","National Inventory",2011,"For storage only",37,"Grande Racine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25789,398892,"CHE","National Inventory",2011,"For storage only",37,"Mont Racine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25790,398893,"CHE","National Inventory",2011,"For storage only",37,"Les Rièdes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25791,398894,"CHE","National Inventory",2011,"For storage only",37,"La Goulette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25792,398895,"CHE","National Inventory",2011,"For storage only",37,"Pré aux Planes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25793,398896,"CHE","National Inventory",2011,"For storage only",37,"La Goulette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25794,398897,"CHE","National Inventory",2011,"For storage only",37,"Verlüls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25795,398898,"CHE","National Inventory",2011,"For storage only",37,"Petite Sagneule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25796,398899,"CHE","National Inventory",2011,"For storage only",37,"Roches de l'Ermitage","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25797,398900,"CHE","National Inventory",2011,"For storage only",37,"Les Grattes de Vent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25798,398901,"CHE","National Inventory",2011,"For storage only",37,"Capätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25799,398902,"CHE","National Inventory",2011,"For storage only",37,"Les Bornels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25800,398903,"CHE","National Inventory",2011,"For storage only",37,"L'Armont de Vent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25801,398904,"CHE","National Inventory",2011,"For storage only",37,"Le Barthélemy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25802,398905,"CHE","National Inventory",2011,"For storage only",37,"Ruine Wartau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25803,398906,"CHE","National Inventory",2011,"For storage only",37,"Crêt du Cervelet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25804,398907,"CHE","National Inventory",2011,"For storage only",37,"Planeyse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25805,398908,"CHE","National Inventory",2011,"For storage only",37,"Les Michel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25806,398909,"CHE","National Inventory",2011,"For storage only",37,"Petits Michel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25807,398910,"CHE","National Inventory",2011,"For storage only",37,"Trémalmont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25808,398911,"CHE","National Inventory",2011,"For storage only",37,"Les Fontenettes Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25809,398912,"CHE","National Inventory",2011,"For storage only",37,"Petite Charbonnière","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25810,398913,"CHE","National Inventory",2011,"For storage only",37,"Le Loclat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25811,398914,"CHE","National Inventory",2011,"For storage only",37,"Côte Bertin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25812,398915,"CHE","National Inventory",2011,"For storage only",37,"Les Replans","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25813,398916,"CHE","National Inventory",2011,"For storage only",37,"Les Replans","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25814,398917,"CHE","National Inventory",2011,"For storage only",37,"Sonnenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25815,398918,"CHE","National Inventory",2011,"For storage only",37,"La Benette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25816,398919,"CHE","National Inventory",2011,"For storage only",37,"Les Côtes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25817,398920,"CHE","National Inventory",2011,"For storage only",37,"Mont Dar","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25818,398921,"CHE","National Inventory",2011,"For storage only",37,"Les Charbonnières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25819,398922,"CHE","National Inventory",2011,"For storage only",37,"Lochberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25820,398923,"CHE","National Inventory",2011,"For storage only",37,"Rehhagweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25821,398924,"CHE","National Inventory",2011,"For storage only",37,"Hinterspina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25822,398925,"CHE","National Inventory",2011,"For storage only",37,"Beurnevésin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25823,398926,"CHE","National Inventory",2011,"For storage only",37,"Hallen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25824,398927,"CHE","National Inventory",2011,"For storage only",37,"Pâturage de Bavelier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25825,398928,"CHE","National Inventory",2011,"For storage only",37,"Vies de Roggenburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25826,398929,"CHE","National Inventory",2011,"For storage only",37,"La Réselle de Soyhières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25827,398930,"CHE","National Inventory",2011,"For storage only",37,"En Bouec","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25828,398931,"CHE","National Inventory",2011,"For storage only",37,"Côte de Mai","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25829,398932,"CHE","National Inventory",2011,"For storage only",37,"La Joux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25830,398933,"CHE","National Inventory",2011,"For storage only",37,"La Malcôte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25831,398934,"CHE","National Inventory",2011,"For storage only",37,"Creugenat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25832,398935,"CHE","National Inventory",2011,"For storage only",37,"La Grosse Fin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25833,398936,"CHE","National Inventory",2011,"For storage only",37,"Sur le Pré","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25834,398937,"CHE","National Inventory",2011,"For storage only",37,"La Ferouse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25835,398938,"CHE","National Inventory",2011,"For storage only",37,"Jetti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25836,398939,"CHE","National Inventory",2011,"For storage only",37,"Grangiéron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25837,398940,"CHE","National Inventory",2011,"For storage only",37,"Deuxième Vorbourg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25838,398941,"CHE","National Inventory",2011,"For storage only",37,"Montgremay","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25839,398942,"CHE","National Inventory",2011,"For storage only",37,"La Combe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25840,398943,"CHE","National Inventory",2011,"For storage only",37,"Haut de la Côte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25841,398944,"CHE","National Inventory",2011,"For storage only",37,"Roc de l'Autel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25842,398945,"CHE","National Inventory",2011,"For storage only",37,"Combe Chavat Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25843,398946,"CHE","National Inventory",2011,"For storage only",37,"Le Moulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25844,398947,"CHE","National Inventory",2011,"For storage only",37,"Esserts de la Côte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25845,398948,"CHE","National Inventory",2011,"For storage only",37,"Cras de la Combe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25846,398949,"CHE","National Inventory",2011,"For storage only",37,"Beuseraine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25847,398950,"CHE","National Inventory",2011,"For storage only",37,"Paquoille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25848,398951,"CHE","National Inventory",2011,"For storage only",37,"L'Ordon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25849,398952,"CHE","National Inventory",2011,"For storage only",37,"Ocourt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25850,398953,"CHE","National Inventory",2011,"For storage only",37,"Les Longennes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25851,398954,"CHE","National Inventory",2011,"For storage only",37,"St-Jean","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25852,398955,"CHE","National Inventory",2011,"For storage only",37,"La Motte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25853,398956,"CHE","National Inventory",2011,"For storage only",37,"Älpeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25854,398957,"CHE","National Inventory",2011,"For storage only",37,"Grands Prés","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25855,398958,"CHE","National Inventory",2011,"For storage only",37,"La Neuve Vie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25856,398959,"CHE","National Inventory",2011,"For storage only",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25857,398960,"CHE","National Inventory",2011,"For storage only",37,"Les Pouches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25858,398961,"CHE","National Inventory",2011,"For storage only",37,"Châtillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25859,398962,"CHE","National Inventory",2011,"For storage only",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25860,398963,"CHE","National Inventory",2011,"For storage only",37,"Glacenal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25861,398964,"CHE","National Inventory",2011,"For storage only",37,"Châtillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25862,398965,"CHE","National Inventory",2011,"For storage only",37,"Vorderspina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25863,398966,"CHE","National Inventory",2011,"For storage only",37,"La Sarasine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25864,398967,"CHE","National Inventory",2011,"For storage only",37,"Les Longs Prés","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25865,398968,"CHE","National Inventory",2011,"For storage only",37,"Chervillers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25866,398969,"CHE","National Inventory",2011,"For storage only",37,"Petit Finage","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25867,398970,"CHE","National Inventory",2011,"For storage only",37,"La Sonnenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25868,398971,"CHE","National Inventory",2011,"For storage only",37,"Heiligkreuz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25869,398972,"CHE","National Inventory",2011,"For storage only",37,"Schöneberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25870,398973,"CHE","National Inventory",2011,"For storage only",37,"Soubey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25871,398974,"CHE","National Inventory",2011,"For storage only",37,"Chez Renaud","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25872,398975,"CHE","National Inventory",2011,"For storage only",37,"Grand Finage","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25873,398976,"CHE","National Inventory",2011,"For storage only",37,"La Boiraderie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25874,398977,"CHE","National Inventory",2011,"For storage only",37,"Engen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25875,398978,"CHE","National Inventory",2011,"For storage only",37,"Haut du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25876,398979,"CHE","National Inventory",2011,"For storage only",37,"Fin de Charrère","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25877,398980,"CHE","National Inventory",2011,"For storage only",37,"Undervelier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25878,398981,"CHE","National Inventory",2011,"For storage only",37,"La Metteneux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25879,398982,"CHE","National Inventory",2011,"For storage only",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25880,398983,"CHE","National Inventory",2011,"For storage only",37,"Pâturage sur Les Rangs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25881,398984,"CHE","National Inventory",2011,"For storage only",37,"La Belle Etoile","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25882,398985,"CHE","National Inventory",2011,"For storage only",37,"Fin de la Madeleine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25883,398986,"CHE","National Inventory",2011,"For storage only",37,"Paquoille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25884,398987,"CHE","National Inventory",2011,"For storage only",37,"Hint. Rohrberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25885,398988,"CHE","National Inventory",2011,"For storage only",37,"Bergweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25886,398989,"CHE","National Inventory",2011,"For storage only",37,"Ruine Freudenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25887,398990,"CHE","National Inventory",2011,"For storage only",37,"Ramsen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25888,398991,"CHE","National Inventory",2011,"For storage only",37,"Oberriet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25889,398992,"CHE","National Inventory",2011,"For storage only",37,"Talhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25890,398993,"CHE","National Inventory",2011,"For storage only",37,"Stig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25891,398994,"CHE","National Inventory",2011,"For storage only",37,"Uf der Gräte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25892,398995,"CHE","National Inventory",2011,"For storage only",37,"Randen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25893,398996,"CHE","National Inventory",2011,"For storage only",37,"Halde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25894,398997,"CHE","National Inventory",2011,"For storage only",37,"Hasedel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25895,398998,"CHE","National Inventory",2011,"For storage only",37,"Buechberghus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25896,398999,"CHE","National Inventory",2011,"For storage only",37,"Hinderranden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25897,399000,"CHE","National Inventory",2011,"For storage only",37,"Herbsttal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25898,399001,"CHE","National Inventory",2011,"For storage only",37,"Hinter Freudental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25899,399002,"CHE","National Inventory",2011,"For storage only",37,"Randenhorn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25900,399003,"CHE","National Inventory",2011,"For storage only",37,"Eichhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25901,399004,"CHE","National Inventory",2011,"For storage only",37,"Chäferstei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25902,399005,"CHE","National Inventory",2011,"For storage only",37,"Osterberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25903,399006,"CHE","National Inventory",2011,"For storage only",37,"Uechben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25904,399007,"CHE","National Inventory",2011,"For storage only",37,"Hohlgraben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25905,399008,"CHE","National Inventory",2011,"For storage only",37,"Leuengründli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25906,399009,"CHE","National Inventory",2011,"For storage only",37,"Chälen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25907,399010,"CHE","National Inventory",2011,"For storage only",37,"Bachmüli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25908,399011,"CHE","National Inventory",2011,"For storage only",37,"Heerenbuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25909,399012,"CHE","National Inventory",2011,"For storage only",37,"Hohberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25910,399013,"CHE","National Inventory",2011,"For storage only",37,"Mooshalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25911,399014,"CHE","National Inventory",2011,"For storage only",37,"Blaasen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25912,399015,"CHE","National Inventory",2011,"For storage only",37,"Mösli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25913,399016,"CHE","National Inventory",2011,"For storage only",37,"Lattweienacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25914,399017,"CHE","National Inventory",2011,"For storage only",37,"Götzenhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25915,399018,"CHE","National Inventory",2011,"For storage only",37,"Buck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25916,399019,"CHE","National Inventory",2011,"For storage only",37,"Ägistel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25917,399020,"CHE","National Inventory",2011,"For storage only",37,"Seigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25918,399021,"CHE","National Inventory",2011,"For storage only",37,"Vitzboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25919,399022,"CHE","National Inventory",2011,"For storage only",37,"Attenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25920,399023,"CHE","National Inventory",2011,"For storage only",37,"Dostental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25921,399024,"CHE","National Inventory",2011,"For storage only",37,"Barmen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25922,399025,"CHE","National Inventory",2011,"For storage only",37,"Chleebuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25923,399026,"CHE","National Inventory",2011,"For storage only",37,"Braaten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25924,399027,"CHE","National Inventory",2011,"For storage only",37,"Uf der Tüele","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25925,399028,"CHE","National Inventory",2011,"For storage only",37,"Geisshalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25926,399029,"CHE","National Inventory",2011,"For storage only",37,"Rietwisen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25927,399030,"CHE","National Inventory",2011,"For storage only",37,"Chälen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25928,399031,"CHE","National Inventory",2011,"For storage only",37,"Hohrainchäpfli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25929,399032,"CHE","National Inventory",2011,"For storage only",37,"Staufenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25930,399033,"CHE","National Inventory",2011,"For storage only",37,"Lyten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25931,399034,"CHE","National Inventory",2011,"For storage only",37,"Haartel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25932,399035,"CHE","National Inventory",2011,"For storage only",37,"Merishausen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25933,399036,"CHE","National Inventory",2011,"For storage only",37,"Uf der Stig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25934,399037,"CHE","National Inventory",2011,"For storage only",37,"Heidenbomm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25935,399038,"CHE","National Inventory",2011,"For storage only",37,"Tenterenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25936,399039,"CHE","National Inventory",2011,"For storage only",37,"Winkelacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25937,399040,"CHE","National Inventory",2011,"For storage only",37,"Randenhorn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25938,399041,"CHE","National Inventory",2011,"For storage only",37,"Pöschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25939,399042,"CHE","National Inventory",2011,"For storage only",37,"Galliwisen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25940,399043,"CHE","National Inventory",2011,"For storage only",37,"Schenenbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25941,399044,"CHE","National Inventory",2011,"For storage only",37,"Haslenacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25942,399045,"CHE","National Inventory",2011,"For storage only",37,"Grätental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25943,399046,"CHE","National Inventory",2011,"For storage only",37,"Birbistel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25944,399047,"CHE","National Inventory",2011,"For storage only",37,"Wald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25945,399048,"CHE","National Inventory",2011,"For storage only",37,"Heerenbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25946,399049,"CHE","National Inventory",2011,"For storage only",37,"Gerenbuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25947,399050,"CHE","National Inventory",2011,"For storage only",37,"Hinteres Freudental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25948,399051,"CHE","National Inventory",2011,"For storage only",37,"Tal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25949,399052,"CHE","National Inventory",2011,"For storage only",37,"Wangental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25950,399053,"CHE","National Inventory",2011,"For storage only",37,"Santiergen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25951,399054,"CHE","National Inventory",2011,"For storage only",37,"Chuttler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25952,399055,"CHE","National Inventory",2011,"For storage only",37,"Lieblosental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25953,399056,"CHE","National Inventory",2011,"For storage only",37,"Hagenturm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25954,399057,"CHE","National Inventory",2011,"For storage only",37,"Staanenbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25955,399058,"CHE","National Inventory",2011,"For storage only",37,"Hanesbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25956,399059,"CHE","National Inventory",2011,"For storage only",37,"Dürstel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25957,399060,"CHE","National Inventory",2011,"For storage only",37,"Valenserberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25958,399061,"CHE","National Inventory",2011,"For storage only",37,"Furtmüli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25959,399062,"CHE","National Inventory",2011,"For storage only",37,"Vättis Pardätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25960,399063,"CHE","National Inventory",2011,"For storage only",37,"Rofanätschli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25961,399064,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Schwetti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25962,399065,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Trübbach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25963,399066,"CHE","National Inventory",2011,"For storage only",37,"Rittersberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25964,399067,"CHE","National Inventory",2011,"For storage only",37,"Cholholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25965,399068,"CHE","National Inventory",2011,"For storage only",37,"Faren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25966,399069,"CHE","National Inventory",2011,"For storage only",37,"Lindenhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25967,399070,"CHE","National Inventory",2011,"For storage only",37,"Buechlet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25968,399071,"CHE","National Inventory",2011,"For storage only",37,"Stallikon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25969,399072,"CHE","National Inventory",2011,"For storage only",37,"Nübrächten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25970,399073,"CHE","National Inventory",2011,"For storage only",37,"Gartentobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25971,399074,"CHE","National Inventory",2011,"For storage only",37,"Beschtentobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25972,399075,"CHE","National Inventory",2011,"For storage only",37,"Hörnen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25973,399076,"CHE","National Inventory",2011,"For storage only",37,"Hard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25974,399077,"CHE","National Inventory",2011,"For storage only",37,"Stampfi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25975,399078,"CHE","National Inventory",2011,"For storage only",37,"Schluechtächer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25976,399079,"CHE","National Inventory",2011,"For storage only",37,"Matt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25977,399080,"CHE","National Inventory",2011,"For storage only",37,"Vogelsang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25978,399081,"CHE","National Inventory",2011,"For storage only",37,"Brütten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25979,399082,"CHE","National Inventory",2011,"For storage only",37,"Stigenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25980,399083,"CHE","National Inventory",2011,"For storage only",37,"Brand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25981,399084,"CHE","National Inventory",2011,"For storage only",37,"Hard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25982,399085,"CHE","National Inventory",2011,"For storage only",37,"Vorder Tobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25983,399086,"CHE","National Inventory",2011,"For storage only",37,"Schilt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25984,399087,"CHE","National Inventory",2011,"For storage only",37,"Eglisgrund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25985,399088,"CHE","National Inventory",2011,"For storage only",37,"Wolfenzädel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25986,399089,"CHE","National Inventory",2011,"For storage only",37,"Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25987,399090,"CHE","National Inventory",2011,"For storage only",37,"Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25988,399091,"CHE","National Inventory",2011,"For storage only",37,"Bifig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25989,399092,"CHE","National Inventory",2011,"For storage only",37,"Underäntschberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25990,399093,"CHE","National Inventory",2011,"For storage only",37,"Fuchsloch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25991,399094,"CHE","National Inventory",2011,"For storage only",37,"Lätten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25992,399095,"CHE","National Inventory",2011,"For storage only",37,"Felsen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25993,399096,"CHE","National Inventory",2011,"For storage only",37,"Lochacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25994,399097,"CHE","National Inventory",2011,"For storage only",37,"Rüedi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25995,399098,"CHE","National Inventory",2011,"For storage only",37,"Auenriet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25996,399099,"CHE","National Inventory",2011,"For storage only",37,"Tobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25997,399100,"CHE","National Inventory",2011,"For storage only",37,"Nideltobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25998,399101,"CHE","National Inventory",2011,"For storage only",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -25999,399102,"CHE","National Inventory",2011,"For storage only",37,"Landbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26000,399103,"CHE","National Inventory",2011,"For storage only",37,"Büel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26001,399104,"CHE","National Inventory",2011,"For storage only",37,"Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26002,399105,"CHE","National Inventory",2011,"For storage only",37,"Berenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26003,399106,"CHE","National Inventory",2011,"For storage only",37,"Schlossbuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26004,399107,"CHE","National Inventory",2011,"For storage only",37,"Talmüli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26005,399108,"CHE","National Inventory",2011,"For storage only",37,"Cheibenacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26006,399109,"CHE","National Inventory",2011,"For storage only",37,"Forbuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26007,399110,"CHE","National Inventory",2011,"For storage only",37,"Edelmann","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26008,399111,"CHE","National Inventory",2011,"For storage only",37,"Schnäggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26009,399112,"CHE","National Inventory",2011,"For storage only",37,"Beschten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26010,399113,"CHE","National Inventory",2011,"For storage only",37,"Frohberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26011,399114,"CHE","National Inventory",2011,"For storage only",37,"Ganeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26012,399115,"CHE","National Inventory",2011,"For storage only",37,"Bleiki","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26013,399116,"CHE","National Inventory",2011,"For storage only",37,"Widmen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26014,399117,"CHE","National Inventory",2011,"For storage only",37,"Froacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26015,399118,"CHE","National Inventory",2011,"For storage only",37,"Blumetshalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26016,399119,"CHE","National Inventory",2011,"For storage only",37,"Lindirain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26017,399120,"CHE","National Inventory",2011,"For storage only",37,"Dürrspitz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26018,399121,"CHE","National Inventory",2011,"For storage only",37,"Hinter Stig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26019,399122,"CHE","National Inventory",2011,"For storage only",37,"Ober Ror","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26020,399123,"CHE","National Inventory",2011,"For storage only",37,"Rebberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26021,399124,"CHE","National Inventory",2011,"For storage only",37,"Ober Büel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26022,399125,"CHE","National Inventory",2011,"For storage only",37,"Stracheren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26023,399126,"CHE","National Inventory",2011,"For storage only",37,"Eigental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26024,399127,"CHE","National Inventory",2011,"For storage only",37,"Homberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26025,399128,"CHE","National Inventory",2011,"For storage only",37,"Moos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26026,399129,"CHE","National Inventory",2011,"For storage only",37,"Letzibode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26027,399130,"CHE","National Inventory",2011,"For storage only",37,"Leh","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26028,399131,"CHE","National Inventory",2011,"For storage only",37,"Oberholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26029,399132,"CHE","National Inventory",2011,"For storage only",37,"Eich Köngistal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26030,399133,"CHE","National Inventory",2011,"For storage only",37,"Rüteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26031,399134,"CHE","National Inventory",2011,"For storage only",37,"Hinterfeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26032,399135,"CHE","National Inventory",2011,"For storage only",37,"Major","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26033,399136,"CHE","National Inventory",2011,"For storage only",37,"Bachacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26034,399137,"CHE","National Inventory",2011,"For storage only",37,"Tössallmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26035,399138,"CHE","National Inventory",2011,"For storage only",37,"Chöpfi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26036,399139,"CHE","National Inventory",2011,"For storage only",37,"Diebis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26037,399140,"CHE","National Inventory",2011,"For storage only",37,"Talgrueb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26038,399141,"CHE","National Inventory",2011,"For storage only",37,"Stigenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26039,399142,"CHE","National Inventory",2011,"For storage only",37,"Wigarten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26040,399143,"CHE","National Inventory",2011,"For storage only",37,"Hegi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26041,399144,"CHE","National Inventory",2011,"For storage only",37,"Ober Emmetschloo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26042,399145,"CHE","National Inventory",2011,"For storage only",37,"Klarenwisen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26043,399146,"CHE","National Inventory",2011,"For storage only",37,"Leutobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26044,399147,"CHE","National Inventory",2011,"For storage only",37,"Batzenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26045,399148,"CHE","National Inventory",2011,"For storage only",37,"Danggabünt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26046,399149,"CHE","National Inventory",2011,"For storage only",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26047,399150,"CHE","National Inventory",2011,"For storage only",37,"Stutz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26048,399151,"CHE","National Inventory",2011,"For storage only",37,"Zelg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26049,399152,"CHE","National Inventory",2011,"For storage only",37,"Ebnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26050,399153,"CHE","National Inventory",2011,"For storage only",37,"Edlibuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26051,399154,"CHE","National Inventory",2011,"For storage only",37,"Chräenbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26052,399155,"CHE","National Inventory",2011,"For storage only",37,"Burgweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26053,399156,"CHE","National Inventory",2011,"For storage only",37,"Plattis-Chopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26054,399157,"CHE","National Inventory",2011,"For storage only",37,"Langgraben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26055,399158,"CHE","National Inventory",2011,"For storage only",37,"Untergries","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26056,399159,"CHE","National Inventory",2011,"For storage only",37,"Bahndamm Chrützstrass","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26057,399160,"CHE","National Inventory",2011,"For storage only",37,"Falletsche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26058,399161,"CHE","National Inventory",2011,"For storage only",37,"Büel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26059,399162,"CHE","National Inventory",2011,"For storage only",37,"Rotengübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26060,399163,"CHE","National Inventory",2011,"For storage only",37,"Langweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26061,399164,"CHE","National Inventory",2011,"For storage only",37,"Lätten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26062,399165,"CHE","National Inventory",2011,"For storage only",37,"Malin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26063,399166,"CHE","National Inventory",2011,"For storage only",37,"Dättnau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26064,399167,"CHE","National Inventory",2011,"For storage only",37,"Wydenchlösterli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26065,399168,"CHE","National Inventory",2011,"For storage only",37,"Berghof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26066,399169,"CHE","National Inventory",2011,"For storage only",37,"Tägerst","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26067,399170,"CHE","National Inventory",2011,"For storage only",37,"Rotlauben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26068,399171,"CHE","National Inventory",2011,"For storage only",37,"Lätten Felsenhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26069,399172,"CHE","National Inventory",2011,"For storage only",37,"Wolfen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26070,399173,"CHE","National Inventory",2011,"For storage only",37,"Fröschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26071,399174,"CHE","National Inventory",2011,"For storage only",37,"Grüt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26072,399175,"CHE","National Inventory",2011,"For storage only",37,"Alt Landenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26073,399176,"CHE","National Inventory",2011,"For storage only",37,"Hochwacht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26074,399177,"CHE","National Inventory",2011,"For storage only",37,"Streuweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26075,399178,"CHE","National Inventory",2011,"For storage only",37,"Alp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26076,399179,"CHE","National Inventory",2011,"For storage only",37,"Holberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26077,399180,"CHE","National Inventory",2011,"For storage only",37,"Rossweg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26078,399181,"CHE","National Inventory",2011,"For storage only",37,"Brueder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26079,399182,"CHE","National Inventory",2011,"For storage only",37,"Heiletsegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26080,399183,"CHE","National Inventory",2011,"For storage only",37,"Langfuri","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26081,399184,"CHE","National Inventory",2011,"For storage only",37,"Wissen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26082,399185,"CHE","National Inventory",2011,"For storage only",37,"Tüfmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26083,399186,"CHE","National Inventory",2011,"For storage only",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26084,399187,"CHE","National Inventory",2011,"For storage only",37,"Uerchen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26085,399188,"CHE","National Inventory",2011,"For storage only",37,"Vorrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26086,399189,"CHE","National Inventory",2011,"For storage only",37,"Hoh Wülflingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26087,399190,"CHE","National Inventory",2011,"For storage only",37,"Gentner","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26088,399191,"CHE","National Inventory",2011,"For storage only",37,"Rötelibuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26089,399192,"CHE","National Inventory",2011,"For storage only",37,"Schwendli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26090,399193,"CHE","National Inventory",2011,"For storage only",37,"Buchenhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26091,399194,"CHE","National Inventory",2011,"For storage only",37,"Tal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26092,399195,"CHE","National Inventory",2011,"For storage only",37,"Oberschwendli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26093,399196,"CHE","National Inventory",2011,"For storage only",37,"Breiti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26094,399197,"CHE","National Inventory",2011,"For storage only",37,"Bächlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26095,399198,"CHE","National Inventory",2011,"For storage only",37,"Dübendorf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26096,399199,"CHE","National Inventory",2011,"For storage only",37,"Eichhalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26097,399200,"CHE","National Inventory",2011,"For storage only",37,"Rollibach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26098,399201,"CHE","National Inventory",2011,"For storage only",37,"Saxerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26099,399202,"CHE","National Inventory",2011,"For storage only",37,"Langhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26100,399203,"CHE","National Inventory",2011,"For storage only",37,"Goodenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26101,399204,"CHE","National Inventory",2011,"For storage only",37,"Ämsigenplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26102,399205,"CHE","National Inventory",2011,"For storage only",37,"Rieden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26103,399206,"CHE","National Inventory",2011,"For storage only",37,"Laui","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26104,399207,"CHE","National Inventory",2011,"For storage only",37,"Choleren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26105,399208,"CHE","National Inventory",2011,"For storage only",37,"Vorder Schwarzenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26106,399209,"CHE","National Inventory",2011,"For storage only",37,"Ruedlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26107,399210,"CHE","National Inventory",2011,"For storage only",37,"Gletti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26108,399211,"CHE","National Inventory",2011,"For storage only",37,"Arvihütte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26109,399212,"CHE","National Inventory",2011,"For storage only",37,"Chueneren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26110,399213,"CHE","National Inventory",2011,"For storage only",37,"Aaflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26111,399214,"CHE","National Inventory",2011,"For storage only",37,"Älpeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26112,399215,"CHE","National Inventory",2011,"For storage only",37,"Ei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26113,399216,"CHE","National Inventory",2011,"For storage only",37,"Schildberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26114,399217,"CHE","National Inventory",2011,"For storage only",37,"Obheg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26115,399218,"CHE","National Inventory",2011,"For storage only",37,"Spissegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26116,399219,"CHE","National Inventory",2011,"For storage only",37,"Unter Büelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26117,399220,"CHE","National Inventory",2011,"For storage only",37,"Müllerenschwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26118,399221,"CHE","National Inventory",2011,"For storage only",37,"Erlimatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26119,399222,"CHE","National Inventory",2011,"For storage only",37,"Grüt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26120,399223,"CHE","National Inventory",2011,"For storage only",37,"Grüt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26121,399224,"CHE","National Inventory",2011,"For storage only",37,"Musschwändeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26122,399225,"CHE","National Inventory",2011,"For storage only",37,"Hinterbrenden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26123,399226,"CHE","National Inventory",2011,"For storage only",37,"Obstocken","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26124,399227,"CHE","National Inventory",2011,"For storage only",37,"Turrenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26125,399228,"CHE","National Inventory",2011,"For storage only",37,"Lehberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26126,399229,"CHE","National Inventory",2011,"For storage only",37,"Obstocken","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26127,399230,"CHE","National Inventory",2011,"For storage only",37,"Mettental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26128,399231,"CHE","National Inventory",2011,"For storage only",37,"Stollen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26129,399232,"CHE","National Inventory",2011,"For storage only",37,"Birchegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26130,399233,"CHE","National Inventory",2011,"For storage only",37,"Steinmeise","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26131,399234,"CHE","National Inventory",2011,"For storage only",37,"Gmeinegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26132,399235,"CHE","National Inventory",2011,"For storage only",37,"Unter Zieblen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26133,399236,"CHE","National Inventory",2011,"For storage only",37,"Hanen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26134,399237,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Ruggell","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26135,399238,"CHE","National Inventory",2011,"For storage only",37,"Rinderalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26136,399239,"CHE","National Inventory",2011,"For storage only",37,"Alpoglerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26137,399240,"CHE","National Inventory",2011,"For storage only",37,"Äschligrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26138,399241,"CHE","National Inventory",2011,"For storage only",37,"Vogelsberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26139,399242,"CHE","National Inventory",2011,"For storage only",37,"Chlisterli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26140,399243,"CHE","National Inventory",2011,"For storage only",37,"Unter Schinberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26141,399244,"CHE","National Inventory",2011,"For storage only",37,"Ägerten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26142,399245,"CHE","National Inventory",2011,"For storage only",37,"Chruteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26143,399246,"CHE","National Inventory",2011,"For storage only",37,"Schwibbalm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26144,399247,"CHE","National Inventory",2011,"For storage only",37,"Turnacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26145,399248,"CHE","National Inventory",2011,"For storage only",37,"Breitmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26146,399249,"CHE","National Inventory",2011,"For storage only",37,"Tristelderen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26147,399250,"CHE","National Inventory",2011,"For storage only",37,"Turren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26148,399251,"CHE","National Inventory",2011,"For storage only",37,"Ober Steigli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26149,399252,"CHE","National Inventory",2011,"For storage only",37,"Vord. Rengg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26150,399253,"CHE","National Inventory",2011,"For storage only",37,"Ober Brand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26151,399254,"CHE","National Inventory",2011,"For storage only",37,"Bösendorf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26152,399255,"CHE","National Inventory",2011,"For storage only",37,"Churigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26153,399256,"CHE","National Inventory",2011,"For storage only",37,"Unter Lachen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26154,399257,"CHE","National Inventory",2011,"For storage only",37,"Turren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26155,399258,"CHE","National Inventory",2011,"For storage only",37,"Grüt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26156,399259,"CHE","National Inventory",2011,"For storage only",37,"Chrüzboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26157,399260,"CHE","National Inventory",2011,"For storage only",37,"Huggeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26158,399261,"CHE","National Inventory",2011,"For storage only",37,"Hüttmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26159,399262,"CHE","National Inventory",2011,"For storage only",37,"Walsli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26160,399263,"CHE","National Inventory",2011,"For storage only",37,"Stäbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26161,399264,"CHE","National Inventory",2011,"For storage only",37,"Lippeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26162,399265,"CHE","National Inventory",2011,"For storage only",37,"Valenserberg Gletti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26163,399266,"CHE","National Inventory",2011,"For storage only",37,"Egg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26164,399267,"CHE","National Inventory",2011,"For storage only",37,"Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26165,399268,"CHE","National Inventory",2011,"For storage only",37,"Guger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26166,399269,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Sennwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26167,399270,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Rheinau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26168,399271,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Burgerau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26169,399272,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Sevelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26170,399273,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Sarganser Au","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26171,399274,"CHE","National Inventory",2011,"For storage only",37,"Gmeirüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26172,399275,"CHE","National Inventory",2011,"For storage only",37,"Acheberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26173,399276,"CHE","National Inventory",2011,"For storage only",37,"Brunneberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26174,399277,"CHE","National Inventory",2011,"For storage only",37,"Acheberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26175,399278,"CHE","National Inventory",2011,"For storage only",37,"Egg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26176,399279,"CHE","National Inventory",2011,"For storage only",37,"Egg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26177,399280,"CHE","National Inventory",2011,"For storage only",37,"Langenmoos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26178,399281,"CHE","National Inventory",2011,"For storage only",37,"Rossweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26179,399282,"CHE","National Inventory",2011,"For storage only",37,"Hönger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26180,399283,"CHE","National Inventory",2011,"For storage only",37,"Steigrüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26181,399284,"CHE","National Inventory",2011,"For storage only",37,"Bauertacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26182,399285,"CHE","National Inventory",2011,"For storage only",37,"Müsler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26183,399286,"CHE","National Inventory",2011,"For storage only",37,"Nassberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26184,399287,"CHE","National Inventory",2011,"For storage only",37,"Hörndlihau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26185,399288,"CHE","National Inventory",2011,"For storage only",37,"Altenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26186,399289,"CHE","National Inventory",2011,"For storage only",37,"Hasenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26187,399290,"CHE","National Inventory",2011,"For storage only",37,"Eikerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26188,399291,"CHE","National Inventory",2011,"For storage only",37,"Hämmenägerten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26189,399292,"CHE","National Inventory",2011,"For storage only",37,"Schemel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26190,399293,"CHE","National Inventory",2011,"For storage only",37,"Schlatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26191,399294,"CHE","National Inventory",2011,"For storage only",37,"Stroppel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26192,399295,"CHE","National Inventory",2011,"For storage only",37,"Rüteli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26193,399296,"CHE","National Inventory",2011,"For storage only",37,"Ärfematt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26194,399297,"CHE","National Inventory",2011,"For storage only",37,"Rieden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26195,399298,"CHE","National Inventory",2011,"For storage only",37,"Wigarten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26196,399299,"CHE","National Inventory",2011,"For storage only",37,"Geissberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26197,399300,"CHE","National Inventory",2011,"For storage only",37,"Sarbe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26198,399301,"CHE","National Inventory",2011,"For storage only",37,"Bernau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26199,399302,"CHE","National Inventory",2011,"For storage only",37,"Herrenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26200,399303,"CHE","National Inventory",2011,"For storage only",37,"Barmelweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26201,399304,"CHE","National Inventory",2011,"For storage only",37,"Egghübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26202,399305,"CHE","National Inventory",2011,"For storage only",37,"Buhalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26203,399306,"CHE","National Inventory",2011,"For storage only",37,"Zetzwil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26204,399307,"CHE","National Inventory",2011,"For storage only",37,"Altrüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26205,399308,"CHE","National Inventory",2011,"For storage only",37,"Chilhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26206,399309,"CHE","National Inventory",2011,"For storage only",37,"Ritterhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26207,399310,"CHE","National Inventory",2011,"For storage only",37,"Chänebüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26208,399311,"CHE","National Inventory",2011,"For storage only",37,"Eichhalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26209,399312,"CHE","National Inventory",2011,"For storage only",37,"Besseberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26210,399313,"CHE","National Inventory",2011,"For storage only",37,"Nassbergegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26211,399314,"CHE","National Inventory",2011,"For storage only",37,"Besseberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26212,399315,"CHE","National Inventory",2011,"For storage only",37,"Laubberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26213,399316,"CHE","National Inventory",2011,"For storage only",37,"Rotberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26214,399317,"CHE","National Inventory",2011,"For storage only",37,"Unterboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26215,399318,"CHE","National Inventory",2011,"For storage only",37,"Gugeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26216,399319,"CHE","National Inventory",2011,"For storage only",37,"Bützerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26217,399320,"CHE","National Inventory",2011,"For storage only",37,"Chürzi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26218,399321,"CHE","National Inventory",2011,"For storage only",37,"Laubberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26219,399322,"CHE","National Inventory",2011,"For storage only",37,"Bernet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26220,399323,"CHE","National Inventory",2011,"For storage only",37,"Bürersteig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26221,399324,"CHE","National Inventory",2011,"For storage only",37,"Unterem Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26222,399325,"CHE","National Inventory",2011,"For storage only",37,"Chatzehalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26223,399326,"CHE","National Inventory",2011,"For storage only",37,"Hüslimatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26224,399327,"CHE","National Inventory",2011,"For storage only",37,"Schlossberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26225,399328,"CHE","National Inventory",2011,"For storage only",37,"Grossmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26226,399329,"CHE","National Inventory",2011,"For storage only",37,"Walledal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26227,399330,"CHE","National Inventory",2011,"For storage only",37,"Zelg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26228,399331,"CHE","National Inventory",2011,"For storage only",37,"Zelg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26229,399332,"CHE","National Inventory",2011,"For storage only",37,"Schönenbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26230,399333,"CHE","National Inventory",2011,"For storage only",37,"Wolftel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26231,399334,"CHE","National Inventory",2011,"For storage only",37,"Langenacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26232,399335,"CHE","National Inventory",2011,"For storage only",37,"Hessenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26233,399336,"CHE","National Inventory",2011,"For storage only",37,"Nätteberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26234,399337,"CHE","National Inventory",2011,"For storage only",37,"Ruge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26235,399338,"CHE","National Inventory",2011,"For storage only",37,"Chrendel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26236,399339,"CHE","National Inventory",2011,"For storage only",37,"Chrendel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26237,399340,"CHE","National Inventory",2011,"For storage only",37,"Breiten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26238,399341,"CHE","National Inventory",2011,"For storage only",37,"Winterholde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26239,399342,"CHE","National Inventory",2011,"For storage only",37,"Altenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26240,399343,"CHE","National Inventory",2011,"For storage only",37,"Lören","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26241,399344,"CHE","National Inventory",2011,"For storage only",37,"Reben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26242,399345,"CHE","National Inventory",2011,"For storage only",37,"Schihalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26243,399346,"CHE","National Inventory",2011,"For storage only",37,"Buessberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26244,399347,"CHE","National Inventory",2011,"For storage only",37,"Schihalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26245,399348,"CHE","National Inventory",2011,"For storage only",37,"Steindler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26246,399349,"CHE","National Inventory",2011,"For storage only",37,"Chripfe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26247,399350,"CHE","National Inventory",2011,"For storage only",37,"Chneublet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26248,399351,"CHE","National Inventory",2011,"For storage only",37,"Ämet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26249,399352,"CHE","National Inventory",2011,"For storage only",37,"Eiteberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26250,399353,"CHE","National Inventory",2011,"For storage only",37,"Üselmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26251,399354,"CHE","National Inventory",2011,"For storage only",37,"Rohregg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26252,399355,"CHE","National Inventory",2011,"For storage only",37,"Unterem Hag","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26253,399356,"CHE","National Inventory",2011,"For storage only",37,"Herzberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26254,399357,"CHE","National Inventory",2011,"For storage only",37,"Staffelegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26255,399358,"CHE","National Inventory",2011,"For storage only",37,"Chli Wolf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26256,399359,"CHE","National Inventory",2011,"For storage only",37,"Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26257,399360,"CHE","National Inventory",2011,"For storage only",37,"Ängi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26258,399361,"CHE","National Inventory",2011,"For storage only",37,"Luegeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26259,399362,"CHE","National Inventory",2011,"For storage only",37,"Chüerüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26260,399363,"CHE","National Inventory",2011,"For storage only",37,"Staltenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26261,399364,"CHE","National Inventory",2011,"For storage only",37,"Buhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26262,399365,"CHE","National Inventory",2011,"For storage only",37,"Cholgrueben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26263,399366,"CHE","National Inventory",2011,"For storage only",37,"Wermet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26264,399367,"CHE","National Inventory",2011,"For storage only",37,"Unteri Au","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26265,399368,"CHE","National Inventory",2011,"For storage only",37,"Ämmeribuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26266,399369,"CHE","National Inventory",2011,"For storage only",37,"Gugli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26267,399370,"CHE","National Inventory",2011,"For storage only",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26268,399371,"CHE","National Inventory",2011,"For storage only",37,"Eich","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26269,399372,"CHE","National Inventory",2011,"For storage only",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26270,399373,"CHE","National Inventory",2011,"For storage only",37,"Hännen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26271,399374,"CHE","National Inventory",2011,"For storage only",37,"Chessler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26272,399375,"CHE","National Inventory",2011,"For storage only",37,"Chilchstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26273,399376,"CHE","National Inventory",2011,"For storage only",37,"Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26274,399377,"CHE","National Inventory",2011,"For storage only",37,"Rüdle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26275,399378,"CHE","National Inventory",2011,"For storage only",37,"Rüdlehöf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26276,399379,"CHE","National Inventory",2011,"For storage only",37,"Acheregg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26277,399380,"CHE","National Inventory",2011,"For storage only",37,"Pilgerhöf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26278,399381,"CHE","National Inventory",2011,"For storage only",37,"Hellmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26279,399382,"CHE","National Inventory",2011,"For storage only",37,"Homberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26280,399383,"CHE","National Inventory",2011,"For storage only",37,"Chatzenstrick","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26281,399384,"CHE","National Inventory",2011,"For storage only",37,"Eggenrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26282,399385,"CHE","National Inventory",2011,"For storage only",37,"Lindebode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26283,399386,"CHE","National Inventory",2011,"For storage only",37,"Platten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26284,399387,"CHE","National Inventory",2011,"For storage only",37,"Strihe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26285,399388,"CHE","National Inventory",2011,"For storage only",37,"Ufem Rain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26286,399389,"CHE","National Inventory",2011,"For storage only",37,"Eichlenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26287,399390,"CHE","National Inventory",2011,"For storage only",37,"Hundruggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26288,399391,"CHE","National Inventory",2011,"For storage only",37,"Tannenhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26289,399392,"CHE","National Inventory",2011,"For storage only",37,"Chessler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26290,399393,"CHE","National Inventory",2011,"For storage only",37,"Laucheren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26291,399394,"CHE","National Inventory",2011,"For storage only",37,"Klewenstock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26292,399395,"CHE","National Inventory",2011,"For storage only",37,"Bachtalen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26293,399396,"CHE","National Inventory",2011,"For storage only",37,"Bonsbrig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26294,399397,"CHE","National Inventory",2011,"For storage only",37,"Stuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26295,399398,"CHE","National Inventory",2011,"For storage only",37,"Bränte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26296,399399,"CHE","National Inventory",2011,"For storage only",37,"Buechen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26297,399400,"CHE","National Inventory",2011,"For storage only",37,"Heiligchrüz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26298,399401,"CHE","National Inventory",2011,"For storage only",37,"Würzenstock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26299,399402,"CHE","National Inventory",2011,"For storage only",37,"Unterstetten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26300,399403,"CHE","National Inventory",2011,"For storage only",37,"Chestenenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26301,399404,"CHE","National Inventory",2011,"For storage only",37,"Dossen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26302,399405,"CHE","National Inventory",2011,"For storage only",37,"Träbel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26303,399406,"CHE","National Inventory",2011,"For storage only",37,"Gäbetswil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26304,399407,"CHE","National Inventory",2011,"For storage only",37,"Chriesbaumberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26305,399408,"CHE","National Inventory",2011,"For storage only",37,"Mülistutz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26306,399409,"CHE","National Inventory",2011,"For storage only",37,"Mittel Grämse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26307,399410,"CHE","National Inventory",2011,"For storage only",37,"Mülistutz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26308,399411,"CHE","National Inventory",2011,"For storage only",37,"Märis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26309,399412,"CHE","National Inventory",2011,"For storage only",37,"Stanserhorn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26310,399413,"CHE","National Inventory",2011,"For storage only",37,"Laui","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26311,399414,"CHE","National Inventory",2011,"For storage only",37,"Farneren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26312,399415,"CHE","National Inventory",2011,"For storage only",37,"Chäslistetten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26313,399416,"CHE","National Inventory",2011,"For storage only",37,"Lang Hütte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26314,399417,"CHE","National Inventory",2011,"For storage only",37,"Hurbelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26315,399418,"CHE","National Inventory",2011,"For storage only",37,"Chragen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26316,399419,"CHE","National Inventory",2011,"For storage only",37,"Tällen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26317,399420,"CHE","National Inventory",2011,"For storage only",37,"Ober Gummen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26318,399421,"CHE","National Inventory",2011,"For storage only",37,"Bodenhütten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26319,399422,"CHE","National Inventory",2011,"For storage only",37,"Böli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26320,399423,"CHE","National Inventory",2011,"For storage only",37,"Chlus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26321,399424,"CHE","National Inventory",2011,"For storage only",37,"Unter Wisstannen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26322,399425,"CHE","National Inventory",2011,"For storage only",37,"Ober Wisstannen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26323,399426,"CHE","National Inventory",2011,"For storage only",37,"Achs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26324,399427,"CHE","National Inventory",2011,"For storage only",37,"Napf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26325,399428,"CHE","National Inventory",2011,"For storage only",37,"Napf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26326,399429,"CHE","National Inventory",2011,"For storage only",37,"Wigerts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26327,399430,"CHE","National Inventory",2011,"For storage only",37,"Plütschgen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26328,399431,"CHE","National Inventory",2011,"For storage only",37,"Brüggenhalten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26329,399432,"CHE","National Inventory",2011,"For storage only",37,"Gigi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26330,399433,"CHE","National Inventory",2011,"For storage only",37,"Gibel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26331,399434,"CHE","National Inventory",2011,"For storage only",37,"Graggen-Rächtli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26332,399435,"CHE","National Inventory",2011,"For storage only",37,"Weidli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26333,399436,"CHE","National Inventory",2011,"For storage only",37,"Geren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26334,399437,"CHE","National Inventory",2011,"For storage only",37,"Widi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26335,399438,"CHE","National Inventory",2011,"For storage only",37,"Rüppi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26336,399439,"CHE","National Inventory",2011,"For storage only",37,"Am Hubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26337,399440,"CHE","National Inventory",2011,"For storage only",37,"Schreielberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26338,399441,"CHE","National Inventory",2011,"For storage only",37,"Bärenloch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26339,399442,"CHE","National Inventory",2011,"For storage only",37,"Heuwet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26340,399443,"CHE","National Inventory",2011,"For storage only",37,"Ronengrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26341,399444,"CHE","National Inventory",2011,"For storage only",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26342,399445,"CHE","National Inventory",2011,"For storage only",37,"Lochgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26343,399446,"CHE","National Inventory",2011,"For storage only",37,"Arvigrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26344,399447,"CHE","National Inventory",2011,"For storage only",37,"Burstegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26345,399448,"CHE","National Inventory",2011,"For storage only",37,"Chumi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26346,399449,"CHE","National Inventory",2011,"For storage only",37,"Metzli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26347,399450,"CHE","National Inventory",2011,"For storage only",37,"Mäggisserenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26348,399451,"CHE","National Inventory",2011,"For storage only",37,"Spissliegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26349,399452,"CHE","National Inventory",2011,"For storage only",37,"Granti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26350,399453,"CHE","National Inventory",2011,"For storage only",37,"Chratzeregrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26351,399454,"CHE","National Inventory",2011,"For storage only",37,"Meise","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26352,399455,"CHE","National Inventory",2011,"For storage only",37,"Halte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26353,399456,"CHE","National Inventory",2011,"For storage only",37,"Wildi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26354,399457,"CHE","National Inventory",2011,"For storage only",37,"La Belle Etoile","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26355,399458,"CHE","National Inventory",2011,"For storage only",37,"Ryschere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26356,399459,"CHE","National Inventory",2011,"For storage only",37,"Waachli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26357,399460,"CHE","National Inventory",2011,"For storage only",37,"Oberarni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26358,399461,"CHE","National Inventory",2011,"For storage only",37,"Gummenalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26359,399462,"CHE","National Inventory",2011,"For storage only",37,"Brüch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26360,399463,"CHE","National Inventory",2011,"For storage only",37,"Thierachern-Allmid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26361,399464,"CHE","National Inventory",2011,"For storage only",37,"Chratzi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26362,399465,"CHE","National Inventory",2011,"For storage only",37,"Reidige","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26363,399466,"CHE","National Inventory",2011,"For storage only",37,"Mittelweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26364,399467,"CHE","National Inventory",2011,"For storage only",37,"Albristhubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26365,399468,"CHE","National Inventory",2011,"For storage only",37,"Obersteinberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26366,399469,"CHE","National Inventory",2011,"For storage only",37,"Biglenalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26367,399470,"CHE","National Inventory",2011,"For storage only",37,"Bunderspitz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26368,399471,"CHE","National Inventory",2011,"For storage only",37,"Le Gibet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26369,399472,"CHE","National Inventory",2011,"For storage only",37,"Mosbielen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26370,399473,"CHE","National Inventory",2011,"For storage only",37,"Reckholderli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26371,399474,"CHE","National Inventory",2011,"For storage only",37,"Färmelmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26372,399475,"CHE","National Inventory",2011,"For storage only",37,"Schrickmatten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26373,399476,"CHE","National Inventory",2011,"For storage only",37,"Egritz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26374,399477,"CHE","National Inventory",2011,"For storage only",37,"Laubwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26375,399478,"CHE","National Inventory",2011,"For storage only",37,"Bälweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26376,399479,"CHE","National Inventory",2011,"For storage only",37,"Hintere Walop","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26377,399480,"CHE","National Inventory",2011,"For storage only",37,"Zind","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26378,399481,"CHE","National Inventory",2011,"For storage only",37,"Underste Gurbs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26379,399482,"CHE","National Inventory",2011,"For storage only",37,"Aabeberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26380,399483,"CHE","National Inventory",2011,"For storage only",37,"Räbersegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26381,399484,"CHE","National Inventory",2011,"For storage only",37,"Galm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26382,399485,"CHE","National Inventory",2011,"For storage only",37,"Pfaffebergmäder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26383,399486,"CHE","National Inventory",2011,"For storage only",37,"Im Aabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26384,399487,"CHE","National Inventory",2011,"For storage only",37,"Grümberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26385,399488,"CHE","National Inventory",2011,"For storage only",37,"Ronefeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26386,399489,"CHE","National Inventory",2011,"For storage only",37,"Chuelouenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26387,399490,"CHE","National Inventory",2011,"For storage only",37,"Pavillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26388,399491,"CHE","National Inventory",2011,"For storage only",37,"Ängistafel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26389,399492,"CHE","National Inventory",2011,"For storage only",37,"Tschäggere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26390,399493,"CHE","National Inventory",2011,"For storage only",37,"Fangweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26391,399494,"CHE","National Inventory",2011,"For storage only",37,"Riggis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26392,399495,"CHE","National Inventory",2011,"For storage only",37,"Weng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26393,399496,"CHE","National Inventory",2011,"For storage only",37,"Linterbärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26394,399497,"CHE","National Inventory",2011,"For storage only",37,"Blankenburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26395,399498,"CHE","National Inventory",2011,"For storage only",37,"Geeristei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26396,399499,"CHE","National Inventory",2011,"For storage only",37,"Bächenallmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26397,399500,"CHE","National Inventory",2011,"For storage only",37,"Meniggrund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26398,399501,"CHE","National Inventory",2011,"For storage only",37,"Stägeschopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26399,399502,"CHE","National Inventory",2011,"For storage only",37,"Wittere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26400,399503,"CHE","National Inventory",2011,"For storage only",37,"Halte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26401,399504,"CHE","National Inventory",2011,"For storage only",37,"Bort","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26402,399505,"CHE","National Inventory",2011,"For storage only",37,"Schwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26403,399506,"CHE","National Inventory",2011,"For storage only",37,"Arisberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26404,399507,"CHE","National Inventory",2011,"For storage only",37,"Tüüchtelwengli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26405,399508,"CHE","National Inventory",2011,"For storage only",37,"In de Brüche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26406,399509,"CHE","National Inventory",2011,"For storage only",37,"Allmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26407,399510,"CHE","National Inventory",2011,"For storage only",37,"Leitereweideni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26408,399511,"CHE","National Inventory",2011,"For storage only",37,"Lineboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26409,399512,"CHE","National Inventory",2011,"For storage only",37,"Eggmittelberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26410,399513,"CHE","National Inventory",2011,"For storage only",37,"Gugger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26411,399514,"CHE","National Inventory",2011,"For storage only",37,"Gläckmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26412,399515,"CHE","National Inventory",2011,"For storage only",37,"Wenden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26413,399516,"CHE","National Inventory",2011,"For storage only",37,"Muri","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26414,399517,"CHE","National Inventory",2011,"For storage only",37,"Nüjeberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26415,399518,"CHE","National Inventory",2011,"For storage only",37,"Unders Gälmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26416,399519,"CHE","National Inventory",2011,"For storage only",37,"Unterst Geberts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26417,399520,"CHE","National Inventory",2011,"For storage only",37,"Obri Ammerta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26418,399521,"CHE","National Inventory",2011,"For storage only",37,"Rieder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26419,399522,"CHE","National Inventory",2011,"For storage only",37,"Betelbergmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26420,399523,"CHE","National Inventory",2011,"For storage only",37,"Wolfsgruebeweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26421,399524,"CHE","National Inventory",2011,"For storage only",37,"Sengg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26422,399525,"CHE","National Inventory",2011,"For storage only",37,"Houete","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26423,399526,"CHE","National Inventory",2011,"For storage only",37,"Tannersgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26424,399527,"CHE","National Inventory",2011,"For storage only",37,"Vorderer Rossboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26425,399528,"CHE","National Inventory",2011,"For storage only",37,"Wanne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26426,399529,"CHE","National Inventory",2011,"For storage only",37,"Bielenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26427,399530,"CHE","National Inventory",2011,"For storage only",37,"Albristmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26428,399531,"CHE","National Inventory",2011,"For storage only",37,"Otteremeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26429,399532,"CHE","National Inventory",2011,"For storage only",37,"Schauenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26430,399533,"CHE","National Inventory",2011,"For storage only",37,"Chöldrist","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26431,399534,"CHE","National Inventory",2011,"For storage only",37,"Bärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26432,399535,"CHE","National Inventory",2011,"For storage only",37,"Loueneweidli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26433,399536,"CHE","National Inventory",2011,"For storage only",37,"Innerrüteni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26434,399537,"CHE","National Inventory",2011,"For storage only",37,"Ober Alpeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26435,399538,"CHE","National Inventory",2011,"For storage only",37,"Teller","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26436,399539,"CHE","National Inventory",2011,"For storage only",37,"Scharte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26437,399540,"CHE","National Inventory",2011,"For storage only",37,"Stafel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26438,399541,"CHE","National Inventory",2011,"For storage only",37,"Gütsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26439,399542,"CHE","National Inventory",2011,"For storage only",37,"Albristmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26440,399543,"CHE","National Inventory",2011,"For storage only",37,"Sali","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26441,399544,"CHE","National Inventory",2011,"For storage only",37,"Chanderbrüggallmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26442,399545,"CHE","National Inventory",2011,"For storage only",37,"Leuggis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26443,399546,"CHE","National Inventory",2011,"For storage only",37,"Zingeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26444,399547,"CHE","National Inventory",2011,"For storage only",37,"Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26445,399548,"CHE","National Inventory",2011,"For storage only",37,"Spicherallmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26446,399549,"CHE","National Inventory",2011,"For storage only",37,"Lusseweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26447,399550,"CHE","National Inventory",2011,"For storage only",37,"Linterbärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26448,399551,"CHE","National Inventory",2011,"For storage only",37,"Buechistock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26449,399552,"CHE","National Inventory",2011,"For storage only",37,"Schwanderbärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26450,399553,"CHE","National Inventory",2011,"For storage only",37,"Schwendi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26451,399554,"CHE","National Inventory",2011,"For storage only",37,"Senggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26452,399555,"CHE","National Inventory",2011,"For storage only",37,"Farniweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26453,399556,"CHE","National Inventory",2011,"For storage only",37,"Steinacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26454,399557,"CHE","National Inventory",2011,"For storage only",37,"Im Stutz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26455,399558,"CHE","National Inventory",2011,"For storage only",37,"Rosenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26456,399559,"CHE","National Inventory",2011,"For storage only",37,"Undri Hagweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26457,399560,"CHE","National Inventory",2011,"For storage only",37,"Sytiweidleni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26458,399561,"CHE","National Inventory",2011,"For storage only",37,"Hüethütte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26459,399562,"CHE","National Inventory",2011,"For storage only",37,"Stäga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26460,399563,"CHE","National Inventory",2011,"For storage only",37,"Gstepf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26461,399564,"CHE","National Inventory",2011,"For storage only",37,"Zälg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26462,399565,"CHE","National Inventory",2011,"For storage only",37,"Egglimäder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26463,399566,"CHE","National Inventory",2011,"For storage only",37,"Hohstand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26464,399567,"CHE","National Inventory",2011,"For storage only",37,"Eigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26465,399568,"CHE","National Inventory",2011,"For storage only",37,"Küenzeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26466,399569,"CHE","National Inventory",2011,"For storage only",37,"Rosswang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26467,399570,"CHE","National Inventory",2011,"For storage only",37,"Leesyten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26468,399571,"CHE","National Inventory",2011,"For storage only",37,"Schwarzenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26469,399572,"CHE","National Inventory",2011,"For storage only",37,"Stampach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26470,399573,"CHE","National Inventory",2011,"For storage only",37,"Uf de Höfte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26471,399574,"CHE","National Inventory",2011,"For storage only",37,"Runtschi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26472,399575,"CHE","National Inventory",2011,"For storage only",37,"Preech","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26473,399576,"CHE","National Inventory",2011,"For storage only",37,"Äbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26474,399577,"CHE","National Inventory",2011,"For storage only",37,"Am Stalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26475,399578,"CHE","National Inventory",2011,"For storage only",37,"Unterer Ofenbielen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26476,399579,"CHE","National Inventory",2011,"For storage only",37,"Oberbürgle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26477,399580,"CHE","National Inventory",2011,"For storage only",37,"In de Weidene","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26478,399581,"CHE","National Inventory",2011,"For storage only",37,"Reckenthal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26479,399582,"CHE","National Inventory",2011,"For storage only",37,"Staldiberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26480,399583,"CHE","National Inventory",2011,"For storage only",37,"Raben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26481,399584,"CHE","National Inventory",2011,"For storage only",37,"Rohr","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26482,399585,"CHE","National Inventory",2011,"For storage only",37,"Stuel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26483,399586,"CHE","National Inventory",2011,"For storage only",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26484,399587,"CHE","National Inventory",2011,"For storage only",37,"Stalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26485,399588,"CHE","National Inventory",2011,"For storage only",37,"Gwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26486,399589,"CHE","National Inventory",2011,"For storage only",37,"Ufem Dirr","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26487,399590,"CHE","National Inventory",2011,"For storage only",37,"Adelrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26488,399591,"CHE","National Inventory",2011,"For storage only",37,"Ausser Kandergrund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26489,399592,"CHE","National Inventory",2011,"For storage only",37,"Am obere Laseberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26490,399593,"CHE","National Inventory",2011,"For storage only",37,"Hirtplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26491,399594,"CHE","National Inventory",2011,"For storage only",37,"Tripfi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26492,399595,"CHE","National Inventory",2011,"For storage only",37,"Vorsess","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26493,399596,"CHE","National Inventory",2011,"For storage only",37,"Leewald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26494,399597,"CHE","National Inventory",2011,"For storage only",37,"Riedli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26495,399598,"CHE","National Inventory",2011,"For storage only",37,"Ächerli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26496,399599,"CHE","National Inventory",2011,"For storage only",37,"Enetgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26497,399600,"CHE","National Inventory",2011,"For storage only",37,"Chros","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26498,399601,"CHE","National Inventory",2011,"For storage only",37,"Raufligrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26499,399602,"CHE","National Inventory",2011,"For storage only",37,"Sattelweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26500,399603,"CHE","National Inventory",2011,"For storage only",37,"Büel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26501,399604,"CHE","National Inventory",2011,"For storage only",37,"Nessligen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26502,399605,"CHE","National Inventory",2011,"For storage only",37,"Vorsess","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26503,399606,"CHE","National Inventory",2011,"For storage only",37,"Vorder Stäckenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26504,399607,"CHE","National Inventory",2011,"For storage only",37,"Obermad","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26505,399608,"CHE","National Inventory",2011,"For storage only",37,"Chalberstall","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26506,399609,"CHE","National Inventory",2011,"For storage only",37,"Rond Bois","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26507,399610,"CHE","National Inventory",2011,"For storage only",37,"Stöckmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26508,399611,"CHE","National Inventory",2011,"For storage only",37,"Staldi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26509,399612,"CHE","National Inventory",2011,"For storage only",37,"Obwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26510,399613,"CHE","National Inventory",2011,"For storage only",37,"Geissholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26511,399614,"CHE","National Inventory",2011,"For storage only",37,"Holestei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26512,399615,"CHE","National Inventory",2011,"For storage only",37,"Gwiggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26513,399616,"CHE","National Inventory",2011,"For storage only",37,"Im Moos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26514,399617,"CHE","National Inventory",2011,"For storage only",37,"Underbürgle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26515,399618,"CHE","National Inventory",2011,"For storage only",37,"Riedli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26516,399619,"CHE","National Inventory",2011,"For storage only",37,"Weidboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26517,399620,"CHE","National Inventory",2011,"For storage only",37,"Schwanderbärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26518,399621,"CHE","National Inventory",2011,"For storage only",37,"Wiler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26519,399622,"CHE","National Inventory",2011,"For storage only",37,"Ligg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26520,399623,"CHE","National Inventory",2011,"For storage only",37,"Bärenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26521,399624,"CHE","National Inventory",2011,"For storage only",37,"Hostetten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26522,399625,"CHE","National Inventory",2011,"For storage only",37,"Ruine Festi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26523,399626,"CHE","National Inventory",2011,"For storage only",37,"Chasseral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26524,399627,"CHE","National Inventory",2011,"For storage only",37,"Les Noisetiers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26525,399628,"CHE","National Inventory",2011,"For storage only",37,"Petit Chasseral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26526,399629,"CHE","National Inventory",2011,"For storage only",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26527,399630,"CHE","National Inventory",2011,"For storage only",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26528,399631,"CHE","National Inventory",2011,"For storage only",37,"Combe Gaumé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26529,399632,"CHE","National Inventory",2011,"For storage only",37,"Les Voigières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26530,399633,"CHE","National Inventory",2011,"For storage only",37,"Pré la Patte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26531,399634,"CHE","National Inventory",2011,"For storage only",37,"Le Piémont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26532,399635,"CHE","National Inventory",2011,"For storage only",37,"Staldeweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26533,399636,"CHE","National Inventory",2011,"For storage only",37,"Pâturage des Esserts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26534,399637,"CHE","National Inventory",2011,"For storage only",37,"Le Brahon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26535,399638,"CHE","National Inventory",2011,"For storage only",37,"La Citerne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26536,399639,"CHE","National Inventory",2011,"For storage only",37,"Grencheberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26537,399640,"CHE","National Inventory",2011,"For storage only",37,"Spiggeweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26538,399641,"CHE","National Inventory",2011,"For storage only",37,"Horemäder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26539,399642,"CHE","National Inventory",2011,"For storage only",37,"Les Grands Champs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26540,399643,"CHE","National Inventory",2011,"For storage only",37,"Walderalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26541,399644,"CHE","National Inventory",2011,"For storage only",37,"Les Tayes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26542,399645,"CHE","National Inventory",2011,"For storage only",37,"Le Crât","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26543,399646,"CHE","National Inventory",2011,"For storage only",37,"Pré la Patte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26544,399647,"CHE","National Inventory",2011,"For storage only",37,"Bälmetsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26545,399648,"CHE","National Inventory",2011,"For storage only",37,"Métairie de St-Jean","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26546,399649,"CHE","National Inventory",2011,"For storage only",37,"Buechmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26547,399650,"CHE","National Inventory",2011,"For storage only",37,"Eggebärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26548,399651,"CHE","National Inventory",2011,"For storage only",37,"Schattwimeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26549,399652,"CHE","National Inventory",2011,"For storage only",37,"I de Wenge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26550,399653,"CHE","National Inventory",2011,"For storage only",37,"Eggweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26551,399654,"CHE","National Inventory",2011,"For storage only",37,"Petit Van","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26552,399655,"CHE","National Inventory",2011,"For storage only",37,"La Baruche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26553,399656,"CHE","National Inventory",2011,"For storage only",37,"Schufli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26554,399657,"CHE","National Inventory",2011,"For storage only",37,"Esserts vers Moutier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26555,399658,"CHE","National Inventory",2011,"For storage only",37,"Ahoreweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26556,399659,"CHE","National Inventory",2011,"For storage only",37,"Les Lavettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26557,399660,"CHE","National Inventory",2011,"For storage only",37,"Ochsewang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26558,399661,"CHE","National Inventory",2011,"For storage only",37,"Le Van","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26559,399662,"CHE","National Inventory",2011,"For storage only",37,"Rüteli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26560,399663,"CHE","National Inventory",2011,"For storage only",37,"Ademberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26561,399664,"CHE","National Inventory",2011,"For storage only",37,"Belprahon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26562,399665,"CHE","National Inventory",2011,"For storage only",37,"Hoger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26563,399666,"CHE","National Inventory",2011,"For storage only",37,"Chli Rohrgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26564,399667,"CHE","National Inventory",2011,"For storage only",37,"Schattwimeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26565,399668,"CHE","National Inventory",2011,"For storage only",37,"Äschholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26566,399669,"CHE","National Inventory",2011,"For storage only",37,"Vord. Hofbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26567,399670,"CHE","National Inventory",2011,"For storage only",37,"Geissbach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26568,399671,"CHE","National Inventory",2011,"For storage only",37,"Winteregg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26569,399672,"CHE","National Inventory",2011,"For storage only",37,"Le Grimm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26570,399673,"CHE","National Inventory",2011,"For storage only",37,"Brenggenmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26571,399674,"CHE","National Inventory",2011,"For storage only",37,"Louweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26572,399675,"CHE","National Inventory",2011,"For storage only",37,"Schöneberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26573,399676,"CHE","National Inventory",2011,"For storage only",37,"Imihubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26574,399677,"CHE","National Inventory",2011,"For storage only",37,"Brenggenmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26575,399678,"CHE","National Inventory",2011,"For storage only",37,"Heuberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26576,399679,"CHE","National Inventory",2011,"For storage only",37,"Sillere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26577,399680,"CHE","National Inventory",2011,"For storage only",37,"Chli Rohrgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26578,399681,"CHE","National Inventory",2011,"For storage only",37,"Tierpark","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26579,399682,"CHE","National Inventory",2011,"For storage only",37,"Chirschbäumliweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26580,399683,"CHE","National Inventory",2011,"For storage only",37,"Le Grimm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26581,399684,"CHE","National Inventory",2011,"For storage only",37,"Le Pas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26582,399685,"CHE","National Inventory",2011,"For storage only",37,"Aargauerstalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26583,399686,"CHE","National Inventory",2011,"For storage only",37,"Chrüzflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26584,399687,"CHE","National Inventory",2011,"For storage only",37,"Tierpark","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26585,399688,"CHE","National Inventory",2011,"For storage only",37,"Brändlisweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26586,399689,"CHE","National Inventory",2011,"For storage only",37,"Laupenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26587,399690,"CHE","National Inventory",2011,"For storage only",37,"Gampelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26588,399691,"CHE","National Inventory",2011,"For storage only",37,"Pâturage de Sagne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26589,399692,"CHE","National Inventory",2011,"For storage only",37,"Gümmenenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26590,399693,"CHE","National Inventory",2011,"For storage only",37,"Bir länge Stude","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26591,399694,"CHE","National Inventory",2011,"For storage only",37,"Golsenrainacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26592,399695,"CHE","National Inventory",2011,"For storage only",37,"Blatteree","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26593,399696,"CHE","National Inventory",2011,"For storage only",37,"Laupenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26594,399697,"CHE","National Inventory",2011,"For storage only",37,"Müligrien","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26595,399698,"CHE","National Inventory",2011,"For storage only",37,"Blatteree","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26596,399699,"CHE","National Inventory",2011,"For storage only",37,"Unteralp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26597,399700,"CHE","National Inventory",2011,"For storage only",37,"Schafberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26598,399701,"CHE","National Inventory",2011,"For storage only",37,"Im Wengen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26599,399702,"CHE","National Inventory",2011,"For storage only",37,"Alpligen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26600,399703,"CHE","National Inventory",2011,"For storage only",37,"Lüpersberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26601,399704,"CHE","National Inventory",2011,"For storage only",37,"Spicherberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26602,399705,"CHE","National Inventory",2011,"For storage only",37,"Schopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26603,399706,"CHE","National Inventory",2011,"For storage only",37,"Biglera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26604,399707,"CHE","National Inventory",2011,"For storage only",37,"Lusbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26605,399708,"CHE","National Inventory",2011,"For storage only",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26606,399709,"CHE","National Inventory",2011,"For storage only",37,"Unterniesen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26607,399710,"CHE","National Inventory",2011,"For storage only",37,"Undrem Tritt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26608,399711,"CHE","National Inventory",2011,"For storage only",37,"Chlus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26609,399712,"CHE","National Inventory",2011,"For storage only",37,"Champ Matthieu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26610,399713,"CHE","National Inventory",2011,"For storage only",37,"Louweli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26611,399714,"CHE","National Inventory",2011,"For storage only",37,"Sandey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26612,399715,"CHE","National Inventory",2011,"For storage only",37,"Ladholzgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26613,399716,"CHE","National Inventory",2011,"For storage only",37,"Gümmenenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26614,399717,"CHE","National Inventory",2011,"For storage only",37,"Müllersbode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26615,399718,"CHE","National Inventory",2011,"For storage only",37,"Tussweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26616,399719,"CHE","National Inventory",2011,"For storage only",37,"Husallmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26617,399720,"CHE","National Inventory",2011,"For storage only",37,"Spissliegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26618,399721,"CHE","National Inventory",2011,"For storage only",37,"Napf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26619,399722,"CHE","National Inventory",2011,"For storage only",37,"Schwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26620,399723,"CHE","National Inventory",2011,"For storage only",37,"Schlossweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26621,399724,"CHE","National Inventory",2011,"For storage only",37,"Schälmegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26622,399725,"CHE","National Inventory",2011,"For storage only",37,"I de Huble","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26623,399726,"CHE","National Inventory",2011,"For storage only",37,"Oberst Geberts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26624,399727,"CHE","National Inventory",2011,"For storage only",37,"Ifängi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26625,399728,"CHE","National Inventory",2011,"For storage only",37,"Büelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26626,399729,"CHE","National Inventory",2011,"For storage only",37,"Rotihalten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26627,399730,"CHE","National Inventory",2011,"For storage only",37,"Hagnau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26628,399731,"CHE","National Inventory",2011,"For storage only",37,"Chasseral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26629,399732,"CHE","National Inventory",2011,"For storage only",37,"Cht du Grand Essert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26630,399733,"CHE","National Inventory",2011,"For storage only",37,"Pièce à Neveu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26631,399734,"CHE","National Inventory",2011,"For storage only",37,"Pièce aux Reymond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26632,399735,"CHE","National Inventory",2011,"For storage only",37,"Pièce aux Reymond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26633,399736,"CHE","National Inventory",2011,"For storage only",37,"Grands Crosets Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26634,399737,"CHE","National Inventory",2011,"For storage only",37,"La Perrause","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26635,399738,"CHE","National Inventory",2011,"For storage only",37,"Petites Chaumilles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26636,399739,"CHE","National Inventory",2011,"For storage only",37,"Rossfallen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26637,399740,"CHE","National Inventory",2011,"For storage only",37,"Sèche des Amburnex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26638,399741,"CHE","National Inventory",2011,"For storage only",37,"La Baronne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26639,399742,"CHE","National Inventory",2011,"For storage only",37,"Les Amburnex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26640,399743,"CHE","National Inventory",2011,"For storage only",37,"Pré aux Veaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26641,399744,"CHE","National Inventory",2011,"For storage only",37,"Les Begnines","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26642,399745,"CHE","National Inventory",2011,"For storage only",37,"Mont Sâla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26643,399746,"CHE","National Inventory",2011,"For storage only",37,"La Bullatonne Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26644,399747,"CHE","National Inventory",2011,"For storage only",37,"La Pidouse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26645,399748,"CHE","National Inventory",2011,"For storage only",37,"La Première","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26646,399749,"CHE","National Inventory",2011,"For storage only",37,"Les Preisettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26647,399750,"CHE","National Inventory",2011,"For storage only",37,"Chaux Commun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26648,399751,"CHE","National Inventory",2011,"For storage only",37,"Col des Etroits","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26649,399752,"CHE","National Inventory",2011,"For storage only",37,"Les Illars","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26650,399753,"CHE","National Inventory",2011,"For storage only",37,"Les Etroits","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26651,399754,"CHE","National Inventory",2011,"For storage only",37,"Champ de Gryonne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26652,399755,"CHE","National Inventory",2011,"For storage only",37,"Le Chasseron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26653,399756,"CHE","National Inventory",2011,"For storage only",37,"Crêt des Gouilles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26654,399757,"CHE","National Inventory",2011,"For storage only",37,"Le Botsa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26655,399758,"CHE","National Inventory",2011,"For storage only",37,"Les Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26656,399759,"CHE","National Inventory",2011,"For storage only",37,"Montérel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26657,399760,"CHE","National Inventory",2011,"For storage only",37,"Les Larzettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26658,399761,"CHE","National Inventory",2011,"For storage only",37,"Chaudet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26659,399762,"CHE","National Inventory",2011,"For storage only",37,"La Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26660,399763,"CHE","National Inventory",2011,"For storage only",37,"Mont de la Maya","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26661,399764,"CHE","National Inventory",2011,"For storage only",37,"Combe du Luissel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26662,399765,"CHE","National Inventory",2011,"For storage only",37,"La Marnèche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26663,399766,"CHE","National Inventory",2011,"For storage only",37,"Petites Roches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26664,399767,"CHE","National Inventory",2011,"For storage only",37,"Chaudet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26665,399768,"CHE","National Inventory",2011,"For storage only",37,"Longevaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26666,399769,"CHE","National Inventory",2011,"For storage only",37,"Orgevaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26667,399770,"CHE","National Inventory",2011,"For storage only",37,"L'Ecuale","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26668,399771,"CHE","National Inventory",2011,"For storage only",37,"Chaux Ronde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26669,399772,"CHE","National Inventory",2011,"For storage only",37,"Marche de Retaud","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26670,399773,"CHE","National Inventory",2011,"For storage only",37,"Marnex d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26671,399774,"CHE","National Inventory",2011,"For storage only",37,"Les Cernets Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26672,399775,"CHE","National Inventory",2011,"For storage only",37,"Dru aux Boyards","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26673,399776,"CHE","National Inventory",2011,"For storage only",37,"La Calame","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26674,399777,"CHE","National Inventory",2011,"For storage only",37,"Le Vey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26675,399778,"CHE","National Inventory",2011,"For storage only",37,"Le Cochet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26676,399779,"CHE","National Inventory",2011,"For storage only",37,"Mayen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26677,399780,"CHE","National Inventory",2011,"For storage only",37,"L'Abert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26678,399781,"CHE","National Inventory",2011,"For storage only",37,"Ste-Croix","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26679,399782,"CHE","National Inventory",2011,"For storage only",37,"Arten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26680,399783,"CHE","National Inventory",2011,"For storage only",37,"Euzanne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26681,399784,"CHE","National Inventory",2011,"For storage only",37,"Joux d'Aï","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26682,399785,"CHE","National Inventory",2011,"For storage only",37,"La Motte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26683,399786,"CHE","National Inventory",2011,"For storage only",37,"Sonna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26684,399787,"CHE","National Inventory",2011,"For storage only",37,"Rochers de Naye","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26685,399788,"CHE","National Inventory",2011,"For storage only",37,"Planachaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26686,399789,"CHE","National Inventory",2011,"For storage only",37,"Planex Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26687,399790,"CHE","National Inventory",2011,"For storage only",37,"Rougemont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26688,399791,"CHE","National Inventory",2011,"For storage only",37,"Les Fenils","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26689,399792,"CHE","National Inventory",2011,"For storage only",37,"Dent de Corjon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26690,399793,"CHE","National Inventory",2011,"For storage only",37,"Derrière Forcle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26691,399794,"CHE","National Inventory",2011,"For storage only",37,"Paray Dorénaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26692,399795,"CHE","National Inventory",2011,"For storage only",37,"Mont Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26693,399796,"CHE","National Inventory",2011,"For storage only",37,"Le Linderrey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26694,399797,"CHE","National Inventory",2011,"For storage only",37,"Le Lévanchy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26695,399798,"CHE","National Inventory",2011,"For storage only",37,"Les Planards","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26696,399799,"CHE","National Inventory",2011,"For storage only",37,"Prélan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26697,399800,"CHE","National Inventory",2011,"For storage only",37,"Ruble","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26698,399801,"CHE","National Inventory",2011,"For storage only",37,"Sassalas d'en Bas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26699,399802,"CHE","National Inventory",2011,"For storage only",37,"Le Chalotet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26700,399803,"CHE","National Inventory",2011,"For storage only",37,"L'Orgeolet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26701,399804,"CHE","National Inventory",2011,"For storage only",37,"Les Chenolettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26702,399805,"CHE","National Inventory",2011,"For storage only",37,"Dent des Bimis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26703,399806,"CHE","National Inventory",2011,"For storage only",37,"La Videman Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26704,399807,"CHE","National Inventory",2011,"For storage only",37,"Les Rayes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26705,399808,"CHE","National Inventory",2011,"For storage only",37,"La Chanette d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26706,399809,"CHE","National Inventory",2011,"For storage only",37,"Veyges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26707,399810,"CHE","National Inventory",2011,"For storage only",37,"La Boule de Gomme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26708,399811,"CHE","National Inventory",2011,"For storage only",37,"La Forcla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26709,399812,"CHE","National Inventory",2011,"For storage only",37,"L'Etivaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26710,399813,"CHE","National Inventory",2011,"For storage only",37,"Mont Derrière","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26711,399814,"CHE","National Inventory",2011,"For storage only",37,"Sous Jable","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26712,399815,"CHE","National Inventory",2011,"For storage only",37,"Les Joux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26713,399816,"CHE","National Inventory",2011,"For storage only",37,"Les Combettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26714,399817,"CHE","National Inventory",2011,"For storage only",37,"Petites Sauges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26715,399818,"CHE","National Inventory",2011,"For storage only",37,"Vers Cort","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26716,399819,"CHE","National Inventory",2011,"For storage only",37,"Le Pendant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26717,399820,"CHE","National Inventory",2011,"For storage only",37,"Sur Pra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26718,399821,"CHE","National Inventory",2011,"For storage only",37,"La Laissy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26719,399822,"CHE","National Inventory",2011,"For storage only",37,"La Randonnaire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26720,399823,"CHE","National Inventory",2011,"For storage only",37,"Les Riz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26721,399824,"CHE","National Inventory",2011,"For storage only",37,"Paray Dorénaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26722,399825,"CHE","National Inventory",2011,"For storage only",37,"Plan de l'Etalle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26723,399826,"CHE","National Inventory",2011,"For storage only",37,"Les Posses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26724,399827,"CHE","National Inventory",2011,"For storage only",37,"Combette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26725,399828,"CHE","National Inventory",2011,"For storage only",37,"Petit Jable","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26726,399829,"CHE","National Inventory",2011,"For storage only",37,"Au Devin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26727,399830,"CHE","National Inventory",2011,"For storage only",37,"Plans Claude","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26728,399831,"CHE","National Inventory",2011,"For storage only",37,"Sassalas d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26729,399832,"CHE","National Inventory",2011,"For storage only",37,"Les Ecoumaudaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26730,399833,"CHE","National Inventory",2011,"For storage only",37,"Le Van","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26731,399834,"CHE","National Inventory",2011,"For storage only",37,"Le Praude","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26732,399835,"CHE","National Inventory",2011,"For storage only",37,"La Montagnette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26733,399836,"CHE","National Inventory",2011,"For storage only",37,"Sisounette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26734,399837,"CHE","National Inventory",2011,"For storage only",37,"Crête d'Auliens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26735,399838,"CHE","National Inventory",2011,"For storage only",37,"Paray Charbon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26736,399839,"CHE","National Inventory",2011,"For storage only",37,"Pâquier Martin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26737,399840,"CHE","National Inventory",2011,"For storage only",37,"La Ville","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26738,399841,"CHE","National Inventory",2011,"For storage only",37,"Fin de Juret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26739,399842,"CHE","National Inventory",2011,"For storage only",37,"Grands Craux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26740,399843,"CHE","National Inventory",2011,"For storage only",37,"Les Combes du Milieu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26741,399844,"CHE","National Inventory",2011,"For storage only",37,"La Molaire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26742,399845,"CHE","National Inventory",2011,"For storage only",37,"La Loune","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26743,399846,"CHE","National Inventory",2011,"For storage only",37,"Tête du Lévanchy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26744,399847,"CHE","National Inventory",2011,"For storage only",37,"Pâquier Burnier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26745,399848,"CHE","National Inventory",2011,"For storage only",37,"Vers la Doey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26746,399849,"CHE","National Inventory",2011,"For storage only",37,"Le Boura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26747,399850,"CHE","National Inventory",2011,"For storage only",37,"Le Marais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26748,399851,"CHE","National Inventory",2011,"For storage only",37,"Drapel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26749,399852,"CHE","National Inventory",2011,"For storage only",37,"Les Combettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26750,399853,"CHE","National Inventory",2011,"For storage only",37,"Vuargny Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26751,399854,"CHE","National Inventory",2011,"For storage only",37,"Velard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26752,399855,"CHE","National Inventory",2011,"For storage only",37,"Le Bouet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26753,399856,"CHE","National Inventory",2011,"For storage only",37,"Pra Sautier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26754,399858,"CHE","National Inventory",2011,"For storage only",37,"Les Torneresses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26755,399859,"CHE","National Inventory",2011,"For storage only",37,"Rabou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26756,399860,"CHE","National Inventory",2011,"For storage only",37,"La Pontie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26757,399861,"CHE","National Inventory",2011,"For storage only",37,"La Saussa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26758,399862,"CHE","National Inventory",2011,"For storage only",37,"Les Planards","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26759,399863,"CHE","National Inventory",2011,"For storage only",37,"Entremouille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26760,399864,"CHE","National Inventory",2011,"For storage only",37,"Combe Robert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26761,399865,"CHE","National Inventory",2011,"For storage only",37,"Plan d'Essert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26762,399866,"CHE","National Inventory",2011,"For storage only",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26763,399867,"CHE","National Inventory",2011,"For storage only",37,"Les Chargiaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26764,399868,"CHE","National Inventory",2011,"For storage only",37,"Le Flonzaley","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26765,399869,"CHE","National Inventory",2011,"For storage only",37,"Huémoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26766,399870,"CHE","National Inventory",2011,"For storage only",37,"Genièvre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26767,399871,"CHE","National Inventory",2011,"For storage only",37,"La Combe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26768,399872,"CHE","National Inventory",2011,"For storage only",37,"Gotale","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26769,399873,"CHE","National Inventory",2011,"For storage only",37,"Ponty","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26770,399874,"CHE","National Inventory",2011,"For storage only",37,"Les Afforets","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26771,399875,"CHE","National Inventory",2011,"For storage only",37,"Eslex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26772,399876,"CHE","National Inventory",2011,"For storage only",37,"Crêt à Tavez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26773,399877,"CHE","National Inventory",2011,"For storage only",37,"Ponty","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26774,399878,"CHE","National Inventory",2011,"For storage only",37,"Ober Schwendi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26775,399879,"CHE","National Inventory",2011,"For storage only",37,"Goy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26776,399880,"CHE","National Inventory",2011,"For storage only",37,"Saurin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26777,399881,"CHE","National Inventory",2011,"For storage only",37,"Sur Champagne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26778,399882,"CHE","National Inventory",2011,"For storage only",37,"Mont Tendre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26779,399883,"CHE","National Inventory",2011,"For storage only",37,"La Dôle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26780,399884,"CHE","National Inventory",2011,"For storage only",37,"Brand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26781,399885,"CHE","National Inventory",2011,"For storage only",37,"L'Arzière","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26782,399886,"CHE","National Inventory",2011,"For storage only",37,"Creux d'Enfer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26783,399887,"CHE","National Inventory",2011,"For storage only",37,"Les Râpes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26784,399888,"CHE","National Inventory",2011,"For storage only",37,"Chassagne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26785,399889,"CHE","National Inventory",2011,"For storage only",37,"Pré de l'Haut Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26786,399890,"CHE","National Inventory",2011,"For storage only",37,"Roche Perrause","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26787,399891,"CHE","National Inventory",2011,"For storage only",37,"Le Noirmont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26788,399892,"CHE","National Inventory",2011,"For storage only",37,"Col de Jaman","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26789,399893,"CHE","National Inventory",2011,"For storage only",37,"Pré Magnin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26790,399894,"CHE","National Inventory",2011,"For storage only",37,"Les Croisettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26791,399895,"CHE","National Inventory",2011,"For storage only",37,"Sous la Roche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26792,399896,"CHE","National Inventory",2011,"For storage only",37,"Petit Cunay","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26793,399897,"CHE","National Inventory",2011,"For storage only",37,"Chalet Neuf du Mont Tendre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26794,399898,"CHE","National Inventory",2011,"For storage only",37,"Le Suchet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26795,399899,"CHE","National Inventory",2011,"For storage only",37,"Dent de Vaulion","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26796,399900,"CHE","National Inventory",2011,"For storage only",37,"Bois de Chênes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26797,399901,"CHE","National Inventory",2011,"For storage only",37,"L'Etang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26798,399902,"CHE","National Inventory",2011,"For storage only",37,"Rochey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26799,399903,"CHE","National Inventory",2011,"For storage only",37,"Plaine à Gallay","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26800,399904,"CHE","National Inventory",2011,"For storage only",37,"Potraux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26801,399905,"CHE","National Inventory",2011,"For storage only",37,"Sapelet Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26802,399906,"CHE","National Inventory",2011,"For storage only",37,"Combe du Faoug","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26803,399907,"CHE","National Inventory",2011,"For storage only",37,"Druchaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26804,399908,"CHE","National Inventory",2011,"For storage only",37,"Berge de la Broye","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26805,399909,"CHE","National Inventory",2011,"For storage only",37,"La Thomassette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26806,399910,"CHE","National Inventory",2011,"For storage only",37,"Grand Essert du Vent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26807,399911,"CHE","National Inventory",2011,"For storage only",37,"Sonloup","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26808,399912,"CHE","National Inventory",2011,"For storage only",37,"Le Planet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26809,399913,"CHE","National Inventory",2011,"For storage only",37,"Bugnaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26810,399914,"CHE","National Inventory",2011,"For storage only",37,"Chalet du Crêt à Chatron Vieux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26811,399915,"CHE","National Inventory",2011,"For storage only",37,"Les Plainoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26812,399916,"CHE","National Inventory",2011,"For storage only",37,"Le Rosset","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26813,399917,"CHE","National Inventory",2011,"For storage only",37,"La Fréterette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26814,399918,"CHE","National Inventory",2011,"For storage only",37,"Vernant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26815,399919,"CHE","National Inventory",2011,"For storage only",37,"Sur le Mont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26816,399920,"CHE","National Inventory",2011,"For storage only",37,"Les Envers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26817,399921,"CHE","National Inventory",2011,"For storage only",37,"La Sauge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26818,399922,"CHE","National Inventory",2011,"For storage only",37,"Mondion","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26819,399923,"CHE","National Inventory",2011,"For storage only",37,"Les Esserts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26820,399924,"CHE","National Inventory",2011,"For storage only",37,"Les Bioles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26821,399925,"CHE","National Inventory",2011,"For storage only",37,"Communs du Haut des Prés","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26822,399926,"CHE","National Inventory",2011,"For storage only",37,"Pré aux Biches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26823,399927,"CHE","National Inventory",2011,"For storage only",37,"Gare de Vallorbe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26824,399928,"CHE","National Inventory",2011,"For storage only",37,"Gare de Vallorbe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26825,399929,"CHE","National Inventory",2011,"For storage only",37,"Pralioux Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26826,399930,"CHE","National Inventory",2011,"For storage only",37,"Champs Neufs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26827,399931,"CHE","National Inventory",2011,"For storage only",37,"Lally","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26828,399932,"CHE","National Inventory",2011,"For storage only",37,"Prés de Joux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26829,399933,"CHE","National Inventory",2011,"For storage only",37,"Volaille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26830,399934,"CHE","National Inventory",2011,"For storage only",37,"Le Crotet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26831,399935,"CHE","National Inventory",2011,"For storage only",37,"Le Risel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26832,399936,"CHE","National Inventory",2011,"For storage only",37,"Le Chaney","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26833,399937,"CHE","National Inventory",2011,"For storage only",37,"Crêt de Grison","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26834,399938,"CHE","National Inventory",2011,"For storage only",37,"La Dunanche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26835,399939,"CHE","National Inventory",2011,"For storage only",37,"Vieille Morte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26836,399940,"CHE","National Inventory",2011,"For storage only",37,"Les Orgères","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26837,399941,"CHE","National Inventory",2011,"For storage only",37,"Pré de Denens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26838,399942,"CHE","National Inventory",2011,"For storage only",37,"Font. Froide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26839,399943,"CHE","National Inventory",2011,"For storage only",37,"La Coche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26840,399944,"CHE","National Inventory",2011,"For storage only",37,"Combe Aubert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26841,399945,"CHE","National Inventory",2011,"For storage only",37,"Les Maisons Doubles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26842,399946,"CHE","National Inventory",2011,"For storage only",37,"La Biole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26843,399947,"CHE","National Inventory",2011,"For storage only",37,"Oberstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26844,399948,"CHE","National Inventory",2011,"For storage only",37,"Romainmôtier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26845,399949,"CHE","National Inventory",2011,"For storage only",37,"Pré Nouveau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26846,399950,"CHE","National Inventory",2011,"For storage only",37,"Le Molaret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26847,399951,"CHE","National Inventory",2011,"For storage only",37,"Les Vidies","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26848,399952,"CHE","National Inventory",2011,"For storage only",37,"Derrière Forel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26849,399953,"CHE","National Inventory",2011,"For storage only",37,"Lucens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26850,399954,"CHE","National Inventory",2011,"For storage only",37,"Les Baumettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26851,399955,"CHE","National Inventory",2011,"For storage only",37,"L'Aouille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26852,399956,"CHE","National Inventory",2011,"For storage only",37,"Breiten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26853,399957,"CHE","National Inventory",2011,"For storage only",37,"Cht de la Dôle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26854,399958,"CHE","National Inventory",2011,"For storage only",37,"Grands Esserts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26855,399959,"CHE","National Inventory",2011,"For storage only",37,"Pré de Ballens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26856,399960,"CHE","National Inventory",2011,"For storage only",37,"Pralioux Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26857,399961,"CHE","National Inventory",2011,"For storage only",37,"Bugnonet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26858,399962,"CHE","National Inventory",2011,"For storage only",37,"Pré de Rolle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26859,399963,"CHE","National Inventory",2011,"For storage only",37,"Villas Prangins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26860,399964,"CHE","National Inventory",2011,"For storage only",37,"Cht du Communal de l'Abbaye","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26861,399965,"CHE","National Inventory",2011,"For storage only",37,"Arruffens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26862,399966,"CHE","National Inventory",2011,"For storage only",37,"Arruffens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26863,399967,"CHE","National Inventory",2011,"For storage only",37,"Prévondavaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26864,399968,"CHE","National Inventory",2011,"For storage only",37,"St-Triphon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26865,399969,"CHE","National Inventory",2011,"For storage only",37,"Motte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26866,399970,"CHE","National Inventory",2011,"For storage only",37,"Pierre Sanche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26867,399971,"CHE","National Inventory",2011,"For storage only",37,"Publoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26868,399972,"CHE","National Inventory",2011,"For storage only",37,"Les Auges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26869,399973,"CHE","National Inventory",2011,"For storage only",37,"Les Côtes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26870,399974,"CHE","National Inventory",2011,"For storage only",37,"Chalet du Crêt à Chatron Neuf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26871,399975,"CHE","National Inventory",2011,"For storage only",37,"Les Avants","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26872,399976,"CHE","National Inventory",2011,"For storage only",37,"La Biole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26873,399977,"CHE","National Inventory",2011,"For storage only",37,"Volota","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26874,399978,"CHE","National Inventory",2011,"For storage only",37,"Mont Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26875,399979,"CHE","National Inventory",2011,"For storage only",37,"Montéla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26876,399980,"CHE","National Inventory",2011,"For storage only",37,"Petite Enne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26877,399981,"CHE","National Inventory",2011,"For storage only",37,"L'Aiguillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26878,399982,"CHE","National Inventory",2011,"For storage only",37,"Le Levant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26879,399983,"CHE","National Inventory",2011,"For storage only",37,"Grand Puits","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26880,399984,"CHE","National Inventory",2011,"For storage only",37,"Le Moulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26881,399985,"CHE","National Inventory",2011,"For storage only",37,"Le Sasselet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26882,399986,"CHE","National Inventory",2011,"For storage only",37,"Combe au Roc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26883,399987,"CHE","National Inventory",2011,"For storage only",37,"Les Grassillières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26884,399988,"CHE","National Inventory",2011,"For storage only",37,"La Tiole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26885,399989,"CHE","National Inventory",2011,"For storage only",37,"Le Château de Ste-Croix","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26886,399990,"CHE","National Inventory",2011,"For storage only",37,"Baule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26887,399991,"CHE","National Inventory",2011,"For storage only",37,"La Palud","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26888,399992,"CHE","National Inventory",2011,"For storage only",37,"Vy de Vugelles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26889,399993,"CHE","National Inventory",2011,"For storage only",37,"Le Signal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26890,399994,"CHE","National Inventory",2011,"For storage only",37,"Les Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26891,399995,"CHE","National Inventory",2011,"For storage only",37,"La Daille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26892,399996,"CHE","National Inventory",2011,"For storage only",37,"Bucley","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26893,399997,"CHE","National Inventory",2011,"For storage only",37,"La Rochette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26894,399998,"CHE","National Inventory",2011,"For storage only",37,"Ruine Neutoggenburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26895,399999,"CHE","National Inventory",2011,"For storage only",37,"Les Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26896,4e+05,"CHE","National Inventory",2011,"For storage only",37,"Les Bordes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -11758,478024,"KAZ","Birdlife IBA",2007,"For storage only",28,"Koibagar-Tyuntyugur Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13773,478026,"UGA","Birdlife IBA",2001,"For storage only",28,"Rwenzori Mountains Ramsar Site","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11763,478036,"KAZ","Birdlife IBA",2004,"For storage only",28,"Naurzum Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11767,478037,"KAZ","METT",2008,"For storage only",28,"Zharsor-Urkash Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11769,478037,"KAZ","Birdlife IBA",2004,"For storage only",28,"Zharsor-Urkash Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11766,478037,"KAZ","METT",2007,"For storage only",28,"Zharsor-Urkash Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11780,478054,"KEN","METT",2006,"For storage only",28,"Kaya Chonyi","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11792,478054,"KEN","METT",2007,"For storage only",28,"Kaya Chonyi","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11793,478054,"KEN","METT",2008,"For storage only",28,"Kaya Chonyi","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11796,478055,"KEN","METT",2007,"For storage only",28,"Kaya Jibana","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11797,478055,"KEN","METT",2008,"For storage only",28,"Kaya Jibana","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11791,478056,"KEN","METT",2008,"For storage only",28,"Kaya Kambe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11788,478056,"KEN","METT",2006,"For storage only",28,"Kaya Kambe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11790,478056,"KEN","METT",2007,"For storage only",28,"Kaya Kambe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11801,478057,"KEN","METT",2008,"For storage only",28,"Kaya Ribe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11800,478057,"KEN","METT",2007,"For storage only",28,"Kaya Ribe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11782,478058,"KEN","METT",2006,"For storage only",28,"Kaya Dzombo","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11794,478058,"KEN","METT",2007,"For storage only",28,"Kaya Dzombo","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13863,478059,"URY","METT",2005,"For storage only",28,"Valle del Lunarejo","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13866,478059,"URY","METT",2010,"For storage only",28,"Valle del Lunarejo","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13835,478060,"URY","METT",2010,"For storage only",28,"Esteros de Farrapos e Islas del Rio Uruguay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13832,478060,"URY","METT",2005,"For storage only",28,"Esteros de Farrapos e Islas del Rio Uruguay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13849,478061,"URY","METT",2009,"For storage only",28,"Localidad Rupestre Chamanga","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13820,478062,"URY","METT",2005,"For storage only",28,"Cabo Polonio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13853,478062,"URY","METT",2009,"For storage only",28,"Cabo Polonio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13830,478063,"URY","METT",2006,"For storage only",28,"Cerro Verde","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13829,478063,"URY","METT",2005,"For storage only",28,"Cerro Verde","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13831,478063,"URY","METT",2009,"For storage only",28,"Cerro Verde","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13847,478064,"URY","METT",2009,"For storage only",28,"Laguna de Rocha","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13821,478064,"URY","METT",2005,"For storage only",28,"Laguna de Rocha","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13851,478065,"URY","METT",2005,"For storage only",28,"Quebrada de los Cuervos","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13859,478065,"URY","METT",2010,"For storage only",28,"Quebrada de los Cuervos","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -29595,478068,"DOM","METT",2015,"For storage only",12,"Armando Bermúdez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29594,478068,"DOM","METT",2012,"For storage only",12,"Armando Bermúdez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -867,478068,"DOM","METT",2009,"For storage only",12,"Armando Bermúdez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -869,478075,"DOM","METT",2009,"For storage only",12,"Cabo Cabrón","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29596,478075,"DOM","METT",2012,"For storage only",12,"Cabo Cabrón","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29597,478075,"DOM","METT",2015,"For storage only",12,"Cabo Cabrón","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29599,478076,"DOM","METT",2015,"For storage only",12,"Cabo Frances Viejo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -863,478076,"DOM","METT",2009,"For storage only",12,"Cabo Frances Viejo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29598,478076,"DOM","METT",2012,"For storage only",12,"Cabo Frances Viejo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29601,478078,"DOM","METT",2015,"For storage only",12,"Cabo Samaná","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -885,478078,"DOM","METT",2009,"For storage only",12,"Cabo Samaná","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29600,478078,"DOM","METT",2012,"For storage only",12,"Cabo Samaná","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -890,478088,"DOM","METT",2009,"For storage only",12,"Cueva de Los Tres Ojos de Santo Domingo","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29602,478088,"DOM","METT",2012,"For storage only",12,"Cueva de Los Tres Ojos de Santo Domingo","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29603,478088,"DOM","METT",2015,"For storage only",12,"Cueva de Los Tres Ojos de Santo Domingo","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -861,478092,"DOM","METT",2009,"For storage only",12,"Estero Hondo","Marine Mammal Sanctuary","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29605,478092,"DOM","METT",2015,"For storage only",12,"Estero Hondo","Marine Mammal Sanctuary","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29604,478092,"DOM","METT",2012,"For storage only",12,"Estero Hondo","Marine Mammal Sanctuary","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -876,478099,"DOM","METT",2009,"For storage only",12,"Humedales del Ozama","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29607,478099,"DOM","METT",2015,"For storage only",12,"Humedales del Ozama","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29606,478099,"DOM","METT",2012,"For storage only",12,"Humedales del Ozama","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29609,478100,"DOM","METT",2015,"For storage only",12,"Catalina Island","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -880,478100,"DOM","METT",2009,"For storage only",12,"Catalina Island","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29608,478100,"DOM","METT",2012,"For storage only",12,"Catalina Island","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -872,478101,"DOM","METT",2009,"For storage only",12,"José del Carmen Ramírez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29610,478101,"DOM","METT",2012,"For storage only",12,"José del Carmen Ramírez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29611,478101,"DOM","METT",2015,"For storage only",12,"José del Carmen Ramírez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29612,478102,"DOM","METT",2012,"For storage only",12,"Submarine national park La Caleta","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -875,478102,"DOM","METT",2009,"For storage only",12,"Submarine national park La Caleta","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29613,478102,"DOM","METT",2015,"For storage only",12,"Submarine national park La Caleta","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29615,478104,"DOM","METT",2015,"For storage only",12,"Lago Enriquillo e Isla Cabritos","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29614,478104,"DOM","METT",2012,"For storage only",12,"Lago Enriquillo e Isla Cabritos","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -862,478104,"DOM","METT",2009,"For storage only",12,"Lago Enriquillo e Isla Cabritos","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29617,478105,"DOM","METT",2015,"For storage only",12,"Laguna de Bávaro y el Caletón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29616,478105,"DOM","METT",2012,"For storage only",12,"Laguna de Bávaro y el Caletón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -891,478105,"DOM","METT",2009,"For storage only",12,"Laguna de Bávaro y el Caletón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -887,478106,"DOM","METT",2009,"For storage only",12,"Laguna de Cabral","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29619,478106,"DOM","METT",2015,"For storage only",12,"Laguna de Cabral","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29618,478106,"DOM","METT",2012,"For storage only",12,"Laguna de Cabral","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29620,478108,"DOM","METT",2012,"For storage only",12,"Lagunas Cabarete y Goleta","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -884,478108,"DOM","METT",2009,"For storage only",12,"Lagunas Cabarete y Goleta","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29621,478108,"DOM","METT",2015,"For storage only",12,"Lagunas Cabarete y Goleta","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29623,478109,"DOM","METT",2015,"For storage only",12,"Lagunas Redona y Limón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -889,478109,"DOM","METT",2009,"For storage only",12,"Lagunas Redona y Limón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29622,478109,"DOM","METT",2012,"For storage only",12,"Lagunas Redona y Limón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -881,478111,"DOM","METT",2009,"For storage only",12,"Las Dunas de las Calderas","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29624,478111,"DOM","METT",2012,"For storage only",12,"Las Dunas de las Calderas","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29625,478111,"DOM","METT",2015,"For storage only",12,"Las Dunas de las Calderas","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -859,478116,"DOM","METT",2009,"For storage only",12,"Guaconejo","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29627,478116,"DOM","METT",2015,"For storage only",12,"Guaconejo","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29626,478116,"DOM","METT",2012,"For storage only",12,"Guaconejo","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29629,478117,"DOM","METT",2015,"For storage only",12,"Natural Monument Isabel de Torres","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -886,478117,"DOM","METT",2009,"For storage only",12,"Natural Monument Isabel de Torres","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29628,478117,"DOM","METT",2012,"For storage only",12,"Natural Monument Isabel de Torres","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29631,478120,"DOM","METT",2015,"For storage only",12,"Loma Quita Espuela","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -858,478120,"DOM","METT",2009,"For storage only",12,"Loma Quita Espuela","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29630,478120,"DOM","METT",2012,"For storage only",12,"Loma Quita Espuela","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -28238,478128,"DOM","METT",2012,"For storage only",28,"Montaña La Humeadora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28239,478128,"DOM","METT",2014,"For storage only",28,"Montaña La Humeadora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -870,478130,"DOM","METT",2009,"For storage only",12,"Nalga de Maco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29633,478130,"DOM","METT",2015,"For storage only",12,"Nalga de Maco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29632,478130,"DOM","METT",2012,"For storage only",12,"Nalga de Maco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -883,478131,"DOM","METT",2009,"For storage only",12,"Pico Diego de Ocampo","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29634,478131,"DOM","METT",2012,"For storage only",12,"Pico Diego de Ocampo","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29635,478131,"DOM","METT",2015,"For storage only",12,"Pico Diego de Ocampo","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -878,478132,"DOM","METT",2009,"For storage only",12,"Natural Monument Anthropological Reserve","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29637,478132,"DOM","METT",2015,"For storage only",12,"Natural Monument Anthropological Reserve","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29636,478132,"DOM","METT",2012,"For storage only",12,"Natural Monument Anthropological Reserve","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -888,478133,"DOM","METT",2009,"For storage only",12,"Ría Maimón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29639,478133,"DOM","METT",2015,"For storage only",12,"Ría Maimón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29638,478133,"DOM","METT",2012,"For storage only",12,"Ría Maimón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29641,478138,"DOM","METT",2015,"For storage only",12,"Salto de la Damajagua","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29640,478138,"DOM","METT",2012,"For storage only",12,"Salto de la Damajagua","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -879,478138,"DOM","METT",2009,"For storage only",12,"Salto de la Damajagua","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29643,478139,"DOM","METT",2015,"For storage only",12,"Salto El Limón","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -882,478139,"DOM","METT",2009,"For storage only",12,"Salto El Limón","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29642,478139,"DOM","METT",2012,"For storage only",12,"Salto El Limón","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29645,478140,"DOM","METT",2015,"For storage only",12,"Sierra de Neiba","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29644,478140,"DOM","METT",2012,"For storage only",12,"Sierra de Neiba","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -864,478140,"DOM","METT",2009,"For storage only",12,"Sierra de Neiba","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -877,478141,"DOM","METT",2009,"For storage only",12,"Sierra Martín García","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29647,478141,"DOM","METT",2015,"For storage only",12,"Sierra Martín García","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29646,478141,"DOM","METT",2012,"For storage only",12,"Sierra Martín García","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29649,478142,"DOM","METT",2015,"For storage only",12,"Valle Nuevo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29648,478142,"DOM","METT",2012,"For storage only",12,"Valle Nuevo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -866,478142,"DOM","METT",2009,"For storage only",12,"Valle Nuevo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -860,478143,"DOM","METT",2009,"For storage only",12,"Villa Elisa","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29650,478143,"DOM","METT",2012,"For storage only",12,"Villa Elisa","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -29651,478143,"DOM","METT",2015,"For storage only",12,"Villa Elisa","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English",FALSE -14130,478146,"VNM","GOBI Survey",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14132,478147,"VNM","GOBI Survey",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14133,478148,"VNM","GOBI Survey",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14169,478151,"VNM","METT",2013,"For storage only",28,"Mui Ca Mau","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13506,478262,"TZA","METT",2005,"For storage only",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13507,478262,"TZA","METT",2013,"For storage only",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28123,478263,"TZA","METT",2005,"For storage only",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28122,478264,"TZA","METT",2005,"For storage only",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28121,478265,"TZA","METT",2005,"For storage only",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11211,478291,"COD","Birdlife IBA",2001,"For storage only",28,"Parc national des Virunga","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11198,478292,"COD","RAPPAM",2010,"For storage only",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11197,478292,"COD","METT",2010,"For storage only",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11200,478292,"COD","Birdlife IBA",2001,"For storage only",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11195,478292,"COD","METT",2005,"For storage only",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11196,478292,"COD","METT",2007,"For storage only",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9897,478391,"KOR","METT",2017,"For storage only",26,"Hyangnobong","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9901,478393,"KOR","METT",2017,"For storage only",26,"Sogwang-ri","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9902,478394,"KOR","METT",2017,"For storage only",26,"Ulleungdo Seonginbong","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -11850,478395,"KHM","Birdlife IBA",2007,"For storage only",28,"Trapeang Lpeou","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11880,478401,"KHM","RAPPAM",2004,"For storage only",28,"Roniem Daun Sam I","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11851,478405,"KHM","RAPPAM",2004,"For storage only",28,"Botum Sakor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -818,478408,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Quilombo Do Frechal","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -507,478408,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Quilombo Do Frechal","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -442,478409,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Do Ciriáco","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -786,478409,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Do Ciriáco","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -602,478413,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional De Açungui","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -294,478413,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional De Açungui","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -833,478415,"BRA","SAMGe",2016,"For storage only",9,"Refúgio De Vida Silvestre De Una","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -473,478415,"BRA","RAPPAM",2015,"For storage only",9,"Refúgio De Vida Silvestre De Una","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -834,478416,"BRA","SAMGe",2016,"For storage only",9,"Refúgio De Vida Silvestre Do Rio Dos Frades","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -474,478416,"BRA","RAPPAM",2015,"For storage only",9,"Refúgio De Vida Silvestre Do Rio Dos Frades","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -339,478418,"BRA","RAPPAM",2015,"For storage only",9,"Floresta Nacional Do Iquiri","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -659,478418,"BRA","SAMGe",2016,"For storage only",9,"Floresta Nacional Do Iquiri","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -731,478419,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Nascentes Do Lago Jari","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -393,478419,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Nascentes Do Lago Jari","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -789,478420,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Do Médio Purús","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -508,478420,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Do Médio Purús","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -447,478421,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Ituxí","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -796,478421,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Ituxí","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -824,478422,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Rio Xingu","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -465,478422,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Rio Xingu","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -548,478423,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Serra Da Meruoca","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -261,478423,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Serra Da Meruoca","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -664,478424,"BRA","SAMGe",2016,"For storage only",9,"Monumento Natural Do Rio São Francisco","Natural Monument","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -343,478424,"BRA","RAPPAM",2015,"For storage only",9,"Monumento Natural Do Rio São Francisco","Natural Monument","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -458,478425,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Prainha Do Canto Verde","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -817,478425,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Prainha Do Canto Verde","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -819,478426,"BRA","SAMGe",2016,"For storage only",9,"Reserva Extrativista Renascer","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -459,478426,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Renascer","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -783,478427,"BRA","SAMGe",2016,"For storage only",9,"RESEX de Cassurubá","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -519,478429,"BRA","SAMGe",2016,"For storage only",9,"APA Bacia do Paraíba do Sul","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -390,478431,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Mapinguari","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -509,478539,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Do Juma","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13334,478637,"TUR","RAPPAM",2009,"For storage only",28,"Göreme National Park and the Rock Sites of Cappadocia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13230,478637,"TUR","METT",2008,"For storage only",28,"Göreme National Park and the Rock Sites of Cappadocia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13335,478637,"TUR","WHA Outlook Report",2014,"For storage only",28,"Göreme National Park and the Rock Sites of Cappadocia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13333,478637,"TUR","RAPPAM",2005,"For storage only",28,"Göreme National Park and the Rock Sites of Cappadocia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13336,478640,"TUR","WHA Outlook Report",2014,"For storage only",28,"Hierapolis-Pamukkale","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11725,478641,"ITA","WHA Outlook Report",2014,"For storage only",28,"The Dolomites","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22186,478642,"FIN;SWE","WHA Outlook Report",2014,"For storage only",28,"High Coast / Kvarken Archipelago","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -727,479431,"BRA","SAMGe",2016,"For storage only",9,"PARNA Mapinguari","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -10713,900001,"AUT","GOBI Survey",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16574,900002,"AUS","GOBI Survey",2006,"For storage only",28,"Croajingolong National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11899,900006,"LSO;ZAF","WHA Outlook Report",2014,"For storage only",28,"Maloti-Drakensberg Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11704,900008,"ITA","WHA Outlook Report",2014,"For storage only",28,"Isole Eolie (Aeolian Islands)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19702,900010,"AUS","WHA Outlook Report",2014,"For storage only",28,"Uluru-Kata Tjuta National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14674,900547,"ESP","GOBI Survey",2006,"For storage only",28,"Redes","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21436,900553,"ZAF","GOBI Survey",2006,"For storage only",28,"Kruger to Canyons","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21881,900554,"ZAF","GOBI Survey",2006,"For storage only",28,"Waterberg Biosphere Reserve","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12738,900556,"RUS","RAPPAM",2001,"For storage only",28,"Barguzinskyi","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10811,900563,"BLR","METT",2009,"For storage only",28,"Mid-Pripyat State Landscape Zakaznik","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10806,900563,"BLR","METT",2012,"For storage only",28,"Mid-Pripyat State Landscape Zakaznik","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10810,900563,"BLR","METT",2005,"For storage only",28,"Mid-Pripyat State Landscape Zakaznik","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11314,900570,"GBR","Birdlife IBA",2013,"For storage only",28,"Larnaca Salt Lake","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1397,900584,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garry Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1373,900585,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Isles of Scilly","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1398,900587,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lewis Peatlands","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -12047,900595,"MRT","Birdlife IBA",2001,"For storage only",28,"Chat Tboul","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12072,900596,"MUS","METT",2009,"For storage only",28,"Rivulet Terre Rouge Estuary Bird Sanctuary","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12123,900599,"NER","METT",2013,"For storage only",28,"Lac Tchad","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12592,900610,"PRT","Birdlife IBA",2005,"For storage only",28,"Paúl do Taipal","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13249,900615,"THA","Birdlife IBA",2004,"For storage only",28,"Princess Sirindhorn Wildlife Sanctuary (Pru ToDaeng Wildlife Sanctuary)","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13474,900623,"TZA","Birdlife IBA",2001,"For storage only",28,"Lake Natron Basin","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12773,900629,"RUS","WHA Outlook Report",2014,"For storage only",28,"Central Sikhote-Alin","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1399,900634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Firth of Forth","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -63,900662,"ARG","GOBI Survey",2006,"For storage only",3,"Laguna Oca del Rio Paraguay","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -106,900662,"ARG","GOBI Survey",2009,"For storage only",3,"Laguna Oca del Rio Paraguay","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -21941,900664,"CAN","GOBI Survey",2006,"For storage only",28,"South West Nova","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20833,900667,"MDG","IEG",2016,"For storage only",34,"Sahamalaza - Iles Radama","UNESCO-MAB Biosphere Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20831,900667,"MDG","IEG",2008,"For storage only",34,"Sahamalaza - Iles Radama","UNESCO-MAB Biosphere Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -56,900669,"ARG","METT",2009,"For storage only",3,"Jaaukanigás","Ramsar Site, Wetland of International Importance","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -11046,900682,"CHN","METT",2009,"For storage only",28,"Shankou Mangrove Nature Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1400,900711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sleibhtean agus Cladach Thiriodh","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -21943,900714,"CAN","GOBI Survey",2006,"For storage only",28,"Thousands Islands Frontenac Arch","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14803,900716,"GIN","RAPPAM",2006,"For storage only",28,"Badiar","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14750,900724,"ESP","GOBI Survey",2006,"For storage only",28,"Terras do Mino","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -67,900725,"ARG","GOBI Survey",2006,"For storage only",3,"Las Yungas","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -97,900725,"ARG","GOBI Survey",2009,"For storage only",3,"Las Yungas","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -68,900725,"ARG","METT",2003,"For storage only",3,"Las Yungas","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -10759,900731,"BEN","GOBI Survey",2006,"For storage only",28,"W Region","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15393,900733,"AUS","Birdlife IBA",2008,"For storage only",28,"Ashmore Reef National Nature Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16933,900737,"AUS","Birdlife IBA",2008,"For storage only",28,"Fivebough and Tuckerbil Swamps","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -89,900779,"ARG","Birdlife IBA",2013,"For storage only",3,"Bañados del Río Dulce y Laguna de Mar Chiquita","Ramsar Site, Wetland of International Importance","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -1402,900851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turmennan Lough","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -19028,900878,"AUS","WHA Outlook Report",2014,"For storage only",28,"Purnululu National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11716,900879,"CHE;ITA","WHA Outlook Report",2014,"For storage only",28,"Monte San Giorgio","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12031,900880,"MNG;RUS","WHA Outlook Report",2014,"For storage only",28,"Uvs Nuur Basin","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11053,900881,"CHN","WHA Outlook Report",2014,"For storage only",28,"Three Parallel Rivers of Yunnan Protected Areas","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14177,900883,"VNM","RAPPAM",2004,"For storage only",28,"Phong Nha-Ke Bang National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14179,900883,"VNM","WHA Outlook Report",2014,"For storage only",28,"Phong Nha-Ke Bang National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14178,900883,"VNM","METT",2006,"For storage only",28,"Phong Nha-Ke Bang National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14149,900889,"VNM","WHA Outlook Report",2014,"For storage only",28,"Ha Long Bay","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1401,901213,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fardrum and Roosky Turloughs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -14989,901219,"LBR","METT",2013,"For storage only",28,"Lake Piso","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14994,901219,"LBR","RAPPAM",2009,"For storage only",28,"Lake Piso","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11815,901249,"KEN","GOBI Survey",2006,"For storage only",28,"Mount Elgon","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12195,901253,"NIC","GOBI Survey",2006,"For storage only",28,"Rio San Juan","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12797,901254,"RUS","MPA MEE",2003,"For storage only",28,"Far East Marine","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14769,901255,"ESP","GOBI Survey",2006,"For storage only",28,"Valle de Laciana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14661,901256,"ESP","GOBI Survey",2006,"For storage only",28,"Picos de Europe, Gran Cant+íbrica","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14621,901257,"ESP","GOBI Survey",2006,"For storage only",28,"Monfragüe","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14770,901258,"ESP","Stockholm BR Survey",2008,"For storage only",28,"Valles del Jubera, Leza, Cidacos y Alhama","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13200,901260,"SVN","Stockholm BR Survey",2008,"For storage only",28,"Julian Alps","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20807,901296,"MDG","SAPM",2016,"For storage only",34,"Le Lac Alaotra: les zones humides et basin","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -11921,901300,"MDA","METT",2011,"For storage only",28,"Lower Dniester","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11920,901300,"MDA","METT",2008,"For storage only",28,"Lower Dniester","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -2061,902191,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tràigh Na Berie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -15035,902264,"MLI","RAPPAM",2009,"For storage only",28,"Delta Intérieur du Niger","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11992,902268,"MNG","RAPPAM",2005,"For storage only",28,"Lake Ganga and its surrounding wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14922,902321,"IRN","METT",2007,"For storage only",28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14921,902321,"IRN","METT",2005,"For storage only",28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14924,902321,"IRN","METT",2009,"For storage only",28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14923,902321,"IRN","METT",2008,"For storage only",28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13766,902322,"UGA","Birdlife IBA",2001,"For storage only",28,"Lake Nabugabo wetland system","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12939,902327,"RUS","Stockholm BR Survey",2008,"For storage only",28,"Prioksko-Terrasnyi","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21204,902347,"ZAF","WHA Outlook Report",2014,"For storage only",28,"Cape Floral Region Protected Areas","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12898,902356,"RUS","WHA Outlook Report",2014,"For storage only",28,"Natural System of Wrangel Island Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15003,902367,"LCA","RAPPAM",2009,"For storage only",28,"Pitons Management Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15004,902367,"LCA","WHA Outlook Report",2014,"For storage only",28,"Pitons Management Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11387,902373,"GRL","WHA Outlook Report",2014,"For storage only",28,"Ilulissat Icefjord","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15116,902398,"SDN","GOBI Survey",2006,"For storage only",28,"Dinder National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14983,902403,"JAM","METT",2009,"For storage only",28,"Palisadoes - Port Royal","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20838,902404,"MDG","SAPM",2016,"For storage only",34,"Marais de Torotorofotsy avec leurs bassins versants","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -13656,902412,"TZA","METT",2011,"For storage only",28,"Rufiji-Mafia-Kilwa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13654,902412,"TZA","METT",2007,"For storage only",28,"Rufiji-Mafia-Kilwa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20602,902413,"MMR","Birdlife IBA",2003,"For storage only",28,"Moyingyi Wetland Wildlife Sanctuary","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12352,902479,"PAN","WHA Outlook Report",2014,"For storage only",28,"Coiba National Park and its Special Zone of Marin*","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13252,902480,"THA","WHA Outlook Report",2014,"For storage only",28,"Dong Phayayen-Khao Yai Forest Complex","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21859,902483,"ZAF","WHA Outlook Report",2014,"For storage only",28,"Vredefort Dome","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11528,902487,"EGY","WHA Outlook Report",2014,"For storage only",28,"Wadi Al-Hitan (Whale Valley)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15090,902489,"NOR","WHA Outlook Report",2014,"For storage only",28,"West Norwegian Fjords – Geirangerfjord and Nærøyfjord","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10720,902494,"AUT","Stockholm BR Survey",2008,"For storage only",28,"Wienerwald","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10719,902494,"AUT","GOBI Survey",2006,"For storage only",28,"Wienerwald","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14314,902496,"CHL","GOBI Survey",2006,"For storage only",28,"Cabo de Hornos","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11895,902497,"LBN","GOBI Survey",2006,"For storage only",28,"Shouf","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12048,902500,"MRT","GOBI Survey",2006,"For storage only",28,"Delta du Fleuve Sénégal (Mauritania)","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11581,902505,"FSM","GOBI Survey",2006,"For storage only",28,"Utwe","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11995,902508,"MNG","RAPPAM",2005,"For storage only",28,"Dornod Mongol","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14508,902518,"ESP","GOBI Survey",2006,"For storage only",28,"Área de Allariz","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14578,902519,"ESP","GOBI Survey",2006,"For storage only",28,"Gran Canaria","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14744,902520,"ESP","GOBI Survey",2006,"For storage only",28,"Sierra del Rincón","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14505,902522,"ESP","GOBI Survey",2006,"For storage only",28,"Alto de Bernesga","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22191,902525,"SWE","GOBI Survey",2006,"For storage only",28,"Kristianstad Vattenrike","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11552,902530,"DZA","GOBI Survey",2006,"For storage only",28,"Taza","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11544,902531,"DZA","GOBI Survey",2006,"For storage only",28,"Gouraya","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11723,902541,"ITA","GOBI Survey",2006,"For storage only",28,"Selva Pisana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11724,902541,"ITA","Stockholm BR Survey",2008,"For storage only",28,"Selva Pisana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13219,902609,"SVN","GOBI Survey",2006,"For storage only",28,"The Karst","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13220,902609,"SVN","Stockholm BR Survey",2008,"For storage only",28,"The Karst","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11028,902688,"CHN","Birdlife IBA",2008,"For storage only",28,"Napahai Wetland","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11913,902701,"MAR","Birdlife IBA",2001,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11918,902705,"MAR","Birdlife IBA",2001,"For storage only",28,"Sidi Moussa Oualidia","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15277,902744,"BLZ","METT",2013,"For storage only",29,"Sarstoon-Temash National Park","Ramsar Site, Wetland of International Importance","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -15276,902744,"BLZ","METT",2010,"For storage only",29,"Sarstoon-Temash National Park","Ramsar Site, Wetland of International Importance","Belize Management Effectiveness Evaluation","Forest Department",2018,"English",FALSE -22040,902767,"FIN","Birdlife IBA",2010,"For storage only",28,"Kirkon-Vilkkiläntura Bay","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22055,902775,"FIN","Birdlife IBA",2010,"For storage only",28,"Lätäseno-Hietajoki Mires","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22060,902776,"FIN","Birdlife IBA",2010,"For storage only",28,"Lemmenjoki National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22093,902780,"FIN","Birdlife IBA",2010,"For storage only",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22087,902780,"FIN","PANPARKS",2004,"For storage only",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22088,902780,"FIN","PANPARKS",2005,"For storage only",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22091,902780,"FIN","RAPPAM",2004,"For storage only",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22089,902780,"FIN","PANPARKS",2006,"For storage only",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22085,902780,"FIN","PANPARKS",2002,"For storage only",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22086,902780,"FIN","PANPARKS",2003,"For storage only",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22090,902780,"FIN","PANPARKS",2007,"For storage only",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22121,902783,"FIN","Birdlife IBA",2010,"For storage only",28,"Riisitunturi National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22142,902786,"FIN","Birdlife IBA",2010,"For storage only",28,"Sammuttijänkä - Vaijoenjänkä Mires","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22159,902791,"FIN","Birdlife IBA",2010,"For storage only",28,"Torronsuo National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11840,902830,"KGZ","Birdlife IBA",2006,"For storage only",28,"Chatyr Kul","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11049,902902,"CHN","WHA Outlook Report",2014,"For storage only",28,"Sichuan Giant Panda Sanctuaries - Wolong, Mt Siguniang and Jiajin Mountains","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14988,902908,"LBR","RAPPAM",2009,"For storage only",28,"Kpatawee Wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14991,902909,"LBR","RAPPAM",2009,"For storage only",28,"Marshall Wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14992,902910,"LBR","RAPPAM",2009,"For storage only",28,"Mesurado Wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13755,902978,"UGA","Birdlife IBA",2001,"For storage only",28,"Lake Mburo-Nakivali Wetland System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13756,902980,"UGA","Birdlife IBA",2001,"For storage only",28,"Lake Opeta Wetland System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13765,902984,"UGA","Birdlife IBA",2008,"For storage only",28,"Nabajjuzi Wetland System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11631,903024,"GMB","RAPPAM",2009,"For storage only",28,"Tanbi Wetland Complex","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10799,903028,"BIH","Birdlife IBA",2013,"For storage only",28,"Bardaca Wetland","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20846,903062,"MDG","WHA Outlook Report",2014,"For storage only",34,"Rainforests of the Atsinanana","World Heritage Site","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -1406,903063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Magheraveely Marl Loughs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -11693,903064,"IRQ","Birdlife IBA",2013,"For storage only",28,"Hawizeh Marsh (Haur Al-Hawizeh)","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14804,903066,"GIN","RAPPAM",2007,"For storage only",28,"Bafing-Falémé","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13328,903086,"TUN","Birdlife IBA",2001,"For storage only",28,"Sebkhet Sejoumi","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11582,903129,"GAB","WHA Outlook Report",2014,"For storage only",28,"Ecosystem and Relict Cultural Landscape of Lopé-Okanda","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11050,903131,"CHN","WHA Outlook Report",2014,"For storage only",28,"South China Karst","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14749,903132,"ESP","WHA Outlook Report",2014,"For storage only",28,"Teide National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14748,903132,"ESP","European Diploma",1989,"For storage only",28,"Teide National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21927,903133,"CAN","WHA Outlook Report",2014,"For storage only",28,"Joggins Fossil Cliffs","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11559,903134,"NCL","WHA Outlook Report",2014,"For storage only",28,"Lagoons of New Caledonia: Reef Diversity and Associated Ecosystems","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11023,903136,"CHN","WHA Outlook Report",2014,"For storage only",28,"Mount Sanqingshan National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11757,903137,"KAZ","Birdlife IBA",2006,"For storage only",28,"Saryarka ÔÇô Steppe and Lakes of Northern Kazakhstan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11764,903137,"KAZ","WHA Outlook Report",2014,"For storage only",28,"Saryarka ÔÇô Steppe and Lakes of Northern Kazakhstan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14218,903138,"YEM","WHA Outlook Report",2014,"For storage only",28,"Socotra Archipelago","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11695,903139,"ISL","WHA Outlook Report",2014,"For storage only",28,"Surtsey","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13799,903141,"DEU;SVK;ALB;AUT;BEL;BGR;ESP;HRV;ITA;ROU;SVN;UKR","WHA Outlook Report",2014,"For storage only",28,"Primeval Beech Forests of the Carpathians and Other Regions of Europe","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13928,999910,"USA","Birdlife IBA",2012,"For storage only",28,"Pearl Harbor","National Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13909,44446200,"USA","USA SOP",2007,"For storage only",28,"Keweenaw Peninsula Fee","Private Conservation Land","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13887,55551176,"USA","USA SOP",2004,"For storage only",28,"Chesapeake and Ohio Canal","National Historical Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13936,55551184,"USA","USA SOP",2004,"For storage only",28,"Saint-Gaudens","National Historic Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13867,55552961,"USA","USA SOP",2001,"For storage only",28,"Adams","Local Land Trust Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -217,555511936,"COL","AEMAPPS",2016,"For storage only",6,"Yaigoje Apaporis","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -204,555511937,"COL","AEMAPPS",2016,"For storage only",6,"Selva De Florencia","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -196,555511938,"COL","AEMAPPS",2016,"For storage only",6,"Plantas Medicinales Orito Ingi Ande","Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -207,555511939,"COL","AEMAPPS",2016,"For storage only",6,"Serrania De Los Yariguies","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -167,555511940,"COL","AEMAPPS",2016,"For storage only",6,"Complejo Volcanico Doña Juana Cascabel","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -206,555511941,"COL","AEMAPPS",2016,"For storage only",6,"Serrania De Los Churumbelos","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -20963,555511951,"IDN","METT",2015,"For storage only",35,"Kuala Lupak","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21046,555511953,"IDN","METT",2015,"For storage only",35,"Danau Mahalona","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20886,555511999,"IDN","METT",2015,"For storage only",35,"Ponda-Ponda","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20665,555512000,"LKA","WHA Outlook Report",2014,"For storage only",28,"Central Highlands of Sri Lanka","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13927,555512001,"USA","WHA Outlook Report",2014,"For storage only",28,"Papah-ünaumoku-ükea","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13922,555512001,"USA","Birdlife IBA",2009,"For storage only",28,"Papah-ünaumoku-ükea","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11893,555512002,"KIR","WHA Outlook Report",2014,"For storage only",28,"Phoenix Islands Protected Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12944,555512003,"RUS","WHA Outlook Report",2014,"For storage only",28,"Putorana Plateau","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10981,555512005,"CHN","WHA Outlook Report",2014,"For storage only",28,"China Danxia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11570,555512006,"REU","WHA Outlook Report",2014,"For storage only",28,"Pitons, cirques and remparts of Reunion Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11186,555512068,"COD","RAPPAM",2010,"For storage only",28,"N'Sele","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11187,555512068,"COD","METT",2010,"For storage only",28,"N'Sele","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28049,555512069,"COD","METT",2010,"For storage only",28,"Parc Marin des Mangroves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11180,555512071,"COD","METT",2005,"For storage only",28,"Luki","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11184,555512074,"COD","RAPPAM",2010,"For storage only",28,"Mangai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11183,555512074,"COD","METT",2010,"For storage only",28,"Mangai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11202,555512076,"COD","METT",2010,"For storage only",28,"Tumba-Lediima","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11194,555512076,"COD","METT",2009,"For storage only",28,"Tumba-Lediima","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11201,555512076,"COD","RAPPAM",2010,"For storage only",28,"Tumba-Lediima","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11178,555512077,"COD","METT",2010,"For storage only",28,"Lomako-Yokokala","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11179,555512077,"COD","RAPPAM",2010,"For storage only",28,"Lomako-Yokokala","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20843,555512161,"MDG","SAPM",2015,"For storage only",34,"Velondriake","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -14996,555512169,"LBR","METT",2009,"For storage only",28,"Grand Kru-River Gee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -568,555512220,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Da Serra Das Araras","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -264,555512220,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Da Serra Das Araras","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13283,555512235,"THA","Birdlife IBA",2007,"For storage only",28,"Salawin","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9941,555512277,"KOR","Korea SOP",2016,"For storage only",26,"Amsa-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9939,555512278,"KOR","Korea SOP",2016,"For storage only",26,"Bangi-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9930,555512279,"KOR","Korea SOP",2016,"For storage only",26,"Bongsan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9935,555512280,"KOR","Korea SOP",2016,"For storage only",26,"Bulamsan Samyookdae","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9931,555512281,"KOR","Korea SOP",2016,"For storage only",26,"Changdukgung Rear Garden","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9942,555512282,"KOR","Korea SOP",2016,"For storage only",26,"Donggang Watershed","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9933,555512283,"KOR","Korea SOP",2016,"For storage only",26,"Dunchon-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9940,555512284,"KOR","Korea SOP",2016,"For storage only",26,"Godeok-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9929,555512285,"KOR","Korea SOP",2016,"For storage only",26,"Gwangyang Baegunsan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9936,555512286,"KOR","Korea SOP",2016,"For storage only",26,"Hangang Bamseom","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9937,555512287,"KOR","Korea SOP",2016,"For storage only",26,"Heoninneung Royal Tombs","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9932,555512288,"KOR","Korea SOP",2016,"For storage only",26,"Inwangsan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9927,555512289,"KOR","Korea SOP",2016,"For storage only",26,"Jinkwannae-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9934,555512293,"KOR","Korea SOP",2016,"For storage only",26,"Namsan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9938,555512297,"KOR","Korea SOP",2016,"For storage only",26,"Tancheon","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10387,555512314,"KOR","Korea SOP",2016,"For storage only",26,"79_Akdo(jangguseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10464,555512315,"KOR","Korea SOP",2016,"For storage only",26,"149_Anmokseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10438,555512316,"KOR","Korea SOP",2016,"For storage only",26,"44_Baegyado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10479,555512317,"KOR","Korea SOP",2016,"For storage only",26,"103_Bakdariseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10465,555512318,"KOR","Korea SOP",2016,"For storage only",26,"150_Bangmokseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10480,555512319,"KOR","Korea SOP",2016,"For storage only",26,"104_Beopgoseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10449,555512320,"KOR","Korea SOP",2016,"For storage only",26,"67_Bido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10504,555512321,"KOR","Korea SOP",2016,"For storage only",26,"3_Bido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10432,555512322,"KOR","Korea SOP",2016,"For storage only",26,"105_Bonongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10466,555512323,"KOR","Korea SOP",2016,"For storage only",26,"144_Budo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10487,555512324,"KOR","Korea SOP",2016,"For storage only",26,"20_Budo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10420,555512325,"KOR","Korea SOP",2016,"For storage only",26,"125_Bukgyeongnyeolbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10547,555512326,"KOR","Korea SOP",2016,"For storage only",26,"139_Bukyeongjeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10458,555512327,"KOR","Korea SOP",2016,"For storage only",26,"58_Bulgeundo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10475,555512328,"KOR","Korea SOP",2016,"For storage only",26,"99_Bunamseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10508,555512329,"KOR","Korea SOP",2016,"For storage only",26,"7_Bunjido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10443,555512330,"KOR","Korea SOP",2016,"For storage only",26,"40_Byeongpungdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10369,555512331,"KOR","Korea SOP",2016,"For storage only",26,"78_Chaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10405,555512332,"KOR","Korea SOP",2016,"For storage only",26,"133_Cheongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10424,555512333,"KOR","Korea SOP",2016,"For storage only",26,"53_Chudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10537,555512334,"KOR","Korea SOP",2016,"For storage only",26,"114_Daebyeongdaedo(jungsamseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10447,555512335,"KOR","Korea SOP",2016,"For storage only",26,"62_Daebyeongpungdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10380,555512336,"KOR","Korea SOP",2016,"For storage only",26,"51_Daecheongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10442,555512337,"KOR","Korea SOP",2016,"For storage only",26,"64_Daechilgido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10346,555512338,"KOR","Korea SOP",2016,"For storage only",26,"50_Daegilsando","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10409,555512339,"KOR","Korea SOP",2016,"For storage only",26,"46_Daehangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10431,555512340,"KOR","Korea SOP",2016,"For storage only",26,"110_Daehyeongjedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10472,555512341,"KOR","Korea SOP",2016,"For storage only",26,"94_Daejeongseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10452,555512342,"KOR","Korea SOP",2016,"For storage only",26,"70_Daesado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10441,555512343,"KOR","Korea SOP",2016,"For storage only",26,"143_Daesamdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10476,555512344,"KOR","Korea SOP",2016,"For storage only",26,"100_Daeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10510,555512345,"KOR","Korea SOP",2016,"For storage only",26,"9_Daesongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10430,555512346,"KOR","Korea SOP",2016,"For storage only",26,"109_Dalludo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10446,555512347,"KOR","Korea SOP",2016,"For storage only",26,"61_Darajido(naktaseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10542,555512348,"KOR","Korea SOP",2016,"For storage only",26,"32_Deungdaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10484,555512350,"KOR","Korea SOP",2016,"For storage only",26,"88_Durido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10495,555512351,"KOR","Korea SOP",2016,"For storage only",26,"11_Eopyeongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10546,555512352,"KOR","Korea SOP",2016,"For storage only",26,"28_Eoyudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10552,555512353,"KOR","Korea SOP",2016,"For storage only",26,"160_Gadeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10482,555512354,"KOR","Korea SOP",2016,"For storage only",26,"131_Gaerindo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10499,555512355,"KOR","Korea SOP",2016,"For storage only",26,"16_Gakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10440,555512356,"KOR","Korea SOP",2016,"For storage only",26,"142_Gakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10434,555512357,"KOR","Korea SOP",2016,"For storage only",26,"77_Galdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10529,555512358,"KOR","Korea SOP",2016,"For storage only",26,"117_Galdo(galgotdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10457,555512359,"KOR","Korea SOP",2016,"For storage only",26,"57_Galmado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10478,555512360,"KOR","Korea SOP",2016,"For storage only",26,"102_Galmaeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10528,555512361,"KOR","Korea SOP",2016,"For storage only",26,"38_Godo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10485,555512362,"KOR","Korea SOP",2016,"For storage only",26,"47_Gokdudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10439,555512363,"KOR","Korea SOP",2016,"For storage only",26,"141_Goldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10521,555512364,"KOR","Korea SOP",2016,"For storage only",26,"155_Gomseom(ungdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10419,555512365,"KOR","Korea SOP",2016,"For storage only",26,"126_Gotdo(kkotseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10468,555512366,"KOR","Korea SOP",2016,"For storage only",26,"146_Goyeo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10489,555512367,"KOR","Korea SOP",2016,"For storage only",26,"22_Gwangdaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10415,555512368,"KOR","Korea SOP",2016,"For storage only",26,"25_Habajiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10534,555512369,"KOR","Korea SOP",2016,"For storage only",26,"152_Habisado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10444,555512370,"KOR","Korea SOP",2016,"For storage only",26,"41_Haenggeumdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10520,555512371,"KOR","Korea SOP",2016,"For storage only",26,"119_Hakseom(hakdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10498,555512372,"KOR","Korea SOP",2016,"For storage only",26,"14_Halmiyeom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10541,555512373,"KOR","Korea SOP",2016,"For storage only",26,"122_Heugeodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10413,555512374,"KOR","Korea SOP",2016,"For storage only",26,"132_Heukgeomdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10425,555512375,"KOR","Korea SOP",2016,"For storage only",26,"54_Hoenggyeondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10477,555512376,"KOR","Korea SOP",2016,"For storage only",26,"101_Hogamseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10545,555512377,"KOR","Korea SOP",2016,"For storage only",26,"27_Hongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10518,555512378,"KOR","Korea SOP",2016,"For storage only",26,"121_Hyanggido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10407,555512379,"KOR","Korea SOP",2016,"For storage only",26,"80_Hyeoldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10453,555512380,"KOR","Korea SOP",2016,"For storage only",26,"71_Jaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10553,555512381,"KOR","Korea SOP",2016,"For storage only",26,"156_Jamdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10514,555512382,"KOR","Korea SOP",2016,"For storage only",26,"84_Jangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10467,555512383,"KOR","Korea SOP",2016,"For storage only",26,"145_Janggudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10554,555512384,"KOR","Korea SOP",2016,"For storage only",26,"157_Jangguseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10455,555512385,"KOR","Korea SOP",2016,"For storage only",26,"91_Jinmokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10456,555512386,"KOR","Korea SOP",2016,"For storage only",26,"55_Jinseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10328,555512387,"KOR","Korea SOP",2016,"For storage only",26,"130_Jokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10549,555512388,"KOR","Korea SOP",2016,"For storage only",26,"140_Jujeonjaseom(saengdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10524,555512389,"KOR","Korea SOP",2016,"For storage only",26,"36_Jugamdo(Mido)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10462,555512390,"KOR","Korea SOP",2016,"For storage only",26,"147_Jukdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10460,555512391,"KOR","Korea SOP",2016,"For storage only",26,"89_Jukdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10491,555512392,"KOR","Korea SOP",2016,"For storage only",26,"24_Jungbajiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10342,555512393,"KOR","Korea SOP",2016,"For storage only",26,"65_Jungchilgido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10502,555512394,"KOR","Korea SOP",2016,"For storage only",26,"19_Jungtonggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10454,555512395,"KOR","Korea SOP",2016,"For storage only",26,"72_Junghwado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10544,555512396,"KOR","Korea SOP",2016,"For storage only",26,"30_Jwasarido(Jasarido)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10523,555512397,"KOR","Korea SOP",2016,"For storage only",26,"39_Maando","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10511,555512398,"KOR","Korea SOP",2016,"For storage only",26,"81_Mado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10543,555512400,"KOR","Korea SOP",2016,"For storage only",26,"136_Makdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10492,555512401,"KOR","Korea SOP",2016,"For storage only",26,"26_Meongaeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10486,555512402,"KOR","Korea SOP",2016,"For storage only",26,"45_Mokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10527,555512403,"KOR","Korea SOP",2016,"For storage only",26,"37_Mokdo(Budo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10532,555512404,"KOR","Korea SOP",2016,"For storage only",26,"154_Mullaeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10550,555512405,"KOR","Korea SOP",2016,"For storage only",26,"158_Muneobukdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10551,555512406,"KOR","Korea SOP",2016,"For storage only",26,"159_Muneonamdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10496,555512407,"KOR","Korea SOP",2016,"For storage only",26,"12_Mungtungdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10421,555512408,"KOR","Korea SOP",2016,"For storage only",26,"127_Myodo(tokkiseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10540,555512409,"KOR","Korea SOP",2016,"For storage only",26,"124_Myodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10429,555512410,"KOR","Korea SOP",2016,"For storage only",26,"108_Naejodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10548,555512411,"KOR","Korea SOP",2016,"For storage only",26,"138_Namhyeongjeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10426,555512412,"KOR","Korea SOP",2016,"For storage only",26,"48_Namuseom(sangmokdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10427,555512413,"KOR","Korea SOP",2016,"For storage only",26,"49_Napjakdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10437,555512414,"KOR","Korea SOP",2016,"For storage only",26,"43_Naptaegido(seodaegido)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10483,555512415,"KOR","Korea SOP",2016,"For storage only",26,"87_Odo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10423,555512416,"KOR","Korea SOP",2016,"For storage only",26,"52_Odo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10513,555512417,"KOR","Korea SOP",2016,"For storage only",26,"83_Odongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10327,555512418,"KOR","Korea SOP",2016,"For storage only",26,"31_Oebujido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10428,555512419,"KOR","Korea SOP",2016,"For storage only",26,"112_Oechido(keunttanchido)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10470,555512420,"KOR","Korea SOP",2016,"For storage only",26,"92_Oenseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10539,555512421,"KOR","Korea SOP",2016,"For storage only",26,"123_Okdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10526,555512422,"KOR","Korea SOP",2016,"For storage only",26,"35_Sado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10490,555512423,"KOR","Korea SOP",2016,"For storage only",26,"23_Sangbajiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10535,555512424,"KOR","Korea SOP",2016,"For storage only",26,"151_Sangbisado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10522,555512425,"KOR","Korea SOP",2016,"For storage only",26,"134_Sangjangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10531,555512426,"KOR","Korea SOP",2016,"For storage only",26,"33_Sejondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10505,555512427,"KOR","Korea SOP",2016,"For storage only",26,"4_Seokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10493,555512428,"KOR","Korea SOP",2016,"For storage only",26,"137_Seomando","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10459,555512429,"KOR","Korea SOP",2016,"For storage only",26,"59_Seomeoduji(eodudo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10494,555512430,"KOR","Korea SOP",2016,"For storage only",26,"10_Shindo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10536,555512431,"KOR","Korea SOP",2016,"For storage only",26,"113_Sobyeongdaedo(nureongseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10516,555512432,"KOR","Korea SOP",2016,"For storage only",26,"86_Socheomdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10530,555512433,"KOR","Korea SOP",2016,"For storage only",26,"34_Sochido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10343,555512434,"KOR","Korea SOP",2016,"For storage only",26,"66_Sochilgido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10497,555512435,"KOR","Korea SOP",2016,"For storage only",26,"13_Sochojido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10538,555512436,"KOR","Korea SOP",2016,"For storage only",26,"115_Sodapodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10448,555512437,"KOR","Korea SOP",2016,"For storage only",26,"63_Sodarangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10474,555512438,"KOR","Korea SOP",2016,"For storage only",26,"96_Soheosado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10433,555512439,"KOR","Korea SOP",2016,"For storage only",26,"106_Sohoenggyeongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10471,555512440,"KOR","Korea SOP",2016,"For storage only",26,"93_Sojeongseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10326,555512441,"KOR","Korea SOP",2016,"For storage only",26,"29_Sojido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10519,555512442,"KOR","Korea SOP",2016,"For storage only",26,"118_Solseom(akdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10422,555512443,"KOR","Korea SOP",2016,"For storage only",26,"128_Solseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10512,555512444,"KOR","Korea SOP",2016,"For storage only",26,"82_Somado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10525,555512445,"KOR","Korea SOP",2016,"For storage only",26,"135_Somokgwado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10411,555512446,"KOR","Korea SOP",2016,"For storage only",26,"116_Songdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10450,555512447,"KOR","Korea SOP",2016,"For storage only",26,"68_Songdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10436,555512448,"KOR","Korea SOP",2016,"For storage only",26,"76_Songdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10451,555512449,"KOR","Korea SOP",2016,"For storage only",26,"69_Sosado(geobukseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10463,555512450,"KOR","Korea SOP",2016,"For storage only",26,"148_Sosongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10509,555512451,"KOR","Korea SOP",2016,"For storage only",26,"8_Sosongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10501,555512452,"KOR","Korea SOP",2016,"For storage only",26,"18_Sotonggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10435,555512454,"KOR","Korea SOP",2016,"For storage only",26,"75_Soyeonpochodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10506,555512455,"KOR","Korea SOP",2016,"For storage only",26,"5_Suribong","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10507,555512456,"KOR","Korea SOP",2016,"For storage only",26,"6_Susido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10445,555512457,"KOR","Korea SOP",2016,"For storage only",26,"42_Tanhangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10515,555512458,"KOR","Korea SOP",2016,"For storage only",26,"85_Todo(tokkiseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10488,555512459,"KOR","Korea SOP",2016,"For storage only",26,"21_Tokkiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10500,555512460,"KOR","Korea SOP",2016,"For storage only",26,"17_Tonggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10418,555512461,"KOR","Korea SOP",2016,"For storage only",26,"111_Ttanjeonggeumdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10503,555512462,"KOR","Korea SOP",2016,"For storage only",26,"2_Udo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10481,555512463,"KOR","Korea SOP",2016,"For storage only",26,"129_Hwado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10533,555512464,"KOR","Korea SOP",2016,"For storage only",26,"153_Witdaehoseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10461,555512465,"KOR","Korea SOP",2016,"For storage only",26,"60_Wondo2(durongseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10469,555512466,"KOR","Korea SOP",2016,"For storage only",26,"90_Wondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10517,555512467,"KOR","Korea SOP",2016,"For storage only",26,"120_Umuseom(umudo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10473,555512468,"KOR","Korea SOP",2016,"For storage only",26,"95_Yeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9966,555512469,"KOR","Korea SOP",2016,"For storage only",26,"Damyang Riverine Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9960,555512470,"KOR","Korea SOP",2016,"For storage only",26,"Du-ung Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9971,555512471,"KOR","Korea SOP",2016,"For storage only",26,"Hangang Estuary","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9956,555512472,"KOR","Korea SOP",2016,"For storage only",26,"Hwa-eomneup","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9953,555512473,"KOR","Korea SOP",2016,"For storage only",26,"Jangdo Island High Moor","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9958,555512474,"KOR","Korea SOP",2016,"For storage only",26,"Moojechineup","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9959,555512475,"KOR","Korea SOP",2016,"For storage only",26,"Mulyeongari-oreum","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9965,555512476,"KOR","Korea SOP",2016,"For storage only",26,"Nakdonggang Estuary","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9954,555512477,"KOR","Korea SOP",2016,"For storage only",26,"Sajapyeong of Jaeyaksan(Mt.)","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9972,555512478,"KOR","Korea SOP",2016,"For storage only",26,"Sinbulsan Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9973,555512479,"KOR","Korea SOP",2016,"For storage only",26,"Upo Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9957,555512480,"KOR","Korea SOP",2016,"For storage only",26,"Yongneup of Mount Daeam","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9974,555512481,"KOR","MPA MEE",2017,"For storage only",26,"Gochang","Wetland Protected Area - Tidal Flat","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -26897,555512498,"CHE","National Inventory",2011,"For storage only",37,"Sur Pévraz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26898,555512499,"CHE","National Inventory",2011,"For storage only",37,"Moille Saulaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26899,555512500,"CHE","National Inventory",2011,"For storage only",37,"La Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26900,555512501,"CHE","National Inventory",2011,"For storage only",37,"Villard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26901,555512502,"CHE","National Inventory",2011,"For storage only",37,"Haut de Baume","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26902,555512503,"CHE","National Inventory",2011,"For storage only",37,"Les Rochettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26903,555512504,"CHE","National Inventory",2011,"For storage only",37,"Valeyres-sous-Montagny","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26904,555512505,"CHE","National Inventory",2011,"For storage only",37,"Le Marais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26905,555512506,"CHE","National Inventory",2011,"For storage only",37,"Le Guenéflin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26906,555512507,"CHE","National Inventory",2011,"For storage only",37,"Les Piauliauses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26907,555512508,"CHE","National Inventory",2011,"For storage only",37,"Nidau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26908,555512509,"CHE","National Inventory",2011,"For storage only",37,"Venchellez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26909,555512510,"CHE","National Inventory",2011,"For storage only",37,"Salauroz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26910,555512511,"CHE","National Inventory",2011,"For storage only",37,"Les Linardes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26911,555512512,"CHE","National Inventory",2011,"For storage only",37,"Les Vernes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26912,555512513,"CHE","National Inventory",2011,"For storage only",37,"Le Lanciau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26913,555512514,"CHE","National Inventory",2011,"For storage only",37,"Fenil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26914,555512515,"CHE","National Inventory",2011,"For storage only",37,"Chemin d'Aubonne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26915,555512516,"CHE","National Inventory",2011,"For storage only",37,"Les Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26916,555512517,"CHE","National Inventory",2011,"For storage only",37,"Töbeliberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26917,555512518,"CHE","National Inventory",2011,"For storage only",37,"La Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26918,555512519,"CHE","National Inventory",2011,"For storage only",37,"Le Signal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26919,555512520,"CHE","National Inventory",2011,"For storage only",37,"Le Mont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26920,555512521,"CHE","National Inventory",2011,"For storage only",37,"Pré Defour","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26921,555512522,"CHE","National Inventory",2011,"For storage only",37,"Sur Crause","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26922,555512523,"CHE","National Inventory",2011,"For storage only",37,"Noches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26923,555512524,"CHE","National Inventory",2011,"For storage only",37,"Chamblon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26924,555512525,"CHE","National Inventory",2011,"For storage only",37,"La Bahyse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26925,555512526,"CHE","National Inventory",2011,"For storage only",37,"La Violette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26926,555512527,"CHE","National Inventory",2011,"For storage only",37,"Maconnex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26927,555512528,"CHE","National Inventory",2011,"For storage only",37,"La Condemine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26928,555512529,"CHE","National Inventory",2011,"For storage only",37,"La Scie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26929,555512530,"CHE","National Inventory",2011,"For storage only",37,"Sur le Mont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26930,555512531,"CHE","National Inventory",2011,"For storage only",37,"Chentres","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26931,555512532,"CHE","National Inventory",2011,"For storage only",37,"La Pièce","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26932,555512533,"CHE","National Inventory",2011,"For storage only",37,"Pré du Moulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26933,555512534,"CHE","National Inventory",2011,"For storage only",37,"Gottettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26934,555512535,"CHE","National Inventory",2011,"For storage only",37,"Le Puisoir","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26935,555512536,"CHE","National Inventory",2011,"For storage only",37,"Le Signal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26936,555512537,"CHE","National Inventory",2011,"For storage only",37,"Sur Pévraz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26937,555512538,"CHE","National Inventory",2011,"For storage only",37,"Les Eterpis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26938,555512539,"CHE","National Inventory",2011,"For storage only",37,"Les Allévays","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26939,555512540,"CHE","National Inventory",2011,"For storage only",37,"Vuichime","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26940,555512541,"CHE","National Inventory",2011,"For storage only",37,"Ondallaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26941,555512542,"CHE","National Inventory",2011,"For storage only",37,"Champ Courbe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26942,555512543,"CHE","National Inventory",2011,"For storage only",37,"Bois Guyot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26943,555512544,"CHE","National Inventory",2011,"For storage only",37,"Les Guébettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26944,555512545,"CHE","National Inventory",2011,"For storage only",37,"Mont Proveire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26945,555512546,"CHE","National Inventory",2011,"For storage only",37,"Colonie de St-Gervais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26946,555512547,"CHE","National Inventory",2011,"For storage only",37,"Sur Crause","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26947,555512548,"CHE","National Inventory",2011,"For storage only",37,"Maconnex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26948,555512549,"CHE","National Inventory",2011,"For storage only",37,"Trembley","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26949,555512550,"CHE","National Inventory",2011,"For storage only",37,"Champ Cherdon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26950,555512551,"CHE","National Inventory",2011,"For storage only",37,"Les Bessonnes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26951,555512552,"CHE","National Inventory",2011,"For storage only",37,"Bochat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26952,555512553,"CHE","National Inventory",2011,"For storage only",37,"Les Râpes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26953,555512554,"CHE","National Inventory",2011,"For storage only",37,"Beauregard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26954,555512555,"CHE","National Inventory",2011,"For storage only",37,"Forel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26955,555512556,"CHE","National Inventory",2011,"For storage only",37,"Volaille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26956,555512558,"CHE","National Inventory",2011,"For storage only",37,"Grenive","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26957,555512559,"CHE","National Inventory",2011,"For storage only",37,"Criblet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26958,555512560,"CHE","National Inventory",2011,"For storage only",37,"Schnebelhorn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26959,555512561,"CHE","National Inventory",2011,"For storage only",37,"Chât.","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26960,555512562,"CHE","National Inventory",2011,"For storage only",37,"Plan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26961,555512563,"CHE","National Inventory",2011,"For storage only",37,"Jugny","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26962,555512564,"CHE","National Inventory",2011,"For storage only",37,"Maupas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26963,555512565,"CHE","National Inventory",2011,"For storage only",37,"Oulens-sur-Lucens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26964,555512566,"CHE","National Inventory",2011,"For storage only",37,"Givrins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26965,555512567,"CHE","National Inventory",2011,"For storage only",37,"Chât. de la Motte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26966,555512568,"CHE","National Inventory",2011,"For storage only",37,"Clin. La Joy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26967,555512569,"CHE","National Inventory",2011,"For storage only",37,"La Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26968,555512570,"CHE","National Inventory",2011,"For storage only",37,"Les Ecaravez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26969,555512571,"CHE","National Inventory",2011,"For storage only",37,"La Conversion","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26970,555512572,"CHE","National Inventory",2011,"For storage only",37,"Moille Saulaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26971,555512573,"CHE","National Inventory",2011,"For storage only",37,"Les Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26972,555512575,"CHE","National Inventory",2011,"For storage only",37,"Sur Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26973,555512576,"CHE","National Inventory",2011,"For storage only",37,"Vimont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26974,555512577,"CHE","National Inventory",2011,"For storage only",37,"Brochatton","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26975,555512578,"CHE","National Inventory",2011,"For storage only",37,"Pra Mallon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26976,555512579,"CHE","National Inventory",2011,"For storage only",37,"Vogelberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26977,555512580,"CHE","National Inventory",2011,"For storage only",37,"Champ de la Croix","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26978,555512581,"CHE","National Inventory",2011,"For storage only",37,"Sautodoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26979,555512582,"CHE","National Inventory",2011,"For storage only",37,"Les Verraux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26980,555512583,"CHE","National Inventory",2011,"For storage only",37,"Schwamm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26981,555512584,"CHE","National Inventory",2011,"For storage only",37,"Bärengraben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26982,555512585,"CHE","National Inventory",2011,"For storage only",37,"Chellenspitz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26983,555512586,"CHE","National Inventory",2011,"For storage only",37,"Schochen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26984,555512587,"CHE","National Inventory",2011,"For storage only",37,"Flisalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26985,555512588,"CHE","National Inventory",2011,"For storage only",37,"La Crêta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26986,555512589,"CHE","National Inventory",2011,"For storage only",37,"La Daille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26987,555512590,"CHE","National Inventory",2011,"For storage only",37,"Erschmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26988,555512591,"CHE","National Inventory",2011,"For storage only",37,"Milachra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26989,555512592,"CHE","National Inventory",2011,"For storage only",37,"Warbfliewildi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26990,555512593,"CHE","National Inventory",2011,"For storage only",37,"Undri Senggalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26991,555512594,"CHE","National Inventory",2011,"For storage only",37,"Meigge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26992,555512595,"CHE","National Inventory",2011,"For storage only",37,"Eggachra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26993,555512596,"CHE","National Inventory",2011,"For storage only",37,"Ulrichen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26994,555512597,"CHE","National Inventory",2011,"For storage only",37,"Gluringen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26995,555512598,"CHE","National Inventory",2011,"For storage only",37,"Gerynloibina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26996,555512599,"CHE","National Inventory",2011,"For storage only",37,"Chruiterre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26997,555512600,"CHE","National Inventory",2011,"For storage only",37,"Riedhalte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26998,555512601,"CHE","National Inventory",2011,"For storage only",37,"Turand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -26999,555512602,"CHE","National Inventory",2011,"For storage only",37,"Rufinu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27000,555512603,"CHE","National Inventory",2011,"For storage only",37,"Biela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27001,555512604,"CHE","National Inventory",2011,"For storage only",37,"Sädol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27002,555512605,"CHE","National Inventory",2011,"For storage only",37,"Gurru","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27003,555512606,"CHE","National Inventory",2011,"For storage only",37,"Tännji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27004,555512607,"CHE","National Inventory",2011,"For storage only",37,"Mettje","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27005,555512608,"CHE","National Inventory",2011,"For storage only",37,"Chalchofe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27006,555512609,"CHE","National Inventory",2011,"For storage only",37,"Blatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27007,555512610,"CHE","National Inventory",2011,"For storage only",37,"Chleis Bärgji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27008,555512611,"CHE","National Inventory",2011,"For storage only",37,"Lengmüra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27009,555512612,"CHE","National Inventory",2011,"For storage only",37,"Chumma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27010,555512613,"CHE","National Inventory",2011,"For storage only",37,"Giblatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27011,555512614,"CHE","National Inventory",2011,"For storage only",37,"Stadelgufer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27012,555512615,"CHE","National Inventory",2011,"For storage only",37,"Unneri Brich","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27013,555512616,"CHE","National Inventory",2011,"For storage only",37,"Lipbode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27014,555512617,"CHE","National Inventory",2011,"For storage only",37,"Ritsche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27015,555512618,"CHE","National Inventory",2011,"For storage only",37,"Chrizhubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27016,555512619,"CHE","National Inventory",2011,"For storage only",37,"Undri Bächi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27017,555512620,"CHE","National Inventory",2011,"For storage only",37,"Zum Chriz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27018,555512621,"CHE","National Inventory",2011,"For storage only",37,"Hochastler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27019,555512622,"CHE","National Inventory",2011,"For storage only",37,"Windegge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27020,555512623,"CHE","National Inventory",2011,"For storage only",37,"Obri Hellela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27021,555512624,"CHE","National Inventory",2011,"For storage only",37,"Hasolfura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27022,555512625,"CHE","National Inventory",2011,"For storage only",37,"Riedbode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27023,555512626,"CHE","National Inventory",2011,"For storage only",37,"Widum","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27024,555512627,"CHE","National Inventory",2011,"For storage only",37,"Kapittol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27025,555512628,"CHE","National Inventory",2011,"For storage only",37,"Märufälli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27026,555512629,"CHE","National Inventory",2011,"For storage only",37,"Ze Stubjine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27027,555512630,"CHE","National Inventory",2011,"For storage only",37,"Chumme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27028,555512631,"CHE","National Inventory",2011,"For storage only",37,"Ritzmad","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27029,555512632,"CHE","National Inventory",2011,"For storage only",37,"Arbächnubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27030,555512633,"CHE","National Inventory",2011,"For storage only",37,"Chumma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27031,555512634,"CHE","National Inventory",2011,"For storage only",37,"Rämi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27032,555512635,"CHE","National Inventory",2011,"For storage only",37,"Obri Matte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27033,555512636,"CHE","National Inventory",2011,"For storage only",37,"Mattachra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27034,555512637,"CHE","National Inventory",2011,"For storage only",37,"Leiggern","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27035,555512638,"CHE","National Inventory",2011,"For storage only",37,"Obers Filet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27036,555512639,"CHE","National Inventory",2011,"For storage only",37,"Vatseret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27037,555512640,"CHE","National Inventory",2011,"For storage only",37,"Châteaunie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27038,555512641,"CHE","National Inventory",2011,"For storage only",37,"Planitschat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27039,555512642,"CHE","National Inventory",2011,"For storage only",37,"Pfarschong","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27040,555512643,"CHE","National Inventory",2011,"For storage only",37,"Mondralèche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27041,555512644,"CHE","National Inventory",2011,"For storage only",37,"Alpage des Génissons","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27042,555512645,"CHE","National Inventory",2011,"For storage only",37,"Trämel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27043,555512646,"CHE","National Inventory",2011,"For storage only",37,"Hori","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27044,555512647,"CHE","National Inventory",2011,"For storage only",37,"La Comalire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27045,555512648,"CHE","National Inventory",2011,"For storage only",37,"Les Caves","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27046,555512649,"CHE","National Inventory",2011,"For storage only",37,"Groggrü","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27047,555512650,"CHE","National Inventory",2011,"For storage only",37,"Biela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27048,555512651,"CHE","National Inventory",2011,"For storage only",37,"Russubrunnu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27049,555512652,"CHE","National Inventory",2011,"For storage only",37,"Le Samarin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27050,555512653,"CHE","National Inventory",2011,"For storage only",37,"Tschanderünu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27051,555512654,"CHE","National Inventory",2011,"For storage only",37,"Ravouire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27052,555512655,"CHE","National Inventory",2011,"For storage only",37,"Chalais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27053,555512656,"CHE","National Inventory",2011,"For storage only",37,"Crête Longue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27054,555512657,"CHE","National Inventory",2011,"For storage only",37,"Granges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27055,555512658,"CHE","National Inventory",2011,"For storage only",37,"Chelin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27056,555512659,"CHE","National Inventory",2011,"For storage only",37,"Crête Longue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27057,555512660,"CHE","National Inventory",2011,"For storage only",37,"Cochetta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27058,555512661,"CHE","National Inventory",2011,"For storage only",37,"Chât. de la Soie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27059,555512662,"CHE","National Inventory",2011,"For storage only",37,"Tourbillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27060,555512663,"CHE","National Inventory",2011,"For storage only",37,"Pramilon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27061,555512664,"CHE","National Inventory",2011,"For storage only",37,"Mont d'Orge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27062,555512665,"CHE","National Inventory",2011,"For storage only",37,"Saut du Chien","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27063,555512666,"CHE","National Inventory",2011,"For storage only",37,"Plan des Biolles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27064,555512667,"CHE","National Inventory",2011,"For storage only",37,"Les Crêtes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27065,555512668,"CHE","National Inventory",2011,"For storage only",37,"Häüschbiele","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27066,555512669,"CHE","National Inventory",2011,"For storage only",37,"Les Bioleys","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27067,555512670,"CHE","National Inventory",2011,"For storage only",37,"Undri Läger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27068,555512671,"CHE","National Inventory",2011,"For storage only",37,"Siwibode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27069,555512672,"CHE","National Inventory",2011,"For storage only",37,"Chalchofe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27070,555512673,"CHE","National Inventory",2011,"For storage only",37,"Mayens de Cotter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27071,555512674,"CHE","National Inventory",2011,"For storage only",37,"Gufer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27072,555512675,"CHE","National Inventory",2011,"For storage only",37,"Stn. Hannig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27073,555512676,"CHE","National Inventory",2011,"For storage only",37,"Les Lachiores","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27074,555512677,"CHE","National Inventory",2011,"For storage only",37,"Berter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27075,555512678,"CHE","National Inventory",2011,"For storage only",37,"Le Tsaté","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27076,555512679,"CHE","National Inventory",2011,"For storage only",37,"Motau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27077,555512680,"CHE","National Inventory",2011,"For storage only",37,"Bréona","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27078,555512681,"CHE","National Inventory",2011,"For storage only",37,"Bréona","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27079,555512682,"CHE","National Inventory",2011,"For storage only",37,"Les Lattes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27080,555512683,"CHE","National Inventory",2011,"For storage only",37,"Mittelzug","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27081,555512684,"CHE","National Inventory",2011,"For storage only",37,"Tschampenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27082,555512685,"CHE","National Inventory",2011,"For storage only",37,"Obers Nussböüm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27083,555512686,"CHE","National Inventory",2011,"For storage only",37,"Egga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27084,555512687,"CHE","National Inventory",2011,"For storage only",37,"Bisterli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27085,555512688,"CHE","National Inventory",2011,"For storage only",37,"Wyde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27086,555512689,"CHE","National Inventory",2011,"For storage only",37,"Salzgäbchnubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27087,555512690,"CHE","National Inventory",2011,"For storage only",37,"Fure","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27088,555512691,"CHE","National Inventory",2011,"For storage only",37,"Wasen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27089,555512692,"CHE","National Inventory",2011,"For storage only",37,"Massegga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27090,555512693,"CHE","National Inventory",2011,"For storage only",37,"Im undere Schitter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27091,555512694,"CHE","National Inventory",2011,"For storage only",37,"Baletscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27092,555512695,"CHE","National Inventory",2011,"For storage only",37,"Walau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27093,555512696,"CHE","National Inventory",2011,"For storage only",37,"Oberbann","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27094,555512697,"CHE","National Inventory",2011,"For storage only",37,"Varen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27095,555512698,"CHE","National Inventory",2011,"For storage only",37,"Tschachtela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27096,555512699,"CHE","National Inventory",2011,"For storage only",37,"Obloch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27097,555512700,"CHE","National Inventory",2011,"For storage only",37,"Balme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27098,555512701,"CHE","National Inventory",2011,"For storage only",37,"Hubil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27099,555512702,"CHE","National Inventory",2011,"For storage only",37,"Dorbon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27100,555512703,"CHE","National Inventory",2011,"For storage only",37,"Darnona d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27101,555512704,"CHE","National Inventory",2011,"For storage only",37,"Milljere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27102,555512705,"CHE","National Inventory",2011,"For storage only",37,"Seillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27103,555512706,"CHE","National Inventory",2011,"For storage only",37,"Les Condémines","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27104,555512707,"CHE","National Inventory",2011,"For storage only",37,"Rnes du Chât. d'Ayent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27105,555512708,"CHE","National Inventory",2011,"For storage only",37,"Ste-Madeleine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27106,555512709,"CHE","National Inventory",2011,"For storage only",37,"Stadtner Lüsis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27107,555512710,"CHE","National Inventory",2011,"For storage only",37,"Argnoud d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27108,555512711,"CHE","National Inventory",2011,"For storage only",37,"Hannig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27109,555512712,"CHE","National Inventory",2011,"For storage only",37,"Bode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27110,555512713,"CHE","National Inventory",2011,"For storage only",37,"Site","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27111,555512714,"CHE","National Inventory",2011,"For storage only",37,"Grand'Fin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27112,555512715,"CHE","National Inventory",2011,"For storage only",37,"Bina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27113,555512716,"CHE","National Inventory",2011,"For storage only",37,"Oberi Site","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27114,555512717,"CHE","National Inventory",2011,"For storage only",37,"Burgachra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27115,555512718,"CHE","National Inventory",2011,"For storage only",37,"Breitplangg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27116,555512719,"CHE","National Inventory",2011,"For storage only",37,"Hofmatte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27117,555512720,"CHE","National Inventory",2011,"For storage only",37,"Coma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27118,555512721,"CHE","National Inventory",2011,"For storage only",37,"Wäng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27119,555512722,"CHE","National Inventory",2011,"For storage only",37,"Schüfla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27120,555512723,"CHE","National Inventory",2011,"For storage only",37,"Roti Flüe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27121,555512724,"CHE","National Inventory",2011,"For storage only",37,"Bärgji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27122,555512725,"CHE","National Inventory",2011,"For storage only",37,"Ze Zimmeru","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27123,555512726,"CHE","National Inventory",2011,"For storage only",37,"La Pirra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27124,555512727,"CHE","National Inventory",2011,"For storage only",37,"Le Bioley","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27125,555512728,"CHE","National Inventory",2011,"For storage only",37,"Chegelplatz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27126,555512729,"CHE","National Inventory",2011,"For storage only",37,"Riedwäng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27127,555512730,"CHE","National Inventory",2011,"For storage only",37,"Falggelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27128,555512731,"CHE","National Inventory",2011,"For storage only",37,"La Crêta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27129,555512732,"CHE","National Inventory",2011,"For storage only",37,"Hannig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27130,555512733,"CHE","National Inventory",2011,"For storage only",37,"Volovron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27131,555512734,"CHE","National Inventory",2011,"For storage only",37,"Les Flanmayens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27132,555512735,"CHE","National Inventory",2011,"For storage only",37,"Les Crouyes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27133,555512736,"CHE","National Inventory",2011,"For storage only",37,"La Niva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27134,555512737,"CHE","National Inventory",2011,"For storage only",37,"La Giette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27135,555512738,"CHE","National Inventory",2011,"For storage only",37,"Les Chottes de l'Etoile","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27136,555512739,"CHE","National Inventory",2011,"For storage only",37,"Les Haudères","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27137,555512740,"CHE","National Inventory",2011,"For storage only",37,"Les Saulesses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27138,555512741,"CHE","National Inventory",2011,"For storage only",37,"Le Légeret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27139,555512742,"CHE","National Inventory",2011,"For storage only",37,"Zermettjen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27140,555512743,"CHE","National Inventory",2011,"For storage only",37,"Wang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27141,555512744,"CHE","National Inventory",2011,"For storage only",37,"Rosswang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27142,555512745,"CHE","National Inventory",2011,"For storage only",37,"Furggegga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27143,555512746,"CHE","National Inventory",2011,"For storage only",37,"Hermetje","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27144,555512747,"CHE","National Inventory",2011,"For storage only",37,"Longeraie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27145,555512748,"CHE","National Inventory",2011,"For storage only",37,"Corbassières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27146,555512749,"CHE","National Inventory",2011,"For storage only",37,"Longeraie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27147,555512750,"CHE","National Inventory",2011,"For storage only",37,"La Ravoire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27148,555512751,"CHE","National Inventory",2011,"For storage only",37,"La Theuse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27149,555512752,"CHE","National Inventory",2011,"For storage only",37,"Les Combes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27150,555512753,"CHE","National Inventory",2011,"For storage only",37,"La Ravoire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27151,555512754,"CHE","National Inventory",2011,"For storage only",37,"Altes Hospiz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27152,555512755,"CHE","National Inventory",2011,"For storage only",37,"Saillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27153,555512756,"CHE","National Inventory",2011,"For storage only",37,"Longeraie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27154,555512757,"CHE","National Inventory",2011,"For storage only",37,"Le Vernet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27155,555512758,"CHE","National Inventory",2011,"For storage only",37,"Cheller","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27156,555512759,"CHE","National Inventory",2011,"For storage only",37,"Bord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27157,555512760,"CHE","National Inventory",2011,"For storage only",37,"Le Four","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27158,555512761,"CHE","National Inventory",2011,"For storage only",37,"Chrizstafel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27159,555512762,"CHE","National Inventory",2011,"For storage only",37,"Pirra de Ban","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27160,555512763,"CHE","National Inventory",2011,"For storage only",37,"Dorbu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27161,555512764,"CHE","National Inventory",2011,"For storage only",37,"Plan de l'Ortie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27162,555512765,"CHE","National Inventory",2011,"For storage only",37,"Isérables","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27163,555512766,"CHE","National Inventory",2011,"For storage only",37,"Oberdeisch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27164,555512767,"CHE","National Inventory",2011,"For storage only",37,"Montbas Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27165,555512768,"CHE","National Inventory",2011,"For storage only",37,"Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27166,555512769,"CHE","National Inventory",2011,"For storage only",37,"Engi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27167,555512770,"CHE","National Inventory",2011,"For storage only",37,"Oberwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27168,555512771,"CHE","National Inventory",2011,"For storage only",37,"Obri Eist","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27169,555512772,"CHE","National Inventory",2011,"For storage only",37,"Villette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27170,555512773,"CHE","National Inventory",2011,"For storage only",37,"Mittleri Hellela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27171,555512774,"CHE","National Inventory",2011,"For storage only",37,"Sous Roux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27172,555512775,"CHE","National Inventory",2011,"For storage only",37,"Wasserfallen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27173,555512776,"CHE","National Inventory",2011,"For storage only",37,"Faldumalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27174,555512777,"CHE","National Inventory",2011,"For storage only",37,"Sengg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27175,555512778,"CHE","National Inventory",2011,"For storage only",37,"Tignousa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27176,555512779,"CHE","National Inventory",2011,"For storage only",37,"Rne du Chât. du Crest","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27177,555512780,"CHE","National Inventory",2011,"For storage only",37,"Pâturage de Chanso","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27178,555512781,"CHE","National Inventory",2011,"For storage only",37,"Alti Gadme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27179,555512782,"CHE","National Inventory",2011,"For storage only",37,"Les Salaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27180,555512783,"CHE","National Inventory",2011,"For storage only",37,"Chanton de Reppaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27181,555512784,"CHE","National Inventory",2011,"For storage only",37,"Trionna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27182,555512785,"CHE","National Inventory",2011,"For storage only",37,"Hegi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27183,555512786,"CHE","National Inventory",2011,"For storage only",37,"Montbas Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27184,555512787,"CHE","National Inventory",2011,"For storage only",37,"Wyssus Löüb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27185,555512788,"CHE","National Inventory",2011,"For storage only",37,"L'Infloria","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27186,555512789,"CHE","National Inventory",2011,"For storage only",37,"Sex de Gru","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27187,555512790,"CHE","National Inventory",2011,"For storage only",37,"Grund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27188,555512791,"CHE","National Inventory",2011,"For storage only",37,"Le Châtelard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27189,555512792,"CHE","National Inventory",2011,"For storage only",37,"Combère","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27190,555512793,"CHE","National Inventory",2011,"For storage only",37,"Ritti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27191,555512794,"CHE","National Inventory",2011,"For storage only",37,"Alamont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27192,555512795,"CHE","National Inventory",2011,"For storage only",37,"Oberu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27193,555512796,"CHE","National Inventory",2011,"For storage only",37,"Meiggera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27194,555512797,"CHE","National Inventory",2011,"For storage only",37,"Le Nez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27195,555512798,"CHE","National Inventory",2011,"For storage only",37,"Pfaffmatte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27196,555512799,"CHE","National Inventory",2011,"For storage only",37,"Sämsu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27197,555512800,"CHE","National Inventory",2011,"For storage only",37,"Pro Paron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27198,555512801,"CHE","National Inventory",2011,"For storage only",37,"Guggina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27199,555512802,"CHE","National Inventory",2011,"For storage only",37,"Les Cleives","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27200,555512803,"CHE","National Inventory",2011,"For storage only",37,"Fiou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27201,555512804,"CHE","National Inventory",2011,"For storage only",37,"Les Troncs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27202,555512805,"CHE","National Inventory",2011,"For storage only",37,"Lousine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27203,555512806,"CHE","National Inventory",2011,"For storage only",37,"Les Cadraux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27204,555512807,"CHE","National Inventory",2011,"For storage only",37,"L'Aiguille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27205,555512808,"CHE","National Inventory",2011,"For storage only",37,"Buitonnaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27206,555512809,"CHE","National Inventory",2011,"For storage only",37,"Hubelti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27207,555512810,"CHE","National Inventory",2011,"For storage only",37,"Le Teret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27208,555512811,"CHE","National Inventory",2011,"For storage only",37,"Chamosentze","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27209,555512812,"CHE","National Inventory",2011,"For storage only",37,"Hobiel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27210,555512813,"CHE","National Inventory",2011,"For storage only",37,"Mayens de Pinsec","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27211,555512814,"CHE","National Inventory",2011,"For storage only",37,"Prassurny","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27212,555512815,"CHE","National Inventory",2011,"For storage only",37,"Erli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27213,555512816,"CHE","National Inventory",2011,"For storage only",37,"Chamoille d'Orsières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27214,555512817,"CHE","National Inventory",2011,"For storage only",37,"Sal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27215,555512818,"CHE","National Inventory",2011,"For storage only",37,"Heji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27216,555512819,"CHE","National Inventory",2011,"For storage only",37,"Cleusette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27217,555512820,"CHE","National Inventory",2011,"For storage only",37,"Les Fourches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27218,555512821,"CHE","National Inventory",2011,"For storage only",37,"Les Foillêts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27219,555512822,"CHE","National Inventory",2011,"For storage only",37,"Lirschigrabu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27220,555512823,"CHE","National Inventory",2011,"For storage only",37,"Balma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27221,555512824,"CHE","National Inventory",2011,"For storage only",37,"Les Creux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27222,555512825,"CHE","National Inventory",2011,"For storage only",37,"Les Vernasses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27223,555512826,"CHE","National Inventory",2011,"For storage only",37,"Champlong","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27224,555512827,"CHE","National Inventory",2011,"For storage only",37,"Holzerehischer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27225,555512828,"CHE","National Inventory",2011,"For storage only",37,"Unnerfäld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27226,555512829,"CHE","National Inventory",2011,"For storage only",37,"Wäng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27227,555512830,"CHE","National Inventory",2011,"For storage only",37,"Les Planches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27228,555512831,"CHE","National Inventory",2011,"For storage only",37,"Binnegga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27229,555512832,"CHE","National Inventory",2011,"For storage only",37,"Commeire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27230,555512833,"CHE","National Inventory",2011,"For storage only",37,"Randonne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27231,555512834,"CHE","National Inventory",2011,"For storage only",37,"Chälmatta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27232,555512835,"CHE","National Inventory",2011,"For storage only",37,"Haselleen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27233,555512836,"CHE","National Inventory",2011,"For storage only",37,"Et. Lombardon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27234,555512837,"CHE","National Inventory",2011,"For storage only",37,"Sur le Mont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27235,555512838,"CHE","National Inventory",2011,"For storage only",37,"Genièvre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27236,555512839,"CHE","National Inventory",2011,"For storage only",37,"Les Planches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27237,555512840,"CHE","National Inventory",2011,"For storage only",37,"Schwenni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27238,555512841,"CHE","National Inventory",2011,"For storage only",37,"Châtelard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27239,555512842,"CHE","National Inventory",2011,"For storage only",37,"Neuau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27240,555512843,"CHE","National Inventory",2011,"For storage only",37,"Les Evouettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27241,555512844,"CHE","National Inventory",2011,"For storage only",37,"Hanschbiel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27242,555512845,"CHE","National Inventory",2011,"For storage only",37,"Chatzhalte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27243,555512846,"CHE","National Inventory",2011,"For storage only",37,"Ponchet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27244,555512847,"CHE","National Inventory",2011,"For storage only",37,"Tsanfleuron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27245,555512848,"CHE","National Inventory",2011,"For storage only",37,"La Crêta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27246,555512849,"CHE","National Inventory",2011,"For storage only",37,"Niesch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27247,555512850,"CHE","National Inventory",2011,"For storage only",37,"Levron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27248,555512851,"CHE","National Inventory",2011,"For storage only",37,"Rappe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27249,555512852,"CHE","National Inventory",2011,"For storage only",37,"Fracette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27250,555512853,"CHE","National Inventory",2011,"For storage only",37,"Cheseule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27251,555512854,"CHE","National Inventory",2011,"For storage only",37,"Les Planches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27252,555512855,"CHE","National Inventory",2011,"For storage only",37,"La Couronne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27253,555512856,"CHE","National Inventory",2011,"For storage only",37,"Les Follatères","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27254,555512857,"CHE","National Inventory",2011,"For storage only",37,"Biolly","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27255,555512858,"CHE","National Inventory",2011,"For storage only",37,"Planches de Mazembroz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27256,555512859,"CHE","National Inventory",2011,"For storage only",37,"Le Tieudray","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27257,555512860,"CHE","National Inventory",2011,"For storage only",37,"Les Pontis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27258,555512861,"CHE","National Inventory",2011,"For storage only",37,"Les Clèves","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27259,555512862,"CHE","National Inventory",2011,"For storage only",37,"Le Poyou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27260,555512863,"CHE","National Inventory",2011,"For storage only",37,"Charmex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27261,555512864,"CHE","National Inventory",2011,"For storage only",37,"Plex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27262,555512865,"CHE","National Inventory",2011,"For storage only",37,"Les Barmes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27263,555512866,"CHE","National Inventory",2011,"For storage only",37,"Mayen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27264,555512867,"CHE","National Inventory",2011,"For storage only",37,"Ayer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27265,555512868,"CHE","National Inventory",2011,"For storage only",37,"Palasuit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27266,555512869,"CHE","National Inventory",2011,"For storage only",37,"La Gîte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27267,555512870,"CHE","National Inventory",2011,"For storage only",37,"Pont de Tsarevesse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27268,555512871,"CHE","National Inventory",2011,"For storage only",37,"Rüfenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27269,555512872,"CHE","National Inventory",2011,"For storage only",37,"Saxé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27270,555512873,"CHE","National Inventory",2011,"For storage only",37,"Creux Devant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27271,555512874,"CHE","National Inventory",2011,"For storage only",37,"St-Maurice","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27272,555512875,"CHE","National Inventory",2011,"For storage only",37,"Ormeaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27273,555512876,"CHE","National Inventory",2011,"For storage only",37,"Usser Gornerli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27274,555512877,"CHE","National Inventory",2011,"For storage only",37,"Liggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27275,555512878,"CHE","National Inventory",2011,"For storage only",37,"Sex Riond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27276,555512879,"CHE","National Inventory",2011,"For storage only",37,"Pas de Braye","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27277,555512880,"CHE","National Inventory",2011,"For storage only",37,"Schipfe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27278,555512881,"CHE","National Inventory",2011,"For storage only",37,"Lovenex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27279,555512882,"CHE","National Inventory",2011,"For storage only",37,"Flesche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27280,555512883,"CHE","National Inventory",2011,"For storage only",37,"Gappil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27281,555512884,"CHE","National Inventory",2011,"For storage only",37,"Les Planches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27282,555512885,"CHE","National Inventory",2011,"For storage only",37,"Blagghalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27283,555512886,"CHE","National Inventory",2011,"For storage only",37,"Usser Gornerli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27284,555512887,"CHE","National Inventory",2011,"For storage only",37,"Küeschtewasen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27285,555512888,"CHE","National Inventory",2011,"For storage only",37,"Vordere Better","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27286,555512889,"CHE","National Inventory",2011,"For storage only",37,"Better","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27287,555512890,"CHE","National Inventory",2011,"For storage only",37,"Eidenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27288,555512891,"CHE","National Inventory",2011,"For storage only",37,"Stauberenfirst","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27289,555512892,"CHE","National Inventory",2011,"For storage only",37,"Stelli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27290,555512893,"CHE","National Inventory",2011,"For storage only",37,"Stoss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27291,555512894,"CHE","National Inventory",2011,"For storage only",37,"Saxer Heuberge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27292,555512895,"CHE","National Inventory",2011,"For storage only",37,"Sonnenbüchel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27293,555512896,"CHE","National Inventory",2011,"For storage only",37,"Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27294,555512897,"CHE","National Inventory",2011,"For storage only",37,"Bergheim","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27295,555512898,"CHE","National Inventory",2011,"For storage only",37,"Bovel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27296,555512899,"CHE","National Inventory",2011,"For storage only",37,"Magutters","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27297,555512900,"CHE","National Inventory",2011,"For storage only",37,"Hof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27298,555512901,"CHE","National Inventory",2011,"For storage only",37,"Fuchsenwinkel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27299,555512902,"CHE","National Inventory",2011,"For storage only",37,"Heidihof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27300,555512903,"CHE","National Inventory",2011,"For storage only",37,"Böden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27301,555512904,"CHE","National Inventory",2011,"For storage only",37,"Bofel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27302,555512905,"CHE","National Inventory",2011,"For storage only",37,"Wineggrüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27303,555512906,"CHE","National Inventory",2011,"For storage only",37,"Ruchenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27304,555512907,"CHE","National Inventory",2011,"For storage only",37,"Ruchenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27305,555512908,"CHE","National Inventory",2011,"For storage only",37,"Rohan-Schanze","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27306,555512909,"CHE","National Inventory",2011,"For storage only",37,"Hinter Wals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27307,555512910,"CHE","National Inventory",2011,"For storage only",37,"Frettis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27308,555512911,"CHE","National Inventory",2011,"For storage only",37,"Prafieb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27309,555512912,"CHE","National Inventory",2011,"For storage only",37,"Gissübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27310,555512913,"CHE","National Inventory",2011,"For storage only",37,"Unter Vajuoza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27311,555512914,"CHE","National Inventory",2011,"For storage only",37,"Alplichopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27312,555512915,"CHE","National Inventory",2011,"For storage only",37,"Jerätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27313,555512916,"CHE","National Inventory",2011,"For storage only",37,"Frättis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27314,555512917,"CHE","National Inventory",2011,"For storage only",37,"Löser","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27315,555512918,"CHE","National Inventory",2011,"For storage only",37,"Mateilis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27316,555512919,"CHE","National Inventory",2011,"For storage only",37,"Padnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27317,555512920,"CHE","National Inventory",2011,"For storage only",37,"Pradardua","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27318,555512921,"CHE","National Inventory",2011,"For storage only",37,"Untervaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27319,555512922,"CHE","National Inventory",2011,"For storage only",37,"Michelis Bünten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27320,555512923,"CHE","National Inventory",2011,"For storage only",37,"Parvaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27321,555512924,"CHE","National Inventory",2011,"For storage only",37,"Vorholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27322,555512925,"CHE","National Inventory",2011,"For storage only",37,"Scalaripp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27323,555512926,"CHE","National Inventory",2011,"For storage only",37,"Witenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27324,555512927,"CHE","National Inventory",2011,"For storage only",37,"Schwanten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27325,555512928,"CHE","National Inventory",2011,"For storage only",37,"Böfel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27326,555512929,"CHE","National Inventory",2011,"For storage only",37,"Unter Kunkels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27327,555512930,"CHE","National Inventory",2011,"For storage only",37,"Ober Kunkels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27328,555512931,"CHE","National Inventory",2011,"For storage only",37,"Lärchen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27329,555512932,"CHE","National Inventory",2011,"For storage only",37,"Parfuoss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27330,555512933,"CHE","National Inventory",2011,"For storage only",37,"Dürrboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27331,555512934,"CHE","National Inventory",2011,"For storage only",37,"Unter Fopp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27332,555512935,"CHE","National Inventory",2011,"For storage only",37,"Ober Kunkels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27333,555512936,"CHE","National Inventory",2011,"For storage only",37,"Ruestelplangg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27334,555512937,"CHE","National Inventory",2011,"For storage only",37,"Lusbühel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27335,555512938,"CHE","National Inventory",2011,"For storage only",37,"Mataun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27336,555512939,"CHE","National Inventory",2011,"For storage only",37,"Girsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27337,555512940,"CHE","National Inventory",2011,"For storage only",37,"Runggaleida","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27338,555512941,"CHE","National Inventory",2011,"For storage only",37,"Laschein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27339,555512942,"CHE","National Inventory",2011,"For storage only",37,"Muris Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27340,555512943,"CHE","National Inventory",2011,"For storage only",37,"Munt Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27341,555512944,"CHE","National Inventory",2011,"For storage only",37,"Monhämmerli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27342,555512945,"CHE","National Inventory",2011,"For storage only",37,"Laubegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27343,555512946,"CHE","National Inventory",2011,"For storage only",37,"Tignuppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27344,555512947,"CHE","National Inventory",2011,"For storage only",37,"Schlag","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27345,555512948,"CHE","National Inventory",2011,"For storage only",37,"Fatschis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27346,555512949,"CHE","National Inventory",2011,"For storage only",37,"Pruls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27347,555512950,"CHE","National Inventory",2011,"For storage only",37,"Proclis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27348,555512951,"CHE","National Inventory",2011,"For storage only",37,"Garadur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27349,555512952,"CHE","National Inventory",2011,"For storage only",37,"Tuma da Zislis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27350,555512953,"CHE","National Inventory",2011,"For storage only",37,"Plez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27351,555512954,"CHE","National Inventory",2011,"For storage only",37,"Giufs/ Juchs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27352,555512955,"CHE","National Inventory",2011,"For storage only",37,"Hoch Chapf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27353,555512956,"CHE","National Inventory",2011,"For storage only",37,"Gurgs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27354,555512957,"CHE","National Inventory",2011,"For storage only",37,"Bot Danisch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27355,555512958,"CHE","National Inventory",2011,"For storage only",37,"Tadi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27356,555512959,"CHE","National Inventory",2011,"For storage only",37,"Tadi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27357,555512960,"CHE","National Inventory",2011,"For storage only",37,"Caumas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27358,555512961,"CHE","National Inventory",2011,"For storage only",37,"Bodmen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27359,555512962,"CHE","National Inventory",2011,"For storage only",37,"Tuals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27360,555512963,"CHE","National Inventory",2011,"For storage only",37,"Alp Raguta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27361,555512964,"CHE","National Inventory",2011,"For storage only",37,"Runcalatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27362,555512965,"CHE","National Inventory",2011,"For storage only",37,"Tit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27363,555512966,"CHE","National Inventory",2011,"For storage only",37,"Plaun digls-Mats","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27364,555512967,"CHE","National Inventory",2011,"For storage only",37,"Pandatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27365,555512968,"CHE","National Inventory",2011,"For storage only",37,"Grossweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27366,555512969,"CHE","National Inventory",2011,"For storage only",37,"Tarmuz Ault","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27367,555512970,"CHE","National Inventory",2011,"For storage only",37,"Bles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27368,555512971,"CHE","National Inventory",2011,"For storage only",37,"Fontaunas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27369,555512972,"CHE","National Inventory",2011,"For storage only",37,"Ginedas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27370,555512973,"CHE","National Inventory",2011,"For storage only",37,"Purz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27371,555512974,"CHE","National Inventory",2011,"For storage only",37,"Vals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27372,555512975,"CHE","National Inventory",2011,"For storage only",37,"Hofen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27373,555512976,"CHE","National Inventory",2011,"For storage only",37,"Pischleras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27374,555512977,"CHE","National Inventory",2011,"For storage only",37,"Laschignas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27375,555512978,"CHE","National Inventory",2011,"For storage only",37,"Gitei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27376,555512979,"CHE","National Inventory",2011,"For storage only",37,"Bärenlöcher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27377,555512980,"CHE","National Inventory",2011,"For storage only",37,"Mulegns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27378,555512981,"CHE","National Inventory",2011,"For storage only",37,"Dutg da Fontanius","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27379,555512982,"CHE","National Inventory",2011,"For storage only",37,"Meunt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27380,555512983,"CHE","National Inventory",2011,"For storage only",37,"Suulöcher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27381,555512984,"CHE","National Inventory",2011,"For storage only",37,"Sogn Luregn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27382,555512985,"CHE","National Inventory",2011,"For storage only",37,"Rüssel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27383,555512986,"CHE","National Inventory",2011,"For storage only",37,"Dusch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27384,555512987,"CHE","National Inventory",2011,"For storage only",37,"Bargia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27385,555512988,"CHE","National Inventory",2011,"For storage only",37,"Schins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27386,555512989,"CHE","National Inventory",2011,"For storage only",37,"Pardisla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27387,555512990,"CHE","National Inventory",2011,"For storage only",37,"Cresta Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27388,555512991,"CHE","National Inventory",2011,"For storage only",37,"Quadra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27389,555512992,"CHE","National Inventory",2011,"For storage only",37,"Schall Grond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27390,555512993,"CHE","National Inventory",2011,"For storage only",37,"Luvreu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27391,555512994,"CHE","National Inventory",2011,"For storage only",37,"Schall Pign","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27392,555512995,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Rheinau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27393,555512996,"CHE","National Inventory",2011,"For storage only",37,"Culm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27394,555512997,"CHE","National Inventory",2011,"For storage only",37,"Auareda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27395,555512998,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Alberwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27396,555512999,"CHE","National Inventory",2011,"For storage only",37,"Talegnas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27397,555513000,"CHE","National Inventory",2011,"For storage only",37,"Carvenna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27398,555513001,"CHE","National Inventory",2011,"For storage only",37,"Rheindamm Melser Au","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27399,555513002,"CHE","National Inventory",2011,"For storage only",37,"Scharans","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27400,555513003,"CHE","National Inventory",2011,"For storage only",37,"Terziel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27401,555513004,"CHE","National Inventory",2011,"For storage only",37,"Planggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27402,555513005,"CHE","National Inventory",2011,"For storage only",37,"Crap la Massa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27403,555513006,"CHE","National Inventory",2011,"For storage only",37,"Duven","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27404,555513007,"CHE","National Inventory",2011,"For storage only",37,"St. Agata","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27405,555513008,"CHE","National Inventory",2011,"For storage only",37,"Schauenstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27406,555513009,"CHE","National Inventory",2011,"For storage only",37,"Schauenstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27407,555513010,"CHE","National Inventory",2011,"For storage only",37,"Prodavos Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27408,555513011,"CHE","National Inventory",2011,"For storage only",37,"Schären","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27409,555513012,"CHE","National Inventory",2011,"For storage only",37,"Prin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27410,555513013,"CHE","National Inventory",2011,"For storage only",37,"Bostg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27411,555513014,"CHE","National Inventory",2011,"For storage only",37,"Tuliu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27412,555513015,"CHE","National Inventory",2011,"For storage only",37,"Flantuosch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27413,555513016,"CHE","National Inventory",2011,"For storage only",37,"Mangur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27414,555513017,"CHE","National Inventory",2011,"For storage only",37,"Gravas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27415,555513018,"CHE","National Inventory",2011,"For storage only",37,"Plaun Rensch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27416,555513019,"CHE","National Inventory",2011,"For storage only",37,"Prauet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27417,555513020,"CHE","National Inventory",2011,"For storage only",37,"Balegna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27418,555513021,"CHE","National Inventory",2011,"For storage only",37,"Fanels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27419,555513022,"CHE","National Inventory",2011,"For storage only",37,"Sut Crestas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27420,555513023,"CHE","National Inventory",2011,"For storage only",37,"Sursassa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27421,555513024,"CHE","National Inventory",2011,"For storage only",37,"Doss Daint","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27422,555513025,"CHE","National Inventory",2011,"For storage only",37,"Scurtaseu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27423,555513026,"CHE","National Inventory",2011,"For storage only",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27424,555513027,"CHE","National Inventory",2011,"For storage only",37,"Muschgel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27425,555513028,"CHE","National Inventory",2011,"For storage only",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27426,555513029,"CHE","National Inventory",2011,"For storage only",37,"Muschgel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27427,555513030,"CHE","National Inventory",2011,"For storage only",37,"Unterberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27428,555513031,"CHE","National Inventory",2011,"For storage only",37,"Tarnatler-Boden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27429,555513032,"CHE","National Inventory",2011,"For storage only",37,"Plaunca-Rudera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27430,555513033,"CHE","National Inventory",2011,"For storage only",37,"Er Davos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27431,555513034,"CHE","National Inventory",2011,"For storage only",37,"Bregl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27432,555513035,"CHE","National Inventory",2011,"For storage only",37,"Quadras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27433,555513036,"CHE","National Inventory",2011,"For storage only",37,"Darpinaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27434,555513037,"CHE","National Inventory",2011,"For storage only",37,"Peiden Boger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27435,555513038,"CHE","National Inventory",2011,"For storage only",37,"Murtès","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27436,555513039,"CHE","National Inventory",2011,"For storage only",37,"Muletg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27437,555513040,"CHE","National Inventory",2011,"For storage only",37,"Genastga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27438,555513041,"CHE","National Inventory",2011,"For storage only",37,"Palorgna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27439,555513042,"CHE","National Inventory",2011,"For storage only",37,"Chischagel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27440,555513043,"CHE","National Inventory",2011,"For storage only",37,"Genastga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27441,555513044,"CHE","National Inventory",2011,"For storage only",37,"Planezzas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27442,555513045,"CHE","National Inventory",2011,"For storage only",37,"Seglias","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27443,555513046,"CHE","National Inventory",2011,"For storage only",37,"Prau da Cuolm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27444,555513047,"CHE","National Inventory",2011,"For storage only",37,"Schmitten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27445,555513048,"CHE","National Inventory",2011,"For storage only",37,"Waldmatte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27446,555513049,"CHE","National Inventory",2011,"For storage only",37,"Tristel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27447,555513050,"CHE","National Inventory",2011,"For storage only",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27448,555513051,"CHE","National Inventory",2011,"For storage only",37,"Valbella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27449,555513052,"CHE","National Inventory",2011,"For storage only",37,"Ri Dedent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27450,555513053,"CHE","National Inventory",2011,"For storage only",37,"Cavaionc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27451,555513054,"CHE","National Inventory",2011,"For storage only",37,"Mondan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27452,555513055,"CHE","National Inventory",2011,"For storage only",37,"Strec","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27453,555513056,"CHE","National Inventory",2011,"For storage only",37,"Miaddi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27454,555513057,"CHE","National Inventory",2011,"For storage only",37,"Cant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27455,555513058,"CHE","National Inventory",2011,"For storage only",37,"Scalader","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27456,555513059,"CHE","National Inventory",2011,"For storage only",37,"Fontana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27457,555513060,"CHE","National Inventory",2011,"For storage only",37,"Stabiüch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27458,555513061,"CHE","National Inventory",2011,"For storage only",37,"Giova","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27459,555513062,"CHE","National Inventory",2011,"For storage only",37,"Eilisch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27460,555513063,"CHE","National Inventory",2011,"For storage only",37,"Cunggel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27461,555513064,"CHE","National Inventory",2011,"For storage only",37,"Cunggel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27462,555513065,"CHE","National Inventory",2011,"For storage only",37,"Arabühel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27463,555513066,"CHE","National Inventory",2011,"For storage only",37,"Los","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27464,555513067,"CHE","National Inventory",2011,"For storage only",37,"Sand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27465,555513068,"CHE","National Inventory",2011,"For storage only",37,"Matroz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27466,555513069,"CHE","National Inventory",2011,"For storage only",37,"Plongga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27467,555513070,"CHE","National Inventory",2011,"For storage only",37,"Maliens Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27468,555513071,"CHE","National Inventory",2011,"For storage only",37,"Maliens Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27469,555513072,"CHE","National Inventory",2011,"For storage only",37,"Munt Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27470,555513073,"CHE","National Inventory",2011,"For storage only",37,"Canals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27471,555513074,"CHE","National Inventory",2011,"For storage only",37,"Munt Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27472,555513075,"CHE","National Inventory",2011,"For storage only",37,"Coma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27473,555513076,"CHE","National Inventory",2011,"For storage only",37,"Samuns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27474,555513077,"CHE","National Inventory",2011,"For storage only",37,"Tuora","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27475,555513078,"CHE","National Inventory",2011,"For storage only",37,"Foppas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27476,555513079,"CHE","National Inventory",2011,"For storage only",37,"Planezzas-Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27477,555513080,"CHE","National Inventory",2011,"For storage only",37,"Planezzas-Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27478,555513081,"CHE","National Inventory",2011,"For storage only",37,"Vitg Dado","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27479,555513082,"CHE","National Inventory",2011,"For storage only",37,"S.Bistgaun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27480,555513083,"CHE","National Inventory",2011,"For storage only",37,"Scansins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27481,555513084,"CHE","National Inventory",2011,"For storage only",37,"Sum Bual","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27482,555513085,"CHE","National Inventory",2011,"For storage only",37,"Piz Plauncas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27483,555513086,"CHE","National Inventory",2011,"For storage only",37,"Mulin da Pitasch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27484,555513087,"CHE","National Inventory",2011,"For storage only",37,"Scuntras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27485,555513088,"CHE","National Inventory",2011,"For storage only",37,"Runca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27486,555513089,"CHE","National Inventory",2011,"For storage only",37,"Trutg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27487,555513090,"CHE","National Inventory",2011,"For storage only",37,"Scuntras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27488,555513091,"CHE","National Inventory",2011,"For storage only",37,"Rudiala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27489,555513092,"CHE","National Inventory",2011,"For storage only",37,"Rampa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27490,555513093,"CHE","National Inventory",2011,"For storage only",37,"Bual","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27491,555513094,"CHE","National Inventory",2011,"For storage only",37,"Carrera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27492,555513095,"CHE","National Inventory",2011,"For storage only",37,"Tschanabrels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27493,555513096,"CHE","National Inventory",2011,"For storage only",37,"Divrein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27494,555513097,"CHE","National Inventory",2011,"For storage only",37,"La Val","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27495,555513098,"CHE","National Inventory",2011,"For storage only",37,"Tschamiu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27496,555513099,"CHE","National Inventory",2011,"For storage only",37,"Son Gieri","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27497,555513100,"CHE","National Inventory",2011,"For storage only",37,"Tgolda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27498,555513101,"CHE","National Inventory",2011,"For storage only",37,"Trestel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27499,555513102,"CHE","National Inventory",2011,"For storage only",37,"Brienz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27500,555513103,"CHE","National Inventory",2011,"For storage only",37,"Cistiarna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27501,555513104,"CHE","National Inventory",2011,"For storage only",37,"Pruel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27502,555513105,"CHE","National Inventory",2011,"For storage only",37,"Tauf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27503,555513106,"CHE","National Inventory",2011,"For storage only",37,"Cresta Bernard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27504,555513107,"CHE","National Inventory",2011,"For storage only",37,"Mariaga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27505,555513108,"CHE","National Inventory",2011,"For storage only",37,"Igl Plaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27506,555513109,"CHE","National Inventory",2011,"For storage only",37,"Mons","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27507,555513110,"CHE","National Inventory",2011,"For storage only",37,"Mittel-Feistenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27508,555513111,"CHE","National Inventory",2011,"For storage only",37,"Montaschg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27509,555513112,"CHE","National Inventory",2011,"For storage only",37,"Hasagada","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27510,555513113,"CHE","National Inventory",2011,"For storage only",37,"Plansch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27511,555513114,"CHE","National Inventory",2011,"For storage only",37,"Carnalta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27512,555513115,"CHE","National Inventory",2011,"For storage only",37,"Camanna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27513,555513116,"CHE","National Inventory",2011,"For storage only",37,"La Motta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27514,555513117,"CHE","National Inventory",2011,"For storage only",37,"Boliv","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27515,555513118,"CHE","National Inventory",2011,"For storage only",37,"Mont di Caute","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27516,555513119,"CHE","National Inventory",2011,"For storage only",37,"Refontana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27517,555513120,"CHE","National Inventory",2011,"For storage only",37,"Monti di San Carlo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27518,555513121,"CHE","National Inventory",2011,"For storage only",37,"Bald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27519,555513122,"CHE","National Inventory",2011,"For storage only",37,"Mazzucan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27520,555513123,"CHE","National Inventory",2011,"For storage only",37,"Monti di San Vittore","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27521,555513124,"CHE","National Inventory",2011,"For storage only",37,"Hinter-Ochsenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27522,555513125,"CHE","National Inventory",2011,"For storage only",37,"Saguein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27523,555513126,"CHE","National Inventory",2011,"For storage only",37,"Carstolia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27524,555513127,"CHE","National Inventory",2011,"For storage only",37,"Marola","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27525,555513128,"CHE","National Inventory",2011,"For storage only",37,"Hirzenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27526,555513129,"CHE","National Inventory",2011,"For storage only",37,"Studenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27527,555513130,"CHE","National Inventory",2011,"For storage only",37,"Cyprianspitz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27528,555513131,"CHE","National Inventory",2011,"For storage only",37,"Pardätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27529,555513132,"CHE","National Inventory",2011,"For storage only",37,"Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27530,555513133,"CHE","National Inventory",2011,"For storage only",37,"La Rusna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27531,555513134,"CHE","National Inventory",2011,"For storage only",37,"Schneca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27532,555513135,"CHE","National Inventory",2011,"For storage only",37,"Bargis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27533,555513136,"CHE","National Inventory",2011,"For storage only",37,"Ruine Nieder Juvalta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27534,555513137,"CHE","National Inventory",2011,"For storage only",37,"La Caglia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27535,555513138,"CHE","National Inventory",2011,"For storage only",37,"Ogna da Pardiala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27536,555513139,"CHE","National Inventory",2011,"For storage only",37,"Plattas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27537,555513140,"CHE","National Inventory",2011,"For storage only",37,"Clesalenz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27538,555513141,"CHE","National Inventory",2011,"For storage only",37,"Schautschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27539,555513142,"CHE","National Inventory",2011,"For storage only",37,"Tgampi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27540,555513143,"CHE","National Inventory",2011,"For storage only",37,"Vazerol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27541,555513144,"CHE","National Inventory",2011,"For storage only",37,"Curtins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27542,555513145,"CHE","National Inventory",2011,"For storage only",37,"Pnez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27543,555513146,"CHE","National Inventory",2011,"For storage only",37,"Plattas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27544,555513147,"CHE","National Inventory",2011,"For storage only",37,"Rundandagls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27545,555513148,"CHE","National Inventory",2011,"For storage only",37,"God Davos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27546,555513149,"CHE","National Inventory",2011,"For storage only",37,"Studamatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27547,555513150,"CHE","National Inventory",2011,"For storage only",37,"Nassel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27548,555513151,"CHE","National Inventory",2011,"For storage only",37,"Soliva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27549,555513152,"CHE","National Inventory",2011,"For storage only",37,"Soladro","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27550,555513153,"CHE","National Inventory",2011,"For storage only",37,"Selva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27551,555513154,"CHE","National Inventory",2011,"For storage only",37,"Giovegna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27552,555513155,"CHE","National Inventory",2011,"For storage only",37,"Val de Posseira","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27553,555513156,"CHE","National Inventory",2011,"For storage only",37,"Von","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27554,555513157,"CHE","National Inventory",2011,"For storage only",37,"Tec Longh","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27555,555513158,"CHE","National Inventory",2011,"For storage only",37,"Ronch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27556,555513159,"CHE","National Inventory",2011,"For storage only",37,"Prepianto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27557,555513160,"CHE","National Inventory",2011,"For storage only",37,"Bellen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27558,555513161,"CHE","National Inventory",2011,"For storage only",37,"Alva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27559,555513162,"CHE","National Inventory",2011,"For storage only",37,"Bregnon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27560,555513163,"CHE","National Inventory",2011,"For storage only",37,"Mont di Prebonella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27561,555513164,"CHE","National Inventory",2011,"For storage only",37,"Mont di Rodas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27562,555513165,"CHE","National Inventory",2011,"For storage only",37,"Guscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27563,555513166,"CHE","National Inventory",2011,"For storage only",37,"Elltal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27564,555513167,"CHE","National Inventory",2011,"For storage only",37,"Tanafreida","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27565,555513168,"CHE","National Inventory",2011,"For storage only",37,"Caral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27566,555513169,"CHE","National Inventory",2011,"For storage only",37,"Patenn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27567,555513170,"CHE","National Inventory",2011,"For storage only",37,"Stettli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27568,555513171,"CHE","National Inventory",2011,"For storage only",37,"Pilidetta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27569,555513172,"CHE","National Inventory",2011,"For storage only",37,"Sponda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27570,555513173,"CHE","National Inventory",2011,"For storage only",37,"Mundaditsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27571,555513174,"CHE","National Inventory",2011,"For storage only",37,"Munts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27572,555513175,"CHE","National Inventory",2011,"For storage only",37,"Munza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27573,555513176,"CHE","National Inventory",2011,"For storage only",37,"Saldos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27574,555513177,"CHE","National Inventory",2011,"For storage only",37,"Pferpfier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27575,555513178,"CHE","National Inventory",2011,"For storage only",37,"Eraplana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27576,555513179,"CHE","National Inventory",2011,"For storage only",37,"Valtscharnus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27577,555513180,"CHE","National Inventory",2011,"For storage only",37,"Vallils","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27578,555513181,"CHE","National Inventory",2011,"For storage only",37,"Oberberge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27579,555513182,"CHE","National Inventory",2011,"For storage only",37,"Sässlina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27580,555513183,"CHE","National Inventory",2011,"For storage only",37,"Funtanolja","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27581,555513184,"CHE","National Inventory",2011,"For storage only",37,"Vadres","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27582,555513185,"CHE","National Inventory",2011,"For storage only",37,"Prau Tumasch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27583,555513186,"CHE","National Inventory",2011,"For storage only",37,"Saledis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27584,555513187,"CHE","National Inventory",2011,"For storage only",37,"Halda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27585,555513188,"CHE","National Inventory",2011,"For storage only",37,"Mittelkriz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27586,555513189,"CHE","National Inventory",2011,"For storage only",37,"Muntatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27587,555513190,"CHE","National Inventory",2011,"For storage only",37,"Conn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27588,555513191,"CHE","National Inventory",2011,"For storage only",37,"Panadeglias","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27589,555513192,"CHE","National Inventory",2011,"For storage only",37,"Vintgins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27590,555513193,"CHE","National Inventory",2011,"For storage only",37,"Ogna da Pardiala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27591,555513194,"CHE","National Inventory",2011,"For storage only",37,"Serenera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27592,555513195,"CHE","National Inventory",2011,"For storage only",37,"Baria dil Stefen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27593,555513196,"CHE","National Inventory",2011,"For storage only",37,"Rüs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27594,555513197,"CHE","National Inventory",2011,"For storage only",37,"Rüs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27595,555513198,"CHE","National Inventory",2011,"For storage only",37,"Combras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27596,555513199,"CHE","National Inventory",2011,"For storage only",37,"Glateren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27597,555513200,"CHE","National Inventory",2011,"For storage only",37,"Combras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27598,555513201,"CHE","National Inventory",2011,"For storage only",37,"Paliu Mala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27599,555513202,"CHE","National Inventory",2011,"For storage only",37,"Plaun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27600,555513203,"CHE","National Inventory",2011,"For storage only",37,"Baria Fritsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27601,555513204,"CHE","National Inventory",2011,"For storage only",37,"Pardela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27602,555513205,"CHE","National Inventory",2011,"For storage only",37,"Auf dem Boden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27603,555513206,"CHE","National Inventory",2011,"For storage only",37,"Chalberweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27604,555513207,"CHE","National Inventory",2011,"For storage only",37,"Börter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27605,555513208,"CHE","National Inventory",2011,"For storage only",37,"Rofna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27606,555513209,"CHE","National Inventory",2011,"For storage only",37,"Pargnung","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27607,555513210,"CHE","National Inventory",2011,"For storage only",37,"Zalaint","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27608,555513211,"CHE","National Inventory",2011,"For storage only",37,"Munter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27609,555513212,"CHE","National Inventory",2011,"For storage only",37,"Val Meltger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27610,555513213,"CHE","National Inventory",2011,"For storage only",37,"Baselgia Viglia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27611,555513214,"CHE","National Inventory",2011,"For storage only",37,"Propissi Sot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27612,555513215,"CHE","National Inventory",2011,"For storage only",37,"Runchols","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27613,555513216,"CHE","National Inventory",2011,"For storage only",37,"Inner Glas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27614,555513217,"CHE","National Inventory",2011,"For storage only",37,"Davos Ses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27615,555513218,"CHE","National Inventory",2011,"For storage only",37,"Nutatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27616,555513219,"CHE","National Inventory",2011,"For storage only",37,"Unter-Rongelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27617,555513220,"CHE","National Inventory",2011,"For storage only",37,"Plan Macov","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27618,555513221,"CHE","National Inventory",2011,"For storage only",37,"Bualet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27619,555513222,"CHE","National Inventory",2011,"For storage only",37,"Sunderas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27620,555513223,"CHE","National Inventory",2011,"For storage only",37,"Prada","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27621,555513224,"CHE","National Inventory",2011,"For storage only",37,"Sunderas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27622,555513225,"CHE","National Inventory",2011,"For storage only",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27623,555513226,"CHE","National Inventory",2011,"For storage only",37,"Chaclauet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27624,555513227,"CHE","National Inventory",2011,"For storage only",37,"Blais Torta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27625,555513228,"CHE","National Inventory",2011,"For storage only",37,"Pro d'Men","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27626,555513229,"CHE","National Inventory",2011,"For storage only",37,"Quedras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27627,555513230,"CHE","National Inventory",2011,"For storage only",37,"Rischeili","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27628,555513231,"CHE","National Inventory",2011,"For storage only",37,"Güngel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27629,555513232,"CHE","National Inventory",2011,"For storage only",37,"Dri Tachli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27630,555513233,"CHE","National Inventory",2011,"For storage only",37,"Peiler Bärga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27631,555513234,"CHE","National Inventory",2011,"For storage only",37,"Glarr","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27632,555513235,"CHE","National Inventory",2011,"For storage only",37,"Pradatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27633,555513236,"CHE","National Inventory",2011,"For storage only",37,"Balmschli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27634,555513237,"CHE","National Inventory",2011,"For storage only",37,"Balmatachli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27635,555513238,"CHE","National Inventory",2011,"For storage only",37,"Giasum","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27636,555513239,"CHE","National Inventory",2011,"For storage only",37,"Häxenblätz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27637,555513240,"CHE","National Inventory",2011,"For storage only",37,"Druna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27638,555513241,"CHE","National Inventory",2011,"For storage only",37,"Casella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27639,555513242,"CHE","National Inventory",2011,"For storage only",37,"Lottan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27640,555513243,"CHE","National Inventory",2011,"For storage only",37,"Caccior","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27641,555513244,"CHE","National Inventory",2011,"For storage only",37,"Tumbler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27642,555513245,"CHE","National Inventory",2011,"For storage only",37,"Caccior","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27643,555513246,"CHE","National Inventory",2011,"For storage only",37,"Caccior","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27644,555513247,"CHE","National Inventory",2011,"For storage only",37,"Luvadina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27645,555513248,"CHE","National Inventory",2011,"For storage only",37,"Chlei Platte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27646,555513249,"CHE","National Inventory",2011,"For storage only",37,"Cavadürli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27647,555513250,"CHE","National Inventory",2011,"For storage only",37,"Eggli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27648,555513251,"CHE","National Inventory",2011,"For storage only",37,"Vadursch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27649,555513252,"CHE","National Inventory",2011,"For storage only",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27650,555513253,"CHE","National Inventory",2011,"For storage only",37,"Hinter Cant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27651,555513254,"CHE","National Inventory",2011,"For storage only",37,"Ral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27652,555513255,"CHE","National Inventory",2011,"For storage only",37,"Stafels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27653,555513256,"CHE","National Inventory",2011,"For storage only",37,"Casällas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27654,555513257,"CHE","National Inventory",2011,"For storage only",37,"Terschieb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27655,555513258,"CHE","National Inventory",2011,"For storage only",37,"Ganschier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27656,555513259,"CHE","National Inventory",2011,"For storage only",37,"Eggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27657,555513260,"CHE","National Inventory",2011,"For storage only",37,"Plonggis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27658,555513261,"CHE","National Inventory",2011,"For storage only",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27659,555513262,"CHE","National Inventory",2011,"For storage only",37,"Börtji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27660,555513263,"CHE","National Inventory",2011,"For storage only",37,"Calondis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27661,555513264,"CHE","National Inventory",2011,"For storage only",37,"Plausi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27662,555513265,"CHE","National Inventory",2011,"For storage only",37,"Nuois","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27663,555513266,"CHE","National Inventory",2011,"For storage only",37,"Börtji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27664,555513267,"CHE","National Inventory",2011,"For storage only",37,"Schluocht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27665,555513268,"CHE","National Inventory",2011,"For storage only",37,"Vadrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27666,555513269,"CHE","National Inventory",2011,"For storage only",37,"Balsarom","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27667,555513270,"CHE","National Inventory",2011,"For storage only",37,"Plan Grond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27668,555513271,"CHE","National Inventory",2011,"For storage only",37,"Pra San Peder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27669,555513272,"CHE","National Inventory",2011,"For storage only",37,"Pradatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27670,555513273,"CHE","National Inventory",2011,"For storage only",37,"Praschan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27671,555513274,"CHE","National Inventory",2011,"For storage only",37,"Chantata","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27672,555513275,"CHE","National Inventory",2011,"For storage only",37,"Tschardaina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27673,555513276,"CHE","National Inventory",2011,"For storage only",37,"Naraus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27674,555513277,"CHE","National Inventory",2011,"For storage only",37,"Marièrs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27675,555513278,"CHE","National Inventory",2011,"For storage only",37,"Ault la Runca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27676,555513279,"CHE","National Inventory",2011,"For storage only",37,"Pra da Punt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27677,555513280,"CHE","National Inventory",2011,"For storage only",37,"Buzzera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27678,555513281,"CHE","National Inventory",2011,"For storage only",37,"Brinzeuls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27679,555513282,"CHE","National Inventory",2011,"For storage only",37,"Suronnas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27680,555513283,"CHE","National Inventory",2011,"For storage only",37,"Furmièrs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27681,555513284,"CHE","National Inventory",2011,"For storage only",37,"Viluorna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27682,555513285,"CHE","National Inventory",2011,"For storage only",37,"Paternaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27683,555513286,"CHE","National Inventory",2011,"For storage only",37,"Flurius","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27684,555513287,"CHE","National Inventory",2011,"For storage only",37,"Cavarschons","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27685,555513288,"CHE","National Inventory",2011,"For storage only",37,"Chaposch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27686,555513289,"CHE","National Inventory",2011,"For storage only",37,"Godplan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27687,555513290,"CHE","National Inventory",2011,"For storage only",37,"Val Schameala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27688,555513291,"CHE","National Inventory",2011,"For storage only",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27689,555513292,"CHE","National Inventory",2011,"For storage only",37,"Spoina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27690,555513293,"CHE","National Inventory",2011,"For storage only",37,"Porclas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27691,555513294,"CHE","National Inventory",2011,"For storage only",37,"Budagnis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27692,555513295,"CHE","National Inventory",2011,"For storage only",37,"Porclas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27693,555513296,"CHE","National Inventory",2011,"For storage only",37,"Creusen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27694,555513297,"CHE","National Inventory",2011,"For storage only",37,"Got da Lareschs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27695,555513298,"CHE","National Inventory",2011,"For storage only",37,"Bargias","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27696,555513299,"CHE","National Inventory",2011,"For storage only",37,"Rain digl Lai","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27697,555513300,"CHE","National Inventory",2011,"For storage only",37,"Careins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27698,555513301,"CHE","National Inventory",2011,"For storage only",37,"Teuas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27699,555513302,"CHE","National Inventory",2011,"For storage only",37,"Mos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27700,555513303,"CHE","National Inventory",2011,"For storage only",37,"Pas-cheus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27701,555513304,"CHE","National Inventory",2011,"For storage only",37,"Solas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27702,555513305,"CHE","National Inventory",2011,"For storage only",37,"Schlasung","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27703,555513306,"CHE","National Inventory",2011,"For storage only",37,"Stavialas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27704,555513307,"CHE","National Inventory",2011,"For storage only",37,"Summaplaunca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27705,555513308,"CHE","National Inventory",2011,"For storage only",37,"Mulegn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27706,555513309,"CHE","National Inventory",2011,"For storage only",37,"Sendas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27707,555513310,"CHE","National Inventory",2011,"For storage only",37,"Radons","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27708,555513311,"CHE","National Inventory",2011,"For storage only",37,"Planezza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27709,555513312,"CHE","National Inventory",2011,"For storage only",37,"Pro digl Begl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27710,555513313,"CHE","National Inventory",2011,"For storage only",37,"Plan digl Bistgat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27711,555513314,"CHE","National Inventory",2011,"For storage only",37,"Dartschapetta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27712,555513315,"CHE","National Inventory",2011,"For storage only",37,"Rungs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27713,555513316,"CHE","National Inventory",2011,"For storage only",37,"Nesch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27714,555513317,"CHE","National Inventory",2011,"For storage only",37,"Prada","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27715,555513318,"CHE","National Inventory",2011,"For storage only",37,"Motta Vallac","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27716,555513319,"CHE","National Inventory",2011,"For storage only",37,"Ratitsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27717,555513320,"CHE","National Inventory",2011,"For storage only",37,"Salez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27718,555513321,"CHE","National Inventory",2011,"For storage only",37,"Prada Setga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27719,555513322,"CHE","National Inventory",2011,"For storage only",37,"Motta da Parpi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27720,555513323,"CHE","National Inventory",2011,"For storage only",37,"Salaschigns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27721,555513324,"CHE","National Inventory",2011,"For storage only",37,"Glignia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27722,555513325,"CHE","National Inventory",2011,"For storage only",37,"Pro Barlegn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27723,555513326,"CHE","National Inventory",2011,"For storage only",37,"Crap Barnagn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27724,555513327,"CHE","National Inventory",2011,"For storage only",37,"Fops","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27725,555513328,"CHE","National Inventory",2011,"For storage only",37,"Pro Lung","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27726,555513329,"CHE","National Inventory",2011,"For storage only",37,"Rudnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27727,555513330,"CHE","National Inventory",2011,"For storage only",37,"Monas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27728,555513331,"CHE","National Inventory",2011,"For storage only",37,"Rudnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27729,555513332,"CHE","National Inventory",2011,"For storage only",37,"Senslas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27730,555513333,"CHE","National Inventory",2011,"For storage only",37,"Crestas da Palpuogna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27731,555513334,"CHE","National Inventory",2011,"For storage only",37,"Tinizong","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27732,555513335,"CHE","National Inventory",2011,"For storage only",37,"Gioppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27733,555513336,"CHE","National Inventory",2011,"For storage only",37,"Fotgs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27734,555513337,"CHE","National Inventory",2011,"For storage only",37,"Tgant Pensa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27735,555513338,"CHE","National Inventory",2011,"For storage only",37,"Parseiras da Fotgs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27736,555513339,"CHE","National Inventory",2011,"For storage only",37,"Proschen-Dafora","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27737,555513340,"CHE","National Inventory",2011,"For storage only",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27738,555513341,"CHE","National Inventory",2011,"For storage only",37,"Tigia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27739,555513342,"CHE","National Inventory",2011,"For storage only",37,"Tscheppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27740,555513343,"CHE","National Inventory",2011,"For storage only",37,"Amodeus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27741,555513344,"CHE","National Inventory",2011,"For storage only",37,"Campsut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27742,555513345,"CHE","National Inventory",2011,"For storage only",37,"Macsur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27743,555513346,"CHE","National Inventory",2011,"For storage only",37,"Macsur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27744,555513347,"CHE","National Inventory",2011,"For storage only",37,"Alp Platta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27745,555513348,"CHE","National Inventory",2011,"For storage only",37,"Ramsa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27746,555513349,"CHE","National Inventory",2011,"For storage only",37,"Höjahus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27747,555513350,"CHE","National Inventory",2011,"For storage only",37,"Suossa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27748,555513351,"CHE","National Inventory",2011,"For storage only",37,"Fiess","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27749,555513352,"CHE","National Inventory",2011,"For storage only",37,"Caurga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27750,555513353,"CHE","National Inventory",2011,"For storage only",37,"Ranghei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27751,555513354,"CHE","National Inventory",2011,"For storage only",37,"Lagüzzon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27752,555513355,"CHE","National Inventory",2011,"For storage only",37,"Gesc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27753,555513356,"CHE","National Inventory",2011,"For storage only",37,"Valineu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27754,555513357,"CHE","National Inventory",2011,"For storage only",37,"Sulegn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27755,555513358,"CHE","National Inventory",2011,"For storage only",37,"Vündül","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27756,555513359,"CHE","National Inventory",2011,"For storage only",37,"Pei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27757,555513360,"CHE","National Inventory",2011,"For storage only",37,"Zarera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27758,555513361,"CHE","National Inventory",2011,"For storage only",37,"Splüga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27759,555513362,"CHE","National Inventory",2011,"For storage only",37,"Dava","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27760,555513363,"CHE","National Inventory",2011,"For storage only",37,"Prairol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27761,555513364,"CHE","National Inventory",2011,"For storage only",37,"Scelbez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27762,555513365,"CHE","National Inventory",2011,"For storage only",37,"Stabli da Varuna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27763,555513366,"CHE","National Inventory",2011,"For storage only",37,"Motta da Cadera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27764,555513367,"CHE","National Inventory",2011,"For storage only",37,"Cansumé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27765,555513368,"CHE","National Inventory",2011,"For storage only",37,"Somdoss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27766,555513369,"CHE","National Inventory",2011,"For storage only",37,"Puntiglia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27767,555513370,"CHE","National Inventory",2011,"For storage only",37,"La Crota","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27768,555513371,"CHE","National Inventory",2011,"For storage only",37,"La Bosca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27769,555513372,"CHE","National Inventory",2011,"For storage only",37,"Funtania","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27770,555513373,"CHE","National Inventory",2011,"For storage only",37,"Doss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27771,555513374,"CHE","National Inventory",2011,"For storage only",37,"Li Gargati","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27772,555513375,"CHE","National Inventory",2011,"For storage only",37,"Barghi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27773,555513376,"CHE","National Inventory",2011,"For storage only",37,"Scimingot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27774,555513377,"CHE","National Inventory",2011,"For storage only",37,"Suasar Dafö","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27775,555513378,"CHE","National Inventory",2011,"For storage only",37,"San Romerio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27776,555513379,"CHE","National Inventory",2011,"For storage only",37,"Predusasc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27777,555513380,"CHE","National Inventory",2011,"For storage only",37,"Li Murus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27778,555513381,"CHE","National Inventory",2011,"For storage only",37,"Piaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27779,555513382,"CHE","National Inventory",2011,"For storage only",37,"Stavaiun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27780,555513383,"CHE","National Inventory",2011,"For storage only",37,"Zavena","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27781,555513384,"CHE","National Inventory",2011,"For storage only",37,"Irola","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27782,555513385,"CHE","National Inventory",2011,"For storage only",37,"Val Irola","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27783,555513386,"CHE","National Inventory",2011,"For storage only",37,"Pradel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27784,555513387,"CHE","National Inventory",2011,"For storage only",37,"Cavaione","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27785,555513388,"CHE","National Inventory",2011,"For storage only",37,"Braga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27786,555513389,"CHE","National Inventory",2011,"For storage only",37,"Scala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27787,555513390,"CHE","National Inventory",2011,"For storage only",37,"Mälbereggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27788,555513391,"CHE","National Inventory",2011,"For storage only",37,"Aschüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27789,555513392,"CHE","National Inventory",2011,"For storage only",37,"Hundmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27790,555513393,"CHE","National Inventory",2011,"For storage only",37,"Meder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27791,555513394,"CHE","National Inventory",2011,"For storage only",37,"Leidwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27792,555513395,"CHE","National Inventory",2011,"For storage only",37,"Arensa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27793,555513396,"CHE","National Inventory",2011,"For storage only",37,"Rafailis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27794,555513397,"CHE","National Inventory",2011,"For storage only",37,"Ober Sattel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27795,555513398,"CHE","National Inventory",2011,"For storage only",37,"Spadlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27796,555513399,"CHE","National Inventory",2011,"For storage only",37,"Sattelflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27797,555513400,"CHE","National Inventory",2011,"For storage only",37,"Tanail","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27798,555513401,"CHE","National Inventory",2011,"For storage only",37,"Palü","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27799,555513402,"CHE","National Inventory",2011,"For storage only",37,"Palavrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27800,555513403,"CHE","National Inventory",2011,"For storage only",37,"Fazadra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27801,555513404,"CHE","National Inventory",2011,"For storage only",37,"Fraschmardin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27802,555513405,"CHE","National Inventory",2011,"For storage only",37,"Schluocht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27803,555513406,"CHE","National Inventory",2011,"For storage only",37,"Cadieris","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27804,555513407,"CHE","National Inventory",2011,"For storage only",37,"Plan da la Charbunera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27805,555513408,"CHE","National Inventory",2011,"For storage only",37,"Truois","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27806,555513409,"CHE","National Inventory",2011,"For storage only",37,"Murtaröl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27807,555513410,"CHE","National Inventory",2011,"For storage only",37,"Sulains","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27808,555513411,"CHE","National Inventory",2011,"For storage only",37,"Suot Duas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27809,555513412,"CHE","National Inventory",2011,"For storage only",37,"Prasarinun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27810,555513413,"CHE","National Inventory",2011,"For storage only",37,"Charnadüras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27811,555513414,"CHE","National Inventory",2011,"For storage only",37,"Arplan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27812,555513415,"CHE","National Inventory",2011,"For storage only",37,"Carrera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27813,555513416,"CHE","National Inventory",2011,"For storage only",37,"La Serra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27814,555513417,"CHE","National Inventory",2011,"For storage only",37,"Bugnaidas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27815,555513418,"CHE","National Inventory",2011,"For storage only",37,"Walihof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27816,555513419,"CHE","National Inventory",2011,"For storage only",37,"Hofer-Hütta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27817,555513420,"CHE","National Inventory",2011,"For storage only",37,"Hütti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27818,555513421,"CHE","National Inventory",2011,"For storage only",37,"Chadench","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27819,555513422,"CHE","National Inventory",2011,"For storage only",37,"Suransun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27820,555513423,"CHE","National Inventory",2011,"For storage only",37,"Samest Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27821,555513424,"CHE","National Inventory",2011,"For storage only",37,"Closiras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27822,555513425,"CHE","National Inventory",2011,"For storage only",37,"Sur la Tourne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27823,555513426,"CHE","National Inventory",2011,"For storage only",37,"Pradatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27824,555513427,"CHE","National Inventory",2011,"For storage only",37,"God Susauna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27825,555513428,"CHE","National Inventory",2011,"For storage only",37,"Pro da Peadra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27826,555513429,"CHE","National Inventory",2011,"For storage only",37,"Bächer-Hütta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27827,555513430,"CHE","National Inventory",2011,"For storage only",37,"Cultira Dafora","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27828,555513431,"CHE","National Inventory",2011,"For storage only",37,"Les Granges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27829,555513432,"CHE","National Inventory",2011,"For storage only",37,"Runtgols","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27830,555513433,"CHE","National Inventory",2011,"For storage only",37,"Rofna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27831,555513434,"CHE","National Inventory",2011,"For storage only",37,"Tschessa Granda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27832,555513435,"CHE","National Inventory",2011,"For storage only",37,"Gasslitobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27833,555513436,"CHE","National Inventory",2011,"For storage only",37,"Missezon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27834,555513437,"CHE","National Inventory",2011,"For storage only",37,"Val digl Artegl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27835,555513438,"CHE","National Inventory",2011,"For storage only",37,"Le Moulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27836,555513439,"CHE","National Inventory",2011,"For storage only",37,"Caritsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27837,555513440,"CHE","National Inventory",2011,"For storage only",37,"Boda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27838,555513441,"CHE","National Inventory",2011,"For storage only",37,"Peidra Grossa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27839,555513442,"CHE","National Inventory",2011,"For storage only",37,"Proschimun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27840,555513443,"CHE","National Inventory",2011,"For storage only",37,"Malval","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27841,555513444,"CHE","National Inventory",2011,"For storage only",37,"Höfli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27842,555513445,"CHE","National Inventory",2011,"For storage only",37,"Chalchera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27843,555513446,"CHE","National Inventory",2011,"For storage only",37,"Drosa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27844,555513447,"CHE","National Inventory",2011,"For storage only",37,"San Gian","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27845,555513448,"CHE","National Inventory",2011,"For storage only",37,"Planca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27846,555513449,"CHE","National Inventory",2011,"For storage only",37,"Blais Leda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27847,555513450,"CHE","National Inventory",2011,"For storage only",37,"Giondas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27848,555513451,"CHE","National Inventory",2011,"For storage only",37,"Mut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27849,555513452,"CHE","National Inventory",2011,"For storage only",37,"Les Îles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27850,555513453,"CHE","National Inventory",2011,"For storage only",37,"Stavel Veder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27851,555513454,"CHE","National Inventory",2011,"For storage only",37,"Anzuatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27852,555513455,"CHE","National Inventory",2011,"For storage only",37,"Pradatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27853,555513456,"CHE","National Inventory",2011,"For storage only",37,"Albana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27854,555513457,"CHE","National Inventory",2011,"For storage only",37,"Campsut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27855,555513458,"CHE","National Inventory",2011,"For storage only",37,"Sur Ragn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27856,555513459,"CHE","National Inventory",2011,"For storage only",37,"Alp Platta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27857,555513460,"CHE","National Inventory",2011,"For storage only",37,"Albanella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27858,555513461,"CHE","National Inventory",2011,"For storage only",37,"Albanatscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27859,555513462,"CHE","National Inventory",2011,"For storage only",37,"Les Baillets","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27860,555513463,"CHE","National Inventory",2011,"For storage only",37,"Stettlialpa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27861,555513464,"CHE","National Inventory",2011,"For storage only",37,"Zurstabüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27862,555513465,"CHE","National Inventory",2011,"For storage only",37,"Zurstabüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27863,555513466,"CHE","National Inventory",2011,"For storage only",37,"Chastè","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27864,555513467,"CHE","National Inventory",2011,"For storage only",37,"Zocca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27865,555513468,"CHE","National Inventory",2011,"For storage only",37,"Muotta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27866,555513469,"CHE","National Inventory",2011,"For storage only",37,"Buels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27867,555513470,"CHE","National Inventory",2011,"For storage only",37,"La Taiäda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27868,555513471,"CHE","National Inventory",2011,"For storage only",37,"Bleisacia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27869,555513472,"CHE","National Inventory",2011,"For storage only",37,"Lan Pensa da Rutic","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27870,555513473,"CHE","National Inventory",2011,"For storage only",37,"Plaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27871,555513474,"CHE","National Inventory",2011,"For storage only",37,"Nalghen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27872,555513475,"CHE","National Inventory",2011,"For storage only",37,"Palza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27873,555513476,"CHE","National Inventory",2011,"For storage only",37,"Dascciun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27874,555513477,"CHE","National Inventory",2011,"For storage only",37,"Castelmur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27875,555513478,"CHE","National Inventory",2011,"For storage only",37,"Petite Afrique","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27876,555513479,"CHE","National Inventory",2011,"For storage only",37,"Flin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27877,555513480,"CHE","National Inventory",2011,"For storage only",37,"Brentan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27878,555513481,"CHE","National Inventory",2011,"For storage only",37,"Motta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27879,555513482,"CHE","National Inventory",2011,"For storage only",37,"Casnac","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27880,555513483,"CHE","National Inventory",2011,"For storage only",37,"Pezza d'Munt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27881,555513484,"CHE","National Inventory",2011,"For storage only",37,"Urezza da Tea","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27882,555513485,"CHE","National Inventory",2011,"For storage only",37,"Vanal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27883,555513486,"CHE","National Inventory",2011,"For storage only",37,"Salaaser-Wisen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27884,555513487,"CHE","National Inventory",2011,"For storage only",37,"Schlüecht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27885,555513488,"CHE","National Inventory",2011,"For storage only",37,"Mot Salatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27886,555513489,"CHE","National Inventory",2011,"For storage only",37,"Börtermad","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27887,555513490,"CHE","National Inventory",2011,"For storage only",37,"Urezza Lischa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27888,555513491,"CHE","National Inventory",2011,"For storage only",37,"La Forge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27889,555513492,"CHE","National Inventory",2011,"For storage only",37,"Mezpra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27890,555513493,"CHE","National Inventory",2011,"For storage only",37,"Ravaischa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27891,555513494,"CHE","National Inventory",2011,"For storage only",37,"Holzboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27892,555513495,"CHE","National Inventory",2011,"For storage only",37,"Sunnistafel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27893,555513496,"CHE","National Inventory",2011,"For storage only",37,"Compradont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27894,555513497,"CHE","National Inventory",2011,"For storage only",37,"Schluchen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27895,555513498,"CHE","National Inventory",2011,"For storage only",37,"Fedji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27896,555513499,"CHE","National Inventory",2011,"For storage only",37,"Les Melottes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27897,555513500,"CHE","National Inventory",2011,"For storage only",37,"Oberen Gadenstätt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27898,555513501,"CHE","National Inventory",2011,"For storage only",37,"Moulin de Vert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27899,555513502,"CHE","National Inventory",2011,"For storage only",37,"Ronggaletz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27900,555513503,"CHE","National Inventory",2011,"For storage only",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27901,555513504,"CHE","National Inventory",2011,"For storage only",37,"Clavamartsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27902,555513505,"CHE","National Inventory",2011,"For storage only",37,"Malfeis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27903,555513506,"CHE","National Inventory",2011,"For storage only",37,"Bunsarsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27904,555513507,"CHE","National Inventory",2011,"For storage only",37,"Tschuggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27905,555513508,"CHE","National Inventory",2011,"For storage only",37,"Unter-Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27906,555513509,"CHE","National Inventory",2011,"For storage only",37,"Flersch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27907,555513510,"CHE","National Inventory",2011,"For storage only",37,"Tschägi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27908,555513511,"CHE","National Inventory",2011,"For storage only",37,"Saloms","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27909,555513512,"CHE","National Inventory",2011,"For storage only",37,"Crusch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27910,555513513,"CHE","National Inventory",2011,"For storage only",37,"Pardätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27911,555513514,"CHE","National Inventory",2011,"For storage only",37,"Spinai","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27912,555513515,"CHE","National Inventory",2011,"For storage only",37,"Zug","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27913,555513516,"CHE","National Inventory",2011,"For storage only",37,"La Coulouvrière","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27914,555513517,"CHE","National Inventory",2011,"For storage only",37,"Am Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27915,555513518,"CHE","National Inventory",2011,"For storage only",37,"Mot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27916,555513519,"CHE","National Inventory",2011,"For storage only",37,"Magnüda Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27917,555513520,"CHE","National Inventory",2011,"For storage only",37,"Racleret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27918,555513521,"CHE","National Inventory",2011,"For storage only",37,"Palü","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27919,555513522,"CHE","National Inventory",2011,"For storage only",37,"God Sinestra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27920,555513523,"CHE","National Inventory",2011,"For storage only",37,"Verbois","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27921,555513524,"CHE","National Inventory",2011,"For storage only",37,"Ruina Tschanüff","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27922,555513525,"CHE","National Inventory",2011,"For storage only",37,"Sous la Côte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27923,555513526,"CHE","National Inventory",2011,"For storage only",37,"Champ Coquet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27924,555513527,"CHE","National Inventory",2011,"For storage only",37,"Muntnaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27925,555513528,"CHE","National Inventory",2011,"For storage only",37,"Funtanivas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27926,555513529,"CHE","National Inventory",2011,"For storage only",37,"Crêt Boule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27927,555513530,"CHE","National Inventory",2011,"For storage only",37,"Ruinatscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27928,555513531,"CHE","National Inventory",2011,"For storage only",37,"Chastè Steinsberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27929,555513532,"CHE","National Inventory",2011,"For storage only",37,"Tarasp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27930,555513533,"CHE","National Inventory",2011,"For storage only",37,"Crêt de Mandole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27931,555513534,"CHE","National Inventory",2011,"For storage only",37,"Tulaida","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27932,555513535,"CHE","National Inventory",2011,"For storage only",37,"Teas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27933,555513536,"CHE","National Inventory",2011,"For storage only",37,"Moulin de la Ratte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27934,555513537,"CHE","National Inventory",2011,"For storage only",37,"Urezzas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27935,555513538,"CHE","National Inventory",2011,"For storage only",37,"Valdez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27936,555513539,"CHE","National Inventory",2011,"For storage only",37,"Flanoua","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27937,555513540,"CHE","National Inventory",2011,"For storage only",37,"Patnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27938,555513541,"CHE","National Inventory",2011,"For storage only",37,"Lavuors","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27939,555513542,"CHE","National Inventory",2011,"For storage only",37,"Brequanne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27940,555513543,"CHE","National Inventory",2011,"For storage only",37,"Muraraida","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27941,555513544,"CHE","National Inventory",2011,"For storage only",37,"Lavin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27942,555513545,"CHE","National Inventory",2011,"For storage only",37,"Nusch Dadaint","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27943,555513546,"CHE","National Inventory",2011,"For storage only",37,"Calörtsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27944,555513547,"CHE","National Inventory",2011,"For storage only",37,"Stn Sagliains","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27945,555513548,"CHE","National Inventory",2011,"For storage only",37,"Prada Bella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27946,555513549,"CHE","National Inventory",2011,"For storage only",37,"Padnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27947,555513550,"CHE","National Inventory",2011,"For storage only",37,"Chaschinas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27948,555513551,"CHE","National Inventory",2011,"For storage only",37,"Ils Chomps","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27949,555513552,"CHE","National Inventory",2011,"For storage only",37,"Plattas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27950,555513553,"CHE","National Inventory",2011,"For storage only",37,"Gondas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27951,555513554,"CHE","National Inventory",2011,"For storage only",37,"Umblin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27952,555513555,"CHE","National Inventory",2011,"For storage only",37,"Muottas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27953,555513556,"CHE","National Inventory",2011,"For storage only",37,"Muottas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27954,555513557,"CHE","National Inventory",2011,"For storage only",37,"Courtille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27955,555513558,"CHE","National Inventory",2011,"For storage only",37,"Prada d'Urezza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27956,555513559,"CHE","National Inventory",2011,"For storage only",37,"Bord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27957,555513560,"CHE","National Inventory",2011,"For storage only",37,"Bruschgaläschg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27958,555513561,"CHE","National Inventory",2011,"For storage only",37,"Muttner Berge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27959,555513562,"CHE","National Inventory",2011,"For storage only",37,"Bois de la Pesse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27960,555513563,"CHE","National Inventory",2011,"For storage only",37,"Spedlas-Vduogn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27961,555513564,"CHE","National Inventory",2011,"For storage only",37,"Breitenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27962,555513565,"CHE","National Inventory",2011,"For storage only",37,"Samest Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27963,555513566,"CHE","National Inventory",2011,"For storage only",37,"Badér","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27964,555513567,"CHE","National Inventory",2011,"For storage only",37,"Girs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27965,555513568,"CHE","National Inventory",2011,"For storage only",37,"Dasch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27966,555513569,"CHE","National Inventory",2011,"For storage only",37,"Carols","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27967,555513570,"CHE","National Inventory",2011,"For storage only",37,"Davos Nodras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27968,555513571,"CHE","National Inventory",2011,"For storage only",37,"Pardatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27969,555513572,"CHE","National Inventory",2011,"For storage only",37,"Bual","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27970,555513573,"CHE","National Inventory",2011,"For storage only",37,"Zanal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27971,555513574,"CHE","National Inventory",2011,"For storage only",37,"Chantatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27972,555513575,"CHE","National Inventory",2011,"For storage only",37,"Alp da Stierva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27973,555513576,"CHE","National Inventory",2011,"For storage only",37,"Mulagn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27974,555513577,"CHE","National Inventory",2011,"For storage only",37,"Spegna Lunga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27975,555513578,"CHE","National Inventory",2011,"For storage only",37,"God Nandet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27976,555513579,"CHE","National Inventory",2011,"For storage only",37,"Valvins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27977,555513580,"CHE","National Inventory",2011,"For storage only",37,"Teals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27978,555513581,"CHE","National Inventory",2011,"For storage only",37,"Giavaragns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27979,555513582,"CHE","National Inventory",2011,"For storage only",37,"Tgoms","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27980,555513583,"CHE","National Inventory",2011,"For storage only",37,"Salvez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27981,555513584,"CHE","National Inventory",2011,"For storage only",37,"Valleglia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27982,555513585,"CHE","National Inventory",2011,"For storage only",37,"Cultiras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27983,555513586,"CHE","National Inventory",2011,"For storage only",37,"Bot Git","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27984,555513587,"CHE","National Inventory",2011,"For storage only",37,"Donath","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27985,555513588,"CHE","National Inventory",2011,"For storage only",37,"Scarvens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27986,555513589,"CHE","National Inventory",2011,"For storage only",37,"Platta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27987,555513590,"CHE","National Inventory",2011,"For storage only",37,"Casti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27988,555513591,"CHE","National Inventory",2011,"For storage only",37,"Cuolm da Pignia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27989,555513592,"CHE","National Inventory",2011,"For storage only",37,"Promischur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27990,555513593,"CHE","National Inventory",2011,"For storage only",37,"Crasta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27991,555513594,"CHE","National Inventory",2011,"For storage only",37,"Promigilli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27992,555513595,"CHE","National Inventory",2011,"For storage only",37,"Quadrellas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27993,555513596,"CHE","National Inventory",2011,"For storage only",37,"Spinas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27994,555513597,"CHE","National Inventory",2011,"For storage only",37,"Gravulesch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27995,555513598,"CHE","National Inventory",2011,"For storage only",37,"Seeberge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27996,555513599,"CHE","National Inventory",2011,"For storage only",37,"Igl Tufs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27997,555513600,"CHE","National Inventory",2011,"For storage only",37,"Gadastatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27998,555513601,"CHE","National Inventory",2011,"For storage only",37,"Unter den Bender","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -27999,555513602,"CHE","National Inventory",2011,"For storage only",37,"Drigadma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28000,555513603,"CHE","National Inventory",2011,"For storage only",37,"Eggschi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28001,555513604,"CHE","National Inventory",2011,"For storage only",37,"Mittelegga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28002,555513605,"CHE","National Inventory",2011,"For storage only",37,"Bruucheggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28003,555513606,"CHE","National Inventory",2011,"For storage only",37,"Brunst","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28004,555513607,"CHE","National Inventory",2011,"For storage only",37,"Treuabärg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28005,555513608,"CHE","National Inventory",2011,"For storage only",37,"Cristolais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28006,555513609,"CHE","National Inventory",2011,"For storage only",37,"Pale Radonda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28007,555513610,"CHE","National Inventory",2011,"For storage only",37,"Crap Marsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28008,555513611,"CHE","National Inventory",2011,"For storage only",37,"Saruels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28009,555513612,"CHE","National Inventory",2011,"For storage only",37,"Tgacrest","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28010,555513613,"CHE","National Inventory",2011,"For storage only",37,"Botta Sassella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28011,555513614,"CHE","National Inventory",2011,"For storage only",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28012,555513615,"CHE","National Inventory",2011,"For storage only",37,"Stgavatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28013,555513616,"CHE","National Inventory",2011,"For storage only",37,"Avers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28014,555513617,"CHE","National Inventory",2011,"For storage only",37,"Mottas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28015,555513618,"CHE","National Inventory",2011,"For storage only",37,"Pfrunt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28016,555513619,"CHE","National Inventory",2011,"For storage only",37,"Plaun dal Sel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28017,555513620,"CHE","National Inventory",2011,"For storage only",37,"Curtins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28018,555513621,"CHE","National Inventory",2011,"For storage only",37,"L'Äla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28019,555513622,"CHE","National Inventory",2011,"For storage only",37,"Pisnana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28020,555513623,"CHE","National Inventory",2011,"For storage only",37,"Bleis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28021,555513624,"CHE","National Inventory",2011,"For storage only",37,"Roticcio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28022,555513625,"CHE","National Inventory",2011,"For storage only",37,"Cant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28023,555513626,"CHE","National Inventory",2011,"For storage only",37,"Durbegia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28024,555513627,"CHE","National Inventory",2011,"For storage only",37,"Creista","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28025,555513628,"CHE","National Inventory",2011,"For storage only",37,"Muntac","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28026,555513629,"CHE","National Inventory",2011,"For storage only",37,"Duegn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22265,555513630,"CHE","Annual Report",2015,"For storage only",37,"Pfäffikersee","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22266,555513631,"CHE","Annual Report",2015,"For storage only",37,"Greifensee","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22267,555513632,"CHE","Annual Report",2015,"For storage only",37,"Neeracher Ried","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22268,555513633,"CHE","Annual Report",2015,"For storage only",37,"Wauwilermoos","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22269,555513634,"CHE","Annual Report",2015,"For storage only",37,"Lac de Pérolles","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22270,555513635,"CHE","Annual Report",2015,"For storage only",37,"Lac de la Gruyère à Broc","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22271,555513636,"CHE","Annual Report",2015,"For storage only",37,"Chablais (Lac de Morat)","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -22272,555513637,"CHE","Annual Report",2015,"For storage only",37,"Kaltbrunner Riet","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -11675,555514403,"GUF","METT",2005,"For storage only",28,"Trésor","Regional Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21918,555516419,"CAN","Parks Canada",2003,"For storage only",28,"Fathom Five National Marine Park of Canada","National Marine Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21922,555516420,"CAN","Parks Canada",2007,"For storage only",28,"Grasslands National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21986,555516420,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Grasslands National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21966,555516421,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Torngat Mountains National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -21980,555516422,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Ukkusiksalik National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -10780,555516493,"BGR","Birdlife IBA",2013,"For storage only",28,"Batin","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11317,555516681,"CYP","Birdlife IBA",2013,"For storage only",28,"Limni Oroklinis","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11258,555516948,"CZE","Birdlife IBA",2007,"For storage only",28,"Hlubocke obory","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11256,555517072,"CZE","Birdlife IBA",2005,"For storage only",28,"Hradiste","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11255,555517156,"CZE","RAPPAM",2004,"For storage only",28,"Ceske Svycarsko","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11271,555517277,"CZE","Birdlife IBA",2005,"For storage only",28,"Krkonose","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11251,555517314,"CZE","Birdlife IBA",2005,"For storage only",28,"Bohdanecsky rybnik a rybnik Matka","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11287,555517566,"CZE","Birdlife IBA",2005,"For storage only",28,"Podyji","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11292,555517583,"CZE","Birdlife IBA",2010,"For storage only",28,"Soutok - Podluzi","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11364,555522306,"DNK","Birdlife IBA",2006,"For storage only",28,"Gribskov","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11453,555522308,"DNK","Birdlife IBA",2006,"For storage only",28,"Roskilde Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11461,555522322,"DNK","Birdlife IBA",2006,"For storage only",28,"Sejerø Bugt og Saltbæk Vig","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11485,555522324,"DNK","Birdlife IBA",2010,"For storage only",28,"Åmose, Tissø, Halleby Å og Flasken","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11396,555522332,"DNK","Birdlife IBA",2010,"For storage only",28,"Havet og kysten mellem Hundested og Rørvig","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11439,555522336,"DNK","Birdlife IBA",2010,"For storage only",28,"Havet og kysten mellem Præstø Fjord og Grønsund","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11424,555522343,"DNK","Birdlife IBA",2010,"For storage only",28,"Nakskov Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11409,555522358,"DNK","Birdlife IBA",2010,"For storage only",28,"Lillebælt","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11401,555522360,"DNK","Birdlife IBA",2006,"For storage only",28,"Æbelø, havet syd for og Nærå","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11450,555522361,"DNK","Birdlife IBA",2009,"For storage only",28,"Havet mellem Romsø og Hindsholm samt Romsø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11352,555522370,"DNK","Birdlife IBA",2010,"For storage only",28,"Skove og søer syd for Brahetrolleborg","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11348,555522371,"DNK","Birdlife IBA",2006,"For storage only",28,"Arreskov Sø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11481,555522376,"DNK","Birdlife IBA",2010,"For storage only",28,"Sydfynske Øhav","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11412,555522380,"DNK","Birdlife IBA",2006,"For storage only",28,"Lindet skov, Hønning Mose, Hønning Plantage og L","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11465,555522397,"DNK","Birdlife IBA",2008,"For storage only",28,"Skove langs nordsiden af Vejle Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11430,555522411,"DNK","Birdlife IBA",2010,"For storage only",28,"Nissum Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11446,555522422,"DNK","Birdlife IBA",2010,"For storage only",28,"Ringkøbing Fjord og Nymindestrømmen","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11476,555522428,"DNK","Birdlife IBA",2006,"For storage only",28,"Stavns Fjord, Samsø Østerflak og Nordby Hede","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11380,555522441,"DNK","Birdlife IBA",2010,"For storage only",28,"Horsens Fjord, havet +©st for og Endelave","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11467,555522444,"DNK","Birdlife IBA",2008,"For storage only",28,"Sepstrup Sande, Vrads Sande, Velling Skov og Pals*","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11368,555522446,"DNK","Birdlife IBA",2010,"For storage only",28,"Hanstholmreservatet, Nors Sø og Vandet Sø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11405,555522462,"DNK","Birdlife IBA",2010,"For storage only",28,"Løgstør Bredning, Vejlerne og Bulbjerg","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11427,555522463,"DNK","Birdlife IBA",2008,"For storage only",28,"Agger Tange, Nissum Bredning, Skibsted Fjord og A*","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11490,555522481,"DNK","Birdlife IBA",2010,"For storage only",28,"Nibe Bredning, Halkær Ådal og Sønderup Ådal","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11448,555522483,"DNK","Birdlife IBA",2006,"For storage only",28,"Rold Skov, Lindenborg Ådal og Madum Sø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14514,555523227,"ESP","Birdlife IBA",2007,"For storage only",28,"Los Valles","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14582,555523405,"ESP","Birdlife IBA",2007,"For storage only",28,"Hoces del Alto Ebro y Rudrón","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14584,555523409,"ESP","Birdlife IBA",2007,"For storage only",28,"Humada-Peña Amaya","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14518,555523463,"ESP","Birdlife IBA",2007,"For storage only",28,"Cañón del Río Lobos","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14506,555523471,"ESP","Birdlife IBA",2008,"For storage only",28,"Altos De Barahona","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14595,555524077,"ESP","Birdlife IBA",2008,"For storage only",28,"Islote de Lobos","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14597,555524078,"ESP","Birdlife IBA",2008,"For storage only",28,"Corralejo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14658,555524079,"ESP","Birdlife IBA",2008,"For storage only",28,"Jandía","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22036,555524234,"FIN","Birdlife IBA",2010,"For storage only",28,"Kirkkonummen saaristo (SCI)","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22114,555524293,"FIN","Birdlife IBA",2010,"For storage only",28,"Puurijärvi-Isosuo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22144,555524452,"FIN","RAPPAM",2004,"For storage only",28,"Seitseminen","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22145,555524645,"FIN","Birdlife IBA",2010,"For storage only",28,"Siikalahti","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22064,555524689,"FIN","Birdlife IBA",2010,"For storage only",28,"Linnansaari","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22106,555524874,"FIN","Birdlife IBA",2010,"For storage only",28,"Patvinsuo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22009,555525396,"FIN","RAPPAM",2004,"For storage only",28,"Hossa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22122,555525460,"FIN","Birdlife IBA",2010,"For storage only",28,"Riisitunturin Kansallispuisto","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22167,555525478,"FIN","Birdlife IBA",2010,"For storage only",28,"Tuntsan erämaa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22070,555525497,"FIN","Birdlife IBA",2010,"For storage only",28,"Luosto","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11562,555526084,"FRA","Birdlife IBA",2013,"For storage only",28,"Grande Brière et marais de Donges","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -229,555527017,"GRC","Birdlife IBA",2013,"For storage only",8,"Antichasia Ori - Meteora","Site of Community Importance (Habitats Directive)","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -227,555527018,"GRC","Birdlife IBA",2013,"For storage only",8,"Amvrakikos Kolpos, Delta Lourou Kai Arachthou (Petra, Mytikas, Evryteri Periochi)","Site of Community Importance (Habitats Directive)","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -14913,555527181,"HUN","European Diploma",1995,"For storage only",28,"Tihanyi-félsziget","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11684,555527651,"IRL","Birdlife IBA",2009,"For storage only",28,"Clonakilty Bay SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11682,555527668,"IRL","Birdlife IBA",2009,"For storage only",28,"Inishtrahull SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11686,555527685,"IRL","Birdlife IBA",2013,"For storage only",28,"Lambay Island SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11688,555527713,"IRL","Birdlife IBA",2000,"For storage only",28,"Rahasane Turlough SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11679,555527720,"IRL","Birdlife IBA",2000,"For storage only",28,"Castlemaine Harbour SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11680,555527760,"IRL","Birdlife IBA",2009,"For storage only",28,"Inishkea Islands SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11677,555527921,"IRL","Birdlife IBA",2013,"For storage only",28,"Boyne Coast and Estuary SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12605,555531072,"PRT","Birdlife IBA",2005,"For storage only",28,"Peneda/Gerês","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12610,555531073,"PRT","Birdlife IBA",2005,"For storage only",28,"Alvão/Marão","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12583,555531079,"PRT","Birdlife IBA",2005,"For storage only",28,"Estuário do Tejo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12578,555531082,"PRT","Birdlife IBA",2005,"For storage only",28,"Costa Sudoeste","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12601,555531084,"PRT","Birdlife IBA",2005,"For storage only",28,"Serra da Estrela","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12569,555531088,"PRT","Birdlife IBA",2005,"For storage only",28,"Barrinha de Esmoriz","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12597,555531091,"PRT","Birdlife IBA",2005,"For storage only",28,"Rios Sabor e Maçãs","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12581,555531092,"PRT","Birdlife IBA",2005,"For storage only",28,"Douro Internacional","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12570,555531099,"PRT","Birdlife IBA",2005,"For storage only",28,"Cabeção","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12571,555531103,"PRT","Birdlife IBA",2005,"For storage only",28,"Cabrela","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13217,555535188,"SVN","Birdlife IBA",2013,"For storage only",28,"Javorniki - Snežnik","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13207,555535222,"SVN","Birdlife IBA",2013,"For storage only",28,"Ljubljansko Barje","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1679,555535618,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Godrevy Head To St Agnes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1414,555535619,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fontmell And Melbury Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1415,555535620,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pewsey Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1680,555535621,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prescombe Down","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1681,555535622,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The New Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1682,555535623,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Penhale Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1683,555535624,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kenfig/ Cynffig","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1416,555535625,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braunton Burrows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1417,555535626,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hill Of Towanreef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1684,555535627,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigengar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1685,555535628,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moniack Gorge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1686,555535629,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bath And Bradford-On-Avon Bats","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1687,555535630,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beer Quarry And Caves","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1418,555535631,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Windsor Forest And Great Park","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1419,555535632,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bredon Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1420,555535633,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rum","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1421,555535634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Preseli","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1422,555535635,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Itchen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1423,555535636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Devon Pebblebed Heaths","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1688,555535637,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tregonning Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1689,555535638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunkeld-Blairgowrie Lochs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1690,555535639,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Wye/ Afon Gwy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1691,555535640,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Eden","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1692,555535641,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ensor`S Pool","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1693,555535642,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Wensum","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1694,555535643,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Hams","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1695,555535644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mells Valley","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1696,555535645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glynllifon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1697,555535646,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Teifi/ River Teifi","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1698,555535647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cannock Extension Canal","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1699,555535648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Culm Grasslands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1700,555535649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Llawr-Cwrt","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1701,555535650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rooksmoor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1424,555535651,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Taynish And Knapdale Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1425,555535652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salisbury Plain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1426,555535653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gower Commons/ Tiroedd Comin Gwyr","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1427,555535654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yell Sound Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1428,555535655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Tweed","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1429,555535656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monach Islands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1430,555535657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Rona","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1432,555535658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mousa","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1433,555535659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cardigan Bay/ Bae Ceredigion","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1434,555535660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Uist Machair","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1435,555535661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ebernoe Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1436,555535662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Mens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1437,555535663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Epping Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1438,555535664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Hampshire Hangers","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1439,555535665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chilterns Beechwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1440,555535666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wye Valley Woodlands/ Coetiroedd Dyffryn Gwy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1441,555535667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avon Gorge Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1442,555535668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Downton Gorge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1443,555535669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birklands And Bilhaugh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1702,555535670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Staverton Park And The Thicks, Wantisden","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1444,555535671,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Borrowdale Woodland Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1445,555535672,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd A Cheunant Rheidol/ Rheidol Woods And Gorge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1446,555535673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Dartmoor Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1447,555535674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Etive Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1448,555535675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Tanar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1449,555535676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Wood Of Rannoch","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1450,555535677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinveachy Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1451,555535678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Amat Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1452,555535679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Y Cerrig","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1453,555535680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kingley Vale","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1454,555535681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Eden Dene","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1703,555535682,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Yews","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1704,555535683,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ingleborough Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1705,555535684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strath","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1706,555535685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Durness","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1707,555535686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inchnadamph","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1709,555535687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pasturefields Salt Marsh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1710,555535688,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hoy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1711,555535689,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thursley, Ash, Pirbright And Chobham","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1712,555535690,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrine Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1713,555535691,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Lizard","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1714,555535692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roydon Common And Dersingham Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1455,555535693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mole Gap To Reigate Escarpment","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1456,555535694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minsmere To Walberswick Heaths And Marshes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1457,555535695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Stiperstones And The Hollies","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1715,555535696,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keen Of Hamar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1716,555535697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyne And Allen River Gravels","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1719,555535698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gang Mine","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1720,555535699,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caenlochan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1721,555535700,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rodborough Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1722,555535701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wye And Crundale Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1723,555535702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lewes Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1725,555535703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Queendown Warren","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1726,555535704,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lydden And Temple Ewell Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1727,555535705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Folkestone To Etchinghill Escarpment","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1728,555535706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1729,555535707,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thrislington","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1730,555535708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Derwent Valley","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1731,555535709,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oxford Meadows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1732,555535710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Trotternish Ridge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1733,555535711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Iadain And Beinn Na H`Uamha","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1734,555535712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rannoch Moor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1735,555535713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drostre Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1736,555535714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waveney And Little Ouse Valley Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1708,555535715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holme Moor And Clean Moor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1717,555535716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsydd Môn/ Anglesey Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1718,555535717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crymlyn Bog/ Cors Crymlyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1724,555535718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cothill Fen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1737,555535719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newham Fen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1458,555535720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tulach Hill And Glen Fender Meadows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1459,555535721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Norfolk Valley Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1460,555535722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morrone Birkwood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1461,555535723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Lawers","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1462,555535724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Dearg","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1463,555535725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Lui","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1464,555535726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Heasgarnich","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1465,555535727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flanders Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1466,555535728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Solway Mosses North","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1467,555535729,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fenn`S, Whixall, Bettisfield, Wem And Cadney Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1468,555535730,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorne Moor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1469,555535731,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Border Mires, Kielder - Butterburn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1470,555535732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berwyn A Mynyddoedd De Clwyd/ Berwyn And South Clwyd Mountains","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1471,555535733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elenydd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1472,555535734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dartmoor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1473,555535735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Harris","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1474,555535736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumochter Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1475,555535737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhinog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1476,555535738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eryri/ Snowdonia","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1477,555535739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Wyvis","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1478,555535740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Alder And Aonach Beag","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1479,555535741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meall Na Samhna","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1480,555535742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag Meagaidh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1481,555535743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Nevis","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1482,555535744,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn A`Ghlo","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1483,555535745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardmeanach","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1484,555535746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Coe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1485,555535747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lake District High Fells","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1738,555535748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oak Mere","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1739,555535749,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lismore Lochs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1740,555535750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Watten","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1741,555535751,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llangorse Lake/ Llyn Syfaddan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1486,555535752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Moidart","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1487,555535753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Borgie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1488,555535754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Kerry","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1489,555535755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Usk/ Afon Wysg","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1490,555535756,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Tywi/ River Tywi","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1491,555535757,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ouse Washes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1492,555535758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Avon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1493,555535759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Solway Firth","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1494,555535760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morecambe Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1495,555535761,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Severn Estuary/ Môr Hafren","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1496,555535762,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drigg Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1497,555535763,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flamborough Head","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1498,555535764,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Luce Bay And Sands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1499,555535765,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Invernaver","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1500,555535766,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sands Of Forvie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1501,555535767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Winterton - Horsey Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1502,555535768,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barry Links","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1503,555535769,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St David`S / Ty Ddewi","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1504,555535770,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Ynys Gybi/ Holy Island Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1505,555535771,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tintagel-Marsland-Clovelly Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1506,555535772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oldshoremore And Sandwood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1507,555535773,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dungeness","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1508,555535774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sefton Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1509,555535775,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandwich Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1510,555535776,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clyde Valley Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1511,555535777,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardgour Pinewoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1512,555535778,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benacre To Easton Bavents Lagoons","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1513,555535779,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thanet Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1514,555535780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plymouth Sound And Estuaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1515,555535781,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fal And Helford","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1516,555535782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lundy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1517,555535783,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pembrokeshire Marine/ Sir Benfro Forol","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1518,555535784,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen Llyn A`R Sarnau/ Lleyn Peninsula And The Sarnau","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1519,555535785,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foinaven","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1520,555535786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Lomond Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1521,555535787,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mound Alderwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1522,555535788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Conon Islands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1523,555535789,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Broads","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1524,555535790,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag Nan Gamhainn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1525,555535791,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Cadlan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1526,555535792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stromness Heaths And Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1527,555535793,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lendalfoot Hills Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1528,555535794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whitlaw And Branxholme","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1529,555535795,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Midlands Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1530,555535796,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Maree Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1531,555535797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caithness And Sutherland Peatlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1532,555535798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monadh Mor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1742,555535799,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitmaduthy Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1743,555535800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cotswold Beechwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1744,555535801,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Essex Estuaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1745,555535802,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Isles Of Scilly Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1746,555535803,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Kilda","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1533,555535804,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wormley Hoddesdonpark Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1534,555535805,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blean Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1535,555535806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coll Machair","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1536,555535807,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhidorroch Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1537,555535808,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strathglass Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1538,555535809,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tiree Machair","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1539,555535810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Of Stenness","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1540,555535811,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moor House - Upper Teesdale","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1541,555535812,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Pennine Dales Meadows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1542,555535813,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craven Limestone Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1543,555535814,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morecambe Bay Pavements","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1544,555535815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Asby Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1545,555535816,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orfordness - Shingle Street","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1546,555535817,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fenland","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1547,555535818,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tanat And Vyrnwy Bat Sites/ Safleoedd Ystlumod Tanat Ac Efyrnwy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1548,555535819,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Usk Bat Sites/ Safleoedd Ystlumod Wysg","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1549,555535820,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Limestone Coast Of South West Wales/ Arfordir Calchfaen De Orllewin Cymru","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1550,555535821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Orme`S Head/ Pen Y Gogarth","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1551,555535822,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Derw A Safleoedd Ystlumod Meirion/ Meirionnydd Oakwoods And Bat Sites","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1552,555535823,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Caron","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1553,555535824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cors Fochno","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1554,555535825,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Goch","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1555,555535826,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pembrokeshire Bat Sites And Bosherston Lakes/ Safleoedd Ystlum Sir Benfro A Llynnoedd Bosherston","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1556,555535827,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wye Valley And Forest Of Dean Bat Sites/ Safleoedd Ystlumod Dyffryn Gwy A Fforest Y Ddena","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1557,555535828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Isle Of Wight Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1558,555535829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Meadow And Clattinger Farm","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1747,555535830,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chilmark Quarries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1748,555535831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairngorms","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1750,555535832,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballynahone Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1751,555535833,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cuilcagh Mountain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1752,555535834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garron Plateau","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1753,555535835,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pettigoe Plateau","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1754,555535836,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teal Lough","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1755,555535837,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1756,555535838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garry Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1757,555535839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fairy Water Bogs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1758,555535840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Murlough","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1759,555535841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Magilligan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1760,555535842,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Lough Erne","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1761,555535843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eastern Mournes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1762,555535844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strangford Lough","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1763,555535845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monawilkin","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1765,555535846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Derryleckagh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1766,555535847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Magheraveely Marl Loughs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1767,555535848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slieve Beagh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1768,555535849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Vadills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1769,555535850,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Papa Stour","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1559,555535851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Nam Madadh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1560,555535852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berwickshire And North Northumberland Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1561,555535853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Solent And Isle Of Wight Lagoons","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1562,555535854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Roag Lagoons","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1563,555535855,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wash And North Norfolk Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1564,555535856,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chesil And The Fleet","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1565,555535857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochs Duich, Long And Alsh Reefs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1566,555535858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Faray And Holm Of Faray","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1567,555535859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Northumberland Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1568,555535860,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Obain Loch Euphoirt","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1770,555535861,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bankhead Moss, Beith","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1771,555535862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Loch Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1775,555535863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blawhorn Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1780,555535864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braehead Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1781,555535865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coalburn Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1749,555535866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cockinhead Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1787,555535867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranley Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1776,555535868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dykeneuk Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1791,555535869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1798,555535870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waukenwae Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1792,555535871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Reidside Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1793,555535872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Shotts Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1794,555535873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Claish Moss And Kentra Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1795,555535874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coladoir Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1796,555535875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eilean Na Muice Duibhe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1797,555535876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Feur Lochain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1569,555535877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glac Na Criche","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1570,555535878,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn Nan Tri-Tighearnan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1571,555535879,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hascosay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1572,555535880,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inverasdale Peatlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1799,555535881,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Mires And Lumbister","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1800,555535882,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moidach More","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1801,555535883,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ronas Hill - North Roe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1802,555535884,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sligachan Peatlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1803,555535885,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tingon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1804,555535886,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turclossie Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1808,555535887,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flow Of Dergoals","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1809,555535888,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sound Of Arisaig (Loch Ailort To Loch Ceann Traigh)","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1810,555535889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sunart","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1811,555535890,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Uist Machair","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1812,555535891,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dornoch Firth And Morrich More","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1813,555535892,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Culbin Bar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1814,555535893,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moray Firth","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1815,555535894,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Spey","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1816,555535895,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Insh Marshes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1817,555535896,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirkcowan Flow","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1818,555535897,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilhern Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1819,555535898,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lewis Peatlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1820,555535899,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mointeach Scadabhaigh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1821,555535900,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mochrum Lochs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1822,555535901,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mointeach Nan Lochain Dubha","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1823,555535902,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duddon Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1824,555535903,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roudsea Wood And Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1825,555535904,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Norfolk Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1826,555535905,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mòine Mhór","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1827,555535906,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Endrick Water","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1828,555535907,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Merrick Kells","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1829,555535908,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dorset Heaths","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1830,555535909,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peak District Dales","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1574,555535910,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Isle Of Portland To Studland Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1575,555535911,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Albans Head To Durlston Head","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1576,555535912,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sidmouth To West Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1577,555535913,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breckland","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1578,555535914,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rex Graham Reserve","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1579,555535915,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morven And Mullachdubh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1580,555535916,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muir Of Dinnet","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1581,555535917,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower River Spey - Spey Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1582,555535918,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carmarthen Bay Dunes/ Twyni Bae Caerfyrddin","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1583,555535919,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carmarthen Bay And Estuaries/ Bae Caerfyrddin Ac Aberoedd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1584,555535920,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Y Twyni O Abermenai I Aberffraw/ Abermenai To Aberffraw Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1585,555535921,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Môn: Cors Heli / Anglesey Coast: Saltmarsh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1586,555535922,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballochbuie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1831,555535923,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barnack Hills And Holes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1832,555535924,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Derwent And Bassenthwaite Lake","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1833,555535925,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Pennine Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1834,555535926,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burnham Beeches","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1835,555535927,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clints Quarry","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1836,555535928,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Denby Grange Colliery Ponds","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1587,555535929,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devil`S Dyke","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1588,555535930,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dorset Heaths (Purbeck And Wareham) And Studland Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1837,555535931,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eller`S Wood And Sand Dale","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1838,555535932,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Exmoor Heaths","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1839,555535933,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Firth Of Lorn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1840,555535934,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glan-Traeth","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1841,555535935,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grimsthorpe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1589,555535936,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kennet And Lambourn Floodplain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1590,555535937,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Largalinny","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1591,555535938,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Gwyrfai A Llyn Cwellyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1592,555535939,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Melvin","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1593,555535940,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mendip Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1594,555535941,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morfa Harlech A Morfa Dyffryn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1595,555535942,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mottey Meadows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1596,555535943,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Somerset And Mendip Bats","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1597,555535944,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orton Pit","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1598,555535945,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portholme","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1599,555535946,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rathlin Island","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1600,555535947,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Camel","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1601,555535948,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Ehen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1842,555535949,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rook Clift","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1843,555535950,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Solent Maritime","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1844,555535951,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Devon Shore Dock","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1845,555535952,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Wight Maritime","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1846,555535953,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wast Water","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1764,555535954,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Bostraze And Leswidden","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1772,555535955,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Newlyn Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1773,555535956,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strathy Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1774,555535957,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South-East Islay Skerries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1847,555535958,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fardrum And Roosky Turloughs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1848,555535959,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sanday","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1849,555535960,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cernydd Carmel","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1850,555535961,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aberbargoed Grasslands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1851,555535962,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sugar Loaf Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1852,555535963,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Achnahaird","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1777,555535964,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afonydd Cleddau/ Cleddau Rivers","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1778,555535965,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Eden - Cors Goch Trawsfynydd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1779,555535966,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alde, Ore And Butley Estuaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1853,555535967,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Altnaharra","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1854,555535968,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alyn Valley Woods/ Coedwigoedd Dyffryn Alun","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1855,555535969,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardnamurchan Burns","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1782,555535970,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashdown Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1783,555535971,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abhainn Clais An Eas And Allt A`Mhuilinn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1784,555535972,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aston Rowant","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1785,555535973,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Banagher Glen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1786,555535974,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bann Estuary","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1856,555535975,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baston Fen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1857,555535976,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beast Cliff - Whitby (Robin Hood`S Bay)","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1860,555535977,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bee`S Nest And Green Clay Pits","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1861,555535978,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berriedale And Langwell Waters","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1866,555535979,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Binevenagh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1867,555535980,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackmill Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1868,555535981,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackstone Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1869,555535982,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaen Cynon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1870,555535983,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walton Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1871,555535984,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Borders Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1872,555535985,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bracket`S Coppice","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1873,555535986,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brecon Beacons/ Bannau Brycheiniog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1876,555535987,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breen Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1877,555535988,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breney Common And Goss And Tregoss Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1880,555535989,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broubster Leans","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1882,555535990,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brown Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1883,555535991,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buchan Ness To Collieston","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1788,555535992,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burrow Head","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1789,555535993,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Butser Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1790,555535994,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cadair Idris","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1884,555535995,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Mynydd Mawr","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1885,555535996,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calf Hill And Cragg Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1886,555535997,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cannock Chase","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1805,555535998,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cape Wrath","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1806,555535999,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cardiff Beech Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1807,555536000,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carn-Glenshane Pass","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1858,555536001,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carsegowan Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1859,555536002,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cawdor Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1862,555536003,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glaswelltiroedd Cefn Cribwr/ Cefn Cribwr Grasslands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1863,555536004,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bae Cemlyn/ Cemlyn Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1864,555536005,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cerne And Sydling Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1865,555536006,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cladagh (Swanlinbar) River","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1887,555536007,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coed Cwm Einion","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1874,555536008,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Aber","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1875,555536009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Llawr-Y-Glyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1878,555536010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coille Mhór","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1879,555536011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsydd Eifionydd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1881,555536012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coyles Of Muick","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1573,555536013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craighall Gorge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1602,555536014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedwigoedd Penrhyn Creuddyn/ Creuddyn Peninsula Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1603,555536015,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Strathearn Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1888,555536016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cumbrian Marsh Fritillary Site","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1889,555536017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Clydach Woodlands / Coedydd Cwm Clydach","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1890,555536018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwm Doethie - Mynydd Mallaen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1891,555536019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dam Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1892,555536020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dawlish Warren","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1893,555536021,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dee Estuary/ Aber Dyfrdwy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1894,555536022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deeside And Buckley Newt Sites","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1895,555536023,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dew`S Ponds","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1896,555536024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dinnet Oakwood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1897,555536025,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dixton Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1901,555536026,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dogden Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1902,555536027,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duncton To Bignor Escarpment","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1910,555536028,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunraven Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1911,555536029,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Durham Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1912,555536030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedydd Nedd A Mellte","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1913,555536031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arnecliff And Park Hole Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1914,555536032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Caithness Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1915,555536033,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gweunydd Blaencleddau","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1604,555536034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coetiroedd Cwm Elan/ Elan Valley Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1605,555536035,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedwigoedd Dyffryn Elwy/ Elwy Valley Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1606,555536036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Emer Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1607,555536037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Exmoor And Quantock Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1608,555536038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fair Isle","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1609,555536039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fens Pools","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1916,555536040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ford Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1920,555536041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dun Moss And Forest Of Alyth Mires","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1921,555536042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Galloway Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1922,555536043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Beasdale","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1923,555536044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Creran Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1926,555536045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenartney Juniper Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1927,555536046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gower Ash Woods/ Coedydd Ynn Gwyr","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1928,555536047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Granllyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1929,555536048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Green Hill Of Strathdon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1933,555536049,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grogwynion","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1934,555536050,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddiau Fforest Gwydir/ Gwydyr Forest Mines","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1935,555536051,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hackpen Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1936,555536052,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Halkyn Mountain/ Mynydd Helygain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1937,555536053,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hartslock Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1938,555536054,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hastings Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1939,555536055,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hatfield Moor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1940,555536056,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Helbeck And Swindale Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1637,555536057,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hestercombe House","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1638,555536058,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hollymount","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1639,555536059,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Humber Estuary","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1640,555536060,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inverpolly","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1641,555536061,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Isle Of May","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1642,555536062,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Johnstown Newt Sites","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1643,555536063,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keltneyburn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1644,555536064,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kennet Valley Alderwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1645,555536065,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinloch And Kyleakin Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1646,555536066,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kippenrait Glen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1898,555536067,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirk Deighton","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1899,555536068,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ladder Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1900,555536069,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lecale Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1903,555536070,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ledmore Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1904,555536071,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eileanan Agus Sgeiran Lios Mór","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1905,555536072,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Gruinard River","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1906,555536073,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Wittenham","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1907,555536074,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llwyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1908,555536075,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Llyn Dinam","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1909,555536076,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Corsydd Llyn/ Lleyn Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1941,555536077,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch A`Phuill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1943,555536078,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Achnacloich","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1944,555536079,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Creran","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1945,555536080,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Fada","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1946,555536081,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Laxford","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1947,555536082,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Of Isbister","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1955,555536083,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Of Wester","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1956,555536084,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ruthven","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1957,555536085,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ussie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1958,555536086,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Findhorn Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1960,555536087,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lyppard Grange Ponds","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1963,555536088,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Main Valley Bogs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1964,555536089,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Manchester Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1965,555536090,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Y Fenai A Bae Conwy/ Menai Strait And Conwy Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1966,555536091,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mendip Limestone Grasslands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1961,555536092,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Methven Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1962,555536093,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Migneint-Arenig-Dduallt","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1967,555536094,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mingarry Burn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1968,555536095,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moffat Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1969,555536096,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Moidart And Loch Shiel Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1970,555536097,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monadhliath","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1972,555536098,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moneygal Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1973,555536099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moninea Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1610,555536100,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Montgomery Canal","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1974,555536101,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Montiaghs Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1975,555536102,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moorfoot Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1942,555536103,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mortlach Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1948,555536104,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morvern Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1949,555536105,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Airds Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1950,555536106,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mull Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1951,555536107,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mull Of Galloway","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1952,555536108,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Epynt","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1953,555536109,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nene Washes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1954,555536110,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ness Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1959,555536111,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Antrim Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1971,555536112,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Downs Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1976,555536113,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Fetlar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1977,555536114,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Pembrokeshire Woodlands/ Coedydd Gogledd Sir Benfro","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1978,555536115,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North York Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1611,555536116,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North West Pembrokeshire Commons/ Comins Gogledd Orllewin Sir Benfro","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1612,555536117,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ascrib, Isay And Dunvegan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1613,555536118,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardvar And Loch A`Mhuilinn Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1614,555536119,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Overstrand Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1615,555536120,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Owenkillew River","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1616,555536121,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ox Close","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1917,555536122,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Paston Great Barn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1918,555536123,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peatlands Park","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1919,555536124,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peter`S Pit","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1924,555536125,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Phoenix United Mine And Crow`S Nest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1979,555536126,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pitkeathly Mires","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1980,555536127,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turflundie Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1981,555536128,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Polruan To Polperro","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1990,555536129,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Quants","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1991,555536130,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rassal","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1992,555536131,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rea`S Wood And Farr`S Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1997,555536132,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhos Talglas","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1998,555536133,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Richmond Park","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1999,555536134,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rinns Of Islay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2000,555536135,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Axe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2001,555536136,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Bladnoch","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2002,555536137,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Clun","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2003,555536138,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Dee","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1930,555536139,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Dee And Bala Lake/ Afon Dyfrdwy A Llyn Tegid","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1931,555536140,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Derwent","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1932,555536141,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Evelix","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1982,555536142,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langavat","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1983,555536143,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Kent","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1984,555536144,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Lambourn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1985,555536145,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Mease","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1986,555536146,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Moriston","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1987,555536147,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Naver","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1988,555536148,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Oykel","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1989,555536149,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River South Esk","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1993,555536150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Teith","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1994,555536151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Thurso","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2004,555536152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rixton Clay Pits","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2005,555536153,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rochdale Canal","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1617,555536154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roman Wall Loughs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1925,555536155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rostrevor Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1995,555536156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Saltfleetby-Theddlethorpe Dunes And Gibraltar Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1996,555536157,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clogwyni Pen Llyn/ Seacliffs Of Lleyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2006,555536158,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shelforkie Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2007,555536159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sullom Voe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1618,555536160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shingle Islands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1619,555536161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shortheath Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1620,555536162,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skipwith Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1621,555536163,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slieve Gullion","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1622,555536164,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Pennine Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1623,555536165,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Abb`S Head To Fast Castle","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1649,555536166,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Austell Clay Pits","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1650,555536167,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stodmarsh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1651,555536168,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strensall Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1652,555536169,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Subberthwaite, Blawith And Torver Low Commons","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1653,555536170,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tarbert Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1654,555536171,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tayvallich Juniper And Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2008,555536172,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Threepwood Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2009,555536173,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Treshnish Isles","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2010,555536174,"GBR","Common Standards Monitoring",2013,"For storage only",18,"TrosSAChs Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2011,555536175,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Turmennan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2012,555536176,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tweed Estuary","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1655,555536177,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyne And Nent","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1656,555536178,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tynron Juniper Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1657,555536179,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ullswater Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1658,555536180,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Ballinderry River","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1659,555536181,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Nithsdale Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1660,555536182,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Urquhart Bay Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1661,555536183,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Dorset Alder Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1662,555536184,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Fermanagh Scarplands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1663,555536185,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wimbledon Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1664,555536186,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Witherslack Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2013,555536187,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wolf Island Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2014,555536188,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Woolmer Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2015,555536189,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yerbeston Tops","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2016,555536190,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Yewbarrow Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2017,555536191,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rigg - Bile","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2018,555536192,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Solway Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2019,555536193,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Firth Of Tay & Eden Estuary","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2020,555536194,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Tay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2022,555536195,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peeswit Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2025,555536196,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Raeburn Flow","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2027,555536197,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Moss Of Netherley","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2028,555536198,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Fannyside Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2029,555536199,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Darwin Mounds","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2023,555536200,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aughnadarragh Lough","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2031,555536201,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballykilbeg","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2032,555536202,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Foyle And Tributaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2035,555536203,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranny Bogs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2040,555536204,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Curran Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2041,555536205,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dead Island Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2033,555536206,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deroran Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2043,555536207,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tonnagh Beg Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2044,555536208,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tully Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2045,555536209,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Briddlesford Copses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2046,555536210,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crowdy Marsh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2047,555536211,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dover To Kingsdown Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2048,555536212,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eversden And Wimpole Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2049,555536213,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fen Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2050,555536214,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Harbottle Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2051,555536215,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mottisfont Bats","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2052,555536216,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Naddle Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2053,555536217,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Simonside Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2054,555536218,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Singleton And Cocking Tunnels","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2059,555536219,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parkgate Down","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2060,555536220,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tarn Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2062,555536222,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oronsay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2036,555536223,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fannich Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2037,555536224,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Bhan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2038,555536225,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Onich To North Ballachulish Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2039,555536226,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Shira","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2063,555536227,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slochd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2064,555536228,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Maim","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2055,555536229,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crookhill Brick Pit","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2056,555536230,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holnest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2058,555536231,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haig Fras","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2065,555536232,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scanner Pockmark","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1624,555536233,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wyville Thomson Ridge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1625,555536234,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Garron Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1626,555536235,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Braemar Pockmarks","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1627,555536236,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Norfolk Sandbanks And Saturn Reef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1628,555536237,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stanton Banks","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1629,555536238,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Roe And Tributaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1630,555536239,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Faughan And Tributaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1631,555536240,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bolton Fell Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1632,555536241,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North West Rockall Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1634,555536242,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Red Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1647,555536243,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bassurelle Sandbank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1648,555536244,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Haisborough, Hammond And Winterton","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1665,555536245,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Dowsing, Race Bank And North Ridge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1666,555536246,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Margate And Long Sands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1667,555536247,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lyme Bay And Torbay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1668,555536248,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Start Point To Plymouth Sound & Eddystone","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1669,555536249,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lizard Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1670,555536250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lands End And Cape Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1671,555536251,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shell Flat And Lune Deep","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -29140,555536647,"BEL","National PAME Assessment",2012,"For storage only",41,"Het Zoniënwoud met bosranden en aangrenzende beboste domeinen en de vallei van de Woluwe - complex Zoniënwoud - Vallei van de Woluwe","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29085,555536648,"BEL","National PAME Assessment",2012,"For storage only",41,"Bossen en open gebieden in het zuiden van het Brussels Gewest - complex Verrewinkel – Kinsendaal","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29082,555536649,"BEL","National PAME Assessment",2012,"For storage only",41,"Bosgebieden en vochtige gebieden van de Molenbeekvallei in het noordwesten van het Brussels Gewest","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29144,555536650,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Kalmthoutse Heide","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29145,555536651,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Klein en Groot Schietveld","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29080,555536652,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bos- en heidegebieden ten oosten van Antwerpen","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29139,555536653,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Het Blak, Kievitsheide, Ekstergoor en nabijgelegen Kamsalamanderhabitats","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29138,555536654,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Heesbossen, Vallei van Marke en Merkske en Ringven met valleigronden langs de Heerlese Loop","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29298,555536655,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Vennen, heiden en moerassen rond Turnhout","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29297,555536656,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Valleigebied van de Kleine Nete met brongebieden, moerassen en heiden","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29089,555536657,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bovenloop van de Grote Nete met Zammelsbroek, Langdonken en Goor.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29141,555536658,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Historische fortengordels van Antwerpen als vleermuizenhabitat.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29097,555536659,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"De Maten","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29292,555536660,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Vallei- en brongebied van de Zwarte Beek, Bolisserbeek en Dommel met heide en vengebieden.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29156,555536661,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Mangelbeek en heide- en vengebieden tussen Houthalen en Gruitrode","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29294,555536662,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Valleien van de Laambeek, Zonderikbeek, Slangebeek en Roosterbeek met vijvergebieden.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29122,555536663,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Hageven met Dommelvallei, Beverbeekse Heide, Warmbeek en Wateringen","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29022,555536664,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Abeek met aangrenzende moerasgebieden","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29142,555536665,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Itterbeek met Brand, Jagersborg en Schootsheide en Bergerven","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29165,555536666,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Mechelse Heide en vallei van de Ziepbeek","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29186,555536668,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Uiterwaarden langs de Limburgse Maas met Vijverbroek","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29084,555536669,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bossen en kalkgraslanden van Haspengouw","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29562,555536670,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Voerstreek","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29143,555536671,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Jekervallei en bovenloop van de Demervallei","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29169,555536672,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Overgang Kempen-Haspengouw","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29081,555536673,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bosbeekvallei en aangrenzende bos- en heidegebieden te As-Opglabbeek-Maaseik","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29083,555536674,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bossen en heiden van zandig Vlaanderen: oostelijk deel","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29174,555536675,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Schelde- en Durme+½stuarium van de Nederlandse grens tot Gent","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29086,555536676,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bossen van de Vlaamse Ardennen en andere Zuidvlaamse bossen.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29087,555536677,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bossen van het zuidoosten van de Zandleemstreek","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29564,555536678,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Zoni+½nwoud","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29123,555536679,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Hallerbos en nabije boscomplexen met brongebieden en heiden","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29296,555536680,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Valleigebied tussen Melsbroek, Kampenhout, Kortemberg en Veltem.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29293,555536681,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Valleien van de Dijle, Laan en IJse met aangrenzende bos- en moerasgebieden","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29295,555536682,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Valleien van de Winge en de Motte met valleihellingen.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29098,555536683,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Demervallei","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29099,555536684,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Duingebieden inclusief Ijzermonding en Zwin.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29173,555536685,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Polders","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29563,555536686,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Westvlaams Heuvelland","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29088,555536687,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bossen, heiden en valleigebieden van zandig Vlaanderen: westelijk deel","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29095,555536693,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Carrières souterraines d'Orp-Jauche","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29093,555536705,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Canal souterrain de la Bête Refaite","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29185,555536711,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Trou des Sarrazins à Loverval","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29184,555536726,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Trou aux Feuilles","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29271,555536727,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau d'Erpion","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29181,555536730,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Sources du Geer","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29033,555536731,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Basse vallée du Geer","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29121,555536769,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Grotte Jaminon","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29146,555536788,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"La Calestienne à Marche en Famenne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29160,555536825,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Mare de Frassem","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29262,555536854,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau d'Alisse","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -15024,555536875,"LUX","Birdlife IBA",2009,"For storage only",28,"Vallée supérieure de la Sûre / Lac du barrage","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15017,555536894,"LUX","Birdlife IBA",2009,"For storage only",28,"Esch-sur-Alzette Sud-est - Anciennes minières / Ellegronn","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15011,555536895,"LUX","Birdlife IBA",2009,"For storage only",28,"Dudelange Haard","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10762,555537064,"BGR","Birdlife IBA",2007,"For storage only",28,"Atanasovsko ezero","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10782,555537084,"BGR","Birdlife IBA",2013,"For storage only",28,"Ribarnitsi Plovdiv","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10781,555537092,"BGR","Birdlife IBA",2013,"For storage only",28,"Ribarnitsi Mechka","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10761,555537148,"BGR","Birdlife IBA",2007,"For storage only",28,"Adata - Tundzha","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11319,555537169,"CYP","Birdlife IBA",2013,"For storage only",28,"DASOS PAFOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11308,555537171,"CYP","Birdlife IBA",2013,"For storage only",28,"PERIOCHI ATSA - AGIOS THEODOROS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11306,555537172,"CYP","Birdlife IBA",2013,"For storage only",28,"VOUNOKORFES MADARIS - PAPOUTSAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11321,555537175,"CYP","Birdlife IBA",2013,"For storage only",28,"LIMNI PARALIMNIOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11307,555537176,"CYP","Birdlife IBA",2013,"For storage only",28,"PERIOCHI AGIAS THEKLAS - LIOPETRI","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11328,555537177,"CYP","Birdlife IBA",2013,"For storage only",28,"VOUNI PANAGIAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11311,555537179,"CYP","Birdlife IBA",2013,"For storage only",28,"FAROS KATO PAFOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11324,555537183,"CYP","Birdlife IBA",2013,"For storage only",28,"ZONI EIDIKIS PROSTASIAS KOILADA SARAMA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11310,555537185,"CYP","Birdlife IBA",2013,"For storage only",28,"KOILADA EZOUSAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11326,555537188,"CYP","Birdlife IBA",2013,"For storage only",28,"ETHNIKO DASIKO PARKO TROODOUS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11330,555537190,"CYP","Birdlife IBA",2013,"For storage only",28,"PERIOCHI KOILADAS XYLOURIKOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11309,555537192,"CYP","Birdlife IBA",2013,"For storage only",28,"ZONI EIDIKIS PROSTASIAS CHA - POTAMI","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11315,555537193,"CYP","Birdlife IBA",2013,"For storage only",28,"ALYKES LARNAKAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11320,555537194,"CYP","Birdlife IBA",2013,"For storage only",28,"POTAMOS PANAGIAS STAZOUSAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11323,555537195,"CYP","Birdlife IBA",2013,"For storage only",28,"POTAMOS PENTASCHINOS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11313,555537196,"CYP","Birdlife IBA",2013,"For storage only",28,"PERIOCHI KOSIIS - PALLOUROKAMPOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11318,555537197,"CYP","Birdlife IBA",2013,"For storage only",28,"ZONI EIDIKIS PROSTASIAS LIMNI OROKLINIS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11305,555537200,"CZE","Birdlife IBA",2010,"For storage only",28,"Zehunsky rybnik - Obora Knezicky","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11302,555537201,"CZE","Birdlife IBA",2010,"For storage only",28,"Trebonsko","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11303,555537202,"CZE","Birdlife IBA",2006,"For storage only",28,"Udoli Otavy a Vltavy","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11291,555537203,"CZE","Birdlife IBA",2010,"For storage only",28,"Rezabinec","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11259,555537204,"CZE","Birdlife IBA",2007,"For storage only",28,"Hlubocke obory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11281,555537207,"CZE","Birdlife IBA",2007,"For storage only",28,"Novohradske hory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11297,555537209,"CZE","Birdlife IBA",2013,"For storage only",28,"Sumava","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11257,555537210,"CZE","Birdlife IBA",2005,"For storage only",28,"Doupovske hory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11279,555537211,"CZE","Birdlife IBA",2005,"For storage only",28,"Vodni nadrz Nechranice","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11280,555537212,"CZE","Birdlife IBA",2005,"For storage only",28,"Novodomske raseliniste - Kovarska","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11304,555537213,"CZE","Birdlife IBA",2005,"For storage only",28,"Vychodni Krusne hory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11274,555537214,"CZE","Birdlife IBA",2005,"For storage only",28,"Labske piskovce","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11265,555537216,"CZE","Birdlife IBA",2005,"For storage only",28,"Jizerske hory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11272,555537217,"CZE","Birdlife IBA",2005,"For storage only",28,"Krkonose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11253,555537218,"CZE","Birdlife IBA",2005,"For storage only",28,"Broumovsko","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11282,555537219,"CZE","Birdlife IBA",2005,"For storage only",28,"Orlicke Zahori","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11252,555537220,"CZE","Birdlife IBA",2005,"For storage only",28,"Bohdanecsky rybnik","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11254,555537222,"CZE","Birdlife IBA",2005,"For storage only",28,"Bzenecka Doubrava - Stranicke Pomoravi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11261,555537223,"CZE","Birdlife IBA",2005,"For storage only",28,"Hovoransko - Cejkovicko","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11293,555537224,"CZE","Birdlife IBA",2010,"For storage only",28,"Soutok - Tvrdonicko","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11284,555537226,"CZE","Birdlife IBA",2010,"For storage only",28,"Palava","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11295,555537227,"CZE","Birdlife IBA",2010,"For storage only",28,"Stredni nadrz Vodniho Dila Nove Mlyny","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11262,555537228,"CZE","Birdlife IBA",2005,"For storage only",28,"Jaroslavicke rybniky","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11288,555537229,"CZE","Birdlife IBA",2005,"For storage only",28,"Podyji","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11268,555537230,"CZE","Birdlife IBA",2005,"For storage only",28,"Kralicky Sneznik","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11264,555537231,"CZE","Birdlife IBA",2005,"For storage only",28,"Jeseniky","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11275,555537233,"CZE","Birdlife IBA",2005,"For storage only",28,"Libava","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11260,555537235,"CZE","Birdlife IBA",2007,"For storage only",28,"Hostynske vrchy","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11457,555537977,"DNK","Birdlife IBA",2006,"For storage only",28,"Saltholm og omliggende hav","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11388,555537980,"DNK","Birdlife IBA",2007,"For storage only",28,"Jægerspris Nordskov","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11365,555537981,"DNK","Birdlife IBA",2006,"For storage only",28,"Gribskov","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11472,555537983,"DNK","Birdlife IBA",2008,"For storage only",28,"Gammel Havdrup Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11443,555537984,"DNK","Birdlife IBA",2006,"For storage only",28,"Ramsø Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11454,555537985,"DNK","Birdlife IBA",2006,"For storage only",28,"Roskilde Fjord, Kattinge Vig og Kattinge Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11462,555537986,"DNK","Birdlife IBA",2006,"For storage only",28,"Sejerø Bugt og Nekselø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11464,555537987,"DNK","Birdlife IBA",2010,"For storage only",28,"Skælskør Nor, Skælskør Fjord og Gammelsø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11473,555537990,"DNK","Birdlife IBA",2006,"For storage only",28,"Sprogø og Halsskov Rev","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11486,555537992,"DNK","Birdlife IBA",2010,"For storage only",28,"Tissø, Åmose og Hallenslev Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11354,555537993,"DNK","Birdlife IBA",2010,"For storage only",28,"Søer ved Bregentved og Gisselfeld","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11397,555537994,"DNK","Birdlife IBA",2010,"For storage only",28,"Havet mellem Korshage og Hundested","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11350,555537996,"DNK","Birdlife IBA",2010,"For storage only",28,"Bøtø Nor","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11386,555537997,"DNK","Birdlife IBA",2010,"For storage only",28,"Kyststrækningen v. Hyllekrog-Rødsand","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11492,555537998,"DNK","Birdlife IBA",2010,"For storage only",28,"Ulvsund, Grønsund og Farø Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11366,555538000,"DNK","Birdlife IBA",2010,"For storage only",28,"Guldborgsund","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11425,555538002,"DNK","Birdlife IBA",2010,"For storage only",28,"Nakskov Fjord og Inderfjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11440,555538003,"DNK","Birdlife IBA",2010,"For storage only",28,"Præstø Fjord, Ulvshale, Nyord og Jungshoved Nor","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11392,555538004,"DNK","Birdlife IBA",2006,"For storage only",28,"Klinteskoven","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11471,555538005,"DNK","Birdlife IBA",2010,"For storage only",28,"Skovene ved Vemmetofte","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11358,555538008,"DNK","Birdlife IBA",2006,"For storage only",28,"Ertholmene","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11344,555538009,"DNK","Birdlife IBA",2006,"For storage only",28,"Almindingen, Ølene og Paradisbakkerne","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11482,555538010,"DNK","Birdlife IBA",2010,"For storage only",28,"Sydfynske Øhav","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11420,555538011,"DNK","Birdlife IBA",2010,"For storage only",28,"Marstal Bugt og den sydlige del af Langeland","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11502,555538012,"DNK","Birdlife IBA",2009,"For storage only",28,"Vresen og havet mellem Fyn og Langeland","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11353,555538013,"DNK","Birdlife IBA",2010,"For storage only",28,"Skove ved Brahetrolleborg","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11434,555538014,"DNK","Birdlife IBA",2010,"For storage only",28,"Odense Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11402,555538015,"DNK","Birdlife IBA",2006,"For storage only",28,"Æbelø, havet syd for og Nærå","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11451,555538016,"DNK","Birdlife IBA",2009,"For storage only",28,"Romsø og sydkysten af Hindsholm","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11349,555538017,"DNK","Birdlife IBA",2006,"For storage only",28,"Arreskov Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11410,555538018,"DNK","Birdlife IBA",2010,"For storage only",28,"Lillebælt","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11383,555538019,"DNK","Birdlife IBA",2006,"For storage only",28,"Hostrup Sø, Assenholm Mose og Felsted Vestermark","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11484,555538023,"DNK","Birdlife IBA",2006,"For storage only",28,"Tinglev Sø og Mose, Ulvemose og Terkelsbøl Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11456,555538024,"DNK","Birdlife IBA",2006,"For storage only",28,"Sønder Ådal","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11442,555538026,"DNK","Birdlife IBA",2010,"For storage only",28,"Rømø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11413,555538027,"DNK","Birdlife IBA",2006,"For storage only",28,"Lindet Skov, Hønning Mose og Plantage, Lovdrup Sk","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11351,555538028,"DNK","Birdlife IBA",2010,"For storage only",28,"Ballum og Husum Enge og Kamper Strandenge","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11469,555538029,"DNK","Birdlife IBA",2006,"For storage only",28,"Rinkenæs Skov, Dyrehaven og Rode Skov","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11395,555538030,"DNK","Birdlife IBA",2010,"For storage only",28,"Kogsbøl og Skast Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11373,555538032,"DNK","Birdlife IBA",2007,"For storage only",28,"Hedeområder ved Store Råbjerg","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11378,555538033,"DNK","Birdlife IBA",2010,"For storage only",28,"Engarealer ved Ho Bugt","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11390,555538034,"DNK","Birdlife IBA",2010,"For storage only",28,"Kallesmærsk Hede og Grærup Langsø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11444,555538035,"DNK","Birdlife IBA",2010,"For storage only",28,"Ribe Holme og enge med Kongeåens udløb","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11419,555538036,"DNK","Birdlife IBA",2006,"For storage only",28,"Mandø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11497,555538038,"DNK","Birdlife IBA",2006,"For storage only",28,"Vejen Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11362,555538040,"DNK","Birdlife IBA",2010,"For storage only",28,"Fiilsø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11493,555538041,"DNK","Birdlife IBA",2010,"For storage only",28,"Vadehavet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11487,555538042,"DNK","Birdlife IBA",2006,"For storage only",28,"Uldum Kær, Tørring Kær og Ølholm Kær","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11466,555538043,"DNK","Birdlife IBA",2008,"For storage only",28,"Skovområde ved Vejle Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11428,555538045,"DNK","Birdlife IBA",2008,"For storage only",28,"Nissum Bredning","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11431,555538046,"DNK","Birdlife IBA",2010,"For storage only",28,"Nissum Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11371,555538047,"DNK","Birdlife IBA",2010,"For storage only",28,"S+©nder Feldborg Plantage","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11447,555538048,"DNK","Birdlife IBA",2010,"For storage only",28,"Ringkøbing Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11370,555538051,"DNK","Birdlife IBA",2010,"For storage only",28,"Harboøre Tange, Plet Enge og Gjeller Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11499,555538052,"DNK","Birdlife IBA",2010,"For storage only",28,"Venø, Venø Sund","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11477,555538054,"DNK","Birdlife IBA",2006,"For storage only",28,"Stavns Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11422,555538057,"DNK","Birdlife IBA",2008,"For storage only",28,"Mossø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11381,555538058,"DNK","Birdlife IBA",2010,"For storage only",28,"Horsens Fjord og Endelave","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11468,555538059,"DNK","Birdlife IBA",2008,"For storage only",28,"Skovområde syd for Silkeborg","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11341,555538061,"DNK","Birdlife IBA",2010,"For storage only",28,"Ålvand Klithede og Førby Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11407,555538062,"DNK","Birdlife IBA",2010,"For storage only",28,"Lønnerup Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11501,555538063,"DNK","Birdlife IBA",2010,"For storage only",28,"Vestlige Vejler, Arup Holm og Hovsør Røn","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11437,555538064,"DNK","Birdlife IBA",2007,"For storage only",28,"Ovesø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11369,555538065,"DNK","Birdlife IBA",2010,"For storage only",28,"Hanstholm Reservatet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11343,555538066,"DNK","Birdlife IBA",2010,"For storage only",28,"Agger Tange","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11377,555538067,"DNK","Birdlife IBA",2010,"For storage only",28,"Hjarbæk Fjord og Simested Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11495,555538068,"DNK","Birdlife IBA",2010,"For storage only",28,"Vangså Hede","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11355,555538069,"DNK","Birdlife IBA",2006,"For storage only",28,"Dråby Vig","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11415,555538070,"DNK","Birdlife IBA",2010,"For storage only",28,"Mågerodde og Karby Odde","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11406,555538071,"DNK","Birdlife IBA",2010,"For storage only",28,"Løgstør Bredning, Livø, Feggesund og Skarrehage","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11414,555538073,"DNK","Birdlife IBA",2010,"For storage only",28,"Lovns Bredning","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11363,555538074,"DNK","Birdlife IBA",2010,"For storage only",28,"Glomstrup Vig, Agerø, Munkholm og Katholm Odde, L","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11491,555538076,"DNK","Birdlife IBA",2010,"For storage only",28,"Ulvedybet og Nibe Bredning","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11418,555538078,"DNK","Birdlife IBA",2006,"For storage only",28,"Madum Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11449,555538079,"DNK","Birdlife IBA",2006,"For storage only",28,"Rold Skov","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11389,555538081,"DNK","Birdlife IBA",2006,"For storage only",28,"Råbjerg og Tolshave Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11399,555538083,"DNK","Birdlife IBA",2010,"For storage only",28,"Kysten fra Aggersund til Bygholm Vejle","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11433,555538084,"DNK","Birdlife IBA",2006,"For storage only",28,"Nordre Rønner","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11376,555538085,"DNK","Birdlife IBA",2010,"For storage only",28,"Hirsholmene","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14772,555538158,"ESP","Birdlife IBA",2008,"For storage only",28,"Lagunas de Villafafila","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14519,555538159,"ESP","Birdlife IBA",2007,"For storage only",28,"Cañón del Río Lobos - ZEPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14659,555538189,"ESP","Birdlife IBA",2008,"For storage only",28,"Jandía","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14598,555538192,"ESP","Birdlife IBA",2008,"For storage only",28,"Dunas de Corralejo e Isla de Lobos","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14655,555538193,"ESP","Birdlife IBA",2008,"For storage only",28,"Caldera de Taburiente","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14673,555538233,"ESP","Birdlife IBA",2008,"For storage only",28,"Complexo intermareal Umia - O Grove, A Lanzada, punta Carreir+¦n e lagoa Bodeira","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14554,555538235,"ESP","Birdlife IBA",2008,"For storage only",28,"Valle del Tiétar y embalses de Rosarito y Navalcán","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14767,555538260,"ESP","Birdlife IBA",2007,"For storage only",28,"Valle de Iruelas","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14530,555538262,"ESP","Birdlife IBA",2007,"For storage only",28,"Carrizales y sotos de Aranjuez","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14515,555538277,"ESP","Birdlife IBA",2007,"For storage only",28,"Los Valles","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14585,555538327,"ESP","Birdlife IBA",2007,"For storage only",28,"Humada - Peña Amaya - ZEPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14507,555538338,"ESP","Birdlife IBA",2008,"For storage only",28,"Altos de Barahona - ZEPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14625,555538605,"ESP","Birdlife IBA",2008,"For storage only",28,"Izki","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14583,555538614,"ESP","Birdlife IBA",2007,"For storage only",28,"Hoces del Alto Ebro y Rudrón - ZEPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14676,555538615,"ESP","Birdlife IBA",2008,"For storage only",28,"Picos de Europa en Castilla y León","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14572,555538620,"ESP","Birdlife IBA",2007,"For storage only",28,"Fuentes Carrionas y Fuente Cobre - Montaña Palentina","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14532,555538659,"ESP","Birdlife IBA",2008,"For storage only",28,"Tossa Plana de Lles-Puigpedrós","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14698,555538746,"ESP","Birdlife IBA",2008,"For storage only",28,"Roque de Garachico","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22080,555538756,"FIN","Birdlife IBA",2010,"For storage only",28,"Nuuksio","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22037,555538770,"FIN","Birdlife IBA",2010,"For storage only",28,"Kirkkonummen saaristo (SPA)","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22115,555538810,"FIN","Birdlife IBA",2010,"For storage only",28,"Puurijärvi - Isosuo","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22044,555538819,"FIN","Birdlife IBA",2010,"For storage only",28,"Koijärvi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22160,555538843,"FIN","Birdlife IBA",2010,"For storage only",28,"Torronsuo","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22011,555538865,"FIN","Birdlife IBA",2010,"For storage only",28,"Itäisen Suomenlahden saaristo ja vedet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22041,555538884,"FIN","Birdlife IBA",2010,"For storage only",28,"Kirkon-Vilkkiläntura","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22133,555538959,"FIN","Birdlife IBA",2010,"For storage only",28,"Ruunaa","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22129,555539040,"FIN","Birdlife IBA",2010,"For storage only",28,"Rummelön-Harrbådan","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22170,555539074,"FIN","Birdlife IBA",2010,"For storage only",28,"Valtavaara - Pyhävaara","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22042,555539078,"FIN","Birdlife IBA",2010,"For storage only",28,"Kitka","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22094,555539089,"FIN","Birdlife IBA",2010,"For storage only",28,"Oulanka","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22067,555539112,"FIN","Birdlife IBA",2010,"For storage only",28,"Litokaira","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21996,555539129,"FIN","Birdlife IBA",2010,"For storage only",28,"Ahmasjärvi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22018,555539138,"FIN","Birdlife IBA",2010,"For storage only",28,"Juortanansalon alue","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22003,555539139,"FIN","Birdlife IBA",2010,"For storage only",28,"Elimyssalon alue","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22126,555539145,"FIN","Birdlife IBA",2010,"For storage only",28,"Rumala - Kuvaja - Oudonrimmet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22151,555539147,"FIN","Birdlife IBA",2010,"For storage only",28,"Talaskankaan alue","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22101,555539149,"FIN","Birdlife IBA",2010,"For storage only",28,"Pallas-Ounastunturi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22021,555539151,"FIN","Birdlife IBA",2010,"For storage only",28,"KÄSIVARREN ERÄMAA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22061,555539153,"FIN","Birdlife IBA",2010,"For storage only",28,"LEMMENJOEN KANSALLISPUISTO","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22050,555539156,"FIN","Birdlife IBA",2010,"For storage only",28,"Perämeren saaret","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22071,555539171,"FIN","Birdlife IBA",2010,"For storage only",28,"Pyhä-Luosto","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22015,555539181,"FIN","Birdlife IBA",2010,"For storage only",28,"Joutsenaapa - Kaita-aapa","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22075,555539183,"FIN","Birdlife IBA",2010,"For storage only",28,"MARTIMOAAPA-LUMIAAPA-PENIKAT","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22176,555539184,"FIN","Birdlife IBA",2010,"For storage only",28,"VEITTIAAPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22137,555539188,"FIN","Birdlife IBA",2010,"For storage only",28,"UK-PUISTO-SOMPIO-KEMIHAARA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22034,555539194,"FIN","Birdlife IBA",2010,"For storage only",28,"Kilsiaapa-Ristivuoma","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22155,555539197,"FIN","Birdlife IBA",2010,"For storage only",28,"Pajukari-Uksei-Alkunkarinlahti","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22025,555539198,"FIN","Birdlife IBA",2010,"For storage only",28,"Karunginjärvi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22030,555539199,"FIN","Birdlife IBA",2010,"For storage only",28,"Kevo","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11563,555539359,"FRA","Birdlife IBA",2013,"For storage only",28,"Grande Brière, marais de Donges et du Brivet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11571,555539401,"FRA","Birdlife IBA",2013,"For storage only",28,"Plaine de Niort Nord-Ouest","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -230,555539660,"GRC","Birdlife IBA",2013,"For storage only",8,"Antichasia Ori Kai Meteora","Special Protection Area (Birds Directive)","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -228,555539662,"GRC","Birdlife IBA",2013,"For storage only",8,"Amvrakikos Kolpos, Limnothalassa Katafourko Kai Korakonisia","Special Protection Area (Birds Directive)","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek",FALSE -11690,555539858,"IRL","Birdlife IBA",2013,"For storage only",28,"River Shannon Callows SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11681,555539863,"IRL","Birdlife IBA",2009,"For storage only",28,"Inishkea Islands SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11676,555539885,"IRL","Birdlife IBA",2000,"For storage only",28,"Blackwater Estuary SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11687,555539922,"IRL","Birdlife IBA",2013,"For storage only",28,"Lambay Island SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11692,555539924,"IRL","Birdlife IBA",2000,"For storage only",28,"Tory Island SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11678,555539931,"IRL","Birdlife IBA",2013,"For storage only",28,"Boyne Estuary SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11685,555539932,"IRL","Birdlife IBA",2009,"For storage only",28,"Clonakilty Bay SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11689,555539939,"IRL","Birdlife IBA",2000,"For storage only",28,"Rahasane Turlough SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11691,555539946,"IRL","Birdlife IBA",2013,"For storage only",28,"Middle Shannon Callows SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15051,555540716,"MLT","Birdlife IBA",2013,"For storage only",28,"L-Inhawi tar-Ramla tat-Torri u tal-Irdum tal-Madonna","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15054,555540727,"MLT","Birdlife IBA",2013,"For storage only",28,"Rdumijiet ta' Malta: Wied Moqbol sal-Ponta ta' Benghisa","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9648,555540728,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Baryczy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9649,555540729,"POL","Birdlife IBA",1994,"For storage only",23,"Grady Odrzanskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9650,555540730,"POL","Birdlife IBA",1994,"For storage only",23,"Stawy Przemkowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9651,555540731,"POL","Birdlife IBA",2002,"For storage only",23,"Zbiornik Mietkowski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9652,555540732,"POL","Birdlife IBA",2004,"For storage only",23,"Bory Dolnoslaskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9653,555540733,"POL","Birdlife IBA",2004,"For storage only",23,"Góry Stolowe","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9654,555540734,"POL","Birdlife IBA",2002,"For storage only",23,"Karkonosze","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9655,555540735,"POL","Birdlife IBA",1994,"For storage only",23,"Legi Odrzanskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9658,555540736,"POL","Birdlife IBA",1994,"For storage only",23,"Blota Rakutowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9659,555540737,"POL","Birdlife IBA",1994,"For storage only",23,"Bagienna Dolina Drwecy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9660,555540738,"POL","Birdlife IBA",2002,"For storage only",23,"Dolina Dolnej Wisly","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9661,555540739,"POL","Birdlife IBA",1994,"For storage only",23,"Ostoja Nadgoplanska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9662,555540740,"POL","Birdlife IBA",2004,"For storage only",23,"Zwirownia Skoki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9663,555540741,"POL","Birdlife IBA",1994,"For storage only",23,"Bagno Bubnów","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9664,555540742,"POL","Birdlife IBA",1994,"For storage only",23,"Chelmskie Torfowiska Weglanowe","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9665,555540743,"POL","Birdlife IBA",2002,"For storage only",23,"Dolina Srodkowego Bugu","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9666,555540744,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Tysmienicy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9667,555540745,"POL","Birdlife IBA",1994,"For storage only",23,"Lasy Janowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9668,555540746,"POL","Birdlife IBA",1994,"For storage only",23,"Lasy Parczewskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9669,555540747,"POL","Birdlife IBA",1994,"For storage only",23,"Lasy Strzeleckie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9670,555540748,"POL","Birdlife IBA",2002,"For storage only",23,"Puszcza Solska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9671,555540749,"POL","Birdlife IBA",1994,"For storage only",23,"Lasy Lukowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9672,555540750,"POL","Birdlife IBA",2004,"For storage only",23,"Ostoja Tyszowiecka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9673,555540751,"POL","Birdlife IBA",1994,"For storage only",23,"Roztocze","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9674,555540752,"POL","Birdlife IBA",2004,"For storage only",23,"Dolina Górnej Labunki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9675,555540753,"POL","Birdlife IBA",1994,"For storage only",23,"Uroczysko Mosty-Zahajki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9676,555540754,"POL","Birdlife IBA",2002,"For storage only",23,"Zbiornik Podedwórze","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9677,555540755,"POL","Birdlife IBA",2004,"For storage only",23,"Staw Bocków","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9678,555540756,"POL","Birdlife IBA",2004,"For storage only",23,"Zlewnia Górnej Huczwy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9679,555540757,"POL","Birdlife IBA",2004,"For storage only",23,"Dolina Szyszly","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9680,555540758,"POL","Birdlife IBA",2002,"For storage only",23,"Polesie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9681,555540759,"POL","Birdlife IBA",2004,"For storage only",23,"Ostoja Nieliska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9682,555540760,"POL","Birdlife IBA",2004,"For storage only",23,"Dolina Solokiji","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9683,555540761,"POL","Birdlife IBA",2004,"For storage only",23,"Puszcza Barlinecka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9684,555540762,"POL","Birdlife IBA",2004,"For storage only",23,"Dolina Dolnej Noteci","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9685,555540763,"POL","Birdlife IBA",2004,"For storage only",23,"Dolina Srodkowej Odry","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9686,555540764,"POL","Birdlife IBA",1994,"For storage only",23,"Jeziora Pszczewskie i Dolina Obry","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9687,555540765,"POL","Birdlife IBA",1994,"For storage only",23,"Pradolina Warszawsko-Berlinska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9688,555540766,"POL","Birdlife IBA",1994,"For storage only",23,"Zbiornik Jeziorsko","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9690,555540767,"POL","Birdlife IBA",1994,"For storage only",23,"Gorce","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9691,555540768,"POL","Birdlife IBA",1994,"For storage only",23,"Puszcza Niepolomicka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9692,555540769,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Dolnej Soly","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9693,555540770,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Dolnej Skawy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9694,555540771,"POL","Birdlife IBA",2004,"For storage only",23,"Pasmo Policy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9695,555540772,"POL","Birdlife IBA",2004,"For storage only",23,"Torfowiska Orawsko-Nowotarskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9696,555540774,"POL","Birdlife IBA",1994,"For storage only",23,"Stawy w Brzeszczach","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9697,555540775,"POL","Birdlife IBA",1994,"For storage only",23,"Babia Góra","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9698,555540776,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Dolnego Bugu","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9699,555540777,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Liwca","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9700,555540778,"POL","Birdlife IBA",2002,"For storage only",23,"Dolina Pilicy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9701,555540779,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Srodkowej Wisly","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9702,555540780,"POL","Birdlife IBA",2002,"For storage only",23,"Doliny Omulwi i Plodownicy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9703,555540781,"POL","Birdlife IBA",1994,"For storage only",23,"Malopolski Przelom Wisly","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9704,555540782,"POL","Birdlife IBA",1994,"For storage only",23,"Puszcza Biala","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9705,555540783,"POL","Birdlife IBA",1994,"For storage only",23,"Doliny Wkry i Mlawki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9706,555540784,"POL","Birdlife IBA",2004,"For storage only",23,"Dolina Kostrzynia","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9707,555540785,"POL","Birdlife IBA",1994,"For storage only",23,"Bagno Calowanie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9708,555540786,"POL","Birdlife IBA",2004,"For storage only",23,"Ostoja Kozienicka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9709,555540787,"POL","Birdlife IBA",2004,"For storage only",23,"Dolina Dolnej Narwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9711,555540788,"POL","Birdlife IBA",2002,"For storage only",23,"Zbiornik Nyski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9712,555540789,"POL","Birdlife IBA",1994,"For storage only",23,"Zbiornik Otmuchowski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9713,555540790,"POL","Birdlife IBA",1994,"For storage only",23,"Zbiornik Turawa","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9714,555540791,"POL","Birdlife IBA",2002,"For storage only",23,"Pogórze Przemyskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9715,555540792,"POL","Birdlife IBA",2004,"For storage only",23,"Beskid Niski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9716,555540793,"POL","Birdlife IBA",2004,"For storage only",23,"Góry Slonne","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9717,555540794,"POL","Birdlife IBA",2010,"For storage only",23,"Puszcza Sandomierska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9718,555540795,"POL","Birdlife IBA",1994,"For storage only",23,"Bagienna Dolina Narwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9719,555540796,"POL","Birdlife IBA",1994,"For storage only",23,"Puszcza Augustowska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9720,555540797,"POL","Birdlife IBA",1994,"For storage only",23,"Puszcza Knyszynska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9721,555540798,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Górnego Nurca","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9722,555540799,"POL","Birdlife IBA",1994,"For storage only",23,"Bagno Wizna","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9723,555540800,"POL","Birdlife IBA",1994,"For storage only",23,"Ostoja Biebrzanska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9724,555540801,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Górnej Narwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9725,555540802,"POL","Birdlife IBA",1994,"For storage only",23,"Przelomowa Dolina Narwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9726,555540803,"POL","Birdlife IBA",1994,"For storage only",23,"Wielki Sandr Brdy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9727,555540804,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Slupi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9728,555540805,"POL","Birdlife IBA",1994,"For storage only",23,"Pobrzeze Slowinskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9729,555540806,"POL","Birdlife IBA",1994,"For storage only",23,"Ujscie Wisly","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9730,555540807,"POL","Birdlife IBA",2002,"For storage only",23,"Zatoka Pucka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9731,555540808,"POL","Birdlife IBA",2004,"For storage only",23,"Lasy Leborskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9732,555540809,"POL","Birdlife IBA",2004,"For storage only",23,"Puszcza Darzlubska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9733,555540810,"POL","Birdlife IBA",2004,"For storage only",23,"Lasy Mirachowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9734,555540811,"POL","Birdlife IBA",2004,"For storage only",23,"Bory Tucholskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9735,555540812,"POL","Birdlife IBA",1994,"For storage only",23,"Bielawskie Blota","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9736,555540813,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Górnej Wisly","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9737,555540814,"POL","Birdlife IBA",2004,"For storage only",23,"Beskid Zywiecki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9738,555540815,"POL","Birdlife IBA",1994,"For storage only",23,"Stawy Wielikat i Las Tworkowski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9739,555540816,"POL","Birdlife IBA",2002,"For storage only",23,"Dolina Nidy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9740,555540817,"POL","Birdlife IBA",1994,"For storage only",23,"Bagna Nietlickie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9741,555540818,"POL","Birdlife IBA",2002,"For storage only",23,"Dolina Pasleki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9742,555540819,"POL","Birdlife IBA",1994,"For storage only",23,"Jezioro Luknajno","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9743,555540820,"POL","Birdlife IBA",1994,"For storage only",23,"Jezioro Oswin i okolice","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9744,555540821,"POL","Birdlife IBA",1994,"For storage only",23,"Lasy Ilawskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9745,555540822,"POL","Birdlife IBA",1994,"For storage only",23,"Puszcza Borecka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9746,555540823,"POL","Birdlife IBA",1994,"For storage only",23,"Puszcza Napiwodzko-Ramucka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9747,555540824,"POL","Birdlife IBA",2002,"For storage only",23,"Puszcza Piska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9748,555540825,"POL","Birdlife IBA",1994,"For storage only",23,"Zalew Wislany","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9749,555540826,"POL","Birdlife IBA",2004,"For storage only",23,"Lasy Skaliskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9750,555540827,"POL","Birdlife IBA",1994,"For storage only",23,"Jezioro Dobskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9751,555540828,"POL","Birdlife IBA",1994,"For storage only",23,"Jezioro Druzno","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9752,555540829,"POL","Birdlife IBA",2004,"For storage only",23,"Ostoja Poligon Orzysz","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9753,555540830,"POL","Birdlife IBA",2004,"For storage only",23,"Ostoja Warminska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9754,555540831,"POL","Birdlife IBA",2002,"For storage only",23,"Dolina Srodkowej Noteci i Kanalu Bydgoskiego","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9755,555540832,"POL","Birdlife IBA",2002,"For storage only",23,"Dolina Srodkowej Warty","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9756,555540833,"POL","Birdlife IBA",1994,"For storage only",23,"Nadnoteckie Legi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9757,555540834,"POL","Birdlife IBA",1994,"For storage only",23,"Wielki Leg Obrzanski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9758,555540835,"POL","Birdlife IBA",1994,"For storage only",23,"Zbiornik Woniesc","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9759,555540836,"POL","Birdlife IBA",2004,"For storage only",23,"Dolina Malej Welny pod Kiszkowem","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9760,555540837,"POL","Birdlife IBA",2004,"For storage only",23,"Dabrowy Krotoszynskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9761,555540838,"POL","Birdlife IBA",1994,"For storage only",23,"Jezioro Zgierzynieckie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9762,555540839,"POL","Birdlife IBA",2002,"For storage only",23,"Pojezierze Slawskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9763,555540840,"POL","Birdlife IBA",2004,"For storage only",23,"Puszcza nad Gwda","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9764,555540841,"POL","Birdlife IBA",2004,"For storage only",23,"Dolina Samicy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9765,555540842,"POL","Birdlife IBA",2004,"For storage only",23,"Puszcza Notecka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9766,555540843,"POL","Birdlife IBA",2002,"For storage only",23,"Ostoja Rogalinska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9767,555540844,"POL","Birdlife IBA",1994,"For storage only",23,"Bagna Rozwarowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9768,555540845,"POL","Birdlife IBA",1994,"For storage only",23,"Delta Swiny","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9769,555540846,"POL","Birdlife IBA",1994,"For storage only",23,"Dolina Dolnej Odry","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9770,555540847,"POL","Birdlife IBA",1994,"For storage only",23,"Jezioro Miedwie i okolice","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9771,555540848,"POL","Birdlife IBA",1994,"For storage only",23,"Jezioro Swidwie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9772,555540849,"POL","Birdlife IBA",1994,"For storage only",23,"Laki Skoszewskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9773,555540850,"POL","Birdlife IBA",1994,"For storage only",23,"Ostoja Inska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9774,555540851,"POL","Birdlife IBA",1994,"For storage only",23,"Zalew Szczecinski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9775,555540852,"POL","Birdlife IBA",2004,"For storage only",23,"Wybrzeze Trzebiatowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9776,555540853,"POL","Birdlife IBA",1994,"For storage only",23,"Zalew Kamienski i Dziwna","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9777,555540854,"POL","Birdlife IBA",2004,"For storage only",23,"Puszcza Goleniowska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9778,555540855,"POL","Birdlife IBA",2004,"For storage only",23,"Ostoja Wkrzanska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9779,555540856,"POL","Birdlife IBA",2004,"For storage only",23,"Ostoja Witnicko-Debnianska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9780,555540857,"POL","Birdlife IBA",2004,"For storage only",23,"Lasy Puszczy nad Drawa","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9781,555540858,"POL","Birdlife IBA",2004,"For storage only",23,"Ostoja Cedynska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9782,555540859,"POL","Birdlife IBA",1994,"For storage only",23,"Jeziora Weltynskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9783,555540860,"POL","Birdlife IBA",1994,"For storage only",23,"Ostoja Drawska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9784,555540861,"POL","Birdlife IBA",2002,"For storage only",23,"Przybrzezne wody Baltyku","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9785,555540862,"POL","Birdlife IBA",2002,"For storage only",23,"Zatoka Pomorska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9786,555540863,"POL","Birdlife IBA",2004,"For storage only",23,"Ujscie Warty","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9787,555540864,"POL","Birdlife IBA",1994,"For storage only",23,"Tatry","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9789,555540865,"POL","Birdlife IBA",1994,"For storage only",23,"Puszcza Kampinoska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9790,555540866,"POL","Birdlife IBA",1994,"For storage only",23,"Bieszczady","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9791,555540867,"POL","Birdlife IBA",1994,"For storage only",23,"Puszcza Bialowieska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9792,555540868,"POL","Birdlife IBA",2002,"For storage only",23,"Lawica Slupska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -12585,555540876,"PRT","Birdlife IBA",2005,"For storage only",28,"Estuários dos Rios Minho e Coura","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12606,555540877,"PRT","Birdlife IBA",2005,"For storage only",28,"Serra do Gerês","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12594,555540878,"PRT","Birdlife IBA",2005,"For storage only",28,"Ria de Aveiro","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12590,555540879,"PRT","Birdlife IBA",2005,"For storage only",28,"Paul de Arzila","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12591,555540880,"PRT","Birdlife IBA",2005,"For storage only",28,"Paul da Madriz","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12603,555540881,"PRT","Birdlife IBA",2005,"For storage only",28,"Serra da Malcata","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12584,555540884,"PRT","Birdlife IBA",2005,"For storage only",28,"Estuário do Tejo","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12579,555540889,"PRT","Birdlife IBA",2005,"For storage only",28,"Costa Sudoeste","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12575,555540892,"PRT","Birdlife IBA",2005,"For storage only",28,"Sapais de Castro Marim","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12598,555540905,"PRT","Birdlife IBA",2005,"For storage only",28,"Rios Sabor e Maçãs","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12582,555540906,"PRT","Birdlife IBA",2005,"For storage only",28,"Douro Internacional e Vale do Águeda","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12613,555540907,"PRT","Birdlife IBA",2005,"For storage only",28,"Vale do Côa","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12593,555540908,"PRT","Birdlife IBA",2005,"For storage only",28,"Paul do Taipal","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12612,555540910,"PRT","Birdlife IBA",2005,"For storage only",28,"Tejo Internacional, Erges e Pônsul","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12572,555540911,"PRT","Birdlife IBA",2005,"For storage only",28,"Campo Maior","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12587,555540912,"PRT","Birdlife IBA",2005,"For storage only",28,"Mourão/Moura/Barrancos","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12576,555540913,"PRT","Birdlife IBA",2005,"For storage only",28,"Castro Verde","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12596,555540914,"PRT","Birdlife IBA",2005,"For storage only",28,"Vale do Guadiana","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12614,555540919,"PRT","Birdlife IBA",2005,"For storage only",28,"Vila Fernando","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12580,555540923,"PRT","Birdlife IBA",2005,"For storage only",28,"Cuba","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22188,555541528,"SWE","Birdlife IBA",2007,"For storage only",28,"Holmöarna","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13218,555541567,"SVN","Birdlife IBA",2013,"For storage only",28,"Snežnik - Pivka","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13208,555541579,"SVN","Birdlife IBA",2013,"For storage only",28,"Ljubljansko barje","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -2187,555541630,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Rona and Sula Sgeir","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2188,555541631,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flannan Isles","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2189,555541632,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Kilda","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2190,555541633,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shiant Isles","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2191,555541634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Uist Machair and Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2192,555541635,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Monach Isles","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2193,555541636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Uist Machair and Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2194,555541637,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilpheder and Smerclate, South Uist","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2085,555541638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mingulay and Berneray","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2086,555541639,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pentland Firth Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2087,555541640,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caithness and Sutherland Peatlands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2088,555541641,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caithness Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2089,555541642,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Caithness Cliffs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2090,555541643,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Caithness Cliffs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2091,555541644,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Sutherland Coastal Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2092,555541645,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cape Wrath","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2093,555541646,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Handa","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2094,555541647,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Priest Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2095,555541648,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rum","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2096,555541649,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Canna and Sanday","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2097,555541650,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mointeach Scadabhaigh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2098,555541651,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inverpolly, Loch Urigill and nearby Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2099,555541652,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Maree","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2100,555541653,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ruthven","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2101,555541654,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Knockie and nearby Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2102,555541655,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Inverness Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2103,555541656,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ashie","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2104,555541657,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lewis Peatlands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2105,555541658,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Harris Mountains","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2106,555541659,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Assynt Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2107,555541660,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lairg and Strath Brora Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2195,555541661,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Eye","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2196,555541662,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dornoch Firth and Loch Fleet","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2197,555541663,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cromarty Firth","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2109,555541664,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Moray Firth","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2110,555541665,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moray and Nairn Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2111,555541666,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Beinn Dearg","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2112,555541667,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Wyvis","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2113,555541668,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Flemington","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2198,555541669,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Achanalt Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2116,555541670,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wester Ross Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2117,555541671,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Shiel","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2118,555541672,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ness and Barvas, Lewis","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2119,555541673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aird and Borve, Benbecula","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2120,555541674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eoligarry, Barra","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2121,555541675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cuillins","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2122,555541676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morangie Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2123,555541677,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigmore Wood","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2124,555541678,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hermaness, Saxa Vord and Valla Field","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2125,555541679,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ramna Stacks and Gruney","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2126,555541680,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fetlar","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2127,555541681,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ronas Hill - North Roe and Tingon","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2128,555541682,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Papa Stour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2129,555541683,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foula","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2130,555541684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Noss","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2131,555541685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fair Isle","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2132,555541686,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Westray","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2133,555541687,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Papa Westray (North Hill and Holm)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2134,555541688,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marwick Head","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2135,555541689,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hoy","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2136,555541690,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Copinsay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2137,555541691,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Creag Meagaidh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2138,555541692,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sule Skerry and Sule Stack","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2199,555541693,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Spynie","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2200,555541694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Strathbeg","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2201,555541695,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ythan Estuary, Sands of Forvie and Meikle Loch","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2202,555541696,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Spey - Insh Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2203,555541697,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairngorms","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2140,555541698,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Skene","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2141,555541699,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fowlsheugh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2142,555541700,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochnagar","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2143,555541701,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumochter Hills","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2144,555541702,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Orkney Mainland Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2145,555541703,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Sanday Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2146,555541704,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mousa","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2147,555541705,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rousay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2148,555541706,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Auskerry","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2149,555541707,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calf of Eday","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2150,555541708,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Troup, Pennan and Lion's Heads","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2151,555541709,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Buchan Ness to Collieston Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2152,555541710,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sumburgh Head","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2153,555541711,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ben Alder","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2154,555541712,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abernethy Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2155,555541713,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kinveachy Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2156,555541714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lochs of Spiggie and Brow","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2204,555541715,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Vaa","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2205,555541716,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Tanar","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2206,555541717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballochbuie","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2207,555541718,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muir of Dinnet","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2216,555541719,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tips of Corsemaul and Tom Mor","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2218,555541720,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Switha","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2157,555541721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Otterswick and Graveland","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2158,555541722,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Lomond","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2159,555541723,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coll","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2160,555541724,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sléibhtean agus Cladach Thiriodh (Tiree Wetlands and Coast)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2161,555541725,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coll (corncrake)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2162,555541726,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tiree (corncrake)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2163,555541727,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Treshnish Isles","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2164,555541728,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gruinart Flats, Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2165,555541729,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bridgend Flats, Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2166,555541730,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Laggan, Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2167,555541731,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eilean na Muice Duibhe (Duich Moss), Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2168,555541732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rinns of Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2169,555541733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Oa","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2170,555541734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Clyde Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2171,555541735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kintyre Goose Roosts","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2208,555541736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ailsa Craig","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2209,555541737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Ken and River Dee Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2210,555541738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Inch and Torrs Warren","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2211,555541739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Colonsay and Western Cliffs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2212,555541740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Loch, Lochmaben","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2219,555541741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glas Eileanan","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2220,555541742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Black Cart","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2221,555541743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muirkirk and North Lowther Uplands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2222,555541744,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Langholm - Newcastleton Hills","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2223,555541745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knapdale Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2224,555541746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cnuic agus Cladach Mhuile","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2225,555541747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arran Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2226,555541748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen App and Galloway Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2227,555541749,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caenlochan","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2228,555541750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rannoch Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2229,555541751,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Montrose Basin","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2233,555541752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Kinnordy","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2234,555541753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch of Lintrathen","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2235,555541754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loch Leven","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2236,555541755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Firth of Tay and Eden Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2239,555541756,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cameron Reservoir","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2240,555541757,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forth Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2241,555541758,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gladhouse Reservoir","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2244,555541759,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fala Flow","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2217,555541760,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Westwater","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2230,555541761,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St Abb's Head to Fast Castle","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2250,555541762,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Greenlaw Moor","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2260,555541763,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Din Moss - Hoselaw Loch","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2261,555541764,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Forest of Clunie","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2262,555541765,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Tayside Goose Roosts","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2263,555541766,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Firth of Forth","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2264,555541767,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slamannan Plateau","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2242,555541768,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Imperial Dock Lock, Leith","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2243,555541769,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Solway Flats and Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2245,555541770,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Duddon Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2246,555541771,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Morecambe Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2247,555541772,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leighton Moss","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2248,555541773,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ribble and Alt Estuaries","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2249,555541774,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Martin Mere","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2251,555541775,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mersey Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2252,555541776,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bowland Fells","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2253,555541777,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thorne and Hatfield Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2254,555541778,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lindisfarne","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2255,555541779,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Farne Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2256,555541780,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coquet Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2267,555541781,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holburn Lake and Moss","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2268,555541782,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Teesmouth and Cleveland Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2269,555541783,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Derwent Valley","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2270,555541784,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Flamborough Head and Bempton Cliffs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2271,555541785,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Humber Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2272,555541786,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Northumbria Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2273,555541787,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North York Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2274,555541788,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hornsea Mere","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2275,555541789,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Pennine Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2276,555541790,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Peak District Moors (South Pennine Moors Phase 1)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2277,555541791,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Pennine Moors Phase 2","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2283,555541792,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Walmore Common","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2265,555541793,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Wash","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2266,555541794,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gibraltar Point","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2278,555541795,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nene Washes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2279,555541796,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ouse Washes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2280,555541797,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rutland Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2281,555541798,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Norfolk Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2282,555541799,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minsmere-Walberswick","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2066,555541800,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Alde-Ore Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2067,555541801,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stour and Orwell Estuaries","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2068,555541802,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hamford Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2069,555541803,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Abberton Reservoir","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2070,555541804,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benfleet and Southend Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2071,555541805,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breydon Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2072,555541806,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breckland","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2073,555541807,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dengie (Mid-Essex Coast Phase 1)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2074,555541808,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Colne Estuary (Mid-Essex Coast Phase 2)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2075,555541809,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crouch and Roach Estuaries (Mid-Essex Coast Phase 3)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2076,555541810,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackwater Estuary (Mid-Essex Coast Phase 4)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2077,555541811,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foulness (Mid-Essex Coast Phase 5)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2078,555541812,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Broadland","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2079,555541813,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Deben Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2080,555541814,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Great Yarmouth North Denes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2081,555541815,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benacre to Easton Bavents","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2082,555541816,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Somerset Levels and Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2083,555541817,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chew Valley Lake","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2084,555541818,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Exe Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2108,555541819,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chesil Beach and The Fleet","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2114,555541820,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dorset Heathlands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2115,555541821,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Poole Harbour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2139,555541822,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Devon Heaths","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2172,555541823,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tamar Estuaries Complex","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2173,555541824,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chichester and Langstone Harbours","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2174,555541825,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2175,555541826,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portsmouth Harbour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2176,555541827,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Solent and Southampton Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2177,555541828,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Avon Valley","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2178,555541829,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Porton Down","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2179,555541830,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Salisbury Plain","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2180,555541831,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Swale","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2181,555541832,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thames Estuary and Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2182,555541833,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Medway Estuary and Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2183,555541834,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pagham Harbour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2184,555541835,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thanet Coast and Sandwich Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2185,555541836,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dungeness to Pett Level","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2186,555541837,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lee Valley","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2213,555541838,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stodmarsh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2214,555541839,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thursley, Hankley and Frensham Commons (Wealden Heaths Phase 1)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2215,555541840,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wealden Heaths Phase 2","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2231,555541841,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Thames Basin Heaths","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2232,555541842,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South West London Waterbodies","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2237,555541843,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ashdown Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2238,555541844,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Dee Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2257,555541845,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Traeth Lafan/ Lavan Sands, Conway Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2258,555541846,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ynys Feurig, Cemlyn Bay and The Skerries","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2259,555541847,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Ynys Gybi/ Holy Island Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1413,555541848,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Berwyn","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2284,555541849,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glannau Aberdaron ac Ynys Enlli/ Aberdaron Coast and Bardsey Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2285,555541850,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Migneint-Arenig-Dduallt","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2286,555541851,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Grassholm","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2287,555541852,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skokholm and Skomer","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2288,555541853,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castlemartin Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2289,555541854,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ramsey and St David`s Peninsula Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2290,555541855,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bae Caerfyrddin/ Carmarthen Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2291,555541856,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Elenydd - Mallaen","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2292,555541857,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Burry Inlet","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2293,555541858,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Severn Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2294,555541859,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rathlin Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2295,555541860,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheep Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2296,555541861,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Foyle","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2297,555541862,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Larne Lough","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2298,555541863,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pettigoe Plateau","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2299,555541864,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Lough Erne","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2300,555541865,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Neagh and Lough Beg","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2301,555541866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belfast Lough","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2302,555541867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strangford Lough","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2303,555541868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carlingford Lough","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2304,555541869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Killough Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2305,555541870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Outer Ards","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2306,555541871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arun Valley","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2307,555541872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Cilan, Trwyn y Wylfa ac Ynysoedd Sant Tudwal","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2308,555541873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craig yr Aderyn (Bird`s Rock)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2309,555541874,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dyfi Estuary / Aber Dyfi","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2310,555541875,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ynys Seiriol / Puffin Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2311,555541876,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandlings","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2313,555541877,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Isles of Scilly","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2314,555541878,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marazion Marsh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2315,555541879,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belfast Lough Open Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2316,555541880,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Copeland Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2317,555541881,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Darnaway and Lethen Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2318,555541882,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Novar","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2319,555541883,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Liverpool Bay / Bae Lerpwl","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2320,555541884,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Renfrewshire Heights","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2322,555541885,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Anagach Woods","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2323,555541886,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Inverness-shire Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2324,555541887,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Oronsay and South Colonsay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2325,555541888,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Strath Carnaig and Strath Fleet Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2326,555541889,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Antrim Hills","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2327,555541890,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slieve Beagh - Mullaghfad - Lisnaskea","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2334,555541891,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Outer Thames Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -20608,555541919,"LTU","Birdlife IBA",2013,"For storage only",28,"Kalviu karjeras","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20606,555541969,"LTU","Birdlife IBA",2013,"For storage only",28,"Grybaulios žuvininkystes tvenkiniai","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -29413,555541977,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Kalmthoutse Heide","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29371,555541978,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"De Zegge","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29368,555541979,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"De Maatjes, Wuustwezelheide en Groot Schietveld","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29303,555541980,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Arendonk, Merksplas, Oud-Turnhout, Ravels en Turnhout","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29442,555541981,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Ronde Put","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29357,555541982,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bokrijk en omgeving","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29369,555541983,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"De Maten","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29370,555541984,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"De Mechelse Heide en de Vallei van de Ziepbeek","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29342,555541985,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Bocholt, Hechtel-Eksel, Meeuwen-Gruitrode, Neerpelt en Peer","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29434,555541986,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Militair domein en vallei van de Zwarte Beek","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29560,555541987,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Vijvercomplex van Midden Limburg","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29411,555541988,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Houthalen-Helchteren, Meeuwen-Gruitrode en Peer","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29395,555541989,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Hamonterheide, Hageven, Buitenheide, Stamprooierbroek en Mariahof","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29366,555541990,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"De Demervallei","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29415,555541991,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Kuifeend en Blokkersdijk","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29414,555541992,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Krekengebied","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29372,555541993,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Durme en Middenloop van de Schelde","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29443,555541994,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Schorren en Polders van de Beneden-Schelde","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29367,555541995,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"De Dijlevallei","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29561,555541996,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Westkust","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29412,555541997,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Ijzervallei","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29441,555541998,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Poldercomplex","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29410,555541999,"BEL","Natura 2000 National Monitoring",2007,"For storage only",38,"Het Zwin","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29374,555542163,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Etangs de Boneffe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -15027,555542213,"LUX","Birdlife IBA",2009,"For storage only",28,"Vallée supérieure de l'Our et affluents de Lieler à Dasbourg","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15025,555542214,"LUX","Birdlife IBA",2009,"For storage only",28,"Vallée supérieure de la Sûre et affluents de la frontière belge à Esch-sur-Sûre","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15021,555542216,"LUX","Birdlife IBA",2009,"For storage only",28,"Vallée de la Syre de Moutfort à Roodt/Syre","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15018,555542219,"LUX","Birdlife IBA",2009,"For storage only",28,"Esch-sur-Alzette Sud-est - Anciennes minières / Ellegronn","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15012,555542220,"LUX","Birdlife IBA",2009,"For storage only",28,"Dudelange Haard","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15007,555542221,"LUX","Birdlife IBA",2009,"For storage only",28,"Aspelt - Lannebur, Am Kessel","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13097,555542335,"SLE","Birdlife IBA",2005,"For storage only",28,"Gola Rainforest National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13096,555542335,"SLE","METT",2009,"For storage only",28,"Gola Rainforest National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11739,555542337,"JOR","WHA Outlook Report",2014,"For storage only",28,"Wadi Rum Protected Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18732,555542338,"AUS","WHA Outlook Report",2014,"For storage only",28,"Ningaloo Coast","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11802,555542339,"KEN","WHA Outlook Report",2014,"For storage only",28,"Kenya Lake System in the Great Rift Valley","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9,555542441,"ARE","METT",2016,"For storage only",1,"Al Yasat","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -12,555542442,"ARE","METT",2016,"For storage only",1,"Arabian Oryx","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -4,555542444,"ARE","METT",2016,"For storage only",1,"Al Houbara","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -23,555542446,"ARE","METT",2016,"For storage only",1,"Marawah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -13836,555542447,"URY","METT",2005,"For storage only",28,"Humedales del Santa Lucia","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13837,555542447,"URY","METT",2009,"For storage only",28,"Humedales del Santa Lucia","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13850,555542449,"URY","METT",2009,"For storage only",28,"Montes del Queguay","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13856,555542450,"URY","METT",2009,"For storage only",28,"Potrerillo de Santa Teresa","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13861,555542450,"URY","METT",2005,"For storage only",28,"Potrerillo de Santa Teresa","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13848,555542452,"URY","METT",2006,"For storage only",28,"Laguna Garzón","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13843,555542452,"URY","METT",2005,"For storage only",28,"Laguna Garzón","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11843,555542701,"KGZ","Birdlife IBA",2006,"For storage only",28,"Son-Kol Lake","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -26,555542722,"ARE","METT",2016,"For storage only",1,"Ras Al Khor","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -28,555542723,"ARE","METT",2016,"For storage only",1,"Wadi Wurayah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -14217,555542725,"YEM","Birdlife IBA",2013,"For storage only",28,"Detwah Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20830,555542728,"MDG","SAPM",2016,"For storage only",34,"Rivière Nosivolo et affluents","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -13228,555542730,"SYC","METT",2009,"For storage only",28,"Aldabra Atoll","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13225,555542730,"SYC","Birdlife IBA",2001,"For storage only",28,"Aldabra Atoll","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13125,555542793,"SLV","METT",2010,"For storage only",28,"El Caballito","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13129,555542800,"SLV","METT",0,"For storage only",28,"La Montañita","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14966,555542818,"JAM","METT",2009,"For storage only",28,"Galleon Harbour","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14987,555542820,"JAM","METT",2009,"For storage only",28,"Three Bay Area","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14965,555542821,"JAM","METT",2009,"For storage only",28,"Galleon - Black River","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14953,555542822,"JAM","METT",2009,"For storage only",28,"Bluefields Bay","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14981,555542823,"JAM","METT",2009,"For storage only",28,"Orange Bay","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14968,555542827,"JAM","METT",2009,"For storage only",28,"Mason River Savanna","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14970,555542827,"JAM","RAPPAM",2006,"For storage only",28,"Mason River Savanna","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14962,555542828,"JAM","METT",2009,"For storage only",28,"Coral Spring","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14964,555542840,"JAM","RAPPAM",2006,"For storage only",28,"Dolphin Head","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14986,555542900,"JAM","METT",2009,"For storage only",28,"Salt Harbour (revised)","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11519,555543022,"EGY","METT",2009,"For storage only",28,"Red Sea Islands","Developing Resources Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1403,555543099,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Nene Valley Gravel Pits","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -11403,555543117,"DNK","Birdlife IBA",2006,"For storage only",28,"Æbelø and the sea south of, and Nærå","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11452,555543118,"DNK","Birdlife IBA",2009,"For storage only",28,"The sea between Romsø and Hindsholm and Romsø","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11435,555543119,"DNK","Birdlife IBA",2010,"For storage only",28,"Odense Fjord","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11411,555543120,"DNK","Birdlife IBA",2010,"For storage only",28,"Lillebælt","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11483,555543125,"DNK","Birdlife IBA",2010,"For storage only",28,"South Funen sea with islands","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11455,555543126,"DNK","Birdlife IBA",2006,"For storage only",28,"Roskilde Fjord og Jaegerspris Nordskov","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11398,555543129,"DNK","Birdlife IBA",2010,"For storage only",28,"The sea and the coast between Rørvig and Hundeste","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11463,555543130,"DNK","Birdlife IBA",2006,"For storage only",28,"The bay of Sejerø and Saltbæk Vig","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11441,555543133,"DNK","Birdlife IBA",2010,"For storage only",28,"The sea and coast between Præstø Fjord and Grøn","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11426,555543135,"DNK","Birdlife IBA",2010,"For storage only",28,"Nakskov Fjord","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11382,555543154,"DNK","Birdlife IBA",2010,"For storage only",28,"Horsens Fjord, sea east of and Endelave","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11474,555543162,"DNK","Birdlife IBA",2006,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22189,555543185,"SWE","Birdlife IBA",2007,"For storage only",28,"Holmö Islands","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20605,555543199,"LTU","METT",2006,"For storage only",28,"Curonian Spit National Park","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11458,555543205,"DNK","Birdlife IBA",2006,"For storage only",28,"Waters around Saltholm","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11478,555543206,"DNK","Birdlife IBA",2006,"For storage only",28,"Stavns Fjord and adjacent waters","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22000,555543216,"FIN","RAPPAM",2004,"For storage only",28,"Itäisen Suomenlahden saaristo ja vedet/ Eastern Gulf of Finland Archipelago and waters","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22012,555543216,"FIN","Birdlife IBA",2010,"For storage only",28,"Itäisen Suomenlahden saaristo ja vedet/ Eastern Gulf of Finland Archipelago and waters","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22038,555543228,"FIN","Birdlife IBA",2010,"For storage only",28,"Kirkkonummen saaristo/ Kirkkonummi Archipelago","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11359,555543244,"DNK","Birdlife IBA",2006,"For storage only",28,"Bornholm: Ertholmene","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15320,555543266,"AUS","NSW SOP",2013,"For storage only",28,"Abercrombie","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15319,555543266,"AUS","NSW SOP",2010,"For storage only",28,"Abercrombie","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15318,555543266,"AUS","NSW SOP",2007,"For storage only",28,"Abercrombie","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16136,555543273,"AUS","NSW SOP",2010,"For storage only",28,"Burral Yurrul","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16137,555543273,"AUS","NSW SOP",2013,"For storage only",28,"Burral Yurrul","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16190,555543279,"AUS","NSW SOP",2007,"For storage only",28,"Camerons Gorge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16191,555543279,"AUS","NSW SOP",2010,"For storage only",28,"Camerons Gorge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16192,555543279,"AUS","NSW SOP",2013,"For storage only",28,"Camerons Gorge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16288,555543285,"AUS","NSW SOP",2007,"For storage only",28,"Cataract","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16290,555543285,"AUS","NSW SOP",2013,"For storage only",28,"Cataract","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16289,555543285,"AUS","NSW SOP",2010,"For storage only",28,"Cataract","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15882,555543286,"AUS","NSW SOP",2013,"For storage only",28,"Borenore","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15881,555543286,"AUS","NSW SOP",2010,"For storage only",28,"Borenore","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15880,555543286,"AUS","NSW SOP",2007,"For storage only",28,"Borenore","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15924,555543291,"AUS","NSW SOP",2010,"For storage only",28,"Breelong","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15925,555543291,"AUS","NSW SOP",2013,"For storage only",28,"Breelong","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15935,555543293,"AUS","NSW SOP",2010,"For storage only",28,"Bridal Veil Falls","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15937,555543293,"AUS","NSW SOP",2013,"For storage only",28,"Bridal Veil Falls","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15933,555543293,"AUS","NSW SOP",2007,"For storage only",28,"Bridal Veil Falls","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15667,555543296,"AUS","NSW SOP",2013,"For storage only",28,"Biddon","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15666,555543296,"AUS","NSW SOP",2010,"For storage only",28,"Biddon","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15678,555543297,"AUS","Birdlife IBA",2008,"For storage only",28,"Billiatt","Wilderness Protection Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15706,555543298,"AUS","NSW SOP",2013,"For storage only",28,"Bingara","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15705,555543298,"AUS","NSW SOP",2010,"For storage only",28,"Bingara","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15787,555543306,"AUS","NSW SOP",2010,"For storage only",28,"Bobbiwaa","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15788,555543306,"AUS","NSW SOP",2013,"For storage only",28,"Bobbiwaa","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15842,555543308,"AUS","NSW SOP",2010,"For storage only",28,"Boonanghi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15843,555543308,"AUS","NSW SOP",2013,"For storage only",28,"Boonanghi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15841,555543308,"AUS","NSW SOP",2007,"For storage only",28,"Boonanghi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16031,555543314,"AUS","NSW SOP",2010,"For storage only",28,"Budelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16032,555543314,"AUS","NSW SOP",2013,"For storage only",28,"Budelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16030,555543314,"AUS","NSW SOP",2007,"For storage only",28,"Budelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16043,555543315,"AUS","NSW SOP",2010,"For storage only",28,"Bulahdelah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16044,555543315,"AUS","NSW SOP",2013,"For storage only",28,"Bulahdelah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16049,555543316,"AUS","NSW SOP",2010,"For storage only",28,"Bull Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16050,555543316,"AUS","NSW SOP",2013,"For storage only",28,"Bull Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16051,555543317,"AUS","NSW SOP",2010,"For storage only",28,"Bullala","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16052,555543317,"AUS","NSW SOP",2013,"For storage only",28,"Bullala","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16053,555543318,"AUS","NSW SOP",2010,"For storage only",28,"Bullawa Creek","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16054,555543318,"AUS","NSW SOP",2013,"For storage only",28,"Bullawa Creek","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16558,555543328,"AUS","NSW SOP",2010,"For storage only",28,"Couradda","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16559,555543328,"AUS","NSW SOP",2013,"For storage only",28,"Couradda","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16573,555543330,"AUS","NSW SOP",2013,"For storage only",28,"Crawney Pass","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16572,555543330,"AUS","NSW SOP",2010,"For storage only",28,"Crawney Pass","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16591,555543332,"AUS","NSW SOP",2010,"For storage only",28,"Cudgera Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16592,555543332,"AUS","NSW SOP",2013,"For storage only",28,"Cudgera Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16625,555543333,"AUS","NSW SOP",2013,"For storage only",28,"Curracabundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16624,555543333,"AUS","NSW SOP",2010,"For storage only",28,"Curracabundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16623,555543333,"AUS","NSW SOP",2007,"For storage only",28,"Curracabundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16381,555543337,"AUS","Victorian SOP",2013,"For storage only",28,"Cobboboonee National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16380,555543337,"AUS","Victorian SOP",2010,"For storage only",28,"Cobboboonee National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16404,555543340,"AUS","NSW SOP",2010,"For storage only",28,"Colongra Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16405,555543340,"AUS","NSW SOP",2013,"For storage only",28,"Colongra Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16407,555543341,"AUS","NSW SOP",2013,"For storage only",28,"Columbey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16406,555543341,"AUS","NSW SOP",2010,"For storage only",28,"Columbey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16416,555543342,"AUS","NSW SOP",2010,"For storage only",28,"Comboyne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16417,555543342,"AUS","NSW SOP",2013,"For storage only",28,"Comboyne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16415,555543342,"AUS","NSW SOP",2007,"For storage only",28,"Comboyne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16766,555543351,"AUS","NSW SOP",2010,"For storage only",28,"Doctors Nose Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16767,555543351,"AUS","NSW SOP",2013,"For storage only",28,"Doctors Nose Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16793,555543354,"AUS","NSW SOP",2010,"For storage only",28,"Dowe","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16794,555543354,"AUS","NSW SOP",2013,"For storage only",28,"Dowe","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16803,555543355,"AUS","NSW SOP",2013,"For storage only",28,"Drillwarrina","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16802,555543355,"AUS","NSW SOP",2010,"For storage only",28,"Drillwarrina","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16810,555543358,"AUS","NSW SOP",2013,"For storage only",28,"Dthinna Dthinnawan","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16809,555543358,"AUS","NSW SOP",2010,"For storage only",28,"Dthinna Dthinnawan","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16807,555543359,"AUS","NSW SOP",2010,"For storage only",28,"Dthinna Dthinnawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16806,555543359,"AUS","NSW SOP",2007,"For storage only",28,"Dthinna Dthinnawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16808,555543359,"AUS","NSW SOP",2013,"For storage only",28,"Dthinna Dthinnawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17222,555543366,"AUS","NSW SOP",2010,"For storage only",28,"Gumbaynggirr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17225,555543366,"AUS","Victorian SOP",2013,"For storage only",28,"Gumbaynggirr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17224,555543366,"AUS","Victorian SOP",2010,"For storage only",28,"Gumbaynggirr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17223,555543366,"AUS","NSW SOP",2013,"For storage only",28,"Gumbaynggirr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17235,555543368,"AUS","NSW SOP",2010,"For storage only",28,"Gungewalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17236,555543368,"AUS","NSW SOP",2013,"For storage only",28,"Gungewalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17234,555543368,"AUS","NSW SOP",2007,"For storage only",28,"Gungewalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17239,555543369,"AUS","NSW SOP",2013,"For storage only",28,"Gunyerwarildi","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17238,555543369,"AUS","NSW SOP",2010,"For storage only",28,"Gunyerwarildi","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17261,555543370,"AUS","NSW SOP",2013,"For storage only",28,"Gwydir River","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17260,555543370,"AUS","NSW SOP",2010,"For storage only",28,"Gwydir River","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17262,555543371,"AUS","NSW SOP",2010,"For storage only",28,"Gwydir River","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17263,555543371,"AUS","NSW SOP",2013,"For storage only",28,"Gwydir River","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17128,555543376,"AUS","NSW SOP",2013,"For storage only",28,"Goodiman","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17127,555543376,"AUS","NSW SOP",2010,"For storage only",28,"Goodiman","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17150,555543377,"AUS","NSW SOP",2013,"For storage only",28,"Goonoo","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17149,555543377,"AUS","NSW SOP",2010,"For storage only",28,"Goonoo","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17152,555543378,"AUS","NSW SOP",2013,"For storage only",28,"Goonoo","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17151,555543378,"AUS","NSW SOP",2010,"For storage only",28,"Goonoo","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17159,555543379,"AUS","NSW SOP",2013,"For storage only",28,"Goonoowigal","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17158,555543379,"AUS","NSW SOP",2010,"For storage only",28,"Goonoowigal","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16934,555543387,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16935,555543387,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16946,555543388,"AUS","NSW SOP",2010,"For storage only",28,"Flat Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16947,555543388,"AUS","NSW SOP",2013,"For storage only",28,"Flat Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16822,555543393,"AUS","NSW SOP",2010,"For storage only",28,"Durands Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16823,555543393,"AUS","NSW SOP",2013,"For storage only",28,"Durands Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16825,555543395,"AUS","NSW SOP",2010,"For storage only",28,"Duroby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16824,555543395,"AUS","NSW SOP",2007,"For storage only",28,"Duroby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16826,555543395,"AUS","NSW SOP",2013,"For storage only",28,"Duroby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16827,555543396,"AUS","NSW SOP",2010,"For storage only",28,"Durridgere","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16828,555543396,"AUS","NSW SOP",2013,"For storage only",28,"Durridgere","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16842,555543400,"AUS","Victorian SOP",2013,"For storage only",28,"Ecklin South Swamp N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16893,555543408,"AUS","NSW SOP",2013,"For storage only",28,"Eusdale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16892,555543408,"AUS","NSW SOP",2010,"For storage only",28,"Eusdale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16901,555543409,"AUS","NSW SOP",2010,"For storage only",28,"Everlasting Swamp","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16902,555543409,"AUS","NSW SOP",2013,"For storage only",28,"Everlasting Swamp","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16900,555543409,"AUS","NSW SOP",2007,"For storage only",28,"Everlasting Swamp","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17014,555543411,"AUS","NSW SOP",2013,"For storage only",28,"Garby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17012,555543411,"AUS","NSW SOP",2007,"For storage only",28,"Garby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17015,555543411,"AUS","NSW SOP",2005,"For storage only",28,"Garby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17013,555543411,"AUS","NSW SOP",2010,"For storage only",28,"Garby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17027,555543412,"AUS","NSW SOP",2010,"For storage only",28,"Garrawilla","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17028,555543412,"AUS","NSW SOP",2013,"For storage only",28,"Garrawilla","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17083,555543417,"AUS","NSW SOP",2010,"For storage only",28,"Gir-um-bit","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17084,555543417,"AUS","NSW SOP",2013,"For storage only",28,"Gir-um-bit","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17086,555543418,"AUS","NSW SOP",2013,"For storage only",28,"Gir-um-bit","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17085,555543418,"AUS","NSW SOP",2010,"For storage only",28,"Gir-um-bit","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17460,555543422,"AUS","NSW SOP",2007,"For storage only",28,"Jenolan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17462,555543422,"AUS","NSW SOP",2013,"For storage only",28,"Jenolan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17461,555543422,"AUS","NSW SOP",2010,"For storage only",28,"Jenolan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17549,555543428,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17550,555543428,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17552,555543429,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17551,555543429,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17344,555543431,"AUS","NSW SOP",2013,"For storage only",28,"Horton Falls","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17343,555543431,"AUS","NSW SOP",2010,"For storage only",28,"Horton Falls","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17360,555543432,"AUS","NSW SOP",2010,"For storage only",28,"Hunter Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17361,555543432,"AUS","NSW SOP",2013,"For storage only",28,"Hunter Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17375,555543435,"AUS","NSW SOP",2010,"For storage only",28,"Illunie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17374,555543435,"AUS","NSW SOP",2007,"For storage only",28,"Illunie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17376,555543435,"AUS","NSW SOP",2013,"For storage only",28,"Illunie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17578,555543437,"AUS","NSW SOP",2010,"For storage only",28,"Karuah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17579,555543437,"AUS","NSW SOP",2013,"For storage only",28,"Karuah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17630,555543442,"AUS","NSW SOP",2010,"For storage only",28,"Killarney","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17631,555543442,"AUS","NSW SOP",2013,"For storage only",28,"Killarney","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17760,555543446,"AUS","NSW SOP",2013,"For storage only",28,"Kwiambal","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17759,555543446,"AUS","NSW SOP",2010,"For storage only",28,"Kwiambal","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18144,555543456,"AUS","NSW SOP",2013,"For storage only",28,"Merriwindi","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18143,555543456,"AUS","NSW SOP",2010,"For storage only",28,"Merriwindi","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18071,555543469,"AUS","NSW SOP",2010,"For storage only",28,"Maroomba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18072,555543469,"AUS","NSW SOP",2013,"For storage only",28,"Maroomba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18075,555543470,"AUS","NSW SOP",2013,"For storage only",28,"Maroota Ridge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18074,555543470,"AUS","NSW SOP",2010,"For storage only",28,"Maroota Ridge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18073,555543470,"AUS","NSW SOP",2007,"For storage only",28,"Maroota Ridge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18082,555543471,"AUS","NSW SOP",2007,"For storage only",28,"Marrangaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18083,555543471,"AUS","NSW SOP",2010,"For storage only",28,"Marrangaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18084,555543471,"AUS","NSW SOP",2013,"For storage only",28,"Marrangaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18108,555543477,"AUS","NSW SOP",2010,"For storage only",28,"Medowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18110,555543477,"AUS","NSW SOP",2013,"For storage only",28,"Medowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17871,555543480,"AUS","NSW SOP",2010,"For storage only",28,"Leard","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17872,555543480,"AUS","NSW SOP",2013,"For storage only",28,"Leard","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17827,555543487,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Thurrumbong W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17861,555543489,"AUS","NSW SOP",2010,"For storage only",28,"Lansdowne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17862,555543489,"AUS","NSW SOP",2013,"For storage only",28,"Lansdowne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17941,555543492,"AUS","NSW SOP",2007,"For storage only",28,"Livingstone","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17943,555543492,"AUS","NSW SOP",2013,"For storage only",28,"Livingstone","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17942,555543492,"AUS","NSW SOP",2010,"For storage only",28,"Livingstone","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18010,555543498,"AUS","NSW SOP",2010,"For storage only",28,"Macquarie Pass","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18012,555543498,"AUS","NSW SOP",2013,"For storage only",28,"Macquarie Pass","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18009,555543498,"AUS","NSW SOP",2007,"For storage only",28,"Macquarie Pass","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18008,555543498,"AUS","NSW SOP",2005,"For storage only",28,"Macquarie Pass","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18435,555543504,"AUS","NSW SOP",2013,"For storage only",28,"Mount Pikapene","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18434,555543504,"AUS","NSW SOP",2010,"For storage only",28,"Mount Pikapene","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18278,555543506,"AUS","NSW SOP",2010,"For storage only",28,"Morton","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18279,555543506,"AUS","NSW SOP",2013,"For storage only",28,"Morton","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18277,555543506,"AUS","NSW SOP",2007,"For storage only",28,"Morton","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18276,555543506,"AUS","NSW SOP",2005,"For storage only",28,"Morton","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18587,555543517,"AUS","NSW SOP",2010,"For storage only",28,"Murrurundi Pass","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18588,555543517,"AUS","NSW SOP",2013,"For storage only",28,"Murrurundi Pass","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18185,555543520,"AUS","NSW SOP",2010,"For storage only",28,"Moema","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18186,555543520,"AUS","NSW SOP",2013,"For storage only",28,"Moema","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18201,555543526,"AUS","NSW SOP",2010,"For storage only",28,"Monga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18200,555543526,"AUS","NSW SOP",2007,"For storage only",28,"Monga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18202,555543526,"AUS","NSW SOP",2013,"For storage only",28,"Monga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19008,555543528,"AUS","NSW SOP",2013,"For storage only",28,"Prospect","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19006,555543528,"AUS","NSW SOP",2007,"For storage only",28,"Prospect","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19007,555543528,"AUS","NSW SOP",2010,"For storage only",28,"Prospect","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18868,555543549,"AUS","NSW SOP",2010,"For storage only",28,"Palm Grove","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18869,555543549,"AUS","NSW SOP",2013,"For storage only",28,"Palm Grove","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18867,555543549,"AUS","NSW SOP",2007,"For storage only",28,"Palm Grove","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18745,555543552,"AUS","NSW SOP",2010,"For storage only",28,"Nombinnie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18744,555543552,"AUS","NSW SOP",2007,"For storage only",28,"Nombinnie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18743,555543552,"AUS","NSW SOP",2005,"For storage only",28,"Nombinnie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18746,555543552,"AUS","NSW SOP",2013,"For storage only",28,"Nombinnie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18791,555543563,"AUS","NSW SOP",2013,"For storage only",28,"Nullamanna","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18790,555543563,"AUS","NSW SOP",2010,"For storage only",28,"Nullamanna","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18936,555543571,"AUS","NSW SOP",2013,"For storage only",28,"Pilliga","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18935,555543571,"AUS","NSW SOP",2010,"For storage only",28,"Pilliga","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18938,555543572,"AUS","NSW SOP",2013,"For storage only",28,"Pilliga","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18937,555543572,"AUS","NSW SOP",2010,"For storage only",28,"Pilliga","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18939,555543573,"AUS","NSW SOP",2010,"For storage only",28,"Pilliga East","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18941,555543573,"AUS","NSW SOP",2013,"For storage only",28,"Pilliga East","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18942,555543574,"AUS","NSW SOP",2010,"For storage only",28,"Pilliga West","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18943,555543574,"AUS","NSW SOP",2013,"For storage only",28,"Pilliga West","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18945,555543575,"AUS","NSW SOP",2013,"For storage only",28,"Pilliga West","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18944,555543575,"AUS","NSW SOP",2010,"For storage only",28,"Pilliga West","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19432,555543583,"AUS","NSW SOP",2007,"For storage only",28,"Taringa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19435,555543583,"AUS","NSW SOP",2004,"For storage only",28,"Taringa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19434,555543583,"AUS","NSW SOP",2013,"For storage only",28,"Taringa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19433,555543583,"AUS","NSW SOP",2010,"For storage only",28,"Taringa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19511,555543590,"AUS","NSW SOP",2013,"For storage only",28,"Tilligerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19510,555543590,"AUS","NSW SOP",2010,"For storage only",28,"Tilligerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19514,555543591,"AUS","NSW SOP",2010,"For storage only",28,"Tilligerry","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19512,555543591,"AUS","NSW SOP",2013,"For storage only",28,"Tilligerry","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19519,555543592,"AUS","NSW SOP",2010,"For storage only",28,"Timmallallie","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19520,555543592,"AUS","NSW SOP",2013,"For storage only",28,"Timmallallie","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19539,555543593,"AUS","NSW SOP",2013,"For storage only",28,"Tinkrameanah","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19538,555543593,"AUS","NSW SOP",2010,"For storage only",28,"Tinkrameanah","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19259,555543594,"AUS","NSW SOP",2010,"For storage only",28,"Smiths Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19260,555543594,"AUS","NSW SOP",2013,"For storage only",28,"Smiths Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19278,555543596,"AUS","NSW SOP",2013,"For storage only",28,"Somerton","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19277,555543596,"AUS","NSW SOP",2010,"For storage only",28,"Somerton","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19148,555543597,"AUS","NSW SOP",2010,"For storage only",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19146,555543597,"AUS","NSW SOP",2005,"For storage only",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19150,555543597,"AUS","NSW SOP",2004,"For storage only",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19147,555543597,"AUS","NSW SOP",2007,"For storage only",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19149,555543597,"AUS","NSW SOP",2013,"For storage only",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19173,555543603,"AUS","NSW SOP",2013,"For storage only",28,"Saratoga Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19171,555543603,"AUS","NSW SOP",2007,"For storage only",28,"Saratoga Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19172,555543603,"AUS","NSW SOP",2010,"For storage only",28,"Saratoga Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19191,555543605,"AUS","NSW SOP",2013,"For storage only",28,"Scone Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19189,555543605,"AUS","NSW SOP",2007,"For storage only",28,"Scone Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19190,555543605,"AUS","NSW SOP",2010,"For storage only",28,"Scone Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19237,555543606,"AUS","NSW SOP",2013,"For storage only",28,"Shark Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19236,555543606,"AUS","NSW SOP",2010,"For storage only",28,"Shark Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19355,555543620,"AUS","NSW SOP",2010,"For storage only",28,"Sugarloaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19356,555543620,"AUS","NSW SOP",2013,"For storage only",28,"Sugarloaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19613,555543623,"AUS","NSW SOP",2013,"For storage only",28,"Trinkey","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19612,555543623,"AUS","NSW SOP",2010,"For storage only",28,"Trinkey","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19633,555543624,"AUS","NSW SOP",2007,"For storage only",28,"Tuggerah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19635,555543624,"AUS","NSW SOP",2013,"For storage only",28,"Tuggerah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19634,555543624,"AUS","NSW SOP",2010,"For storage only",28,"Tuggerah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19637,555543625,"AUS","NSW SOP",2013,"For storage only",28,"Tuggerah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19636,555543625,"AUS","NSW SOP",2010,"For storage only",28,"Tuggerah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19653,555543627,"AUS","NSW SOP",2010,"For storage only",28,"Tumblong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19651,555543627,"AUS","NSW SOP",2005,"For storage only",28,"Tumblong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19654,555543627,"AUS","NSW SOP",2013,"For storage only",28,"Tumblong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19652,555543627,"AUS","NSW SOP",2007,"For storage only",28,"Tumblong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19760,555543634,"AUS","NSW SOP",2013,"For storage only",28,"Wallaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19759,555543634,"AUS","NSW SOP",2010,"For storage only",28,"Wallaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19809,555543638,"AUS","NSW SOP",2013,"For storage only",28,"Warialda","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19808,555543638,"AUS","NSW SOP",2010,"For storage only",28,"Warialda","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19811,555543639,"AUS","NSW SOP",2013,"For storage only",28,"Warialda","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19810,555543639,"AUS","NSW SOP",2010,"For storage only",28,"Warialda","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19852,555543642,"AUS","NSW SOP",2010,"For storage only",28,"Watchimbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19853,555543642,"AUS","NSW SOP",2013,"For storage only",28,"Watchimbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19851,555543642,"AUS","NSW SOP",2007,"For storage only",28,"Watchimbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19861,555543644,"AUS","NSW SOP",2010,"For storage only",28,"Watsons Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19860,555543644,"AUS","NSW SOP",2007,"For storage only",28,"Watsons Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19863,555543644,"AUS","NSW SOP",2013,"For storage only",28,"Watsons Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19891,555543649,"AUS","NSW SOP",2010,"For storage only",28,"Werakata","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19892,555543649,"AUS","NSW SOP",2013,"For storage only",28,"Werakata","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19907,555543650,"AUS","NSW SOP",2007,"For storage only",28,"Werrikimbe","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19908,555543650,"AUS","NSW SOP",2010,"For storage only",28,"Werrikimbe","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19910,555543650,"AUS","NSW SOP",2013,"For storage only",28,"Werrikimbe","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19710,555543653,"AUS","NSW SOP",2010,"For storage only",28,"Upper Nepean","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19711,555543653,"AUS","NSW SOP",2013,"For storage only",28,"Upper Nepean","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19925,555543657,"AUS","NSW SOP",2010,"For storage only",28,"Wianamatta","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19926,555543657,"AUS","NSW SOP",2013,"For storage only",28,"Wianamatta","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20046,555543660,"AUS","NSW SOP",2013,"For storage only",28,"Wombeyan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20045,555543660,"AUS","NSW SOP",2010,"For storage only",28,"Wombeyan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20048,555543662,"AUS","NSW SOP",2013,"For storage only",28,"Wondoba","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20047,555543662,"AUS","NSW SOP",2010,"For storage only",28,"Wondoba","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20103,555543665,"AUS","NSW SOP",2010,"For storage only",28,"Woregore","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20102,555543665,"AUS","NSW SOP",2007,"For storage only",28,"Woregore","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20104,555543665,"AUS","NSW SOP",2013,"For storage only",28,"Woregore","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20106,555543666,"AUS","NSW SOP",2013,"For storage only",28,"Worimi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20105,555543666,"AUS","NSW SOP",2010,"For storage only",28,"Worimi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20107,555543667,"AUS","NSW SOP",2010,"For storage only",28,"Worimi","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20108,555543667,"AUS","NSW SOP",2013,"For storage only",28,"Worimi","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20109,555543668,"AUS","NSW SOP",2010,"For storage only",28,"Worimi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20110,555543668,"AUS","NSW SOP",2013,"For storage only",28,"Worimi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20161,555543672,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20160,555543672,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20162,555543673,"AUS","NSW SOP",2007,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20163,555543673,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20192,555543675,"AUS","NSW SOP",2013,"For storage only",28,"Yarrigan","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20191,555543675,"AUS","NSW SOP",2010,"For storage only",28,"Yarrigan","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20194,555543676,"AUS","NSW SOP",2010,"For storage only",28,"Yarrahapinni Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20195,555543676,"AUS","NSW SOP",2013,"For storage only",28,"Yarrahapinni Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20193,555543676,"AUS","NSW SOP",2007,"For storage only",28,"Yarrahapinni Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20217,555543679,"AUS","NSW SOP",2010,"For storage only",28,"Yarrobil","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20218,555543679,"AUS","NSW SOP",2013,"For storage only",28,"Yarrobil","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15496,555543697,"AUS","NSW SOP",2013,"For storage only",28,"Barayamal","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15495,555543697,"AUS","NSW SOP",2010,"For storage only",28,"Barayamal","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15503,555543698,"AUS","NSW SOP",2013,"For storage only",28,"Bargo River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15502,555543698,"AUS","NSW SOP",2010,"For storage only",28,"Bargo River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15518,555543700,"AUS","NSW SOP",2013,"For storage only",28,"Barrakee","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15516,555543700,"AUS","NSW SOP",2007,"For storage only",28,"Barrakee","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15517,555543700,"AUS","NSW SOP",2010,"For storage only",28,"Barrakee","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15628,555543706,"AUS","NSW SOP",2010,"For storage only",28,"Beni","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15629,555543706,"AUS","NSW SOP",2013,"For storage only",28,"Beni","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28051,555543713,"CHL","METT",2006,"For storage only",28,"Corcovado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14402,555543714,"CHL","METT",2010,"For storage only",28,"Radal Siete Tazas","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14408,555543766,"CHL","RAPPAM",2005,"For storage only",28,"Río Cruces y Chorocomayo","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14407,555543766,"CHL","METT",2004,"For storage only",28,"Río Cruces y Chorocomayo","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14409,555543766,"CHL","METT",2010,"For storage only",28,"Río Cruces y Chorocomayo","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14308,555543793,"CHL","METT",2005,"For storage only",28,"Predio Sector Altos de Cantillana - Horcón de Piedra y Roblería Cajón de Lisboa","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14309,555543793,"CHL","METT",2010,"For storage only",28,"Predio Sector Altos de Cantillana - Horcón de Piedra y Roblería Cajón de Lisboa","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14350,555543807,"CHL","METT",2010,"For storage only",28,"Lafken Mapu Lahual","Marine and Coastal Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14342,555543809,"CHL","METT",2010,"For storage only",28,"Punta Morro - Desembocadura río Copiapó - Isla grande de Atacama","Marine and Coastal Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -916,555544084,"PER","METT",2016,"For storage only",13,"Los Pantanos de Villa","Refugio de Vida Sivestre","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -935,555544085,"PER","METT",2016,"For storage only",13,"Matses","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -925,555544086,"PER","METT",2016,"For storage only",13,"Tuntanain","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -909,555544087,"PER","METT",2016,"For storage only",13,"Ichigkat Muja","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -920,555544088,"PER","METT",2016,"For storage only",13,"Chayu Nain","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -960,555544089,"PER","METT",2016,"For storage only",13,"Humedales de Puerto Viejo","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -980,555544090,"PER","METT",2016,"For storage only",13,"Islote Grupo de Pescadores - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -985,555544091,"PER","METT",2016,"For storage only",13,"Isla Ballestas Norte, Centro y Sur - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -970,555544092,"PER","METT",2016,"For storage only",13,"Islas Macabí - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -968,555544093,"PER","METT",2016,"For storage only",13,"Isla Lobos de Tierra - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -969,555544094,"PER","METT",2016,"For storage only",13,"Islas Lobos de Afuera - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -971,555544095,"PER","METT",2016,"For storage only",13,"Islas Guañape Norte y Guañape Sur - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -984,555544096,"PER","METT",2016,"For storage only",13,"Isla Chincha Norte, Centro y Sur - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -973,555544097,"PER","METT",2016,"For storage only",13,"Islote Corcovado - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -972,555544098,"PER","METT",2016,"For storage only",13,"Isla Chao - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -964,555544099,"PER","METT",2016,"For storage only",13,"Rio Nieva","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -962,555544100,"PER","METT",2016,"For storage only",13,"Lomas de Ancon","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -957,555544101,"PER","METT",2016,"For storage only",13,"Bosque de Zarate","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -963,555544102,"PER","METT",2016,"For storage only",13,"Reserva Paisajistica Cerro Khapia","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -914,555544103,"PER","METT",2016,"For storage only",13,"Bosques Nublado de Udima","Refugio de Vida Sivestre","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -967,555544104,"PER","METT",2016,"For storage only",13,"Yaguas","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -966,555544105,"PER","METT",2016,"For storage only",13,"Sierra del Divisor","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28319,555545397,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Zwarte Leen","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -28320,555545398,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Bertembos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -8964,555545402,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Whinnerston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6863,555545404,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chwarel Cambrian / Cambrian Quarry, Gwernmynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6772,555545405,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Bryn Ifor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6800,555545406,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Caradog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6821,555545407,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castell Y Waun a'i Barcdir / Chirk Castle and Parkland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7508,555545408,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rhosydd Llanddona","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4959,555545409,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Y Fflint / Flint Mountain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7324,555545410,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Muriau Gwyddelod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6724,555545411,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Breigam Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7221,555545412,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Leighton Bat Roosts","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6664,555545413,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7525,555545414,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ruperra Castle & Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7357,555545415,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Nant y Graen a Nant Ganol","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9204,555545419,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tandragee","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9231,555545420,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shimna River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9227,555545421,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenballyemon River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9200,555545422,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Errigal Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9196,555545423,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballymacallion","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9187,555545424,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Smulgedon","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9188,555545425,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle River Valley","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9201,555545426,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballymacaldrack","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9208,555545427,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough McCall","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9202,555545428,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough na blaney bane","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9191,555545429,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cruninish Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9192,555545430,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hare Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9206,555545431,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rathsherry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9207,555545432,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballyrisk More","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9209,555545433,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coolnasillagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9203,555545434,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Round Lough and Lough Fadda","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9205,555545435,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Devenish Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9210,555545436,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sheepland Coast","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9175,555545437,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dunaree Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9212,555545438,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kirlish","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9215,555545439,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sloughan and Willmount Glens","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9216,555545440,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tedd","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9213,555545441,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lisdoo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9211,555545442,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dromore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9186,555545443,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lurgylea","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9171,555545444,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumharvey","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9214,555545445,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Paris Island Big","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9190,555545446,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Gobbins","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9217,555545447,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tardree Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9189,555545448,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sandy Braes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9198,555545449,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9240,555545450,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glarryford","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9259,555545451,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lisnaragh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9199,555545452,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Camlough Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9219,555545453,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lislea","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9224,555545454,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mullaghbane","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9222,555545455,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glendesha","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9218,555545456,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cloghinny","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9193,555545457,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Corr","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9229,555545458,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Gullion","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9194,555545459,"GBR","Common Standards Monitoring",2013,"For storage only",18,"River Faughan and Tributaries","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9195,555545460,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knocknashangan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9226,555545461,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackslee","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9197,555545462,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ross","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9220,555545463,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scraghy","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9221,555545464,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cloghfin Port","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9246,555545465,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carey Valley","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9225,555545466,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slieveanorra and Croaghan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9257,555545467,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aghabrack","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9230,555545468,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moneystaghan Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9233,555545469,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Creevagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9228,555545470,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knocknacloy","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9242,555545471,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Annaghagh Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9248,555545472,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mullaghcarn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9223,555545473,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mountfield Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9244,555545474,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sruhanleanantawey Burn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9243,555545475,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cashel Rock","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9245,555545476,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Largy Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9235,555545477,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coolcran","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9236,555545478,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Makenny","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9239,555545479,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gravel Ridge Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9237,555545480,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Maidens","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9238,555545481,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tullyratty","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9232,555545482,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumbegger","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9247,555545483,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Little Deer Park","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9234,555545484,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Keadew","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9281,555545485,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Butterlope Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9266,555545486,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Larkhill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9265,555545487,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Church Bay","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9268,555545488,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumbally Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9267,555545489,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Edernery Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9264,555545490,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fair Head and Murlough Bay","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9251,555545491,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen East","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9249,555545492,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tower More","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9270,555545493,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Galboly","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9255,555545494,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brookend","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9241,555545495,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maghaberry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9262,555545496,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blaeberry Island Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9260,555545497,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Minnis","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9261,555545498,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cloghastucan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9252,555545499,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brackagh Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9256,555545500,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Linford","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9258,555545501,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caledon and Tynan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7622,555545502,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Woodburn Reservoir","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7626,555545503,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Woodburn Reservoir","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9263,555545504,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Copeland Reservoir","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9285,555545505,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilkeel Steps","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9269,555545506,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Loughermore Mountain","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9283,555545507,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Macrory","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9177,555545508,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Baronscourt","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9278,555545509,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castlecoole","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9272,555545510,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Anierin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9277,555545511,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Cowey","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9276,555545512,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenariff Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9280,555545513,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rathlin Island - Kebble","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9176,555545514,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Killeter Forest and Bogs and Lakes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9163,555545515,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyrella & Minerstown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9282,555545516,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Naman Bog and Lake","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9284,555545517,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilcoan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7629,555545518,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clarehill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9287,555545519,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Capecastle","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9275,555545520,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tempo River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6500,555545521,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Kilbroney River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9160,555545522,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gruggandoo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9271,555545523,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glenarm Woods Part 2","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9273,555545524,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gortcorbies","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9274,555545525,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Craigs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9279,555545526,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drummond Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2513,555545527,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rye Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6609,555545628,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cloatley Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6610,555545630,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ely Pits and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6611,555545694,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Talland Barton Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6612,555545714,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardley Trackways","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6613,555545717,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eskamhorn Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6614,555545721,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bewick and Beanley Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6615,555545731,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Annesley Woodhouse Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6616,555545734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Scroggs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6617,555545735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chasewater and The Southern Staffordshire Coalfield Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6618,555545748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bradbourne Mill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6619,555545749,"GBR","Common Standards Monitoring",2013,"For storage only",18,"South Lee Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6620,555545750,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mount Pleasant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6621,555545751,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wall Lands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6623,555545752,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Matley Moor Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6624,555545753,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hallam Barn Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6625,555545754,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lower Hollins","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6626,555545755,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lugg and Hampton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -29653,555547509,"MAR","IMET",2018,"Not Reported",42,"Al-Hoceima National Park","National Park","List of protected areas assessed with the Integrated Management Effectiveness Tool (IMET)","European Commission",2019,"English",FALSE -11624,555547522,"GMB","RAPPAM",2009,"For storage only",28,"Gunjur (Bolonfenyo)","Community Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13154,555547528,"SRB","METT",2012,"For storage only",28,"Golija-Studenica","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13330,555547529,"TUR","GOBI Survey",2006,"For storage only",28,"Camili","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -104,555547531,"ARG","GOBI Survey",2009,"For storage only",3,"Pereyra Iraola","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -14467,555547537,"ECU","GOBI Survey",2006,"For storage only",28,"Podocarpus-El Condor","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20613,555547588,"LTU","METT",2006,"For storage only",28,"Zuvintas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13042,555547592,"RUS","METT",2013,"For storage only",28,"Volga-Akhtuba Floodplain","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9898,555547911,"KOR","METT",2017,"For storage only",26,"Mt. Jeokgeun Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9903,555547912,"KOR","METT",2017,"For storage only",26,"Dongbaekdongsan Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9904,555547913,"KOR","METT",2017,"For storage only",26,"Sumeunmul Baengdeu Wetlands","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9905,555547915,"KOR","METT",2017,"For storage only",26,"Mt. Kariwang Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9908,555547916,"KOR","METT",2017,"For storage only",26,"Mt. Gyebang Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9909,555547920,"KOR","METT",2017,"For storage only",26,"Punchbowl Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -13106,555547922,"SLE","METT",2010,"For storage only",28,"Sierra Leone River Estuary","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20812,555547961,"MDG","SAPM",2016,"For storage only",34,"Zone Humide de Mandrozo","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -11538,555547985,"EGY","Birdlife IBA",2001,"For storage only",28,"Wadi El Rayan Protected Area","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13240,555547987,"TCD","WHA Outlook Report",2014,"For storage only",28,"Lakes of Ounianga","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10967,555547988,"COG;CMR;CAF","WHA Outlook Report",2014,"For storage only",28,"Sangha Trinational","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10980,555547989,"CHN","WHA Outlook Report",2014,"For storage only",28,"Chengjiang Fossil Site","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12872,555547991,"RUS","WHA Outlook Report",2014,"For storage only",28,"Lena Pillars Nature Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11131,555547994,"CMR","METT",2012,"For storage only",28,"Mont Cameroun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11143,555547996,"CMR","METT",2013,"For storage only",28,"Takamanda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11077,555547998,"CMR","METT",0,"For storage only",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11076,555547998,"CMR","METT",2008,"For storage only",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11075,555547998,"CMR","METT",2006,"For storage only",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11116,555547998,"CMR","RAPPAM",2002,"For storage only",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11074,555547998,"CMR","METT",2004,"For storage only",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15559,555548008,"AUS","NSW SOP",2010,"For storage only",28,"Batemans","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20069,555548185,"AUS","Victorian SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18994,555548201,"AUS","NSW SOP",2010,"For storage only",28,"Port Stephens - Great Lakes","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17136,555548318,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17137,555548318,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16277,555548421,"AUS","Victorian SOP",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20277,555548445,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Yuwi Paree Toolkoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18076,555548455,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Marpa (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17589,555548456,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Kelvin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17588,555548456,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Kelvin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19055,555548463,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19054,555548463,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17129,555548494,"AUS","NSW SOP",2010,"For storage only",28,"Goolawah","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17130,555548494,"AUS","NSW SOP",2013,"For storage only",28,"Goolawah","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18174,555548563,"AUS","NSW SOP",2010,"For storage only",28,"Minimbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18173,555548563,"AUS","NSW SOP",2013,"For storage only",28,"Minimbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19929,555548571,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Wickham","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19930,555548571,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Wickham","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19027,555548588,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Pumicestone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18927,555548599,"NFK","Birdlife IBA",2008,"For storage only",28,"Norfolk Island (Phillip Island)","National Park (Commonwealth)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17314,555548603,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17313,555548603,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18484,555548607,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18483,555548607,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18508,555548615,"AUS","NSW SOP",2010,"For storage only",28,"Mullengandra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18510,555548615,"AUS","NSW SOP",2013,"For storage only",28,"Mullengandra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18394,555548628,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19621,555548638,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Tuchekoi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19622,555548638,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Tuchekoi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19650,555548639,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16674,555548640,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19449,555548649,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19450,555548649,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19761,555548655,"AUS","NSW SOP",2005,"For storage only",28,"Wallaroo","Flora Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19762,555548655,"AUS","NSW SOP",2007,"For storage only",28,"Wallaroo","Flora Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19763,555548655,"AUS","NSW SOP",2004,"For storage only",28,"Wallaroo","Flora Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17131,555548663,"AUS","NSW SOP",2010,"For storage only",28,"Goolawah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17132,555548663,"AUS","NSW SOP",2013,"For storage only",28,"Goolawah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16986,555548673,"AUS","NSW SOP",2010,"For storage only",28,"Gaagal Wanggaan (South Beach)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16987,555548673,"AUS","NSW SOP",2013,"For storage only",28,"Gaagal Wanggaan (South Beach)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19455,555548676,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16091,555548684,"AUS","NSW SOP",2013,"For storage only",28,"Bungonia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15325,555548695,"AUS","NSW SOP",2013,"For storage only",28,"Abercrombie River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17607,555548696,"AUS","NSW SOP",2010,"For storage only",28,"Keverstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17608,555548696,"AUS","NSW SOP",2013,"For storage only",28,"Keverstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18946,555548700,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Pinnacles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18458,555548702,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Spurgeon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18459,555548702,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Spurgeon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19456,555548706,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Tewantin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16135,555548709,"AUS","NSW SOP",2013,"For storage only",28,"Burral Yurrul","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16134,555548709,"AUS","NSW SOP",2010,"For storage only",28,"Burral Yurrul","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18803,555548712,"AUS","Victorian SOP",2010,"For storage only",28,"Nyah-Vinifera Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18804,555548712,"AUS","Victorian SOP",2013,"For storage only",28,"Nyah-Vinifera Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18291,555548713,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16995,555548717,"AUS","Victorian SOP",2013,"For storage only",28,"Gadsen Bend Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16994,555548717,"AUS","Victorian SOP",2010,"For storage only",28,"Gadsen Bend Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17784,555548721,"AUS","Victorian SOP",2005,"For storage only",28,"Lake Condah","Indigenous Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15436,555548726,"AUS","Victorian SOP",2013,"For storage only",28,"Bael Bael Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15435,555548726,"AUS","Victorian SOP",2010,"For storage only",28,"Bael Bael Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15774,555548727,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bluff Hill","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15775,555548727,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bluff Hill","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17139,555548728,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Goomboorian","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17138,555548728,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Goomboorian","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16648,555548734,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16647,555548734,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19928,555548735,"AUS","NSW SOP",2013,"For storage only",28,"Wiarborough","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18496,555548739,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mudlo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18495,555548739,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mudlo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17641,555548740,"AUS","Victorian SOP",2010,"For storage only",28,"Kings Billabong Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17640,555548740,"AUS","Victorian SOP",2005,"For storage only",28,"Kings Billabong Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17642,555548740,"AUS","Victorian SOP",2013,"For storage only",28,"Kings Billabong Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15553,555548741,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Basilisk Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16723,555548742,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18641,555548744,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18642,555548744,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17951,555548752,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Lockyer","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17950,555548752,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Lockyer","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16227,555548756,"AUS","NSW SOP",2013,"For storage only",28,"Capertee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16226,555548756,"AUS","NSW SOP",2010,"For storage only",28,"Capertee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20085,555548769,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Woondum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20086,555548769,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Woondum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18781,555548775,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Nour Nour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18780,555548775,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Nour Nour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18639,555548776,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Naree Budjong Djara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17981,555548777,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Macalister Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17316,555548783,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Herberton Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17315,555548783,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Herberton Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15573,555548785,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Beeron","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15572,555548785,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Beeron","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20082,555548787,"AUS","NSW SOP",2010,"For storage only",28,"Woomargama","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20083,555548787,"AUS","NSW SOP",2013,"For storage only",28,"Woomargama","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15339,555548789,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Albinia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15338,555548789,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Albinia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15596,555548790,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Bellthorpe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15595,555548790,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Bellthorpe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17358,555548791,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Humboldt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17359,555548791,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Humboldt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17953,555548792,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17952,555548792,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16988,555548797,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Gadgarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17979,555548798,"AUS","Victorian SOP",2013,"For storage only",28,"Lower Goulburn National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17978,555548798,"AUS","Victorian SOP",2010,"For storage only",28,"Lower Goulburn National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17930,555548802,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Little Mulgrave","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18643,555548804,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Narkoola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18644,555548804,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Narkoola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15720,555548805,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Binya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15719,555548805,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Binya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19807,555548807,"AUS","Victorian SOP",2013,"For storage only",28,"Warby-Ovens National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19806,555548807,"AUS","Victorian SOP",2010,"For storage only",28,"Warby-Ovens National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19454,555548808,"AUS","NSW SOP",2010,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20119,555548810,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Wrattens","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20120,555548810,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Wrattens","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17200,555548811,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Grongah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17201,555548811,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Grongah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18396,555548813,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mount Lewis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18395,555548813,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Mount Lewis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15506,555548814,"AUS","Victorian SOP",2013,"For storage only",28,"Barmah National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15505,555548814,"AUS","Victorian SOP",2010,"For storage only",28,"Barmah National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15504,555548814,"AUS","Victorian SOP",2005,"For storage only",28,"Barmah National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17660,555548815,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Koombooloomba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17077,555548817,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Girramay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17078,555548817,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Girramay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17839,555548818,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Lama Lama (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17840,555548818,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Lama Lama (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16871,555548820,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Errk Oykangand (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16870,555548820,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Errk Oykangand (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15352,555548821,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Alwal (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17727,555548834,"AUS","Qld Rapid Assessment",2010,"For storage only",28,"Kulla (McIlwraith Range) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17726,555548834,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Kulla (McIlwraith Range) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20835,555548845,"MDG","SAPM",2016,"For storage only",34,"Soariake","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20781,555548848,"MDG","SAPM",2016,"For storage only",34,"Ankarea","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20765,555548868,"MDG","SMART",2016,"For storage only",34,"Ambodivahibe","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -11105,555548870,"CMR","RAPPAM",2002,"For storage only",28,"Ebo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11144,555548871,"CMR","RAPPAM",2002,"For storage only",28,"Tchabal Mbabo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14656,555548898,"ESP","Birdlife IBA",2008,"For storage only",28,"Caldera de Taburiente","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14768,555548941,"ESP","Birdlife IBA",2007,"For storage only",28,"Valle De Iruelas","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14626,555549010,"ESP","Birdlife IBA",2008,"For storage only",28,"Izki","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14677,555549016,"ESP","Birdlife IBA",2008,"For storage only",28,"Picos de Europa en Castilla y León","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14573,555549019,"ESP","Birdlife IBA",2007,"For storage only",28,"Fuentes Carrionas y Fuente Cobre - Montaña Palentina","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14533,555549049,"ESP","Birdlife IBA",2008,"For storage only",28,"Tossa Plana de Lles-Puigpedrós","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14699,555549134,"ESP","Birdlife IBA",2008,"For storage only",28,"Roque de Garachico","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12608,555549136,"PRT","Birdlife IBA",2005,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20785,555549153,"MDG","IEG",2016,"For storage only",34,"Belo-sur-mer","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -15106,555549230,"PHL","MPA MEE",2003,"For storage only",28,"Tubbataha Reef","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15093,555549240,"PHL","METT",2010,"For storage only",28,"Balabag","Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15103,555549244,"PHL","METT",2008,"For storage only",28,"Poblacion","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13525,555549305,"TZA","METT",2013,"For storage only",28,"Mbarang'andu WMA","Wildlife management area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10645,555549369,"ARM","METT",2012,"For storage only",28,"Plane Grove","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10644,555549369,"ARM","METT",2009,"For storage only",28,"Plane Grove","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10650,555549370,"ARM","METT",2012,"For storage only",28,"Zangezur","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10653,555549370,"ARM","METT",2014,"For storage only",28,"Zangezur","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10654,555549370,"ARM","METT",2009,"For storage only",28,"Zangezur","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10695,555549371,"ARM","METT",2012,"For storage only",28,"Juniper Open Woodland","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10694,555549371,"ARM","METT",2009,"For storage only",28,"Juniper Open Woodland","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10656,555549372,"ARM","METT",2012,"For storage only",28,"Akhnabat Yew Grove","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10655,555549372,"ARM","METT",2009,"For storage only",28,"Akhnabat Yew Grove","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10670,555549373,"ARM","METT",2009,"For storage only",28,"Caucasian Rose-Bay","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10671,555549373,"ARM","METT",2012,"For storage only",28,"Caucasian Rose-Bay","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10647,555549374,"ARM","METT",2012,"For storage only",28,"Sev Lich","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10646,555549374,"ARM","METT",2009,"For storage only",28,"Sev Lich","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10658,555549375,"ARM","METT",2012,"For storage only",28,"Aragats Alpine","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10657,555549375,"ARM","METT",2009,"For storage only",28,"Aragats Alpine","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10659,555549376,"ARM","METT",2009,"For storage only",28,"Ararat Vordan Karmir","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10660,555549376,"ARM","METT",2012,"For storage only",28,"Ararat Vordan Karmir","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10696,555549377,"ARM","METT",2009,"For storage only",28,"Khor Virap","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10697,555549377,"ARM","METT",2012,"For storage only",28,"Khor Virap","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10673,555549379,"ARM","METT",2009,"For storage only",28,"Gandzakar","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10674,555549379,"ARM","METT",2012,"For storage only",28,"Gandzakar","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10692,555549380,"ARM","METT",2009,"For storage only",28,"Jermuk Forest","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10693,555549380,"ARM","METT",2012,"For storage only",28,"Jermuk Forest","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10701,555549381,"ARM","METT",2012,"For storage only",28,"Margahovit","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10652,555549381,"ARM","METT",2009,"For storage only",28,"Margahovit","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10689,555549382,"ARM","METT",2012,"For storage only",28,"Ijevan","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10688,555549382,"ARM","METT",2009,"For storage only",28,"Ijevan","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10676,555549383,"ARM","METT",2012,"For storage only",28,"Getik","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10675,555549383,"ARM","METT",2009,"For storage only",28,"Getik","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10667,555549384,"ARM","METT",2012,"For storage only",28,"Bank's Pine","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10666,555549384,"ARM","METT",2009,"For storage only",28,"Bank's Pine","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10690,555549385,"ARM","METT",2009,"For storage only",28,"Jermuk Hydrological","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10691,555549385,"ARM","METT",2012,"For storage only",28,"Jermuk Hydrological","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10679,555549386,"ARM","METT",2012,"For storage only",28,"Goravan Sands","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10678,555549386,"ARM","METT",2009,"For storage only",28,"Goravan Sands","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10681,555549387,"ARM","METT",2012,"For storage only",28,"Goris","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10680,555549387,"ARM","METT",2009,"For storage only",28,"Goris","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10687,555549388,"ARM","METT",2012,"For storage only",28,"Herher Open Woodland","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10686,555549388,"ARM","METT",2009,"For storage only",28,"Herher Open Woodland","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10663,555549389,"ARM","METT",2012,"For storage only",28,"Arjatkhleni Hazel-Nut","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10662,555549389,"ARM","METT",2009,"For storage only",28,"Arjatkhleni Hazel-Nut","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10661,555549391,"ARM","METT",2012,"For storage only",28,"Arevik","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10728,555549396,"AZE","METT",2012,"For storage only",28,"Korchay State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -10729,555549400,"AZE","METT",2013,"For storage only",28,"Shahdagh National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9497,555549405,"GEO","RAPPAM",2009,"For storage only",20,"Ajameti","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9474,555549406,"GEO","RAPPAM",2009,"For storage only",20,"Alazani flood plane forests","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9514,555549406,"GEO","METT",2017,"For storage only",20,"Alazani flood plane forests","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9559,555549406,"GEO","METT",2015,"For storage only",20,"Alazani flood plane forests","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9450,555549406,"GEO","RAPPAM",2012,"For storage only",20,"Alazani flood plane forests","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9448,555549407,"GEO","RAPPAM",2012,"For storage only",20,"Eagle canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9476,555549407,"GEO","RAPPAM",2009,"For storage only",20,"Eagle canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9513,555549407,"GEO","METT",2017,"For storage only",20,"Eagle canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9457,555549408,"GEO","RAPPAM",2009,"For storage only",20,"Babaneuri","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9553,555549409,"GEO","METT",2016,"For storage only",20,"Mtirala","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9470,555549409,"GEO","RAPPAM",2009,"For storage only",20,"Mtirala","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9447,555549409,"GEO","RAPPAM",2012,"For storage only",20,"Mtirala","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9545,555549409,"GEO","METT",2017,"For storage only",20,"Mtirala","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9473,555549410,"GEO","RAPPAM",2009,"For storage only",20,"Kazbegi","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9418,555549410,"GEO","METT",2015,"For storage only",20,"Kazbegi","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9419,555549410,"GEO","METT",2017,"For storage only",20,"Kazbegi","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9495,555549411,"GEO","RAPPAM",2009,"For storage only",20,"Ilto","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9471,555549412,"GEO","RAPPAM",2009,"For storage only",20,"Tbilisi","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9446,555549413,"GEO","RAPPAM",2012,"For storage only",20,"Vashlovani","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9512,555549413,"GEO","METT",2017,"For storage only",20,"Vashlovani","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9558,555549413,"GEO","METT",2015,"For storage only",20,"Vashlovani","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9469,555549413,"GEO","RAPPAM",2009,"For storage only",20,"Vashlovani","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9445,555549414,"GEO","RAPPAM",2012,"For storage only",20,"Tusheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9503,555549414,"GEO","METT",2017,"For storage only",20,"Tusheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9468,555549414,"GEO","RAPPAM",2009,"For storage only",20,"Tusheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9472,555549415,"GEO","RAPPAM",2009,"For storage only",20,"Algeti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9430,555549415,"GEO","METT",2015,"For storage only",20,"Algeti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9431,555549415,"GEO","METT",2017,"For storage only",20,"Algeti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9449,555549417,"GEO","RAPPAM",2012,"For storage only",20,"Takhti-Tefa","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9515,555549417,"GEO","METT",2017,"For storage only",20,"Takhti-Tefa","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9475,555549417,"GEO","RAPPAM",2009,"For storage only",20,"Takhti-Tefa","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9560,555549417,"GEO","METT",2015,"For storage only",20,"Takhti-Tefa","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9505,555549418,"GEO","METT",2017,"For storage only",20,"Bugdasheni","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9506,555549419,"GEO","METT",2017,"For storage only",20,"Khanchali","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9507,555549420,"GEO","METT",2017,"For storage only",20,"Madatapa","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9509,555549421,"GEO","METT",2017,"For storage only",20,"Kartsakhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9508,555549422,"GEO","METT",2017,"For storage only",20,"Sulda","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9504,555549423,"GEO","METT",2017,"For storage only",20,"Javakheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9454,555549424,"GEO","RAPPAM",2012,"For storage only",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9555,555549424,"GEO","METT",2016,"For storage only",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9410,555549424,"GEO","METT",2015,"For storage only",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9411,555549424,"GEO","METT",2017,"For storage only",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9498,555549424,"GEO","RAPPAM",2009,"For storage only",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9496,555549425,"GEO","RAPPAM",2009,"For storage only",20,"Lagodekhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9530,555549425,"GEO","METT",2016,"For storage only",20,"Lagodekhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9537,555549425,"GEO","METT",2017,"For storage only",20,"Lagodekhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9453,555549425,"GEO","RAPPAM",2012,"For storage only",20,"Lagodekhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -13331,555549444,"TUR","METT",2003,"For storage only",28,"Camili","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20784,555549451,"MDG","SAPM",2015,"For storage only",34,"Behara-Tranomaro","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20836,555549452,"MDG","PAMETT",2016,"For storage only",34,"Sud-Ouest Ifotaky","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20827,555549460,"MDG","SAPM",2016,"For storage only",34,"Ranobe PK 32","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20795,555549464,"MDG","METT",2016,"For storage only",34,"Corridor Marojejy Tsaratanana","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -9556,555549467,"GEO","METT",2016,"For storage only",20,"Machakhela","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9479,555549468,"GEO","RAPPAM",2009,"For storage only",20,"Khomuli Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9486,555549469,"GEO","RAPPAM",2009,"For storage only",20,"Okatse Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9485,555549470,"GEO","RAPPAM",2009,"For storage only",20,"Tskaltsitela Ravine","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9477,555549471,"GEO","RAPPAM",2009,"For storage only",20,"Prometheus Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9420,555549473,"GEO","METT",2015,"For storage only",20,"Abano Mineral Lake","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9421,555549473,"GEO","METT",2017,"For storage only",20,"Abano Mineral Lake","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9425,555549474,"GEO","METT",2017,"For storage only",20,"Sakhizari cliff","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9424,555549474,"GEO","METT",2015,"For storage only",20,"Sakhizari cliff","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9422,555549475,"GEO","METT",2015,"For storage only",20,"Travertine of Truso","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9423,555549475,"GEO","METT",2017,"For storage only",20,"Travertine of Truso","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -34,555549480,"AND","National Inventory",2016,"For storage only",2,"Parc Natural de la Vall de Sorteny","Ramsar Site, Wetland of International Importance","Andorra Management Effectiveness Evaluation","Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,"Catalan",FALSE -28027,555552382,"CHE","National Inventory",2011,"For storage only",37,"Chermet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28028,555552383,"CHE","National Inventory",2011,"For storage only",37,"La Mérine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28029,555552384,"CHE","National Inventory",2011,"For storage only",37,"Tour de Gourze","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28030,555552385,"CHE","National Inventory",2011,"For storage only",37,"Le Lanciau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28031,555552386,"CHE","National Inventory",2011,"For storage only",37,"Nant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28032,555552387,"CHE","National Inventory",2011,"For storage only",37,"Longe Perche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28033,555552388,"CHE","National Inventory",2011,"For storage only",37,"Les Moulins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28034,555552389,"CHE","National Inventory",2011,"For storage only",37,"Roc à l'Ours","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28035,555552390,"CHE","National Inventory",2011,"For storage only",37,"Col de la Croix","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -28036,555552391,"CHE","National Inventory",2011,"For storage only",37,"Blatte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English",FALSE -15052,555552403,"MLT","Birdlife IBA",2013,"For storage only",28,"L-Inhawi tar-Ramla tat-Torri u tal-Irdum tal-Madonna","Special Protection Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15055,555552414,"MLT","Birdlife IBA",2013,"For storage only",28,"Rdumijiet ta' Malta: Wied Moqbol sal-Ponta ta' Benghisa","Special Protection Areas","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14607,555552489,"ESP","Catalonia MEE",2002,"For storage only",28,"Reserva Marina de Masía Blanca","Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11230,555555585,"COG","Birdlife IBA",2001,"For storage only",28,"Site Ramsar Odzala Kokoua","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -939,555555596,"PER","METT",2016,"For storage only",13,"San Fernando","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -986,555555597,"PER","METT",2016,"For storage only",13,"Punta Lomitas - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -974,555555598,"PER","METT",2016,"For storage only",13,"Isla Santa - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -982,555555599,"PER","METT",2016,"For storage only",13,"Islas Pachacamac - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -978,555555600,"PER","METT",2016,"For storage only",13,"Islote Don Martín - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -981,555555601,"PER","METT",2016,"For storage only",13,"Islas Cavinzas e Islotes Palominos - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -983,555555602,"PER","METT",2016,"For storage only",13,"Isla Asia - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -979,555555603,"PER","METT",2016,"For storage only",13,"Punta Salinas, Isla Huampanú e Isla Mazorca - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -988,555555604,"PER","METT",2016,"For storage only",13,"Punta Lomas - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -991,555555605,"PER","METT",2016,"For storage only",13,"Punta Hornillos - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -976,555555606,"PER","METT",2016,"For storage only",13,"Punta Colorado - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -987,555555607,"PER","METT",2016,"For storage only",13,"Punta San Juan - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -989,555555608,"PER","METT",2016,"For storage only",13,"Punta Atico - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -992,555555609,"PER","METT",2016,"For storage only",13,"Punta Coles - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -975,555555610,"PER","METT",2016,"For storage only",13,"Punta Culebras - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -990,555555611,"PER","METT",2016,"For storage only",13,"Punta La Chira - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -977,555555612,"PER","METT",2016,"For storage only",13,"Punta La Litera - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -961,555555613,"PER","METT",2016,"For storage only",13,"Illescas","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -956,555555614,"PER","METT",2016,"For storage only",13,"Ancon","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -907,555555616,"PER","METT",2016,"For storage only",13,"Gueppi Sekime","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -922,555555617,"PER","METT",2016,"For storage only",13,"Huimeki","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -917,555555618,"PER","METT",2016,"For storage only",13,"Airo Pai","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28260,555555622,"PER","METT",2013,"For storage only",28,"Vilacota Maure","Regional Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -215,555555692,"COL","AEMAPPS",2016,"For storage only",6,"Uramba Bahia Malaga","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -11064,555556045,"CHN","WHA Outlook Report",2014,"For storage only",28,"Xinjiang Tianshan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11718,555556047,"ITA","WHA Outlook Report",2014,"For storage only",28,"Mount Etna","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12103,555556048,"NAM","Birdlife IBA",2013,"For storage only",28,"Namib Sand Sea","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12101,555556048,"NAM","WHA Outlook Report",2014,"For storage only",28,"Namib Sand Sea","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13300,555556049,"TJK","WHA Outlook Report",2014,"For storage only",28,"Tajik National Park (Mountains of the Pamirs)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15047,555556053,"MLI","RAPPAM",2008,"For storage only",28,"Zone d'Intérêt Cynégétique de Tidermene-Alata","Hunting Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15029,555556061,"MLI","RAPPAM",2008,"For storage only",28,"Réserve partielle de faune du Banifing-Baoulé","Partial Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15043,555556064,"MLI","METT",2009,"For storage only",28,"Réserve totale de faune de Mandé Wula","Total Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13500,555556080,"TZA","METT",2005,"For storage only",28,"Makonde Scarp III","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13501,555556080,"TZA","METT",2006,"For storage only",28,"Makonde Scarp III","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28126,555556084,"TZA","METT",2005,"For storage only",28,"Sali","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13604,555556107,"TZA","METT",2014,"For storage only",28,"Ngezi-Vumawimbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13607,555556107,"TZA","METT",2011,"For storage only",28,"Ngezi-Vumawimbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13606,555556107,"TZA","METT",2007,"For storage only",28,"Ngezi-Vumawimbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13605,555556107,"TZA","METT",2012,"For storage only",28,"Ngezi-Vumawimbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13907,555556142,"UMI","Birdlife IBA",2012,"For storage only",28,"Johnston Atoll","National Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15394,555556870,"AUS","Birdlife IBA",2008,"For storage only",28,"Ashmore Reef","Commonwealth Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9849,555557236,"KOR","Korea SOP",2016,"For storage only",26,"Mudeungsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9955,555558234,"KOR","Korea SOP",2016,"For storage only",26,"1100 Altitute Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9899,555558236,"KOR","METT",2017,"For storage only",26,"Bogildo","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9975,555558238,"KOR","MPA MEE",2017,"For storage only",26,"Masan Bay Bongam","Wetland Protected Area - Tidal Flat","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9900,555558247,"KOR","METT",2017,"For storage only",26,"Deoguri","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9968,555558248,"KOR","Korea SOP",2016,"For storage only",26,"Dongbaekdongsan","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9907,555558250,"KOR","METT",2017,"For storage only",26,"Eulsugol","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9928,555558258,"KOR","Korea SOP",2016,"For storage only",26,"Hasi-dong Aninsagu(Dune)","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9910,555558261,"KOR","METT",2017,"For storage only",26,"Jangjaebong","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9911,555558266,"KOR","METT",2017,"For storage only",26,"Mt. Barwang","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9914,555558273,"KOR","METT",2017,"For storage only",26,"Mt. Gyeung","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9912,555558277,"KOR","METT",2017,"For storage only",26,"Mt. Yeogwi","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9967,555558279,"KOR","Korea SOP",2016,"For storage only",26,"Muljangori-oreum","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10570,555558286,"KOR","MPA MEE",2017,"For storage only",26,"Oryuk-do (island) and Neighboring Water","Marine Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9970,555558288,"KOR","Korea SOP",2016,"For storage only",26,"Sangju Gonggeomji","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9969,555558295,"KOR","Korea SOP",2016,"For storage only",26,"Ungok Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9915,555558298,"KOR","METT",2017,"For storage only",26,"Yeongsil","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9961,555558299,"KOR","Korea SOP",2016,"For storage only",26,"Hanbando Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -13234,555558303,"TCD","RAPPAM",2008,"For storage only",28,"Aouk","Hunting reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14303,555558308,"CHL","METT",2010,"For storage only",28,"Alerce Costero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14302,555558308,"CHL","METT",2004,"For storage only",28,"Alerce Costero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14304,555558308,"CHL","RAPPAM",2005,"For storage only",28,"Alerce Costero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -85,555558344,"ARG","METT",2012,"For storage only",3,"Puerto Lobos","Protected Landscape","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -37,555558356,"ARG","METT",2012,"For storage only",3,"Aves Migratorias","Provincial Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -83,555558361,"ARG","METT",2012,"For storage only",3,"Patagonia Austral","Interjurisdictional Coastal Marine Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -10,555558373,"ARE","METT",2016,"For storage only",1,"Alqurm Wa Lehfeiyah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -7,555558374,"ARE","METT",2016,"For storage only",1,"Al Wathba","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -10583,555558380,"BDI","IMET",2016,"For storage only",27,"Réserve Naturelle de la Malagarazi","Ramsar Site, Wetland of International Importance","JRC IMET information","JRC",2018,"English",FALSE -10574,555558381,"BDI","IMET",2015,"For storage only",27,"Paysage Aquatique Protégé du Nord","Ramsar Site, Wetland of International Importance","JRC IMET information","JRC",2018,"English",FALSE -10812,555558383,"BLR","METT",2011,"For storage only",28,"Morochno","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21822,555558453,"ZAF","Birdlife IBA",2013,"For storage only",28,"Umgeni Vlei Nature Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28321,555558920,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Aalsterbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -1084,555558949,"EST","METT",2010,"For storage only",15,"Peipsiveere looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -8965,555559223,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aith Meadows and Burn of Aith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8966,555559226,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southannan Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8967,555559227,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Portencross Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6666,555560492,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Banwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -4512,555560493,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Afon Llugwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7012,555560495,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cwarrau Ton Mawr a Ffynnon Taf - Ton Mawr and Taffs Wells Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7089,555560496,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fachwen Isaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7124,555560497,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glascoed, Meifod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7127,555560498,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glaswelltir Trelogan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7131,555560499,"GBR","Common Standards Monitoring",2013,"For storage only",18,"GreatTor (Three Cliffs Bay)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7253,555560500,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Maen Gwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7338,555560501,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Nant y Mwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7343,555560502,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mwyngloddfa Esgair Hir ac Esgair Fraith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7340,555560503,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Langynidr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7389,555560504,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Parc Nannau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7439,555560505,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Plumstone Mountain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6646,555560506,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tir Mawr a Dderi-hir, Llwydcoed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7569,555560507,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tyddyn Gyrfer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7589,555560508,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waun Goch - Penrhiw Cradog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7614,555560509,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ysbyty Bron y Garth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7615,555560510,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ysgeifiog Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -8968,555560514,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carlops Meltwater Channels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7617,555560534,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Caeau Nant-y-groes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6605,555561732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Castle Hill Deer Park and Windy Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6622,555561733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crich Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6627,555561734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Blackmore Vale Commons and Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6628,555561735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Eppleton Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6629,555561736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bushy Park and Home Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6630,555561737,"GBR","Common Standards Monitoring",2013,"For storage only",18,"High Marks Barn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6631,555561738,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benty Grange","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6632,555561739,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Calender Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6633,555561740,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ives Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6634,555561741,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Chattenden Woods and Lodge Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6635,555561742,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Barrow Hill and Tansey Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6636,555561743,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Holly Rock Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6639,555561744,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Waterfall Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6640,555561745,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clifton Ings and Rawcliffe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6642,555561746,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rampisham Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6647,555561747,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Birches","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6637,555561748,"GBR","Common Standards Monitoring",2013,"For storage only",18,"New Hadley Brickpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9295,555562007,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9303,555562008,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ballygalley Head","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9315,555562009,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belvoir","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9289,555562010,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Benburb - Milltown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9318,555562011,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Big Dog Scarps and Lakes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9317,555562012,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Brockagh Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9288,555562013,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carneal","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9293,555562014,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carnmore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9307,555562015,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cavan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9309,555562016,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Clermont & Anglesey Mountain","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9316,555562017,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cloghcor Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9286,555562018,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cranny Falls","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9291,555562019,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croagh Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9300,555562020,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Crockanaver","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9296,555562021,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dromore Big","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9305,555562022,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumarg","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9324,555562023,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumcully","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9290,555562024,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drummahon","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9321,555562025,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Drumowen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9323,555562026,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Frevagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9299,555562027,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gortalughany","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9308,555562028,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knock Dhu Sallagh Braes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9311,555562029,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Knockadoo Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9310,555562030,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Alaban","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9292,555562031,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Formal","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9326,555562032,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Lark","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9254,555562033,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Lough Navar Scarps and Lakes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9294,555562034,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Marlbank","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9312,555562035,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mournes Coast","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9304,555562036,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Prolusk","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9306,555562037,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Roeveagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9320,555562038,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Rushy Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9302,555562039,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Samuel's Port","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9250,555562040,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Scribbagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9253,555562041,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shane's Castle","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9319,555562042,"GBR","Common Standards Monitoring",2013,"For storage only",18,"St, John's Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9298,555562043,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Stranacally","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9325,555562044,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tircreven","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9301,555562045,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tonnagh Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9314,555562046,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Western Mournes and Kilfeaghan Upper","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9313,555562047,"GBR","Common Standards Monitoring",2013,"For storage only",18,"White Water River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9297,555562048,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Florence Court","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -28332,555563052,"BEL","Natura 2000 National Monitoring",0,"For storage only",38,"Sint-Pietersbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -21192,555563455,"ZAF","METT",2012,"For storage only",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21193,555563455,"ZAF","METT",2013,"For storage only",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21189,555563455,"ZAF","METT",2009,"For storage only",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21191,555563455,"ZAF","METT",2011,"For storage only",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21190,555563455,"ZAF","METT",2010,"For storage only",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21550,555563463,"ZAF","METT",2013,"For storage only",28,"Mokala National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21549,555563463,"ZAF","METT",2012,"For storage only",28,"Mokala National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21548,555563463,"ZAF","METT",2010,"For storage only",28,"Mokala National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21879,555563467,"ZAF","METT",2012,"For storage only",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21875,555563467,"ZAF","METT",2008,"For storage only",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21877,555563467,"ZAF","METT",2010,"For storage only",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21878,555563467,"ZAF","METT",2011,"For storage only",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21873,555563467,"ZAF","METT",2004,"For storage only",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21880,555563467,"ZAF","METT",2013,"For storage only",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21316,555563491,"ZAF","METT",2011,"For storage only",28,"Groendal Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21317,555563491,"ZAF","METT",2012,"For storage only",28,"Groendal Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21318,555563491,"ZAF","METT",2013,"For storage only",28,"Groendal Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21315,555563491,"ZAF","METT",2010,"For storage only",28,"Groendal Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21320,555563492,"ZAF","METT",2010,"For storage only",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21319,555563492,"ZAF","METT",2007,"For storage only",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21326,555563492,"ZAF","METT",2011,"For storage only",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21328,555563492,"ZAF","METT",2013,"For storage only",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21327,555563492,"ZAF","METT",2012,"For storage only",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21537,555563494,"ZAF","RAPPAM",2001,"For storage only",28,"Mkhomazi Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21901,555563500,"ZAF","METT",2010,"For storage only",28,"Wolkberg Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21905,555563500,"ZAF","METT",2013,"For storage only",28,"Wolkberg Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21903,555563500,"ZAF","METT",2011,"For storage only",28,"Wolkberg Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21904,555563500,"ZAF","METT",2012,"For storage only",28,"Wolkberg Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21126,555563501,"ZAF","METT",2011,"For storage only",28,"Anysberg Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21127,555563501,"ZAF","METT",2012,"For storage only",28,"Anysberg Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21128,555563501,"ZAF","METT",2013,"For storage only",28,"Anysberg Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21230,555563510,"ZAF","METT",2008,"For storage only",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21233,555563510,"ZAF","METT",2012,"For storage only",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21234,555563510,"ZAF","METT",2013,"For storage only",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21229,555563510,"ZAF","METT",2004,"For storage only",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21232,555563510,"ZAF","METT",2011,"For storage only",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21231,555563510,"ZAF","METT",2010,"For storage only",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21297,555563513,"ZAF","METT",2013,"For storage only",28,"Geelkrans Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21295,555563513,"ZAF","METT",2011,"For storage only",28,"Geelkrans Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21296,555563513,"ZAF","METT",2012,"For storage only",28,"Geelkrans Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21322,555563514,"ZAF","METT",2011,"For storage only",28,"Grootbosch Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21324,555563514,"ZAF","METT",2013,"For storage only",28,"Grootbosch Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21321,555563514,"ZAF","METT",2010,"For storage only",28,"Grootbosch Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21323,555563514,"ZAF","METT",2012,"For storage only",28,"Grootbosch Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21346,555563517,"ZAF","METT",2011,"For storage only",28,"Hlathikulu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21348,555563517,"ZAF","METT",2013,"For storage only",28,"Hlathikulu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21347,555563517,"ZAF","METT",2012,"For storage only",28,"Hlathikulu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21496,555563526,"ZAF","RAPPAM",2001,"For storage only",28,"Maphelane Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21512,555563527,"ZAF","METT",2012,"For storage only",28,"Marloth Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21511,555563527,"ZAF","METT",2011,"For storage only",28,"Marloth Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21513,555563527,"ZAF","METT",2013,"For storage only",28,"Marloth Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21510,555563527,"ZAF","METT",2010,"For storage only",28,"Marloth Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21162,555563589,"ZAF","METT",2012,"For storage only",28,"Bewerwyk Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21163,555563589,"ZAF","METT",2013,"For storage only",28,"Bewerwyk Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21161,555563589,"ZAF","METT",2011,"For storage only",28,"Bewerwyk Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21160,555563589,"ZAF","METT",2010,"For storage only",28,"Bewerwyk Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21212,555563641,"ZAF","RAPPAM",2001,"For storage only",28,"Coastal Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21219,555563657,"ZAF","METT",2011,"For storage only",28,"Dassen Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21220,555563657,"ZAF","METT",2012,"For storage only",28,"Dassen Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21218,555563657,"ZAF","METT",2010,"For storage only",28,"Dassen Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21221,555563657,"ZAF","METT",2013,"For storage only",28,"Dassen Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21261,555563684,"ZAF","METT",2012,"For storage only",28,"Dyer Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21259,555563684,"ZAF","METT",2010,"For storage only",28,"Dyer Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21262,555563684,"ZAF","METT",2013,"For storage only",28,"Dyer Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21260,555563684,"ZAF","METT",2011,"For storage only",28,"Dyer Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21263,555563692,"ZAF","METT",2010,"For storage only",28,"Emakhosini Heritage Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21275,555563696,"ZAF","METT",2011,"For storage only",28,"Erfenis Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21277,555563696,"ZAF","METT",2013,"For storage only",28,"Erfenis Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21274,555563696,"ZAF","METT",2010,"For storage only",28,"Erfenis Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21276,555563696,"ZAF","METT",2012,"For storage only",28,"Erfenis Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21278,555563700,"ZAF","RAPPAM",2001,"For storage only",28,"False Bay Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21281,555563706,"ZAF","METT",2012,"For storage only",28,"Formosa 203 JT","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21282,555563706,"ZAF","METT",2013,"For storage only",28,"Formosa 203 JT","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21280,555563706,"ZAF","METT",2011,"For storage only",28,"Formosa 203 JT","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21279,555563706,"ZAF","METT",2010,"For storage only",28,"Formosa 203 JT","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21298,555563720,"ZAF","RAPPAM",2001,"For storage only",28,"Giant's Castle Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21389,555563742,"ZAF","RAPPAM",2001,"For storage only",28,"Kamberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21185,555563761,"ZAF","METT",2010,"For storage only",28,"Boschkop Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21186,555563761,"ZAF","METT",2012,"For storage only",28,"Boschkop Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21187,555563761,"ZAF","METT",2013,"For storage only",28,"Boschkop Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21427,555563835,"ZAF","METT",2013,"For storage only",28,"Koppies Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21426,555563835,"ZAF","METT",2012,"For storage only",28,"Koppies Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21425,555563835,"ZAF","METT",2011,"For storage only",28,"Koppies Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21424,555563835,"ZAF","METT",2010,"For storage only",28,"Koppies Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21440,555563839,"ZAF","METT",2013,"For storage only",28,"Kruis River Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21439,555563839,"ZAF","METT",2012,"For storage only",28,"Kruis River Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21438,555563839,"ZAF","METT",2011,"For storage only",28,"Kruis River Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21437,555563839,"ZAF","METT",2010,"For storage only",28,"Kruis River Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21451,555563846,"ZAF","METT",2013,"For storage only",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21449,555563846,"ZAF","METT",2011,"For storage only",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21448,555563846,"ZAF","METT",2005,"For storage only",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21164,555563846,"ZAF","Birdlife IBA",2013,"For storage only",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21450,555563846,"ZAF","METT",2012,"For storage only",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21456,555563852,"ZAF","METT",2010,"For storage only",28,"Leeuwfontein Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21459,555563852,"ZAF","METT",2013,"For storage only",28,"Leeuwfontein Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21457,555563852,"ZAF","METT",2012,"For storage only",28,"Leeuwfontein Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21458,555563852,"ZAF","METT",2011,"For storage only",28,"Leeuwfontein Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21200,555563860,"ZAF","Birdlife IBA",2013,"For storage only",28,"Karoo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21461,555563891,"ZAF","METT",2010,"For storage only",28,"Letaba Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21464,555563891,"ZAF","METT",2013,"For storage only",28,"Letaba Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21462,555563891,"ZAF","METT",2011,"For storage only",28,"Letaba Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21463,555563891,"ZAF","METT",2012,"For storage only",28,"Letaba Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21469,555563898,"ZAF","RAPPAM",2001,"For storage only",28,"Loteni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21491,555563911,"ZAF","METT",2013,"For storage only",28,"Mantrombi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21489,555563911,"ZAF","METT",2011,"For storage only",28,"Mantrombi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21490,555563911,"ZAF","METT",2012,"For storage only",28,"Mantrombi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21488,555563911,"ZAF","METT",2010,"For storage only",28,"Mantrombi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21505,555563913,"ZAF","METT",2012,"For storage only",28,"Maria Moroka National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21506,555563913,"ZAF","METT",2013,"For storage only",28,"Maria Moroka National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21503,555563913,"ZAF","METT",2010,"For storage only",28,"Maria Moroka National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21504,555563913,"ZAF","METT",2011,"For storage only",28,"Maria Moroka National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21543,555563944,"ZAF","Birdlife IBA",2006,"For storage only",28,"Mkuzi Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21542,555563944,"ZAF","RAPPAM",2001,"For storage only",28,"Mkuzi Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21552,555563945,"ZAF","METT",2011,"For storage only",28,"Moletzie Bird Sanctuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21554,555563945,"ZAF","METT",2013,"For storage only",28,"Moletzie Bird Sanctuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21551,555563945,"ZAF","METT",2010,"For storage only",28,"Moletzie Bird Sanctuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21553,555563945,"ZAF","METT",2012,"For storage only",28,"Moletzie Bird Sanctuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21570,555563951,"ZAF","METT",2010,"For storage only",28,"Nababiep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21706,555563964,"ZAF","RAPPAM",2001,"For storage only",28,"Natal National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21582,555563966,"ZAF","METT",2010,"For storage only",28,"Nduli Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21581,555563966,"ZAF","METT",2013,"For storage only",28,"Nduli Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21579,555563966,"ZAF","METT",2011,"For storage only",28,"Nduli Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21580,555563966,"ZAF","METT",2012,"For storage only",28,"Nduli Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21591,555563973,"ZAF","METT",2010,"For storage only",28,"Ngoya Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21624,555563973,"ZAF","Birdlife IBA",2009,"For storage only",28,"Ngoya Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21592,555563973,"ZAF","RAPPAM",2001,"For storage only",28,"Ngoya Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21590,555563973,"ZAF","METT",2003,"For storage only",28,"Ngoya Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21661,555564003,"ZAF","METT",2010,"For storage only",28,"Potlake Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21662,555564003,"ZAF","METT",2011,"For storage only",28,"Potlake Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21663,555564003,"ZAF","METT",2012,"For storage only",28,"Potlake Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21664,555564003,"ZAF","METT",2013,"For storage only",28,"Potlake Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21683,555564015,"ZAF","Birdlife IBA",2013,"For storage only",28,"Rietvlei Nature Area","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21707,555564026,"ZAF","RAPPAM",2001,"For storage only",28,"Rugged Glen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21729,555564037,"ZAF","METT",2013,"For storage only",28,"Seekoeivlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21728,555564037,"ZAF","METT",2012,"For storage only",28,"Seekoeivlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21727,555564037,"ZAF","METT",2011,"For storage only",28,"Seekoeivlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21740,555564045,"ZAF","RAPPAM",2001,"For storage only",28,"Sodwana Bay National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21845,555564106,"ZAF","RAPPAM",2001,"For storage only",28,"Vergelegen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12267,555564462,"NZL","Birdlife IBA",2010,"For storage only",28,"Campbell Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9417,555566907,"GEO","METT",2017,"For storage only",20,"Asa","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9416,555566907,"GEO","METT",2015,"For storage only",20,"Asa","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9434,555566912,"GEO","METT",2015,"For storage only",20,"Dashbashi Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9435,555566912,"GEO","METT",2017,"For storage only",20,"Dashbashi Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9533,555566917,"GEO","METT",2017,"For storage only",20,"Goderdzi Petrified Forest","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9483,555566918,"GEO","RAPPAM",2009,"For storage only",20,"Iazoni Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9429,555566920,"GEO","METT",2017,"For storage only",20,"Jvary Pass Travertine","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9428,555566920,"GEO","METT",2015,"For storage only",20,"Jvary Pass Travertine","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9426,555566921,"GEO","METT",2015,"For storage only",20,"Keterisi Mineral Vocluse","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9427,555566921,"GEO","METT",2017,"For storage only",20,"Keterisi Mineral Vocluse","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9482,555566925,"GEO","RAPPAM",2009,"For storage only",20,"Nagarevi Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9481,555566926,"GEO","RAPPAM",2009,"For storage only",20,"Navenakhevi Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9487,555566929,"GEO","RAPPAM",2009,"For storage only",20,"Okatse Waterfall","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9412,555566931,"GEO","METT",2015,"For storage only",20,"Pshav-Khevsureti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9413,555566931,"GEO","METT",2017,"For storage only",20,"Pshav-Khevsureti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9415,555566933,"GEO","METT",2017,"For storage only",20,"Roshka","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9414,555566933,"GEO","METT",2015,"For storage only",20,"Roshka","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9484,555566934,"GEO","RAPPAM",2009,"For storage only",20,"Sakajia Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9437,555566935,"GEO","METT",2017,"For storage only",20,"Samshvilde Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9436,555566935,"GEO","METT",2015,"For storage only",20,"Samshvilde Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9478,555566938,"GEO","RAPPAM",2009,"For storage only",20,"Tetri mgvime Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9480,555566940,"GEO","RAPPAM",2009,"For storage only",20,"Tsutskvati Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -21975,555566941,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Sable Island National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -12244,555569933,"NPL","Birdlife IBA",2004,"For storage only",28,"Rara - Buffer Zone","National Park - Buffer Zone","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20796,555571013,"MDG","IEG",2016,"For storage only",34,"Complexe des lacs Ambondro et Sirave (CLAS)","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -12066,555571168,"MUS","METT",2009,"For storage only",28,"Les Mares","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12063,555571172,"MUS","METT",2009,"For storage only",28,"Ile D'Ambre","Islet National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12057,555571180,"MUS","METT",2009,"For storage only",28,"Bras D'Eau National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20848,555571187,"IDN","METT",2015,"For storage only",35,"Air Alas","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21036,555571191,"IDN","METT",2015,"For storage only",35,"Air Rami I","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20849,555571195,"IDN","METT",2015,"For storage only",35,"Air Seblat","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20916,555571196,"IDN","METT",2015,"For storage only",35,"Pasar Ngalam Reg 92","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20917,555571197,"IDN","METT",2015,"For storage only",35,"Pasar Talo Reg 94","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21076,555571198,"IDN","METT",2015,"For storage only",35,"Pantai Panjang dan P. Baai","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20897,555571199,"IDN","METT",2015,"For storage only",35,"Martelu Purba","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21070,555571201,"IDN","METT",2015,"For storage only",35,"Lubuk Tapi Kayu Ajaran","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21079,555571202,"IDN","METT",2015,"For storage only",35,"Bukit Serelo","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20851,555571207,"IDN","METT",2015,"For storage only",35,"Batang Pangean II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20854,555571208,"IDN","METT",2015,"For storage only",35,"Bukit Bungkuk","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20947,555571211,"IDN","METT",2015,"For storage only",35,"Balai Raja","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21093,555571212,"IDN","METT",2015,"For storage only",35,"Sungai Dumai","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20878,555571219,"IDN","METT",2015,"For storage only",35,"Gunung Tangkuban Parahu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20885,555571220,"IDN","METT",2015,"For storage only",35,"Junghun","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20883,555571223,"IDN","METT",2015,"For storage only",35,"Imogiri","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20969,555571224,"IDN","METT",2015,"For storage only",35,"Paliyan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20976,555571225,"IDN","METT",2015,"For storage only",35,"Sermo","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21013,555571227,"IDN","METT",2015,"For storage only",35,"Gunung Merapi","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21053,555571228,"IDN","METT",2015,"For storage only",35,"Gunung Batur Bukit Payang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21048,555571234,"IDN","METT",2015,"For storage only",35,"Danau Rawa Taliwang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20891,555571239,"IDN","METT",2015,"For storage only",35,"Kembang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21037,555571243,"IDN","METT",2015,"For storage only",35,"Angke Kapuk","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20945,555571244,"IDN","METT",2015,"For storage only",35,"Wolo Tadho","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20943,555571249,"IDN","METT",2015,"For storage only",35,"Watu Ata","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21021,555571253,"IDN","METT",2015,"For storage only",35,"Laiwangi Wanggameti","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20855,555571256,"IDN","METT",2015,"For storage only",35,"Cabak I/II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20914,555571258,"IDN","METT",2015,"For storage only",35,"Pantodomas","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20991,555571260,"IDN","METT",2015,"For storage only",35,"KGPAA Mangkunegoro I","Grand Forest Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21094,555571271,"IDN","METT",2015,"For storage only",35,"Sungai Liku","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21097,555571272,"IDN","METT",2015,"For storage only",35,"Tanjung Belimbing","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21081,555571273,"IDN","METT",2015,"For storage only",35,"Pulau Pasoso","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20910,555571275,"IDN","METT",2015,"For storage only",35,"Pamona","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20979,555571278,"IDN","METT",2015,"For storage only",35,"Tanjung Batikolo","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20872,555571285,"IDN","METT",2015,"For storage only",35,"Gunung Dako","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20880,555571286,"IDN","METT",2015,"For storage only",35,"Tinombala","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20981,555571287,"IDN","METT",2015,"For storage only",35,"Tanjung Santigi","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20936,555571296,"IDN","METT",2015,"For storage only",35,"Tanjung Wiay","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21099,555571299,"IDN","METT",2015,"For storage only",35,"Tanjung Tampa","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21060,555571300,"IDN","METT",2015,"For storage only",35,"Gunung Tunak","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20862,555571301,"IDN","METT",2015,"For storage only",35,"Durian Luncuk I, II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -20933,555571304,"IDN","METT",2015,"For storage only",35,"Talang Ulu I, II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -11916,555571315,"MAR","GOBI Survey",2006,"For storage only",28,"Réserve de Biosphère des Oasis du Sud Marocain","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9853,555571321,"KOR","Korea SOP",2016,"For storage only",26,"Myeongjisan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9854,555571322,"KOR","Korea SOP",2016,"For storage only",26,"Hogusan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9865,555571323,"KOR","Korea SOP",2016,"For storage only",26,"Bangeosan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9860,555571324,"KOR","Korea SOP",2016,"For storage only",26,"Ipgok County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9867,555571326,"KOR","Korea SOP",2016,"For storage only",26,"Sinbulsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9868,555571327,"KOR","Korea SOP",2016,"For storage only",26,"Hwawangsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9869,555571328,"KOR","Korea SOP",2016,"For storage only",26,"Gangcheonsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9870,555571329,"KOR","Korea SOP",2016,"For storage only",26,"Geoyeolsanseong County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9871,555571331,"KOR","Korea SOP",2016,"For storage only",26,"Daeiri County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9872,555571332,"KOR","Korea SOP",2016,"For storage only",26,"Wolseonggyegok County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9873,555571333,"KOR","Korea SOP",2016,"For storage only",26,"Jangansan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9855,555571335,"KOR","Korea SOP",2016,"For storage only",26,"Sangjogam County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9856,555571336,"KOR","Korea SOP",2016,"For storage only",26,"Bongmyeongsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9857,555571337,"KOR","Korea SOP",2016,"For storage only",26,"Hwangmaesan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9858,555571338,"KOR","Korea SOP",2016,"For storage only",26,"Bogyeongsa County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9859,555571339,"KOR","Korea SOP",2016,"For storage only",26,"Bullyeonggyegok County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9861,555571340,"KOR","Korea SOP",2016,"For storage only",26,"Deokguoncheon County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9862,555571341,"KOR","Korea SOP",2016,"For storage only",26,"Gososeong County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9863,555571342,"KOR","Korea SOP",2016,"For storage only",26,"Ungseokbong County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9864,555571343,"KOR","Korea SOP",2016,"For storage only",26,"Unmunsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9866,555571346,"KOR","Korea SOP",2016,"For storage only",26,"Amisan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9890,555571349,"KOR","Korea SOP",2016,"For storage only",26,"Gajisan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9891,555571350,"KOR","Korea SOP",2016,"For storage only",26,"Gyoungpo","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9892,555571351,"KOR","Korea SOP",2016,"For storage only",26,"Geumosan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9878,555571354,"KOR","Korea SOP",2016,"For storage only",26,"Daedunsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9879,555571355,"KOR","Korea SOP",2016,"For storage only",26,"Deoksan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9880,555571357,"KOR","Korea SOP",2016,"For storage only",26,"Mara Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9881,555571358,"KOR","Korea SOP",2016,"For storage only",26,"Maisan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9882,555571359,"KOR","Korea SOP",2016,"For storage only",26,"Moaksan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9883,555571360,"KOR","Korea SOP",2016,"For storage only",26,"Mungyeongsaejae","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9884,555571361,"KOR","Korea SOP",2016,"For storage only",26,"Seogwipo Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9885,555571362,"KOR","Korea SOP",2016,"For storage only",26,"Seonunsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9886,555571363,"KOR","Korea SOP",2016,"For storage only",26,"Seongsanilchul Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9875,555571365,"KOR","Korea SOP",2016,"For storage only",26,"Yeonhwasan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9876,555571366,"KOR","Korea SOP",2016,"For storage only",26,"Woodo Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9877,555571367,"KOR","Korea SOP",2016,"For storage only",26,"Jogyesan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9893,555571368,"KOR","Korea SOP",2016,"For storage only",26,"Cheongwansan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9894,555571369,"KOR","Korea SOP",2016,"For storage only",26,"Cheongnyangsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9887,555571370,"KOR","Korea SOP",2016,"For storage only",26,"Chuja Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9888,555571371,"KOR","Korea SOP",2016,"For storage only",26,"Chilgapsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9889,555571373,"KOR","Korea SOP",2016,"For storage only",26,"Palgongsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -121,555576122,"BTN","Bhutan METT+",2016,"For storage only",4,"Wangchuck Centennial","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English",FALSE -11896,555576134,"LBN","Birdlife IBA",1994,"For storage only",28,"Al Shouf Cedars Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -510,555576157,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Furna Feia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -672,555576157,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Furna Feia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -422,555576206,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Do Rio Negro","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -832,555576210,"BRA","SAMGe",2016,"For storage only",9,"Refúgio De Vida Silvestre De Santa Cruz","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -472,555576210,"BRA","RAPPAM",2015,"For storage only",9,"Refúgio De Vida Silvestre De Santa Cruz","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -511,555576236,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Igapó-Açu","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -663,555576252,"BRA","SAMGe",2016,"For storage only",9,"MONA das Ilhas Cagarras","Monumento Natural","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -376,555576266,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Do Alto Cariri","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -706,555576266,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Do Alto Cariri","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -432,555576283,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Canutama","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -512,555576325,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Marinho Das Ilhas Dos Currais","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -513,555576334,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Biológica Bom Jesus","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -741,555576334,"BRA","SAMGe",2016,"For storage only",9,"Reserva Biológica Bom Jesus","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -702,555576352,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Da Serra Das Lontras","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -514,555576352,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Da Serra Das Lontras","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -831,555576384,"BRA","SAMGe",2016,"For storage only",9,"REVIS de Boa Nova","Refúgio de Vida Silvestre","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -348,555576433,"BRA","RAPPAM",2015,"For storage only",9,"Parque Estadual Do Matupiri","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -444,555576438,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Do Rio Gregório","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -524,555576473,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Costa Das Algas","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -243,555576473,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Costa Das Algas","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -421,555576482,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Do Matupiri","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -13974,555576494,"VCT","RAPPAM",2006,"For storage only",28,"Dalaway","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13976,555576495,"VCT","RAPPAM",2006,"For storage only",28,"Kingstown","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13977,555576503,"VCT","RAPPAM",2006,"For storage only",28,"Richmond","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13978,555576504,"VCT","RAPPAM",2006,"For storage only",28,"Soufriere","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12010,555576523,"MNG","RAPPAM",2005,"For storage only",28,"Xugnu Tarna","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12027,555576529,"MNG","RAPPAM",2005,"For storage only",28,"Tujiin Nars","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12014,555576544,"MNG","RAPPAM",2005,"For storage only",28,"Myangan-Ugalzat","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15328,555576608,"AUS","NSW SOP",2013,"For storage only",28,"Adelyne","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15424,555576617,"AUS","NSW SOP",2013,"For storage only",28,"Back Arm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15457,555576619,"AUS","NSW SOP",2013,"For storage only",28,"Balowra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15476,555576620,"AUS","NSW SOP",2013,"For storage only",28,"Bango","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15548,555576624,"AUS","NSW SOP",2013,"For storage only",28,"Barwon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15549,555576625,"AUS","NSW SOP",2013,"For storage only",28,"Barwon","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15569,555576628,"AUS","NSW SOP",2013,"For storage only",28,"Bedooba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15597,555576629,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15624,555576630,"AUS","NSW SOP",2013,"For storage only",28,"Bendick Murrell","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15656,555576632,"AUS","NSW SOP",2013,"For storage only",28,"Berowra Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15938,555576645,"AUS","NSW SOP",2013,"For storage only",28,"Brigalow","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16011,555576646,"AUS","NSW SOP",2013,"For storage only",28,"Bubalahla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16148,555576651,"AUS","NSW SOP",2013,"For storage only",28,"Burwood Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16253,555576655,"AUS","NSW SOP",2013,"For storage only",28,"Carrabear","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16382,555576658,"AUS","NSW SOP",2013,"For storage only",28,"Cobbora","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16408,555576662,"AUS","NSW SOP",2013,"For storage only",28,"Columbey","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16414,555576663,"AUS","NSW SOP",2013,"For storage only",28,"Combaning","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16454,555576665,"AUS","NSW SOP",2013,"For storage only",28,"Cookbundoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16465,555576666,"AUS","NSW SOP",2013,"For storage only",28,"Cooleburba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16526,555576669,"AUS","NSW SOP",2013,"For storage only",28,"Corramy","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16578,555576672,"AUS","NSW SOP",2013,"For storage only",28,"Crooked Creek","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16740,555576680,"AUS","NSW SOP",2013,"For storage only",28,"Dharawal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16776,555576683,"AUS","NSW SOP",2013,"For storage only",28,"Doodle Comer Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16894,555576691,"AUS","NSW SOP",2013,"For storage only",28,"Euston","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17006,555576696,"AUS","NSW SOP",2013,"For storage only",28,"Gandangara","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17066,555576697,"AUS","NSW SOP",2013,"For storage only",28,"Gillindich","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17067,555576698,"AUS","NSW SOP",2013,"For storage only",28,"Gilwarny","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17068,555576699,"AUS","NSW SOP",2013,"For storage only",28,"Ginghet","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17264,555576711,"AUS","NSW SOP",2013,"For storage only",28,"Gwydir Wetlands","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17319,555576713,"AUS","NSW SOP",2004,"For storage only",28,"Hexham Swamp","NRS Addition - Gazettal in Progress","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17317,555576713,"AUS","NSW SOP",2005,"For storage only",28,"Hexham Swamp","NRS Addition - Gazettal in Progress","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17318,555576713,"AUS","NSW SOP",2007,"For storage only",28,"Hexham Swamp","NRS Addition - Gazettal in Progress","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17325,555576715,"AUS","NSW SOP",2013,"For storage only",28,"Hobden Hill","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17490,555576719,"AUS","NSW SOP",2013,"For storage only",28,"Jimberoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17491,555576720,"AUS","NSW SOP",2013,"For storage only",28,"Jinangong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17492,555576721,"AUS","NSW SOP",2013,"For storage only",28,"Jindalee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17594,555576727,"AUS","NSW SOP",2013,"For storage only",28,"Kemendok","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17606,555576730,"AUS","NSW SOP",2013,"For storage only",28,"Kerrawary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17609,555576731,"AUS","NSW SOP",2013,"For storage only",28,"Keverstone","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17772,555576738,"AUS","NSW SOP",2013,"For storage only",28,"Lachlan Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17773,555576739,"AUS","NSW SOP",2013,"For storage only",28,"Lachlan Valley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17774,555576740,"AUS","NSW SOP",2013,"For storage only",28,"Lachlan Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17775,555576741,"AUS","NSW SOP",2013,"For storage only",28,"Lachlan Valley","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17885,555576747,"AUS","NSW SOP",2013,"For storage only",28,"Limeburners Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18002,555576755,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18024,555576757,"AUS","NSW SOP",2013,"For storage only",28,"Malabar Headland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18060,555576759,"AUS","NSW SOP",2013,"For storage only",28,"Mares Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18098,555576763,"AUS","NSW SOP",2013,"For storage only",28,"Mcleods Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18337,555576778,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18497,555576782,"AUS","NSW SOP",2013,"For storage only",28,"Mugii Murum-ban","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18549,555576783,"AUS","NSW SOP",2013,"For storage only",28,"Mungo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18577,555576785,"AUS","NSW SOP",2013,"For storage only",28,"Murray Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18578,555576786,"AUS","NSW SOP",2013,"For storage only",28,"Murray Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18581,555576787,"AUS","NSW SOP",2013,"For storage only",28,"Murrumbidgee Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18583,555576788,"AUS","NSW SOP",2013,"For storage only",28,"Yanga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18585,555576789,"AUS","NSW SOP",2013,"For storage only",28,"Murrumbidgee Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18580,555576790,"AUS","NSW SOP",2013,"For storage only",28,"Yanga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18655,555576796,"AUS","NSW SOP",2013,"For storage only",28,"Narrangarril","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18789,555576803,"AUS","NSW SOP",2013,"For storage only",28,"Nuggetty","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18832,555576805,"AUS","NSW SOP",2013,"For storage only",28,"Oakdale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18863,555576809,"AUS","NSW SOP",2013,"For storage only",28,"Paddington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18978,555576818,"AUS","NSW SOP",2013,"For storage only",28,"Pomaderris","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19122,555576822,"AUS","NSW SOP",2013,"For storage only",28,"Rocky Glen","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19168,555576825,"AUS","NSW SOP",2013,"For storage only",28,"Sappa Bulga","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19200,555576830,"AUS","NSW SOP",2013,"For storage only",28,"Sea Acres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19217,555576832,"AUS","NSW SOP",2013,"For storage only",28,"Serpentine Ridge","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19291,555576834,"AUS","NSW SOP",2013,"For storage only",28,"South West Woodland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19457,555576844,"AUS","NSW SOP",2013,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19532,555576850,"AUS","NSW SOP",2013,"For storage only",28,"Tingha Plateau","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19580,555576851,"AUS","NSW SOP",2010,"For storage only",28,"Toorale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19581,555576851,"AUS","NSW SOP",2013,"For storage only",28,"Toorale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19582,555576852,"AUS","NSW SOP",2013,"For storage only",28,"Toorale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19690,555576854,"AUS","NSW SOP",2013,"For storage only",28,"Ukerbarley","NRS Addition - Gazettal in Progress","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19748,555576898,"AUS","NSW SOP",2013,"For storage only",28,"Wallabadah","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19864,555576908,"AUS","NSW SOP",2013,"For storage only",28,"Watsons Creek","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -19992,555576916,"AUS","NSW SOP",2013,"For storage only",28,"Wingadee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20071,555576920,"AUS","NSW SOP",2013,"For storage only",28,"Woodsreef","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20242,555576927,"AUS","NSW SOP",2013,"For storage only",28,"Yerranderie","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20258,555576928,"AUS","NSW SOP",2013,"For storage only",28,"Young","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -16442,555577030,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17753,555577147,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Kutini-Payamu (Iron Range) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -17980,555577173,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Ma'alpiku Island (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18051,555577184,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mapleton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18183,555577198,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Mitirinchi Island (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18640,555577221,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18706,555577231,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Ngalba Bulal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -18862,555577244,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Oyala Thumotang (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20128,555577371,"AUS","Qld Rapid Assessment",2012,"For storage only",28,"Wuthara Island (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28040,555577540,"ARG","METT",2003,"For storage only",28,"El Nogalar de Los Toldos","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14299,555577555,"BWA","WHA Outlook Report",2014,"For storage only",28,"Okavango Delta","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11479,555577556,"DNK","WHA Outlook Report",2014,"For storage only",28,"Stevns Klint","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15098,555577558,"PHL","WHA Outlook Report",2014,"For storage only",28,"Mount Hamiguitan Range Wildlife Sanctuary","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14199,555577559,"VNM","WHA Outlook Report",2014,"For storage only",28,"Trang An Landscape Complex","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11331,555577570,"DJI","METT",2009,"For storage only",28,"Haramous","Area protected for habitat and species","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11683,555577755,"IRL","Birdlife IBA",2009,"For storage only",28,"Inishtrahull SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15013,555577784,"LUX","Birdlife IBA",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9656,555577794,"POL","Birdlife IBA",2010,"For storage only",23,"Góry Izerskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9657,555577795,"POL","Birdlife IBA",2010,"For storage only",23,"Sudety Walbrzysko-Kamiennogórskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9689,555577796,"POL","Birdlife IBA",2010,"For storage only",23,"Doliny Przysowy i Sludwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9710,555577797,"POL","Birdlife IBA",2010,"For storage only",23,"Bagno Pulwy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -9788,555577798,"POL","Birdlife IBA",1994,"For storage only",23,"Pieniny","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English",FALSE -12609,555577799,"PRT","Birdlife IBA",2005,"For storage only",28,"Montesinho / Nogueira","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -2312,555577866,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mersey Narrows and North Wirral Foreshore","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2321,555577867,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Upper Nene Valley Gravel Pits","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2328,555577868,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Affric to Strathconon","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2329,555577869,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Jura, Scarba and the Garvellachs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2330,555577870,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Moidart and Ardgour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2331,555577871,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Foinaven","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2332,555577872,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glen Etive and Glen Fyne","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2333,555577873,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cairngorms Massif","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -15014,555578875,"LUX","Birdlife IBA",2009,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -12647,555578953,"ROU","RAPPAM",2006,"For storage only",28,"Lacul Sarat - Braila","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -1431,555579241,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Sound Of Barra","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2057,555579242,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Dogger Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1633,555579243,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Mingulay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1635,555579244,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Arun Valley","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1636,555579245,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pevensey Levels","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1672,555579246,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hamford Water","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1673,555579247,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tankerton Slopes And Swalecliffe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1674,555579248,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pisces Reef Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1675,555579249,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Wight-Barfleur Reef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1676,555579250,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Croker Carbonate Slabs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1677,555579251,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Studland To Portland","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1678,555579252,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Skerries And Causeway","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2021,555579253,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Maidens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2024,555579254,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pobie Bank Reef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2026,555579255,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Solan Bank Reef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2030,555579256,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Anton Dohrn Seamount","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2034,555579257,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Hatton Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2042,555579258,"GBR","Common Standards Monitoring",2013,"For storage only",18,"East Rockall Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -21240,555579267,"ZAF","METT",2013,"For storage only",28,"Doornkloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21238,555579267,"ZAF","METT",2011,"For storage only",28,"Doornkloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21239,555579267,"ZAF","METT",2012,"For storage only",28,"Doornkloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21237,555579267,"ZAF","METT",2010,"For storage only",28,"Doornkloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21131,555579295,"ZAF","METT",2011,"For storage only",28,"Atherstone Protected Natural Environment","Protected Environment","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21132,555579295,"ZAF","METT",2012,"For storage only",28,"Atherstone Protected Natural Environment","Protected Environment","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21133,555579295,"ZAF","METT",2013,"For storage only",28,"Atherstone Protected Natural Environment","Protected Environment","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21446,555579296,"ZAF","Birdlife IBA",1998,"For storage only",28,"Lake Sibayi Fresh Water Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -21819,555579297,"ZAF","RAPPAM",2001,"For storage only",28,"Umfolozi Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22190,555579805,"SWE","Birdlife IBA",2007,"For storage only",28,"Holmöarna","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -29191,555579842,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Dyle de Wavre à Archennes","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29114,555579843,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Forêt de Bon-Secours","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29118,555579844,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Forêts de Rance","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29192,555579845,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Dyle en aval d'Archennes","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29203,555579846,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Lasne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29079,555579847,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bord nord du bassin de la Haine","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29198,555579848,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Helle","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29211,555579849,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Meuse à Huy et vallon de la Solières","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29204,555579850,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Lembrée et affluents","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29069,555579851,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois de Colfontaine","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29076,555579852,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois de Vieux Sart et de Montbliart","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29290,555579853,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées du Hoyoux et du Triffoy","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29275,555579854,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Wayai et affluents","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29077,555579855,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois d'Enghien et de Silly","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29078,555579856,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois Massart et forêts de Sivry-Rance","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29260,555579857,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Piéton","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29188,555579858,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Burdinale","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29225,555579859,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Soor","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29238,555579860,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Aubrecheuil","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29028,555579861,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Basse vallée de la Lienne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29244,555579862,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Olefbach","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29234,555579863,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Amblève de Chêneu au Pont de Targnon","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29092,555579864,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Camp militaire d'Elsenborn","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29283,555579865,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées de la Warche et du Bayehon en aval du barrage de Robertville","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29200,555579866,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Holzwarche","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29106,555579867,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fagnes de la Polleur et de Malmedy","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29172,555579868,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Plateau des Hautes-Fagnes","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29241,555579869,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Emmels","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29104,555579870,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fagne de la Gotale et affluents du Ruisseau de Chavanne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29259,555579871,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Medemberbach","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29236,555579872,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Amblève entre Montenau et Baugné","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29124,555579873,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute vallée de la Lienne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29278,555579874,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée inférieure de l'Our et ses affluents","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29276,555579875,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée et affluents du Braunlauf","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29252,555579876,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Ulf","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29237,555579877,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Amblève entre Wanne et Coo","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29159,555579878,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Mardelles d'Arbrefontaine et vallons fangeux de Fosse","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29277,555579879,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée et affluents du Néblon","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29025,555579880,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Affluents de l'Our entre Setz et Schoenberg","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29177,555579881,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Sources de la Lienne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29117,555579882,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Forêts de Muno","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29057,555579883,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin inférieur de l'Ourthe occidentale","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29135,555579884,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute-Wamme et Masblette","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29115,555579885,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Forêt de Freyr","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29070,555579886,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois de Famenne à Humain et Aye","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29040,555579887,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Lomme de Poix-Saint-Hubert à Grupont","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29183,555579888,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Sûre frontalière","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29035,555579889,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Basse-Vierre","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29119,555579890,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Forêts et lac de Bambois","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29065,555579891,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois calcaires de Nettinne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29113,555579892,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Forêt d'Anlier","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29090,555579893,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Camp militaire de Lagland","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29071,555579894,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois de Famenne à Waillet","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29046,555579895,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Semois du Maka à Bouillon","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29269,555579896,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau de Rebais","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29270,555579897,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau de Saint-Jean","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29053,555579898,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin du Ruisseau du Ru au Moulin","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -10763,555579908,"BGR","Birdlife IBA",2007,"For storage only",28,"Atanasovsko ezero","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11322,555579916,"CYP","Birdlife IBA",2013,"For storage only",28,"Limni Paralimniou","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11329,555579917,"CYP","Birdlife IBA",2013,"For storage only",28,"Vouni Panagias","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11312,555579919,"CYP","Birdlife IBA",2013,"For storage only",28,"Faros Kato Pafou","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11327,555579920,"CYP","Birdlife IBA",2013,"For storage only",28,"Ethniko Dasiko Parko Troodous","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11316,555579922,"CYP","Birdlife IBA",2013,"For storage only",28,"Alykes Larnakas","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22127,555579972,"FIN","Birdlife IBA",2010,"For storage only",28,"Rumala - Kuvaja - Oudonrimmet","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22152,555579974,"FIN","Birdlife IBA",2010,"For storage only",28,"Talaskankaan alue","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22022,555579975,"FIN","Birdlife IBA",2010,"For storage only",28,"Käsivarren Erämaa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22102,555579976,"FIN","Birdlife IBA",2010,"For storage only",28,"Pallas-Ounastunturi","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22062,555579978,"FIN","Birdlife IBA",2010,"For storage only",28,"Lemmenjoen Kansallispuisto","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22051,555579982,"FIN","Birdlife IBA",2010,"For storage only",28,"Perämeren saaret","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22016,555580005,"FIN","Birdlife IBA",2010,"For storage only",28,"Joutsenaapa - Kaita-aapa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22177,555580008,"FIN","Birdlife IBA",2010,"For storage only",28,"Veittiaapa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22076,555580009,"FIN","Birdlife IBA",2010,"For storage only",28,"Martimoaapa-Lumiaapa-Penikat","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22138,555580012,"FIN","Birdlife IBA",2010,"For storage only",28,"Uk-Puisto-Sompio-Kemihaara","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22035,555580015,"FIN","Birdlife IBA",2010,"For storage only",28,"Kilsiaapa-Ristivuoma","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22156,555580017,"FIN","Birdlife IBA",2010,"For storage only",28,"Pajukari-Uksei-Alkunkarinlahti","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22031,555580021,"FIN","Birdlife IBA",2010,"For storage only",28,"Kevo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22045,555580025,"FIN","Birdlife IBA",2010,"For storage only",28,"Koijärvi","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22081,555580035,"FIN","Birdlife IBA",2010,"For storage only",28,"Nuuksio","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22161,555580083,"FIN","Birdlife IBA",2010,"For storage only",28,"Torronsuo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22013,555580090,"FIN","Birdlife IBA",2010,"For storage only",28,"Itäisen Suomenlahden saaristo ja vedet","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22134,555580138,"FIN","Birdlife IBA",2010,"For storage only",28,"Ruunaa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22130,555580210,"FIN","Birdlife IBA",2010,"For storage only",28,"Rummelön-Harrbådan","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22171,555580235,"FIN","Birdlife IBA",2010,"For storage only",28,"Valtavaara - Pyhävaara","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22043,555580242,"FIN","Birdlife IBA",2010,"For storage only",28,"Kitka","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22095,555580244,"FIN","Birdlife IBA",2010,"For storage only",28,"Oulanka","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22068,555580263,"FIN","Birdlife IBA",2010,"For storage only",28,"Litokaira","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22019,555580285,"FIN","Birdlife IBA",2010,"For storage only",28,"Juortanansalon alue","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -22004,555580286,"FIN","Birdlife IBA",2010,"For storage only",28,"Elimyssalon alue","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -15053,555580324,"MLT","Birdlife IBA",2013,"For storage only",28,"L-Inhawi tar-Ramla tat-Torri u tal-Irdum tal-Madonna","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11459,555580326,"DNK","Birdlife IBA",2006,"For storage only",28,"Saltholm og omliggende hav","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11360,555580327,"DNK","Birdlife IBA",2006,"For storage only",28,"Ertholmene","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11470,555580328,"DNK","Birdlife IBA",2006,"For storage only",28,"Rinkenæs Skov, Dyrehaven og Rode Skov","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11345,555580331,"DNK","Birdlife IBA",2006,"For storage only",28,"Almindingen, Ølene og Paradisbakkerne","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11384,555580332,"DNK","Birdlife IBA",2006,"For storage only",28,"Hostrup Sø, Assenholm Mose og Felsted Vestermark","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11436,555580334,"DNK","Birdlife IBA",2010,"For storage only",28,"Odense Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11393,555580335,"DNK","Birdlife IBA",2006,"For storage only",28,"Klinteskoven","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11374,555580336,"DNK","Birdlife IBA",2007,"For storage only",28,"Hedeområder ved Store Råbjerg","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11488,555580338,"DNK","Birdlife IBA",2006,"For storage only",28,"Uldum Kær, Tørring Kær og Ølholm Kær","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11498,555580339,"DNK","Birdlife IBA",2006,"For storage only",28,"Vejen Mose","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11372,555580341,"DNK","Birdlife IBA",2010,"For storage only",28,"S+©nder Feldborg Plantage","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11500,555580342,"DNK","Birdlife IBA",2010,"For storage only",28,"Venø, Venø Sund","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11356,555580344,"DNK","Birdlife IBA",2006,"For storage only",28,"Dråby Vig","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11416,555580345,"DNK","Birdlife IBA",2010,"For storage only",28,"Mågerodde og Karby Odde","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11496,555580346,"DNK","Birdlife IBA",2010,"For storage only",28,"Vangså Hede","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -11342,555580347,"DNK","Birdlife IBA",2010,"For storage only",28,"Ålvand Klithede og Førby Sø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14850,555582978,"HND","METT",2008,"For storage only",28,"Guanaja 2","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14851,555582978,"HND","METT",2012,"For storage only",28,"Guanaja 2","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14849,555582978,"HND","METT",2006,"For storage only",28,"Guanaja 2","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14887,555582985,"HND","PROARCA/CAPAS",2001,"For storage only",28,"Warunta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -14886,555582985,"HND","PROARCA/CAPAS",2000,"For storage only",28,"Warunta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20679,555583156,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngermeskang","Bird Sanctuary","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20685,555583317,"PLW","National PAME Assessment",2014,"For storage only",31,"Diong Fra Ngerchokl","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20682,555583335,"PLW","National PAME Assessment",2014,"For storage only",31,"Lleyakl Beluu/Omolei","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20675,555583339,"PLW","National PAME Assessment",2014,"For storage only",31,"Mesekelat","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20676,555583346,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngelukes","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20678,555583347,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngemai","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20677,555583348,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngerchelchuus","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20680,555583351,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngerkal Lake","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20673,555583370,"PLW","National PAME Assessment",2014,"For storage only",31,"Teluleu","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20681,555583375,"PLW","National PAME Assessment",2014,"For storage only",31,"Ungelell","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -20684,555584356,"PLW","National PAME Assessment",2014,"For storage only",31,"Ngaraard Mangrove","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -13894,555585118,"UMI","USA SOP",2003,"For storage only",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13913,555585135,"USA","USA SOP",2005,"For storage only",28,"Haycock-longf","Local Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -20674,555585897,"PLW","National PAME Assessment",2014,"For storage only",31,"Helen Reef","Reserve","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English",FALSE -12033,555586443,"MNP","Birdlife IBA",2007,"For storage only",28,"Guguan Island","Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13885,555586740,"USA","MPA MEE",2003,"For storage only",28,"Channel Islands","National Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -13868,555586829,"USA","USA SOP",2007,"For storage only",28,"Apostle Islands","National Lakeshore","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -90,555587123,"ARG","Birdlife IBA",2013,"For storage only",3,"Bañados R Dulce y Lag Mar Chiquita","Multiple Use Provincial Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -96,555587168,"ARG","GOBI Survey",2014,"For storage only",3,"Valdes","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -105,555587169,"ARG","GOBI Survey",2009,"For storage only",3,"Andino Nopatagonica","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE -20746,555587171,"MEX","Ecological Evaluation Score Cards",2014,"For storage only",33,"Balandra","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20742,555587174,"MEX","How is your MPA doing?",2016,"For storage only",33,"Marismas Nacionales Nayarit","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20743,555587174,"MEX","METT",2017,"For storage only",33,"Marismas Nacionales Nayarit","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20741,555587174,"MEX","Ecological Evaluation Score Cards",2012,"For storage only",33,"Marismas Nacionales Nayarit","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English",FALSE -20881,555587209,"IDN","METT",2015,"For storage only",35,"Maubesi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21038,555587211,"IDN","METT",2015,"For storage only",35,"Gunung Asuansang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -21050,555587212,"IDN","METT",2015,"For storage only",35,"Gunung Dungan/ Gunung Batu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian",FALSE -1098,555587895,"EST","METT",2012,"For storage only",15,"Meenikunno looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian",FALSE -22,555592552,"ARE","METT",2016,"For storage only",1,"Jazirat Sir Bu Na'air","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -1404,555592571,"GBR","Common Standards Monitoring",2013,"For storage only",18,"The Mersey Narrows and North Wirral Foreshore","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -35,555592572,"AND","National Inventory",2017,"For storage only",2,"Parc Natural Comunal de les Valls del Comapedrosa","Ramsar Site, Wetland of International Importance","Andorra Management Effectiveness Evaluation","Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,"Catalan",FALSE -9804,555592579,"BHS","METT-RAPPAM",2018,"For storage only",25,"Fowl Cays National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9821,555592580,"BHS","METT-RAPPAM",2018,"For storage only",25,"Andros Blue Hole National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9818,555592581,"BHS","METT-RAPPAM",2018,"For storage only",25,"Crab Replenishment Reserve","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9817,555592582,"BHS","METT-RAPPAM",2018,"For storage only",25,"Andros North Marine Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9820,555592583,"BHS","METT-RAPPAM",2018,"For storage only",25,"Andros South Marine Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9795,555592584,"BHS","METT-RAPPAM",2018,"For storage only",24,"South Berry Island Marine Reserve","Marine Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9819,555592585,"BHS","METT-RAPPAM",2018,"For storage only",25,"Andros West Side National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9794,555592586,"BHS","METT-RAPPAM",2018,"For storage only",24,"Jew Fish Marine Reserve (Exuma Cays)","Marine Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9796,555592587,"BHS","METT-RAPPAM",2018,"For storage only",24,"Crab Cay Marine Reserve","Fisheries Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9809,555592588,"BHS","METT-RAPPAM",2018,"For storage only",25,"Leon Levy National Park Preserve","Plant Preserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9810,555592589,"BHS","METT-RAPPAM",2018,"For storage only",25,"Marine Farms","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9811,555592590,"BHS","METT-RAPPAM",2018,"For storage only",25,"Hope Great House","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9824,555592591,"BHS","METT-RAPPAM",2018,"For storage only",25,"Harrold and Wilson Pond National Park","Ecological Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9825,555592592,"BHS","METT-RAPPAM",2018,"For storage only",25,"Primeval Forest National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -168,555592686,"COL","AEMAPPS",2016,"For storage only",6,"Corales De Profundidad","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -159,555592745,"COL","AEMAPPS",2016,"For storage only",6,"Acandi Playon Y Playona","Fauna Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -162,555592746,"COL","AEMAPPS",2016,"For storage only",6,"Bahia Portete Kaurrele","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -188,555592786,"COL","AEMAPPS",2016,"For storage only",6,"Los Flamencos","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish",FALSE -9797,555592841,"BHS","METT-RAPPAM",2018,"For storage only",24,"No Name Cay Marine Reserve","Fisheries Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -28213,555592943,"ECU","METT",2009,"For storage only",28,"Arenillas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28041,555593969,"BIH","METT",2008,"For storage only",28,"Kozara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28201,555593969,"BIH","METT",2010,"For storage only",28,"Kozara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28042,555593970,"BIH","METT",2008,"For storage only",28,"Sutjeska","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9921,555594058,"KOR","METT",2017,"For storage only",26,"Mt.Bakji_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9922,555594059,"KOR","METT",2017,"For storage only",26,"Ucheon_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9923,555594060,"KOR","METT",2017,"For storage only",26,"Vly.Yanghyeon_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9918,555594061,"KOR","METT",2017,"For storage only",26,"Vly.Jogae_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9919,555594062,"KOR","METT",2017,"For storage only",26,"Vly.Dang_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9906,555594064,"KOR","METT",2017,"For storage only",26,"Naejeoul_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9926,555594068,"KOR","METT",2017,"For storage only",26,"Sangbaejjae_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9916,555594069,"KOR","METT",2017,"For storage only",26,"Eosarideok_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9917,555594070,"KOR","METT",2017,"For storage only",26,"Vly.Eoreum_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9920,555594076,"KOR","METT",2017,"For storage only",26,"Sandeok_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9913,555594077,"KOR","METT",2017,"For storage only",26,"Hogyeong_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9924,555594091,"KOR","METT",2017,"For storage only",26,"Bukam_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9896,555594098,"KOR","METT",2017,"For storage only",26,"Dogaegusa_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9925,555594112,"KOR","METT",2017,"For storage only",26,"Mureung_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -28294,555594121,"VNM","METT",2008,"For storage only",28,"Bai Tu Long","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -6654,555595673,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mid Cornwall Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6651,555595674,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Pen Park Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6652,555595675,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bolton Fell and Walton Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -6653,555595676,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Pennine Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7591,555595732,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Coedwig Ffosil Brymbo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7593,555595733,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Fferm Walters","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7621,555595734,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Cerrig y gweunydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7623,555595735,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Mynydd Llangatwg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -7624,555595736,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Meeting House Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9327,555596150,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Ardglass","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9328,555596151,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aughnagon Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9329,555596152,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aughnavallog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9337,555596153,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Aghanaglack","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9331,555596154,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bellevue","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9336,555596155,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Belshaws Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9333,555596156,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Carrivemaclone","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9339,555596157,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Glynn Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9322,555596158,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Goraghwood Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9338,555596159,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gortnasoal Glebe and Meenadoan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9334,555596160,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Gransha","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9330,555596161,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Shannaghan Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9332,555596162,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Slieve Croob","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -9335,555596163,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Tamnyrankin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -425,555599928,"BRA","RAPPAM",2015,"For storage only",9,"Reserva Extrativista Guariba-Roosevelt","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -724,555599975,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional Guaricana","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -515,555599975,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional Guaricana","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -566,555600076,"BRA","SAMGe",2016,"For storage only",9,"Estação Ecológica Alto Maués","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -516,555600076,"BRA","RAPPAM",2015,"For storage only",9,"Estação Ecológica Alto Maués","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -738,555600159,"BRA","SAMGe",2016,"For storage only",9,"Reserva De Desenvolvimento Sustentável Nascentes Geraizeiras","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -517,555600159,"BRA","RAPPAM",2015,"For storage only",9,"Reserva De Desenvolvimento Sustentável Nascentes Geraizeiras","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -682,555600244,"BRA","SAMGe",2016,"For storage only",9,"PARNA da Serra do Gandarela","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -813,555600245,"BRA","SAMGe",2016,"For storage only",9,"RESEX Marinha Mocapajuba","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -812,555600255,"BRA","SAMGe",2016,"For storage only",9,"RESEX Marinha Mestre Lucindo","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -806,555600266,"BRA","SAMGe",2016,"For storage only",9,"RESEX Marinha Cuinarana","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -256,555600305,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Ibirapuitã","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -542,555600305,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Ibirapuitã","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -260,555600306,"BRA","RAPPAM",2015,"For storage only",9,"Área De Proteção Ambiental Serra Da Mantiqueira","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -547,555600306,"BRA","SAMGe",2016,"For storage only",9,"Área De Proteção Ambiental Serra Da Mantiqueira","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -694,555600317,"BRA","SAMGe",2016,"For storage only",9,"Parque Nacional De Boa Nova","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -369,555600317,"BRA","RAPPAM",2015,"For storage only",9,"Parque Nacional De Boa Nova","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese",FALSE -21976,555621660,"CAN","Ecological Integrity Monitoring",2016,"For storage only",36,"Qausuittuq National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English",FALSE -5,555622067,"ARE","METT",2016,"For storage only",1,"Al Marmoun Desert","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -31,555622068,"ARE","METT",2016,"For storage only",1,"Lemdynah Protected Area","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -17,555622069,"ARE","METT",2016,"For storage only",1,"Ed-Dhelaimah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -3,555622070,"ARE","METT",2016,"For storage only",1,"Al Ghaf of Nazwa","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -24,555622071,"ARE","METT",2016,"For storage only",1,"Nazwa Mountain","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -8,555622072,"ARE","METT",2016,"For storage only",1,"Al Wohoosh Desert","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -14,555622073,"ARE","METT",2016,"For storage only",1,"Dhadna","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -13,555622074,"ARE","METT",2016,"For storage only",1,"Birds Island (Jazeerat Al Tuyur)","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -2,555622075,"ARE","METT",2016,"For storage only",1,"Al Bidiya","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -1,555622076,"ARE","METT",2016,"For storage only",1,"Al Aqqa","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -6,555622077,"ARE","METT",2016,"For storage only",1,"Al Naseem","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -11,555622078,"ARE","METT",2016,"For storage only",1,"Al Zorah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -27,555622079,"ARE","METT",2016,"For storage only",1,"Ras Ghanada","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -25,555622082,"ARE","METT",2016,"For storage only",1,"Qaser Al Sarab","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -29,555622083,"ARE","METT",2016,"For storage only",1,"Wasit","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -18,555622084,"ARE","METT",2016,"For storage only",1,"Elebriddi","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -19,555622086,"ARE","METT",2016,"For storage only",1,"Elfaya","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic",FALSE -9895,555622124,"KOR","Korea SOP",2016,"For storage only",26,"Jejugotjawal","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9852,555622125,"KOR","Korea SOP",2016,"For storage only",26,"Byeongbangsan","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10356,555622138,"KOR","Korea SOP",2016,"For storage only",26,"107_Hoenggyeongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10357,555622139,"KOR","Korea SOP",2016,"For storage only",26,"73_Sohwado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10358,555622140,"KOR","Korea SOP",2016,"For storage only",26,"56_Hyeoldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10359,555622141,"KOR","Korea SOP",2016,"For storage only",26,"98_Maeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10344,555622142,"KOR","Korea SOP",2016,"For storage only",26,"15_Hangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10345,555622143,"KOR","Korea SOP",2016,"For storage only",26,"1_Dokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10329,555622144,"KOR","Korea SOP",2016,"For storage only",26,"172_Jinjioedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10330,555622145,"KOR","Korea SOP",2016,"For storage only",26,"171_Naemaemuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10331,555622146,"KOR","Korea SOP",2016,"For storage only",26,"170_Araetdonbaeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10332,555622147,"KOR","Korea SOP",2016,"For storage only",26,"169_Seokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10333,555622148,"KOR","Korea SOP",2016,"For storage only",26,"167_Byeondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10334,555622149,"KOR","Korea SOP",2016,"For storage only",26,"165_Oehoenggyeondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10347,555622150,"KOR","Korea SOP",2016,"For storage only",26,"168_Odo(jodo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10354,555622151,"KOR","Korea SOP",2016,"For storage only",26,"163_Sibidongpado4","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10339,555622152,"KOR","Korea SOP",2016,"For storage only",26,"164_Sibidongpado9","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10349,555622153,"KOR","Korea SOP",2016,"For storage only",26,"161_Sibidongpado1","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10350,555622154,"KOR","Korea SOP",2016,"For storage only",26,"162_Sibidongpado2","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10360,555622155,"KOR","Korea SOP",2016,"For storage only",26,"166_Mumyeongdo(burando)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10361,555622156,"KOR","Korea SOP",2016,"For storage only",26,"177_Gadeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10362,555622157,"KOR","Korea SOP",2016,"For storage only",26,"175_Bodeunagiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10355,555622158,"KOR","Korea SOP",2016,"For storage only",26,"176_Sopyeongyeodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10363,555622159,"KOR","Korea SOP",2016,"For storage only",26,"173_Jimado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10325,555622160,"KOR","Korea SOP",2016,"For storage only",26,"174_Todo(jeungdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10364,555622161,"KOR","Korea SOP",2016,"For storage only",26,"178_Hae1do","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10365,555622162,"KOR","Korea SOP",2016,"For storage only",26,"179_Hae2do","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10351,555622163,"KOR","Korea SOP",2016,"For storage only",26,"180_Gudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10352,555622164,"KOR","Korea SOP",2016,"For storage only",26,"185_Gukeulseom(gukyeoldo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10348,555622165,"KOR","Korea SOP",2016,"For storage only",26,"182_Darado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10353,555622166,"KOR","Korea SOP",2016,"For storage only",26,"183_Daesulgaedo(daeseonggaedo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10366,555622167,"KOR","Korea SOP",2016,"For storage only",26,"184_Oeyeopsando(mumyeongdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10367,555622168,"KOR","Korea SOP",2016,"For storage only",26,"181_Jeodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10368,555622169,"KOR","Korea SOP",2016,"For storage only",26,"216_Galdossangyeo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10370,555622170,"KOR","Korea SOP",2016,"For storage only",26,"200_Galmaegiseom(seogalmaegiseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10371,555622171,"KOR","Korea SOP",2016,"For storage only",26,"220_Galsando1","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10372,555622172,"KOR","Korea SOP",2016,"For storage only",26,"218_Galsando2","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10373,555622173,"KOR","Korea SOP",2016,"For storage only",26,"197_Gudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10374,555622174,"KOR","Korea SOP",2016,"For storage only",26,"217_Nebawi","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10375,555622175,"KOR","Korea SOP",2016,"For storage only",26,"215_Nogundo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10376,555622176,"KOR","Korea SOP",2016,"For storage only",26,"209_Daegueulbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10377,555622177,"KOR","Korea SOP",2016,"For storage only",26,"191_Daemado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10378,555622178,"KOR","Korea SOP",2016,"For storage only",26,"212_Daehodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10381,555622179,"KOR","Korea SOP",2016,"For storage only",26,"213_Dolgeochillido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10382,555622180,"KOR","Korea SOP",2016,"For storage only",26,"188_Dunbukseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10383,555622181,"KOR","Korea SOP",2016,"For storage only",26,"210_Ttandokseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10384,555622182,"KOR","Korea SOP",2016,"For storage only",26,"195_Maemuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10385,555622183,"KOR","Korea SOP",2016,"For storage only",26,"199_Milmaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10379,555622184,"KOR","Korea SOP",2016,"For storage only",26,"187_Barammagido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10386,555622185,"KOR","Korea SOP",2016,"For storage only",26,"219_Baeksado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10337,555622186,"KOR","Korea SOP",2016,"For storage only",26,"207_Boronseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10388,555622187,"KOR","Korea SOP",2016,"For storage only",26,"189_Bulmugido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10389,555622188,"KOR","Korea SOP",2016,"For storage only",26,"203_Sangbanggodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10390,555622189,"KOR","Korea SOP",2016,"For storage only",26,"211_Saetgaekkeut","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10392,555622190,"KOR","Korea SOP",2016,"For storage only",26,"214_Sogueulbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10393,555622191,"KOR","Korea SOP",2016,"For storage only",26,"196_Sodeogudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10394,555622192,"KOR","Korea SOP",2016,"For storage only",26,"221_Sochiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10338,555622193,"KOR","Korea SOP",2016,"For storage only",26,"204_Solseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10395,555622194,"KOR","Korea SOP",2016,"For storage only",26,"194_Songdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10396,555622195,"KOR","Korea SOP",2016,"For storage only",26,"206_Suryeongseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10397,555622196,"KOR","Korea SOP",2016,"For storage only",26,"190_Anmaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10335,555622197,"KOR","Korea SOP",2016,"For storage only",26,"208_Yeomseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10336,555622198,"KOR","Korea SOP",2016,"For storage only",26,"186_Yukgakdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10391,555622199,"KOR","Korea SOP",2016,"For storage only",26,"198_Junggalmaegiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10398,555622200,"KOR","Korea SOP",2016,"For storage only",26,"201_Jungbanggodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10399,555622201,"KOR","Korea SOP",2016,"For storage only",26,"205_Jikgudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10400,555622202,"KOR","Korea SOP",2016,"For storage only",26,"202_Habanggodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10340,555622203,"KOR","Korea SOP",2016,"For storage only",26,"192_Hyeongjedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10341,555622204,"KOR","Korea SOP",2016,"For storage only",26,"193_Hyeongjedo1","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10401,555622205,"KOR","Korea SOP",2016,"For storage only",26,"222_Sochodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10402,555622206,"KOR","Korea SOP",2016,"For storage only",26,"223_Jeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10403,555622207,"KOR","Korea SOP",2016,"For storage only",26,"228_Maryukdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10404,555622208,"KOR","Korea SOP",2016,"For storage only",26,"229_Maebakseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10406,555622209,"KOR","Korea SOP",2016,"For storage only",26,"224_Daegadeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10408,555622210,"KOR","Korea SOP",2016,"For storage only",26,"225_Nanggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10410,555622211,"KOR","Korea SOP",2016,"For storage only",26,"226_Sonanggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10412,555622212,"KOR","Korea SOP",2016,"For storage only",26,"227_Seogakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10414,555622213,"KOR","Korea SOP",2016,"For storage only",26,"231_Oejodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10416,555622214,"KOR","Korea SOP",2016,"For storage only",26,"232_Sehangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10417,555622215,"KOR","Korea SOP",2016,"For storage only",26,"230_Oryeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9962,555622216,"KOR","Korea SOP",2016,"For storage only",26,"Wolyeong Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9963,555622217,"KOR","Korea SOP",2016,"For storage only",26,"Sueunmulbaedui","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9964,555622218,"KOR","Korea SOP",2016,"For storage only",26,"Doncheon Estuary","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9951,555622219,"KOR","Korea SOP",2016,"For storage only",26,"Daegu Dalseong Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9952,555622221,"KOR","Korea SOP",2016,"For storage only",26,"Daechoengho Chudong Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9947,555622222,"KOR","Korea SOP",2016,"For storage only",26,"Daedeoksan-Geumdaebong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9948,555622223,"KOR","Korea SOP",2016,"For storage only",26,"Sohan Valley","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9949,555622224,"KOR","Korea SOP",2016,"For storage only",26,"Baeksasil Valley","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9946,555622225,"KOR","Korea SOP",2016,"For storage only",26,"Gwanaksan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9943,555622226,"KOR","Korea SOP",2016,"For storage only",26,"Seongnaecheon Downstream","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9950,555622228,"KOR","Korea SOP",2016,"For storage only",26,"Taehwagang(river)","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9944,555622229,"KOR","Korea SOP",2016,"For storage only",26,"Myeongjisan, Cheonggyesan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9945,555622230,"KOR","Korea SOP",2016,"For storage only",26,"Cheonggyesan Wonteogol","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9850,555622711,"KOR","Korea SOP",2016,"For storage only",26,"Taebaeksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10322,555622712,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gwangju Docheokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9999,555622713,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gwangju Opoeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10000,555622714,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gwangju Namhansanseongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10323,555622715,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gwangju Chowoleup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10020,555622716,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Pochoen Shinbukmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10021,555622717,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Yangsan Gyodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10022,555622718,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Yangsan Wondongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10001,555622719,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Jinju Daepyeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10002,555622720,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Naju Gyeonghyundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10003,555622721,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Wando Wandoeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10005,555622722,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Seosan Buseokmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10019,555622724,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Hongseong Galsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10023,555622725,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Muju Seolcheonmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10006,555622726,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Muju Seolcheonmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10007,555622727,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changwon Jinhaegu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10008,555622728,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changwon Jinhaegu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10011,555622729,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Yeonggwang Bulgabmyeon (Bulgapsan)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10012,555622730,"KOR","Korea SOP",2016,"For storage only",26,"Daejeon Donggu Secheondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10013,555622731,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Dongducheon Sangbongamdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10014,555622732,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Hwaseong Namyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10015,555622733,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gurye Gwangeuimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10016,555622734,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Haenam Samsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10010,555622735,"KOR","Korea SOP",2016,"For storage only",26,"Gwangju Bukgu Cheongpungdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10017,555622736,"KOR","Korea SOP",2016,"For storage only",26,"Gwangju Donggu Yongyeondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10018,555622737,"KOR","Korea SOP",2016,"For storage only",26,"Gwangju Bukgu Geumgokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10024,555622738,"KOR","Korea SOP",2016,"For storage only",26,"Gwangju Bukgu Hwaamdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9982,555622739,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Haman Saninmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9983,555622740,"KOR","Korea SOP",2016,"For storage only",26,"Chungbuk Jincheon Jincheoneup 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9979,555622741,"KOR","Korea SOP",2016,"For storage only",26,"Chungbuk Jincheon Jincheoneup 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9980,555622742,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Hoengseong Seowonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9981,555622743,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Hoengseong Hoengseongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9984,555622744,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Hoengseong Gabcheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9985,555622745,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Chuncheon Seomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9986,555622746,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Chuncheon Dongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9987,555622747,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Chuncheon Woodudong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9988,555622748,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Miryang Sannaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9989,555622749,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Hapcheon Bongsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9992,555622750,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Hapcheon Daebyeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10025,555622751,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Seosan Galsandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10026,555622752,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gurye Masanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10027,555622753,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Wando Bogilmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10028,555622754,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Seosan Buseokmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10029,555622755,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Naju Dadomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10030,555622756,"KOR","Korea SOP",2016,"For storage only",26,"Ulsan Bukgu Songjeongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9994,555622757,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gwangyang Bonggangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9996,555622758,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gwangyang Gwangyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9997,555622759,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gwangyang Junggundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10031,555622760,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Jangheung Yuchimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10033,555622761,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Jangheung Jangheungeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10037,555622762,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Boseong Boknaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10038,555622763,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Yanggu Bangsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10034,555622764,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Gangneung Jeodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10039,555622765,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Uijeongbu Howondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10041,555622766,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Hongcheon Dongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10042,555622767,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gimpo Pungmoodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10043,555622768,"KOR","Korea SOP",2016,"For storage only",26,"Incheon Junggu Unnamdong 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10035,555622769,"KOR","Korea SOP",2016,"For storage only",26,"Incheon Junggu Unnamdong 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10036,555622770,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Wonju Hojeomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10045,555622771,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Wonju sochomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10047,555622772,"KOR","Korea SOP",2016,"For storage only",26,"Gangwo Wonju Heungeopmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10032,555622773,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Anyang Manangu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10040,555622774,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Taebaek Hwangjidong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10048,555622775,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Pyeongtaek Jinwimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10044,555622776,"KOR","Korea SOP",2016,"For storage only",26,"Chungbuk Goesan Cheongcheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10046,555622777,"KOR","Korea SOP",2016,"For storage only",26,"Daejeon Seogu Doandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10049,555622778,"KOR","Korea SOP",2016,"For storage only",26,"Daejeon Seogu Gasuwondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10050,555622779,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Uijeongbu Sangokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10051,555622780,"KOR","Korea SOP",2016,"For storage only",26,"Chungbuk Yeongdong Haksanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10057,555622783,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Iksan Woongpomyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10058,555622784,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Wanju Gosanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10059,555622785,"KOR","Korea SOP",2016,"For storage only",26,"Daegu Bukgu Dongbyeondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10060,555622786,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Buan Gyehwamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10064,555622787,"KOR","Korea SOP",2016,"For storage only",26,"Daegu Donggu Geumgangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10065,555622788,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Imsil Gwanchonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10066,555622789,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Gimje Geumsanmyeon 3 (Moaksan)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10067,555622790,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Gimje Geumsanmyeon 2 (Geumsansa)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10061,555622791,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Buan Jinseomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10069,555622792,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Damyang Yongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10054,555622793,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gokseong Gokseongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10055,555622794,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gokseong Ogokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10068,555622795,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gokseong Godalmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10073,555622796,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Namwon Sannaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10076,555622797,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gokseong Jukgokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10077,555622798,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Hwasun Nammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10078,555622799,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Boseong Mundeokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10081,555622800,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Hwasun Chunyangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10268,555622801,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Gohyeonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10082,555622802,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Boseong Hoecheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10070,555622803,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Jindo Gunnaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10074,555622804,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Jindo uisinmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10075,555622805,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gapyeong Hamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10079,555622806,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gapyeong Sangdongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10083,555622807,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Namyangju Sudongmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10071,555622808,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Namyangju Sudongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10072,555622809,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Yangju Samsungdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10086,555622810,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Yangju Jangheungmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9990,555622811,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gapyeong Seorakmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10087,555622812,"KOR","Korea SOP",2016,"For storage only",26,"Gangwo Jeongseon Hwaammyeom","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10088,555622813,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gwangmyeong Noonsadong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10089,555622814,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Seongnam Jungwongu 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10090,555622815,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Seongnam Jungwongu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10091,555622816,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Seongnam Jungwongu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10094,555622820,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Asan Songakmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10095,555622821,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Gongju Sagokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10096,555622822,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Gongju Gyeryongmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10098,555622823,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Gongju Gyeryongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10101,555622824,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Gongju Banpomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10102,555622825,"KOR","Korea SOP",2016,"For storage only",26,"Chungbuk Okcheon Dongimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10004,555622826,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Gunsan Soryongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10009,555622827,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jeonju Deokjingu 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10056,555622828,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jeonju Deokjingu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10103,555622829,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jeonju Deokjingu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10104,555622830,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Gochang Seongnaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10105,555622831,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Gochang Asanmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10093,555622832,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Gochang Asanmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10106,555622833,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Sunchang Paldeokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10107,555622834,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Suncheon Songgwangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10108,555622835,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Suncheon Seungjueup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10109,555622836,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Suncheon Seokhyundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10110,555622837,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Suncheon Jogokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10112,555622838,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Goheung Duwonmyeon (Unnamsan)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10113,555622839,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Goheung Namgyeri (Bonghwangsan)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10114,555622840,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Yangyang Hyunnammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10115,555622841,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Hwaseong Songsandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10097,555622842,"KOR","Korea SOP",2016,"For storage only",26,"Chungbuk Jecheon Hansumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10099,555622843,"KOR","Korea SOP",2016,"For storage only",26,"Chungbuk Danyang Danyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10111,555622844,"KOR","Korea SOP",2016,"For storage only",26,"Sejong Yeongi Dongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9991,555622845,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Cheongyang Cheongyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9993,555622846,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Cheongyang Daechimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10117,555622849,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Wanju Unjumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10118,555622850,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Wanju Dongsangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10119,555622851,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Wanju Soyangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10120,555622852,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Wanju Gooimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10116,555622853,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Hapcheon Gayamyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10121,555622854,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Hamyang Hamyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10122,555622855,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jangsu jangsueup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10125,555622856,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jangsu Beonammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10126,555622858,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Goseong Geojineup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10129,555622859,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Goseong Jugwangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10130,555622860,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Hwacheon Hwacheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10131,555622861,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Hongcheon Naemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10132,555622862,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Pyeongchang Jinbumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10133,555622863,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Paju Jeokseongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10134,555622864,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gimpo Wolgokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10138,555622865,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gimpo Haseongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10123,555622866,"KOR","Korea SOP",2016,"For storage only",26,"Incheon Ganghwagun Hwadomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10124,555622867,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Paju Gwangtanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10127,555622868,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Paju Jorieup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10139,555622869,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Goyang Deokyanggu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10141,555622872,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Goyang Deokyanggu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10142,555622873,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Hongcheon Bukbangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10143,555622874,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Hongcheon Hongcheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10144,555622875,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Yangpyeong Yangseomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10145,555622876,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Yangpyeong Yongmunmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10135,555622877,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Yangpyeong Yangpyeongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10136,555622878,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Yeoju Sanbukmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10137,555622879,"KOR","Korea SOP",2016,"For storage only",26,"Umyeonsan 1 (Seoul Seochogu Umyeondong)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10140,555622880,"KOR","Korea SOP",2016,"For storage only",26,"Seoul Seochogu Wonjidong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10146,555622881,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gwacheon Gwanmundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10149,555622883,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gwacheon Jungangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10147,555622884,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Anyang Dongangu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10150,555622885,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Suwon Gwonseongu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10151,555622886,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Yongin Yubangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10154,555622887,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Yeoju Cheonsongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10155,555622888,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Yeongwol Seomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10148,555622889,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Pyeongchang Pyeongchangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10152,555622890,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Yeongwol Yeongwoleup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10153,555622891,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Samcheok Miromyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10156,555622892,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Samcheok Seongnaedong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10157,555622893,"KOR","Korea SOP",2016,"For storage only",26,"Chungbuk Chungju Suanbomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10158,555622903,"KOR","Korea SOP",2016,"For storage only",26,"Sejong Yeongi Seomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10159,555622904,"KOR","Korea SOP",2016,"For storage only",26,"Daejeon Daedeokgu Hwanghodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10161,555622906,"KOR","Korea SOP",2016,"For storage only",26,"Daejeon Seogu Wolpyeongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10165,555622907,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Boryeong Seonjumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10166,555622908,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Buyeo Buyeoeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10160,555622910,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Buyeo Hongsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10267,555622911,"KOR","Korea SOP",2016,"For storage only",26,"Daegu Suseonggu Gomodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10173,555622912,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Muju Jeoksangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10162,555622913,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jinan Jucheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10163,555622914,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jinan Bugwimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10164,555622915,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Iksan Geummamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10266,555622916,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Iksan Woongpomyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10168,555622917,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Buyeo Yanghwamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10169,555622918,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Iksan Mohyeondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10170,555622919,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Buan Byeonsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10171,555622920,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jeongeup Gongpyeongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10172,555622921,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Geochang Buksangmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10174,555622922,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Geochang Buksangmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10167,555622923,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Geochang Buksangmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10177,555622924,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jinan Jinaneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10178,555622925,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Gimje Geumsanmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10184,555622926,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jeongeup Ssangamdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10175,555622927,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jeongeup Shinseongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10176,555622928,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Jangseong Bukhamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9977,555622929,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Jeongeup Naejangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10179,555622930,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Imsil Imsileup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10180,555622931,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Geochang Geochangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10181,555622932,"KOR","Korea SOP",2016,"For storage only",26,"Ulsan Namgu Seonamdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10270,555622933,"KOR","Korea SOP",2016,"For storage only",26,"Ulsan Bukgu Myeongchondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10182,555622934,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Gimhae Sambangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10186,555622935,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Gimhae Sangdongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10187,555622936,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changnyeong Changnyeongeup 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10188,555622937,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changnyeong Bugokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9995,555622938,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changwon Uichanggu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9998,555622939,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Gimhae jinyeongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10185,555622940,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Gimhae Daedongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10191,555622941,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Gimhae Jangyumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10192,555622942,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changwon Seongsangu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10193,555622943,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changwon Masanhappogu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10189,555622944,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changwon Masanhappogu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10194,555622945,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Uiryeong Bongsumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10195,555622946,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Uiryeong Garyemyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10196,555622947,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Uiryeong Garyemyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10197,555622948,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Uiryeong Uiryeongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10199,555622949,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Hamyang Macheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10264,555622950,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Geumseomyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10200,555622951,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Hadong Cheongammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10201,555622952,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Hadong Hwagaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10202,555622953,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gurye Tojimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10198,555622954,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Namwon Gwangchidong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10203,555622955,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Buyeo Eunsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9976,555622956,"KOR","Korea SOP",2016,"For storage only",26,"Chungbuk Cheungju Muneoimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10052,555622957,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Gwacheon Galhyeondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10053,555622958,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Hampyeong Daedongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10062,555622959,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Muan Mongtanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10063,555622960,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Mokpo Jukgyodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10208,555622961,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Jinju Panmundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10212,555622962,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Jinju Sangbongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10213,555622963,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Jinju Geumsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10205,555622964,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Jinju Munsaneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10206,555622965,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Goseong Gaecheonmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10207,555622966,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Goseong Gaecheonmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10210,555622967,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Goseong Daegamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10211,555622968,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Goseong Maammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10215,555622969,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sacheon Sacheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10217,555622970,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sacheon Yonghyeonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10218,555622971,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sacheon Gonmyeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10219,555622972,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Hwasun Hancheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10204,555622973,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Yeosu Jungheungdong 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10273,555622974,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Seolcheonmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10265,555622975,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Goseong Haimyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10209,555622976,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Goseong Sangnimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10271,555622977,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Tongyeong Dosanmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10214,555622978,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Tongyeong Dosanmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10220,555622979,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Tongyeong Gwangdomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10222,555622980,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Tongyeong Donghodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10223,555622981,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Tongyeong Hansanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10274,555622982,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Yidongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10272,555622983,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Yidongmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10216,555622984,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Yeosu Dolsaneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10221,555622985,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Yeosu Hwayangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10269,555622986,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Yeongam Yeongameup 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10084,555622987,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gangjin Seonjeonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10085,555622988,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gangjin Chilryangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10225,555622989,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Goheung Geumsanmyeon (Jeodae Peak)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10226,555622990,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Yeongam Geumjeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10227,555622991,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Namwon Ayeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10228,555622992,"KOR","Korea SOP",2016,"For storage only",26,"Daegu Dalseong Hwawoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10229,555622993,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk GyeongJu Namsandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10183,555622994,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk GyeongJu Baebandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10190,555622995,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk GyeongJu Naenammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9978,555622996,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Goryeong Jisanri","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10080,555622997,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Goryeong Ssangrimmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10230,555622998,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Gumi Namtongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10231,555622999,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Gumi Doryangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10232,555623000,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Gumi Seonsaneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10092,555623003,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Gimcheon Nongsomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10100,555623004,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Gimcheon Daedeokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10128,555623005,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Gimcheon Jeungsangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10234,555623010,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Bonghwa Sangunmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10235,555623014,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Andong Seonggokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10236,555623015,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Andong Seohumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10237,555623016,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yecheon Yecheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10238,555623017,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yeong-deok Yeongdeokeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10233,555623018,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yeong-yang Cheonggimyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10239,555623019,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yeong-yang Cheonggimyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10240,555623020,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yeongju Buseokmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10241,555623021,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yeongju Yeongjudong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10242,555623022,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yeongju Buseokmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10243,555623023,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yeongju Sunheungmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10244,555623024,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yeongju Hamangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10245,555623030,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yecheon Pungyangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10246,555623031,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Yecheon Sangrimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10247,555623034,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Ul-jin Uljineup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10248,555623035,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Ul-jin Seomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10249,555623036,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Ul-jin Giseongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10252,555623040,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Cheongsong Budongmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10253,555623041,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Cheongsong Budongmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10255,555623042,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Cheongsong Bunammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10256,555623043,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Cheongsong Budongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10257,555623044,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Pohang Honghaeeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10224,555623045,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Pohang Bukgu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10258,555623046,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Pohang Namgu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10259,555623047,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Pohang Namgu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10260,555623048,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk Pohang Bukgu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10250,555623050,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk GyeongJu Ahngangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10251,555623051,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongbuk GyeongJu Owidongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10254,555623054,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Gunsan Napomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10261,555623055,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Namwon Unbongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10262,555623056,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changnyeong Changnyeongeup 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10324,555623057,"KOR","Korea SOP",2016,"For storage only",26,"Otter habitat in Jinyang lake","Wildlife Special Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10263,555623058,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Namwon Sujimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -29436,555623074,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Noir Ru et Vallée du Rechterbach","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29439,555623075,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Plaine de Ny","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29463,555623080,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Haine en amont de Mons","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29329,555623081,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin du Ruisseau du Messancy","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29522,555623082,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Biran","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29344,555623083,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois d'Anthisnes et d'Esneux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29336,555623084,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin moyen de l'Ourthe occidentale","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29521,555623085,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de Villers-la-Bonne-Eau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29513,555623086,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Orneau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29363,555623088,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Carrière de Dongelberg","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29445,555623089,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Sources de la Hante","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29494,555623090,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Thure","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29306,555623091,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Basse vallée de la Vesdre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29384,555623092,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fagnes du Nord-Est","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29425,555623093,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Ma Campagne au sud de Malmedy","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29352,555623094,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois de la Neuville et de la Vecquée","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29533,555623095,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau de Fairoul","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29350,555623096,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois de la Géronstère","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29353,555623097,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois de Staneux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29451,555623098,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Sources du Ruisseau de Tavigny","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29540,555623099,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau des Aleines","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29535,555623100,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau de Gros Fays","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29536,555623101,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau de la Goutelle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29389,555623102,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Forêt de Mariemont","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29529,555623103,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau d'Acoz","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29302,555623104,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Affluents du lac d'Eupen","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29503,555623105,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Amblève du Pont de Targnon à Remouchamps","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29381,555623106,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fagnes de Malchamps et de Stoumont","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29447,555623107,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Sources de la Warchenne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29419,555623109,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"La Calestienne entre Hotton et Oppagne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29378,555623110,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fagnes de Bihain","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29554,555623111,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées de l'Eisch et de Clairefontaine","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29438,555623113,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Pays des Collines","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29549,555623114,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées de la Dendre et de la Marcq","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29488,555623115,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Princesse","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29341,555623116,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin supérieur de l'Ourthe occidentale","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29300,555623117,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Affluents de la Meuse entre Huy et Flémalle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29337,555623118,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin supérieur de la Chevratte","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29482,555623119,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Meuse de Marche-les-Dames à Andenne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29524,555623120,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Burnot","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29313,555623121,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin ardennais de l'Eau Noire","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29489,555623122,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Rhosnes","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29427,555623123,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Marais de la Verne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29497,555623124,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Vesdre entre Eupen et Verviers","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29424,555623125,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"La Gileppe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29514,555623126,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Ourthe entre Bomal et Hamoir","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29382,555623127,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fagnes de Samrée et de Tailles","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29490,555623128,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Sambre en aval de la confluence avec l'Orneau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29457,555623129,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Chinelle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29314,555623130,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin ardennais du Viroin","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29525,555623131,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Flavion","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29311,555623132,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Basse-Sambre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29478,555623133,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Mehaigne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29515,555623134,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Ourthe entre Comblain-au-Pont et Angleur","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29437,555623135,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Osthertogenwald autour de Raeren","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29534,555623136,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau de Féron","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29483,555623137,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Meuse d'Hastière à Dinant","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29299,555623138,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Affluents brabançons de la Senne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29444,555623139,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Sources de la Dyle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29553,555623140,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées de l'Argentine et de la Lasne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29487,555623141,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Nethen","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29495,555623142,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Thyle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29477,555623143,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Lys","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29496,555623144,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Trouille","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29462,555623145,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Gueule en aval de Kelmis","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29365,555623146,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Coteaux calcaires de Theux et le Rocheux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29516,555623147,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Ourthe entre Hamoir et Comblain-au-Pont","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29380,555623148,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fagnes de la Roer","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29491,555623149,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Schwalm","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29499,555623150,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Warche entre Butgenbach et Robertville","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29498,555623151,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Warche en amont de Butgenbach","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29449,555623152,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Sources de l'Our et de l'Ensebach","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29546,555623153,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée inférieure de l'Our et ses affluents","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29417,555623154,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"La Calestienne entre Barvaux et Bomal","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29518,555623155,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Ourthe entre La Roche et Hotton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29376,555623156,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fagne de la Crépale et prairies de Malempré","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29338,555623157,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin supérieur de la Salm","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29307,555623158,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Basse vallée de la Wamme","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29519,555623159,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Ourthe entre Nisramont et La Roche","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29408,555623160,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute-Wimbe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29404,555623161,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute-Sambre en aval de Thuin","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29403,555623162,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute-Sambre en amont de Thuin","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29422,555623163,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"La Fagne entre Bailièvre et Robechies","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29507,555623164,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Eau Blanche à Virelles","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29346,555623165,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois de Bourlers et de Baileux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29321,555623167,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Semois de Florenville à Auby","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29322,555623168,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Semois de Jamoigne à Chiny","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29320,555623169,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Semois de Etalle à Tintigny","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29552,555623170,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées de Laclaireau et du Rabais","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29550,555623171,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées de la Vire et du Ton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29393,555623172,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Forêts et marais bajociens de Baranzy à Athus","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29331,555623173,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin du Samson","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29484,555623174,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Meuse d'Yvoir à Dave","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29485,555623175,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Meuse en amont d'Hastière","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29328,555623176,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de l'Iwène","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29474,555623177,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Lesse entre Villers-sur-Lesse et Houyet","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29556,555623178,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées des Ruisseaux de Fenffe et du Vachau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29557,555623179,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées des Ruisseaux de Rempeine et de la Scheloupe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29458,555623180,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Dyle à Ottignies","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29510,555623181,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Escaut en aval de Tournai","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29526,555623182,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Kolvenderbach","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29420,555623184,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"La Calestienne entre Marenne et Hotton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29385,555623185,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fanges des sources de l'Aisne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29335,555623186,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin inférieur de l'Ourthe orientale","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29351,555623187,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bois de la Houssière","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29464,555623188,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Haine en aval de Mons","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29409,555623189,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haut-Pays des Honnelles","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29455,555623190,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Biesmelle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29397,555623191,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute vallée de la Thure","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29465,555623192,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Hante","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29432,555623193,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Massifs forestiers entre Momignies et Chimay","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29435,555623194,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Montagne Saint-Pierre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29461,555623195,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Gueule en amont de Kelmis","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29421,555623196,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"La Calestienne entre Oppagne et Barvaux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29308,555623197,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Basse vallée de l'Aisne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29398,555623198,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute vallée de l'Aisne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29373,555623199,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Ennal et Grand Fond","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29431,555623200,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Massif forestier de Daverdisse","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29340,555623201,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin supérieur de la Wiltz","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29405,555623202,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute-Sûre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29319,555623203,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Semois de Bouillon à Alle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29406,555623204,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute-Vierre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29324,555623205,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Semois entre Tintigny et Jamoigne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29325,555623206,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de l'Attert","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29339,555623207,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin supérieur de la Vire et du Ton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29423,555623208,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"La Famenne entre Eprave et Havrenne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29508,555623209,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Eau Blanche entre Aublain et Mariembourg","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29333,555623210,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin fagnard de l'Hermeton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29418,555623211,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"La Calestienne entre Frasnes et Doische","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29316,555623212,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Lesse entre Villers-su-Lesse et Chanly","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29476,555623213,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Lomme de Grupont à Rochefort","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29402,555623214,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute-Lomme","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29559,555623215,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées du Ruisseau de Mellier et de la Mandebras","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29318,555623216,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Marche","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29327,555623217,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de l'Hermeton en aval de Vodelée","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29500,555623218,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Wimbe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29470,555623219,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Hulle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29315,555623220,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Houille en amont de Gedinne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29501,555623221,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Almache en amont de Gembes","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29492,555623222,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Semois en aval d'Alle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29542,555623223,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Train","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29555,555623224,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées de l'Oise et de la Wartoise","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29400,555623225,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute vallée de l'Eau Noire","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29326,555623226,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de l'Escaut en amont de Tournai","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29531,555623227,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau de Bolland","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29309,555623228,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Basse vallée de l'Amblève","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29467,555623229,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Hoëgne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29383,555623230,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Fagnes de Stavelot et vallée de l'Eau Rouge","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29448,555623231,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Sources de l'Amblève","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29399,555623232,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute vallée de l'Amblève entre Heppenbach et Montenau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29517,555623233,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Ourthe entre Hotton et Barvaux-sur-Ourthe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29360,555623234,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Camp militaire de Marche-en-Famenne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29375,555623235,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Etangs de Longchamps et de Noville","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29401,555623236,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Haute-Lesse","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29532,555623237,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ruisseau de Breuvanne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29426,555623238,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Marais de la Haute-Semois et Bois de Heinsch","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29548,555623239,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallées de la Chevratte","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29541,555623240,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Ton et Côte bajocienne de Montquintin à Ruette","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29480,555623241,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Meuse de Dave à Marche-les-Dames","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29523,555623242,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée du Bocq","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29486,555623243,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Molignée","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29481,555623244,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Meuse de Dinant à Yvoir","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29473,555623245,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Lesse en aval de Houyet","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29430,555623246,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Massif forestier de Cerfontaine","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29332,555623247,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin fagnard de l'Eau Blanche en aval de Mariembourg","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29511,555623248,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de l'Ilèwe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29469,555623249,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Vallée de la Houille en aval de Gedinne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -29039,555623480,"BEL","Natura 2000 National Monitoring",2007,"For storage only",40,"Bassin de la Lesse entre Villers-su-Lesse et Chanly","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch",FALSE -911,555623628,"PER","METT",2016,"For storage only",13,"Sierra del Divisor","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish",FALSE -28173,555623830,"TZA","METT",2011,"For storage only",28,"Vikindu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28172,555623837,"TZA","METT",2011,"For storage only",28,"Ruvu South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28170,555623841,"TZA","METT",2011,"For storage only",28,"Pugu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28257,555623854,"TZA","METT",2013,"For storage only",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28233,555623854,"TZA","METT",2015,"For storage only",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28169,555623854,"TZA","METT",2011,"For storage only",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28216,555623854,"TZA","METT",2014,"For storage only",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28209,555623854,"TZA","METT",2008,"For storage only",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28129,555623855,"TZA","METT",2005,"For storage only",28,"Mafwomero","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28167,555623860,"TZA","METT",2011,"For storage only",28,"Mchungu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28115,555624063,"TZA","METT",2005,"For storage only",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28256,555624063,"TZA","METT",2013,"For storage only",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28253,555624063,"TZA","METT",2007,"For storage only",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28208,555624063,"TZA","METT",2009,"For storage only",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28215,555624063,"TZA","METT",2014,"For storage only",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28254,555624063,"TZA","METT",2006,"For storage only",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28165,555624063,"TZA","METT",2011,"For storage only",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28230,555624063,"TZA","METT",2015,"For storage only",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28140,555624063,"TZA","METT",0,"For storage only",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28174,555624064,"TZA","METT",2012,"For storage only",28,"Lionja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28164,555624074,"TZA","METT",2011,"For storage only",28,"Kikoka","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28163,555624075,"TZA","METT",2011,"For storage only",28,"Kikale","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28171,555624097,"TZA","METT",2011,"For storage only",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28255,555624097,"TZA","METT",2006,"For storage only",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28210,555624097,"TZA","METT",2009,"For storage only",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28252,555624097,"TZA","METT",2007,"For storage only",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28116,555624097,"TZA","METT",2005,"For storage only",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -28117,555624100,"TZA","METT",2005,"For storage only",28,"Chome","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English",FALSE -9433,555624300,"GEO","METT",2017,"For storage only",20,"Birtvisi","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -9432,555624300,"GEO","METT",2015,"For storage only",20,"Birtvisi","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English",FALSE -1407,555624633,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Inner Hebrides and the Minches","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1408,555624634,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Southern North Sea","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1409,555624635,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Bristol Channel Approaches / Dynesfeydd Môr Hafren","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1410,555624636,"GBR","Common Standards Monitoring",2013,"For storage only",18,"West Wales Marine / Gorllewin Cymru Forol","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1411,555624637,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Anglesey Marine / Gogledd Môn Forol","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -1412,555624638,"GBR","Common Standards Monitoring",2013,"For storage only",18,"North Channel","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -20834,555624666,"MDG","SAPM",2016,"For storage only",34,"Site Bioculturel d'Antrema","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20825,555624672,"MDG","IEG",2016,"For storage only",34,"Barrière de Corail Nosy Ve Androka","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -20786,555624680,"MDG","METT",2016,"For storage only",34,"Complexe des Zones Humides de Bemanevika","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French",FALSE -2335,555624684,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Killough Bay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -2336,555624685,"GBR","Common Standards Monitoring",2013,"For storage only",18,"Outer Ards","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English",FALSE -33,555625666,"AND","National Inventory",2017,"For storage only",2,"Parc Natural Comunal de les Valls del Comapedrosa","Municipal Natural Park","Andorra Management Effectiveness Evaluation","Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,"Catalan",FALSE -32,555625667,"AND","National Inventory",2016,"For storage only",2,"Parc Natural de la Vall de Sorteny","Municipal Natural Park","Andorra Management Effectiveness Evaluation","Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,"Catalan",FALSE -9628,555625695,"LIE","METT",2017,"For storage only",22,"Matilaberg","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9626,555625696,"LIE","METT",2017,"For storage only",22,"Mareewiesen","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9632,555625697,"LIE","METT",2017,"For storage only",22,"Periol, Bofel, Neufeld, Undera Forst","Protected Landscape","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9646,555625698,"LIE","METT",2017,"For storage only",22,"Wesa-Fokswinkel","Protected Landscape","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English",FALSE -9814,555625715,"BHS","METT-RAPPAM",2018,"For storage only",25,"Pigeon Creek & Snow Bay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9815,555625716,"BHS","METT-RAPPAM",2018,"For storage only",25,"Southern Great Lake National Park","Protected Area","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9812,555625717,"BHS","METT-RAPPAM",2018,"For storage only",25,"Graham’s Harbour Iguana and Seabird National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9816,555625718,"BHS","METT-RAPPAM",2018,"For storage only",25,"Green’s Bay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -9813,555625719,"BHS","METT-RAPPAM",2018,"For storage only",25,"West Coast Marine Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English",FALSE -10569,555625807,"KOR","Korea SOP",2016,"For storage only",26,"233_Gujido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10562,555625808,"KOR","Korea SOP",2016,"For storage only",26,"234_Seokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10555,555625809,"KOR","Korea SOP",2016,"For storage only",26,"235_Donggyeokryulbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10556,555625810,"KOR","Korea SOP",2016,"For storage only",26,"236_Seogyeokryulbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10557,555625811,"KOR","Korea SOP",2016,"For storage only",26,"237_Heuinyeo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10558,555625812,"KOR","Korea SOP",2016,"For storage only",26,"238_Boksaengdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10563,555625813,"KOR","Korea SOP",2016,"For storage only",26,"239_Yuksando","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10561,555625814,"KOR","Korea SOP",2016,"For storage only",26,"240_Nonggado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10560,555625815,"KOR","Korea SOP",2016,"For storage only",26,"241_Angeochillidon+¦e-Ñvati","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10559,555625816,"KOR","Korea SOP",2016,"For storage only",26,"242_Haseodo(Sureongdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10568,555625817,"KOR","Korea SOP",2016,"For storage only",26,"243_Solyeodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10567,555625818,"KOR","Korea SOP",2016,"For storage only",26,"244_Jasarijedo(5)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10566,555625819,"KOR","Korea SOP",2016,"For storage only",26,"245_Daehyuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10565,555625820,"KOR","Korea SOP",2016,"For storage only",26,"246_Sodeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10564,555625821,"KOR","Korea SOP",2016,"For storage only",26,"247_Chunbokdo(Chungbokdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -9874,555625826,"KOR","Korea SOP",2016,"For storage only",26,"Binggye","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10299,555625851,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam AsanInjumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10296,555625852,"KOR","Korea SOP",2016,"For storage only",26,"Chungnam Seocheon Seocheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10309,555625862,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Cheolwon Cheolwoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10280,555625863,"KOR","Korea SOP",2016,"For storage only",26,"Gangwon Chuncheon Soyangro","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10305,555625865,"KOR","Korea SOP",2016,"For storage only",26,"Ghungnam Dangjin Seokmunmyun","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10321,555625896,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Goyang Deokyanggu 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10310,555625897,"KOR","Korea SOP",2016,"For storage only",26,"Gyeonggi Pochoen Changsumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10303,555625898,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changnyeong Changnyeongeup 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10304,555625899,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Changnyeong Changnyeongeup 4","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10308,555625900,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Geochang Gajomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10298,555625901,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Goseong Haimyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10293,555625902,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Hapcheon Gayamyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10316,555625903,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Namhaeeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10315,555625904,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Sangjumyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10314,555625905,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Sangjumyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10318,555625906,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Seolcheonyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10317,555625907,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Seolcheonyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10319,555625908,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Namhae Seolcheonyeon 4","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10277,555625909,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Danseongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10279,555625910,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Danseongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10276,555625911,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Geumseomyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10278,555625912,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Geumseomyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10282,555625913,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Samjangmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10283,555625914,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Samjangmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10284,555625915,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Samjangmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10286,555625916,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Samjangmyeon 4","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10289,555625917,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Samjangmyeon 5","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10281,555625918,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Sancheongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10292,555625919,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Sicheonmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10290,555625920,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Sicheonmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10294,555625921,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Sicheonmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10295,555625922,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Sancheong Sicheonmyeon 4","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10311,555625923,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Tongyeong Dosanmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10312,555625924,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Yangsan Habukmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10313,555625925,"KOR","Korea SOP",2016,"For storage only",26,"Gyeongnam Yangsan Habukmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10275,555625940,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Iksan Woongpomyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10320,555625941,"KOR","Korea SOP",2016,"For storage only",26,"Jeonbuk Namwon Sangokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10285,555625942,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Gwangyang Jinsangmyun","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10300,555625943,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Jangseong Jangseongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10301,555625944,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Jangseong Samgyemyun","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10287,555625945,"KOR","Korea SOP",2016,"For storage only",26,"Jeonnam Yeongam Yeongameup 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10297,555626024,"KOR","Korea SOP",2016,"For storage only",26,"Sejong Geumnammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10306,555626028,"KOR","Korea SOP",2016,"For storage only",26,"Seoul Jingwan","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10307,555626029,"KOR","Korea SOP",2016,"For storage only",26,"Seoul Jungrangcheon Sangryu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10302,555626030,"KOR","Korea SOP",2016,"For storage only",26,"Seoul Nanjihanganggongwon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10288,555626043,"KOR","Korea SOP",2016,"For storage only",26,"Ulsan Junggu Taehwadong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -10291,555626044,"KOR","Korea SOP",2016,"For storage only",26,"Ulsan Namgu Mugeodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English",FALSE -110,555626096,"ARG","GOBI Survey",2015,"For storage only",3,"Patagonia Azul","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish",FALSE diff --git a/lib/data/seeds/pame_data-2019-08-05.csv b/lib/data/seeds/pame_data-2019-08-05.csv new file mode 100644 index 000000000..5b096bbb9 --- /dev/null +++ b/lib/data/seeds/pame_data-2019-08-05.csv @@ -0,0 +1,28173 @@ +"evaluation_id","wdpa_id","ISO3","methodology","year","url","metadata_id","name","designation","source_data_title","source_resp_party","source_year","source_language","restricted","assessment_is_public",, +1,555622076,"ARE","METT",2016,"Not Reported",1,"Al Aqqa","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +2,555622075,"ARE","METT",2016,"Not Reported",1,"Al Bidiya","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +3,555622070,"ARE","METT",2016,"Not Reported",1,"Al Ghaf of Nazwa","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +4,555542444,"ARE","METT",2016,"Not Reported",1,"Al Houbara","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +5,555622067,"ARE","METT",2016,"Not Reported",1,"Al Marmoun Desert","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +6,555622077,"ARE","METT",2016,"Not Reported",1,"Al Naseem","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +7,555558374,"ARE","METT",2016,"Not Reported",1,"Al Wathba","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +8,555622072,"ARE","METT",2016,"Not Reported",1,"Al Wohoosh Desert","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +9,555542441,"ARE","METT",2016,"Not Reported",1,"Al Yasat","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +10,555558373,"ARE","METT",2016,"Not Reported",1,"Alqurm Wa Lehfeiyah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +11,555622078,"ARE","METT",2016,"Not Reported",1,"Al Zorah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +12,555542442,"ARE","METT",2016,"Not Reported",1,"Arabian Oryx","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +13,555622074,"ARE","METT",2016,"Not Reported",1,"Birds Island (Jazeerat Al Tuyur)","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +14,555622073,"ARE","METT",2016,"Not Reported",1,"Dhadna","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +15,365025,"ARE","METT",2016,"Not Reported",1,"Dubai Desert Conservation Reserve (Al Maha)","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +16,17360,"ARE","METT",2016,"Not Reported",1,"Eastern Mangrove","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +17,555622069,"ARE","METT",2016,"Not Reported",1,"Ed-Dhelaimah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +18,555622084,"ARE","METT",2016,"Not Reported",1,"Elebriddi","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +19,555622086,"ARE","METT",2016,"Not Reported",1,"Elfaya","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +20,312960,"ARE","METT",2016,"Not Reported",1,"Hatta","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +21,312886,"ARE","METT",2016,"Not Reported",1,"Jabal Ali","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +22,555592552,"ARE","METT",2016,"Not Reported",1,"Jazirat Sir Bu Na'air","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +23,555542446,"ARE","METT",2016,"Not Reported",1,"Marawah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +24,555622071,"ARE","METT",2016,"Not Reported",1,"Nazwa Mountain","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +25,555622082,"ARE","METT",2016,"Not Reported",1,"Qaser Al Sarab","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +26,555542722,"ARE","METT",2016,"Not Reported",1,"Ras Al Khor","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +27,555622079,"ARE","METT",2016,"Not Reported",1,"Ras Ghanada","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +28,555542723,"ARE","METT",2016,"Not Reported",1,"Wadi Wurayah","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +29,555622083,"ARE","METT",2016,"Not Reported",1,"Wasit","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +31,555622068,"ARE","METT",2016,"Not Reported",1,"Lemdynah Protected Area","Protected Area","UAE Management Effectiveness Evaluation","Ministry of Climate Change and Environment",2018,"Arabic","FALSE","FALSE",, +32,555625667,"AND","National Inventory",2016,"Not Reported",2,"Parc Natural de la Vall de Sorteny","Municipal Natural Park","Andorra Management Effectiveness Evaluation","Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,"Catalan","FALSE","FALSE",, +33,555625666,"AND","National Inventory",2017,"Not Reported",2,"Parc Natural Comunal de les Valls del Comapedrosa","Municipal Natural Park","Andorra Management Effectiveness Evaluation","Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,"Catalan","FALSE","FALSE",, +34,555549480,"AND","National Inventory",2016,"Not Reported",2,"Parc Natural de la Vall de Sorteny","Ramsar Site, Wetland of International Importance","Andorra Management Effectiveness Evaluation","Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,"Catalan","FALSE","FALSE",, +35,555592572,"AND","National Inventory",2017,"Not Reported",2,"Parc Natural Comunal de les Valls del Comapedrosa","Ramsar Site, Wetland of International Importance","Andorra Management Effectiveness Evaluation","Ministeri de Medi Ambient, Agricultura i Sostenibilitat",2018,"Catalan","FALSE","FALSE",, +36,19612,"ARG","METT",2010,"Not Reported",3,"Punta Tombo","Tourist Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +37,555558356,"ARG","METT",2012,"Not Reported",3,"Aves Migratorias","Provincial Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +38,97481,"ARG","METT",2009,"Not Reported",3,"Bahía de San Antonio","Protected Landscape","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +39,21226,"ARG","METT",2009,"Not Reported",3,"Cabo Vírgenes","Provincial Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +40,300021,"ARG","Valdiviana",2001,"Not Reported",3,"Cañada Molina","Provincial Nature Monument","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +41,300025,"ARG","Valdiviana",2001,"Not Reported",3,"Cerro Currumahuida","Forest Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +42,18,"ARG","METT",2009,"Not Reported",3,"Chaco","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +43,30844,"ARG","METT",2009,"Not Reported",3,"Complejo Islote Lobos","Scientific Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +44,16873,"ARG","Valdiviana",2001,"Not Reported",3,"Copahue Caviahue","Provincial Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +45,16846,"ARG","METT",2010,"Not Reported",3,"Copo","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +46,98129,"ARG","METT",2012,"Not Reported",3,"Costa Atlántica Tierra del Fuego","Hemispheric Shorebird Reserve and Ramsar Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +47,10722,"ARG","GOBI Survey",2006,"Not Reported",3,"Costero del Sur","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +48,220252,"ARG","GOBI Survey",2006,"Not Reported",3,"Delta del Parana","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +49,77777,"ARG","Valdiviana",2001,"Not Reported",3,"Boswell Bay Beaches","State Marine Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +50,16890,"ARG","METT",2005,"Not Reported",3,"Iberá","Provincial Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +51,4332,"ARG","METT",2003,"Not Reported",3,"Iguazú","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +52,10901,"ARG","WH Outlook Report",2014,"Not Reported",3,"Parc national de l'Iguazu","World Heritage Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +53,16900,"ARG","METT",2009,"Not Reported",3,"Ría de Puerto Deseado","Intangible Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +54,220291,"ARG","WH Outlook Report",2014,"Not Reported",3,"Parcs naturels d’Ischigualasto / Talampaya","World Heritage Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +55,300054,"ARG","METT",2010,"Not Reported",3,"Isla Pinguinos","Provincial Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +56,900669,"ARG","METT",2009,"Not Reported",3,"Jaaukanigás","Ramsar Site, Wetland of International Importance","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +57,300059,"ARG","Valdiviana",2001,"Not Reported",3,"Lago Baggilt","Protected Nature Area","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +58,300060,"ARG","Valdiviana",2001,"Not Reported",3,"Lago Guacho","Forest Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +59,17,"ARG","Parks profiles",2006,"Not Reported",3,"Lago Puelo","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +60,17,"ARG","Valdiviana",2001,"Not Reported",3,"Lago Puelo","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +61,166726,"ARG","Valdiviana",2001,"Not Reported",3,"Lago Puelo","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +62,97479,"ARG","Valdiviana",2001,"Not Reported",3,"Laguna Los Juncos","Wildlife Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +63,900662,"ARG","GOBI Survey",2006,"Not Reported",3,"Laguna Oca del Rio Paraguay","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +64,7,"ARG","Valdiviana",2001,"Not Reported",3,"Lanín","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +65,4330,"ARG","Valdiviana",2001,"Not Reported",3,"Lanín","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +66,7,"ARG","Parks profiles",2006,"Not Reported",3,"Lanín","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +67,900725,"ARG","GOBI Survey",2006,"Not Reported",3,"Las Yungas","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +68,900725,"ARG","METT",2003,"Not Reported",3,"Las Yungas","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +69,61822,"ARG","METT",2003,"Not Reported",3,"Los Alerces","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +70,8,"ARG","Parks profiles",2006,"Not Reported",3,"Los Alerces","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +71,8,"ARG","Valdiviana",2001,"Not Reported",3,"Los Alerces","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +72,61822,"ARG","Valdiviana",2001,"Not Reported",3,"Los Alerces","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +73,22,"ARG","Valdiviana",2001,"Not Reported",3,"Los Arrayanes","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +74,16892,"ARG","METT",2003,"Not Reported",3,"Monte de las Barrancas","Wildlife Refuge","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +75,2570,"ARG","WH Outlook Report",2014,"Not Reported",3,"Parc national de Los Glaciares","World Heritage Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +76,97545,"ARG","METT",2009,"Not Reported",3,"Mburucuyá","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +77,166727,"ARG","METT",2003,"Not Reported",3,"Monte León","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +78,11646,"ARG","GOBI Survey",2006,"Not Reported",3,"Ñancuñan","Ecological and Forest Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +79,2497,"ARG","Parks profiles",2005,"Not Reported",3,"Nahuel Huapi","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +80,2497,"ARG","Valdiviana",2001,"Not Reported",3,"Nahuel Huapi","National Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +81,61824,"ARG","Valdiviana",2001,"Not Reported",3,"Nahuel Huapi","National Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +82,300073,"ARG","Valdiviana",2001,"Not Reported",3,"Nant y Fall (Arroyo Las Caídas)","Tourist Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +83,555558361,"ARG","METT",2012,"Not Reported",3,"Patagonia Austral","Interjurisdictional Coastal Marine Park","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +84,198291,"ARG","WH Outlook Report",2014,"Not Reported",3,"Península Valdés","World Heritage Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +85,555558344,"ARG","METT",2012,"Not Reported",3,"Puerto Lobos","Protected Landscape","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +86,16880,"ARG","METT",2009,"Not Reported",3,"Punta Bermeja","Protected Nature Area","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +87,16831,"ARG","METT",2010,"Not Reported",3,"Punta Lara","Mixed Integral Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +88,16882,"ARG","METT",2009,"Not Reported",3,"Caleta de los Loros","Multiple Use Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +89,900779,"ARG","Birdlife IBA",2013,"Not Reported",3,"Bañados del Río Dulce y Laguna de Mar Chiquita","Ramsar Site, Wetland of International Importance","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +90,555587123,"ARG","Birdlife IBA",2013,"Not Reported",3,"Bañados R Dulce y Lag Mar Chiquita","Multiple Use Provincial Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +91,97483,"ARG","Valdiviana",2001,"Not Reported",3,"Ría Azul - Lago Escondido","Protected Nature Area","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +92,97478,"ARG","Valdiviana",2001,"Not Reported",3,"Rio Limay","Protected Nature Area - Protected Landscape","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +93,19604,"ARG","METT",2003,"Not Reported",3,"Bahía de Samborombón","Integral Nature Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +94,23,"ARG","GOBI Survey",2006,"Not Reported",3,"San Guillermo","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +95,98129,"ARG","METT",2009,"Not Reported",3,"Costa Atlántica Tierra del Fuego","Hemispheric Shorebird Reserve and Ramsar Site","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +96,555587168,"ARG","GOBI Survey",2014,"Not Reported",3,"Valdes","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +97,900725,"ARG","GOBI Survey",2009,"Not Reported",3,"Las Yungas","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +98,145501,"ARG","GOBI Survey",2009,"Not Reported",3,"Parque Atlantico Mar Chiquito","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +99,16894,"ARG","GOBI Survey",2009,"Not Reported",3,"Laguna de los Pozuelos","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +100,5082,"ARG","GOBI Survey",2009,"Not Reported",3,"Laguna Blanca","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +101,220252,"ARG","GOBI Survey",2009,"Not Reported",3,"Delta del Parana","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +102,23,"ARG","GOBI Survey",2009,"Not Reported",3,"San Guillermo","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +103,10722,"ARG","GOBI Survey",2009,"Not Reported",3,"Costero del Sur","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +104,555547531,"ARG","GOBI Survey",2009,"Not Reported",3,"Pereyra Iraola","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +105,555587169,"ARG","GOBI Survey",2009,"Not Reported",3,"Andino Nopatagonica","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +106,900662,"ARG","GOBI Survey",2009,"Not Reported",3,"Laguna Oca del Rio Paraguay","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +107,220253,"ARG","GOBI Survey",2009,"Not Reported",3,"Riacho Teuquito","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +108,11584,"ARG","GOBI Survey",2009,"Not Reported",3,"Ñacuñan","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +109,93409,"ARG","GOBI Survey",2009,"Not Reported",3,"Yabotí","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +110,555626096,"ARG","GOBI Survey",2015,"Not Reported",3,"Patagonia Azul","UNESCO-MAB Biosphere Reserve","Áreas Protegidas enfocadas a la Efectividad del Manejo","Jorge Fabricant – Técnico Dirección de Ordenamiento Territorial, Suelos y Lucha contra la Desertificación, del Ministerio de Ambiente y Desarrollo Sustentable",2018,"Spanish","FALSE","FALSE",, +111,301949,"BTN","Bhutan METT+",2016,"Not Reported",4,"Bumdeling ","Widlife Sanctuary","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English","FALSE","FALSE",, +112,5061,"BTN","Bhutan METT+",2016,"Not Reported",4,"Jigme Dorji ","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English","FALSE","FALSE",, +114,5066,"BTN","Bhutan METT+",2016,"Not Reported",4,"Jigme Singye Wangchuck ","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English","FALSE","FALSE",, +115,64417,"BTN","Bhutan METT+",2016,"Not Reported",4,"Phibsoo ","Widlife Sanctuary","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English","FALSE","FALSE",, +117,20445,"BTN","Bhutan METT+",2016,"Not Reported",4,"Phrumsengla ","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English","FALSE","FALSE",, +118,7996,"BTN","Bhutan METT+",2016,"Not Reported",4,"Royal Manas","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English","FALSE","FALSE",, +119,64415,"BTN","Bhutan METT+",2016,"Not Reported",4,"Sakteng","Widlife Sanctuary","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English","FALSE","FALSE",, +121,555576122,"BTN","Bhutan METT+",2016,"Not Reported",4,"Wangchuck Centennial ","National Park","Bhutan protected areas management effectiveness evaluations","Ministry of Agriculture and Forests",2018,"English","FALSE","FALSE",, +122,9786,"MYS","METT",2011,"Not Reported",5,"Pulau Redang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +123,9786,"MYS","METT",2013,"Not Reported",5,"Pulau Redang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +124,9786,"MYS","METT",2005,"Not Reported",5,"Pulau Redang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +125,9812,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2015,"Not Reported",5,"Pulau Sipadan","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +126,10028,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Perhentian Besar","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +127,18307,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Tioman","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +128,19636,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2015,"Not Reported",5,"Pulau Rawa","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +129,19637,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Babi Hujong","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +130,19638,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Babi Tengah","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +131,19639,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Babi Besar","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +132,19640,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Tinggi","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +133,19641,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Mentigi","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +134,19642,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Sibu","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +135,19643,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Ceben","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +136,19644,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Tulai","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +137,19645,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Sembilang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +138,19646,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Seri Buat","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +139,19647,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2015,"Not Reported",5,"Pulau Perhentian Kecil","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +140,19648,"MYS","Combination of Methods (PAME and METT)",2012,"Not Reported",5,"Pulau Lang Tengah","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +141,198387,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Sibu Hujung","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +142,198389,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Gual","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +143,198391,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Harimau","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +144,198392,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Mensirip","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +145,198394,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Pemanggil","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +146,198395,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Aur","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +147,198397,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Sri Buat","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +148,198401,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2015,"Not Reported",5,"Pulau Susu Dara","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +149,198402,"MYS","Combination of Methods (PAME and METT)",2012,"Not Reported",5,"Pulau Lima","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +150,198406,"MYS","Combination of Methods (PAME and METT)",2012,"Not Reported",5,"Pulau Ekor Tebu","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +151,198407,"MYS","Combination of Methods (PAME and METT)",2012,"Not Reported",5,"Pulau Pinang","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +152,198410,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Labas","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +153,198411,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Sepoi","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +154,198412,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Jahat","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +155,198413,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2014,"Not Reported",5,"Pulau Tokong Bara","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +156,198420,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2016,"Not Reported",5,"Pulau Rusukan Besar","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +157,198421,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2016,"Not Reported",5,"Pulau Rusukan Kecil","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +158,198422,"MYS","Management Effectiveness Assessment Tool (MEAT) developed and adapted from CTI CFF.",2016,"Not Reported",5,"Pulau Kuraman","Marine Park","Compendium of Data for Marine Parks 2015-2016","Department of Marine Park Malaysia",2018,"Bahasa Malaysian","FALSE","FALSE",, +159,555592745,"COL","AEMAPPS",2016,"Not Reported",6,"Acandi Playon Y Playona","Fauna Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +160,303541,"COL","AEMAPPS",2016,"Not Reported",6,"Alto Fragua - Indiwasi","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +161,135,"COL","AEMAPPS",2016,"Not Reported",6,"Amacayacu","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +162,555592746,"COL","AEMAPPS",2016,"Not Reported",6,"Bahia Portete Kaurrele","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +163,20002,"COL","AEMAPPS",2016,"Not Reported",6,"Campo Alegre","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +164,19993,"COL","AEMAPPS",2016,"Not Reported",6,"Catatumbo - Bari","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +165,143,"COL","AEMAPPS",2016,"Not Reported",6,"Chingaza","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +166,166738,"COL","AEMAPPS",2016,"Not Reported",6,"Sistema Delta Estuarino del Río Magdalena, Ciénaga Grande de Santa Marta","Ramsar Site, Wetland of International Importance","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +167,555511940,"COL","AEMAPPS",2016,"Not Reported",6,"Complejo Volcanico Doña Juana Cascabel","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +168,555592686,"COL","AEMAPPS",2016,"Not Reported",6,"Corales De Profundidad","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +169,2234,"COL","AEMAPPS",2016,"Not Reported",6,"Los Corales Del Rosario Y De San Bernardo","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +170,134,"COL","AEMAPPS",2016,"Not Reported",6,"Cordillera De Los Picachos","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +171,153,"COL","AEMAPPS",2016,"Not Reported",6,"Cueva De Los Guacharos","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +172,133,"COL","AEMAPPS",2016,"Not Reported",6,"El Cocuy","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +173,303546,"COL","AEMAPPS",2016,"Not Reported",6,"El Corchal ""el Mono Hernandez""","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +174,129,"COL","AEMAPPS",2016,"Not Reported",6,"El Tuparro","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +175,138,"COL","AEMAPPS",2016,"Not Reported",6,"Los Farallones De Cali","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +176,12223,"COL","AEMAPPS",2016,"Not Reported",6,"Galeras","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +177,10754,"COL","AEMAPPS",2016,"Not Reported",6,"Gorgona","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +178,35272,"COL","AEMAPPS",2016,"Not Reported",6,"Guanenta-alto Rio Fonce","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +179,127,"COL","AEMAPPS",2016,"Not Reported",6,"Iguaque","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +180,3009,"COL","AEMAPPS",2016,"Not Reported",6,"Isla De La Corota","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +181,150,"COL","AEMAPPS",2016,"Not Reported",6,"Isla De Salamanca","Park Way","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +182,142,"COL","AEMAPPS",2016,"Not Reported",6,"Los Katios","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +183,9400,"COL","AEMAPPS",2016,"Not Reported",6,"La Paya","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +184,139,"COL","AEMAPPS",2016,"Not Reported",6,"Las Hermosas - Gloria Valencia De Castaño","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +185,148,"COL","AEMAPPS",2016,"Not Reported",6,"Las Orquideas","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +186,128,"COL","AEMAPPS",2016,"Not Reported",6,"Los Colorados","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +187,31398,"COL","AEMAPPS",2016,"Not Reported",6,"Los Estoraques","Natual Area","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +188,555592786,"COL","AEMAPPS",2016,"Not Reported",6,"Los Flamencos","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +189,147,"COL","AEMAPPS",2016,"Not Reported",6,"Los Nevados","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +190,149,"COL","AEMAPPS",2016,"Not Reported",6,"Macuira","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +191,303552,"COL","AEMAPPS",2016,"Not Reported",6,"Malpelo","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +192,146,"COL","AEMAPPS",2016,"Not Reported",6,"Munchique","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +193,136,"COL","AEMAPPS",2016,"Not Reported",6,"Nevado Del Huila","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +194,19992,"COL","AEMAPPS",2016,"Not Reported",6,"Nukak","Natural Reserve","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +195,35271,"COL","AEMAPPS",2016,"Not Reported",6,"Old Providence Mc Bean Lagoon","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +196,555511938,"COL","AEMAPPS",2016,"Not Reported",6,"Plantas Medicinales Orito Ingi Ande","Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +197,303548,"COL","AEMAPPS",2016,"Not Reported",6,"Otun Quimbaya","Fauna and Flora Sanctuary","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +198,131,"COL","AEMAPPS",2016,"Not Reported",6,"Paramillo","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +199,145,"COL","AEMAPPS",2016,"Not Reported",6,"Pisba","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +200,19991,"COL","AEMAPPS",2016,"Not Reported",6,"Puinawai","Natural Reserve","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +201,141,"COL","AEMAPPS",2016,"Not Reported",6,"Purace","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +202,303547,"COL","AEMAPPS",2016,"Not Reported",6,"Rio Pure","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +203,140,"COL","AEMAPPS",2016,"Not Reported",6,"Sanquianga","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +204,555511937,"COL","AEMAPPS",2016,"Not Reported",6,"Selva De Florencia","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +205,19984,"COL","AEMAPPS",2016,"Not Reported",6,"Serrania De Chiribiquete","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +206,555511941,"COL","AEMAPPS",2016,"Not Reported",6,"Serrania De Los Churumbelos","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +207,555511939,"COL","AEMAPPS",2016,"Not Reported",6,"Serrania De Los Yariguies","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +208,130,"COL","AEMAPPS",2016,"Not Reported",6,"Sierra De La Macarena","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +209,132,"COL","AEMAPPS",2016,"Not Reported",6,"Sierra Nevada De Santa Marta","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +210,137,"COL","AEMAPPS",2016,"Not Reported",6,"Sumapaz","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +211,144,"COL","AEMAPPS",2016,"Not Reported",6,"Tama","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +212,13966,"COL","AEMAPPS",2016,"Not Reported",6,"Tatama","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +213,152,"COL","AEMAPPS",2016,"Not Reported",6,"Tayrona","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +214,19995,"COL","AEMAPPS",2016,"Not Reported",6,"Tinigua","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +215,555555692,"COL","AEMAPPS",2016,"Not Reported",6,"Uramba Bahia Malaga","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +216,303549,"COL","AEMAPPS",2016,"Not Reported",6,"Utria","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +217,555511936,"COL","AEMAPPS",2016,"Not Reported",6,"Yaigoje Apaporis","Natural National Park","Colombia protected areas management effectiveness evaluations","National Natural Parks Service of Colombia",2018,"Spanish","FALSE","FALSE",, +218,1295,"CIV","METT",2017,"Not Reported",7,"Mount Nimba Integral Reserve","Integral National Reserve","C�te d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French","FALSE","FALSE",, +219,721,"CIV","METT",2017,"Not Reported",7,"Tai National Park","National Park","C�te d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French","FALSE","FALSE",, +220,7522,"CIV","METT",2017,"Not Reported",7,"Azagny National Park","National Park","C�te d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French","FALSE","FALSE",, +221,20174,"CIV","METT",2017,"Not Reported",7,"Iles Ehotile National Park","National Park","C�te d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French","FALSE","FALSE",, +222,723,"CIV","METT",2017,"Not Reported",7,"Mont Sangbe National Park","National Park","C�te d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French","FALSE","FALSE",, +223,7523,"CIV","METT",2017,"Not Reported",7,"Comoe National Park","National Park","C�te d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French","FALSE","FALSE",, +224,9545,"CIV","Enhancing Our Heritage",2017,"Not Reported",7,"Como� National Park","World Heritage Site","C�te d'Ivoire Management Effectiveness Evaluation","Office Ivorien des Parcs et Réserves",2018,"French","FALSE","FALSE",, +225,349975,"GRC","Birdlife IBA",2013,"Not Reported",8,"Ethniko Parko Ygrotopon Amvrakikou","National Park","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +226,349976,"GRC","Birdlife IBA",2013,"Not Reported",8,"Ethniko Parko Ygrotopon Amvrakikou - Periochi prostasias tis fysis","Nature reserve zone in National Park","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +227,555527018,"GRC","Birdlife IBA",2013,"Not Reported",8,"Amvrakikos Kolpos, Delta Lourou Kai Arachthou (Petra, Mytikas, Evryteri Periochi)","Site of Community Importance (Habitats Directive)","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +228,555539662,"GRC","Birdlife IBA",2013,"Not Reported",8,"Amvrakikos Kolpos, Limnothalassa Katafourko Kai Korakonisia","Special Protection Area (Birds Directive)","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +229,555527017,"GRC","Birdlife IBA",2013,"Not Reported",8,"Antichasia Ori - Meteora","Site of Community Importance (Habitats Directive)","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +230,555539660,"GRC","Birdlife IBA",2013,"Not Reported",8,"Antichasia Ori Kai Meteora","Special Protection Area (Birds Directive)","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +231,11865,"GRC","METT",2003,"Not Reported",8,"Ethniko parko dasous Dadias - Lefkimmis - Soufliou","National Park","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +232,18862,"GRC","WH Outlook Report",2014,"Not Reported",8,"Meteora","World Heritage Site","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +233,18863,"GRC","WH Outlook Report",2014,"Not Reported",8,"Mount Athos","World Heritage Site","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +234,3025,"GRC","GOBI Survey",2006,"Not Reported",8,"Mount Olympus National Park","UNESCO-MAB Biosphere Reserve","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +235,673,"GRC","METT",2003,"Not Reported",8,"Pindos","Core zone in National (Woodland) Park","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +236,12431,"GRC","Wetland tracking tool",2005,"Not Reported",8,"Not Reported","Not Reported","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +237,3026,"GRC","GOBI Survey",2006,"Not Reported",8,"Gorge of Samaria National Park","UNESCO-MAB Biosphere Reserve","Greece Management Effectiveness Evaluation","Ministry of Environment and energy",2018,"Greek","FALSE","FALSE",, +238,115868,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Anhatomirim","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +239,115993,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Barra Do Rio Mamanguape","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +240,31756,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Carste Da Lagoa Santa","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +241,31755,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Cavernas Do Peruaçu","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +242,198356,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Chapada Do Araripe","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +243,555576473,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Costa Das Algas","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +244,313631,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Costa Dos Corais","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +245,351727,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Da Bacia Do Rio São João - Mico Leão","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +246,351716,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Da Baleia Franca","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +247,19458,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental De Cairuçu","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +248,116096,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental De Fernando De Noronha","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +249,351840,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental De Guapi-Mirim","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +250,7906,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental De Guaraqueçaba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +251,16105,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental De Petrópolis","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +252,115666,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Delta Do Parnaiba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +253,19755,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Do Igarapé Gelado","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +254,351841,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Do Planalto Central","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +255,351813,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Do Tapajós","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +256,555600305,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Ibirapuitã","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +257,198367,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Ilhas E Várzeas Do Rio Paraná","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +258,351746,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Meandros Do Araguaia","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +259,198355,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Serra Da Ibiapaba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +260,555600306,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Serra Da Mantiqueira","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +261,478423,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Proteção Ambiental Serra Da Meruoca","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +262,351721,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Relevante Interesse Ecológico Ilhas Queimada Grande E Queimada Pequena","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +263,351821,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Da Guanabara","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +264,555512220,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Da Serra Das Araras","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +265,351711,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Da Terra Do Meio","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +266,2216,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Aracuri-Esmeralda","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +267,5124,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Caracaraí","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +268,10822,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Carijós","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +269,351762,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Cuniã","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +270,18738,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Guaraqueçaba","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +271,10845,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Jutaí-Solimões","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +272,2218,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Maracá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +273,2219,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Maracá Jipioca","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +274,10826,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Niquiá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +275,10823,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Pirapitinga","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +276,2220,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Taiamã","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +277,116085,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Tamoios","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +278,2221,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica De Uruçuí-Una","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +279,351766,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Do Castanhão","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +280,4891,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Do Jari","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +281,5123,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Do Seridó","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +282,7908,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Do Taim","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +283,18740,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Dos Tupiniquins","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +284,10830,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Juami-Japurá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +285,351728,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Mico Leão Preto","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +286,10842,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Raso Da Catarina","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +287,2222,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Rio Acre","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +288,33608,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Samuel","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +289,115772,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Do Rio Ronuro","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +290,33712,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Do Rio Roosevelt","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +291,198359,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Altamira","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +292,351789,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Da Mata Grande","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +293,351791,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Da Restinga De Cabedelo","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +294,478413,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Açungui","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +295,19745,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Amapá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +296,351714,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Anauá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +297,351820,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Balata-Tufari","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +298,19759,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Bom Futuro","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +299,10811,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Canela","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +300,351722,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Capão Bonito","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +301,198360,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Carajás","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +302,10803,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Caxiuanã","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +303,351717,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Chapecó","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +304,351732,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Goytacazes","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +305,198350,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Humaitá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +306,19763,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Ibirama","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +307,351809,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Irati","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +308,198361,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Itacaiunas","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +309,198362,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Itaituba I","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +310,198363,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Itaituba Ii","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +311,351792,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Jacundá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +312,351763,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Jatuarana","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +313,351726,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Lorena","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +314,33751,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Macauã","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +315,31763,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Mapiá-Inauiní","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +316,19758,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Mário Xavier","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +317,351779,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Mulata","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +318,354008,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Negreiros","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +319,351764,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Nísia Floresta","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +320,351731,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Pacotuba","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +321,351807,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Palmares","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +322,351810,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Passa Quatro","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +323,10814,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Passo Fundo","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +324,351835,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Pau-Rosa","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +325,351790,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Piraí Do Sul","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +326,19746,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Purus","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +327,31768,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Roraima","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +328,351752,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De São Francisco","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +329,351811,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Silvânia","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +330,351771,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Sobral","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +331,10802,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Tapajós","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +332,31770,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Tapirapé-Aquiri","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +333,19747,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Tefé","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +334,10808,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional De Três Barras","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +335,351817,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Do Amaná","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +336,31759,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Do Amazonas","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +337,351788,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Do Araripe-Apodi","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +338,351815,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Do Crepori","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +339,478418,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Do Iquiri","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +340,351814,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Do Jamanxim","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +341,10815,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Do Jamari","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +342,351816,"BRA","RAPPAM",2015,"Not Reported",9,"Floresta Nacional Do Trairão","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +343,478424,"BRA","RAPPAM",2015,"Not Reported",9,"Monumento Natural Do Rio São Francisco","Natural Monument","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +344,351842,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Chandless","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +345,352062,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Da Serra Dos Martírios/Andorinhas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +346,352027,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Do Xingu","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +347,352197,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Igarapés Do Juruena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +348,555576433,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Do Matupiri","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +349,33617,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Serra Dos Reis","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +350,351741,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Cavernas Do Peruaçu","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +351,55,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Amazônia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +352,351806,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Chapada Das Mesas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +353,19447,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Chapada Diamantina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +354,19273,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Chapada Dos Guimarães","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +355,19448,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Lagoa Do Peixe","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +356,1974,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra Da Bocaina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +357,351730,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra Da Bodoquena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +358,65,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra Da Canastra","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +359,64,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra Da Capivara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +360,351748,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra Da Cutia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +361,351827,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra De Itabaiana","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +362,19275,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra Do Divisor","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +363,351828,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra Do Itajaí","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +364,351712,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra Do Pardo","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +365,351804,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Das Araucárias","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +366,62,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Das Emas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +367,2215,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional De Anavilhanas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +368,71,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional De Aparados Da Serra","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +369,555600317,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional De Boa Nova","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +370,351793,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional De Ilha Grande","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +371,56,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional De Pacaás Novos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +372,351718,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional De Saint-Hilaire/Lange","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +373,66,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional De São Joaquim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +374,73,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional De Sete Cidades","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +375,75,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional De Ubajara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +376,555576266,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Alto Cariri","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +377,57,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Cabo Orange","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +378,351818,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Jamanxim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +379,53,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Jaú","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +380,351839,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Juruena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +381,68,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Monte Pascoal","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +382,19762,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Monte Roraima","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +383,2581,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Pantanal Matogrossense","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +384,54,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Pico Da Neblina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +385,351819,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Rio Novo","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +386,19274,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Superagui","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +387,351833,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Dos Campos Amazônicos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +388,351824,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Dos Campos Gerais","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +389,19272,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Grande Sertão Veredas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +390,478431,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Mapinguari","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +391,81060,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Marinho Dos Abrolhos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +392,351784,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Montanhas Do Tumucumaque","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +393,478419,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Nascentes Do Lago Jari","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +394,198353,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Pau Brasil","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +395,198369,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Restinga De Jurubatiba","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +396,198351,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Serra Da Mocidade","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +397,198281,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Viruá","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +398,2186,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Augusto Ruschi","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +399,351738,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Da Mata Escura","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +400,351825,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Das Araucárias","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +401,351823,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Das Perobas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +402,6957,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica De Saltinho","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +403,18745,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica De Santa Isabel","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +404,52,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica De Serra Negra","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +405,48,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica De Una","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +406,5127,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Abufari","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +407,18742,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Córrego Grande","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +408,5126,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Guaporé","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +409,10795,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Gurupi","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +410,44,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Jaru","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +411,42,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Lago Piratuba","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +412,43,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Rio Trombetas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +413,6074,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Tapirapé","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +414,18744,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Tinguá","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +415,31752,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Do Uatumã","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +416,31750,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Guaribas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +417,31751,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Marinha Do Arvoredo","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +418,351795,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Nascentes Serra Do Cachimbo","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +419,168214,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica União","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +420,352139,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Cujubim","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +421,555576482,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Do Matupiri","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +422,555576206,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Do Rio Negro","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +423,19769,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Mamirauá","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +424,352137,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Rio Amapá","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +425,555599928,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Guariba-Roosevelt","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +426,31774,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Alto Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +427,351759,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Alto Tarauacá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +428,351834,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Arapixi","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +429,351777,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Auatí-Paraná","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +430,351772,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Baixo Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +431,351749,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Barreiro Das Antas","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +432,555576283,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Canutama","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +433,352135,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Catuá-Ipixuna","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +434,351756,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Cazumbá-Iracema","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +435,354007,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Chapada Limpa","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +436,31775,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Chico Mendes","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +437,351822,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Chocoaré-Mato Grosso","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +438,351737,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Corumbau","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +439,351829,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista De Canavieiras","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +440,351778,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista De Cururupu","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +441,351770,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Do Batoque","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +442,478409,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Do Ciriáco","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +443,351767,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Do Lago Do Capanã Grande","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +444,555576438,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Do Rio Gregório","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +445,351773,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Do Rio Jutaí","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +446,351802,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Ipaú-Anilzinho","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +447,478421,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Ituxí","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +448,351837,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Lago Do Cedro","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +449,351761,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Lago Do Cuniã","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +450,351781,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Maracanã","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +451,351725,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Marinha Arraial Do Cabo","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +452,351753,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Marinha Da Lagoa Do Jequiá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +453,351799,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Marinha De Gurupi-Piriá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +454,67715,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Marinha Pirajubaé","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +455,351797,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Marinha Tracuateua","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +456,351768,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Mata Grande","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +457,351769,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Médio Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +458,478425,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Prainha Do Canto Verde","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +459,478426,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Renascer","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +460,31776,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Rio Cajari","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +461,34026,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Rio Cautário","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +462,351830,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Rio Iriri","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +463,31777,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Rio Ouro Preto","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +464,33716,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Rio Pacaás Novos","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +465,478422,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Rio Xingu","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +466,351713,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Riozinho Da Liberdade","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +467,351785,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Riozinho Do Anfrísio","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +468,351780,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista São João Da Ponta","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +469,351776,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Tapajós Arapiuns","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +470,351831,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Terra Grande Pracuuba","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +471,351786,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Verde Para Sempre","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +472,555576210,"BRA","RAPPAM",2015,"Not Reported",9,"Refúgio De Vida Silvestre De Santa Cruz","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +473,478415,"BRA","RAPPAM",2015,"Not Reported",9,"Refúgio De Vida Silvestre De Una","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +474,478416,"BRA","RAPPAM",2015,"Not Reported",9,"Refúgio De Vida Silvestre Do Rio Dos Frades","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +475,351826,"BRA","RAPPAM",2015,"Not Reported",9,"Refúgio De Vida Silvestre Dos Campos De Palmas","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +476,61,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Dos Lençois Maranhenses","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +477,70,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Do Itatiaia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +478,10821,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Relevante Interesse Ecológica Manguezais Da Foz Do Rio Mamanguape","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +479,10843,"BRA","RAPPAM",2015,"Not Reported",9,"Refugio De Vida Silvestre Ilha Dos Lobos","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +480,18739,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Tupinambás","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +481,33609,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Serra Dos Três Irmãos","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +482,33612,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual De Guajará-Mirim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +483,33613,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual De Corumbiara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +484,33714,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Rio Preto-Jacundá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +485,33831,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Relevante Interesse Ecológica Javari Buriti","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +486,41084,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Relevante Interesse Ecológica Vale Dos Dinossauros","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +487,41087,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Mar. De Fernando De Noronha","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +488,67692,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Relevante Interesse Ecológica Projeto Dinâmica Biológica De Fragmentos Florestais","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +489,115769,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Serra Ricardo Franco","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +490,115907,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Relevante Interesse Ecológica Floresta Da Cicuta","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +491,115976,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Relevante Interesse Ecológica Mata De Santa Genebra","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +492,115977,"BRA","RAPPAM",2015,"Not Reported",9,"Área De Relevante Interesse Ecológica Matão De Cosmópolis","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +493,351744,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Marinha Da Baia De Iguapé","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +494,351747,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Do Rio Cautário","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +495,351758,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Das Nascentes Do Rio Parnaiba","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +496,351801,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Itatupã-Baquiá","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +497,351832,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Do Rio Unini","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +498,352013,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Do Cantão","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +499,352134,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Amanã","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +500,352136,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Piagaçu Purus","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +501,352138,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Uacarí","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +502,352140,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Do Uatumã","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +503,352146,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Rio Negro Setor Sul","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +504,352149,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Estadual Rio Negro Setor Norte","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +505,352198,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Do Grão Pará","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +506,352202,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica De Maicuru","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +507,478408,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Quilombo Do Frechal","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +508,478420,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Extrativista Do Médio Purús","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +509,478539,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Do Juma","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +510,555576157,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Furna Feia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +511,555576236,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Igapó-Açu","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +512,555576325,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Marinho Das Ilhas Dos Currais","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +513,555576334,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva Biológica Bom Jesus","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +514,555576352,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Da Serra Das Lontras","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +515,555599975,"BRA","RAPPAM",2015,"Not Reported",9,"Parque Nacional Guaricana","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +516,555600076,"BRA","RAPPAM",2015,"Not Reported",9,"Estação Ecológica Alto Maués","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +517,555600159,"BRA","RAPPAM",2015,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Nascentes Geraizeiras","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +518,115868,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Anhatomirim","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +519,478429,"BRA","SAMGe",2016,"Not Reported",9,"APA Bacia do Paraíba do Sul","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +520,115993,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Barra Do Rio Mamanguape","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +521,31756,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Carste Da Lagoa Santa","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +522,31755,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Cavernas Do Peruaçu","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +523,198356,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Chapada Do Araripe","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +524,555576473,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Costa Das Algas","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +525,313631,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Costa Dos Corais","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +526,19751,"BRA","SAMGe",2016,"Not Reported",9,"APA da Bacia do Rio Descoberto","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +527,19752,"BRA","SAMGe",2016,"Not Reported",9,"APA da Bacia do Rio São Bartolomeu","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +528,351727,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Da Bacia Do Rio São João - Mico Leão","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +529,351716,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Da Baleia Franca","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +530,351742,"BRA","SAMGe",2016,"Not Reported",9,"APA das Nascentes do Rio Vermelho","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +531,19458,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental De Cairuçu","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +532,19484,"BRA","SAMGe",2016,"Not Reported",9,"APA de Cananéia-Iguapé-Peruíbe","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +533,116096,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental De Fernando De Noronha","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +534,351840,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental De Guapi-Mirim","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +535,7906,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental De Guaraqueçaba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +536,16105,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental De Petrópolis","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +537,18727,"BRA","SAMGe",2016,"Not Reported",9,"APA de Piaçabuçu","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +538,115666,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Delta Do Parnaiba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +539,19755,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Do Igarapé Gelado","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +540,351841,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Do Planalto Central","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +541,351813,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Do Tapajós","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +542,555600305,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Ibirapuitã","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +543,198367,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Ilhas E Várzeas Do Rio Paraná","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +544,351746,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Meandros Do Araguaia","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +545,351787,"BRA","SAMGe",2016,"Not Reported",9,"APA Morro da Pedreira","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +546,198355,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Serra Da Ibiapaba","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +547,555600306,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Serra Da Mantiqueira","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +548,478423,"BRA","SAMGe",2016,"Not Reported",9,"Área De Proteção Ambiental Serra Da Meruoca","Environmental Protection Area","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +549,31758,"BRA","SAMGe",2016,"Not Reported",9,"APA Serra da Tabatinga","Área de Proteção Ambiental » environmental protection areas (IUCN category V)","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +550,10086,"BRA","SAMGe",2016,"Not Reported",9,"ARIE Capetinga/Taquara","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +552,115907,"BRA","SAMGe",2016,"Not Reported",9,"Área De Relevante Interesse Ecológica Floresta Da Cicuta","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +553,351720,"BRA","SAMGe",2016,"Not Reported",9,"ARIE Ilha Ameixal","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +554,351721,"BRA","SAMGe",2016,"Not Reported",9,"Área De Relevante Interesse Ecológico Ilhas Queimada Grande E Queimada Pequena","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +555,33831,"BRA","SAMGe",2016,"Not Reported",9,"Área De Relevante Interesse Ecológica Javari Buriti","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +556,10821,"BRA","SAMGe",2016,"Not Reported",9,"Área De Relevante Interesse Ecológica Manguezais Da Foz Do Rio Mamanguape","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +557,115976,"BRA","SAMGe",2016,"Not Reported",9,"Área De Relevante Interesse Ecológica Mata De Santa Genebra","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +558,115977,"BRA","SAMGe",2016,"Not Reported",9,"Área De Relevante Interesse Ecológica Matão De Cosmópolis","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +559,351729,"BRA","SAMGe",2016,"Not Reported",9,"ARIE Pé-de-Gigante","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +560,351715,"BRA","SAMGe",2016,"Not Reported",9,"ARIE Pontal dos Latinos e Pontal dos Santiagos","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +561,67692,"BRA","SAMGe",2016,"Not Reported",9,"Área De Relevante Interesse Ecológica Projeto Dinâmica Biológica De Fragmentos Florestais","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +562,351750,"BRA","SAMGe",2016,"Not Reported",9,"ARIE Seringal Nova Esperança","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +564,41084,"BRA","SAMGe",2016,"Not Reported",9,"Área De Relevante Interesse Ecológica Vale Dos Dinossauros","Area of Relevant Ecological Interest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +565,115987,"BRA","SAMGe",2016,"Not Reported",9,"ARIE Vassununga","Área de Relevante Interesse Ecológico","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +566,555600076,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Alto Maués","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +567,351821,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Da Guanabara","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +568,555512220,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Da Serra Das Araras","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +569,351711,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Da Terra Do Meio","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +570,10846,"BRA","SAMGe",2016,"Not Reported",9,"ESEC de Aiuaba","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +571,2216,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Aracuri-Esmeralda","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +572,5124,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Caracaraí","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +573,10822,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Carijós","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +574,351762,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Cuniã","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +575,18738,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Guaraqueçaba","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +576,2217,"BRA","SAMGe",2016,"Not Reported",9,"ESEC de Iquê","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +577,10845,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Jutaí-Solimões","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +578,2218,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Maracá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +579,2219,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Maracá Jipioca","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +580,351803,"BRA","SAMGe",2016,"Not Reported",9,"ESEC de Mata Preta","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +581,351757,"BRA","SAMGe",2016,"Not Reported",9,"ESEC de Murici","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +582,10826,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Niquiá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +583,10823,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Pirapitinga","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +584,2220,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Taiamã","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +585,116085,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Tamoios","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +586,18739,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Tupinambás","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +587,2221,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica De Uruçuí-Una","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +588,351766,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Do Castanhão","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +589,4891,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Do Jari","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +590,5123,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Do Seridó","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +591,7908,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Do Taim","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +592,18740,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Dos Tupiniquins","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +593,10830,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Juami-Japurá","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +594,351728,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Mico Leão Preto","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +595,10842,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Raso Da Catarina","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +596,2222,"BRA","SAMGe",2016,"Not Reported",9,"Estação Ecológica Rio Acre","Ecological Station","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +597,351751,"BRA","SAMGe",2016,"Not Reported",9,"ESEC Serra Geral do Tocantins","Estação Ecológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +598,198359,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Altamira","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +599,351789,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Da Mata Grande","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +600,351791,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Da Restinga De Cabedelo","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +601,351765,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Açu","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +602,478413,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Açungui","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +603,19745,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Amapá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +604,351714,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Anauá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +605,351820,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Balata-Tufari","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +606,19759,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Bom Futuro","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +607,351740,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Brasília","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +608,10809,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Caçador","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +609,10811,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Canela","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +610,351722,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Capão Bonito","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +611,198360,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Carajás","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +612,10803,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Caxiuanã","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +613,351717,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Chapecó","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +614,220239,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Contendas do Sincorá","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +615,351745,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Cristópolis","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +616,351732,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Goytacazes","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +617,198350,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Humaitá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +618,19763,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Ibirama","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +619,351723,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Ipanema","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +620,351809,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Irati","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +621,198361,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Itacaiunas","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +622,198362,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Itaituba I","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +623,198363,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Itaituba Ii","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +624,351792,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Jacundá","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +625,351763,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Jatuarana","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +626,351726,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Lorena","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +627,33751,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Macauã","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +628,31763,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Mapiá-Inauiní","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +629,19758,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Mário Xavier","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +630,351779,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Mulata","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +631,354008,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Negreiros","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +632,351764,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Nísia Floresta","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +633,351731,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Pacotuba","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +634,351807,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Palmares","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +635,351733,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Paraopeba","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +636,351810,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Passa Quatro","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +637,10814,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Passo Fundo","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +638,351835,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Pau-Rosa","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +639,351790,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Piraí Do Sul","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +640,19746,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Purus","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +641,351735,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Rio Preto","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +642,220241,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Ritápolis","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +643,31768,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Roraima","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +644,351755,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Santa Rosa do Purus","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +645,351752,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De São Francisco","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +646,10810,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de São Francisco de Paula","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +647,31769,"BRA","SAMGe",2016,"Not Reported",9,"FLONA de Saracá-Taquera","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +648,351811,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Silvânia","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +649,351771,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Sobral","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +650,10802,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Tapajós","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +651,31770,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Tapirapé-Aquiri","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +652,19747,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Tefé","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +653,10808,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional De Três Barras","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +654,351817,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Do Amaná","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +655,31759,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Do Amazonas","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +656,351788,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Do Araripe-Apodi","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +657,351815,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Do Crepori","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +658,351812,"BRA","SAMGe",2016,"Not Reported",9,"FLONA do Ibura","Floresta Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +659,478418,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Do Iquiri","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +660,351814,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Do Jamanxim","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +661,10815,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Do Jamari","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +662,351816,"BRA","SAMGe",2016,"Not Reported",9,"Floresta Nacional Do Trairão","Forest","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +663,555576252,"BRA","SAMGe",2016,"Not Reported",9,"MONA das Ilhas Cagarras","Monumento Natural","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +664,478424,"BRA","SAMGe",2016,"Not Reported",9,"Monumento Natural Do Rio São Francisco","Natural Monument","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +665,351734,"BRA","SAMGe",2016,"Not Reported",9,"MONA dos Pontões Capixabas","Monumento Natural","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +666,351741,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Cavernas Do Peruaçu","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +667,55,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Amazônia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +668,351806,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Chapada Das Mesas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +669,19447,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Chapada Diamantina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +670,19273,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Chapada Dos Guimarães","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +671,59,"BRA","SAMGe",2016,"Not Reported",9,"PARNA da Chapada dos Veadeiros","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +672,555576157,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Furna Feia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +673,19448,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Lagoa Do Peixe","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +674,1974,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra Da Bocaina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +675,351730,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra Da Bodoquena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +676,65,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra Da Canastra","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +677,64,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra Da Capivara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +678,351748,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra Da Cutia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +679,351827,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra De Itabaiana","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +680,19737,"BRA","SAMGe",2016,"Not Reported",9,"PARNA da Serra do Cipó","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +681,19275,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra Do Divisor","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +682,555600244,"BRA","SAMGe",2016,"Not Reported",9,"PARNA da Serra do Gandarela","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +683,351828,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra Do Itajaí","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +684,351712,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra Do Pardo","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +685,72,"BRA","SAMGe",2016,"Not Reported",9,"PARNA da Serra dos Órgãos","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +686,19428,"BRA","SAMGe",2016,"Not Reported",9,"PARNA da Serra Geral","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +687,74,"BRA","SAMGe",2016,"Not Reported",9,"PARNA da Tijuca","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +688,351872,"BRA","SAMGe",2016,"Not Reported",9,"PARNA das Araucárias","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +689,62,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Das Emas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +690,352002,"BRA","SAMGe",2016,"Not Reported",9,"PARNA das Nascentes do Rio Parnaíba","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +691,351736,"BRA","SAMGe",2016,"Not Reported",9,"PARNA das Sempre Vivas","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +692,2215,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional De Anavilhanas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +693,71,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional De Aparados Da Serra","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +694,555600317,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional De Boa Nova","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +695,67,"BRA","SAMGe",2016,"Not Reported",9,"PARNA de Brasília","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +696,69,"BRA","SAMGe",2016,"Not Reported",9,"PARNA de Caparaó","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +697,351793,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional De Ilha Grande","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +698,351774,"BRA","SAMGe",2016,"Not Reported",9,"PARNA de Jericoacoara","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +699,56,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional De Pacaás Novos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +700,351718,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional De Saint-Hilaire/Lange","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +701,66,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional De São Joaquim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +702,555576352,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Da Serra Das Lontras","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +703,73,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional De Sete Cidades","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +704,75,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional De Ubajara","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +705,198352,"BRA","SAMGe",2016,"Not Reported",9,"PARNA Descobrimento","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +706,555576266,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Alto Cariri","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +707,352420,"BRA","SAMGe",2016,"Not Reported",9,"PARNA do Araguaia","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +708,57,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Cabo Orange","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +709,351760,"BRA","SAMGe",2016,"Not Reported",9,"PARNA do Catimbau","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +710,60,"BRA","SAMGe",2016,"Not Reported",9,"PARNA do Iguaçu","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +711,351818,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Jamanxim","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +712,53,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Jaú","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +713,351839,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Juruena","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +714,68,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Monte Pascoal","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +715,19762,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Monte Roraima","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +716,2581,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Pantanal Matogrossense","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +717,54,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Pico Da Neblina","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +718,351819,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Rio Novo","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +719,19274,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Superagui","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +720,351833,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Dos Campos Amazônicos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +721,351824,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Dos Campos Gerais","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +722,61,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Dos Lençois Maranhenses","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +723,19272,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Grande Sertão Veredas","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +724,555599975,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Guaricana","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +726,70,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Do Itatiaia","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +727,479431,"BRA","SAMGe",2016,"Not Reported",9,"PARNA Mapinguari","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +728,41087,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Mar. De Fernando De Noronha","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +729,81060,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Marinho Dos Abrolhos","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +730,351784,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Montanhas Do Tumucumaque","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +731,478419,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Nascentes Do Lago Jari","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +732,198353,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Pau Brasil","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +733,198369,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Restinga De Jurubatiba","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +734,198351,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Serra Da Mocidade","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +735,198366,"BRA","SAMGe",2016,"Not Reported",9,"PARNA Serra das Confusões","Parque Nacional","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +736,198281,"BRA","SAMGe",2016,"Not Reported",9,"Parque Nacional Viruá","Park","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +737,351801,"BRA","SAMGe",2016,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Itatupã-Baquiá","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +738,555600159,"BRA","SAMGe",2016,"Not Reported",9,"Reserva De Desenvolvimento Sustentável Nascentes Geraizeiras","Sustainable Development Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +739,46,"BRA","SAMGe",2016,"Not Reported",9,"REBIO Atol das Rocas","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +740,2186,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Augusto Ruschi","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +741,555576334,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Bom Jesus","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +742,351794,"BRA","SAMGe",2016,"Not Reported",9,"REBIO da Contagem","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +743,351738,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Da Mata Escura","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +744,351825,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Das Araucárias","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +745,351823,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Das Perobas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +746,9822,"BRA","SAMGe",2016,"Not Reported",9,"REBIO de Comboios","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +747,19454,"BRA","SAMGe",2016,"Not Reported",9,"REBIO de Pedra Talhada","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +748,49,"BRA","SAMGe",2016,"Not Reported",9,"REBIO de Poço das Antas","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +749,6957,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica De Saltinho","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +750,18745,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica De Santa Isabel","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +751,52,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica De Serra Negra","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +752,47,"BRA","SAMGe",2016,"Not Reported",9,"REBIO de Sooretama","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +753,48,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica De Una","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +754,5127,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Abufari","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +755,51,"BRA","SAMGe",2016,"Not Reported",9,"REBIO do Córrego do Veado","Reserva Biológica","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +756,18742,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Córrego Grande","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +757,5126,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Guaporé","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +758,10795,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Gurupi","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +759,44,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Jaru","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +760,42,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Lago Piratuba","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +761,43,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Rio Trombetas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +762,6074,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Tapirapé","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +763,18744,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Tinguá","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +764,31752,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Do Uatumã","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +765,31750,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Guaribas","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +766,31751,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Marinha Do Arvoredo","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +767,351795,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica Nascentes Serra Do Cachimbo","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +768,168214,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Biológica União","Biological Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +769,354006,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Acaú-Goiana","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +770,31774,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Alto Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +771,351759,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Alto Tarauacá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +772,351834,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Arapixi","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +773,351805,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Arióca Pruanã","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +774,351777,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Auatí-Paraná","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +775,351772,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Baixo Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +776,351749,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Barreiro Das Antas","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +777,351756,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Cazumbá-Iracema","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +778,354007,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Chapada Limpa","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +779,31775,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Chico Mendes","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +780,351822,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Chocoaré-Mato Grosso","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +781,351737,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Corumbau","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +782,351829,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista De Canavieiras","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +783,478427,"BRA","SAMGe",2016,"Not Reported",9,"RESEX de Cassurubá","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +784,351778,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista De Cururupu","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +785,351770,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Do Batoque","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +786,478409,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Do Ciriáco","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +787,351767,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Do Lago Do Capanã Grande","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +788,351769,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Médio Juruá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +789,478420,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Do Médio Purús","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +790,351836,"BRA","SAMGe",2016,"Not Reported",9,"RESEX do Recanto das Araras de Terra Ronca","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +791,351747,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Do Rio Cautário","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +792,351773,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Do Rio Jutaí","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +793,115891,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Extremo Norte do Tocantins","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +794,351838,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Gurupá-Melgaço","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +795,351802,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Ipaú-Anilzinho","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +796,478421,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Ituxí","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +797,351837,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Lago Do Cedro","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +798,351761,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Lago Do Cuniã","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +799,351782,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Mãe Grande de Curuça","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +800,351719,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Mandira","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +801,351800,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Mapuá","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +802,351781,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Maracanã","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +803,351798,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Marinha Arai-Peroba","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +804,351725,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Marinha Arraial Do Cabo","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +805,351796,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Marinha Caeté-Taperaçu","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +806,555600266,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Marinha Cuinarana","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +807,351744,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Marinha Da Baia De Iguapé","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +808,351753,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Marinha Da Lagoa Do Jequiá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +809,351799,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Marinha De Gurupi-Piriá","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +810,351783,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Marinha de Soure","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +811,351775,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Marinha do Delta do Parnaíba","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +812,555600255,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Marinha Mestre Lucindo","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +813,555600245,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Marinha Mocapajuba","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +814,67715,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Marinha Pirajubaé","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +815,351797,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Marinha Tracuateua","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +816,351768,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Mata Grande","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +817,478425,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Prainha Do Canto Verde","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +818,478408,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Quilombo Do Frechal","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +819,478426,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Renascer","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +820,3177,"BRA","SAMGe",2016,"Not Reported",9,"RESEX Rio Cajari","Reserva Extrativista","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +821,351830,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Rio Iriri","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +822,31777,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Rio Ouro Preto","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +823,351832,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Do Rio Unini","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +824,478422,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Rio Xingu","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +825,351713,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Riozinho Da Liberdade","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +826,351785,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Riozinho Do Anfrísio","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +827,351780,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista São João Da Ponta","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +828,351776,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Tapajós Arapiuns","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +829,351831,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Terra Grande Pracuuba","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +830,351786,"BRA","SAMGe",2016,"Not Reported",9,"Reserva Extrativista Verde Para Sempre","Extractive Reserve","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +831,555576384,"BRA","SAMGe",2016,"Not Reported",9,"REVIS de Boa Nova","Refúgio de Vida Silvestre","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +832,555576210,"BRA","SAMGe",2016,"Not Reported",9,"Refúgio De Vida Silvestre De Santa Cruz","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +833,478415,"BRA","SAMGe",2016,"Not Reported",9,"Refúgio De Vida Silvestre De Una","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +834,478416,"BRA","SAMGe",2016,"Not Reported",9,"Refúgio De Vida Silvestre Do Rio Dos Frades","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +835,351826,"BRA","SAMGe",2016,"Not Reported",9,"Refúgio De Vida Silvestre Dos Campos De Palmas","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +836,10843,"BRA","SAMGe",2016,"Not Reported",9,"Refugio De Vida Silvestre Ilha Dos Lobos","Wildlife Refuge","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +837,351743,"BRA","SAMGe",2016,"Not Reported",9,"REVIS Veredas do Oeste Baiano","Refúgio de Vida Silvestre","Brazil Management Effectiveness Evaluation","ICMBio",2018,"Portuguese","FALSE","FALSE",, +838,20978,"TGO","METT",2013,"Not Reported",10,"Abdoulaye","Faunal reserve","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French","FALSE","FALSE",, +839,20978,"TGO","METT",2017,"Not Reported",10,"Abdoulaye","Faunal reserve","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French","FALSE","FALSE",, +840,2340,"TGO","METT",2013,"Not Reported",10,"Fazao-Malfakassa","National Park","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French","FALSE","FALSE",, +841,95397,"TGO","METT",2013,"Not Reported",10,"Parc national de la Keran","Ramsar Site, Wetland of International Importance","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French","FALSE","FALSE",, +842,2341,"TGO","METT",2017,"Not Reported",10,"Parc national de Togodo","Faunal Reserve","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French","FALSE","FALSE",, +843,95398,"TGO","METT",2017,"Not Reported",10,"Reserve de faune de Togodo Nord","Ramsar Site, Wetland of International Importance","Togo Management Effectiveness Evaluation","Ministere de l'environnement et des ressources forestieres",2018,"French","FALSE","FALSE",, +844,667,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2013,"Not Reported",11,"Bavarian Forest","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +845,668,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2011,"Not Reported",11,"Berchtesgaden","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +846,318076,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2010,"Not Reported",11,"Eifel","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +847,148534,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2013,"Not Reported",11,"Hainich","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +848,103142,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"Not Reported",11,"Harz","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +849,32667,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2010,"Not Reported",11,"Jasmund","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +850,318077,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2011,"Not Reported",11,"Kellerwald-Edersee","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +851,102224,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2011,"Not Reported",11,"Lower Odra Valley","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +852,26064,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"Not Reported",11,"Müritz-Nationalpark","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +853,32666,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"Not Reported",11,"Saxonian Switzerland","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +854,26062,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2010,"Not Reported",11,"Vorpommersche Boddenlandschaft","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +855,20722,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"Not Reported",11,"Waddensea NLP (Hamburg)","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +856,11837,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2013,"Not Reported",11,"Waddensea NLP (Lower Saxony)","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +857,32669,"DEU","EUROPARC Quality Criteria and Standars for National Parks",2012,"Not Reported",11,"Waddensea NLP (Schl.-Holstein)","National Park","Germany Management Effectiveness Evaluation","BfN",2018,"German","FALSE","FALSE",, +858,478120,"DOM","METT",2009,"Not Reported",12,"Loma Quita Espuela","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +859,478116,"DOM","METT",2009,"Not Reported",12,"Guaconejo","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +860,478143,"DOM","METT",2009,"Not Reported",12,"Villa Elisa","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +861,478092,"DOM","METT",2009,"Not Reported",12,"Estero Hondo","Marine Mammal Sanctuary","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +862,478104,"DOM","METT",2009,"Not Reported",12,"Lago Enriquillo e Isla Cabritos","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +863,478076,"DOM","METT",2009,"Not Reported",12,"Cabo Frances Viejo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +864,478140,"DOM","METT",2009,"Not Reported",12,"Sierra de Neiba","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +865,6675,"DOM","METT",2009,"Not Reported",12,"Sierra de Bahoruco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +866,478142,"DOM","METT",2009,"Not Reported",12,"Valle Nuevo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +867,478068,"DOM","METT",2009,"Not Reported",12,"Armando Bermúdez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +868,180,"DOM","METT",2009,"Not Reported",12,"Del Este","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +869,478075,"DOM","METT",2009,"Not Reported",12,"Cabo Cabrón","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +870,478130,"DOM","METT",2009,"Not Reported",12,"Nalga de Maco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +871,6673,"DOM","METT",2009,"Not Reported",12,"Jaragua","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +872,478101,"DOM","METT",2009,"Not Reported",12,"José del Carmen Ramírez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +873,6674,"DOM","METT",2009,"Not Reported",12,"Submarine national park Monte Cristi","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +874,181,"DOM","METT",2009,"Not Reported",12,"Los Haitises","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +875,478102,"DOM","METT",2009,"Not Reported",12,"Submarine national park La Caleta","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +876,478099,"DOM","METT",2009,"Not Reported",12,"Humedales del Ozama","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +877,478141,"DOM","METT",2009,"Not Reported",12,"Sierra Martín García","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +878,478132,"DOM","METT",2009,"Not Reported",12,"Natural Monument Anthropological Reserve","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +879,478138,"DOM","METT",2009,"Not Reported",12,"Salto de la Damajagua","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +880,478100,"DOM","METT",2009,"Not Reported",12,"Catalina Island ","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +881,478111,"DOM","METT",2009,"Not Reported",12,"Las Dunas de las Calderas","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +882,478139,"DOM","METT",2009,"Not Reported",12,"Salto El Limón","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +883,478131,"DOM","METT",2009,"Not Reported",12,"Pico Diego de Ocampo","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +884,478108,"DOM","METT",2009,"Not Reported",12,"Lagunas Cabarete y Goleta","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +885,478078,"DOM","METT",2009,"Not Reported",12,"Cabo Samaná","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +886,478117,"DOM","METT",2009,"Not Reported",12,"Natural Monument Isabel de Torres","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +887,478106,"DOM","METT",2009,"Not Reported",12,"Laguna de Cabral","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +888,478133,"DOM","METT",2009,"Not Reported",12,"Ría Maimón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +889,478109,"DOM","METT",2009,"Not Reported",12,"Lagunas Redona y Limón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +890,478088,"DOM","METT",2009,"Not Reported",12,"Cueva de Los Tres Ojos de Santo Domingo","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +891,478105,"DOM","METT",2009,"Not Reported",12,"Laguna de Bávaro y el Caletón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29584,180,"DOM","METT",2012,"Not Reported",12,"Del Este","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29585,180,"DOM","METT",2015,"Not Reported",12,"Del Este","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29586,181,"DOM","METT",2012,"Not Reported",12,"Los Haitises","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29587,181,"DOM","METT",2015,"Not Reported",12,"Los Haitises","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29588,6673,"DOM","METT",2012,"Not Reported",12,"Jaragua","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29589,6673,"DOM","METT",2015,"Not Reported",12,"Jaragua","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29590,6674,"DOM","METT",2012,"Not Reported",12,"Submarine national park Monte Cristi","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29591,6674,"DOM","METT",2015,"Not Reported",12,"Submarine national park Monte Cristi","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29592,6675,"DOM","METT",2012,"Not Reported",12,"Sierra de Bahoruco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29593,6675,"DOM","METT",2015,"Not Reported",12,"Sierra de Bahoruco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29594,478068,"DOM","METT",2012,"Not Reported",12,"Armando Bermúdez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29595,478068,"DOM","METT",2015,"Not Reported",12,"Armando Bermúdez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29596,478075,"DOM","METT",2012,"Not Reported",12,"Cabo Cabrón","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29597,478075,"DOM","METT",2015,"Not Reported",12,"Cabo Cabrón","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29598,478076,"DOM","METT",2012,"Not Reported",12,"Cabo Frances Viejo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29599,478076,"DOM","METT",2015,"Not Reported",12,"Cabo Frances Viejo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29600,478078,"DOM","METT",2012,"Not Reported",12,"Cabo Samaná","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29601,478078,"DOM","METT",2015,"Not Reported",12,"Cabo Samaná","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29602,478088,"DOM","METT",2012,"Not Reported",12,"Cueva de Los Tres Ojos de Santo Domingo","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29603,478088,"DOM","METT",2015,"Not Reported",12,"Cueva de Los Tres Ojos de Santo Domingo","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29604,478092,"DOM","METT",2012,"Not Reported",12,"Estero Hondo","Marine Mammal Sanctuary","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29605,478092,"DOM","METT",2015,"Not Reported",12,"Estero Hondo","Marine Mammal Sanctuary","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29606,478099,"DOM","METT",2012,"Not Reported",12,"Humedales del Ozama","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29607,478099,"DOM","METT",2015,"Not Reported",12,"Humedales del Ozama","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29608,478100,"DOM","METT",2012,"Not Reported",12,"Catalina Island ","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29609,478100,"DOM","METT",2015,"Not Reported",12,"Catalina Island ","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29610,478101,"DOM","METT",2012,"Not Reported",12,"José del Carmen Ramírez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29611,478101,"DOM","METT",2015,"Not Reported",12,"José del Carmen Ramírez","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29612,478102,"DOM","METT",2012,"Not Reported",12,"Submarine national park La Caleta","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29613,478102,"DOM","METT",2015,"Not Reported",12,"Submarine national park La Caleta","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29614,478104,"DOM","METT",2012,"Not Reported",12,"Lago Enriquillo e Isla Cabritos","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29615,478104,"DOM","METT",2015,"Not Reported",12,"Lago Enriquillo e Isla Cabritos","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29616,478105,"DOM","METT",2012,"Not Reported",12,"Laguna de Bávaro y el Caletón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29617,478105,"DOM","METT",2015,"Not Reported",12,"Laguna de Bávaro y el Caletón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29618,478106,"DOM","METT",2012,"Not Reported",12,"Laguna de Cabral","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29619,478106,"DOM","METT",2015,"Not Reported",12,"Laguna de Cabral","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29620,478108,"DOM","METT",2012,"Not Reported",12,"Lagunas Cabarete y Goleta","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29621,478108,"DOM","METT",2015,"Not Reported",12,"Lagunas Cabarete y Goleta","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29622,478109,"DOM","METT",2012,"Not Reported",12,"Lagunas Redona y Limón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29623,478109,"DOM","METT",2015,"Not Reported",12,"Lagunas Redona y Limón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29624,478111,"DOM","METT",2012,"Not Reported",12,"Las Dunas de las Calderas","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29625,478111,"DOM","METT",2015,"Not Reported",12,"Las Dunas de las Calderas","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29626,478116,"DOM","METT",2012,"Not Reported",12,"Guaconejo","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29627,478116,"DOM","METT",2015,"Not Reported",12,"Guaconejo","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29628,478117,"DOM","METT",2012,"Not Reported",12,"Natural Monument Isabel de Torres","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29629,478117,"DOM","METT",2015,"Not Reported",12,"Natural Monument Isabel de Torres","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29630,478120,"DOM","METT",2012,"Not Reported",12,"Loma Quita Espuela","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29631,478120,"DOM","METT",2015,"Not Reported",12,"Loma Quita Espuela","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29632,478130,"DOM","METT",2012,"Not Reported",12,"Nalga de Maco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29633,478130,"DOM","METT",2015,"Not Reported",12,"Nalga de Maco","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29634,478131,"DOM","METT",2012,"Not Reported",12,"Pico Diego de Ocampo","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29635,478131,"DOM","METT",2015,"Not Reported",12,"Pico Diego de Ocampo","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29636,478132,"DOM","METT",2012,"Not Reported",12,"Natural Monument Anthropological Reserve","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29637,478132,"DOM","METT",2015,"Not Reported",12,"Natural Monument Anthropological Reserve","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29638,478133,"DOM","METT",2012,"Not Reported",12,"Ría Maimón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29639,478133,"DOM","METT",2015,"Not Reported",12,"Ría Maimón","Habitat/Species Management Area","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29640,478138,"DOM","METT",2012,"Not Reported",12,"Salto de la Damajagua","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29641,478138,"DOM","METT",2015,"Not Reported",12,"Salto de la Damajagua","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29642,478139,"DOM","METT",2012,"Not Reported",12,"Salto El Limón","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29643,478139,"DOM","METT",2015,"Not Reported",12,"Salto El Limón","Natural Monument","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29644,478140,"DOM","METT",2012,"Not Reported",12,"Sierra de Neiba","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29645,478140,"DOM","METT",2015,"Not Reported",12,"Sierra de Neiba","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29646,478141,"DOM","METT",2012,"Not Reported",12,"Sierra Martín García","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29647,478141,"DOM","METT",2015,"Not Reported",12,"Sierra Martín García","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29648,478142,"DOM","METT",2012,"Not Reported",12,"Valle Nuevo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29649,478142,"DOM","METT",2015,"Not Reported",12,"Valle Nuevo","National Park","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29650,478143,"DOM","METT",2012,"Not Reported",12,"Villa Elisa","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +29651,478143,"DOM","METT",2015,"Not Reported",12,"Villa Elisa","Scientific Reserve","The Dominican Republic Management Effectiveness Evaluation","Ministerio de Medio Ambiente y Recursos Naturales",2018,"English","FALSE","FALSE",, +892,168275,"PER","METT",2016,"Not Reported",13,"Aledaño a la Bocatoma del Canal Nuevo Imperial","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +894,20184,"PER","METT",2016,"Not Reported",13,"Pagaibamba","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +895,20181,"PER","METT",2016,"Not Reported",13,"Pui Pui","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +896,20180,"PER","METT",2016,"Not Reported",13,"Puquio Santa Rosa","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +897,20182,"PER","METT",2016,"Not Reported",13,"San Matias San Carlos","Bosques de Protección","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +898,30061,"PER","METT",2016,"Not Reported",13,"El Angolo","Cotos de Caza","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +899,30060,"PER","METT",2016,"Not Reported",13,"Sunchubamba","Cotos de Caza","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +900,303316,"PER","METT",2016,"Not Reported",13,"Alto Purus","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +901,127825,"PER","METT",2016,"Not Reported",13,"Bahuaja Sonene","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +902,259,"PER","METT",2016,"Not Reported",13,"Cerros de Amotape","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +903,303320,"PER","METT",2016,"Not Reported",13,"Cordillera Azul","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +904,261,"PER","METT",2016,"Not Reported",13,"Cutervo","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +905,257,"PER","METT",2016,"Not Reported",13,"del Manu","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +906,7461,"PER","METT",2016,"Not Reported",13,"Del Río Abiseo","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +907,555555616,"PER","METT",2016,"Not Reported",13,"Gueppi Sekime","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +908,258,"PER","METT",2016,"Not Reported",13,"Huascaran","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +909,555544087,"PER","METT",2016,"Not Reported",13,"Ichigkat Muja","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +910,303323,"PER","METT",2016,"Not Reported",13,"Otishi","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +911,555623628,"PER","METT",2016,"Not Reported",13,"Sierra del Divisor","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +912,260,"PER","METT",2016,"Not Reported",13,"Tingo Maria","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +913,12213,"PER","METT",2016,"Not Reported",13,"Yanachaga Chemillén","Parques Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +914,555544103,"PER","METT",2016,"Not Reported",13,"Bosques Nublado de Udima","Refugio de Vida Sivestre","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +915,20187,"PER","METT",2016,"Not Reported",13,"Laquipampa","Refugio de Vida Sivestre","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +916,555544084,"PER","METT",2016,"Not Reported",13,"Los Pantanos de Villa","Refugio de Vida Sivestre","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +917,555555618,"PER","METT",2016,"Not Reported",13,"Airo Pai","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +918,303317,"PER","METT",2016,"Not Reported",13,"Amarakaeri","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +919,303318,"PER","METT",2016,"Not Reported",13,"Asháninka","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +920,555544088,"PER","METT",2016,"Not Reported",13,"Chayu Nain","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +921,303321,"PER","METT",2016,"Not Reported",13,"El Sira","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +922,555555617,"PER","METT",2016,"Not Reported",13,"Huimeki","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +923,303322,"PER","METT",2016,"Not Reported",13,"Machiguenga","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +924,61767,"PER","METT",2016,"Not Reported",13,"Purus","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +925,555544086,"PER","METT",2016,"Not Reported",13,"Tuntanain","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +926,30040,"PER","METT",2016,"Not Reported",13,"Yanesha","Reservas Comunales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +927,168276,"PER","METT",2016,"Not Reported",13,"Allpahuayo Mishana","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +928,266,"PER","METT",2016,"Not Reported",13,"de Calipuy","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +929,252,"PER","METT",2016,"Not Reported",13,"de Junin","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +930,254,"PER","METT",2016,"Not Reported",13,"De Lachay","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +931,250,"PER","METT",2016,"Not Reported",13,"de Paracas","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +932,2175,"PER","METT",2016,"Not Reported",13,"de Salinas y Aguada Blanca","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +933,98158,"PER","METT",2016,"Not Reported",13,"de Tumbes","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +934,253,"PER","METT",2016,"Not Reported",13,"Del Titicaca","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +935,555544085,"PER","METT",2016,"Not Reported",13,"Matses","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +936,249,"PER","METT",2016,"Not Reported",13,"Pacaya Samiria","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +937,251,"PER","METT",2016,"Not Reported",13,"Pamap Galeras Barbara D Achille","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +938,98228,"PER","METT",2016,"Not Reported",13,"Pucacuro","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +939,555555596,"PER","METT",2016,"Not Reported",13,"San Fernando","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +940,3370,"PER","METT",2016,"Not Reported",13,"Tambopata","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +941,303315,"PER","METT",2016,"Not Reported",13,"Nor Yauyos Cochas","Reservas Paisajísticas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +942,98159,"PER","METT",2016,"Not Reported",13,"Sub Cuenca del Cotahuasi","Reservas Paisajísticas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +943,303319,"PER","METT",2016,"Not Reported",13,"Bosques de Pomac","Santuarios Historicos","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +944,264,"PER","METT",2016,"Not Reported",13,"Chacamarca","Santuarios Historicos","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +945,267,"PER","METT",2016,"Not Reported",13,"De la Pampa de Ayacucho","Santuarios Historicos","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +946,262,"PER","METT",2016,"Not Reported",13,"de Machupicchu","Santuarios Historicos","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +947,14171,"PER","METT",2016,"Not Reported",13,"Ampay","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +948,256,"PER","METT",2016,"Not Reported",13,"Calipuy","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +949,20179,"PER","METT",2016,"Not Reported",13,"Cordillera de Colan","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +950,255,"PER","METT",2016,"Not Reported",13,"de Huayllay","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +951,7921,"PER","METT",2016,"Not Reported",13,"Lagunas de Mejia","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +952,12215,"PER","METT",2016,"Not Reported",13,"Los Manglares de Tumbes","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +953,20186,"PER","METT",2016,"Not Reported",13,"Megantoni","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +954,30034,"PER","METT",2016,"Not Reported",13,"Pampa Hermosa","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +955,20178,"PER","METT",2016,"Not Reported",13,"Tabaconas Namballe","Santuarios Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +956,555555614,"PER","METT",2016,"Not Reported",13,"Ancon","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +957,555544101,"PER","METT",2016,"Not Reported",13,"Bosque de Zarate","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +958,168278,"PER","METT",2016,"Not Reported",13,"Chancaybaños","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +959,303705,"PER","METT",2016,"Not Reported",13,"Cordillera de Huayhuash","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +960,555544089,"PER","METT",2016,"Not Reported",13,"Humedales de Puerto Viejo","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +961,555555613,"PER","METT",2016,"Not Reported",13,"Illescas","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +962,555544100,"PER","METT",2016,"Not Reported",13,"Lomas de Ancon","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +963,555544102,"PER","METT",2016,"Not Reported",13,"Reserva Paisajistica Cerro Khapia","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +964,555544099,"PER","METT",2016,"Not Reported",13,"Rio Nieva","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +965,168280,"PER","METT",2016,"Not Reported",13,"Santiago Comaina","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +966,555544105,"PER","METT",2016,"Not Reported",13,"Sierra del Divisor","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +967,555544104,"PER","METT",2016,"Not Reported",13,"Yaguas","Zonas Reservadas","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +968,555544093,"PER","METT",2016,"Not Reported",13,"Isla Lobos de Tierra - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +969,555544094,"PER","METT",2016,"Not Reported",13,"Islas Lobos de Afuera - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +970,555544092,"PER","METT",2016,"Not Reported",13,"Islas Macabí - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +971,555544095,"PER","METT",2016,"Not Reported",13,"Islas Guañape Norte y Guañape Sur - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +972,555544098,"PER","METT",2016,"Not Reported",13,"Isla Chao - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +973,555544097,"PER","METT",2016,"Not Reported",13,"Islote Corcovado - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +974,555555598,"PER","METT",2016,"Not Reported",13,"Isla Santa - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +975,555555610,"PER","METT",2016,"Not Reported",13,"Punta Culebras - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +976,555555606,"PER","METT",2016,"Not Reported",13,"Punta Colorado - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +977,555555612,"PER","METT",2016,"Not Reported",13,"Punta La Litera - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +978,555555600,"PER","METT",2016,"Not Reported",13,"Islote Don Martín - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +979,555555603,"PER","METT",2016,"Not Reported",13,"Punta Salinas, Isla Huampanú e Isla Mazorca - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +980,555544090,"PER","METT",2016,"Not Reported",13,"Islote Grupo de Pescadores - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +981,555555601,"PER","METT",2016,"Not Reported",13,"Islas Cavinzas e Islotes Palominos - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +982,555555599,"PER","METT",2016,"Not Reported",13,"Islas Pachacamac - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +983,555555602,"PER","METT",2016,"Not Reported",13,"Isla Asia - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +984,555544096,"PER","METT",2016,"Not Reported",13,"Isla Chincha Norte, Centro y Sur - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +985,555544091,"PER","METT",2016,"Not Reported",13,"Isla Ballestas Norte, Centro y Sur - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +986,555555597,"PER","METT",2016,"Not Reported",13,"Punta Lomitas - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +987,555555607,"PER","METT",2016,"Not Reported",13,"Punta San Juan - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +988,555555604,"PER","METT",2016,"Not Reported",13,"Punta Lomas - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +989,555555608,"PER","METT",2016,"Not Reported",13,"Punta Atico - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +990,555555611,"PER","METT",2016,"Not Reported",13,"Punta La Chira - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +991,555555605,"PER","METT",2016,"Not Reported",13,"Punta Hornillos - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +992,555555609,"PER","METT",2016,"Not Reported",13,"Punta Coles - Sistema de islas, islotes y puntas guaneras","Reservas Nacionales","Peru Management Effectiveness Evaluation","SERNANP",2018,"Spanish","FALSE","FALSE",, +993,102320,"CRI","SINAD",2016,"Not Reported",14,"Abangares","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +994,102337,"CRI","SINAD",2016,"Not Reported",14,"Alberto Manuel Brenes","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +996,19385,"CRI","SINAD",2016,"Not Reported",14,"Arenal Monteverde","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +997,19372,"CRI","SINAD",2016,"Not Reported",14,"Barbilla","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +998,12493,"CRI","SINAD",2016,"Not Reported",14,"Barra Del Colorado","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +999,2214,"CRI","SINAD",2016,"Not Reported",14,"Barra Honda","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1000,168136,"CRI","SINAD",2016,"Not Reported",14,"Barú","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1002,165,"CRI","SINAD",2016,"Not Reported",14,"Braulio Carrillo","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1003,102300,"CRI","SINAD",2016,"Not Reported",14,"Cabo Blanco","Reserva Natural Absoluta","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1004,2235,"CRI","SINAD",2016,"Not Reported",14,"Cahuita","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1005,108133,"CRI","SINAD",2016,"Not Reported",14,"Caletas-Arío","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1006,102322,"CRI","SINAD",2016,"Not Reported",14,"Camaronal","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1007,67864,"CRI","SINAD",2016,"Not Reported",14,"Caño Negro","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1008,157,"CRI","SINAD",2016,"Not Reported",14,"Carara","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1009,102351,"CRI","SINAD",2016,"Not Reported",14,"Cerro Vueltas","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1010,3329,"CRI","SINAD",2016,"Not Reported",14,"Cerros De Escazú","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1011,163,"CRI","SINAD",2016,"Not Reported",14,"Chirripó","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1012,108137,"CRI","SINAD",2016,"Not Reported",14,"Cipancí- ACAT","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1015,164,"CRI","SINAD",2016,"Not Reported",14,"Corcovado","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1016,302001,"CRI","SINAD",2016,"Not Reported",14,"Corral De Piedra","Humedales","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1017,168129,"CRI","SINAD",2016,"Not Reported",14,"Corredor Fronterizo","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1018,108140,"CRI","SINAD",2016,"Not Reported",14,"Diriá","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1019,301995,"CRI","SINAD",2016,"Not Reported",14,"Estación Experimental Horizontes","Otras","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1020,108142,"CRI","SINAD",2016,"Not Reported",14,"Estero Puntarenas","Humedales","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1021,102304,"CRI","SINAD",2016,"Not Reported",14,"Fernando Castro","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1022,145524,"CRI","SINAD",2016,"Not Reported",14,"Gandoca-Manzanillo","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1023,12492,"CRI","SINAD",2016,"Not Reported",14,"Golfito","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1024,3317,"CRI","SINAD",2016,"Not Reported",14,"Golfo Dulce","Reserva Forestal","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1025,19368,"CRI","SINAD",2016,"Not Reported",14,"Guanacaste","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1027,156,"CRI","SINAD",2016,"Not Reported",14,"Hitoy Cerere","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1028,102321,"CRI","SINAD",2016,"Not Reported",14,"Iguanita","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1029,11849,"CRI","SINAD",2016,"Not Reported",14,"Isla Del Caño","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1030,170,"CRI","SINAD",2016,"Not Reported",14,"Isla Del Coco","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1031,11848,"CRI","SINAD",2016,"Not Reported",14,"Isla Pájaros","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1032,108144,"CRI","SINAD",2016,"Not Reported",14,"Isla San Lucas","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1033,19379,"CRI","SINAD",2016,"Not Reported",14,"Juan Castro Blanco","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1034,102332,"CRI","SINAD",2016,"Not Reported",14,"Junquillal","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1035,108146,"CRI","SINAD",2016,"Not Reported",14,"La Cangreja","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1036,102310,"CRI","SINAD",2016,"Not Reported",14,"Las Baulas","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1037,19370,"CRI","SINAD",2016,"Not Reported",14,"Lomas Barbudal","Reserva Biológica","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1038,108150,"CRI","SINAD",2016,"Not Reported",14,"Los Quetzales","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1039,3316,"CRI","SINAD",2016,"Not Reported",14,"Los Santos","Reserva Forestal","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1040,2250,"CRI","SINAD",2016,"Not Reported",14,"Manuel Antonio","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1041,115179,"CRI","SINAD",2016,"Not Reported",14,"Maquenque","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1042,30595,"CRI","SINAD",2016,"Not Reported",14,"Marino Ballena","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1043,168146,"CRI","SINAD",2016,"Not Reported",14,"Mata Redonda","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1044,36057,"CRI","SINAD",2016,"Not Reported",14,"Miravalles","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1045,108153,"CRI","SINAD",2016,"Not Reported",14,"Monte Alto","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1046,108154,"CRI","SINAD",2016,"Not Reported",14,"Monumento Nacional Guayabo","Otras","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1047,102311,"CRI","SINAD",2016,"Not Reported",14,"Nicolás Wessberg","Reserva Natural Absoluta","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1048,12244,"CRI","SINAD",2016,"Not Reported",14,"Ostional","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1049,4646,"CRI","SINAD",2016,"Not Reported",14,"Palo Verde","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1050,102367,"CRI","SINAD",2016,"Not Reported",14,"Piedras Blancas","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1053,108162,"CRI","SINAD",2016,"Not Reported",14,"Playa Hermosa","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1054,168,"CRI","SINAD",2016,"Not Reported",14,"Rincón De La Vieja","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1055,3315,"CRI","SINAD",2016,"Not Reported",14,"Rio Macho","Reserva Forestal","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1056,108169,"CRI","SINAD",2016,"Not Reported",14,"Romelia","Refugio Nacional de Vida Silvestre","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1057,166,"CRI","SINAD",2016,"Not Reported",14,"Santa Rosa","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1058,3325,"CRI","SINAD",2016,"Not Reported",14,"Taboga","Reserva Forestal","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1059,108173,"CRI","SINAD",2016,"Not Reported",14,"Tapantí Macizo De La Muerte","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1060,145527,"CRI","SINAD",2016,"Not Reported",14,"Térraba-Sierpe","Humedales","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1061,19384,"CRI","SINAD",2016,"Not Reported",14,"Tivives","Zona Protectora","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1062,167,"CRI","SINAD",2016,"Not Reported",14,"Tortuguero","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1063,36059,"CRI","SINAD",2016,"Not Reported",14,"Volcán Arenal","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1064,171,"CRI","SINAD",2016,"Not Reported",14,"Volcán Irazú","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1065,169,"CRI","SINAD",2016,"Not Reported",14,"Volcán Poás","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1066,102334,"CRI","SINAD",2016,"Not Reported",14,"Volcán Tenorio","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1067,168122,"CRI","SINAD",2016,"Not Reported",14,"Volcán Turrialba","Parque Nacional","Costa Rica Management Effectiveness Evaluation","SINAC",2018,"Spanish","FALSE","FALSE",, +1068,61426,"EST","PANParks",2009,"Not Reported",15,"Soomaa rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1069,1646,"EST","METT",2010,"Not Reported",15,"Lahemaa rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1070,61426,"EST","METT",2010,"Not Reported",15,"Soomaa rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1071,1650,"EST","METT",2010,"Not Reported",15,"Viidumäe looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1072,1649,"EST","METT",2010,"Not Reported",15,"Nigula looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1073,379090,"EST","METT",2010,"Not Reported",15,"Kärevere looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1074,378865,"EST","METT",2010,"Not Reported",15,"Põhja-Kõrvemaa looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1075,340192,"EST","METT",2010,"Not Reported",15,"Vooremaa maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1076,147534,"EST","METT",2010,"Not Reported",15,"Viljandi maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1077,379106,"EST","METT",2010,"Not Reported",15,"Struuga maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1078,326734,"EST","METT",2010,"Not Reported",15,"Päite maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1079,180991,"EST","METT",2010,"Not Reported",15,"Nõmme-Mustamäe maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1080,101316,"EST","METT",2010,"Not Reported",15,"Panga maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1081,147544,"EST","METT",2010,"Not Reported",15,"Hiiumaa laidude maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1082,101304,"EST","METT",2010,"Not Reported",15,"Naissaare looduspark","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1084,555558949,"EST","METT",2010,"Not Reported",15,"Peipsiveere looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1085,379250,"EST","METT",2010,"Not Reported",15,"Lavassaare hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1086,326905,"EST","METT",2010,"Not Reported",15,"Hiiu madala hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1087,379237,"EST","METT",2010,"Not Reported",15,"Käntu-Kastja hoiuala (Läänemaa)","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1088,31561,"EST","METT",2012,"Not Reported",15,"Karula rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1089,1648,"EST","METT",2012,"Not Reported",15,"Vilsandi rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1090,71235,"EST","METT",2012,"Not Reported",15,"Alam-Pedja looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1091,15776,"EST","METT",2012,"Not Reported",15,"Endla looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1092,339723,"EST","METT",2012,"Not Reported",15,"Luitemaa looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1093,339753,"EST","METT",2012,"Not Reported",15,"Mahtra looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1094,31580,"EST","METT",2012,"Not Reported",15,"Muraka looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1095,171052,"EST","METT",2012,"Not Reported",15,"Kõnnumaa maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1096,101286,"EST","METT",2012,"Not Reported",15,"Loodi looduspark","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1097,31566,"EST","METT",2012,"Not Reported",15,"Läänemaa Suursoo maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1098,555587895,"EST","METT",2012,"Not Reported",15,"Meenikunno looduskaitseala","Nature Reserve","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1099,101310,"EST","METT",2012,"Not Reported",15,"Ontika maastikukaitseala","Protected landscape (nature park)","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1100,326903,"EST","METT",2012,"Not Reported",15,"Haavakannu hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1101,339656,"EST","METT",2012,"Not Reported",15,"Lahepera hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1102,326958,"EST","METT",2012,"Not Reported",15,"Lüübnitsa hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1103,326968,"EST","METT",2012,"Not Reported",15,"Nõva-Osmussaare hoiuala (Läänemaa)","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1104,326975,"EST","METT",2012,"Not Reported",15,"Pakri hoiuala","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1105,379261,"EST","METT",2012,"Not Reported",15,"Pärnu jõe hoiuala (Pärnu)","Limited-conservation area","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1106,1647,"EST","European Diploma",2003,"Not Reported",15,"Matsalu rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1107,1647,"EST","European Diploma",2008,"Not Reported",15,"Matsalu rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1108,1647,"EST","European Diploma",2012,"Not Reported",15,"Matsalu rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1109,1647,"EST","European Diploma",2017,"Not Reported",15,"Matsalu rahvuspark","National park","Estonia Management Effectiveness Evaluation","Estonian Environmental Agency",2018,"Estonian","FALSE","FALSE",, +1110,193,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Tikal","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1111,193,"GTM","Parks profiles",2013,"Not Reported",16,"Tikal","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1112,193,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Tikal","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1113,193,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Tikal","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1114,196,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Volcán Pacaya y Laguna de Calderas","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1115,196,"GTM","PROARCA/CAPAS",2016,"Not Reported",16,"Volcán Pacaya y Laguna de Calderas","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1116,2551,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Mario Dary","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1117,2551,"GTM","PROARCA/CAPAS",2017,"Not Reported",16,"Mario Dary","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1118,2551,"GTM","PROARCA/CAPAS",2013,"Not Reported",16,"Mario Dary","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1119,2551,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Mario Dary","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1120,12422,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Monterrico","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1121,12422,"GTM","PROARCA/CAPAS",2016,"Not Reported",16,"Monterrico","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1122,12422,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Monterrico","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1123,12555,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1124,12555,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1125,12555,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1126,12555,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1127,12555,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Cerro San Gil","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1128,12564,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1129,12564,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1130,12564,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1131,12564,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1132,12564,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Punta de Manabique","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1133,12583,"GTM","PROARCA/CAPAS",2016,"Not Reported",16,"Laguna de lachuá","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1134,12583,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Laguna de lachuá","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1135,12583,"GTM","METT",2008,"Not Reported",16,"Laguna de lachuá","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1136,12583,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Laguna de lachuá","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1137,12593,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Cerro Cahuí","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1138,12593,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Cerro Cahuí","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1139,12593,"GTM","Parks profiles",2014,"Not Reported",16,"Cerro Cahuí","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1140,12593,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Cerro Cahuí","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1141,30604,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1142,30604,"GTM","Parks profiles",2014,"Not Reported",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1143,30604,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1144,30604,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1145,30604,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Mirador - Río Azul","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1146,30605,"GTM","Parks profiles",2014,"Not Reported",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1147,30605,"GTM","PROARCA/CAPAS",2003,"Not Reported",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1148,30605,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1149,30605,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1150,30605,"GTM","PROARCA/CAPAS",2002,"Not Reported",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1151,30605,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Sierra del Lacandón","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1152,30606,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"San Miguel La Palotada - El Zotz","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1153,30606,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"San Miguel La Palotada - El Zotz","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1154,30606,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"San Miguel La Palotada - El Zotz","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1155,30606,"GTM","Parks profiles",2014,"Not Reported",16,"San Miguel La Palotada - El Zotz","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1156,30607,"GTM","PROARCA/CAPAS",2013,"Not Reported",16,"Quirigua","Monumento Cultural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1157,102717,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1158,102717,"GTM","PIP Site Consolidation",1998,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1159,102717,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1160,102717,"GTM","PIP Site Consolidation",2000,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1161,102717,"GTM","PIP Site Consolidation",2015,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1162,102717,"GTM","PROARCA/CAPAS",2002,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1163,102717,"GTM","PIP Site Consolidation",2001,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1164,102717,"GTM","PIP Site Consolidation",1999,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1165,102717,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1166,102717,"GTM","PIP Site Consolidation",2014,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1167,102717,"GTM","PIP Site Consolidation",2013,"Not Reported",16,"Bocas del Polochic","Refugio de Vida Silvestre","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1168,102817,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Naachtún - Dos Lagunas","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1169,102817,"GTM","Parks profiles",2014,"Not Reported",16,"Naachtún - Dos Lagunas","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1170,102817,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Naachtún - Dos Lagunas","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1171,102817,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Naachtún - Dos Lagunas","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1172,102855,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Cordillera Alux","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1173,102855,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Cordillera Alux","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1174,102855,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Cordillera Alux","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1175,102855,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Cordillera Alux","Reserva Protectora de Manantiales","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1176,107034,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Cuenca del Lago Atitlán","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1177,107034,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Cuenca del Lago Atitlán","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1178,107034,"GTM","PROARCA/CAPAS",2003,"Not Reported",16,"Cuenca del Lago Atitlán","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1179,107034,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Cuenca del Lago Atitlán","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1180,107088,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"La Vega del Zope","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1181,107088,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"La Vega del Zope","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1182,107096,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Parque Nacional Las Victorias","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1183,107096,"GTM","PROARCA/CAPAS",2016,"Not Reported",16,"Parque Nacional Las Victorias","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1184,107119,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Naciones Unidas","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1186,107119,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Naciones Unidas","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1187,107132,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1188,107132,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1189,107132,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1190,107132,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1191,107132,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Río Dulce","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1192,107152,"GTM","METT",2013,"Not Reported",16,"Todos Santos Cuchumatán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1193,107152,"GTM","METT",2015,"Not Reported",16,"Todos Santos Cuchumatán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1194,107152,"GTM","METT",2014,"Not Reported",16,"Todos Santos Cuchumatán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1195,115081,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Laguna del Tigre - Río Escondido","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1196,115081,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Laguna del Tigre - Río Escondido","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1197,115081,"GTM","Parks profiles",2014,"Not Reported",16,"Laguna del Tigre - Río Escondido","Biotopo Protegido","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1198,302095,"GTM","PROARCA/CAPAS",2013,"Not Reported",16,"Volcán y Laguna de Ipala","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1199,302095,"GTM","PROARCA/CAPAS",2016,"Not Reported",16,"Volcán y Laguna de Ipala","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1200,302095,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Volcán y Laguna de Ipala","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1201,302095,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Volcán y Laguna de Ipala","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1202,302112,"GTM","PROARCA/CAPAS",2013,"Not Reported",16,"Volcán de Suchitán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1203,302112,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Volcán de Suchitán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1204,302112,"GTM","PROARCA/CAPAS",2016,"Not Reported",16,"Volcán de Suchitán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1205,302112,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Volcán de Suchitán","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1206,302113,"GTM","PROARCA/CAPAS",2013,"Not Reported",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1207,302113,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1208,302113,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1209,302113,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1210,302113,"GTM","PROARCA/CAPAS",2016,"Not Reported",16,"Zunil","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1211,302115,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Volcán Chicabal","Zona de Veda Definitiva","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1212,302115,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Volcán Chicabal","Zona de Veda Definitiva","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1214,302115,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Volcán Chicabal","Zona de Veda Definitiva","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1215,302115,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Volcán Chicabal","Zona de Veda Definitiva","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1216,313055,"GTM","METT",2008,"Not Reported",16,"Acatenango","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1217,313055,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Acatenango","Parque Regional Municipal","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1218,315070,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1219,315070,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1220,315070,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1221,315070,"GTM","PROARCA/CAPAS",2014,"Not Reported",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1222,315070,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Río Sarstún","AUM","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1223,342350,"GTM","PIP Site Consolidation",1997,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1224,342350,"GTM","PIP Site Consolidation",1998,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1225,342350,"GTM","PIP Site Consolidation",1999,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1226,342350,"GTM","PIP Site Consolidation",2000,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1227,342350,"GTM","PIP Site Consolidation",1996,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1228,342350,"GTM","PIP Site Consolidation",2001,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1229,342350,"GTM","PROARCA/CAPAS",2002,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1230,342350,"GTM","Parks profiles",2013,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1231,342350,"GTM","PROARCA/CAPAS",2003,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1232,342350,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1233,342350,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1234,342350,"GTM","PIP Site Consolidation",2014,"Not Reported",16,"Sierra de las Minas","Reserva de la Biosfera","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1235,342356,"GTM","PROARCA/CAPAS",2002,"Not Reported",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1236,342356,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1237,342356,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1238,342356,"GTM","Parks profiles",2014,"Not Reported",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1240,342356,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Laguna del Tigre","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1241,342452,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Semuc Champey","Monumento Natural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1242,342452,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Semuc Champey","Monumento Natural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1243,342452,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Semuc Champey","Monumento Natural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1244,342452,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Semuc Champey","Monumento Natural","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1245,342460,"GTM","Parks profiles",2014,"Not Reported",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1246,342460,"GTM","PROARCA/CAPAS",2015,"Not Reported",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1247,342460,"GTM","PROARCA/CAPAS",2005,"Not Reported",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1248,342460,"GTM","PROARCA/CAPAS",2006,"Not Reported",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1249,342460,"GTM","PROARCA/CAPAS",2004,"Not Reported",16,"Yaxhá - Nakúm - Naranjo","Parque Nacional","Guatemala Management Effectiveness Evaluation","CONAP",2018,"Spanish","FALSE","FALSE",, +1250,198,"GUY","METT",2015,"Not Reported",17,"Kaieteur National Park","National Park","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1251,198,"GUY","METT",2016,"Not Reported",17,"Kaieteur National Park","National Park","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1252,198,"GUY","METT",2017,"Not Reported",17,"Kaieteur National Park","National Park","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1253,41049,"GUY","METT",2015,"Not Reported",17,"Kanuku Mountains Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1254,41049,"GUY","METT",2016,"Not Reported",17,"Kanuku Mountains Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1255,41049,"GUY","METT",2017,"Not Reported",17,"Kanuku Mountains Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1256,41057,"GUY","METT",2015,"Not Reported",17,"Shell Beach Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1257,41057,"GUY","METT",2016,"Not Reported",17,"Shell Beach Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1258,41057,"GUY","METT",2017,"Not Reported",17,"Shell Beach Protected Area","Managed Resource Use Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1259,41053,"GUY","METT",2017,"Not Reported",17,"Kanashen Amerindian Protected Area","Community Owned Conservation Area","Guyana Management Effectiveness Evaluation","Protected Areas Commission",2018,"English","FALSE","FALSE",, +1260,68255,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rannoch Moor","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1261,68262,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Dee Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1262,68263,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Swale","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1263,68264,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chesil Beach & The Fleet","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1264,68265,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Derwent Valley","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1265,68299,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Caron","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1266,68300,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nene Washes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1267,68301,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roydon Common","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1268,134955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gibraltar Point","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1269,68302,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Tayside Goose Roosts","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1270,95295,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broadland","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1271,68247,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lindisfarne","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1272,220082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Uist Machair & Lochs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1273,68249,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Leven","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1274,68250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Lomond","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1275,68251,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Neagh & Lough Beg","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1276,68252,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minsmere - Walberswick","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1277,68253,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Norfolk Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1278,68254,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ouse Washes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1279,68243,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Fochno & Dyfi","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1280,95302,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Severn Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1281,68303,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hamford Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1282,68304,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crymlyn Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1283,95280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The New Forest","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1284,94081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Malham Tarn","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1285,94084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thursley & Ockley Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1286,94085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benfleet & Southend Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1287,95287,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dengie","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1288,95304,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dersingham Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1289,95305,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wicken Fen","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1290,220048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carlingford Lough","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1291,220084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strangford Loch","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1292,220052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duddon Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1293,220089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ythan Estuary & Meikle Loch","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1294,127892,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foulness","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1295,127889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alde-Ore Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1296,68266,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holburn Lake & Moss","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1297,68267,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Irthinghead Mires","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1298,68256,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairngorm Lochs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1299,68257,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Lintrathen","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1300,68258,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Claish Moss","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1301,68259,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Silver Flowe","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1302,68260,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abberton Reservoir","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1303,68261,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rostherne Mere","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1304,68269,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Martin Mere","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1305,95297,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ribble & Alt Estuaries","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1306,68271,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Skene","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1307,68283,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fala Flow","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1308,68268,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leighton Moss","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1309,68272,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Eye","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1310,68273,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Solway Flats & Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1311,68274,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chichester and Langstone Harbours","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1312,68276,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wash","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1313,68277,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pagham Harbour","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1314,68278,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gruinart Flats, Islay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1315,68279,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eilean Na Muice Duibhe","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1316,68280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bridgend Flats, Islay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1317,68281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gladhouse Reservoir","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1318,68282,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Din Moss - Hoselaw Loch","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1319,95308,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rinns of Islay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1320,68286,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch an Duin","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1321,127895,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morecambe Bay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1322,166919,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pettigoe Plateau","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1323,166876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Spey - Insh Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1324,68288,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rutland Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1325,68289,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Idwal","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1326,68290,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Tegid","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1327,68291,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Esthwaite Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1328,166875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moray and Nairn Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1329,68293,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Exe Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1330,68295,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chippenham Fen","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1331,68296,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burry Inlet","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1332,68297,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ken & River Dee Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1333,166874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Midland Meres and Mosses Phase 2","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1334,166872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Larne Lough","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1335,166877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Lough Erne","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1336,166871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dornoch Firth and Loch Fleet","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1337,68298,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Spynie","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1338,68287,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redgrave and South Lopham Fens","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1339,68292,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walmore Common","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1340,94086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cameron Reservoir","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1341,94082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Medway Estuary & Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1342,94083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stodmarsh","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1343,95288,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Kinnordy","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1344,94089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Midland Meres & Mosses","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1345,95290,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stour & Orwell Estuaries","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1346,95291,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Humber Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1347,95292,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thanet Coast & Sandwich Bay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1348,95293,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colne Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1349,95294,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Maree","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1350,95296,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Montrose Basin","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1351,95298,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portsmouth Harbour","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1352,95299,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crouch & Roach Estuaries","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1353,95300,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coll","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1354,95303,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teesmouth & Cleveland Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1355,95306,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodwalton Fen","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1356,95307,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Strathbeg","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1357,95309,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westwater","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1358,134954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mersey Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1359,127891,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deben Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1360,127893,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenlaw Moor","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1361,129935,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Loch, Lochmaben","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1362,220049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cromarty Firth","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1363,220061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Moray Firth","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1364,220069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muir of Dinnet","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1365,220072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Uist Machair and Islands","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1366,220076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poole Harbour","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1367,198335,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arun Valley","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1368,220073,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northumbria Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1369,220086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thames Estuary and Marshes","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1370,220095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lee Valley","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1371,220097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South West London Waterbodies","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1372,127890,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breydon Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1373,900585,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Isles of Scilly","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1374,166758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avon Valley","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1375,166760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsydd Mon a Llyn","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1376,166759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caithness Lochs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1377,127894,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ruthven","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1378,220080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Somerset Levels and Moors","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1379,220077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ronas Hill - North Roe & Tingon","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1380,220057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Sanday Coast","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1381,220053,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dorset Heathlands","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1382,220079,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Solent and Southampton Water","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1383,220062,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kintyre Goose Roosts","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1384,220045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belfast Lough","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1385,220044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballynahone Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1386,220051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cuilcagh Mountain","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1387,220058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garron Plateau","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1388,198334,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caithness & Sutherland Peatlands","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1389,220064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Inch & Torrs Warren","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1390,168119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pevensey Levels","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1391,220065,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Foyle","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1392,220091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1393,220092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairy Water Bogs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1394,220093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Firth of Tay and Eden Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1395,220096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slieve Beagh","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1396,220094,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Clyde Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1397,900584,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garry Bog","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1398,900587,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lewis Peatlands","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1399,900634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Firth of Forth","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1400,900711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sleibhtean agus Cladach Thiriodh","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1401,901213,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fardrum and Roosky Turloughs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1402,900851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turmennan Lough","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1403,555543099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Nene Valley Gravel Pits","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1404,555592571,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Mersey Narrows and North Wirral Foreshore","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1405,95301,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackwater Estuary","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1406,903063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Magheraveely Marl Loughs","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1407,555624633,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Hebrides and the Minches","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1408,555624634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southern North Sea","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1409,555624635,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bristol Channel Approaches / Dynesfeydd Môr Hafren","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1410,555624636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Wales Marine / Gorllewin Cymru Forol","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1411,555624637,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Anglesey Marine / Gogledd Môn Forol","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1412,555624638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Channel","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1413,555541848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berwyn","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1414,555535619,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fontmell And Melbury Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1415,555535620,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pewsey Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1416,555535625,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braunton Burrows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1417,555535626,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill Of Towanreef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1418,555535631,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Windsor Forest And Great Park","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1419,555535632,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bredon Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1420,555535633,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rum","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1421,555535634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Preseli","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1422,555535635,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Itchen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1423,555535636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Devon Pebblebed Heaths","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1424,555535651,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Taynish And Knapdale Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1425,555535652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salisbury Plain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1426,555535653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gower Commons/ Tiroedd Comin Gwyr","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1427,555535654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yell Sound Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1428,555535655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Tweed","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1429,555535656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monach Islands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1430,555535657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Rona","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1431,555579241,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sound Of Barra","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1432,555535658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mousa","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1433,555535659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cardigan Bay/ Bae Ceredigion","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1434,555535660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Uist Machair","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1435,555535661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ebernoe Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1436,555535662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Mens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1437,555535663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Epping Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1438,555535664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Hampshire Hangers","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1439,555535665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chilterns Beechwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1440,555535666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wye Valley Woodlands/ Coetiroedd Dyffryn Gwy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1441,555535667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avon Gorge Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1442,555535668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Downton Gorge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1443,555535669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birklands And Bilhaugh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1444,555535671,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Borrowdale Woodland Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1445,555535672,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd A Cheunant Rheidol/ Rheidol Woods And Gorge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1446,555535673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Dartmoor Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1447,555535674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Etive Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1448,555535675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Tanar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1449,555535676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Wood Of Rannoch","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1450,555535677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinveachy Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1451,555535678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Amat Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1452,555535679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Y Cerrig","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1453,555535680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingley Vale","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1454,555535681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Eden Dene","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1455,555535693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mole Gap To Reigate Escarpment","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1456,555535694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minsmere To Walberswick Heaths And Marshes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1457,555535695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Stiperstones And The Hollies","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1458,555535720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tulach Hill And Glen Fender Meadows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1459,555535721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Norfolk Valley Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1460,555535722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morrone Birkwood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1461,555535723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Lawers","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1462,555535724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Dearg","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1463,555535725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Lui","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1464,555535726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Heasgarnich","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1465,555535727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flanders Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1466,555535728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Solway Mosses North","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1467,555535729,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fenn`S, Whixall, Bettisfield, Wem And Cadney Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1468,555535730,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorne Moor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1469,555535731,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Border Mires, Kielder - Butterburn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1470,555535732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berwyn A Mynyddoedd De Clwyd/ Berwyn And South Clwyd Mountains","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1471,555535733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elenydd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1472,555535734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dartmoor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1473,555535735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Harris","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1474,555535736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumochter Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1475,555535737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhinog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1476,555535738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eryri/ Snowdonia","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1477,555535739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Wyvis","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1478,555535740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Alder And Aonach Beag","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1479,555535741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meall Na Samhna","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1480,555535742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag Meagaidh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1481,555535743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Nevis","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1482,555535744,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn A`Ghlo","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1483,555535745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardmeanach","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1484,555535746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Coe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1485,555535747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lake District High Fells","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1486,555535752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Moidart","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1487,555535753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Borgie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1488,555535754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Kerry","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1489,555535755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Usk/ Afon Wysg","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1490,555535756,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Tywi/ River Tywi","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1491,555535757,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ouse Washes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1492,555535758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Avon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1493,555535759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Solway Firth","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1494,555535760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morecambe Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1495,555535761,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Severn Estuary/ Môr Hafren","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1496,555535762,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drigg Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1497,555535763,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flamborough Head","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1498,555535764,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Luce Bay And Sands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1499,555535765,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Invernaver","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1500,555535766,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sands Of Forvie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1501,555535767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winterton - Horsey Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1502,555535768,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barry Links","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1503,555535769,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St David`S / Ty Ddewi","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1504,555535770,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Ynys Gybi/ Holy Island Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1505,555535771,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tintagel-Marsland-Clovelly Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1506,555535772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oldshoremore And Sandwood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1507,555535773,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dungeness","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1508,555535774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sefton Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1509,555535775,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandwich Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1510,555535776,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clyde Valley Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1511,555535777,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardgour Pinewoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1512,555535778,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benacre To Easton Bavents Lagoons","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1513,555535779,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thanet Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1514,555535780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plymouth Sound And Estuaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1515,555535781,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fal And Helford","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1516,555535782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lundy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1517,555535783,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pembrokeshire Marine/ Sir Benfro Forol","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1518,555535784,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen Llyn A`R Sarnau/ Lleyn Peninsula And The Sarnau","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1519,555535785,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foinaven","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1520,555535786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Lomond Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1521,555535787,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mound Alderwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1522,555535788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Conon Islands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1523,555535789,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Broads","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1524,555535790,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag Nan Gamhainn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1525,555535791,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Cadlan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1526,555535792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stromness Heaths And Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1527,555535793,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lendalfoot Hills Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1528,555535794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitlaw And Branxholme","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1529,555535795,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Midlands Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1530,555535796,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Maree Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1531,555535797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caithness And Sutherland Peatlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1532,555535798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monadh Mor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1533,555535804,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wormley Hoddesdonpark Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1534,555535805,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blean Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1535,555535806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coll Machair","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1536,555535807,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhidorroch Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1537,555535808,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strathglass Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1538,555535809,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tiree Machair","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1539,555535810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Of Stenness","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1540,555535811,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moor House - Upper Teesdale","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1541,555535812,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Pennine Dales Meadows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1542,555535813,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craven Limestone Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1543,555535814,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morecambe Bay Pavements","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1544,555535815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Asby Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1545,555535816,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orfordness - Shingle Street","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1546,555535817,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fenland","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1547,555535818,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tanat And Vyrnwy Bat Sites/ Safleoedd Ystlumod Tanat Ac Efyrnwy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1548,555535819,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Usk Bat Sites/ Safleoedd Ystlumod Wysg","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1549,555535820,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Limestone Coast Of South West Wales/ Arfordir Calchfaen De Orllewin Cymru","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1550,555535821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Orme`S Head/ Pen Y Gogarth","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1551,555535822,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Derw A Safleoedd Ystlumod Meirion/ Meirionnydd Oakwoods And Bat Sites","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1552,555535823,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Caron","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1553,555535824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Fochno","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1554,555535825,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Goch","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1555,555535826,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pembrokeshire Bat Sites And Bosherston Lakes/ Safleoedd Ystlum Sir Benfro A Llynnoedd Bosherston","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1556,555535827,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wye Valley And Forest Of Dean Bat Sites/ Safleoedd Ystlumod Dyffryn Gwy A Fforest Y Ddena","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1557,555535828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Isle Of Wight Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1558,555535829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Meadow And Clattinger Farm","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1559,555535851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Nam Madadh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1560,555535852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berwickshire And North Northumberland Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1561,555535853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Solent And Isle Of Wight Lagoons","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1562,555535854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Roag Lagoons","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1563,555535855,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wash And North Norfolk Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1564,555535856,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chesil And The Fleet","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1565,555535857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochs Duich, Long And Alsh Reefs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1566,555535858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Faray And Holm Of Faray","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1567,555535859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Northumberland Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1568,555535860,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Obain Loch Euphoirt","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1569,555535877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glac Na Criche","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1570,555535878,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn Nan Tri-Tighearnan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1571,555535879,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hascosay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1572,555535880,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inverasdale Peatlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1573,555536013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craighall Gorge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1574,555535910,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Isle Of Portland To Studland Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1575,555535911,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Albans Head To Durlston Head","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1576,555535912,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sidmouth To West Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1577,555535913,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breckland","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1578,555535914,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rex Graham Reserve","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1579,555535915,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morven And Mullachdubh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1580,555535916,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muir Of Dinnet","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1581,555535917,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower River Spey - Spey Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1582,555535918,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carmarthen Bay Dunes/ Twyni Bae Caerfyrddin","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1583,555535919,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carmarthen Bay And Estuaries/ Bae Caerfyrddin Ac Aberoedd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1584,555535920,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Y Twyni O Abermenai I Aberffraw/ Abermenai To Aberffraw Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1585,555535921,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Môn: Cors Heli / Anglesey Coast: Saltmarsh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1586,555535922,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballochbuie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1587,555535929,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devil`S Dyke","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1588,555535930,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dorset Heaths (Purbeck And Wareham) And Studland Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1589,555535936,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kennet And Lambourn Floodplain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1590,555535937,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Largalinny","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1591,555535938,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Gwyrfai A Llyn Cwellyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1592,555535939,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Melvin","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1593,555535940,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mendip Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1594,555535941,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morfa Harlech A Morfa Dyffryn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1595,555535942,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mottey Meadows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1596,555535943,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Somerset And Mendip Bats","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1597,555535944,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orton Pit","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1598,555535945,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portholme","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1599,555535946,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rathlin Island","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1600,555535947,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Camel","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1601,555535948,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Ehen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1602,555536014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedwigoedd Penrhyn Creuddyn/ Creuddyn Peninsula Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1603,555536015,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Strathearn Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1604,555536034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coetiroedd Cwm Elan/ Elan Valley Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1605,555536035,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedwigoedd Dyffryn Elwy/ Elwy Valley Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1606,555536036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Emer Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1607,555536037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Exmoor And Quantock Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1608,555536038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fair Isle","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1609,555536039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fens Pools","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1610,555536100,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Montgomery Canal","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1611,555536116,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North West Pembrokeshire Commons/ Comins Gogledd Orllewin Sir Benfro","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1612,555536117,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ascrib, Isay And Dunvegan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1613,555536118,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardvar And Loch A`Mhuilinn Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1614,555536119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Overstrand Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1615,555536120,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Owenkillew River","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1616,555536121,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ox Close","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1617,555536154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roman Wall Loughs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1618,555536160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shingle Islands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1619,555536161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shortheath Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1620,555536162,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skipwith Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1621,555536163,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slieve Gullion","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1622,555536164,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Pennine Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1623,555536165,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Abb`S Head To Fast Castle","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1624,555536233,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wyville Thomson Ridge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1625,555536234,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garron Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1626,555536235,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braemar Pockmarks","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1627,555536236,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Norfolk Sandbanks And Saturn Reef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1628,555536237,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanton Banks","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1629,555536238,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Roe And Tributaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1630,555536239,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Faughan And Tributaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1631,555536240,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bolton Fell Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1632,555536241,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North West Rockall Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1633,555579243,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Mingulay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1634,555536242,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1635,555579244,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arun Valley","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1636,555579245,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pevensey Levels","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1637,555536057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hestercombe House","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1638,555536058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollymount","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1639,555536059,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Humber Estuary","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1640,555536060,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inverpolly","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1641,555536061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Isle Of May","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1642,555536062,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Johnstown Newt Sites","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1643,555536063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keltneyburn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1644,555536064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kennet Valley Alderwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1645,555536065,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinloch And Kyleakin Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1646,555536066,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kippenrait Glen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1647,555536243,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bassurelle Sandbank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1648,555536244,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haisborough, Hammond And Winterton","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1649,555536166,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Austell Clay Pits","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1650,555536167,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stodmarsh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1651,555536168,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strensall Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1652,555536169,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Subberthwaite, Blawith And Torver Low Commons","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1653,555536170,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tarbert Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1654,555536171,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tayvallich Juniper And Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1655,555536177,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyne And Nent","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1656,555536178,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tynron Juniper Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1657,555536179,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ullswater Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1658,555536180,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Ballinderry River","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1659,555536181,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Nithsdale Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1660,555536182,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Urquhart Bay Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1661,555536183,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Dorset Alder Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1662,555536184,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Fermanagh Scarplands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1663,555536185,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wimbledon Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1664,555536186,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Witherslack Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1665,555536245,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Dowsing, Race Bank And North Ridge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1666,555536246,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Margate And Long Sands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1667,555536247,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lyme Bay And Torbay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1668,555536248,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Start Point To Plymouth Sound & Eddystone","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1669,555536249,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lizard Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1670,555536250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lands End And Cape Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1671,555536251,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shell Flat And Lune Deep","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1672,555579246,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hamford Water","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1673,555579247,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tankerton Slopes And Swalecliffe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1674,555579248,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pisces Reef Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1675,555579249,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wight-Barfleur Reef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1676,555579250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croker Carbonate Slabs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1677,555579251,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Studland To Portland","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1678,555579252,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skerries And Causeway","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1679,555535618,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Godrevy Head To St Agnes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1680,555535621,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prescombe Down","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1681,555535622,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The New Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1682,555535623,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penhale Dunes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1683,555535624,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kenfig/ Cynffig","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1684,555535627,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigengar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1685,555535628,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moniack Gorge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1686,555535629,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bath And Bradford-On-Avon Bats","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1687,555535630,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beer Quarry And Caves","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1688,555535637,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tregonning Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1689,555535638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunkeld-Blairgowrie Lochs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1690,555535639,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Wye/ Afon Gwy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1691,555535640,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Eden","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1692,555535641,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ensor`S Pool","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1693,555535642,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Wensum","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1694,555535643,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Hams","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1695,555535644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mells Valley","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1696,555535645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glynllifon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1697,555535646,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Teifi/ River Teifi","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1698,555535647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cannock Extension Canal","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1699,555535648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Culm Grasslands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1700,555535649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Llawr-Cwrt","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1701,555535650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rooksmoor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1702,555535670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Staverton Park And The Thicks, Wantisden","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1703,555535682,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Yews","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1704,555535683,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ingleborough Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1705,555535684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strath","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1706,555535685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Durness","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1707,555535686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inchnadamph","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1708,555535715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holme Moor And Clean Moor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1709,555535687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pasturefields Salt Marsh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1710,555535688,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hoy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1711,555535689,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thursley, Ash, Pirbright And Chobham","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1712,555535690,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrine Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1713,555535691,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Lizard","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1714,555535692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roydon Common And Dersingham Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1715,555535696,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keen Of Hamar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1716,555535697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyne And Allen River Gravels","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1717,555535716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsydd Môn/ Anglesey Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1718,555535717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crymlyn Bog/ Cors Crymlyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1719,555535698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gang Mine","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1720,555535699,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caenlochan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1721,555535700,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rodborough Common","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1722,555535701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wye And Crundale Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1723,555535702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lewes Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1724,555535718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cothill Fen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1725,555535703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Queendown Warren","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1726,555535704,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lydden And Temple Ewell Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1727,555535705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Folkestone To Etchinghill Escarpment","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1728,555535706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1729,555535707,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thrislington","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1730,555535708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Derwent Valley","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1731,555535709,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oxford Meadows","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1732,555535710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trotternish Ridge","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1733,555535711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Iadain And Beinn Na H`Uamha","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1734,555535712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rannoch Moor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1735,555535713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drostre Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1736,555535714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waveney And Little Ouse Valley Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1737,555535719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newham Fen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1738,555535748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oak Mere","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1739,555535749,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lismore Lochs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1740,555535750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Watten","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1741,555535751,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llangorse Lake/ Llyn Syfaddan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1742,555535799,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitmaduthy Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1743,555535800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cotswold Beechwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1744,555535801,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Essex Estuaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1745,555535802,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Isles Of Scilly Complex","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1746,555535803,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Kilda","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1747,555535830,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chilmark Quarries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1748,555535831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairngorms","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1749,555535866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cockinhead Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1750,555535832,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballynahone Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1751,555535833,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cuilcagh Mountain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1752,555535834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garron Plateau","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1753,555535835,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pettigoe Plateau","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1754,555535836,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teal Lough","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1755,555535837,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1756,555535838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garry Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1757,555535839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairy Water Bogs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1758,555535840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Murlough","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1759,555535841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Magilligan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1760,555535842,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Lough Erne","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1761,555535843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eastern Mournes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1762,555535844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strangford Lough","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1763,555535845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monawilkin","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1764,555535954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Bostraze And Leswidden","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1765,555535846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Derryleckagh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1766,555535847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Magheraveely Marl Loughs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1767,555535848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slieve Beagh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1768,555535849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Vadills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1769,555535850,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Papa Stour","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1770,555535861,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bankhead Moss, Beith","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1771,555535862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Loch Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1772,555535955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newlyn Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1773,555535956,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strathy Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1774,555535957,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South-East Islay Skerries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1775,555535863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blawhorn Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1776,555535868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dykeneuk Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1777,555535964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afonydd Cleddau/ Cleddau Rivers","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1778,555535965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Eden - Cors Goch Trawsfynydd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1779,555535966,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alde, Ore And Butley Estuaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1780,555535864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braehead Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1781,555535865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coalburn Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1782,555535970,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashdown Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1783,555535971,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abhainn Clais An Eas And Allt A`Mhuilinn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1784,555535972,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aston Rowant","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1785,555535973,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banagher Glen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1786,555535974,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bann Estuary","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1787,555535867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranley Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1788,555535992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burrow Head","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1789,555535993,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Butser Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1790,555535994,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cadair Idris","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1791,555535869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1792,555535871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Reidside Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1793,555535872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Shotts Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1794,555535873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Claish Moss And Kentra Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1795,555535874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coladoir Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1796,555535875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eilean Na Muice Duibhe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1797,555535876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Feur Lochain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1798,555535870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waukenwae Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1799,555535881,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Mires And Lumbister","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1800,555535882,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moidach More","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1801,555535883,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ronas Hill - North Roe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1802,555535884,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sligachan Peatlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1803,555535885,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tingon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1804,555535886,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turclossie Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1805,555535998,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cape Wrath","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1806,555535999,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cardiff Beech Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1807,555536000,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn-Glenshane Pass","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1808,555535887,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flow Of Dergoals","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1809,555535888,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sound Of Arisaig (Loch Ailort To Loch Ceann Traigh)","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1810,555535889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sunart","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1811,555535890,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Uist Machair","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1812,555535891,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dornoch Firth And Morrich More","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1813,555535892,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Culbin Bar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1814,555535893,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moray Firth","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1815,555535894,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Spey","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1816,555535895,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Insh Marshes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1817,555535896,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkcowan Flow","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1818,555535897,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilhern Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1819,555535898,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lewis Peatlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1820,555535899,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mointeach Scadabhaigh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1821,555535900,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mochrum Lochs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1822,555535901,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mointeach Nan Lochain Dubha","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1823,555535902,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duddon Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1824,555535903,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roudsea Wood And Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1825,555535904,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Norfolk Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1826,555535905,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mòine Mhór","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1827,555535906,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Endrick Water","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1828,555535907,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Merrick Kells","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1829,555535908,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dorset Heaths","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1830,555535909,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peak District Dales","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1831,555535923,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barnack Hills And Holes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1832,555535924,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Derwent And Bassenthwaite Lake","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1833,555535925,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Pennine Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1834,555535926,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burnham Beeches","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1835,555535927,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clints Quarry","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1836,555535928,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Denby Grange Colliery Ponds","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1837,555535931,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eller`S Wood And Sand Dale","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1838,555535932,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Exmoor Heaths","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1839,555535933,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Firth Of Lorn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1840,555535934,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glan-Traeth","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1841,555535935,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grimsthorpe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1842,555535949,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rook Clift","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1843,555535950,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Solent Maritime","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1844,555535951,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Devon Shore Dock","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1845,555535952,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Wight Maritime","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1846,555535953,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wast Water","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1847,555535958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fardrum And Roosky Turloughs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1848,555535959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sanday","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1849,555535960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cernydd Carmel","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1850,555535961,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aberbargoed Grasslands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1851,555535962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sugar Loaf Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1852,555535963,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Achnahaird","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1853,555535967,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Altnaharra","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1854,555535968,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alyn Valley Woods/ Coedwigoedd Dyffryn Alun","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1855,555535969,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardnamurchan Burns","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1856,555535975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baston Fen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1857,555535976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beast Cliff - Whitby (Robin Hood`S Bay)","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1858,555536001,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carsegowan Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1859,555536002,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cawdor Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1860,555535977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bee`S Nest And Green Clay Pits","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1861,555535978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berriedale And Langwell Waters","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1862,555536003,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glaswelltiroedd Cefn Cribwr/ Cefn Cribwr Grasslands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1863,555536004,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bae Cemlyn/ Cemlyn Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1864,555536005,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cerne And Sydling Downs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1865,555536006,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cladagh (Swanlinbar) River","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1866,555535979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Binevenagh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1867,555535980,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackmill Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1868,555535981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackstone Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1869,555535982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaen Cynon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1870,555535983,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walton Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1871,555535984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Borders Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1872,555535985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bracket`S Coppice","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1873,555535986,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brecon Beacons/ Bannau Brycheiniog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1874,555536008,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Aber","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1875,555536009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Llawr-Y-Glyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1876,555535987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breen Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1877,555535988,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breney Common And Goss And Tregoss Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1878,555536010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Mhór","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1879,555536011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsydd Eifionydd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1880,555535989,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broubster Leans","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1881,555536012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coyles Of Muick","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1882,555535990,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brown Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1883,555535991,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buchan Ness To Collieston","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1884,555535995,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Mynydd Mawr","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1885,555535996,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calf Hill And Cragg Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1886,555535997,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cannock Chase","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1887,555536007,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Cwm Einion","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1888,555536016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cumbrian Marsh Fritillary Site","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1889,555536017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Clydach Woodlands / Coedydd Cwm Clydach","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1890,555536018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Doethie - Mynydd Mallaen","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1891,555536019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dam Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1892,555536020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dawlish Warren","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1893,555536021,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dee Estuary/ Aber Dyfrdwy","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1894,555536022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deeside And Buckley Newt Sites","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1895,555536023,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dew`S Ponds","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1896,555536024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dinnet Oakwood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1897,555536025,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dixton Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1898,555536067,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirk Deighton","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1899,555536068,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ladder Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1900,555536069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lecale Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1901,555536026,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dogden Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1902,555536027,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duncton To Bignor Escarpment","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1903,555536070,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ledmore Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1904,555536071,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eileanan Agus Sgeiran Lios Mór","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1905,555536072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Gruinard River","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1906,555536073,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Wittenham","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1907,555536074,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llwyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1908,555536075,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Dinam","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1909,555536076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsydd Llyn/ Lleyn Fens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1910,555536028,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunraven Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1911,555536029,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Durham Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1912,555536030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Nedd A Mellte","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1913,555536031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arnecliff And Park Hole Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1914,555536032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Caithness Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1915,555536033,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Blaencleddau","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1916,555536040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ford Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1917,555536122,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Paston Great Barn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1918,555536123,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peatlands Park","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1919,555536124,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peter`S Pit","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1920,555536041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dun Moss And Forest Of Alyth Mires","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1921,555536042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Galloway Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1922,555536043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Beasdale","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1923,555536044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Creran Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1924,555536125,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Phoenix United Mine And Crow`S Nest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1925,555536155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rostrevor Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1926,555536045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenartney Juniper Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1927,555536046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gower Ash Woods/ Coedydd Ynn Gwyr","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1928,555536047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Granllyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1929,555536048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Green Hill Of Strathdon","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1930,555536139,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Dee And Bala Lake/ Afon Dyfrdwy A Llyn Tegid","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1931,555536140,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Derwent","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1932,555536141,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Evelix","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1933,555536049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grogwynion","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1934,555536050,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddiau Fforest Gwydir/ Gwydyr Forest Mines","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1935,555536051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hackpen Hill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1936,555536052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Halkyn Mountain/ Mynydd Helygain","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1937,555536053,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hartslock Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1938,555536054,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hastings Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1939,555536055,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hatfield Moor","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1940,555536056,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Helbeck And Swindale Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1941,555536077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch A`Phuill","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1942,555536103,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mortlach Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1943,555536078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Achnacloich","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1944,555536079,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Creran","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1945,555536080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Fada","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1946,555536081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Laxford","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1947,555536082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Of Isbister","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1948,555536104,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morvern Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1949,555536105,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Airds Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1950,555536106,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mull Oakwoods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1951,555536107,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mull Of Galloway","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1952,555536108,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Epynt","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1953,555536109,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nene Washes","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1954,555536110,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ness Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1955,555536083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Of Wester","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1956,555536084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ruthven","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1957,555536085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ussie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1958,555536086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Findhorn Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1959,555536111,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Antrim Coast","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1960,555536087,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lyppard Grange Ponds","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1961,555536092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Methven Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1962,555536093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Migneint-Arenig-Dduallt","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1963,555536088,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Main Valley Bogs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1964,555536089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Manchester Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1965,555536090,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Y Fenai A Bae Conwy/ Menai Strait And Conwy Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1966,555536091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mendip Limestone Grasslands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1967,555536094,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mingarry Burn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1968,555536095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moffat Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1969,555536096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Moidart And Loch Shiel Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1970,555536097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monadhliath","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1971,555536112,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Downs Woodlands","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1972,555536098,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moneygal Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1973,555536099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moninea Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1974,555536101,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Montiaghs Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1975,555536102,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moorfoot Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1976,555536113,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Fetlar","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1977,555536114,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Pembrokeshire Woodlands/ Coedydd Gogledd Sir Benfro","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1978,555536115,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North York Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1979,555536126,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitkeathly Mires","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1980,555536127,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turflundie Wood","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1981,555536128,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Polruan To Polperro","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1982,555536142,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langavat","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1983,555536143,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Kent","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1984,555536144,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Lambourn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1985,555536145,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Mease","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1986,555536146,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Moriston","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1987,555536147,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Naver","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1988,555536148,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Oykel","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1989,555536149,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River South Esk","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1990,555536129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quants","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1991,555536130,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rassal","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1992,555536131,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rea`S Wood And Farr`S Bay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1993,555536150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Teith","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1994,555536151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Thurso","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1995,555536156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Saltfleetby-Theddlethorpe Dunes And Gibraltar Point","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1996,555536157,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clogwyni Pen Llyn/ Seacliffs Of Lleyn","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1997,555536132,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Talglas","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1998,555536133,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Richmond Park","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +1999,555536134,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rinns Of Islay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2000,555536135,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Axe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2001,555536136,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Bladnoch","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2002,555536137,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Clun","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2003,555536138,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Dee","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2004,555536152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rixton Clay Pits","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2005,555536153,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rochdale Canal","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2006,555536158,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shelforkie Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2007,555536159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sullom Voe","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2008,555536172,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Threepwood Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2009,555536173,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Treshnish Isles","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2010,555536174,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"TrosSAChs Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2011,555536175,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turmennan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2012,555536176,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tweed Estuary","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2013,555536187,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wolf Island Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2014,555536188,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woolmer Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2015,555536189,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yerbeston Tops","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2016,555536190,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yewbarrow Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2017,555536191,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rigg - Bile","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2018,555536192,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Solway Mosses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2019,555536193,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Firth Of Tay & Eden Estuary","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2020,555536194,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Tay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2021,555579253,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Maidens","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2022,555536195,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peeswit Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2023,555536200,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aughnadarragh Lough","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2024,555579254,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pobie Bank Reef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2025,555536196,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raeburn Flow","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2026,555579255,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Solan Bank Reef","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2027,555536197,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Moss Of Netherley","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2028,555536198,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Fannyside Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2029,555536199,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Darwin Mounds","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2030,555579256,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Anton Dohrn Seamount","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2031,555536201,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballykilbeg","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2032,555536202,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Foyle And Tributaries","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2033,555536206,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deroran Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2034,555579257,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hatton Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2035,555536203,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranny Bogs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2036,555536223,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fannich Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2037,555536224,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Bhan","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2038,555536225,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Onich To North Ballachulish Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2039,555536226,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Shira","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2040,555536204,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Curran Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2041,555536205,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dead Island Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2042,555579258,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Rockall Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2043,555536207,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tonnagh Beg Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2044,555536208,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tully Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2045,555536209,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Briddlesford Copses","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2046,555536210,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crowdy Marsh","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2047,555536211,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dover To Kingsdown Cliffs","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2048,555536212,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eversden And Wimpole Woods","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2049,555536213,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fen Bog","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2050,555536214,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harbottle Moors","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2051,555536215,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mottisfont Bats","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2052,555536216,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Naddle Forest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2053,555536217,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Simonside Hills","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2054,555536218,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Singleton And Cocking Tunnels","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2055,555536229,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crookhill Brick Pit","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2056,555536230,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holnest","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2057,555579242,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dogger Bank","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2058,555536231,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haig Fras","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2059,555536219,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parkgate Down","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2060,555536220,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tarn Moss","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2061,902191,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tràigh Na Berie","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2062,555536222,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oronsay","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2063,555536227,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slochd","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2064,555536228,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Maim","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2065,555536232,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scanner Pockmark","Site of Community Importance (Habitats Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2066,555541800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alde-Ore Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2067,555541801,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stour and Orwell Estuaries","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2068,555541802,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hamford Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2069,555541803,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abberton Reservoir","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2070,555541804,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benfleet and Southend Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2071,555541805,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breydon Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2072,555541806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breckland","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2073,555541807,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dengie (Mid-Essex Coast Phase 1)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2074,555541808,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colne Estuary (Mid-Essex Coast Phase 2)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2075,555541809,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crouch and Roach Estuaries (Mid-Essex Coast Phase 3)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2076,555541810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackwater Estuary (Mid-Essex Coast Phase 4)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2077,555541811,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foulness (Mid-Essex Coast Phase 5)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2078,555541812,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broadland","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2079,555541813,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deben Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2080,555541814,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Yarmouth North Denes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2081,555541815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benacre to Easton Bavents","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2082,555541816,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Somerset Levels and Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2083,555541817,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chew Valley Lake","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2084,555541818,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Exe Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2085,555541638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mingulay and Berneray","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2086,555541639,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pentland Firth Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2087,555541640,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caithness and Sutherland Peatlands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2088,555541641,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caithness Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2089,555541642,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Caithness Cliffs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2090,555541643,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Caithness Cliffs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2091,555541644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Sutherland Coastal Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2092,555541645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cape Wrath","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2093,555541646,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Handa","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2094,555541647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Priest Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2095,555541648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rum","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2096,555541649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Canna and Sanday","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2097,555541650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mointeach Scadabhaigh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2098,555541651,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inverpolly, Loch Urigill and nearby Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2099,555541652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Maree","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2100,555541653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ruthven","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2101,555541654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Knockie and nearby Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2102,555541655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Inverness Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2103,555541656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ashie","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2104,555541657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lewis Peatlands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2105,555541658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Harris Mountains","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2106,555541659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Assynt Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2107,555541660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lairg and Strath Brora Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2108,555541819,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chesil Beach and The Fleet","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2109,555541664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Moray Firth","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2110,555541665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moray and Nairn Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2111,555541666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Dearg","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2112,555541667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Wyvis","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2113,555541668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Flemington","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2114,555541820,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dorset Heathlands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2115,555541821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poole Harbour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2116,555541670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wester Ross Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2117,555541671,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Shiel","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2118,555541672,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ness and Barvas, Lewis","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2119,555541673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aird and Borve, Benbecula","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2120,555541674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eoligarry, Barra","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2121,555541675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cuillins","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2122,555541676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morangie Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2123,555541677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigmore Wood","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2124,555541678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hermaness, Saxa Vord and Valla Field","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2125,555541679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ramna Stacks and Gruney","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2126,555541680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fetlar","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2127,555541681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ronas Hill - North Roe and Tingon","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2128,555541682,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Papa Stour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2129,555541683,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foula","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2130,555541684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Noss","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2131,555541685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fair Isle","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2132,555541686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Westray","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2133,555541687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Papa Westray (North Hill and Holm)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2134,555541688,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marwick Head","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2135,555541689,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hoy","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2136,555541690,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Copinsay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2137,555541691,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag Meagaidh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2138,555541692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sule Skerry and Sule Stack","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2139,555541822,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Devon Heaths","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2140,555541698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Skene","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2141,555541699,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fowlsheugh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2142,555541700,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochnagar","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2143,555541701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumochter Hills","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2144,555541702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orkney Mainland Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2145,555541703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Sanday Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2146,555541704,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mousa","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2147,555541705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rousay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2148,555541706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auskerry","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2149,555541707,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calf of Eday","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2150,555541708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Troup, Pennan and Lion's Heads","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2151,555541709,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buchan Ness to Collieston Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2152,555541710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sumburgh Head","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2153,555541711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Alder","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2154,555541712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abernethy Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2155,555541713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinveachy Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2156,555541714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochs of Spiggie and Brow","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2157,555541721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Otterswick and Graveland","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2158,555541722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Lomond","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2159,555541723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coll","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2160,555541724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sléibhtean agus Cladach Thiriodh (Tiree Wetlands and Coast)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2161,555541725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coll (corncrake)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2162,555541726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tiree (corncrake)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2163,555541727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Treshnish Isles","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2164,555541728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gruinart Flats, Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2165,555541729,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bridgend Flats, Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2166,555541730,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laggan, Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2167,555541731,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eilean na Muice Duibhe (Duich Moss), Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2168,555541732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rinns of Islay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2169,555541733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Oa","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2170,555541734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Clyde Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2171,555541735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kintyre Goose Roosts","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2172,555541823,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tamar Estuaries Complex","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2173,555541824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chichester and Langstone Harbours","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2174,555541825,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2175,555541826,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portsmouth Harbour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2176,555541827,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Solent and Southampton Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2177,555541828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avon Valley","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2178,555541829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porton Down","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2179,555541830,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salisbury Plain","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2180,555541831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Swale","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2181,555541832,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thames Estuary and Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2182,555541833,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Medway Estuary and Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2183,555541834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pagham Harbour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2184,555541835,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thanet Coast and Sandwich Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2185,555541836,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dungeness to Pett Level","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2186,555541837,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lee Valley","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2187,555541630,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Rona and Sula Sgeir","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2188,555541631,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flannan Isles","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2189,555541632,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Kilda","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2190,555541633,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shiant Isles","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2191,555541634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Uist Machair and Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2192,555541635,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monach Isles","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2193,555541636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Uist Machair and Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2194,555541637,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilpheder and Smerclate, South Uist","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2195,555541661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Eye","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2196,555541662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dornoch Firth and Loch Fleet","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2197,555541663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cromarty Firth","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2198,555541669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Achanalt Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2199,555541693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Spynie","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2200,555541694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Strathbeg","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2201,555541695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ythan Estuary, Sands of Forvie and Meikle Loch","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2202,555541696,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Spey - Insh Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2203,555541697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairngorms","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2204,555541715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Vaa","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2205,555541716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Tanar","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2206,555541717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballochbuie","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2207,555541718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muir of Dinnet","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2208,555541736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ailsa Craig","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2209,555541737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ken and River Dee Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2210,555541738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Inch and Torrs Warren","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2211,555541739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Colonsay and Western Cliffs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2212,555541740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Loch, Lochmaben","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2213,555541838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stodmarsh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2214,555541839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thursley, Hankley and Frensham Commons (Wealden Heaths Phase 1)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2215,555541840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wealden Heaths Phase 2","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2216,555541719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tips of Corsemaul and Tom Mor","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2217,555541760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westwater","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2218,555541720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Switha","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2219,555541741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glas Eileanan","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2220,555541742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Cart","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2221,555541743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muirkirk and North Lowther Uplands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2222,555541744,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langholm - Newcastleton Hills","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2223,555541745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knapdale Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2224,555541746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cnuic agus Cladach Mhuile","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2225,555541747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arran Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2226,555541748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen App and Galloway Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2227,555541749,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caenlochan","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2228,555541750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rannoch Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2229,555541751,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Montrose Basin","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2230,555541761,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Abb's Head to Fast Castle","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2231,555541841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thames Basin Heaths","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2232,555541842,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South West London Waterbodies","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2233,555541752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Kinnordy","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2234,555541753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Lintrathen","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2235,555541754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Leven","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2236,555541755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Firth of Tay and Eden Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2237,555541843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashdown Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2238,555541844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Dee Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2239,555541756,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cameron Reservoir","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2240,555541757,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forth Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2241,555541758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gladhouse Reservoir","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2242,555541768,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Imperial Dock Lock, Leith","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2243,555541769,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Solway Flats and Marshes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2244,555541759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fala Flow","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2245,555541770,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duddon Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2246,555541771,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morecambe Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2247,555541772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leighton Moss","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2248,555541773,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ribble and Alt Estuaries","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2249,555541774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Martin Mere","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2250,555541762,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenlaw Moor","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2251,555541775,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mersey Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2252,555541776,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowland Fells","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2253,555541777,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorne and Hatfield Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2254,555541778,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lindisfarne","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2255,555541779,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Farne Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2256,555541780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coquet Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2257,555541845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Traeth Lafan/ Lavan Sands, Conway Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2258,555541846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ynys Feurig, Cemlyn Bay and The Skerries","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2259,555541847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Ynys Gybi/ Holy Island Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2260,555541763,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Din Moss - Hoselaw Loch","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2261,555541764,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forest of Clunie","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2262,555541765,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Tayside Goose Roosts","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2263,555541766,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Firth of Forth","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2264,555541767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slamannan Plateau","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2265,555541793,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wash","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2266,555541794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gibraltar Point","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2267,555541781,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holburn Lake and Moss","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2268,555541782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teesmouth and Cleveland Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2269,555541783,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Derwent Valley","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2270,555541784,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flamborough Head and Bempton Cliffs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2271,555541785,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Humber Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2272,555541786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northumbria Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2273,555541787,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North York Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2274,555541788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hornsea Mere","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2275,555541789,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Pennine Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2276,555541790,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peak District Moors (South Pennine Moors Phase 1)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2277,555541791,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Pennine Moors Phase 2","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2278,555541795,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nene Washes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2279,555541796,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ouse Washes","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2280,555541797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rutland Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2281,555541798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Norfolk Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2282,555541799,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minsmere-Walberswick","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2283,555541792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walmore Common","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2284,555541849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Aberdaron ac Ynys Enlli/ Aberdaron Coast and Bardsey Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2285,555541850,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Migneint-Arenig-Dduallt","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2286,555541851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grassholm","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2287,555541852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skokholm and Skomer","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2288,555541853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castlemartin Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2289,555541854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ramsey and St David`s Peninsula Coast","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2290,555541855,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bae Caerfyrddin/ Carmarthen Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2291,555541856,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elenydd - Mallaen","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2292,555541857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burry Inlet","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2293,555541858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Severn Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2294,555541859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rathlin Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2295,555541860,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheep Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2296,555541861,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Foyle","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2297,555541862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Larne Lough","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2298,555541863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pettigoe Plateau","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2299,555541864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Lough Erne","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2300,555541865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Neagh and Lough Beg","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2301,555541866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belfast Lough","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2302,555541867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strangford Lough","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2303,555541868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carlingford Lough","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2304,555541869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Killough Bay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2305,555541870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Outer Ards","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2306,555541871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arun Valley","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2307,555541872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Cilan, Trwyn y Wylfa ac Ynysoedd Sant Tudwal","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2308,555541873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig yr Aderyn (Bird`s Rock)","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2309,555541874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dyfi Estuary / Aber Dyfi","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2310,555541875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ynys Seiriol / Puffin Island","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2311,555541876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandlings","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2312,555577866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mersey Narrows and North Wirral Foreshore","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2313,555541877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Isles of Scilly","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2314,555541878,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marazion Marsh","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2315,555541879,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belfast Lough Open Water","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2316,555541880,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Copeland Islands","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2317,555541881,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Darnaway and Lethen Forest","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2318,555541882,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Novar","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2319,555541883,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Liverpool Bay / Bae Lerpwl","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2320,555541884,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Renfrewshire Heights","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2321,555577867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Nene Valley Gravel Pits","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2322,555541885,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Anagach Woods","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2323,555541886,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Inverness-shire Lochs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2324,555541887,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oronsay and South Colonsay","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2325,555541888,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strath Carnaig and Strath Fleet Moors","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2326,555541889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Antrim Hills","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2327,555541890,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slieve Beagh - Mullaghfad - Lisnaskea","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2328,555577868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Affric to Strathconon","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2329,555577869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jura, Scarba and the Garvellachs","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2330,555577870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moidart and Ardgour","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2331,555577871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foinaven","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2332,555577872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Etive and Glen Fyne","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2333,555577873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairngorms Massif","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2334,555541891,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Outer Thames Estuary","Special Protection Area (Birds Directive)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2335,555624684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Killough Bay","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2336,555624685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Outer Ards","Ramsar Site, Wetland of International Importance","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2337,136283,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Daddyhole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2338,138173,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Killerton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2339,137469,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bourne Alder Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2340,137481,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Charing Beech Hangers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2341,138759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chequer's Wood and Old Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2342,138767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cobham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2343,138786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2344,140318,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wick Wood and Worldham Hangers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2345,140380,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alverstone Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2346,140405,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arreton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2347,140413,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bembridge Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2348,140422,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bonchurch Landslips","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2349,140445,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bouldnor and Hamstead Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2350,140485,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Compton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2351,140497,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Freshwater Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2352,140820,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fernham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2353,137061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wendlebury Meads and Mansmoor Closes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2354,170221,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weston Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2355,140841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tamar - Tavy Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2356,140262,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mullion Cliff To Predannack Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2357,136712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shapwick Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2358,136338,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleaves Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2359,137000,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morte Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2360,140063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ugbrooke Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2361,140111,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Watersmeet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2362,140126,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wembury Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2363,140145,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westward Ho! Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2364,136449,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cold Ash Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2365,136458,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Thrift Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2366,138208,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aston Rowant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2367,136534,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aston Rowant Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2368,136554,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bierton Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2369,138596,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chillesford Church Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2370,137805,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baverstock Juniper Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2371,136792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Neutral Farm Pit, Butley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2372,136799,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newbourn Springs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2373,136569,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bolter End Sand Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2374,136576,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradenham Woods, Park Wood & The Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2375,136592,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bugle Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2376,136599,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burnham Beeches","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2377,138328,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Magdalen Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2378,138555,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Shute","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2379,138567,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seven Barrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2380,137834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marsh Wood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2381,140933,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coneyhurst Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2382,137848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tar Grove Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2383,137939,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Betley Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2384,137953,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bickerton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2385,140019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greatness Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2386,140032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Halling To Trottiscliffe Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2387,137332,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ham Street Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2388,140050,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hatch Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2389,138895,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gripwood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2390,137002,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Mewan Beacon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2391,169903,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hinton Hill, Wellow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2392,137019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wheal Martyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2393,137356,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Curry Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2394,137364,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crook Peak To Shute Shelve Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2395,137031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yeolmbridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2396,141068,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baulk Head To Mullion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2397,137182,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wheal Emily","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2398,139996,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Axmouth To Lyme Regis Undercliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2399,137223,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corfe & Barrow Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2400,137375,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Polyne Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2401,137413,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harbour Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2402,137725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dinton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2403,137779,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lake Allotments","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2404,137802,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hook Meadow and The Trap Grounds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2405,137455,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rosenun Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2406,137914,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"King's Sedgemoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2407,137926,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moorlinch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2408,137957,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2409,137968,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southlake Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2410,136741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shide Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2411,136785,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ventnor Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2412,136807,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitecliff Bay and Bembridge Ledges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2413,137996,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Faraday Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2414,138713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Viverdon Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2415,138769,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trelavour Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2416,138784,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tremearne Par","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2417,140400,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ham Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2418,140429,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Homington and Coombe Bissett Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2419,140971,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Honeybrook Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2420,140464,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inwood, Warleigh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2421,140494,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jones's Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2422,140044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barns Batch Spinney","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2423,140619,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Houghton Green Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2424,140527,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lady Down Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2425,136395,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lamb Leer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2426,136407,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langford Heathfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2427,137081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cull-Peppers Dish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2428,136851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shepton Montague Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2429,136862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laycock Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2430,136883,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edford Woods & Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2431,136889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Ironstone Works, Mells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2432,140659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fivehead Woods and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2433,136905,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunsdon Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2434,136911,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woolcombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2435,137018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tealham and Tadham Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2436,137038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thurlbear Wood and Quarrylands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2437,137053,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Vallis Vale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2438,137064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walton and Ivythorn Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2439,137086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westhay Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2440,137160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aller Sand Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2441,137265,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Froward Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2442,137274,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bickleigh Wood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2443,140324,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gedgrave Hall Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2444,137706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holton Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2445,137310,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ham Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2446,169706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broome Heath Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2447,136303,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poole Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2448,138003,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chudleigh Caves and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2449,170165,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Throstle Shaw and Sandbeds Fan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2450,169896,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hele, Samson's and Combe Martin Bays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2451,138733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Farthing Downs and Happy Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2452,138619,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sturry Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2453,137889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bobbitshole, Belstead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2454,138004,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barnby Broad & Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2455,138042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orwell Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2456,138048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rex Graham Reserve","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2457,137922,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hornchurch Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2458,137923,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oxleas Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2459,137943,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Richmond Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2460,138447,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walthamstow Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2461,138470,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aylesford Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2462,138598,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spot Lane Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2463,136781,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Arun","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2464,137962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Lake, Delamere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2465,140622,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waldron Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2466,138128,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Well Rough and Long Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2467,146253,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eartham Pit, Boxgrove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2468,138325,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wateringbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2469,140754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hankley Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2470,140881,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Beult","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2471,137522,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Staines Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2472,138419,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heswall Dales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2473,137479,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Thames Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2474,137297,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hothfield Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2475,138656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brent Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2476,138674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crofton Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2477,138689,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croham Hurst","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2478,138715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Downe Bank and High Elms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2479,138735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hampstead Heath Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2480,138746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mid Colne Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2481,138768,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keston and Hayes Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2482,138785,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abbey Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2483,140623,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winchelsea Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2484,140440,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chobham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2485,140457,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hackhurst and White Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2486,140675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stone Hill Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2487,140542,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Charterhouse To Eashing","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2488,140572,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woldingham & Oxted Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2489,140598,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chipstead Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2490,136220,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ash To Brookwood Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2491,136265,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colyers Hanger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2492,136292,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combe Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2493,136299,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devil's Punch Bowl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2494,136319,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Epsom and Ashtead Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2495,136791,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Esher Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2496,136806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glover's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2497,136820,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Godstone Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2498,136843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hedgecourt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2499,136857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horsell Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2500,136890,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langham Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2501,136893,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leith Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2502,136913,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lingfield Cernes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2503,136932,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mole Gap To Reigate Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2504,137058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seale Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2505,137078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheepleas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2506,137508,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Staffhurst Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2507,137540,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Titsey Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2508,137548,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Vann Lake and Ockley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2509,137581,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitmoor Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2510,137604,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arlington Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2511,141036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Asham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2512,137625,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chailey Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2513,555545527,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rye Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2514,137655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashburnham Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2515,137668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashdown Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2516,141015,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St. Dunstan's Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2517,137682,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seaford To Beachy Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2518,140677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Perry Copse Outcrops","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2519,140173,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Amberley Mount To Sullington Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2520,140185,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Amberley Wild Brooks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2521,140190,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ambersham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2522,140208,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arun Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2523,140221,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arundel Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2524,140228,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duncton To Bignor Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2525,140240,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bognor Reef","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2526,140246,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bracklesham Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2527,140678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slinfold Stream and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2528,140284,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burton Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2529,140297,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chanctonbury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2530,140311,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cissbury Ring","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2531,140322,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Climping Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2532,137229,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rough Bank, Miserden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2533,138496,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hubbard's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2534,141076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dumsey Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2535,138593,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chichester Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2536,138606,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Selsey, East Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2537,138801,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2538,138819,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Riddlesdown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2539,138854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elmstead Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2540,138879,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ruislip Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2541,138888,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ruxley Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2542,138913,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harrow Weald","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2543,140402,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Syon Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2544,140417,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walthamstow Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2545,140427,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wimbledon Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2546,140959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stockland Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2547,140507,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banstead Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2548,140522,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blindley Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2549,140536,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bookham Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2550,136962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moor Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2551,136976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Papercourt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2552,136986,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ockham and Wisley Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2553,136998,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Puttenham & Crooksbury Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2554,141045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Smart's and Prey Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2555,137021,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quarry Hangers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2556,137039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ranmore Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2557,137050,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Reigate Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2558,137685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Binglett's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2559,137728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bream Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2560,140544,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2561,137759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clayton To Offham Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2562,137773,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dallington Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2563,137784,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Darwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2564,137803,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ditchling Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2565,136673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pagham Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2566,136685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parham Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2567,136928,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Highcliffe To Milford Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2568,140332,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woolmer Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2569,170107,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ryde Sands and Wootton Creek","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2570,136957,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurst Castle and Lymington River Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2571,138288,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eridge Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2572,138306,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fore Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2573,138321,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hastings Cliffs To Pett Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2574,138348,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Herstmonceux Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2575,140366,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newtown Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2576,136644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Medina Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2577,136831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yar Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2578,136439,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shipton-On-Cherwell & Whitehill Farm Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2579,138360,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2580,138371,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leasam Heronry Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2581,138387,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lewes Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2582,136798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lullington Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2583,138416,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maplehurst Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2584,138426,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marline Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2585,138438,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brighton To Newhaven Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2586,141037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Paines Cross Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2587,138474,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Corner Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2588,136695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Farm Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2589,136734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St. Leonard's Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2590,138481,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penn's Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2591,136886,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pevensey Levels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2592,137253,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wakehurst & Chiddingly Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2593,138502,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2594,138557,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eridge Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2595,138574,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weir Wood Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2596,138589,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilmington Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2597,140864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bentley Priory","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2598,140264,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buchan Hill Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2599,140995,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coates Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2600,140355,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cow Wood and Harry's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2601,140370,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Treyford To Bepton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2602,140376,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ebernoe Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2603,141038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fonthill Grottoes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2604,146279,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Lambourn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2605,140398,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forest Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2606,136494,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beeding Hill To Newtimber Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2607,136511,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fyning Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2608,136531,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harting Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2609,136544,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heyshott Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2610,136549,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurston Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2611,136562,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Iping Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2612,138273,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingley Vale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2613,136613,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lavington Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2614,136616,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Mens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2615,136632,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mills Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2616,136645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northpark Copse To Snapelands Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2617,141014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warnham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2618,136664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pads Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2619,136744,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St. Leonard's Park Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2620,136756,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shillinglee Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2621,137216,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sullington Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2622,137245,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Dean Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2623,140074,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalham Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2624,137260,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Harting Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2625,137279,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wolstonbury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2626,137289,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Worth Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2627,137396,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baker's Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2628,140112,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northward Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2629,140230,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Church Woods, Blean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2630,137456,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brookland Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2631,137330,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Queendown Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2632,137370,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alkham, Lydden and Swingfield Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2633,138798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cowden Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2634,138803,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Darenth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2635,138828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dover To Kingsdown Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2636,138839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Blean Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2637,138842,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ellenden Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2638,140105,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Thames Estuary and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2639,140110,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hoad's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2640,140132,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holborough To Burham Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2641,140561,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollingbourne Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2642,146278,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Kennet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2643,141058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cowden Pound Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2644,138883,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Farningham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2645,138892,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Folkestone To Etchinghill Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2646,138898,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Folkestone Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2647,139977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gibbin's Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2648,139986,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Crabbles Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2649,140007,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Shuttlesfield Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2650,140569,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westerham Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2651,140575,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ileden and Oxenden Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2652,140594,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knole Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2653,136219,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Larkey Valley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2654,136228,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lenham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2655,136267,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tower Hill To Cockham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2656,136294,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lullingstone Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2657,136308,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lydden and Temple Ewell Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2658,136323,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brook Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2659,136336,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lympne Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2660,136342,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lynsore Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2661,136371,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Magpie Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2662,136383,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marden Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2663,136393,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Medway Estuary and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2664,136420,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oldbury and Seal Chart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2665,136446,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"One Tree Hill and Bitchet Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2666,136460,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Otford To Shoreham Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2667,141040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alex Farm Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2668,136472,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Wood, Chilham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2669,138877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stodmarsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2670,136483,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parkgate Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2671,138905,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swanscombe Skull Site","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2672,138901,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Swale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2673,136490,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parsonage Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2674,137195,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wouldham To Detling Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2675,140021,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wye and Crundale Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2676,137217,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yockletts Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2677,140471,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thursley, Hankley & Frensham Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2678,136934,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pembury Cutting and Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2679,136952,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Polebrook Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2680,136973,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Preston Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2681,137700,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stockstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2682,137733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"House Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2683,136989,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Purple Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2684,137004,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Robins Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2685,137052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandwich Bay To Hacklinge Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2686,137069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scord's Wood and Brockhoult Mount","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2687,137082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scotney Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2688,137095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sevenoaks Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2689,137131,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shorne and Ashenbank Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2690,137134,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sissinghurst Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2691,137186,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westerham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2692,137693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fray's Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2693,137764,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingston Escarpment & Iford Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2694,137804,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plashett Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2695,137847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Willingdon Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2696,138506,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oaken Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2697,138526,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orlestone Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2698,138541,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Otterpool Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2699,138575,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rusthall Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2700,138651,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wansunt Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2701,138663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Blean and Thornden Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2702,138673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Adur Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2703,136788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hart Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2704,138688,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bognor Common Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2705,138095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inkpen Crocus Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2706,138691,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chantry Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2707,137419,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burgh Hill Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2708,138751,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Dean Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2709,137427,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harefield Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2710,138761,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Felpham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2711,136655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horton Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2712,140993,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Halnaker Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2713,136677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Levin Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2714,136692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marehill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2715,136699,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rake Hanger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2716,136742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waltham Brooks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2717,136848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorpe Hay Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2718,136854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2719,136869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stones Road Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2720,136937,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Firle Escarpment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2721,137441,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heathfield Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2722,137492,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peter's Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2723,137518,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Saltbox Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2724,138314,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boxford Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2725,137385,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hemingfold Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2726,137387,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2727,138404,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Common Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2728,138421,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lewes Brooks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2729,137543,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tankerton Slopes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2730,137568,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ingrebourne Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2731,137578,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combe Haven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2732,138771,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buxted Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2733,138323,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brimpton Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2734,137597,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Denham Lock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2735,137616,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chingford Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2736,140929,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Milton Gate Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2737,137651,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colony Bog and Bagshot Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2738,137672,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairmile Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2739,138186,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seabrook Stream","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2740,138213,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Folkington Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2741,138298,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allington Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2742,138366,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cannoncourt Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2743,138381,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Catmore and Winterly Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2744,138394,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanford End Mill and River Loddon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2745,138313,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Houlder and Monarch Hill Pits, Upper Halling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2746,138356,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Philpot's and Hook Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2747,138370,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auclaye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2748,138403,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cock Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2749,138431,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combe Wood and Linkenholt Hanging","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2750,138377,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clock House Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2751,138383,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Smokejack Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2752,138834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2753,138427,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gong Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2754,138830,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trottiscliffe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2755,140755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Offham Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2756,138453,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Charleshill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2757,138745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wey Valley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2758,138749,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Singleton and Cocking Tunnels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2759,138779,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sapperton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2760,138811,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thanet Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2761,140758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackhorse Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2762,140759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Down Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2763,140743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brede Pit and Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2764,140625,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southborough Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2765,140671,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chiddingfold Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2766,140674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coppedhall Hanger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2767,140827,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southerham Grey Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2768,140828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Netherside Stream Outcrops","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2769,140871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hastingford Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2770,140909,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Willingford Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2771,138111,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broxhead and Kingsley Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2772,141134,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Tew Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2773,140478,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colwell Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2774,138459,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westbury Ironstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2775,138221,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pamber Forest and Silchester Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2776,136622,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buttler's Hangings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2777,137106,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wicklesham and Coxwell Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2778,141077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heath Brow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2779,136634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ebblake Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2780,169662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bacombe and Coombe Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2781,136647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dancersend","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2782,138045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bere Mill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2783,138062,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warren Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2784,138089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Botley Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2785,138073,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hang Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2786,138104,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Briff Lane Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2787,136698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fern House Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2788,138123,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Easton Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2789,138230,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thatcham Reed Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2790,138245,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aldermaston Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2791,136708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foxcote Reservoir and Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2792,138251,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashridge Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2793,138265,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avery's Pightle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2794,138285,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bisham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2795,138433,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombe Wood, Frilsham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2796,139976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holly Court Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2797,140972,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Decoy Pit , Pools & Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2798,140077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"King's Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2799,138456,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Englemere Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2800,138468,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fognam Chalk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2801,138499,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowdown and Chamberhouse Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2802,138504,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenham and Crookham Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2803,138514,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hamstead Marshall Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2804,140164,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parkfarm Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2805,138529,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inkpen Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2806,138539,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Irish Hill Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2807,138843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ratlake Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2808,138849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frieth Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2809,138887,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wormsley Chalk Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2810,138897,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dancersend Waterworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2811,138919,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glyme Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2812,140089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lardon Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2813,140248,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Woodhay Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2814,140101,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lodge Wood & Sandford Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2815,140266,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winterbourne Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2816,140274,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Windsor Forest and Great Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2817,140316,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wraysbury & Hythe End Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2818,140116,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chawridge Bourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2819,140129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Copse, Beenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2820,140141,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langley Wood and Homan's Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2821,140151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sulham and Tidmarsh Woods and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2822,140201,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandhurst To Owlsmoor Bogs and Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2823,140209,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Snelsmore Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2824,140222,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swinley Park and Brick Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2825,140321,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wykery Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2826,140235,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wasing Wood Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2827,136270,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Priest's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2828,136293,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chilbolton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2829,136306,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foxlease and Ancells Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2830,140333,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashdown Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2831,140359,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broadmoor To Bagshot Woods and Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2832,136237,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West's Meadow, Aldermaston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2833,136355,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stockbridge Common Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2834,183415,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aston Rowant Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2835,136268,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shabbington Woods Complex","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2836,136482,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pincent's Kiln","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2837,136492,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woolhampton Reed Bed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2838,136505,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aston Clinton Ragpits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2839,136687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ellesborough and Kimble Warrens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2840,136724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gomm Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2841,137089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Worsham Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2842,137001,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calbourne Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2843,137054,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Locks Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2844,140941,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muswell Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2845,137944,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warren Farm, Stewkley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2846,137076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salt Way, Ditchley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2847,137098,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knightsbridge Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2848,137388,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rodbed Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2849,137428,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rushbeds Wood and Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2850,137184,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grangelands & Pulpit Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2851,137188,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grendon and Doddershall Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2852,137211,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ham Home-Cum-Hamgreen Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2853,137437,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheephouse Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2854,137228,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollowhill and Pullingshill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2855,137235,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Homefield Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2856,137248,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ivinghoe Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2857,137272,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lodge Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2858,137296,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Herdon Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2859,137461,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Lodge Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2860,137298,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Millfield Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2861,137304,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moorend Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2862,137319,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Rectory Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2863,137347,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pilch Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2864,137471,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stoke Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2865,137367,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2866,137741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stratford Toney Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2867,137767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pike Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2868,137817,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Murcott Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2869,138556,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Landford Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2870,137912,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swain's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2871,137921,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tingewick Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2872,138140,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Catherington Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2873,141049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Bottom To Yateley Common and Hawley Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2874,137941,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turville Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2875,138191,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fleet Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2876,138203,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Littleworth Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2877,138228,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sarsgrove Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2878,138527,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Aston Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2879,137955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weston Turville Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2880,137974,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Widdenton Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2881,138540,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Emmett Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2882,137998,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Windsor Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2883,138054,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knighton Downs & Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2884,141018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avon Valley ( Bickton To Christchurch )","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2885,136524,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Winchester Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2886,141039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bourley and Long Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2887,169682,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bencroft Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2888,138612,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackwater Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2889,138727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wild Grounds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2890,136258,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coulters Dean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2891,136285,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Danebury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2892,138740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alresford Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2893,141012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Basingstoke Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2894,138781,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baddesley Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2895,138791,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Butter Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2896,138832,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beacon Hill, Warnford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2897,137209,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Solent","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2898,138880,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Binswood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2899,139975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Botley Wood and Everett's and Mushes Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2900,139982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boulsbury Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2901,140009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bramshott and Ludshott Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2902,140031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bransbury Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2903,140046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breamore Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2904,140059,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brickworth Down and Dean Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2905,140061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brockley Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2906,140075,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broughton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2907,140658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Highclere Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2908,140517,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Browndown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2909,140521,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burghclere Beacon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2910,140553,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2911,140568,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Butser Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2912,140589,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Hamble Estuary and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2913,140592,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cheesefoot Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2914,136248,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombe Wood and The Lythe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2915,137174,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mapledurwell Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2916,136313,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Downend Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2917,136339,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eelmoor Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2918,136353,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eling and Bury Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2919,136405,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gilkicker Lagoon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2920,136424,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greywell Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2921,137181,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Micheldever Spoil Heaps","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2922,138236,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Odiham Common With Bagwell Green and Shaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2923,140746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hook Common and Bartley Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2924,138300,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Froghall Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2925,138319,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Naphill Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2926,136440,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Norley Copse and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2927,136887,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arncott Bridge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2928,136740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Galley Down Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2929,136892,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aston Upthorpe Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2930,138184,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirtlington Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2931,140701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bentley Station Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2932,136814,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quarley Hill Fort","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2933,136897,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hazeley Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2934,136974,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hythe To Calshot Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2935,138498,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peake Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2936,138521,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2937,138546,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portsdown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2938,137077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ladle Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2939,137084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langstone Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2940,137104,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lincegrove and Hackett's Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2941,137154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Test Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2942,137155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lymington River Reedbeds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2943,138543,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portsmouth Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2944,138553,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roydon Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2945,138560,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rushmore and Conholt Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2946,138202,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lambridge Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2947,138418,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moorgreen Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2948,138430,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Moors, Bishop's Waltham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2949,138440,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The New Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2950,138445,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Noar Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2951,138607,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Catherine's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2952,138624,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Selborne Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2953,138650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shortheath Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2954,138682,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sidley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2955,140057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanton Harcourt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2956,140071,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cumnor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2957,138696,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sowley Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2958,138710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stockbridge Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2959,140086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunbridge Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2960,140109,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dinton Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2961,140147,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sutton Lane Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2962,140157,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bramshill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2963,140243,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Titchfield Haven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2964,140121,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Distillery Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2965,140136,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2966,140263,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waltham Chase Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2967,140500,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garston's Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2968,140692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Acres Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2969,136430,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alvescot Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2970,136441,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harpsden Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2971,136457,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berrick Trench","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2972,140694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Box Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2973,136471,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stockbridge Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2974,140642,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heath Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2975,137379,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bould Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2976,140635,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hog's Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2977,140644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poors Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2978,183437,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Compton Chine To Steephill Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2979,136620,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Headon Warren and West High Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2980,140636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trodds Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2981,136629,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"King's Quay Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2982,136654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mottistone Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2983,140609,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Streatley Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2984,136666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prospect Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2985,136672,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rew Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2986,136680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rowridge Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2987,136733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Lawrence Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2988,136822,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wilderness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2989,136868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Appleton Lower Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2990,136881,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardley Cutting and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2991,136367,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Madeley Heath Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2992,140682,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holies Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2993,140685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duncroft Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2994,140687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckland Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2995,140689,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Finemere Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2996,140690,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fayland Chalk Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2997,140691,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Temple Island Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2998,140696,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Coombs, Hinton Parva","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +2999,137498,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Culham Brake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3000,137334,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barrow Farm Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3001,137350,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bear, Oveys and Great Bottom Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3002,137353,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bix Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3003,137368,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blenheim Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3004,137404,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurst Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3005,137417,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chimney Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3006,137435,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chinnor Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3007,137447,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chinnor Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3008,137517,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ditchley Road Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3009,137537,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dry Sandford Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3010,137561,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ducklington Mead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3011,137609,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frilford Heath, Ponds and Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3012,137614,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grafton Lock Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3013,137627,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hackpen, Warren & Gramp's Hill Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3014,137636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hartslock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3015,138217,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langley's Lane Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3016,140722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winsley Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3017,140728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3018,140726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westfield Farm Chalk Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3019,140729,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hodgemoor Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3020,140730,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middle Barton Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3021,138091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Highlands Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3022,138101,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holly Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3023,138110,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3024,138130,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hook Norton Cutting & Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3025,138138,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horsehay Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3026,141017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Marston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3027,138232,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spartum Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3028,138243,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Littlemore Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3029,138260,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Littleworth Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3030,138294,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Hanborough Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3031,138297,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lye Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3032,138305,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lyehill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3033,138344,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moulsford Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3034,141031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cassington Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3035,138375,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Neithrop Fields Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3036,138390,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Otmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3037,138402,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Out Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3038,136416,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheep's Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3039,140774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upton Cow Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3040,140775,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rotherley Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3041,140776,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Restrop Farm and Brockhurst Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3042,136429,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shellingford Crossroads Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3043,136451,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shirburn Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3044,136478,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brasenose Wood and Shotover Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3045,136498,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sidling's Copse and College Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3046,136506,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stonesfield Common, Bottoms & Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3047,140777,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stert Brook Exposure","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3048,136302,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pishill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3049,136320,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pixey and Yarnton Meads","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3050,136335,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Port Meadow With Wolvercote Common & Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3051,136522,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stonesfield Slate Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3052,136533,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stratton Audley Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3053,136347,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Reed Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3054,137092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitehill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3055,136380,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitehorse Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3056,136357,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rock Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3057,141024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westwell Gorse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3058,141035,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cothill Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3059,136399,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sharp's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3060,136537,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sturt Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3061,136565,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swyncombe Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3062,140795,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Landford Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3063,136573,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Taynton Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3064,140796,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loosehanger Copse and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3065,140806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lee-On-The Solent To Itchen Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3066,136585,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tuckmill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3067,136596,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waterperry Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3068,136603,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Watlington and Pyrton Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3069,140620,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dank's Down and Truckle Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3070,140819,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stone","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3071,137119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodeaton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3072,138911,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wychwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3073,137175,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wytham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3074,140859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Magdalen Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3075,137251,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bestmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3076,137255,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanton Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3077,137327,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coate Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3078,137336,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inkpen and Walbury Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3079,140889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croker's Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3080,140890,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bray Pennyroyal Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3081,140891,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingcup Meadows and Oldhouse Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3082,140892,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poker's Pond Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3083,137819,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bincknoll Dip Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3084,137837,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackmoor Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3085,140693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bratton Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3086,141052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stoke Common Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3087,137900,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brimsdown Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3088,136344,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moon's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3089,137915,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Britford Water Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3090,140970,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Goldborough Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3091,137935,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burcombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3092,137965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burderop Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3093,137977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calstone and Cherhill Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3094,137993,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Camp Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3095,138010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Charnage Down Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3096,138001,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chickengrove Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3097,138068,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clearbury Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3098,146265,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yarner Wood & Trendlebere Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3099,141153,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stokeford Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3100,138039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chilmark Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3101,138047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chilton Foliat Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3102,138067,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clattinger Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3103,138692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dead Maid Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3104,141156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tickenham, Nailsea and Kenn Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3105,138082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cley Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3106,138756,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Figsbury Ring","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3107,137173,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fyfield Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3108,138590,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clout's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3109,138610,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cockey Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3110,138625,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colerne Park and Monk's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3111,138642,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsham Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3112,138687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranborne Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3113,138723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ebsbury Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3114,138810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gallows Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3115,138807,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Cheverell Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3116,140732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Quarry, Swindon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3117,138874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Yews","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3118,140915,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Howe Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3119,140393,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gutch Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3120,140504,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"King's Play Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3121,140518,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knapp and Barnett's Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3122,140559,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Grubbins Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3123,136263,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morgan's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3124,137967,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Meadow, Cricklade","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3125,140573,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Knoll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3126,140600,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanton St, Quintin Quarry & Motorway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3127,136224,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Woodford Water Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3128,136286,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Odstock Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3129,136307,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Okus Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3130,137684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seend Cleeve Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3131,137505,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Town Railway Cutting, Swindon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3132,137694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seend Ironstone Quarry and Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3133,137520,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Out Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3134,140329,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parsonage Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3135,140348,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pewsey Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3136,137716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Silbury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3137,137736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Midford Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3138,137573,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Piggledene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3139,137583,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bracknell Croft","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3140,137755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spye Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3141,141141,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Cut, Torquay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3142,140386,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prescombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3143,137313,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scabbacombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3144,137612,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rack Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3145,137626,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ravensroost Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3146,137645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roundway Down and Covert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3147,137657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Savernake Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3148,137681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scratchbury & Cotley Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3149,137776,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Starveall and Stony Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3150,138310,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teffont Evias Quarry / Lane Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3151,140697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clevedon Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3152,138267,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Steeple Langford Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3153,138287,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stockton Wood and Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3154,140233,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wytham Ditches and Flushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3155,140241,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lamb and Flag Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3156,138332,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Throope Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3157,169757,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleeve Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3158,140268,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Iffley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3159,138345,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pincombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3160,138355,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tytherington Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3161,140273,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bentley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3162,140721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crab Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3163,140351,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashford Hill Woods and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3164,138369,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Chicksgrove Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3165,138392,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Waterhay Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3166,140999,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salisbury Plain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3167,138457,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Harnham Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3168,138493,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Yatton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3169,138515,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whiteparish Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3170,138534,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitesheet Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3171,170231,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Win Green Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3172,138571,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winklebury Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3173,138592,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowerchalke Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3174,137406,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wylye and Church Dean Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3175,140134,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yarnbury Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3176,137434,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Martin and Tidpit Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3177,140191,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berins Hill Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3178,140374,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lye Heath Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3179,136489,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hook Heath Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3180,140384,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ron Ward's Meadow With Tadley Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3181,140389,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Minley Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3182,146264,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porthloo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3183,136497,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warblington Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3184,136509,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warnborough Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3185,136550,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Toyd Down and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3186,136625,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Briddlesford Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3187,136649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parkhurst Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3188,136526,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Burghclere Lime Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3189,137316,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longmoor Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3190,136676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eaglehead and Bloodstone Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3191,136700,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greatwood and Cliff Copses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3192,136723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"America Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3193,137321,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sugworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3194,137339,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitecross Green and Oriel Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3195,136749,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northpark Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3196,136778,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cridmore Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3197,137222,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lacey's Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3198,137389,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Picket and Clanger Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3199,137402,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southampton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3200,137418,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greywell Tunnel ( Basingstoke Canal )","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3201,137239,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redhill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3202,137246,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Enborne Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3203,137257,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Freeman's Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3204,137267,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wellington College Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3205,137285,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boxford Water Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3206,137429,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fletchwood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3207,137450,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rushy Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3208,140680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oakhills Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3209,137462,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wolvercote Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3210,140652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"King's Wood and Urchin Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3211,140845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porthleven Cliffs East","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3212,137890,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hobb's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3213,141002,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Exmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3214,169656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashburton Road Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3215,141065,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tregonning Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3216,146263,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Watermill Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3217,146268,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cameron Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3218,146269,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Phoenix United Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3219,170041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penlee Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3220,140904,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingdown and Middledown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3221,140771,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crockham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3222,140980,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swanpool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3223,140794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grove Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3224,141152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Michael's Mount","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3225,141146,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redlake Meadows & Hoggs Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3226,141043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Biddle Street, Yatton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3227,137458,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greystone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3228,146261,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pentle Bay, Merrick and Round Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3229,170237,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wookey Station","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3230,136375,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holwell Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3231,140857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pentridge Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3232,140924,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plymbridge Lane & Estover Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3233,169696,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bleadon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3234,138063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weston-In-Gordano","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3235,169699,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boscawen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3236,169781,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Court Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3237,136950,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shillingstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3238,141069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Lizard Heathlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3239,136701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ottery Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3240,169918,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kenn Church, Kenn Pier & Yew Tree Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3241,141159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Fal Estuary and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3242,138187,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gordano Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3243,140523,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grenofen Wood and West Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3244,137412,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hardington Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3245,138760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Terras Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3246,140784,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombe Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3247,140216,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whiteleigh Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3248,140785,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haytor Rocks and Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3249,140259,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bovey Heathfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3250,136552,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aunt Mary's Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3251,140282,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plaster's Green Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3252,140303,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Exmoor Coastal Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3253,140786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wareham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3254,140651,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Billacombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3255,140654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brampford Speke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3256,140893,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whiddon Deer Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3257,140790,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tidcombe Lane Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3258,140843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Writhlington","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3259,140792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nymet Barton Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3260,140793,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Axbridge Hill and Fry's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3261,136574,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitchurch Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3262,136591,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kismeldon Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3263,140631,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leusdon Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3264,140797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stepper Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3265,140846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brendonmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3266,136658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yanal Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3267,136668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morcombelake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3268,136681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trevone Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3269,140894,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunsland Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3270,137317,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Common Moor Langtree","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3271,137329,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meadfoot Sea Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3272,138171,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Posbury Clump","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3273,137360,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ge-Mare Farm Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3274,140847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3275,137366,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Polyphant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3276,137390,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Haldon Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3277,140723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3278,138145,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Haldon Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3279,138442,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trevose Head and Constantine Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3280,140695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combe Down and Bathampton Down Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3281,140848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Okehampton Park Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3282,140840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mambury and Stowford Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3283,140842,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langmead and Weston Level","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3284,140838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Wheal Fortune","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3285,140719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poole Bay Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3286,140855,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hartcliff Rocks Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3287,140895,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quarry Fields Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3288,140720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitt's Cleave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3289,138065,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingford Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3290,140856,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penlee Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3291,140896,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingweston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3292,138826,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Curry and Hay Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3293,141004,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longleat Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3294,138495,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Draynes Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3295,138508,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eglarooze Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3296,138549,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Godrevy Head To St Agnes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3297,138578,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Goonhilly Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3298,138583,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hayle Estuary & Carrack Gladden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3299,138633,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kelsey Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3300,140731,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wolborough Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3301,140850,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haldon Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3302,138639,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kennack To Coverack","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3303,138637,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loe Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3304,138675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenscoombe Wood , Luckett","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3305,140013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Hill Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3306,140060,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corfe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3307,141057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingsand To Sandway Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3308,140964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bulmoor Pastures & Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3309,140996,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenamoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3310,140195,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lynher Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3311,140214,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Malpas Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3312,140965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brendon Farm (North)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3313,138847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Folly Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3314,140218,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marazion Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3315,140237,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Merthen Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3316,138868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brent Tor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3317,140742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ryecroft Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3318,140004,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenaways and Freshmarsh, Braunton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3319,140016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breach Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3320,140844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3321,136225,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fremington Quay Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3322,140296,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penhale Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3323,140310,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pentire Peninsula","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3324,140319,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwithian To Mexico Towans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3325,140350,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porthgwarra To Pordenack Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3326,140362,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porthleven Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3327,140897,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bugden's Copse and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3328,140426,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rock Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3329,140437,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rosenannon Bog and Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3330,140473,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caerthillian To Kennack","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3331,136377,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drakenorth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3332,140744,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Popehouse Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3333,140745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ruttersleigh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3334,140898,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Staddon Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3335,140899,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Small Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3336,136242,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westhay Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3337,140900,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bulkamore Iron Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3338,136272,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hawkesbury Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3339,140966,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Occombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3340,140901,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whiddon Moor, Luckcoft and Odham Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3341,140902,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chapel Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3342,140903,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lang's Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3343,140967,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bolshayne Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3344,136356,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ribsons Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3345,140626,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ellenborough Park West","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3346,140916,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Briggins Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3347,170223,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Horse Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3348,140939,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deptford Farm Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3349,140978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Borlasevath and Retallack Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3350,140839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trevaunance Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3351,140781,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Perch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3352,140782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maiden Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3353,140940,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coverack Cove and Dolor Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3354,140989,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lymsworthy Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3355,140968,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woolhayes Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3356,140992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grimscott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3357,169872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Pool (Tresco)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3358,137003,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Priddy Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3359,140979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sylvia's Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3360,137742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bedruthan Steps and Park Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3361,137749,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shiplate Slait","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3362,170052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porth Seal (St, Martin'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3363,140618,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monkswood Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3364,137048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dyer's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3365,137769,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenthorne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3366,137822,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northam Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3367,136696,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ventongimps Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3368,136612,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stourscombe Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3369,136623,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tintagel Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3370,137093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braunton Swanpool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3371,140679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Friar's Oven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3372,141003,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marsland To Clovelly Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3373,140998,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corfe Mullen Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3374,138304,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spring Head, Axmouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3375,138533,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deadman","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3376,136637,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trebetherick Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3377,136661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Treen Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3378,137115,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blandford Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3379,136394,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3380,137882,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abbotsbury Blind Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3381,140938,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradworthy Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3382,140942,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Congrove Field and The Tumps","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3383,140712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barricane Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3384,138116,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cullimore's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3385,138554,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upton Coombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3386,137958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belle Vue Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3387,138577,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Lye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3388,141006,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coverack To Porthoustock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3389,138609,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Hill Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3390,140717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brendon and Vealand Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3391,137737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Exe Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3392,137774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Halsdon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3393,137887,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abbotsbury Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3394,136332,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3395,137907,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Babylon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3396,138525,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fivehead Arable Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3397,138524,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dawlish Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3398,138532,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brean Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3399,137942,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Batcombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3400,137973,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bere Stream","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3401,138709,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crookhill Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3402,138725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eggardon Hill & Luccas Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3403,138752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fontmell and Melbury Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3404,138000,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackdown (Hardy Monument)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3405,138765,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frogden Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3406,138778,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creech Grange","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3407,138792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Giant Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3408,138011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blashenwell Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3409,138025,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Dorset Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3410,138053,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bracket's Coppice and Ryewater Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3411,138075,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryanston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3412,138093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sydling Valley Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3413,138097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burton Bradstock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3414,138129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chalbury Hill and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3415,138144,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chesil & The Fleet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3416,138148,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lyscombe and Highdon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3417,138166,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Christchurch Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3418,138172,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Town Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3419,138475,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Worgret Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3420,138492,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lorton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3421,138908,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haydon and Askerswell Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3422,139987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Higher Houghton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3423,140629,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aller Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3424,140001,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holt and West Moors Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3425,138565,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roebuck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3426,138667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corfe Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3427,137060,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bridgwater Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3428,138694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranborne Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3429,169686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Big Pool & Browarth Point(St, Agnes)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3430,169739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Down (Tresco)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3431,169746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chapel Down (St, Martin'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3432,169822,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eastern Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3433,138837,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dendles Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3434,138808,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Goathill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3435,138825,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Purbeck Ridge (West)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3436,138840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Halfway House Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3437,138848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hod and Hambledon Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3438,138873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Handcocks Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3439,141042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Puxton Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3440,140025,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horn Park Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3441,140029,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langford Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3442,140312,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Knowle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3443,169879,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3444,138120,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Damery Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3445,138149,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dolebury Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3446,140331,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banwell Ochre Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3447,140345,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Compton Martin Ochre Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3448,140360,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Exmoor Coast and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3449,140371,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Purewell Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3450,138174,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dundry Main Road South Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3451,140385,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whetley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3452,140474,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lodmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3453,140484,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3454,140502,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lulworth Park & Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3455,140525,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Melbury Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3456,141140,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morden Bog and Hyde Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3457,140583,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oakers Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3458,136264,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peashill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3459,136276,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Piddles Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3460,138212,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hawkesbury Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3461,136291,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitcombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3462,136315,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Isle Of Portland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3463,183424,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Powerstock Common & Wytherston Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3464,136386,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Radipole Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3465,136689,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Brentor Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3466,136693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lydford Railway Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3467,136725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Babcary Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3468,136751,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dozmary Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3469,136770,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Dartmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3470,136873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Studland Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3471,136671,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tregargus Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3472,136690,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crowhill Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3473,136906,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thrasher's Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3474,169972,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Moors (St, Mary'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3475,137425,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Draycott Sleights","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3476,137426,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brenscombe Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3477,136914,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Townsend","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3478,136923,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3479,136947,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upton Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3480,136958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Valley Of Stones","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3481,136991,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Dorset Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3482,136997,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winfrith Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3483,169650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Annet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3484,169902,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Higher Moors & Porth Hellick Pool (St, Mary'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3485,137490,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tater-Du","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3486,170018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Norrard Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3487,170040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peninnis Head (St, Mary'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3488,138420,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hartland Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3489,136717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Lizard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3490,170049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plains & Great Bay (St, Martin'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3491,170233,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wingletang Down (St, Agnes)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3492,137772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Amble Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3493,137639,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3494,137869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carnkief Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3495,170051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pool Of Bryher & Popplestone Bank (Bryher)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3496,140450,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ebbor Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3497,170106,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rushy Bay & Heathy Hill (Bryher)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3498,170109,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Samson (With Green, White, Puffin & Stony Islands)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3499,170119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shipman Head & Shipman Down (Bryher)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3500,136730,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Helen's (With Northwethel & Men-A-Vaur)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3501,170151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3502,170220,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Western Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3503,137747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Island (Off St, Martin'S)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3504,140750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meldon Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3505,137792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boconnoc Park & Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3506,137826,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bodmin Moor, North","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3507,137838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boscastle To Widemouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3508,137852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gerrans Bay To Camels Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3509,141115,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aire Point To Carrick Du","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3510,138154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hobby To Peppercombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3511,138190,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Brewham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3512,138210,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hog Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3513,138226,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prawle Point and Start Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3514,138257,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portland Harbour Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3515,138258,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Toller Porcorum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3516,138367,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrine Common & Penwethers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3517,138393,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chyenhal Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3518,138406,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clicker Tor Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3519,138415,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cligga Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3520,140250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mulberry Downs Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3521,140285,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nance Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3522,136387,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3523,136403,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frome St, Quintin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3524,136417,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3525,136447,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lambert's Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3526,136465,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mapperton and Poorton Vales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3527,136479,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oakers Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3528,136771,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banwell Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3529,136560,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Agnes Beacon Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3530,136582,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Steeple Point To Marsland Mouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3531,136583,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Erth Sand Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3532,136598,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St John's Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3533,138231,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hinton Charterhouse Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3534,136735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Purn Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3535,136787,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barnhill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3536,136809,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blagdon Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3537,138237,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilmersdon Road Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3538,136753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aust Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3539,138465,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avon Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3540,138253,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3541,138269,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middle Hope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3542,138309,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portishead Pier To Black Nore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3543,136816,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bodkin Hazel Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3544,136832,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowlditch Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3545,136845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Uphill Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3546,136855,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brinkmarsh Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3547,137885,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rempstone Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3548,137888,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turners Puddle Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3549,137910,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wareham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3550,137924,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warmwell Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3551,137938,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wootton Fitzpaine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3552,138040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brown's Folly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3553,138051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckover Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3554,138052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burrington Combe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3555,138070,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chew Valley Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3556,138088,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleeve Wood, Hanham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3557,138193,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harptree Combe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3558,138331,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slickstones Quarry, Cromhall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3559,138363,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spring Cove Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3560,138374,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Steep Holm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3561,138659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greylake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3562,138672,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurcott Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3563,140760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleeve Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3564,138697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low Ham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3565,138719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Twinhills Woods and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3566,138836,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weston Big Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3567,138864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Street Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3568,138872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aller and Beer Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3569,138886,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Asham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3570,139984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berrow Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3571,140010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Down and Sampford Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3572,140017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blue Anchor To Lilstock Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3573,140081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bruton Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3574,140113,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Catcott Edington and Chilton Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3575,140042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brimble Pit and Cross Swallet Basins","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3576,140130,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cloford Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3577,140154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Cheddar Complex","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3578,140200,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doulting Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3579,140159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cheddar Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3580,140174,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cheddar Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3581,140520,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hense Moor Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3582,136266,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Godminster Lane Quarry and Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3583,136289,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Emborough Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3584,169890,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ham Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3585,136324,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Breach and Copley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3586,136412,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Nectan's Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3587,136442,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Quantocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3588,136516,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seavington St, Mary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3589,136545,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sharpham Moor Plot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3590,136466,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Priddy Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3591,136473,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prior's Park & Adcombe Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3592,138177,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rodney Stoke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3593,136496,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Dunstan's Well Catchment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3594,136556,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Snowdon Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3595,136571,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sparkford Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3596,136842,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langport Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3597,137100,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitevine Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3598,141055,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croft Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3599,137128,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Windsor Hill Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3600,137133,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Windsor Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3601,141008,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lingwood Meadows, Earl Stonham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3602,140505,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benfleet and Southend Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3603,137153,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wookey Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3604,137163,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Andrew's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3605,137190,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arlington","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3606,140404,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Webberton Cross Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3607,137192,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashculm Turbary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3608,137196,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Babbacombe Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3609,137777,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bonhay Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3610,140585,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bovey Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3611,137796,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradiford Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3612,137230,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beaford Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3613,137233,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beer Quarry and Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3614,137252,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berry Head To Sharkham Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3615,137594,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southmoor Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3616,137603,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brocks Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3617,136227,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braunton Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3618,137856,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckfastleigh Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3619,137862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckland-In-The-Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3620,137618,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gilmoor and Moorlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3621,137883,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buller's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3622,140851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hinton Charterhouse Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3623,140513,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackwater Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3624,137727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blake's Wood & Lingwood Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3625,137730,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bovingdon Hall Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3626,137638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sutton Combe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3627,137640,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turbary and Kinson Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3628,137652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Fowey Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3629,137990,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chipley Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3630,138013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chudleigh Knighton Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3631,138038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holne Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3632,137744,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackslade Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3633,137756,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bolt Head To Bolt Tail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3634,140256,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Court Farm, Sydling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3635,140347,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dawlish Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3636,169792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crouch and Roach Estuaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3637,137800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cattawade Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3638,137812,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chalkney Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3639,136709,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colne Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3640,137876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Budleigh Salterton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3641,138318,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Curtismill Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3642,137913,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Potter's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3643,137933,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burrator Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3644,137945,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bursdon Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3645,137964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Lemon Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3646,138335,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Danbury Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3647,140369,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dean Steep","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3648,140381,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devon Great Consols","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3649,140395,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devon United Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3650,138350,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Debden Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3651,136757,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dengie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3652,138378,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roman River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3653,140409,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunnabridge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3654,140428,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Dunscombe Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3655,140466,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Devon Pebblebed Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3656,140475,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Ogwell Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3657,140482,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Erme Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3658,140491,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fremington Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3659,140511,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Furley Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3660,140718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nettlecombe Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3661,140541,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Halstock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3662,140558,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hannaborough Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3663,140599,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hare's Down, Knowstone & Rackenford Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3664,136600,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Road Quarry, Bath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3665,136614,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bickley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3666,136229,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haytor and Smallacombe Iron Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3667,136555,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barle Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3668,136922,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lord's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3669,136572,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Freshmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3670,136590,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ringdown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3671,136636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3672,136727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hembury Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3673,136745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hense Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3674,136768,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Down Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3675,136800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollow Moor & Odham Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3676,136810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hope's Nose To Wall's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3677,136830,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hunshaw Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3678,136859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kent's Cavern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3679,136938,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lummaton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3680,136866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kersdown Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3681,136959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lydford Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3682,136981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lundy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3683,136987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meldon Aplite Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3684,136879,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lady's Wood and Viaduct Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3685,136907,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lockridge Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3686,137010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Napp's Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3687,137256,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brockley Hall Stables","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3688,137277,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cattybrook Brickpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3689,137301,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quarry Steps, Durdham Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3690,137323,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hampton Rocks Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3691,137333,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holly Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3692,137345,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Dole Wood and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3693,137468,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Dartmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3694,137480,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Otter Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3695,137499,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Gate Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3696,137511,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Piles Copse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3697,137523,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plaistow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3698,137593,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pridhamsleigh Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3699,137544,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wallsend Industrial Estate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3700,137580,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Common Moor, East Putford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3701,137605,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ransley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3702,137613,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Reed's Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3703,137666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Verwood Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3704,137683,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rushford Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3705,137703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salcombe To Kingsbridge Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3706,137717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sampford Spiney","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3707,137729,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Saunton To Baggy Point Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3708,137735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shapwick Grange Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3709,138352,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stoke Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3710,138027,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newton St, Loe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3711,138037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nightingale Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3712,138046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tytherington Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3713,138384,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Dartmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3714,138398,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Saltern Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3715,138408,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Taw-Torridge Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3716,138413,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teign Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3717,138436,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorne and Doves Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3718,138448,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roundham Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3719,138483,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Torbryan Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3720,138077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stidham Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3721,138081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winterbourne Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3722,138118,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hawkstor Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3723,138214,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shaugh Prior Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3724,138234,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sidmouth To Beer Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3725,193738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slapton Ley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3726,137171,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Whipcott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3727,138275,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southacre Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3728,138835,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn Grey Rock and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3729,138855,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Luxulyan Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3730,138861,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cudden Point To Prussia Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3731,138292,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Milton Ley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3732,138339,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stokenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3733,138373,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stover Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3734,138478,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tor Royal Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3735,138510,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tower Wood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3736,138917,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porthcew","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3737,138882,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"De Lank Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3738,138890,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Folly Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3739,140175,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilmington Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3740,137293,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loggans Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3741,170036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3742,140189,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sutton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3743,140197,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ladram Bay To Sidmouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3744,136990,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roche Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3745,137349,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bude Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3746,137280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ferndown Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3747,137291,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lidcott Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3748,138797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hunsdon Mead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3749,138015,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Richmond Walk","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3750,138029,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Western King","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3751,138043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mount Wise","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3752,169821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Walton and Adcock's Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3753,138066,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barrington Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3754,138105,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cogley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3755,138113,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quants","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3756,138142,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southey and Gotleigh Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3757,138162,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3758,138188,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lions Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3759,138205,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laughter Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3760,138219,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broom Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3761,138816,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wheal Alfred","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3762,138818,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wheal Gorland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3763,140860,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maesbury Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3764,138845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hingston Down Quarry & Consols","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3765,138870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penberthy Croft Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3766,141000,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kernick and Ottery Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3767,138903,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wheal Penrose","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3768,138914,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meneage Coastal Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3769,139978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Five Oaks, Bampton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3770,139988,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishop's Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3771,139997,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Huish Colliery Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3772,140028,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Max Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3773,140358,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meddon Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3774,136764,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trehane Barton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3775,140406,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cabilla Manor Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3776,136888,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Canford Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3777,140538,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holme Moor & Clean Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3778,140546,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Postlebury Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3779,136909,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandford Lane Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3780,140554,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stowell Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3781,140570,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wet Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3782,140578,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Sedgemoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3783,136917,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradford Abbas Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3784,136218,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chancellor's Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3785,140798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rosemullion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3786,136232,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Millwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3787,136246,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Viaduct Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3788,136261,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leighton Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3789,136273,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maes Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3790,136333,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thrupe Lane Swallet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3791,136359,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wurt Pit and Devil's Punchbowl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3792,136392,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandpit Hole and Bishop's Lot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3793,136408,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blue Pool and Norden Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3794,136415,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bourne Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3795,136961,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upwey Quarries and Bincombe Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3796,137033,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slop Bog and Uddens Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3797,137085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spara Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3798,137096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wistman's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3799,137114,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stout's Cottage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3800,137138,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Two Bridges Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3801,169871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grays Thurrock Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3802,140791,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wiggenhall St, German'S","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3803,140808,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Ter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3804,140950,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Nar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3805,136499,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wells Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3806,140152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hall's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3807,137116,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yare Broads and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3808,136564,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alderfen Broad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3809,138059,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Halvergate Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3810,141079,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laurel Farm Meadow, St, Cross South Elmham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3811,140931,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Thurrock Lagoon & Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3812,140956,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Yarmouth North Denes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3813,140957,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Damgate Marshes, Acle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3814,140969,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Colne Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3815,140975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raf Lakenheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3816,137554,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Epping Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3817,137560,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Norsey Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3818,137599,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Wood & Dodd's Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3819,137619,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abberton Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3820,138466,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Globe Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3821,136953,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hamford Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3822,137641,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nunn Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3823,137656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashdon Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3824,138595,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hanningfield Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3825,138629,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harlow Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3826,140148,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hatfield Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3827,137669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Basildon Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3828,136728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middle Harling Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3829,137687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belcher's & Broadfield Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3830,138397,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elsenham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3831,138439,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garnetts Wood / Barnston Lays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3832,136864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bure Broads and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3833,140171,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Wood, Dunmow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3834,140184,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hockley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3835,136780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryant's Heath, Felmingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3836,137071,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eriswell Low Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3837,140196,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Syderstone Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3838,140205,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lion Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3839,137242,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burgh Common and Muckfleet Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3840,140213,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marks Tey Brickpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3841,140261,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitsea Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3842,137503,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Felbrigg Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3843,140279,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quendon Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3844,136663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Limpenhoe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3845,137621,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hales and Shadwell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3846,140305,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stour and Copperas Woods, Ramsey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3847,140320,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stour Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3848,140336,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weeleyhall Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3849,140356,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Naze","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3850,140378,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorndon Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3851,140391,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tiptree Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3852,140408,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waltham Abbey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3853,140587,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Blakenham Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3854,136527,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3855,136546,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodham Walter Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3856,136557,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breydon Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3857,136738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Milden Thicks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3858,136747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minsmere-Walberswick Heaths and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3859,136581,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alderford Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3860,136593,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ant Broads and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3861,136621,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barnhamcross Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3862,136678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blo' Norton and Thelnetham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3863,136702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Booton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3864,137531,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High House Meadows, Monewden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3865,136710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boughton Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3866,136726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bramerton Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3867,137997,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foulden Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3868,137989,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foxley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3869,138469,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bridgham & Brettenham Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3870,136775,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broad Fen, Dilham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3871,138141,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holkham Brickpits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3872,137268,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buxton Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3873,137283,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caistor St, Edmund Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3874,138126,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holly Farm Meadow, Wendling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3875,137306,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calthorpe Broad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3876,137324,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Catton Grove Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3877,137363,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranberry Rough Hockham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3878,137384,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Decoy Carr, Acle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3879,137398,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dersingham Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3880,140591,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Snettisham Carstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3881,136213,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanford Training Area","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3882,137446,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Didlington Park Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3883,137452,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Ruston Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3884,137465,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Winch Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3885,137485,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Wretham Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3886,137501,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eaton Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3887,137519,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flordon Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3888,136331,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swannington Upgate Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3889,138049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grime's Graves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3890,138072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heacham Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3891,138195,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Honeypot Wood, Wendling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3892,138031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swanton Novers Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3893,138121,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hockering Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3894,138179,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hay Wood, Whepstead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3895,138223,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horningtoft Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3896,136364,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thetford Golf Course & Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3897,136398,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thompson Water, Carr and Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3898,138181,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holt Lowes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3899,138876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poplar Farm Meadows, Langley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3900,138272,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hunstanton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3901,138899,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Potter's Carr, Cranworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3902,137705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weybourne Town Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3903,138264,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kelling Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3904,138286,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leziate, Sugar and Derby Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3905,138291,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Wood, Ashwellthorpe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3906,138307,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ludham - Potter Heigham Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3907,140533,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winterton - Horsey Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3908,137762,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wiveton Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3909,137765,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wretham Park Meres","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3910,138809,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morston Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3911,138823,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mundesley Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3912,138858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Buckenham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3913,138850,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Overstrand Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3914,137808,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"How Hill Track","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3915,138909,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Potter & Scarning Fens, East Dereham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3916,139992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redgrave and Lopham Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3917,140008,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ringstead Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3918,140038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roydon Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3919,140069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scoulton Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3920,140577,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Smallburgh Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3921,140073,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sea Mere, Hingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3922,140098,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sexton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3923,137400,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chippenham Fen and Snailwell Poor's Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3924,140125,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheringham and Beeston Regis Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3925,140140,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sidestrand and Trimingham Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3926,136235,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanley and Alder Carrs, Aldeby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3927,137972,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fox Fritillary Meadow, Framsden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3928,137987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradfield Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3929,138509,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brent Eleigh Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3930,136244,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crostwick Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3931,136321,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swangey Fen, Attleborough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3932,136419,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Narborough Railway Embankment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3933,136436,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upton Broad & Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3934,136448,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warham Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3935,136477,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wayland Wood, Watton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3936,137110,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coston Farm Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3937,138167,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weeting Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3938,136514,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Runton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3939,136518,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westwick Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3940,137695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weybourne Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3941,137715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitwell Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3942,137815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abbey Wood, Flixton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3943,137991,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aldeburgh Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3944,137849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arger Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3945,137870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bangrove Wood, Ixworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3946,137886,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barking Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3947,137896,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barnham Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3948,138582,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cherry Hill and The Gallops, Barton Mills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3949,137918,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bawdsey Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3950,137952,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berner's Heath, Icklingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3951,137966,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Ditches, Cavenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3952,138528,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creeting St, Mary Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3953,138544,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garrold's Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3954,138542,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cavendish Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3955,136939,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cavenham - Icklingham Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3956,138627,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southrepps Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3957,140357,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Blakenham Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3958,138623,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combs Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3959,138636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cornard Mere, Little Cornard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3960,138646,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crag Farm Pit, Sudbourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3961,138668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cransford Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3962,138690,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deadman's Grave, Icklingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3963,138717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sizewell Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3964,138742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crag Pit, Sutton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3965,138747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edwardstone Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3966,138757,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elmsett Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3967,138776,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fakenham Wood and Sapiston Great Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3968,140298,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foxhole Heath, Eriswell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3969,140307,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Freston and Cutler's Woods With Holbrook Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3970,140330,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gipping Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3971,140342,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gosbeck Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3972,137343,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stubbers Green Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3973,140367,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gromford Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3974,140379,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Groton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3975,140419,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hascot Hill Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3976,140449,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horringer Court Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3977,140483,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hintlesham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3978,140532,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lakenheath Poors Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3979,140543,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lakenheath Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3980,140556,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Landguard Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3981,140489,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hopton Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3982,140501,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hoxne Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3983,140510,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kentwell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3984,140565,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lineage Wood & Railway Track, Long Melford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3985,137371,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sutton Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3986,136688,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Heath, Barnham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3987,136697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lordswell Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3988,136759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monewden Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3989,136713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maidscross Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3990,136721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mickfield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3991,136836,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Norton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3992,138563,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alde-Ore Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3993,136941,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stallode Wash, Lakenheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3994,136949,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanton Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3995,136878,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pashford Poor's Fen, Lakenheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3996,136885,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rockhall Wood Pit, Sutton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3997,140267,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thetford Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3998,137482,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorpe Morieux Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +3999,136899,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Snape Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4000,136920,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sotterley Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4001,136926,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sprat's Water and Marshes, Carlton Colville","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4002,136966,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Staverton Park and The Thicks, Wantisden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4003,137421,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sudbourne Park Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4004,137459,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sutton and Hollesley Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4005,137513,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Titsal Wood, Shadingfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4006,137527,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trundley and Wadgell's Wood, Great Thurlow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4007,137601,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weather and Horn Heaths, Eriswell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4008,137546,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tunstall Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4009,140936,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nacton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4010,137589,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wangford Warren and Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4011,140085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Vange & Fobbing Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4012,137654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Stow Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4013,140146,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Goldsands Road Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4014,140160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harwich Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4015,137664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weston Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4016,140179,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newney Green Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4017,140202,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Purfleet Chalk Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4018,140033,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Harling Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4019,140045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"London Road Industrial Estate, Brandon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4020,140053,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilde Street Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4021,140099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Cliff, Burnham-On-Crouch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4022,140131,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clacton Cliffs & Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4023,138569,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckanay Farm Pit, Alderton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4024,136426,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shelfanger Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4025,140215,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gawdyhall Big Wood, Harleston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4026,140224,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hainault Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4027,140229,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horse Wood, Mileham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4028,136601,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cawston & Marsham Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4029,140295,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Buckenham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4030,140767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moat Farm Meadows, Otley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4031,140768,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Gardens, Great Ashfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4032,140769,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westhall Wood and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4033,136433,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ducan's Marsh, Claxton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4034,136444,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aslacton Parish Land","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4035,136467,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shotesham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4036,136481,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fritton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4037,136495,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forncett Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4038,136628,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Cressingham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4039,136510,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sweetbriar Road Meadows, Norwich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4040,136539,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hardley Flood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4041,136650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kenninghall & Banham Fens With Quidenham Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4042,137365,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Richmond Farm Pit, Gedgrave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4043,136659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Badley Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4044,136670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Islington Heronry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4045,137135,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dillington Carr, Gressenhall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4046,137380,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ramsholt Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4047,137161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gunton Park Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4048,137159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hilgay Heronry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4049,137399,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crag Pit, Aldeburgh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4050,137411,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red House Farm Pit, Sudbourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4051,137166,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Happisburgh Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4052,137187,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Briton's Lane Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4053,137863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4054,137200,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beeston Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4055,137218,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Runton Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4056,137874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandy Lane Pit, Barham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4057,137875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flixton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4058,137234,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackborough End Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4059,137244,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pulham Market Big Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4060,137311,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tindall Wood, Ditchingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4061,137325,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Round Hill Pit, Aldeburgh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4062,137341,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Valley Farm Pit, Sudbourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4063,137358,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aldeburgh Hall Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4064,137894,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stoke Tunnel Cutting, Ipswich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4065,137905,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ferry Cliff, Sutton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4066,137932,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middle Wood, Offton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4067,137936,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burgate Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4068,137960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Iken Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4069,138084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cockthorpe Common, Stiffkey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4070,137981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ipswich Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4071,138078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knettishall Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4072,138164,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Riddles Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4073,140952,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Wensum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4074,138450,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glemsford Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4075,140958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holland Haven Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4076,138729,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wretton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4077,138739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaxhall Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4078,138777,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bugg's Hole Fen, Thelnetham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4079,138774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cornmill Stream and Old River Lea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4080,138821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Glen Chalk Caves, Bury St, Edmund'S","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4081,137198,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Norfolk Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4082,138852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shallam Dyke Marshes, Thurne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4083,138902,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bullock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4084,136910,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Metfield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4085,136916,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chippenhall Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4086,136945,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maldon Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4087,136951,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Bodney Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4088,137118,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gooderstone Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4089,136965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Priory Meadows, Hickling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4090,140787,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holland-On-Sea Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4091,140788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wivenhoe Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4092,136977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Coppice, Kelvedon Hatch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4093,137022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Oakley Channel Deposit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4094,137584,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorley Flood Pound","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4095,137030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frithy and Chadacre Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4096,137043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thrift Wood, Woodham Ferrers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4097,137617,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hedenham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4098,137047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Field Barn Heaths, Hilborough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4099,137720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edgefield Little Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4100,137065,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hooks Well Meadows, Great Cressingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4101,137090,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandbeach Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4102,140773,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Thurne Broads and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4103,137740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Major Farm, Braiseworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4104,140789,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Setchey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4105,137785,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Osyth Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4106,140807,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pakenham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4107,140617,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glandford (Letheringsett Road)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4108,140809,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Hallingbury Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4109,137588,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gypsy Camp Meadows, Thrandeston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4110,137635,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Geldeston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4111,137642,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardleigh Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4112,140615,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bawsey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4113,140616,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bilsey Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4114,137758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dereham Rush Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4115,137771,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roding Valley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4116,137788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beetley & Hoe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4117,140912,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranwich Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4118,137824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hall Farm Fen, Hemsby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4119,137831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waldringfield Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4120,137844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glandford (Hurdle Lane)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4121,137867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thundersley Great Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4122,140862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Acre Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4123,140873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wortham Ling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4124,140921,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bixley Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4125,140930,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mucking Flats and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4126,140908,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hunstanton Park Esker","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4127,140934,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deben Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4128,169802,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dark Peak","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4129,140976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Potton Hall Fields, Westleton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4130,141034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rosie Curston's Meadow, Mattishall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4131,140887,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cotswold Water Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4132,140981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hangman's Wood & Deneholes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4133,140990,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coston Fen, Runhall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4134,140349,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shotesham-Woodton Hornbeam Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4135,137303,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bredon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4136,141050,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Riverside House Meadow, Hasketon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4137,141061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Churnet Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4138,146249,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rose End Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4139,141110,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penorchard & Spring Farm Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4140,141066,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Saltersford Lane Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4141,138787,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rixton Clay Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4142,138422,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Via Gellia Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4143,140800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Lugg Meanders","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4144,146280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Close Farm, Snitterfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4145,146248,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kedleston Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4146,137549,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sweat Mere and Crose Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4147,140094,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monk's Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4148,141026,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brook Meadow, Darley Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4149,141064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jockey Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4150,146276,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wetley Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4151,146275,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Snailbeach Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4152,140879,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Severn At Montford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4153,141117,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birches Barn Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4154,141133,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingsbury Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4155,141059,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sound Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4156,141067,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barton Bushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4157,140288,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kemble Railway Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4158,138657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Griff Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4159,138293,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bickenhill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4160,141070,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaisdon Hall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4161,141071,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sylvan House Barn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4162,136504,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stocking Meadows, Oreton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4163,137037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bentley Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4164,136970,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longstone Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4165,136716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chaceley Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4166,138057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Puckham Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4167,138277,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ryton and Brandon Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4168,140741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Windmill Naps Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4169,138437,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hallwood Farm Marl Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4170,141021,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yellow House Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4171,138473,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boulton Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4172,138485,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hall Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4173,140015,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fens Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4174,140067,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belvide Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4175,136517,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ginny Spring,Whitwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4176,137376,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hornsleasow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4177,140764,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ford Green Reedbed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4178,141054,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moss Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4179,136642,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombe Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4180,140766,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eckington Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4181,140258,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jackdaw Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4182,140280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oak Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4183,140290,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broom Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4184,140770,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Micklefield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4185,140772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ailstone Old Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4186,138283,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Midger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4187,141005,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cannock Extension Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4188,136627,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fox Hole Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4189,136635,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Green Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4190,141022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baynhall Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4191,136643,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wilderness & Vermin Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4192,140608,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Herald Way Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4193,140621,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gang Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4194,141019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Romsley Manor Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4195,141020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portway Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4196,141025,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oakhanger Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4197,137357,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Green Lane Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4198,140953,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Temeside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4199,140911,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berkswell Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4200,137392,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upton Ham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4201,137401,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Merriman's Hill Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4202,140673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mercaston Marsh and Muggington Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4203,141063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gospel End Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4204,141027,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ensor's Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4205,138147,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northwick Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4206,139990,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4207,138161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Illey Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4208,140713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lydney Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4209,140715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roe Park Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4210,138915,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wollaston Ridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4211,140003,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frog End Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4212,140954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishon Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4213,140955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Queestmoor Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4214,183425,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Lugg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4215,136379,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dane-In-Shaw Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4216,137107,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Malthouse Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4217,137112,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pikes Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4218,140761,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeiron Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4219,137127,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longhope Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4220,140614,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oxlow Rake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4221,137719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yarley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4222,140613,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quebb Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4223,137811,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flaxmere Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4224,137832,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Puxton Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4225,140762,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tideslow Rake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4226,137781,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hoar Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4227,137787,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitacre Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4228,140962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cockleford Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4229,140663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Itchen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4230,140661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elmlea Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4231,170078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Derwent At Hathersage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4232,140648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Millichope Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4233,140650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bonsall Leys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4234,137472,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bar Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4235,140799,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ledbury Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4236,140874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fall Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4237,137483,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beechmill Wood and Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4238,140854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cooksholme Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4239,137025,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sweeney Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4240,137044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thatchers Wood and Westwood Covert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4241,137046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trefonen Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4242,137057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4243,137075,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wolverton Wood and Alcaston Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4244,137087,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Betton Dingle and Gulley Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4245,137097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buildwas River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4246,137126,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coundmoor Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4247,137240,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mersey Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4248,137287,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brewin's Canal Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4249,137315,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clowes Wood & New Fallings Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4250,137322,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edgbaston Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4251,137378,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tilehill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4252,137743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eaton Track","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4253,137397,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turner's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4254,137473,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bagmere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4255,137424,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abbots Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4256,137448,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alderley Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4257,137444,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plumley Lime Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4258,137753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Farley Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4259,137763,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grinshill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4260,137798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hughley Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4261,137809,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lincoln Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4262,137821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longville To Stanway Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4263,137982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brookhouse Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4264,138005,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Comber Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4265,138134,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hatch Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4266,138153,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hatton's Hey Wood, Whittle's Corner and Bank Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4267,138030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dee Cliffs, Farndon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4268,138176,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holly Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4269,138204,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lindow Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4270,138074,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flood Brook Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4271,138564,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hope Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4272,138092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frodsham Railway and Road Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4273,138103,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gleads Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4274,138222,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Budworth Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4275,138229,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Norbury Meres","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4276,138246,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oak Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4277,138256,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peckforton Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4278,183428,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trewern Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4279,138561,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitwell Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4280,138581,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chermes Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4281,138601,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gannister Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4282,138628,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkham's Silica Sandpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4283,138638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Masson Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4284,138649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bage Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4285,138736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pettypool Brook Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4286,138763,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quoisley Meres","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4287,138770,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raw Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4288,138802,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandbach Flashes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4289,138827,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tabley Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4290,138851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tatton Meres","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4291,138860,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Taylor's Rough & Wellmeadow Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4292,138881,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warburton's Wood and Well Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4293,138884,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wettenhall and Darnhall Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4294,138904,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wimboldsley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4295,139985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Witton Lime Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4296,137292,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wybunbury Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4297,137203,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alveley Grindstone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4298,140026,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allimore Green Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4299,140036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alvecote Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4300,140052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aqualate Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4301,140459,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haugh Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4302,140534,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burnt Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4303,140545,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rue Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4304,136234,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combes Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4305,136259,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cop Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4306,137136,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Toddbrook Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4307,137152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poole's Cavern and Grin Low Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4308,140079,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Firs & Cranberry Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4309,140091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blithfield Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4310,140102,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braken Hurst","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4311,140551,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caldon Low","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4312,140567,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cannock Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4313,140780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calke Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4314,136817,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leigh Brook Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4315,140353,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aston Ingham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4316,140365,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birch Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4317,137975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minchinhampton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4318,140375,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broadway Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4319,140581,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cauldon Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4320,137911,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chartley Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4321,136214,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Checkhill Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4322,140401,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burrington Sections","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4323,140424,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coughton Wood and Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4324,140436,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Doward","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4325,140878,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clee Hill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4326,141062,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dimmings Dale & The Ranger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4327,136300,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forest Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4328,136382,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loynton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4329,137992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nagshead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4330,136340,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Goat Lodge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4331,140880,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buildwas Sand Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4332,136802,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodshuts Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4333,136370,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinver Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4334,136825,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eastnor Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4335,136423,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maer Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4336,138112,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mottey Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4337,137122,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combe Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4338,137141,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Copmill Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4339,136476,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stafford Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4340,136737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurcott and Podmore Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4341,136748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lea & Pagets Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4342,137149,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cross Hands Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4343,137999,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Severn Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4344,136766,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4345,146251,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wye Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4346,136743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Friezeland Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4347,136828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swanpool Wood and Furnace Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4348,136924,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swineholes Wood and Blackheath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4349,136940,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"King's and Hargreaves Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4350,136948,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doxey and Tillington Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4351,137539,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haresfield Beacon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4352,136963,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old River Dove, Marston On Dove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4353,137545,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Mere, Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4354,137563,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Risley Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4355,137674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingsbury Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4356,137678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knavenhill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4357,137708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Itchington & Ufton Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4358,136975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ufton Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4359,137024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bannam's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4360,137066,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brandon Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4361,138261,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doe Lea Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4362,138254,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blodwel Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4363,138263,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wellington Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4364,136761,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gamston & Eaton Woods & Roadside Verges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4365,137108,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coleshill and Bannerly Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4366,137158,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Draycote Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4367,137170,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harbury Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4368,137466,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Illing's Trenches","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4369,137478,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waterswallow's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4370,136329,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seal Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4371,137484,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strawberry Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4372,137494,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monkspath Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4373,137509,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Blythe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4374,137750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middleton Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4375,137754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Napton Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4376,137770,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oxhouse Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4377,137825,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ryton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4378,137828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shrewley Canal Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4379,137843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Snitterfield and Bearley Bushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4380,183416,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berrington Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4381,138296,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lineover Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4382,138320,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Easter Park Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4383,138330,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mortimer Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4384,138434,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wolston Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4385,137902,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stockton Railway Cutting and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4386,138441,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodlands Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4387,136334,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seaton Dunes and Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4388,137916,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whichford Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4389,137937,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wolford Wood and Old Covert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4390,136352,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Gare & Coatham Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4391,135715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avondale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4392,138458,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilmcote Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4393,138464,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allscott Settling Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4394,138591,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Comley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4395,138604,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cuckoopen Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4396,137948,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eymore Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4397,138482,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cole Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4398,138500,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bomere, Shomere and Betton Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4399,138512,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brown Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4400,138516,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Catherton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4401,138714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harrington Hall Sand Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4402,138558,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clarepool Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4403,136378,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boulby Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4404,140088,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowness Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4405,138648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Granham's Moor Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4406,138703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hope Bowdler Outcrops","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4407,140293,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fenemere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4408,136837,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4409,140095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bath Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4410,183421,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanymynech & Llynclys Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4411,136896,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Meadow, Thorn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4412,136908,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bittell Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4413,140107,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Butterburn Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4414,140128,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buttermere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4415,140082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baswich Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4416,140983,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sherbourne Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4417,140352,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oss Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4418,140108,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caldon Dales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4419,140877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Stour Flood Plain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4420,140372,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Earl's Hill & Habberley Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4421,170000,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monk Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4422,137062,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monkwood Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4423,140885,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill Houses & Crumpsbrook Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4424,140153,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pasturefields Salt Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4425,140247,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Mynd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4426,140272,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spy Wood & Aldress Dingle (England)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4427,140531,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teme Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4428,136758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Lime Works Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4429,140313,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marton Pool, Chirbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4430,140326,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meadowtown Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4431,140337,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Onny River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4432,137164,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Irchester Old Lodge Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4433,140377,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prees Branch Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4434,140984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holcroft Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4435,137180,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanton Pastures & Cuckoocliff Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4436,140420,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheinton Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4437,140443,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shelve Church Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4438,137395,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tick Wood and Benthall Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4439,137405,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Titterstone Clee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4440,183418,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Mountains","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4441,137463,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wenlock Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4442,140340,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wyre Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4443,137562,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abney & Bretton Cloughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4444,140453,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shelve Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4445,137649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradwell Dale and Bagshaw Cavern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4446,140463,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shrawardine Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4447,140476,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Soudley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4448,137801,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Stiperstones & The Hollies","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4449,140627,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"View Edge Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4450,137194,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rawbones Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4451,137908,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kempley Daffodil Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4452,183432,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dee Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4453,137214,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pennsylvania Fields, Sedbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4454,137949,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilton Bluff, Ross-On-Wye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4455,137927,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moseley Common, Pembridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4456,137232,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bromsgrove Road Cutting, Tenterfields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4457,137250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ketley Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4458,137382,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wrekin & The Ercall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4459,137969,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monnington Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4460,137978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shorn Cliff and Caswell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4461,137995,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Midsummer Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4462,138207,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cressbrook Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4463,138250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dove Valley and Biggin Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4464,138249,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4465,138295,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Goyt Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4466,138343,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hamps and Manifold Valleys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4467,138645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coten End Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4468,138002,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loxley Church Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4469,138017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rough Hill & Wirehill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4470,138107,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4471,138127,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brownend Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4472,138136,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castleton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4473,140143,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buttermere Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4474,138156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Canyards Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4475,138169,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chrome and Parkhouse Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4476,138183,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clough Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4477,138199,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombs Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4478,138353,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harewood Grange Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4479,138716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stretton-On-Fosse Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4480,138731,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ullenhall Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4481,140876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cropthorne New Inn Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4482,140664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Keswick Fitts","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4483,138754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rowlee Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4484,140875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upham Meadow and Summer Leasow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4485,140987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Huglith Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4486,139981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lathkill Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4487,140000,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portway Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4488,140027,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leek Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4489,140035,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Dale & Gratton Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4490,395269,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Dyfrdwy (River Dee)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4491,138795,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pennerley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4492,138817,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Derrington Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4493,138987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Eden - Cors Goch Trawsfynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4494,140988,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Milford Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4495,140103,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brooks Head Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4496,140170,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parwich Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4497,140083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Lathkill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4498,140234,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stoney Middleton Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4499,136469,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ramsey's Burn Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4500,140119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dirtlow Rake and Pindale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4501,140155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jumble Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4502,140163,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yarncliff Wood, Padley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4503,139503,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Gwyrfai a Llyn Cwellyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4504,140124,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moss Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4505,138616,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Edlington Brickpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4506,169638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Irfon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4507,140528,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hatherton Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4508,136348,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wyns Tor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4509,136400,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baileycroft Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4510,140555,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunsdale Hollow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4511,136470,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crabtree Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4512,555560493,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Llugwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4513,140574,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bee's Nest and Green Clay Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4514,140586,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moss Valley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4515,140593,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lee Farm Meadow, Tideswell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4516,136221,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aston Grove & Withycombe Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4517,136363,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breadsall Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4518,136376,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cromford Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4519,140220,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hemingford Grey Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4520,136418,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carver's Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4521,136443,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cawdor Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4522,136463,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combs Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4523,183452,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Llyfni","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4524,136488,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duckmanton Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4525,136500,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moss Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4526,138200,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moccas Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4527,136587,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hulland Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4528,136597,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Matlock Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4529,136605,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morley Brick Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4530,136538,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hilton Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4531,136551,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hipley Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4532,136566,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollinhill and Markland Grips","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4533,136617,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ogston Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4534,169639,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Rheidol ger Capel Bangor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4535,136904,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calcutt Locks Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4536,136919,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Four Ashes Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4537,140888,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turvey's Piece","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4538,137083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ambergate and Ridgeway Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4539,137105,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shining Cliff Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4540,137123,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ticknall Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4541,136929,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swan Pool & The Swag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4542,136978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cornbrook Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4543,135881,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Papa Stour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4544,140657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aileshurst Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4545,137177,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashmoor Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4546,137213,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birchend","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4547,137276,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradnor Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4548,137295,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brampton Bryan Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4549,169640,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Seiont","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4550,137191,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bank and Cother Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4551,138279,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berrington Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4552,169641,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Teifi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4553,137326,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broad Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4554,138918,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devil's Spittleful","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4555,140727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doulton's Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4556,138449,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clayhanger","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4557,169642,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Tywi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4558,183447,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Wysg (Isafonydd)/River Usk (Tributaries)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4559,138460,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harbury Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4560,138655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burrington Farm Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4561,140601,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gipsy Lane Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4562,138472,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorncliffe Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4563,136233,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grace Dieu and High Sharpley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4564,136249,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grantham Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4565,138925,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alexanderstone Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4566,138480,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chapel Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4567,138664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burrington Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4568,138677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bushy Hazels & Cwmma Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4569,138679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Byton & Combe Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4570,138489,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wildmoorway Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4571,138693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cage Brook Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4572,138621,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brotheridge Green Disused Railway Line","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4573,138634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brotheridge Green Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4574,169677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beech Cottage, Waterwynch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4575,138720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Capler Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4576,138722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castlemorton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4577,138741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chanstone Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4578,138788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Church Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4579,138806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hay Wood and Tinkers' Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4580,138813,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Common Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4581,140238,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Histon Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4582,138758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cherry Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4583,140265,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Metallic Tileries, Parkhouse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4584,138838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombhill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4585,138869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crews Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4586,140281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Campden Tunnel Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4587,169760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Close House Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4588,138875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crumpton Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4589,140302,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stony Furlong Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4590,140327,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trench Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4591,140412,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dinmore Hill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4592,140438,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Downton Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4593,141078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kielder Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4594,139125,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Craig-iar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4595,138885,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dagnell End Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4596,140458,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duke Of York Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4597,140467,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dumbleton Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4598,139128,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Cwmgwared","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4599,140255,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hulme Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4600,136252,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hartlebury Common and Hillditch Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4601,136288,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hewell Park Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4602,140470,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Earl's Croome Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4603,140496,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elton Lane Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4604,136297,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill Hole Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4605,136316,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hopwood Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4606,136327,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ipsley Alders Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4607,137854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Enthorpe Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4608,140512,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fishpool Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4609,140529,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flintsham & Titley Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4610,136606,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devil's Hole, Morville","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4611,140535,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foster's Green Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4612,140552,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grafton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4613,140576,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grimley Brick Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4614,140778,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Madams Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4615,140886,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Dane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4616,140779,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Brow Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4617,140604,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Hall Farm Quarry and Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4618,136210,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Halesend Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4619,136236,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hanley Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4620,136844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Byefields Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4621,140537,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradwell Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4622,136870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Littlemarsh Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4623,138676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rostherne Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4624,136942,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mains Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4625,136960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Malvern Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4626,136983,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mayhill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4627,137036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mocktree Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4628,137088,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mutlow's Orchard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4629,137361,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dean Hall Coach House & Cellar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4630,140624,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Windmill Tump","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4631,137394,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beckford Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4632,137726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rockhall Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4633,170061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Racecourse Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4634,137526,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Inn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4635,137535,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oakley Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4636,138196,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muxton Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4637,137541,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Olchon Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4638,137806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salt Meadow, Earl's Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4639,137575,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Osebury Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4640,137793,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rye Street Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4641,169819,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Polden Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4642,137595,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4643,137607,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penny Hill Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4644,138311,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scutterdine Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4645,169734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrick Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4646,170175,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trench Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4647,137634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Perton Roadside Section and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4648,137647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pipershill Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4649,137658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poolhay Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4650,138362,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shrawley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4651,137663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rabbit Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4652,137701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ridgeway Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4653,138536,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wayne Herbert Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4654,138152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyrley Canal Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4655,138155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Claverley Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4656,138189,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hillend Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4657,138573,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westwood Great Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4658,138580,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilden Marsh and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4659,139129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Dinorwig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4660,138334,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sharpnage Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4661,138382,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sling Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4662,138423,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stourvale Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4663,138484,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tunnel Hill Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4664,138494,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Welson Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4665,138503,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upton Warren Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4666,139130,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Dolgarrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4667,138597,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Windmill Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4668,138605,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orchid Bank, Winslow Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4669,136304,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newport Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4670,136330,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salmonsbury Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4671,140739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prees Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4672,136350,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prescott Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4673,139151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Maes-mawr, Coed Esgairneiriau a Cheunant Caecenau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4674,136515,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodbury Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4675,136542,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wormbridge Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4676,136651,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bourton Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4677,136563,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wylde Moor, Feckenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4678,136675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boxwell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4679,136684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brassey Reserve and Windrush Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4680,136704,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bull Cross, The Frith and Juniper Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4681,136750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleeve Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4682,136579,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Box Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4683,136763,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Lump, Priestweston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4684,193721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Parkmill a Cwm Llethrid/Parkmill Woodlands and Llethrid Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4685,136608,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashleworth Ham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4686,136619,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Badgeworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4687,138857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Flits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4688,140765,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gentleshaw Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4689,140047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cotswold Commons and Beechwoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4690,137236,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crickley Hill and Barrow Wake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4691,136641,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wellacre Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4692,137261,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Daneway Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4693,136772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coaley Wood Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4694,136790,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Collinpark Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4695,136797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombe Hill Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4696,137273,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dingle Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4697,139187,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd y Beili, Malgwyn a Cribin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4698,140763,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Big Hyde Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4699,140884,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hope Valley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4700,141160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Wye Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4701,137294,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edgehills Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4702,137299,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foss Cross Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4703,137308,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frampton Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4704,137338,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garden Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4705,137475,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingscote and Horsley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4706,137359,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hampen Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4707,137372,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hobb's Quarry, Longhope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4708,140194,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wren's Nest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4709,137422,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Hudnalls","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4710,138893,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Racecourse Farm Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4711,137409,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hornsleasow Roughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4712,137477,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Land Grove Quarry, Mitcheldean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4713,139188,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd y Garn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4714,137438,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Huntsman's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4715,137504,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lark Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4716,137516,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leckhampton Hill and Charlton Kings Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4717,138036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Innsworth Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4718,137460,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Juniper Hill, Edgeworth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4719,137521,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"May Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4720,137810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Park Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4721,137823,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Puddlebrook Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4722,136251,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Highbury Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4723,183427,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Severn Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4724,138014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nibley Knoll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4725,138024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Notgrove Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4726,139193,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Comin Silian","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4727,139236,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Ddu-Wharley Point Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4728,138056,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poor's Allotment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4729,138108,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Robin's Wood Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4730,138122,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rodborough Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4731,140049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whelford Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4732,138087,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Purton Passage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4733,140068,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dymock Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4734,395279,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Abrethin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4735,138135,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harford Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4736,138163,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edge Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4737,140997,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scully Grove Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4738,138192,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Selsley Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4739,138201,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Severn Ham, Tewkesbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4740,139199,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Barfog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4741,138216,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Speech House Oaks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4742,138239,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stenders Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4743,138252,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stinchcombe Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4744,138282,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swift's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4745,138289,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Veizey's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4746,136278,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Bowden Borrowpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4747,138588,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oakenhill Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4748,140070,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thrapston Station Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4749,138600,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old River Severn, Upper Lode","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4750,138620,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boon's Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4751,136867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lockington Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4752,139208,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Erddreiniog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4753,139239,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Pont Rhondda","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4754,138613,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Danes Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4755,140187,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Enderby Warren Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4756,138647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Guy's Cliffe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4757,138766,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wainlode Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4758,138789,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walmore Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4759,170035,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4760,138800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winson Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4761,138812,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodchester Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4762,137167,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brampton Racecourse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4763,138824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wood Green Quarry & Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4764,138833,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wotton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4765,138856,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Wye Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4766,138867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doley Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4767,138907,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knap House Quarry, Birdlip","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4768,137789,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Perry Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4769,137797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portholme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4770,139972,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Astridge Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4771,137577,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hainton Sheepwalk","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4772,139991,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Soudley Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4773,140022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bigsweir Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4774,137157,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plumpton Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4775,140030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rake Dike","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4776,140041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bushley Muzzard, Brimpsfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4777,137176,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashby Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4778,137820,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roman Road","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4779,137827,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Neot's Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4780,140090,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hucclecote Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4781,140114,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duchy Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4782,140144,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colehill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4783,137270,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hertford Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4784,137328,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knebworth Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4785,140193,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4786,140410,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meezy Hurst","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4787,136432,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morton Pool and Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4788,140439,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Daw End Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4789,140456,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hay Head Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4790,140822,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peckriding Top Lot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4791,140479,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burcot Lane Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4792,138462,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tiddesley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4793,136653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cottonshope Head Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4794,140596,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brownheath Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4795,136216,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bush Wood and High Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4796,136230,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chorley Covert and Deserts Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4797,174667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foel Gron a Thir Comin Mynytho","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4798,136245,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clunton Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4799,136260,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Sychtyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4800,137340,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Heath Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4801,136275,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crofts Mill Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4802,136298,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woolston Eyes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4803,136487,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Fiddle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4804,136349,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hencott Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4805,136501,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ruewood Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4806,169842,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foel Gron Stream Sections","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4807,136354,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hodnet Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4808,136381,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lin Can Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4809,136410,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lydebrook Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4810,136413,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Montgomery Canal, Aston Locks - Keeper's Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4811,193737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orton Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4812,169848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Freshwater East Cliffs to Skrinkle Haven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4813,136453,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old River Bed, Shrewsbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4814,136475,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flat Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4815,136863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whittlesford - Thriplow Hummocky Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4816,138316,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bagthorpe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4817,141158,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turnford & Cheshunt Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4818,169676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barrington Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4819,138124,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Badby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4820,138385,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mavis Enderby Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4821,136578,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salcey Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4822,140973,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burley and Rushpit Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4823,136343,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Stukeley Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4824,136594,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ouse Washes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4825,136611,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Over and Lawn Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4826,137091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belshaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4827,136362,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holland Hall (Melbourn) Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4828,136414,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sherrardspark Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4829,136435,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashton's Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4830,136452,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wing Water Treatment Works","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4831,136547,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alpine Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4832,136558,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashridge Commons and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4833,136567,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kings and Bakers Woods and Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4834,136638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sawbridgeworth Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4835,136656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashwell Springs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4836,136679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benington High Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4837,136732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bricket Wood Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4838,136746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wormley-Hoddesdonpark Wood South","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4839,140974,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mother Drain, Misterton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4840,136796,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croxley Common Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4841,136826,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northaw Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4842,137814,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swaby Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4843,169850,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frondeg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4844,136838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blagrove Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4845,137879,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wormley-Hoddesdonpark Woods North","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4846,141029,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newmarket Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4847,137895,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grafham Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4848,137906,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Paxton Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4849,138018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wain Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4850,137124,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greetham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4851,137142,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blisworth Rectory Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4852,137151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bozeat Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4853,138028,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Water End Swallow Holes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4854,137178,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tolethorpe Road Verges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4855,138041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moor Hall Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4856,138060,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whippendell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4857,139357,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gaer House Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4858,139358,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gaer Wood, Llangoven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4859,137258,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tring Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4860,140740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oddy Hill and Tring Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4861,136257,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Causey Bank Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4862,137391,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Patmore Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4863,137414,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plashes Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4864,137470,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4865,138069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aldwincle Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4866,136450,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hell Kettles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4867,137476,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roughdown Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4868,137536,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sarratt Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4869,139359,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gallt Llanerch - Coed Gelli-deg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4870,137558,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tewinbury","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4871,137555,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Therfield Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4872,138658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalby Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4873,138670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fulsby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4874,139362,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garn Wood, Kilkiffeth Wood & Dan-Deri-Cwm Felin-Ban","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4875,137845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Hormead Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4876,137839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loughborough Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4877,137579,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Scrubbs Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4878,137858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swanholme Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4879,137871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranford St John","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4880,138102,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashton Wold","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4881,138143,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Badsaddle, Withmale Park and Bush Walk Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4882,137746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Overhall Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4883,136856,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinoulton Marsh and Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4884,138159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birch Spinney and Mawsley Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4885,138178,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Collyweston Great Wood and Easton Hornstocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4886,138206,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Collyweston Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4887,138215,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Collyweston Slate Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4888,138684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hundleby Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4889,136875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkby Grives","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4890,136901,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laxton Sykes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4891,138233,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombe Hill Hollow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4892,138240,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cowthick Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4893,138322,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Everdon Stubbs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4894,138699,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winceby Rectory Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4895,136902,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linby Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4896,138336,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Geddington Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4897,138617,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carlton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4898,138641,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upware Bridge Pit North","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4899,169928,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirton Wood, Lincolnshire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4900,139447,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harper's Grove-Lord's Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4901,138853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mantles Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4902,138859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pipewell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4903,138871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitsford Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4904,140441,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Withens Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4905,138912,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ramsden Corner Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4906,137362,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barnack Hills & Holes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4907,140451,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Anston Stones Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4908,140012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Short Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4909,139442,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hayes Point to Bendrick Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4910,139563,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mochdre Dingles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4911,139564,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moel Hebog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4912,140055,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stoke & Bowd Lane Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4913,139565,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moel Hiraddug a Bryn Gop","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4914,137386,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castor Hanglands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4915,137410,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holme Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4916,137439,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monk's Wood and The Odd Quarter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4917,137449,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upwood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4918,137457,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodwalton Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4919,137950,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thriplow Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4920,140177,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alder Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4921,140430,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Misterton Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4922,140656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Silverines Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4923,139571,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Montgomery Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4924,140444,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bardon Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4925,137988,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Traveller's Rest Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4926,138016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upware North Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4927,140465,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benniworth Haven Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4928,140477,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tickencote Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4929,140486,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maulden Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4930,140498,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maulden Church Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4931,140991,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scrooby Top Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4932,140514,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunstable and Whipsnade Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4933,136215,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aversley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4934,136231,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balsham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4935,138400,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingerby Beck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4936,136247,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barrington Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4937,136262,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bassenhally Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4938,136274,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bedford Purlieus","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4939,146596,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northiam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4940,136287,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berry Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4941,136345,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brackland Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4942,136358,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brampton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4943,139591,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Parys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4944,136301,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bonemills Hollow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4945,136872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Biddenham Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4946,139592,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Penarfynnydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4947,139593,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Preseli","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4948,136372,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buff Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4949,136431,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castor Flood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4950,138411,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cross Drain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4951,136461,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cherry Hinton Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4952,170009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Tir y Cwmwd a'r Glannau at Garreg yr Imbill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4953,136507,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dernford Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4954,136520,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devil's Dyke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4955,136528,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eversden Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4956,136543,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eye Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4957,138505,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upware South Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4958,138519,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warboy's and Wistow Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4959,555545409,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Y Fflint / Flint Mountain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4960,139650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pencreigiau'r Llan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4961,136818,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tilwick Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4962,136839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elsworth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4963,140702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bugbrooke Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4964,136999,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fleam Dyke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4965,139645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pengelli Forest and Pant-teg Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4966,136850,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Paxton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4967,139646,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penhow Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4968,139656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penrhynoedd Llangadwaladr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4969,136894,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clipstone Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4970,137436,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orston Plaster Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4971,139693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rheidol Shingles and Backwaters","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4972,137008,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fowlmere Watercress Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4973,137486,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redgate Woods and Mansey Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4974,137493,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Idle Washlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4975,137514,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roe Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4976,137026,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fulbourn Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4977,137041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Furze Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4978,137623,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Treswell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4979,137631,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Welbeck Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4980,137648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wellow Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4981,139701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhinog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4982,170210,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waterwynch Bay to Saundersfoot Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4983,137055,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gamlingay Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4984,136736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glebe Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4985,137073,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hardwick Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4986,137139,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hildersham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4987,137121,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hayley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4988,137675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilford Claypits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4989,137185,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"L-Moor, Shepreth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4990,137197,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Out and Plunder Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4991,137237,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Madingley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4992,137553,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gosling's Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4993,137556,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allington Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4994,137423,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longhoughton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4995,137596,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Math and Elsea Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4996,138585,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitewater Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4997,137610,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scotton Beck Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4998,137757,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Papworth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +4999,138602,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wicken Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5000,138622,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilbraham Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5001,137622,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swinstead Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5002,137632,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Debdale Meadow, Muston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5003,137644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oughtonhead Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5004,137724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nene Washes (Whittlesey)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5005,137846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sawston Hall Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5006,137928,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sutton Heath and Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5007,136513,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middleton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5008,137873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Soham Wet Horse Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5009,137897,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stow-Cum-Quy Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5010,139145,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5011,137946,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ten Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5012,136519,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5013,137976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thriplow Peat Holes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5014,139146,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Mawr - Blaen-Car","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5015,138351,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sherwood Forest Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5016,138388,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Houghton Regis Marl Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5017,138652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodwalton Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5018,138401,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hanger Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5019,137014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Back Bay to Carghidown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5020,138531,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waresley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5021,136553,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pow Hill Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5022,138538,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weaveley and Sand Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5023,136568,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Moss Lead Vein","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5024,134979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Back Burn Wood and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5025,138671,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warboys Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5026,138704,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Attenborough Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5027,138712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barnstone Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5028,138730,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barrow Hills Sandpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5029,135514,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Back Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5030,135055,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bad na Gallaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5031,136042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Badanloch Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5032,138738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bevercotes Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5033,138744,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birklands and Bilhaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5034,136525,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porter's Lodge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5035,140630,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blow's Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5036,135979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bagh Tharsgabhaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5037,135317,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cobbinshaw Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5038,138775,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bogs Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5039,140610,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yelden Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5040,140632,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rye Meads","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5041,141154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stony Cut, Cold Hesledon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5042,138782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bulwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5043,138794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5044,169891,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harwood Dale Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5045,135773,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fidlar Geo to Watsness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5046,140633,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Crook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5047,140634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Delph Bridge Drain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5048,140637,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Adventurers' Land","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5049,141092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tudor Cottage Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5050,140639,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shippea Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5051,136703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clarborough Tunnel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5052,136707,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clumber Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5053,136720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dyscarr Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5054,136739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eakring and Maplebeck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5055,141102,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rookery Cottage Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5056,140641,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strawberry Hill Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5057,136776,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gotham Hill Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5058,136782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hills and Holes and Sookholme Brook, Warsop","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5059,136821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holme Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5060,139836,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fife Ness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5061,136847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kimberley Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5062,138487,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kiplingcotes Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5063,136915,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lord Stubbins Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5064,140092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hoplands Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5065,136936,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mather Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5066,136944,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mattersey Hill Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5067,136956,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Misson Line Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5068,136972,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newhall Reservoir Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5069,140168,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"King Lud's Entrenchments and The Drift","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5070,169989,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Melbourne and Thornton Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5071,139363,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garth Bank Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5072,136985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Normanton Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5073,170230,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilwell Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5074,140492,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gibraltar Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5075,139364,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5076,140681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Totternhoe Chalk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5077,137704,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5078,136536,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleatham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5079,140683,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sundon Chalk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5080,140684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dimminsdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5081,140686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chesterfield Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5082,137440,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pleasley Vale Railway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5083,137451,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rainworth Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5084,137453,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rainworth Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5085,137538,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rushcliffe Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5086,136980,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkham Park & Riverside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5087,137550,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seller's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5088,139365,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garth-eryr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5089,137566,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sledder Wood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5090,137586,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teversal Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5091,193723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Porthaethwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5092,137611,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thoresby Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5093,137713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ancaster Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5094,140825,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Cherwell At Trafford House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5095,140849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aldbury Nowers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5096,140826,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"King's Cliffe Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5097,138271,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Candlesby Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5098,138281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Bytham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5099,139724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Rhoscolyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5100,140872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Robbinetts","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5101,138312,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Claxby Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5102,140910,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seaton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5103,138209,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baston and Thurlby Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5104,138242,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bratoft Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5105,138259,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calceby Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5106,138333,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cliff House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5107,138372,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dole Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5108,138396,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunsby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5109,138964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaen y Wergloedd Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5110,138341,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Copper Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5111,138354,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deeping Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5112,136898,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Main Quarry, Mountsorrel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5113,138429,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greetwell Hollow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5114,138454,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grimsthorpe Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5115,136984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Luffenham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5116,138491,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Hermitage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5117,141007,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"One Barrow Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5118,137040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Owston Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5119,140040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Barn, Oxcombe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5120,140064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holywell Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5121,137051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pasture and Asplin Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5122,169858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Tonfanau i Friog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5123,139375,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Ynys Gybi: Holy Island Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5124,140056,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Dyke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5125,140080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Honington Camp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5126,169864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glyn Cywarch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5127,140127,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jenkins Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5128,140150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keal Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5129,169927,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkby Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5130,141103,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stock Wood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5131,169929,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirton Wood, Notts,","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5132,140198,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langtoft Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5133,140254,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moor Closes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5134,140227,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linwood Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5135,140236,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Metheringham Heath Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5136,140275,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moor Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5137,137671,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stonehead Beck ('Gill Beck')","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5138,140287,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nettleton Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5139,140308,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New England Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5140,136474,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scotton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5141,136921,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Durtrees Burn Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5142,136421,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Potterhanworth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5143,138114,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Saltfleetby - Theddlethorpe Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5144,136454,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sapperton & Pickworth Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5145,136626,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swallow Wold","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5146,136648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tattershall Carrs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5147,139190,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glynllifon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5148,136484,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scotton and Laughton Forest Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5149,136503,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sea Bank Clay Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5150,136529,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skendleby Psalter Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5151,137148,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheepy Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5152,136541,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sotby Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5153,136604,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Surfleet Lows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5154,139388,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Golden Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5155,136129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Beasdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5156,136660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tattershall Old Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5157,137633,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sproxton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5158,137643,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanford Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5159,136669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tetford Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5160,136682,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tetney Blow Wells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5161,136694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Troy Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5162,137884,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wickenby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5163,137898,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Willoughby Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5164,137919,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilsford Heath Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5165,137904,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Willoughby Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5166,193724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaith Brics Buttington/Buttington Brick Works","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5167,137930,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilsford & Rauceby Warrens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5168,139396,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Bryn (Bryn Pasture)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5169,137951,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodhall Spa Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5170,138804,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cave's Inn Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5171,138814,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Charnwood Lodge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5172,137961,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodnook Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5173,137985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Downfield Pit, Westmill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5174,138008,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hillcollins Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5175,138020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westwood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5176,138865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chater Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5177,138891,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cliffe Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5178,138896,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clipsham Old Quarry and Pickworth Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5179,138026,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kensworth Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5180,138044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nine Acres Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5181,138061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Double Arches Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5182,135842,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Callater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5183,138076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gog Magog Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5184,137659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stonesby Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5185,138086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pulloxhill Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5186,170161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wash","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5187,138106,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allexton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5188,138133,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bardon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5189,138150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barrow Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5190,138168,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beacon Hill, Hangingstone and Out Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5191,135790,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Ey Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5192,135010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Falloch Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5193,138175,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benscliffe Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5194,138680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackbrook Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5195,138702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bloody Oaks Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5196,140865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hale Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5197,138706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Botcheston Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5198,138724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradgate Park and Cropston Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5199,138732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breedon Cloud Wood and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5200,139998,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cribb's Lodge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5201,138737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breedon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5202,138743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Briery Wood Heronry, Belvoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5203,138783,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buddon Wood and Swithland Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5204,138446,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salt Lake Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5205,138793,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burbage Wood and Aston Firs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5206,137731,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brada Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5207,138920,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coalville Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5208,139974,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cotes Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5209,140866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loughrigg Fell Flushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5210,135361,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Falloch Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5211,140006,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croft and Huncote Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5212,140481,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Wood, Great Casterton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5213,139013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Cwm-bach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5214,140018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croft Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5215,140037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croxton Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5216,140524,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eye Brook Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5217,138681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Honley Station Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5218,140043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Donington Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5219,140550,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Catworth Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5220,135381,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Fender Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5221,135267,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Garry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5222,140506,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Empingham Marshy Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5223,140515,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eye Brook Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5224,140560,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alder Wood and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5225,140579,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frisby Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5226,135379,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Lochay Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5227,135721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mull of Galloway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5228,136290,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Groby Pool and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5229,136318,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harby Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5230,136326,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holwell Mouth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5231,135484,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Lyon Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5232,136169,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Munlochy Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5233,136374,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ketton Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5234,136385,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilby - Foxton Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5235,136397,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Launde Big Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5236,136409,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leighfield Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5237,136880,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lount Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5238,140704,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blagill Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5239,139938,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenacardoch Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5240,136884,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Luffenham Heath Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5241,135262,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Papana Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5242,138643,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5243,136925,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Narborough Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5244,137219,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boynton Willow Garth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5245,136931,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5246,136964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newhurst Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5247,136969,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newton Burgoland Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5248,137496,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hawthorn Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5249,136996,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oakley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5250,137072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prior's Coppice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5251,137080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Eye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5252,137111,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rutland Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5253,137506,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yoden Village Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5254,137147,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shacklewell Hollow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5255,137532,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pocklington Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5256,135457,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalcroy Promontory","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5257,137598,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheet Hedges Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5258,137615,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shepshed Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5259,137662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Terrace Hills Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5260,137689,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tilton Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5261,169782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cowbit Wash","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5262,137702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Twenty Acre Piece","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5263,137711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ulverscroft Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5264,137722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wymondham Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5265,137768,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southorpe Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5266,137734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Sulehay Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5267,137761,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chettisham Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5268,135885,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalnabo Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5269,137791,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bosworth Mill Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5270,137840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southorpe Roughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5271,137855,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Wilbraham Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5272,137866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Houghton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5273,137795,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wollaston Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5274,137829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Snailwell Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5275,137872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brampton Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5276,140210,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cam Washes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5277,140260,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ryhall Pasture and Little Warren Verges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5278,140985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knarsdale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5279,140271,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sudborough Green Lodge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5280,140292,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whittlewood Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5281,140435,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spalford Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5282,137790,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barton Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5283,141028,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dogsthorpe Star Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5284,140306,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southfield Farm Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5285,140325,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yardley Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5286,140346,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dungee Corner Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5287,136580,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cooper's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5288,140363,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Syresham Marshy Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5289,140388,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Ise and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5290,136631,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flitwick Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5291,136639,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Galley and Warden Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5292,140397,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bulwick Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5293,136686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kings Wood and Glebe Meadows, Houghton Conquest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5294,138412,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knocking Hoe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5295,136722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marston Thrift","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5296,136584,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deacon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5297,136754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maulden Wood and Pennyfather's Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5298,136967,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Moorsley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5299,136607,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fancott Woods and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5300,136615,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Felmersham Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5301,136801,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Odell Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5302,136829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Potton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5303,137430,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wakerley Spinney","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5304,137443,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weldon Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5305,140309,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tring Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5306,137582,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Freeholders Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5307,136858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandy Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5308,137300,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Smithcombe, Sharpenhoe and Sundon Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5309,137309,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southill Lake and Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5310,137320,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stevington Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5311,140387,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Farm Meadow, Boldon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5312,137337,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swineshead Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5313,141032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hunder Beck Juniper","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5314,135966,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalroy and Clava Landforms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5315,137355,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Totternhoe Knolls","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5316,137374,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wavendon Heath Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5317,137420,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wadenhoe Marsh and Achurch Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5318,137565,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teversal To Pleasley Railway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5319,137570,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingston Wood and Outliers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5320,137602,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Casterton Road Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5321,140943,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moor Mill Quarry, West","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5322,138080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banhaw, Spring and Blackthorn's Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5323,140407,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Catton Lea Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5324,138096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doddington Clay Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5325,138109,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Welton-Le-Wold Old Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5326,138119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nares Gladley Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5327,138158,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Titchmarsh Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5328,135650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sanda Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5329,135887,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sands of Forvie and Ythan Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5330,138139,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frogmore Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5331,140411,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Knock Shield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5332,135984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandside Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5333,169742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ceann a' Mhara to Loch a' Phuill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5334,169912,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Clyde","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5335,138185,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dropshort Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5336,138900,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Finedon Top Lodge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5337,169934,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lairg and Strath Brora Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5338,138198,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tebworth Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5339,138220,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hardwick Lodge Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5340,140882,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Helmdon Disused Railway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5341,140023,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colwick Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5342,138270,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roade Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5343,169930,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knapdale Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5344,138303,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bucknell Wood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5345,136979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Haining Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5346,138342,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Twywell Gullet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5347,140051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caldecote Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5348,138357,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Wood and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5349,140066,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wansford Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5350,138916,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glapthorn Cow Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5351,140100,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orwell Clunch Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5352,140118,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southorpe Paddock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5353,139989,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tortoiseshell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5354,139993,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muckton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5355,140135,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swithland Wood and The Brand","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5356,137079,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tynemouth To Seaton Sluice","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5357,140087,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Abbot's and Lound Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5358,140138,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kendall's Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5359,170202,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Valla Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5360,140161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creswell Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5361,140176,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dovedale Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5362,140207,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Godmanchester Eastside Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5363,136918,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Derwent Gorge & Horsleyhope Ravine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5364,170117,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shaw Beck Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5365,146281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thrislington Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5366,137442,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haugh and Gundale Slacks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5367,137132,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lovely Seat - Stainton Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5368,135570,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Threave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5369,138477,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fallowfield Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5370,136865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Golden Hill Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5371,138764,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newbridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5372,140815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill and Whiskershiel Burns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5373,140753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Snaper Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5374,140863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newby Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5375,136365,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cow Cliff Pasture and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5376,135912,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Whiteness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5377,140423,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peckriding Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5378,141033,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tuthill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5379,140982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fishburn Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5380,136113,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southern Parphe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5381,140447,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Humbleton Hill and The Trows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5382,140448,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Ridge Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5383,136312,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roseberry Topping","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5384,141009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hesley Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5385,140588,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mallerstang-Swaledale Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5386,140597,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whernside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5387,141010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bellerby Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5388,136239,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cowpen Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5389,136253,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hart Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5390,136282,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pinkney and Gerrick Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5391,136404,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langbaurgh Ridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5392,136406,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redcar Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5393,136425,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shibdon Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5394,135891,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spey Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5395,136468,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Claxheugh Rock and Ford Limestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5396,137899,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castlebeck and Scar Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5397,136803,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deepdale Meadows, Langstrothdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5398,136812,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Green Lane Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5399,170143,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strath an Loin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5400,136491,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fulwell and Carley Hill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5401,136767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gilleylaw Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5402,136777,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Angram Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5403,136935,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gosforth Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5404,136824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barn Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5405,136840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishop Wilton Poor Land","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5406,136849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spiker's Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5407,136955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Herrington Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5408,136994,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Humbledon Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5409,137006,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hylton Castle Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5410,137020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Joe's Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5411,137130,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hastings Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5412,137034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prestwick Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5413,137067,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tunstall Hills and Ryhope Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5414,137094,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wear River Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5415,137099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harton Down Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5416,136149,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thrumster Mill Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5417,137143,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ryton Willows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5418,137199,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beckhead Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5419,137150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thornley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5420,140937,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fulford Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5421,137179,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allerthorpe Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5422,135385,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Selkirk Racecourse Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5423,137205,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishop Wilton Deep Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5424,135068,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sgavoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5425,137564,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nabgate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5426,137591,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keasden Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5427,137676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breighton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5428,169906,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horbling Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5429,136096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tong Saltings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5430,137574,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5431,137686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broughton Far Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5432,137697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryan Mills Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5433,137739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crowle Borrow Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5434,137745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Derwent Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5435,137780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fordon Chalk Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5436,169893,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hatfield Chase Ditches","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5437,137709,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burton Bushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5438,137714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cliff Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5439,137794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Everthorpe Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5440,137799,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eastoft Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5441,135973,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Torboll Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5442,137721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cottam Well Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5443,135777,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tore of Troup","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5444,137861,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Epworth Turbary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5445,137878,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haxey Grange Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5446,138301,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boldon Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5447,138329,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low Hauxley Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5448,139876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shochie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5449,137892,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haxey Turbary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5450,137931,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hoddy Cows Spring","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5451,137947,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hornsea Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5452,135934,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Torridon Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5453,138340,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hawthorn Cottage Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5454,138359,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cresswell and Newbiggin Shores","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5455,141013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lampert Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5456,138467,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kelsey Hill Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5457,138490,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirmington Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5458,138513,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Lagoons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5459,138517,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leven Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5460,138535,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Manton Stone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5461,138753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Ferriby Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5462,138551,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Manton and Twigmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5463,138584,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Melton Bottom Chalk Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5464,138599,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Messingham Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5465,138618,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Millington Wood and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5466,138762,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dimlington Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5467,135521,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Treshnish Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5468,138631,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hisehope Burn Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5469,138678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Risby Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5470,138701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Derwent","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5471,138721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Hull Headwaters","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5472,138654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newton Mask","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5473,138748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rush Furlong","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5474,138665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pulfin Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5475,138685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rifle Butts Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5476,140418,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barelees Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5477,140123,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Ure Bank, Ripon Parks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5478,140137,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muker Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5479,140158,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barrow Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5480,140167,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cliff Ridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5481,140181,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castlethorpe Tufas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5482,140188,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colour Heugh and Bowden Doors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5483,140432,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bavington Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5484,138579,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tadcaster Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5485,140203,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradford Kames","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5486,140277,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wrawby Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5487,140317,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horse Field, Gilling","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5488,140469,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Billsmoor Park and Grasslees Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5489,140499,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brunton Bank Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5490,140519,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Campfield Kettle Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5491,140530,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Point To Cullernose Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5492,140986,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aules Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5493,170156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Cheviot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5494,140563,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coquet Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5495,141011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newton-Le-Willows Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5496,140960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Naburn Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5497,140667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hambleton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5498,136535,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Carrs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5499,140668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frog Wood Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5500,140961,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenhow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5501,136665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cresswell Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5502,136706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Farne Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5503,136729,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ford Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5504,136774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenleighton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5505,136834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harbottle Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5506,136852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hareshaw Dene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5507,136860,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hesleyside Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5508,140821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low Redford Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5509,136877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holburn Lake and Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5510,136903,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holystone Burn Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5511,136912,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holywell Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5512,136943,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kielderhead and Emblehope Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5513,140823,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fallowlees Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5514,137224,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorneyburn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5515,140977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pilmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5516,140711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hotham Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5517,137271,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Cliffe Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5518,169994,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Miller's Hill, Milborne Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5519,137281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roos Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5520,140714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newbald Becksies","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5521,137415,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linbrigg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5522,137431,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monk Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5523,137445,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muckle Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5524,140736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harthope Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5525,140257,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5526,137487,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redesdale Ironstone Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5527,137489,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roman Wall Escarpments","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5528,137533,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Simonside Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5529,138653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hayburn Wyke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5530,137559,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spindlestone Heughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5531,137590,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tipalt Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5532,137653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holystone North Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5533,137661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corbridge Limestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5534,137679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roddam Dene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5535,141073,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northumberland Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5536,140737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wath Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5537,137963,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hack Fall Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5538,137980,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mar Field Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5539,138022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hartlepool Submerged Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5540,140926,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middle Side & Stonygill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5541,140738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kildale Hall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5542,138157,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gunnerton Nick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5543,138180,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allolee To Walltown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5544,138194,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Close House Riverside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5545,138276,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Williamston River Shingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5546,138290,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warkworth Dunes and Saltmarsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5547,138218,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beltingham River Shingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5548,138302,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newton Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5549,138308,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hartley Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5550,138349,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5551,138227,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ninebanks River Shingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5552,136762,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Eden Dene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5553,138428,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brasside Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5554,138247,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burnfoot River Shingle and Wydon Nabb","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5555,136238,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenhaugh Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5556,135793,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teindland Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5557,138380,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wingate Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5558,138389,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishop Middleham Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5559,138417,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Botany Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5560,138455,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Butterby Oxbow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5561,138463,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cassop Vale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5562,140590,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Acaster South Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5563,140605,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brenkley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5564,136226,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barrow Burn Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5565,136388,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crime Rigg and Sherburn Hill Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5566,136502,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilmond Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5567,136427,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairy Holes Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5568,136434,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hawthorn Dene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5569,136577,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park End Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5570,136589,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raisby Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5571,136624,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shipley and Great Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5572,170128,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sleightholme Beck Gorge `The Troughs'","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5573,136646,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slit Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5574,136657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cotherstone Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5575,174656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwarel Singret","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5576,136930,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tophill Low","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5577,136954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Carr Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5578,136968,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birkham Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5579,136995,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalby Bush Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5580,137023,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scar Closes, Kisdon Side","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5581,137699,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fothering Holme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5582,137125,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Town Kelloe Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5583,138863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Teesdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5584,137145,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waldridge Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5585,137156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westernhope Burn Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5586,137165,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Rigg Open Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5587,137172,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Witton-Le-Wear","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5588,137183,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crag Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5589,137206,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"God's Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5590,137212,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pig Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5591,137220,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rogerley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5592,137226,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hesledon Moor West","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5593,137231,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pittington Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5594,137275,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redcar Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5595,137842,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Botton Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5596,137286,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sherburn Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5597,137312,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Farndale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5598,137348,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashberry and Reins Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5599,140703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allen Confluence Gravels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5600,137346,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aubert Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5601,137369,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beck Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5602,137377,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Betton Farm Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5603,137665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grassington Hospital Grounds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5604,137677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Till Riverbanks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5605,136337,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ling Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5606,137851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bride Stones","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5607,137865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brimham Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5608,137877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broughton Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5609,137880,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burton Leonard Lime Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5610,136325,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lindisfarne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5611,137925,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cockrah Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5612,137979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ellerburn Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5613,137940,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cow Myers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5614,137959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cropton Banks and Howlgate Head Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5615,137970,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Heslerton Brow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5616,137994,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broughton Alder Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5617,138034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Filey Brigg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5618,138100,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gowerdale Windy Pits/Peak Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5619,138662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill House Nab","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5620,138064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gormire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5621,138094,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gouthwaite Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5622,140913,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seato Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5623,138125,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gristhorpe Bay and Red Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5624,138146,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hackness Head Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5625,140735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stonecroft Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5626,140733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Settlingstones Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5627,138444,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baldersdale Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5628,138461,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foster's Hush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5629,140557,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marsett Rigg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5630,138669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hole Of Horcum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5631,138686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Iron Scar and Hundale Point To Scalby Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5632,138705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkdale Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5633,138728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Littlebeck Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5634,138773,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newsome Bridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5635,138796,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newtondale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5636,138805,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nine Spring Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5637,140748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cawthorn Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5638,138829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nunnington Cutting and Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5639,137207,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raincliffe & Forge Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5640,140757,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grains O'Th' Beck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5641,140446,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shaw's Gate Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5642,138844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rievaulx Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5643,138862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ripon Parks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5644,138910,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Runswick Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5645,139999,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scar End Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5646,140611,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newton Ketton Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5647,140564,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Three Dykes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5648,170179,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tripsdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5649,140747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lambwath Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5650,139093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwarel Talar Wen (Talar Wen Quarry)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5651,140612,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hannah's Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5652,140749,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roman Wall Loughs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5653,140751,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Tyne At Ovingham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5654,140756,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaiskey Bank Springs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5655,140460,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seive Dale Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5656,140649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Far High House Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5657,137557,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Austwick and Lawkland Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5658,139096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cilcenni Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5659,140468,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sked Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5660,140480,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Snape Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5661,140488,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Bay To South Toll House Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5662,137569,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clints Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5663,140508,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spring Wood,Hawnby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5664,140516,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Staithes - Port Mulgrave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5665,140540,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strensall Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5666,140548,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thixen Dale and Longdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5667,140584,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Troutsdale and Rosekirk Dale Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5668,136212,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waterdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5669,136241,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bull Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5670,136255,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wharram Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5671,136271,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitby-Saltwick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5672,136280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wintringham Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5673,136351,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashes Pasture and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5674,136368,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Askham Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5675,140638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Park Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5676,137667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Feetham Holme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5677,137673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Giggleswick Scar and Kinsey Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5678,140640,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rigg Farm and Stake Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5679,140643,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mere Beck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5680,139449,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heol Senni Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5681,140645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cornriggs Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5682,140647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Newlandside Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5683,137567,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cocket Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5684,169983,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Malham-Arncliffe ( Cool Pasture )","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5685,141051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Wharfedale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5686,137629,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cracoe Reef Knolls","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5687,141053,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teesdale Allotments","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5688,137698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haw Crag Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5689,137718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hawkswick Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5690,137723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hell Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5691,137738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swarth Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5692,137748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holy Well, Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5693,137813,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kisdon Force Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5694,137816,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Attermire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5695,137833,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leyburn Glebe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5696,140803,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low Gill Moor Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5697,140804,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foredale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5698,140805,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aysgarth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5699,140801,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New House Meadows, Malham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5700,140802,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thowker Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5701,140810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lambley River Shingles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5702,138346,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Malham-Arncliffe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5703,138358,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meal Bank Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5704,138365,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ox Close","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5705,138379,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oxenber and Wharfe Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5706,138395,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pan Beck Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5707,138405,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen-Y-Ghent","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5708,138410,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pikedaw Calamine Caverns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5709,138443,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Ribble (Long Preston Deeps)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5710,138451,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Wharfe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5711,170134,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Austell Clay Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5712,140048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walden Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5713,138501,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"School Share Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5714,138518,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scoska Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5715,138530,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burr Closes, Selby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5716,138547,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Semerwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5717,140204,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spell Howe Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5718,138562,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sherburn Willows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5719,138594,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skipwith Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5720,138611,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stran's Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5721,138626,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strid Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5722,138630,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thornton and Twisleton Glens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5723,140270,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dow Cave System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5724,138644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thwaite Stones","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5725,140361,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hallow Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5726,140813,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Len Pastures, Crackpot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5727,140814,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Neasham Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5728,140824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trimdon Limestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5729,140165,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bastow Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5730,140178,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grass Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5731,140212,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birks Fell Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5732,140217,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birkwith Caves and Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5733,140232,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boreham Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5734,140278,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stump Cross Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5735,140289,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Farnham Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5736,140314,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cayton, Cornelian and South Bays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5737,140906,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bolton Percy Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5738,140328,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eller's Wood and Sand Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5739,140339,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenhow Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5740,140341,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Nidderdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5741,140373,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Derwent Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5742,140394,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brants Gill Catchment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5743,140416,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sleightholme Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5744,169685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Besthorpe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5745,140433,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tranmire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5746,140858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Scar Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5747,136561,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warks Burn Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5748,170020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North York Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5749,140917,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heslington Tillmire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5750,140883,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hackness Rock Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5751,140907,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Church Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5752,136532,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flamborough Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5753,137868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flamborough Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5754,136588,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arcot Hall Grasslands and Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5755,136602,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Darras Hall Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5756,140818,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Swaledale Woods and Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5757,136652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longhorsley Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5758,136667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Conistone Old Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5759,136674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen Y Ghent Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5760,136804,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raisby Hill Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5761,136705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkby Wharfe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5762,136714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenfield Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5763,137383,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pockerley Farm Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5764,136783,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Dunsforth Carrs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5765,136794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pike Whin Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5766,183422,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mattishall Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5767,136815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleadon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5768,136827,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Big Waters","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5769,174648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barn Elms Wetland Centre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5770,140928,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middle Crossthwaite","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5771,137314,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brockadale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5772,137342,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mount Pleasant Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5773,137352,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenfoot Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5774,174707,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Dee (England)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5775,137393,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Hylton Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5776,137407,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Biller Howe Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5777,137432,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ruston Cottage Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5778,137495,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cockerham Meadows, Thorpe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5779,169935,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langcliffe Scars and Jubilee, Albert and Victoria Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5780,137454,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jeffry Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5781,137552,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stephen Ings, Crackpot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5782,137464,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Askrigg Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5783,137467,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pry and Bottom Meadows, Mid-Mossdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5784,137542,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Hall Meadows, Healaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5785,139242,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig-y-don","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5786,138820,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Holme Meadow, Thwaite","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5787,138815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harker's House Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5788,138841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cliff Beck Meadow, Buttertubs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5789,138846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swineley Meadow, Widdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5790,138866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wanlass Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5791,138878,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Close, Calvert Houses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5792,138894,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oughtershaw and Beckermonds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5793,140817,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lord's Wood and Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5794,139995,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meadow Croft, Skythorns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5795,140014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Far Mains and Far Limekiln Close Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5796,174660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig-y-garn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5797,140024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yockenthwaite Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5798,137344,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ingleborough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5799,140122,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ridley Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5800,136438,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stonepit and Nova Slacks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5801,140058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brantingham Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5802,140072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horse Dale and Holm Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5803,140084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Vessey Pasture Dale and Back Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5804,140097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quarry Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5805,140606,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Willow Burn Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5806,136456,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Backstone Bank and Baal Hill Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5807,139246,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig-y-Llyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5808,139248,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigyfulfran & Clarach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5809,140133,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hetton Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5810,140935,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gingerfields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5811,140142,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyne Watersmeet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5812,140166,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heatheryburn Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5813,140816,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairy Call Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5814,136284,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bamburgh Coast and Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5815,136310,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Howick To Seaton Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5816,140918,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ladyhills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5817,136240,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Briarwood Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5818,136250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duncombe Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5819,140927,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowlees and Friar House Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5820,136389,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brignall Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5821,136428,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Saltburn Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5822,136485,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Hartley Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5823,136512,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burnhope Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5824,136523,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Railway Stell West","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5825,136992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strother Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5826,137068,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drewton Lane Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5827,137005,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wharmley Riverside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5828,137032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishop Monkton Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5829,137045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gibside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5830,137103,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Messingham Sand Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5831,137113,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Ure Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5832,137120,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stutton Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5833,137238,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowes Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5834,137712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wyedale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5835,137752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moorsley Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5836,137766,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kettlewell Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5837,170215,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West End Meadow, Lunds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5838,140946,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hewson's Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5839,140919,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forlorn Hope Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5840,140472,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashfield Brick Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5841,169654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arkle Beck Meadows, Whaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5842,137853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hulam Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5843,137864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"College Valley Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5844,137881,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alnmouth Saltmarsh and Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5845,137954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilnsey Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5846,138009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hadston Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5847,138497,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haggburn Gate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5848,140914,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River West Allen At Blackett Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5849,139628,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parc-y-rhos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5850,138545,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swale Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5851,138566,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Withow Gap, Skipsea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5852,170034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park House Outbuildings, Stackpole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5853,138635,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Green Croft and Langley Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5854,138708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Noddle End","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5855,138660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cinquefoil Brow and Wood Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5856,138695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keasey Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5857,138711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Almscliff Crag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5858,140920,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chris's Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5859,141048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duddon Valley Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5860,140011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Silloth Dunes and Mawbray Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5861,141047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low Beckside Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5862,137168,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alston Shingle Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5863,137592,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Bees Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5864,141072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Iron Pit Spring Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5865,140334,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Madbanks and Ledsham Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5866,140708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lytham St, Anne's Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5867,169841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Florence Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5868,140716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Mell Fell Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5869,140905,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Augill Valley Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5870,140948,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Combe Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5871,170242,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wyre Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5872,170198,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Dentdale Cave System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5873,140676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jumb Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5874,169710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckbarrow Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5875,141001,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5876,139663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penrice Stables and Underhill Cottage","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5877,138211,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5878,138317,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dee Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5879,136618,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hatfield Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5880,138614,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashclough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5881,140343,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Micklefield Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5882,139658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penstrowed Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5883,141046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Butterwick Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5884,139659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pentregwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5885,140225,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breary Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5886,140239,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Irthing Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5887,140252,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broadhead Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5888,140276,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairburn and Newton Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5889,140286,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hetchell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5890,140299,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leeds - Liverpool Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5891,140315,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5892,140354,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mickletown Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5893,140421,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Townclose Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5894,140364,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roach Lime Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5895,140382,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seckar Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5896,140415,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Elmsall Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5897,140487,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cadeby Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5898,139767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stackpole Courtyard Flats & Walled Garden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5899,140493,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Denaby Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5900,140503,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edlington Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5901,138327,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blelham Tarn & Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5902,136640,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roche Abbey Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5903,139763,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stackpole Quay - Trewent Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5904,136662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maltby Low Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5905,136683,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Owston Hay Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5906,136715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Potteric Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5907,136719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandall Beat","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5908,174695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Normanby Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5909,136731,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shirley Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5910,136752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Totley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5911,174713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stiffkey Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5912,135302,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blair Atholl Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5913,136760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Went Ings Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5914,136891,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crag Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5915,136895,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cringlebarrow and Deepdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5916,137335,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eaves Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5917,137373,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gale Clough and Shooterslee Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5918,137381,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hawes Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5919,170235,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wood Lee Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5920,136808,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Artle Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5921,136861,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5922,136874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clitheroe Knoll Reefs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5923,140949,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Red Lees Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5924,139994,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thurstaston Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5925,140922,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wrightington Bar Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5926,137408,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hodder River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5927,137433,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leighton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5928,137474,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lune Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5929,137515,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Martin Mere, Burscough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5930,137525,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marton Mere, Blackpool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5931,137530,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morecambe Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5932,140020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Armboth Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5933,140034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bassenthwaite Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5934,137547,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newton Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5935,137606,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ravenhead Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5936,137620,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Scar and Tun Brook Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5937,140414,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ribble Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5938,140149,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairnbridge Sand Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5939,137630,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Robert Hall Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5940,138085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roeburndale Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5941,136346,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gowk Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5942,138099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rough Hey Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5943,138117,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salthill and Bellmanpark Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5944,136361,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5945,136369,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollows Farm Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5946,136384,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Honister Crag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5947,138132,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thrang End and Yealand Hall Allotment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5948,138151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Warton Crag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5949,134966,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blair Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5950,138225,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winmarleigh Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5951,140054,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Biglands Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5952,138255,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brookheys Covert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5953,138278,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Compstall Nature Reserve","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5954,138299,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cotteril Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5955,138315,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dibbinsdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5956,138337,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Dungeon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5957,139281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Dwythwch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5958,138364,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunham Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5959,138906,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Wirral Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5960,140078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bothel Craggs Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5961,139973,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5962,140162,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castlehead Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5963,140169,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caudbeck Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5964,136396,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5965,183440,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Glo a Glyndyrus","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5966,140211,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cumwhitton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5967,140219,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumburgh Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5968,140226,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Finglandrigg Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5969,136305,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gelt Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5970,138012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glasson Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5971,139282,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Gwrelych and Nant Llyn Fach Streams","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5972,139283,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Gwynllyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5973,136422,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Johnny Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5974,136445,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lodore - Troutdale Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5975,136464,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lyne Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5976,136493,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mollen Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5977,138079,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tarn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5978,136508,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moorthwaite Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5979,136521,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5980,136530,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oulton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5981,137189,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackdike Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5982,136540,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Over Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5983,137241,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burrells Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5984,136570,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salta Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5985,136575,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandybeck Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5986,137807,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hallinhag Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5987,137818,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Helbeck Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5988,137835,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Helvellyn & Fairfield","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5989,136586,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scaleby Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5990,137984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raisbeck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5991,136595,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scales Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5992,140665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seatoller Wood, Sourmilk Gill & Seathwaite Graphite Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5993,137056,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Siddick Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5994,138007,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skiddaw Group","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5995,138019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Smardale Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5996,138799,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gait Barrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5997,183429,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Solway Flats & Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5998,137101,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stonethwaite Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +5999,137109,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thirlmere Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6000,137129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thurstonfield Lough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6001,137137,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Unity Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6002,137162,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wedholme Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6003,138035,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scandal Beck and Stone Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6004,137210,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blea Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6005,137221,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Borrow Beck Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6006,137225,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brothers Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6007,141074,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sunbiggin Tarn & Moors and Little Asby Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6008,138058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swindale Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6009,137247,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cliburn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6010,137841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lamonby Verges and Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6011,137859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lazonby Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6012,140566,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burns Beck Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6013,137259,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Clouds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6014,137282,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crosby Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6015,137307,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eden Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6016,137318,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Geltsdale & Glendue Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6017,137331,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glencoyne Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6018,137783,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gowbarrow Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6019,140602,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Asby Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6020,137893,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Murthwaite Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6021,137909,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Naddle Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6022,140580,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Claife Tarns and Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6023,135047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenarbuck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6024,137917,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newton Reigny Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6025,137934,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orton Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6026,137983,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pooley Bridge Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6027,135619,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glentrool Oakwoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6028,135778,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glims Moss and Durka Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6029,138083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Temple Sowerby Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6030,140783,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Appleby Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6031,140399,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wan Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6032,140425,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arnside Knott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6033,140454,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baysbrown Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6034,140461,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beech Hill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6035,140595,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clints Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6036,139857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6037,140490,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6038,140526,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brathay Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6039,141016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Far Holme Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6040,140562,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Browgill & Stockdale Becks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6041,136217,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cropple How Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6042,136256,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dodgson Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6043,136277,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drigg Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6044,136296,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duddon Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6045,136982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knipe Tarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6046,136988,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brantrake Moss & Devoke Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6047,136309,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dungeon Ghyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6048,136773,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elterwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6049,136786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ennerdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6050,138511,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Esthwaite Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6051,138520,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Farleton Knott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6052,136846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greendale Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6053,136876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haile Great Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6054,137009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Langdale Tarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6055,137027,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longsleddale Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6056,136882,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cotehill Pastures and Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6057,136900,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hallsenna Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6058,136946,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Humphrey Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6059,138698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hutton Roof Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6060,137042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low Church Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6061,137049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meathop Woods and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6062,137660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scout and Cunswick Scars","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6063,137688,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skelsmergh Tarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6064,137692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Walney and Piel Channel Flats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6065,137063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meathop Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6066,137497,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Miterdale Head Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6067,137502,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nichols Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6068,137534,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barker Scar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6069,140368,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roudsea Wood & Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6070,137628,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scafell Pikes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6071,137650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sea Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6072,137680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Silver Tarn, Hollas and Harnsey Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6073,137707,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tarn Hows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6074,138368,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hodge Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6075,137710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tilberthwaite Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6076,137732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Troutbeck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6077,138280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coplow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6078,137751,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wart Barrow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6079,137760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wasdale Screes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6080,137782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitbarrow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6081,137786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yewbarrow Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6082,138266,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashgill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6083,138324,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowness Knott","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6084,138326,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elliscales Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6085,137600,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yeadon Brickworks and Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6086,138361,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hale Moss Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6087,138399,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Asby Inrakes and Outrakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6088,137510,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Dib Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6089,138409,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Short Gill Cave System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6090,137524,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6091,138424,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skelwith Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6092,138479,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broad Dales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6093,138507,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Far Arnside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6094,138550,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waberthwaite Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6095,140192,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ash Fell Edge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6096,138568,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skelghyll Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6097,140253,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Melmerby Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6098,140304,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Don Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6099,140117,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bramcrag Quarry & Wanthwaite Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6100,140139,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rosthwaite Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6101,140923,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkby Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6102,140180,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mere Sands Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6103,140183,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6104,140223,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eycott Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6105,140231,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Janny Wood Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6106,140244,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mousegill Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6107,140344,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ladcastle and Den Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6108,140383,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cock Wood Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6109,137202,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Darwen River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6110,137624,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beckfoot Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6111,137215,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harper Clough and Smalley Delph Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6112,137249,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leck Beck Head Catchment Area","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6113,137262,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Light Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6114,138023,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wet Sleddale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6115,137269,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Mearley Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6116,137290,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorne Crowle and Goole Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6117,137956,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6118,140666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moorhouse and Cross Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6119,138790,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keisley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6120,138822,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pus Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6121,138006,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Leys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6122,138021,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swindale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6123,140076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eccup Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6124,140093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cautley Thwaite Meadows and Ecker Secker Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6125,138115,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Myttons Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6126,140725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deepdale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6127,140115,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wilson Place Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6128,140582,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wentbridge Ings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6129,146255,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitcliffe Section, Quarry Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6130,138131,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drigg Holme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6131,138165,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gribbs Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6132,138160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thornhill Moss & Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6133,141132,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kennet and Lambourn Floodplain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6134,170029,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Otterswick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6135,183423,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penton Linns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6136,138197,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meols Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6137,169767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Comb Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6138,169870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Graveland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6139,138224,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Astley & Bedford Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6140,170046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pets Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6141,170065,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rannoch Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6142,170219,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wester Ross Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6143,138235,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Highfield Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6144,140603,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clear Beck Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6145,169852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garbh Shlios","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6146,169714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burrow Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6147,174676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knapdale Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6148,138244,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollinwood Branch Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6149,138262,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Huddersfield Narrow Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6150,136366,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duddon Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6151,169636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Achnahaird","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6152,170188,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turflundie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6153,174696,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Lowther Uplands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6154,138274,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanley Bank Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6155,140710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn Marsh & Ince Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6156,138772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Backside Beck and Spen Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6157,174670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen App and Galloway Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6158,169840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Firth of Forth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6159,170126,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slaidhills Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6160,138780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harthwaite Sike","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6161,174685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muirkirk Uplands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6162,174645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arran Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6163,138831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swindale Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6164,138889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nob End","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6165,137243,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rusland Valley Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6166,139979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowber Head and Piper Hole Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6167,140002,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bretherdale Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6168,136391,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wharncliffe Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6169,140005,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Moss, Crosbymoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6170,137074,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Argill Woods and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6171,140947,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stagmire Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6172,140039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Norwood Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6173,136211,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Milkingstead Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6174,136411,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carlton Main Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6175,138931,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt y Main Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6176,136222,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanley Ghyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6177,136254,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wast Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6178,136281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shap Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6179,136279,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birk Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6180,136314,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lindrick Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6181,136322,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bilham Sand Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6182,136401,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stannington Ruffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6183,136462,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradgate Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6184,136437,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Neepsend Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6185,136455,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Neepsend Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6186,138935,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arfordir Saundersfoot - Telpyn/Saundersfoot - Telpyn Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6187,328955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanishen and Lisvane Reservoir Embankments","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6188,136480,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hesketh Golf Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6189,136769,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nostell Brickyard Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6190,140705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shap Fell Road Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6191,136486,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Millfield Verges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6192,136755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Calder Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6193,136779,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tonge River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6194,138347,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scandal Beck, Brunt Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6195,138452,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birkett Hill and High Out Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6196,136793,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lowside Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6197,136813,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blea Tarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6198,140660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bowland Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6199,138552,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Udford Low Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6200,136841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trowbarrow Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6201,136853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cowraik Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6202,140646,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birky Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6203,138570,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Lickbarrow Mires and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6204,140653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pinskey Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6205,138576,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sprotbrough Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6206,138640,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollin Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6207,141131,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jockie's Syke","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6208,138666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elland Bypass Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6209,140669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hook Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6210,140670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chapel Bridge Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6211,140096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tebay Road Cuttings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6212,140830,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pye Flatts Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6213,140120,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langcliff Cross Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6214,140698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tarnbrook Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6215,140699,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Charnock Richard Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6216,140156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ash Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6217,140182,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middlesceugh Woods and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6218,140706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River South Tyne and Tynebottom Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6219,140707,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Smallcleugh Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6220,140836,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jenny Dam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6221,140734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abram Flashes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6222,140724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Downholland Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6223,140811,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maryport Harbour","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6224,140831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wadsley Fossil Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6225,140944,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heysham Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6226,140945,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Ing Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6227,140837,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jack Scout","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6228,140829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coldwell Farm Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6229,140835,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crosby Ravensworth Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6230,140832,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bingley South Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6231,137227,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clints Crags, Blindcrake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6232,137288,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pillar and Ennerdale Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6233,140853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spadeadam Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6234,140833,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Blencow Meadows and Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6235,140834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skelton Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6236,140852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Snib","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6237,137193,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Town End Meadows, Little Asby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6238,137208,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Annaside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6239,140867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Outley Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6240,140868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ludderburn and Candlestick Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6241,140869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Subberthwaite, Blawith and Torver Low Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6242,137491,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crimsworth Dean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6243,140870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Winster Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6244,137572,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Standedge Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6245,137637,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cockerham Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6246,138032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shaw Meadow & Sea Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6247,138033,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yeathouse Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6248,169921,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kershope Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6249,146252,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Line","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6250,141161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waverley Wood Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6251,169911,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Iford Manor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6252,170209,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Water Crag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6253,137354,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitstone Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6254,140283,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wealden Edge Hangers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6255,169968,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Low Wray Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6256,138407,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foulness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6257,137140,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodeaton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6258,140812,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linmer Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6259,141113,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bardney Limewoods, Lincolnshire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6260,141041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oxley Mead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6261,169818,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Harnham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6262,140452,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brading Marshes To St, Helen's Ledges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6263,136223,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parley Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6264,136341,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Povington and Grange Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6265,169910,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurn Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6266,138587,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stoborough & Creech Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6267,138615,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Studland & Godlingston Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6268,140291,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Luscombe Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6269,141139,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mermaid's Pool To Rowden Gut","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6270,140655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Lyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6271,141126,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elm Road Field, Thetford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6272,146244,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitfield Moor, Plenmeller and Asholme Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6273,141125,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Nidderdale Moors (Flamstone Pin - High Ruckles)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6274,183413,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fenn'S, Whixall, Bettisfield, Wem & Cadney Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6275,141030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballidon Dale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6276,136630,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barnsley Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6277,170071,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Richmond Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6278,137585,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stawardpeel Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6279,141119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colshaw Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6280,136317,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fernhill Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6281,136328,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Topley Pike and Deepdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6282,141088,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lord's Wood Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6283,137986,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bamburgh Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6284,141122,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dawson's Plantation Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6285,170093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Teme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6286,140951,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Wye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6287,141044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Ings, Amotherby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6288,169759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clints Quarry, Moota","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6289,170100,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Robin Hood's Bay: Maw Wyke To Beast Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6290,170162,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thornsgill Beck, Mosedale Beck and Wolf Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6291,169691,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Keld Catchment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6292,169854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"George Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6293,169919,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kennet Valley Alderwoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6294,135356,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balloch Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6295,170245,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yewdale Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6296,169688,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birk Fell Hawse Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6297,170222,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitberry Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6298,146270,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Bostraze and Leswidden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6299,137857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Exmoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6300,135726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballochmartin Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6301,170121,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Side Pike","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6302,141147,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Coquet and Coquet Valley Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6303,169971,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Fal & Helford Intertidal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6304,170079,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Eden and Tributaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6305,169942,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lee Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6306,170081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Frome","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6307,146273,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wootton Bassett Mud Spring","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6308,146250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Dale, Hartington","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6309,141155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorness Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6310,146256,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lackford Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6311,135342,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barnsmuir Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6312,135160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barns Ness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6313,135219,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barry Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6314,170102,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rook Clift","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6315,170114,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Seathwaite Copper Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6316,170066,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ray and Crinkle Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6317,169805,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Denby Grange Colliery Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6318,146272,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Misson Training Area","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6319,169846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foulshaw Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6320,169990,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Merrivale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6321,170073,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Barle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6322,146715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plymouth Sound Shores and Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6323,146716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yealm Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6324,169769,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coniston Mines and Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6325,169937,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langdale, Bowderdale and Carlin Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6326,169975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lulsgate Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6327,169889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hallsands-Beesands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6328,169794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cuckoo Rock To Turbot Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6329,146595,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lymington River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6330,170057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Priory Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6331,169979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lytham Coastal Changes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6332,146262,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duckpool To Furzey Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6333,170138,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Steeple Ashton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6334,169916,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kellaways - West Tytherton, River Avon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6335,169909,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurcott Lane Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6336,174655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chapel Point To Wolla Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6337,146283,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muggleswick,Stanhope & Edmundbyes Commons & Blanchland Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6338,146274,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Avon System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6339,136119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Eighe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6340,170010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nab Gill Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6341,169780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coryton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6342,141118,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bollihope, Pikestone, Eggleston and Woodland Fells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6343,170082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Itchen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6344,141150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sinks Valley, Kesgrave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6345,139887,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Iadain and Beinn na h-Uamha","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6346,169992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Middlebarrow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6347,170195,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Underlaid Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6348,169984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marble Quarry and Hale Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6349,141130,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurcott Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6350,169875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grimston Warren Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6351,169905,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holway Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6352,183419,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cook's Wood Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6353,170147,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Styrrup Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6354,146571,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cloatley Manor Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6355,137929,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Purbeck Ridge (East)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6356,170094,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Test","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6357,141144,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rame Head & Whitsand Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6358,146267,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Martin's Sedimentary Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6359,137670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Feckenham Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6360,135685,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Shiantaidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6361,169895,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heath Hill Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6362,146246,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whiston Eaves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6363,170171,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Totternhoe Stone Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6364,136016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Klibreck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6365,135308,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Lawers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6366,138476,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dryhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6367,169653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arkengarthdale, Gunnerside and Reeth Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6368,135432,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Lomond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6369,136021,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Loyal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6370,135630,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Lui","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6371,135019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben More - Scarisdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6372,141129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hay-A-Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6373,141120,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Conesby (Yorkshire East) Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6374,141142,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Killingholme Haven Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6375,141075,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Pennine Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6376,135241,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben More - Stob Binnein","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6377,136022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben More Assynt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6378,169675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barn Gill Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6379,146570,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tees and Hartlepool Foreshore and Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6380,170077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Derwent and Tributaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6381,170072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Axe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6382,170080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Ehen (Ennerdale Water To Keekle Confluence)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6383,137305,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holton and Sandford Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6384,136167,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Nevis","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6385,169758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cliff Force Cave","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6386,169644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alderton Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6387,169824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ecton Copper Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6388,169730,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cantley Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6389,170118,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheppey Cliffs and Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6390,170191,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tweed Catchment Rivers - England: Till Catchment","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6391,174719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tweed Catchment Rivers - England: Lower Tweed and Whiteadder","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6392,169645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allendale Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6393,169976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lune Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6394,141136,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lofts Farm Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6395,170155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Brinks, Northwold","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6396,135509,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Vorlich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6397,141151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southerham Works Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6398,141138,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Melverley Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6399,135320,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Vrackie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6400,136111,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Wyvis","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6401,141124,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drybank Meadow, Cherington","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6402,169801,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dale Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6403,169750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cholwell Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6404,169768,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Conegar Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6405,141086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brown's Close Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6406,141084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Showground Meadow, Callow Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6407,141082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ranters Bank Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6408,141080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teddon Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6409,141083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckeridge Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6410,141106,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nine Holes Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6411,146254,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newlyn Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6412,169943,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leet Hill, Kirby Cane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6413,140662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Camel Valley and Tributaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6414,141107,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurst Farm Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6415,169674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barf and Thornthwaite","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6416,169779,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corton Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6417,170112,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scawgill and Blaze Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6418,170113,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scaynes Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6419,170022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oakshaw Ford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6420,170139,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stile End","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6421,170190,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turners Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6422,169974,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ludworth Intake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6423,141108,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Royal Farm Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6424,169856,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gill Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6425,169936,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langdale Pikes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6426,170090,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Rawthey, Wandale Beck and Sally Beck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6427,170125,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skipsea Bail Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6428,169756,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clarke's Pool Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6429,170064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Range Farm Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6430,141109,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oakland Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6431,169970,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Dicker","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6432,141085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bliss Gate Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6433,170058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Purfleet Road, Aveley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6434,141111,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Romsley Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6435,141112,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berry Mound Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6436,141089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hillend Meadow & Orchard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6437,141090,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quarry Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6438,141091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Starling Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6439,141093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Merries Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6440,141095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avenue Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6441,141096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Napleton Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6442,141105,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Highclere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6443,141098,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rectory Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6444,141104,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trickses Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6445,170130,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southerham Machine Bottom Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6446,141099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dean Brook Valley Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6447,141101,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dormston Church Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6448,141100,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Naunton Court Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6449,141097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Great Blaythorn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6450,138661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gilbert's Pit (Charlton)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6451,146597,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Hoathly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6452,170050,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Polruan To Polperro","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6453,169652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Areley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6454,139891,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bigholms Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6455,169826,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ellery Sike","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6456,170135,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, Catherine's Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6457,169790,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crocadon Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6458,170131,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St James' Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6459,170137,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Standridge Farm Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6460,169806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devil's Chapel Scowles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6461,170148,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swinden Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6462,170024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Bow and Old Ham Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6463,169844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Force Crag Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6464,169649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Annaside and Gutterby Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6465,170136,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stairfoot Brickworks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6466,169712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bullhill Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6467,169795,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cumpston Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6468,170123,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Silverdale Golf Course","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6469,169914,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Marsh Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6470,169946,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linley Big Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6471,170218,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westbury Brook Ironstone Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6472,170229,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wigpool Ironstone Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6473,169711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckshraft Mine & Bradley Hill Railway Tunnel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6474,170159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Sturts","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6475,170089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Nent At Blagill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6476,169727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caerwood and Ashberry Goose House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6477,170217,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Nidderdale, Barden and Blubberhouses Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6478,170055,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Poxwell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6479,169678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beeston Brook Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6480,170228,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitfield Gill and Mill Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6481,169995,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minster Church","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6482,169901,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hexhamshire Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6483,169847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Freshfield Lane","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6484,170214,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Cornwall Bryophytes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6485,169986,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marked Ash Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6486,169702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bray Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6487,146718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pulborough Brooks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6488,169713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burley Dene Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6489,169973,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Saleway Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6490,169867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grange Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6491,170164,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thrang Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6492,170178,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trinity Broads","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6493,169745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chapel Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6494,170238,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woolbeding and Pound Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6495,169748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chatsworth Old Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6496,139964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shoulder o' Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6497,169899,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hesledon Moor East","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6498,169747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Charity Land","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6499,169681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bembridge School and Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6500,555545521,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilbroney River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6501,170153,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Allers and Lilburn Valley Junipers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6502,169894,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haydon Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6503,169907,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horseshoe Bend, Shirehampton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6504,169865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Goblin Combe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6505,140539,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moors River System","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6506,169954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lobbington Hall Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6507,169940,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lea Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6508,169657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashton Court","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6509,170083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Kent and Tributaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6510,169944,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leiston - Aldeburgh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6511,170140,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stowe Pool and Walk Mill Clay Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6512,170056,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prince's Rough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6513,169680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bell Sykes Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6514,139031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Ardwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6515,170154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Bottoms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6516,169996,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minsterley Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6517,169839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Field Head Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6518,169793,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crow's Nest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6519,170174,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trelow Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6520,169823,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eastern Peak District Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6521,170062,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Railway Meadow, Langley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6522,170213,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Welford Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6523,170021,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oak Tree Farm Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6524,193739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thwaite House Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6525,169849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Froghall Meadow and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6526,170004,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mungrisdale Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6527,170108,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Saddington Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6528,174663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dabble Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6529,170037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Paston Great Barn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6530,169814,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunster Park and Heathlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6531,170017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nicodemus Heights","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6532,136402,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Durham Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6533,169969,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Coombe and Ferne Brook Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6534,170014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Ferry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6535,169659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Attingham Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6536,170124,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sinah Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6537,169808,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dixton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6538,170059,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quarrington Hill Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6539,170183,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tudor Farm Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6540,174703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porlock Ridge & Saltmarsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6541,169647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Amwell Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6542,169967,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lovell Hill Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6543,170132,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Leonards and St Ives Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6544,169993,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Meadows, Billericay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6545,170200,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Greensand Hangers : Wyck To Wheatley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6546,170199,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Greensand Hangers : Empshott To Hawkley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6547,170163,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thorpe Park No 1 Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6548,137512,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knight & Bessborough Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6549,170239,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wraysbury No 1 Gravel Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6550,169917,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kempton Park Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6551,170240,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wraysbury Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6552,170184,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tuetoes Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6553,169939,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laughton Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6554,169729,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calf Hill and Cragg Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6555,169679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belah Woods and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6556,169771,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombe Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6557,170087,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Mease","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6558,169829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ewefell Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6559,169888,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haggs Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6560,170226,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitesike Mine and Flinty Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6561,169947,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Wittenham","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6562,169695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackstone Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6563,169701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braithwaite Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6564,170101,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rochdale Canal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6565,170115,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sefton Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6566,170095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Till","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6567,169736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carricknath Point To Porthbean Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6568,169926,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirk Deighton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6569,169655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arnecliff and Park Hole Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6570,169807,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dew's Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6571,169978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lyppard Grange Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6572,169900,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hestercombe House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6573,170028,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Otterburn Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6574,169991,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mersey Narrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6575,170110,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandlings Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6576,169703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breckland Farmland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6577,169704,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breckland Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6578,183417,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birklands West and Ollerton Corner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6579,183426,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roecliffe Manor Lawns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6580,174680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Lye Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6581,183420,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dibden Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6582,174661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranmore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6583,174715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sutton & Lound Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6584,174649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beck Dale Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6585,174721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Withcall and South Willingham Tunnels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6586,174651,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caen Valley Bats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6587,183441,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Harries Ground, Rodbourne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6588,183443,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mottisfont Bats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6589,183442,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holehaven Creek","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6590,183444,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slade Brook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6591,193735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holnest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6592,193736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Humber Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6593,193740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitton Bridge Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6594,193733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Briarcroft Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6595,328960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hurdlow Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6596,328961,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pakefield To Easton Bavents","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6597,328962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spring Meadows, Alderman's Head & Cow Croft Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6598,328963,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burledge Sidelands and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6599,328964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Highgate Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6600,341128,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dungeness, Romney Marsh and Rye Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6601,328956,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Lodge Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6602,193732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Besthorpe Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6603,193734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caydale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6604,328957,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Nene Valley Gravel Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6605,555561732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Hill Deer Park and Windy Pits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6606,328958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Canvey Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6607,328959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Peaslows Farm Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6608,341129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Bury Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6609,555545628,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cloatley Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6610,555545630,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ely Pits and Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6611,555545694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Talland Barton Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6612,555545714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardley Trackways","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6613,555545717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eskamhorn Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6614,555545721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bewick and Beanley Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6615,555545731,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Annesley Woodhouse Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6616,555545734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Scroggs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6617,555545735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chasewater and The Southern Staffordshire Coalfield Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6618,555545748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bradbourne Mill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6619,555545749,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Lee Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6620,555545750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mount Pleasant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6621,555545751,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wall Lands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6622,555561733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crich Chase","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6623,555545752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Matley Moor Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6624,555545753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hallam Barn Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6625,555545754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Hollins","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6626,555545755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lugg and Hampton Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6627,555561734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackmore Vale Commons and Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6628,555561735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eppleton Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6629,555561736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bushy Park and Home Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6630,555561737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"High Marks Barn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6631,555561738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benty Grange","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6632,555561739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calender Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6633,555561740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ives Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6634,555561741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chattenden Woods and Lodge Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6635,555561742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barrow Hill and Tansey Green","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6636,555561743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holly Rock Fields","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6637,555561748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Hadley Brickpit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6638,395284,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Graig Penllyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6639,555561744,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waterfall Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6640,555561745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clifton Ings and Rawcliffe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6641,139968,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abercriban Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6642,555561746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rampisham Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6643,193717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aberdunant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6644,139786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Skerries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6645,139780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Wern, Rhosgoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6646,555560506,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tir Mawr a Dderi-hir, Llwydcoed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6647,555561747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birches","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6648,139579,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tiroedd a Glannau rhwng Cricieth ac Afon Glaslyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6649,139783,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Traeth Lafan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6650,139784,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Traeth Llanon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6651,555595674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen Park Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6652,555595675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bolton Fell and Walton Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6653,555595676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Pennine Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6654,555595673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mid Cornwall Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6655,183431,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aber Afon Conwy/ Conwy Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6656,169632,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aber Geirch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6657,169633,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aber Mawddach/Mawddach Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6658,139966,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aber Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6659,174643,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aber Taf/Taf Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6660,139694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aberarth-carreg Wylan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6661,138926,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aberithon and Bedw Turbaries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6662,139785,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Traeth Lligwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6663,169634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aberbargoed Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6664,555545413,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6665,169637,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Dyfi ger Mallwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6666,555560492,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Banwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6667,183445,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Cleddau Dwyreiniol/Eastern Cleddau River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6668,183446,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Cleddau Gorllewinol/Western Cleddau River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6669,138923,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afon Conwy Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6670,138932,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Cynhelyg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6671,139476,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Traeth Pensarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6672,139792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tre Wilmot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6673,138927,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Penycoed Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6674,138928,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Pontfaen - Coed Gelli-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6675,138929,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Wen a Traeth Tanybwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6676,138930,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt y Gaer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6677,138938,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt y wern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6678,138940,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bach-y-graig Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6679,138933,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt-y-gest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6680,138934,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alyn Valley Woods and Alyn Gorge Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6681,174644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Amnodd-Bwll Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6682,139969,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arfordir Abereiddi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6683,139340,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arfordir Gogleddol Penmon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6684,139552,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arfordir Marros-Pentywyn/Marros Pendine Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6685,139327,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arfordir Niwgwl - Aber Bach/Newgale - Little Haven Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6686,139630,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arfordir Pen-Bre/Pembrey Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6687,193718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arfordir Penrhyn Angle/Angle Peninsula Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6688,138944,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arthog Hall Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6689,138939,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bach Howey Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6690,138941,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baltic and Tyle'r-bont Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6691,138950,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banc-y-Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6692,138949,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beacon Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6693,169671,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banc Hirllwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6694,138942,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banc Llety-spence","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6695,138943,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banc y Mwldan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6696,138948,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barry Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6697,138951,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beddmanarch-Cymyran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6698,174647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barbadoes Hill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6699,138945,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barland Common Stream Section, Bishopston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6700,138946,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barmouth Hillside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6701,138947,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baron Hill Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6702,138952,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benallt Mine and Nant-y-Gadwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6703,138953,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benarth Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6704,138954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berry Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6705,138959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6706,138956,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birdshill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6707,193741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishop's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6708,138957,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishops Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6709,138965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Mountains","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6710,138960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackcliff-Wyndcliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6711,138961,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackmill Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6712,138962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackpill, Swansea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6713,138963,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaen Cilieni","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6714,193719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaen Nedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6715,138966,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaenrhondda Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6716,138967,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaentrothy Meadows (Caeau Blaentroddi)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6717,138968,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blorenge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6718,139260,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Borth-Clarach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6719,138969,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boxbush Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6720,138970,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bracelet Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6721,138977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brechfa Pool","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6722,138972,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brecon Beacons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6723,138973,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breidden Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6724,555545411,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breigam Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6725,395270,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brithdir a Chwm Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6726,139048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Penglaneinon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6727,138975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broad Oak & Thornhill Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6728,138976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broadwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6729,138983,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brockwell's Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6730,169724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Rhyd-y-gwiail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6731,169725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Talwrn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6732,138978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brofiscin Quarry, Groes Faen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6733,138979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bron Aberanerch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6734,138980,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bron-y-Buckley Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6735,138981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brook Cottage, Llangybi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6736,138982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broomhill Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6737,169708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn-Bach, Cefn Cribwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6738,138984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn Alyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6739,395272,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn Coch a Capel Hermon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6740,138985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn Bras","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6741,395271,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn Coch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6742,139288,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Mill Section, Mardy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6743,138995,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn Euryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6744,138990,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn Glas Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6745,169707,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn y Gwin Isaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6746,169715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cadnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6747,139012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cadnant Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6748,169709,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn-bwch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6749,139006,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Aber-Glanhirin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6750,138991,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryn-Llin-Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6751,138992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryncarnau Grasslands, Llwydcoed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6752,138993,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bryngwyn Hall Stables and Coach House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6753,169716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Blaen-dyffryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6754,138994,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brynmawr Sections","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6755,183438,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brynna a Wern Tarw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6756,138996,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckland Coach House & Ice House","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6757,174650,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckley Claypits and Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6758,138997,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burfa Boglands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6759,138999,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burry Inlet and Loughor Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6760,139000,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bushy Close","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6761,139001,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bwlch Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6762,139002,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bwrdd Arthur","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6763,139003,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caban Lakeside Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6764,139011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Coed-gleision","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6765,139019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Comin Coch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6766,139009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Bryn-tywarch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6767,139010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Cilmaenllwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6768,139014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Cwm-rhocas (Cwm Roches Meadow)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6769,139015,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Cwm-tywyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6770,139016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Ffos-yr-odyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6771,139017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Gwernllertai","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6772,555545405,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Bryn Ifor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6773,139018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Gwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6774,139026,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Gwynfryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6775,139020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Henfron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6776,169719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Cefn Cribwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6777,139102,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clemenstone Meadows, Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6778,139022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Llwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6779,139024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Penmaes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6780,139023,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Maes-y-ffynnon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6781,139025,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Pwll-y-bo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6782,139038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Cwm-Ffrwd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6783,139103,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cliff Wood - Golden Stairs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6784,139027,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae Ty-hen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6785,139028,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae'r Felin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6786,139029,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cae'r Meirch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6787,139030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Afon Gwili","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6788,395273,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Blaen-Bielly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6789,139046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Cwmcoynant (Caeau Cwncaenant)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6790,169717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Blaen-bydernyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6791,139032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Blaen-yr-Orfa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6792,169720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Fferm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6793,139007,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Blaenau-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6794,139040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Ffos Fach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6795,139039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Bronydd-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6796,139042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Llety-cybi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6797,139008,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Bryn-du","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6798,169718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Bwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6799,139034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Capel Hendre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6800,555545406,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Caradog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6801,139035,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Clochfaen-Isaf (Clochfaen-isaf Fields)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6802,139036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Cnwch a Ty'n-y-graig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6803,139037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Coed Mawr (Coedmawr Fields)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6804,193720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Crug Bychan, Ty Gwyn a Llwyn Ysgaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6805,139041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Glyn (Glyn Fields)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6806,395274,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Heol y Llidiart-coch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6807,169721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Hirnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6808,139043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Llwyn Gwrgan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6809,139044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Lotwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6810,139045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Nant Garenig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6811,139052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Nant y Llechau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6812,169722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Nantsais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6813,139047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Pant-y-Bryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6814,169723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Pen-y-coed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6815,139049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Tan y Bwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6816,139068,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castell Prysor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6817,139033,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Tir-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6818,139050,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Ton-y-fildre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6819,139051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Troed-Rhiw-Drain (Troed-Rhiw-Drain Meadows)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6820,139059,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Ty'n-llwyni","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6821,555545407,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castell Y Waun a'i Barcdir / Chirk Castle and Parkland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6822,139104,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clogau Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6823,169726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Ty-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6824,139054,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Tyddyn Dicwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6825,139055,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Wern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6826,174654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ceunant Aberderfel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6827,139086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ceunant Cynfal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6828,139087,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ceunant Dulyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6829,139056,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caer Llan Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6830,139057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caerau Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6831,169751,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwarel Cwm Hirnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6832,139058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caerwys Tufa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6833,139060,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cappas Lwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6834,139061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carew Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6835,139063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carmel Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6836,139064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn Gafallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6837,169732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn Ingli","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6838,139065,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carreg Cennen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6839,139066,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carreg y Llam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6840,139067,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castell Coch Woodlands and Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6841,139070,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castlemartin Corse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6842,139075,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castlemartin Range","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6843,139071,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caswell Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6844,169752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwareli Gelli-grin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6845,139072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cathedine Common Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6846,139073,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cefn Blaenau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6847,139074,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cefn Bryn Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6848,139077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cefn Gwrhyd, Rhydyfro","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6849,139078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cefn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6850,395275,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cefn Onn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6851,169743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cefn Rofft","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6852,139080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cefn y Brithdir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6853,139081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cefndeuddwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6854,139083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cemlyn Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6855,139084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cernydd Carmel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6856,395276,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwarel Gwenithfaen Madoc","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6857,139085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cerrig-gwalch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6858,139091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwarel Pant Glas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6859,139092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwarel Ponterwyd (Ponterwyd Quarry)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6860,139791,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Treffgarne Gorge & Tors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6861,169744,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ceunant Twymyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6862,139089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwarel Bryn Banc (Bryn Bank Quarry)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6863,555545404,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwarel Cambrian / Cambrian Quarry, Gwernmynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6864,139315,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwareli a glaswelltir Degannwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6865,139099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chwythlyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6866,169753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ciliau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6867,139097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cilwrgi Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6868,169754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cilybebyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6869,139110,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Aberdulas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6870,139105,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleddon Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6871,139117,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Aberedw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6872,139112,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Afon Crewi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6873,139113,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Afon Pumryd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6874,139100,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleddon Shoots Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6875,139101,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clegir Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6876,139114,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Allt Craig Arth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6877,139111,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clogwynygarreg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6878,139106,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cloy Brook Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6879,169761,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cnap Twt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6880,139107,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cobbler's Plain Meadows, Devauden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6881,139108,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed A Gweunydd Gilfach-gwyddil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6882,139120,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Cae-Awr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6883,139109,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Aber Artro","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6884,139115,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Allt Lan-las","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6885,139122,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Cochion Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6886,139116,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Blaen-y-cwm (Blaen-y-cwm Wood)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6887,139118,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Bryn-Person","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6888,139119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Byrwydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6889,139123,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Copi'r Graig,","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6890,139131,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Cors y Gedol","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6891,139126,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Cwm Cletwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6892,139127,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Cwm Du, Cilmaengwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6893,169763,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Cwm Einion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6894,139138,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Dyrysiog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6895,139132,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Elernion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6896,139152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Nant-y-merddyn-uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6897,139133,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Ffordd-Las","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6898,139135,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Gorswen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6899,139136,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Graig Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6900,139137,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Gwempa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6901,139153,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Pentre (Pentre Wood)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6902,139154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Talon Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6903,139144,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Hafod-fraith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6904,139139,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Llandyfan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6905,139140,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Llechwedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6906,139142,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Lletywalter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6907,139143,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Llys-Aled","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6908,139147,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Merchlyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6909,139148,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Mynachlog-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6910,139149,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Nant Llolwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6911,139150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Nant Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6912,139157,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Nant Menascin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6913,139155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Trefraith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6914,139156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Tremadog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6915,139164,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Ty-canol (Tycanol Wood)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6916,139158,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Ty-mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6917,139159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Tyddyn-du","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6918,139161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Bedw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6919,139162,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Bwl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6920,139166,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Crychydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6921,139167,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Gell and Morfa Dulas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6922,139168,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Gofer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6923,139163,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Cefn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6924,139171,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Cerrig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6925,139169,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Gopa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6926,139165,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Ciliau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6927,139170,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Lawnt a Coed Oli","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6928,139189,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedymwstwr Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6929,139177,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed y Rhygen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6930,139160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed Ynys-Faen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6931,139172,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed yr Allt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6932,139174,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed-mawr Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6933,139173,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed yr Allt-goch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6934,139436,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Nanmor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6935,183449,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Nantgwynant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6936,139175,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed-y-Darren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6937,139176,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coed-y-Person","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6938,139185,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd a Cheunant Rheidol (Rheidol Woods & Gorge)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6939,139191,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd a Chorsydd Aber Teifi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6940,139178,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Aber","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6941,139179,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Abergwynant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6942,139555,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd ac Ogofau Elwy a Meirchion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6943,139180,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Afon Menai","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6944,139971,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Beddgelert a Cheunant Aberglaslyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6945,169764,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Capel Dyddgen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6946,139094,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd De Dyffryn Maentwrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6947,183448,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Derw Elwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6948,183439,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Dyffryn Alwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6949,139183,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Dyffryn Ffesiniog (Gogleddol)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6950,139782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Dyffryn Wnion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6951,139186,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Glannau a Cwm Coel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6952,139182,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Llawr-y-glyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6953,139184,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd Tregyb","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6954,395277,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedydd y Barri/Barry Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6955,169765,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cog Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6956,139197,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colwyn Brook Marshes (North & South)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6957,139192,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Comin Esgairmaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6958,395278,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Comin Helygain a Glaswelltiroedd Treffynnon/Halkyn Common and Holywell Greassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6959,139195,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Comins Tre-rhos (Tre-rhos Common)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6960,169770,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Connah's Quay Ponds and Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6961,139196,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coombe Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6962,139204,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corndon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6963,139200,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Bodeilio","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6964,139201,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Bodwrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6965,139326,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dylife Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6966,174657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Bryn-y-gaer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6967,139295,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm-Ton, Glascoed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6968,139202,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Bwlch-y-baedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6969,139203,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Cae'r Neuadd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6970,169809,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dolorgan Barn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6971,139332,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Earlswood Road Cutting and Ferryboat Inn Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6972,139210,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Caranod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6973,139206,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Caron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6974,169774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Cefn Llwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6975,139264,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Crymlyn/Crymlyn Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6976,139209,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Farchwel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6977,139215,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Farlais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6978,139211,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Geirch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6979,139328,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Aberthaw Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6980,139329,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eglwys Nunydd Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6981,139212,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Geuallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6982,139213,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Goch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6983,139221,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Gorsgoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6984,139214,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Goch, Llanllwch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6985,139333,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Erwood Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6986,139216,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Graianog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6987,139217,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Gyfelog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6988,139253,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigypistyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6989,139249,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cregennen a Pared y Cefn Hir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6990,139218,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Hirdre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6991,139219,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Lawnt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6992,139250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creigiau Aberarth-Morfa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6993,139251,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creigiau Abergwaun (Fishguard Cliffs)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6994,139252,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creigiau Cwm-Ceriw a Ffos-las (Morfa Bychan)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6995,139220,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Llanllugan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6996,139222,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Llyn Coethlyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6997,169775,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Llanllyfni","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6998,139228,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Llyferin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +6999,139069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eryri","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7000,139334,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Esgyrn Bottom","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7001,139223,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Llyn Farch a Llyn Fanod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7002,169776,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Nantcwnlle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7003,139224,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Penally (Penally Marsh)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7004,139225,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Penbwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7005,139227,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Ty-gwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7006,139226,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Ty-Llwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7007,139262,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crug Farm Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7008,139317,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dolyhir Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7009,139229,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors y Farl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7010,139234,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors Y Llyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7011,169798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwar yr Ystrad a Cwar Blaen-dyffryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7012,555560495,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwarrau Ton Mawr a Ffynnon Taf - Ton Mawr and Taffs Wells Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7013,139230,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors y Sarnau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7014,139231,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors y Sychnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7015,139232,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsydd Llanbrynmair (Llanbrynmair Moors)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7016,174658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cors y Wlad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7017,139233,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsydd Llangloffan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7018,169778,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsydd Nug a Merddwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7019,174659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Courthouse Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7020,139318,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dolyhir Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7021,139319,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dowrog Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7022,169777,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsydd a Rwyth Cilyblaidd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7023,169783,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crabtree Green Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7024,139095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cil-y-groeslwyd Woods, Eyarth Woods & Rocks & Craig Adwy-wyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7025,139240,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Wen/Cors Castell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7026,139247,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig y Benglog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7027,139243,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig y Rhiwarth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7028,169784,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig yr Aderyn (Bird's rock)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7029,139254,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creigiau Llansteffan (Llanstephan Cliffs)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7030,139256,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creigiau Pen y graig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7031,139471,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creigiau Rhiwledyn/Little Orme's Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7032,139259,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crest Mawr Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7033,139380,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creuddyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7034,139261,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croes Robert Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7035,139263,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crychan Forest Tracks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7036,139265,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crymlyn Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7037,139272,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cutiau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7038,139277,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Cydfin, Leckwith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7039,139267,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwar Glas Quarry and Sawdde Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7040,139268,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Bach, Sychpant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7041,139270,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Cadlan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7042,139273,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Clydach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7043,169799,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Clydach, Cydweli","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7044,139275,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Craig-ddu Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7045,139276,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Crymlyn Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7046,139278,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Cyffog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7047,139284,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Cynfal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7048,395280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Dewi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7049,139279,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Doethie - Mynydd Mallaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7050,139280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Du Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7051,139285,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Llanwenarth Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7052,139286,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Llyfnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7053,139287,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Merddog Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7054,139296,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Risca Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7055,139291,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Taf Fechan Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7056,139292,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm Twrch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7057,139293,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm yr Abbey Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7058,139302,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwm-gwanon Dingle and Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7059,169800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwmsaise","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7060,139297,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cwmsymlog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7061,139459,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cynffig/Kenfig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7062,139298,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cynwyd Forest Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7063,139556,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dale and South Marloes Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7064,139300,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dan y Graig Quarry, Risca","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7065,139301,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dan-Lan-Y-Castell Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7066,139309,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Daren Fach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7067,139303,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Daren y Dimbath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7068,139305,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ddol Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7069,139384,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"De Porth Sain Ffraid/St Bride's Bay South","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7070,169804,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dee Estuary/Aber Afon Dyfrdwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7071,139310,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Derwen-fach Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7072,139312,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dinas Dinlle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7073,139313,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dinefwr Estate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7074,139314,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dinham Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7075,395281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dol-cyn-afon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7076,139321,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dolau Hafod a Winllan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7077,139316,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dolaucothi Gold Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7078,139320,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drostre Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7079,174665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duhonw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7080,139323,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dwrhyd Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7081,139324,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dyffryn Gwaun","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7082,169815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dyffrynnoedd Nedd a Mellte a Moel Penderyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7083,139325,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dyfi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7084,139330,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eidda Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7085,395282,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eithinog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7086,139331,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elenydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7087,139338,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ely Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7088,169830,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ewenny and Pant Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7089,555560496,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fachwen Isaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7090,139335,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairwood, Pengwern and Welshmoor Commons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7091,139336,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairy Glen Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7092,139343,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Far Hall Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7093,139341,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Felin Fach Meadows, Cwmgwili","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7094,169835,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Felin Llwyngwair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7095,169836,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fenn's Whixall, Bettisfield, Wem and Cadney Mosses (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7096,139349,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ffair Fach Railway Cutting and River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7097,174666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fferam Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7098,139345,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ffordd Coed Dol-Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7099,395283,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fforest Goch Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7100,139289,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fforestganol a Cwm Nofydd Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7101,139348,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ffridd Mathrafal Track Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7102,139353,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Figyn Blaen-Brefi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7103,139354,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flat Holm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7104,169838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ffriddoedd Garndolbenmaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7105,139351,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ffynnon Beuno and Cae Gwyn Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7106,139352,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fiddlers Elbow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7107,169843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foel Ispri","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7108,139360,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gallt-y-Bwlch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7109,139134,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ganllwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7110,92992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foxwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7111,139366,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gas Works Lane Section (Haverfordwest)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7112,139374,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gatewen Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7113,139368,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gilwern Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7114,139369,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glais Moraine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7115,139370,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glamorgan Canal / Long Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7116,139371,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glan Pibwr Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7117,139372,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glan-traeth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7118,174669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glanfedw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7119,169857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glanllynnau a Glannau Pen-ychain i Gricieth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7120,139379,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Aberdaron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7121,193722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glannau Penmon-Biwmares","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7122,169859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glanrhocca","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7123,139394,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Graig Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7124,555560497,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glascoed, Meifod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7125,139376,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glascwm and Gladestry Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7126,139378,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glaslyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7127,555560498,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glaswelltir Trelogan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7128,169869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Granllyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7129,139383,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gorsllwyn, Onllwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7130,139385,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gower Coast: Rhossili to Porteynon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7131,555560499,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"GreatTor (Three Cliffs Bay)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7132,139386,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Graig Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7133,139237,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Graig Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7134,139387,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Graig Fawr, Pontardulais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7135,139393,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gregynog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7136,169876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gro Ty'n yr Helyg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7137,169877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gro Ystwyth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7138,139389,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Graig Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7139,169866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Graig, Llanarmon-yn-Ial","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7140,139390,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grassholm/Ynys Gwales","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7141,139400,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gronant Dunes and Talacre Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7142,139395,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gungrog Flash","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7143,139397,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Bwlch Hafod-y-gog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7144,139398,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Cilgwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7145,139403,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Llan (Llan Pastures)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7146,174671,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Efail Wig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7147,139406,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Efail-Llwydiarth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7148,395285,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Gledyr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7149,139404,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Llwyn-gwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7150,139405,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Pen-lan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7151,139412,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Troed-rhiw-seiri a Llyn Mynydd-gorddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7152,139407,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Wern-y-wig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7153,139408,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwaun Ystrad Caron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7154,139409,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwenfro and Rhos y Gad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7155,139410,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwent Levels - Magor and Undy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7156,139411,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwent Levels - Nash and Goldcliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7157,139418,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwent Levels - Redwick and Llandevenny","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7158,139414,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwent Levels - St, Brides","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7159,139415,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwent Levels - Whitson","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7160,139416,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwern-y-brain Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7161,139417,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwern-yfed-fach Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7162,139424,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwernaffel Dingle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7163,139433,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd a Choed Pen-Ty (Pen-Ty Pastures & Wood)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7164,169881,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Blaencleddau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7165,169880,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwernydd Penbre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7166,328954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Camnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7167,169882,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Ceunant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7168,139419,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Coch-y-dwst","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7169,139422,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Dwfnant (Dwfnant Pasture)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7170,139420,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Crychell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7171,169883,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Dolwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7172,169884,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Dyffryn Nedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7173,139423,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Dyfnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7174,139430,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Esgairdraenllwyn (Esgairdraenllwyn Pastures)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7175,169885,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Ger Fronhaul","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7176,169886,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Nant y Dernol","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7177,139425,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Glan-y-glasnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7178,139426,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Hendre Eynon (Hendre Eynon Pastures)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7179,139427,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Llechwedd-newydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7180,139428,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Pen-y-Coed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7181,139429,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Pendinas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7182,139435,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Penstrowed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7183,139431,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Ty'n-y-Llidiart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7184,169887,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gyfartha","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7185,139437,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hafod Wennol Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7186,139432,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gweunydd Ty-Brith (Ty-Brith Meadows)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7187,395286,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwlyptiroedd Casnewydd / Newport Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7188,139434,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwrhyd Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7189,139441,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwydir Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7190,138955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwynfynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7191,139439,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Halfway Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7192,139440,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hanmer Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7193,139444,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hen Berth Fron-Badarn a Phersondy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7194,139445,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hen-allt Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7195,139452,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollybush Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7196,139446,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Henborth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7197,139453,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hook Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7198,169908,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horton, Eastern and Western Slade","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7199,169897,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hendre Bach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7200,139460,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Howey Brook Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7201,139455,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Illtyd Pools","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7202,139545,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Nex Meadows, Devauden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7203,139454,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hendre, Llangedwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7204,139448,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Henllys Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7205,169977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lydstep Head to Tenby Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7206,139540,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maelienydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7207,139450,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hermon Copper Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7208,174672,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Herward Smithy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7209,139451,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hillington Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7210,139487,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanover Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7211,139456,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ilston Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7212,169913,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Marsh Farm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7213,139457,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ithon Valley Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7214,395287,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Larks Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7215,169950,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llantrisant Common and Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7216,169951,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanymynech and Llynclys Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7217,139458,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jeffreyston Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7218,139466,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingswood Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7219,139461,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lake Wood, Llandrindod Wells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7220,139463,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langland Bay (Rotherslade)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7221,555545412,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leighton Bat Roosts","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7222,139464,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langstone-Llanmartin Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7223,139481,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanfallteg Track Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7224,139467,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lisvane Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7225,139469,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Hoyle and Hoyle's Mouth Caves & Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7226,139478,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Livox Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7227,169948,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llafar River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7228,139473,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llan Bwch-llyn Lake","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7229,139475,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanbadrig - Dinas Gynfor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7230,139474,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanbradach Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7231,169949,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanddulas Limestone and Gwrych Castle Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7232,139477,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llandegfedd Resevoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7233,139484,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llandegla Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7234,139479,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llandeilo, Rhulen and Llanbedr Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7235,139480,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanelwedd Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7236,139482,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanfawr Quarries, Llandrindod Wells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7237,139483,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llanfihangel Moraine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7238,139489,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llangammarch Wells Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7239,174678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llangofan Church","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7240,139495,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llay Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7241,169952,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llofft-y-bardd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7242,139493,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7243,139492,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llety - Wen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7244,139511,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Llech Owain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7245,139494,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llwyn y Celyn Wetland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7246,139501,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llwyn y Coed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7247,139516,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Padarn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7248,139496,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llwyn-Cus","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7249,174679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llwyn-iarth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7250,169953,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llymwynt Brook Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7251,139497,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Alaw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7252,139498,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Bedydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7253,555560500,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maen Gwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7254,139499,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Bodgylched","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7255,139500,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Bychan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7256,139502,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Creiniog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7257,139573,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moorlands Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7258,139504,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Eiddwen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7259,139505,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Garreg-lwyd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7260,139506,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Glasfryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7261,139290,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morfa a Chraig Cwm Ivy/Cwm Ivy Marsh and Tor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7262,174684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morfa Abererch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7263,139507,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Goddionduon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7264,139514,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Gwernan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7265,139533,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn y Fawnog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7266,170002,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morfa Dinlle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7267,139576,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morfa Dyffryn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7268,139577,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morfa Harlech","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7269,139509,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Hafodol and Cors Clegyrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7270,139532,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llynoedd Tal-y-llechau, (Talley Lakes)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7271,139578,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morfa Uchaf, Dyffryn Conwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7272,139512,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Llygeirian","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7273,139513,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Llywenan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7274,139521,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Maelog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7275,139515,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7276,139517,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Padrig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7277,139535,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Garth Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7278,139518,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Pencarreg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7279,139520,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Peris","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7280,139527,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Syfaddan (Llangorse Lake)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7281,139522,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Tegid","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7282,139523,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Traffwll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7283,139524,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Ty'n y Llyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7284,139525,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llyn Ty'n y Mynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7285,139528,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llynnau Bodgynydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7286,139530,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llynnau y Fali : Valley Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7287,139235,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llynnoedd Cosmeston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7288,139531,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llynoedd Ieuan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7289,139539,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Llystyn Isaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7290,139534,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Caerfaelog Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7291,139536,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Ground, Penrhos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7292,139537,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Hael Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7293,139538,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower House Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7294,169980,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maes Hiraddug","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7295,174682,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maes Meillion a Gefail-y-cwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7296,139585,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mosshill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7297,169981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maes y Grug","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7298,139541,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maes-yr-Uchaf Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7299,139542,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maesyprior","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7300,139543,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Magor Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7301,139544,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Malltraeth Marsh/Cors Ddyga","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7302,139551,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mandinam a Coed Deri","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7303,139546,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marcheini Uplands, Gilfach Farm & Gamallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7304,139548,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Margam Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7305,139547,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marford Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7306,139554,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meidrim Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7307,139580,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mountain Cottage Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7308,169985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mariandyrys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7309,139304,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Milford Haven Waterway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7310,139550,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marloes Mere","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7311,139553,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mawnog Gwaunynog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7312,139562,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Memorial Park Meadows Pontllanfraith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7313,139558,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Merthyr Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7314,139559,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Migneint-Arenig-Dduallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7315,139561,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minchin Hole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7316,139569,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minwear Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7317,139566,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moel Tryfan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7318,139567,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moel y Golfa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7319,139568,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moelwyn Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7320,174683,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moelypenmaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7321,139574,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moity and Garth Dingles and Fron Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7322,139570,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monknash Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7323,139581,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mountain Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7324,555545410,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muriau Gwyddelod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7325,174687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Brynrarf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7326,139583,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Castell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7327,174686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwynfgloddfa Ceulan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7328,170006,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Cwmbrwyno","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7329,170007,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Cwmystwyth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7330,395288,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Darren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7331,139590,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Nant-y-cagl (Eaglebrook Mine)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7332,395289,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Erglodd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7333,395290,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Frongoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7334,174688,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Llechweddhelyg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7335,139584,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Llety Ifan Hen (Vaughan Mine)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7336,174689,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Mynydd-Bach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7337,174690,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Nantiago","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7338,555560501,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Nant y Mwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7339,139596,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Llangyndeyrn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7340,555560503,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Langynidr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7341,170008,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Marian","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7342,395291,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Pennant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7343,555560502,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddfa Esgair Hir ac Esgair Fraith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7344,139967,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddiau a Chreigiau Gwydyr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7345,193725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddiau Llanfrothen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7346,183450,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mwyngloddia Wnion a Eglwys Sant Marc","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7347,139586,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mylett Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7348,139587,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Du (Black Mountain)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7349,174691,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Eppynt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7350,139588,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Hiraethog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7351,139589,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Llangatwg (Mynydd Llangattock)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7352,139594,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Ty-Isaf, Rhondda","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7353,139595,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Ystyfflau-Carn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7354,139601,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant Cledlyn Pingos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7355,170011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant Clydach Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7356,139597,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant Gelliwion Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7357,555545415,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant y Graen a Nant Ganol","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7358,139598,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant Glais Caves","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7359,139599,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant Llech","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7360,139600,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant Whitton Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7361,174692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant y Crimp","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7362,174694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nicholaston Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7363,170012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant-y-rhos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7364,139608,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nant-y-Belan and Prynela Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7365,174693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nantanog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7366,139602,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nash Lighthouse Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7367,139603,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nedern Brook Wetlands, Caldicot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7368,139604,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nelson Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7369,139614,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ogof Ffynnon Ddu-Pant Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7370,139615,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Castle Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7371,170013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Neuadd and Tylelo Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7372,139620,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pandy Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7373,139606,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New Castle Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7374,139607,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"New House Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7375,139609,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newborough Warren - Ynys Llanddwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7376,139610,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newmead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7377,139611,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newport Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7378,170016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newton Court Stable Block","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7379,139618,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ogof Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7380,139613,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ogof Ffynnon Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7381,139616,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Cilgwyn and Cae Heslop","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7382,170025,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Pulford Brook Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7383,174697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orielton Stable Block and Sellars","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7384,139617,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oxwich Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7385,139631,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parc Linden, Lixwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7386,139625,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oystermouth Old Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7387,139619,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pandora Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7388,174699,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pant Cae Haidd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7389,555560504,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parc Nannau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7390,139670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pont y Fenni Quarry and Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7391,139621,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pant y Panel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7392,139623,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pant-y-Sais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7393,139626,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parc Pont-faen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7394,139672,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porth Ceiriad, Porth Neigwl ac Ynysoedd Sant Tudwal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7395,139673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porth Diana","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7396,139624,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parc Bodlondeb and Gwenallt-parc, Lixwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7397,139677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porth Dinllaen i Borth Pistyll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7398,139627,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parc Seymour Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7399,139629,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park House Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7400,174704,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Porth Towyn i Borth Wen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7401,135064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Millenderdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7402,170039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen Benar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7403,139392,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen y Gogarth/Great Orme's Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7404,139635,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen-cerrig Stream Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7405,139633,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen-Common, Llanbedr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7406,139634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen-Dugwm Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7407,139641,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penarth Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7408,139636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen-y-Cefn Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7409,395292,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen-y-graig-goch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7410,139644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pen-yr-hen-Allt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7411,139638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penard Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7412,139639,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penarth Brook Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7413,139640,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penarth Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7414,139642,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pencarreg-gopa a Moel Hyrddod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7415,139647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penllergaer Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7416,139648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penllwyn Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7417,139681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pumlumon (Plynlimon)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7418,139649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penllwyn-yr-Hendy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7419,139657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penmaen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7420,139653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penpergwm Pond","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7421,139654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penplas Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7422,139655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penrhos Lligwy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7423,170042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penmaenuchaf Hall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7424,139652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penmoelallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7425,139660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pentrosfa Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7426,139661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pentwyn Farm Grasslands, Penallt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7427,170045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penycastell, Cefn Cribwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7428,139662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penygarnedd Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7429,139669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penylan Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7430,139664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pierce, Alcove and Piercefield Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7431,170047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pine Lodge Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7432,170048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pistyll Rhaeadr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7433,139687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pysgodlyn Mawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7434,174701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plantation Farm and the Gethley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7435,139665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plas Iolyn Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7436,139666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plas Machen Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7437,174702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plas Maenan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7438,139667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plas-y-Gors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7439,555560505,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plumstone Mountain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7440,139668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pont Bancog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7441,139676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portheiddy Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7442,139678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prestatyn Hillside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7443,139679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Priory Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7444,139680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Puffin Island - Ynys Seiriol","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7445,174705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pwll Lagoon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7446,139688,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pwll Du Head and Bishopston Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7447,139684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pwll-y-wrach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7448,139686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pyllau Machynys (Machynys Ponds)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7449,139692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rectory Meadow - Rogiet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7450,193742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhagnentydd Gwy Uchaf / Upper Wye Triburaties","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7451,139690,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Radnor Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7452,139691,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ramsey/Ynys Ddewi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7453,139695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhiw-for-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7454,139696,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Blaen Carrog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7455,139697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Blaenclettwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7456,139700,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Bryn-wichell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7457,139708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Bwlch-y-rhandir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7458,139702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Cilcennin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7459,135020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Perchhall Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7460,139703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Cross Inn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7461,139705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Cwmsaeson","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7462,135347,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Petershill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7463,139704,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Cruglas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7464,139722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos yr Hafod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7465,139706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Dolau-Bran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7466,139707,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Dwfnant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7467,139714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Esgairwen-fawr a Rhosgoch-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7468,139725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhoscolyn Reedbed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7469,139709,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Fullbrook","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7470,139710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Gargoed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7471,139731,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosydd Llanwrthwl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7472,395295,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosydd Nant Eithrim","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7473,170068,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Garth-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7474,139711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Gellie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7475,139712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Glwydwern","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7476,139713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Glyn-yr-helyg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7477,139720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Goch (Rhos Goch Common)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7478,139715,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Hen-Glyn-Isaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7479,139716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Llawr Cwrt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7480,170182,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tryweryn River Sections","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7481,170069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Pant-tyle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7482,139821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Twyni Chwitffordd, Morfa Landim“r a Bae Brychdwn/Whiteford Burrows, Landimore Marsh and Broughton Ba","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7483,139717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Penrhiw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7484,170070,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosydd Nant-yr-henfron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7485,139718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Pil-bach a Pennar-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7486,193743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosydd Yerbeston / Yerbeston Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7487,139465,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Twyni Lacharn-Pentywyn/Laugharne and Pendine Burrows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7488,395298,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ty Bach Ystlumod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7489,139719,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Pwllygawnen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7490,139765,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stormy Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7491,170181,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ty Croes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7492,139726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Rhyd-y-ceir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7493,174706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhychell Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7494,170192,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ty Du Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7495,139721,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Talglas a Chors yr Hafod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7496,395293,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos Tonyrefail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7497,139777,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teilia Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7498,170152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tenby Cliffs and St. Catherine's Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7499,138958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Offshore Inlets of Pembrokeshire/Ynysoedd Glannau Penfro","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7500,139723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhos-Rydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7501,139732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosgyll Fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7502,139747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salbri","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7503,139745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Severn Estuary (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7504,139727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosneigr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7505,139728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosneigr Reefs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7506,139729,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhossili Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7507,139730,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosydd Castell-du & Plas-y-bettws","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7508,555545408,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosydd Llanddona","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7509,395294,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosydd Llanpumsaint","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7510,139733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhymney River Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7511,139734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ritec Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7512,174708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Ithon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7513,170086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Lugg (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7514,170092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Teme","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7515,170096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Usk (Lower Usk)/ Afon Wysg (Wysg Isaf)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7516,170097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Usk (Upper Usk)/Afon Wysg (Wysg Uchaf)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7517,170098,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Wye (Lower Wye)/Afon Gwy (Gwy Isaf)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7518,174709,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Wye (Tributaries)/Afon Gwy (Isafonydd)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7519,170099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Wye (Upper Wye)/Afon Gwy (Gwy Uchaf)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7520,139738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Robeston Wathen Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7521,174710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rose Cottage, Llethrid","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7522,139739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roundton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7523,139740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ruabon/Llantysilio Mountains and Minera","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7524,139741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rumney Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7525,555545414,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ruperra Castle & Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7526,395296,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sgitiau Glas Ynys Mon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7527,139746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shell Brook Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7528,139752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slebech Stable Yard Loft, Cellars & Tunnels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7529,139753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shoalshook Railway Cutting and Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7530,170120,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shotton Lagoons and Reedbeds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7531,139748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Siambre Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7532,139749,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skokholm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7533,139750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skomer Island & Middleholm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7534,174712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sluxton Marsh, Whitemoor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7535,139758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Smarts Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7536,139754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sontley Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7537,139755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southerndown Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7538,139756,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spy Wood and Aldress Dingle (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7539,139759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St. David's Airfield Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7540,139760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St. David's Peninsula Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7541,139762,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St. Margaret's Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7542,139761,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stackpole","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7543,139764,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stanner Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7544,139766,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strawberry Cottage Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7545,139772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strumble Head - Llechdafad Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7546,170146,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stryt Las a'r Hafod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7547,139768,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sugar Loaf Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7548,139769,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sully Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7549,139771,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sychnant Pass","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7550,193726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tairgwaith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7551,139773,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Talhenbont","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7552,139775,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tan y Grisiau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7553,139787,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tre'r Gof","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7554,139788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trecoed/Castle Crab","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7555,139802,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ty'n y Ffordd Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7556,139789,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trefeiddian Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7557,139790,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Treffgarne Bridge Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7558,139796,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tretio Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7559,170177,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trewern Brook (Wales)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7560,395300,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyllau Mwn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7561,139798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyn Llan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7562,170180,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trum y Ddysgl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7563,139794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trwyn Dwlban","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7564,395297,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trychiad Ffordd Coed Llyn-y-Garnedd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7565,193727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trychiad Ffordd Craig Fach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7566,193728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trychiad Ffordd Moel Hafod-Owen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7567,139795,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Twenty-five Acre Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7568,395299,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ty'r Hen Forwyn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7569,555560507,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyddyn Gyrfer","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7570,170197,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Chapel Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7571,139797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyddyn y Waen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7572,139800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Nantserth Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7573,139801,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Wye Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7574,170193,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyddyn-y-barcut","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7575,170194,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyncoed Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7576,139799,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tywyn Aberffraw","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7577,139809,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Vicarage Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7578,139803,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Vicarage Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7579,170204,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waen Rydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7580,170205,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wallis Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7581,139804,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun Cimla","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7582,139805,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun Cwm Calch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7583,139806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun Eurad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7584,139807,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun Fawr, Puncheston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7585,139808,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun Fawr, Ty Ddewi","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7586,139823,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wye Valley Lesser Horseshoe Bat","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7587,170241,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wyndrush Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7588,174722,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Y Foryd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7589,555560508,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun Goch - Penrhiw Cradog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7590,139816,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun Ton-y-spyddaden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7591,555595732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coedwig Ffosil Brymbo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7592,139810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun-Ddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7593,555595733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fferm Walters","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7594,139811,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun-fawr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7595,170212,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waun-fawr, Cefn Cribwr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7596,139814,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wern Ddu Claypits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7597,139815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wern Road Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7598,139822,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wernbongam Stream Section and Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7599,139818,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Llangynog Slate Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7600,139820,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Grit Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7601,139828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitehill Down","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7602,183451,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wig Bach a'r Glannau I Borth Alwm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7603,170236,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodland Park and Pontypren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7604,139824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Y Glyn-diffwys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7605,139825,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Y Gors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7606,139826,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Y Werthyr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7607,139834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ydw Valley and Fron Road Geological Exposures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7608,139829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ynys Enlli: Bardsey Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7609,139830,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ynys Feurig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7610,139831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ynys Uchaf","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7611,139833,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ynysoedd y Gwylanod: Gwylan Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7612,174723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yr Arddu","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7613,139840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yr Eifl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7614,555560509,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ysbyty Bron y Garth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7615,555560510,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ysgeifiog Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7616,139698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhosydd Bryn y Maen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7617,555560534,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caeau Nant-y-groes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7618,139004,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cadair Idris","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7619,139413,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gwent Levels - Rumney and Peterstone","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7620,139311,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dinas Bran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7621,555595734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cerrig y gweunydd","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7622,555545502,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Woodburn Reservoir","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7623,555595735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mynydd Llangatwg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7624,555595736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meeting House Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7625,135759,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bin Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7626,555545503,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Woodburn Reservoir","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7627,139962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birk Knowes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7628,139963,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birkenhead Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7629,555545518,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clarehill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7630,174668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fymore Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7631,135714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blairbeich Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7632,135987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blar nam Faoileag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7633,135706,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blood Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7634,135635,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bonawe to Cadderlie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7635,135647,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Borgue Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7636,136154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bornish and Ormiclate Machairs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7637,135659,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bothwell Castle Grounds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7638,139838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boturich Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7639,136047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Achanarras Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7640,136128,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Achmore Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7641,135991,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Achnasheen Terraces","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7642,135482,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Adderstonlee Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7643,136074,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Affric - Cannich Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7644,135284,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardblair and Myreside Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7645,135100,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardchyline Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7646,135628,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Afton Lodge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7647,135215,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Agassiz Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7648,135680,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ailsa Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7649,136102,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aird Thuirinis - Port na Long","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7650,136003,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aird Torrisdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7651,135562,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardwall Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7652,136076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Armadale Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7653,135205,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arnprior Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7654,135671,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arran Northern Mountains","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7655,135249,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Arthur's Seat Volcano","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7656,135739,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Artilligan and Abhainn Srathain Burns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7657,139928,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Attadale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7658,135235,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Airhouse Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7659,135142,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"A' Mhoine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7660,139961,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abbey Burn Foot to Balcary Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7661,135495,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Akermoor Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7662,135410,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aldclune and Invervack Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7663,135166,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abbey Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7664,169631,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abbey St Bathans Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7665,135918,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abernethy Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7666,135981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Abhainn Alligin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7667,135929,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill of Warehouse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7668,136028,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ach an Todhair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7669,136193,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holborn Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7670,139952,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Achanalt Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7671,135586,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Airds of Kells Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7672,135475,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holl Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7673,135818,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Holm of Papa Westray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7674,135073,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aldons Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7675,135414,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allan Water, Hillhead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7676,135634,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hough Bay and Balevullin Machair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7677,135365,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alemoor West Loch and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7678,136121,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alladale Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7679,136007,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt na Feithe Sheilich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7680,135957,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt nan Caorach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7681,135007,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt a' Choire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7682,136162,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt nan Carnan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7683,136120,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Bholagair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7684,135524,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Broighleachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7685,135225,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Almondbank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7686,135945,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alness River Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7687,135298,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inchcoonans Claypit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7688,135028,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Coire Chailein","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7689,135565,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auchalton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7690,136182,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Cracaig Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7691,136059,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Geodh' a' Ghamhna","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7692,136068,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Grillan Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7693,139965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auchencairn and Orchardton Bays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7694,135022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Molach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7695,135751,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auchensail Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7696,137017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Allt Mor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7697,136010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Altnaharra","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7698,135894,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Alvie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7699,136088,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Amat Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7700,135928,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"An Cleireach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7701,135948,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"An Teallach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7702,135594,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ard Bheinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7703,136187,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ard Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7704,135670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ard Trilleachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7705,135564,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardalanish Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7706,136209,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardersier Glacial Deposits","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7707,135151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardgour Pinewoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7708,136101,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardlair - Letterewe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7709,135593,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardmeanach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7710,135749,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardmore, Kildalton and Callumkill Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7711,135932,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardnamurchan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7712,139945,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardpatrick and Dunmore Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7713,135539,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardrossan to Saltcoats Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7714,135668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardtun Leaf Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7715,139854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardura - Auchnacraig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7716,136077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardvar Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7717,135655,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashgrove Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7718,135496,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ashkirk Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7719,135070,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auchencorth Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7720,139942,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auchrochar Wetlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7721,139937,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auchterhouse Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7722,135434,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aucheneck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7723,136027,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aultbea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7724,135150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auskerry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7725,135426,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avenel Hill and Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7726,135944,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avernish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7727,169661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Avon Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7728,135734,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Auchenreoch Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7729,134965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bailliewhirr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7730,135370,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballagan Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7731,139895,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballantrae Shingle Beach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7732,135228,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballanucater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7733,136067,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballinreach Coastal Gorges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7734,135345,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballo and Harperleas Reservoirs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7735,135299,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balerno Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7736,136133,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baleshare and Kirkibost","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7737,135319,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balglass Corries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7738,135255,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballyoukan Juniper Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7739,134972,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balmedie Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7740,135328,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balmerino - Wormit Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7741,135531,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balnabraid Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7742,135322,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Loch (Cleish)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7743,139944,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balnagrantach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7744,135490,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balnaguard Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7745,135301,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balquhidderock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7746,136130,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balranald Bog and Loch nam Feithean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7747,135337,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balshando Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7748,135398,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blacklaw Hill Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7749,135822,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Balta","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7750,135340,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bangley Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7751,135335,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bankhead Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7752,136107,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banniskirk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7753,136123,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baosbheinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7754,135645,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7755,135544,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barlosh Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7756,135527,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barmufflock Dam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7757,135185,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bass Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7758,135085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bay of Skaill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7759,136140,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beauly Firth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7760,135968,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn a' Chapuill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7761,135341,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn a' Ghlo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7762,135300,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tynaspirit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7763,135437,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn a' Chuallaich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7764,135092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn an Lochain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7765,135956,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Bhan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7766,136177,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Dearg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7767,135941,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beinn Freiceadain and Ben Dorrery","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7768,135123,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bell's Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7769,135343,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Loch (Abdie)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7770,135711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bellochantuy and Tangy Gorges","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7771,135103,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bellscamphie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7772,135358,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bemersyde Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7773,135797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Alder and Aonach Beag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7774,135505,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben A'an and Brenachoile Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7775,135303,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Chonzie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7776,136084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Griams","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7777,135254,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Heasgarnich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7778,136190,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Hope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7779,136051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ben Hutig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7780,135578,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benbeoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7781,135622,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benlister Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7782,135087,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bennane Head Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7783,135725,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bernera Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7784,136156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berriedale Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7785,136160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berriedale Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7786,135165,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bilston Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7787,135162,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Birks of Aberfeldy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7788,135214,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishop Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7789,135611,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bishop Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7790,135974,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Park, Edderton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7791,135276,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Wood of Rannoch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7792,135456,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Water Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7793,139960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7794,135724,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blantyre Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7795,139920,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blar na Caillich Buidhe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7796,135293,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blawhorn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7797,135354,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blind Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7798,135729,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blood Moss and Slot Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7799,135071,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bo'mains Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7800,135828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bochel Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7801,139913,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bog Wood and Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7802,139848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boghole, Muckle Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7803,135744,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bogside Flats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7804,139842,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bogton Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7805,135992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boirearaig to Carn Dearg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7806,135326,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bolfracks Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7807,135548,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boylestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7808,136168,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braelangwell Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7809,169700,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braehead Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7810,169762,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cockinhead Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7811,135443,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Branxholme Easter Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7812,135287,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buckstruther Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7813,139922,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Branxholme Wester Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7814,135896,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breckon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7815,135350,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brerachan Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7816,135522,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bridgend Flats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7817,135825,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Buinach and Glenlatterach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7818,135863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bullers of Buchan Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7819,135826,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burn of Ballintomb","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7820,135178,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Chriche","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7821,135336,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brig o' Turk Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7822,136008,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Broubster Leans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7823,135532,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brother and Little Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7824,135986,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Thogabhaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7825,169766,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coir' an Eoin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7826,135501,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coire Bhachdaidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7827,136195,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coire na Beinne Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7828,135817,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burn of Benholm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7829,136031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cailleach Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7830,135137,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burn of Lunklet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7831,135814,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burn of Valayre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7832,135380,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burnmouth Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7833,135049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Byne Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7834,135582,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairnbaber","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7835,135661,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cadder Wilderness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7836,139867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caenlochan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7837,135851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairnbulg to St Combs Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7838,135789,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairngorms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7839,139862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coladoir Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7840,135378,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coldingham Common, Long Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7841,135376,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairnleith Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7842,135669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairnsmore of Fleet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7843,135424,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cairnwell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7844,134986,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Leith and Myreton Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7845,135640,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caldarvan Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7846,139908,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calder Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7847,135390,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calderwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7848,135848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calf of Eday","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7849,135560,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calgary Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7850,136025,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Calrossie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7851,135925,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cam Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7852,135978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Camas Mor, Muck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7853,135251,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cambusurich Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7854,139846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cander Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7855,136097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Canna and Sanday","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7856,135029,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cape Wrath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7857,135349,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cameron Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7858,139931,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Camilla Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7859,135450,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carbeth Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7860,136201,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn a' Mhadaidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7861,134995,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn Gorm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7862,135245,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn Gorm and Meall Garbh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7863,135958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn nan Tri-tighearnan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7864,136139,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carnach Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7865,135330,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cardney Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7866,135433,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carriston Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7867,139892,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7868,135272,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carie and Cragganester Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7869,135279,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carlingnose","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7870,135946,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn a' Bhealaich Mhoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7871,135537,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carnwath Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7872,135224,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cassindonald Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7873,135407,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carriber Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7874,135615,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7875,136072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle of Old Wick to Craig Hammel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7876,135743,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Semple and Barr Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7877,135039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrick Ponds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7878,135854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Catfirth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7879,136161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrol Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7880,134985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Catshawhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7881,135916,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cawdor Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7882,135435,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Tronach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7883,139849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carron Dams","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7884,135013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carron Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7885,135625,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Central Lochs, Bute","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7886,135877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Central Sanday","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7887,135674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Chanlockfoot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7888,135689,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7889,135606,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carron Water and Hapland Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7890,135316,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrot Hill Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7891,135334,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carsebreck and Rhynd Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7892,135429,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigdilly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7893,135900,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigellachie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7894,135658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carsegowan Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7895,135687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carstairs Kames","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7896,135708,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clach Tholl","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7897,135610,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clais Dhearg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7898,135967,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Claish Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7899,135684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carstramon Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7900,135627,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cart and Kittoch Valleys","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7901,135555,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Claonaig Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7902,135517,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cartland Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7903,135603,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clauchlands Point - Corrygills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7904,135571,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleghorn Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7905,135964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ceann Loch Eishort","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7906,135250,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clarilaw Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7907,139926,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clashach - Covesea","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7908,139901,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clatteringshaws Dam Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7909,135709,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7910,135589,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clochodrick Stone","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7911,135888,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clothister Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7912,135017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cnoc a' Chapuill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7913,135014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cnoc an Alaskie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7914,139956,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coalburn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7915,135119,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cobbinshaw Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7916,135500,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Coire Chuilc","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7917,136058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Dalavil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7918,136083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Dhubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7919,135518,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Leitire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7920,136030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Mhialairidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7921,136163,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Mhor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7922,139918,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coille Phuiteachain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7923,135257,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coldingham Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7924,135101,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coleburn Pasture","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7925,135760,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Collieston to Whinnyfold Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7926,135597,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craighouse Ravine, Jura","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7927,135233,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Collymoon Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7928,135093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craighoyle Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7929,135431,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crook Burn, Dyeshaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7930,135183,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Colmsliehill Junipers","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7931,135470,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Comrie Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7932,135191,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Conic Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7933,135167,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Connachan Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7934,135846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Copinsay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7935,135779,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corby, Lily and Bishops Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7936,139958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Correen Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7937,135716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corrie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7938,135609,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corrie Foreshore and Limestone Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7939,135943,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corrieshalloch Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7940,135599,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corsewall Point to Milleur Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7941,135954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cosag Sallow Carr","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7942,135710,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coshogle Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7943,135428,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Royston Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7944,135971,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigroy Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7945,135613,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crossapol and Gunna","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7946,135679,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cotland Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7947,136116,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coulin Pinewoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7948,135769,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7949,135905,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coyles of Muick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7950,135203,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cragbank and Wolfehopelee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7951,139910,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Hammel to Sgaps Geo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7952,135815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Leek","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7953,135168,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig More","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7954,135693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craighead Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7955,135859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag Dhubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7956,135011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craig Rossie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7957,135838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag Meagaidh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7958,135152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigallian Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7959,135804,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag nan Gamhainn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7960,139871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigendarroch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7961,137012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigengar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7962,135115,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craighall Den","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7963,135403,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craighall Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7964,135639,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craighead Hill Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7965,135583,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cree Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7966,139882,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crichton Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7967,139907,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigmad Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7968,135374,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigmead Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7969,135078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craignure Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7970,135242,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigs of Lundie and Ardgarth Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7971,135770,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigs of Succoth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7972,135312,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croftintygan Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7973,136039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cromarty Firth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7974,169787,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranley Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7975,139879,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crannach Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7976,135901,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crathie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7977,135037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crawton Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7978,136145,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag Chorcurach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7979,136066,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag na Croiche","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7980,136166,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag nan Clag","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7981,134982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crossbog Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7982,135026,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cruach Choireadail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7983,135794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cruaday Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7984,134999,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cruggleton Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7985,135712,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalavich Oakwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7986,135772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crussa Field and the Heogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7987,135980,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cuillins","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7988,135220,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cuilvona and Craigmore Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7989,135798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Culbin Sands, Culbin Forest and Findhorn Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7990,135351,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cullaloe Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7991,135889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cullen to Stake Ness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7992,135856,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Culswick Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7993,139923,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cutties Hillock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7994,135367,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalbeath Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7995,134960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dales Voe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7996,134970,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalsetter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7997,135782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gull Nest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7998,135157,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalkeith Oakwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +7999,139916,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill of Barra","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8000,135660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalmellington Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8001,135310,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dalveich Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8002,139934,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dam Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8003,134984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Damhead Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8004,135246,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dilty Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8005,135274,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Danskine Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8006,135666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dargavel Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8007,135921,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dipple Brae","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8008,135489,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Darnrig Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8009,135480,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Den of Airlie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8010,139903,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Den of Alyth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8011,135913,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Den of Finella","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8012,134980,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dollar Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8013,135355,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Den of Fowlis","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8014,139880,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dornoch Firth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8015,136179,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fionn Loch Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8016,135268,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Den of Ogil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8017,139919,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Den of Pitlurg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8018,139955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dryleys Brick Pit","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8019,135264,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duddingston Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8020,135063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dullatur Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8021,135608,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dumbarton Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8022,135173,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flanders Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8023,136034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flannan Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8024,135239,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Den of Riechip","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8025,135089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Den Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8026,135088,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Denny Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8027,139950,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Derskelpin Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8028,135174,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devon Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8029,135479,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Din Moss and Hoselaw Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8030,135872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dinnet Oakwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8031,135696,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dippin Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8032,136018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dirlot Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8033,136001,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doire Damh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8034,135155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dun Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8035,135394,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fungarth Juniper Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8036,135732,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doire Darach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8037,139954,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doire Dhonn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8038,139905,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doire Donn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8039,135126,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dolphinton - West Linton Fens and Grassland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8040,135809,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Doomy and Whitemaw Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8041,135469,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Double Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8042,135568,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dowalton Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8043,135935,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drimnin to Killundine Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8044,135408,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drone Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8045,135897,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Funzie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8046,136078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Druim Iosal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8047,135145,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Druim na Coibe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8048,139948,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Druim nam Bad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8049,139924,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dun's Dish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8050,139909,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Druimindarroch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8051,135506,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumadoon - Tormore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8052,135453,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drummond Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8053,135216,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunalastair Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8054,135423,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gagie Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8055,135776,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gamrie and Pennan Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8056,135232,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gannochy Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8057,135985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drummondreach Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8058,139933,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumochter Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8059,135486,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumore Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8060,139870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garabal Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8061,134973,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumore Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8062,135579,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dryfe Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8063,135662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dumbarton Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8064,139959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8065,139851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dumbrock Loch Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8066,135503,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dun Ban","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8067,135172,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dupplin Lakes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8068,135032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Durness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8069,135682,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunaskin Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8070,139860,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunbeath Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8071,136136,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunbeath to Sgaps Geo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8072,136000,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunbeath Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8073,135090,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eas na Broige","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8074,135461,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunbog Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8075,136071,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Duncansby Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8076,135581,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dundonald Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8077,135552,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dundonald Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8078,139885,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dundonnell Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8079,169817,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Halladale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8080,135118,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Kirkton Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8081,135306,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dundreich Plateau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8082,135161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunhog Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8083,136178,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunnet Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8084,136184,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunnet Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8085,136150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunrobin Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8086,135675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunrod Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8087,135422,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Earlshall Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8088,135144,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Mires and Lumbister","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8089,135940,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Easter Fearn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8090,135908,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Easter Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8091,136036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Easter Ness Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8092,135188,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Faldonside Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8093,135904,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Easter Rova Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8094,135855,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eastern Cairngorms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8095,134958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Easthaven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8096,135289,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eden Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8097,135577,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Falls of Clyde","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8098,135377,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edinample Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8099,135417,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edinchip Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8100,139899,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eigg - An Sgurr and Gleann Charadail","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8101,134969,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eigg - Cleadale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8102,134997,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eigg - Laig to Kildonnan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8103,136080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eilean Chlamail - Camas nan Ceann","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8104,135636,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eilean na Muice Duibhe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8105,136159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eilean nan Ron","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8106,135952,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elgol Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8107,135601,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ellary Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8108,137015,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ellergower Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8109,135180,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Elliot Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8110,137011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Endrick Mouth and Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8111,136173,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eoligarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8112,136185,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eriboll","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8113,134968,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eshaness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8114,135808,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eslie Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8115,135774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eynhallow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8116,139873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eyre Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8117,135922,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fair Isle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8118,135499,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairy Knowe and Doon Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8119,135273,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Falls of Dochart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8120,135195,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fala Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8121,135965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fannich Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8122,135194,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fearnan Cowpark","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8123,135592,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Feoch Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8124,135444,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ferry Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8125,135572,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Feur Lochain - Moine nam Faoileann","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8126,135632,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fiddler Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8127,134994,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Findhorn Terraces","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8128,135899,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Findon Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8129,135771,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Findrassie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8130,135314,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Finlarig Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8131,135363,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fintulich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8132,135400,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fleecefaulds Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8133,135405,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flisk Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8134,135745,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nith Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8135,135702,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Flow of Dergoals","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8136,135058,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fodderletter","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8137,136147,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foinaven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8138,135372,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forest Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8139,135471,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forest of Alyth Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8140,135595,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Formakin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8141,136199,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forsinard Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8142,135208,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forth Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8143,135638,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fossil Grove","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8144,135911,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foula","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8145,135046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foula Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8146,139841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North East Coll Lochs and Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8147,135309,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foulden Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8148,135056,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fountainhead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8149,135852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Foveran Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8150,135923,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fowlsheugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8151,135890,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fugla Ness - North Roe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8152,135644,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North End of Bute","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8153,136099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garbh Allt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8154,134992,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Esk and West Water Palaeochannels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8155,135176,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Esk Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8156,135843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Fetlar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8157,135149,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garbh Choire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8158,135209,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gattonside Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8159,135389,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garleton Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8160,135043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garpel Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8161,135604,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garrion Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8162,135810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garron Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8163,139835,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garry Falls","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8164,135950,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gartally Limestone Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8165,135170,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gartfarran Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8166,135439,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gartmorn Dam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8167,135266,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gartwhinzean Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8168,135728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garvellachs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8169,135515,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Geal and Dubh Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8170,136164,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Geary Ravine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8171,135766,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gight Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8172,135829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Sandwick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8173,135858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northern Corries, Cairngorms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8174,136063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northton Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8175,135569,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Geilston Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8176,135767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Geordie Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8177,135700,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gills Burn and Mare Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8178,135516,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Girvan to Ballantrae Coast Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8179,135707,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glac na Criche","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8180,135467,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gladhouse Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8181,135477,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glas Tulaichean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8182,135618,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gleann Dubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8183,135989,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Affric","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8184,135962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Barisdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8185,135673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Loin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8186,135621,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8187,135519,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Nant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8188,135218,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Queich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8189,135762,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Ralloch to Baravalla Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8190,136138,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Strathfarrar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8191,135792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Tanar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8192,136050,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Tarff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8193,135359,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Tilt Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8194,135805,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Northwall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8195,139943,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Norwick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8196,136117,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Valtos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8197,135247,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenartney Juniper Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8198,136043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Coe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8199,135545,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glendaruel Wood and Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8200,135140,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glendoe Lochans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8201,135404,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gleneagles Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8202,135445,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenkinnon Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8203,135280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gordon Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8204,135849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Green Hill of Strathdon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8205,135418,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenlaw Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8206,139843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nut Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8207,136186,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ob Lusa to Ardnish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8208,135596,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenock Mains","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8209,135003,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grennan Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8210,135960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gress Saltings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8211,135626,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gribun Shore and Crags","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8212,135211,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grieston Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8213,135120,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grudie Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8214,135758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gruinart Flats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8215,137016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Cambus Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8216,139878,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gutcher","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8217,135260,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Habbies Howe - Logan Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8218,135502,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hadfast Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8219,135018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ham Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8220,135654,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hamilton High Parks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8221,135741,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hamilton Low Parks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8222,136092,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Handa Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8223,136200,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hangman's Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8224,135553,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hannaston Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8225,135360,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hare Myre, Monk Myre and Stormont Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8226,135369,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hareheugh Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8227,139936,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hascosay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8228,135733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Haw Craig - Glenarbuck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8229,135681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heart Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8230,139912,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hells Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8231,139932,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Helmsdale Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8232,135240,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Henderland Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8233,139904,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hermand Birchwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8234,135895,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hermaness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8235,135169,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Herman Law and Muchra Cleuchs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8236,135045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill of Johnston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8237,135269,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hewan Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8238,139915,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill of Colvadale and Sobul","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8239,135924,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill of Longhaven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8240,135788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hill of Towanreef","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8241,135699,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Howford Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8242,139868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockormal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8243,135127,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Howierig Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8244,136155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Howmore Estuary, Lochs Roag and Fada","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8245,135813,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hoy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8246,135207,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hummelknowes Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8247,135695,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inchlonaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8248,136124,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kyle of Sutherland Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8249,135193,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inchmickery","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8250,135223,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Innishewan Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8251,136089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inverbrora","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8252,135616,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inchmoan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8253,136065,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inverfarigaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8254,135951,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inverhope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8255,135972,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Invernaver","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8256,135421,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langholm - Newcastleton Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8257,135513,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inchmurrin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8258,135883,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inchrory","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8259,135523,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inchtavannach and Inchconnachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8260,135198,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Tay Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8261,136035,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inninmore Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8262,135281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keltneyburn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8263,135672,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inverneil Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8264,136004,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inverpolly","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8265,139935,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Invertiel Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8266,135189,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Isle of May","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8267,135688,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kenmure Holms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8268,135588,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kennacraig and Esragan Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8269,135692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laughenghie and Airie Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8270,135030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Isle of Whithorn Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8271,139896,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jedwater Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8272,135528,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Jock's Gill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8273,139884,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kennox Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8274,135982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"John o' Groats","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8275,135657,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kames Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8276,139852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keelylang Hill and Swartaback Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8277,135830,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keen of Hamar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8278,136134,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kentra Bay and Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8279,135130,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laxo Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8280,135164,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keith Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8281,135834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kellas Oakwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8282,135304,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kershope Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8283,135275,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kielderhead Moors: Carter Fell to Peel Fell","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8284,135753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilberry Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8285,139839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilconquhar Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8286,136046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kildrummie Kames","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8287,135283,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kings Myre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8288,135701,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilhern Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8289,139865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Killiegowan Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8290,135492,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Killorn Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8291,135159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kincardine Castle Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8292,136052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingshouse","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8293,135231,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kingside Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8294,135325,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kippilaw Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8295,134961,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinlochlaggan Boulder Beds","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8296,135494,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinnoull Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8297,136057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinrive - Strathrory","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8298,135507,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinuachdrach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8299,169925,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinveachy Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8300,135468,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kippenrait Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8301,135542,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkconnell Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8302,135720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkcowan Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8303,135061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8304,135333,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leny Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8305,135487,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkhope Linns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8306,136009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockinnon Heath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8307,135110,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knocknairs Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8308,135222,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirkton Burn Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8309,135995,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockan Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8310,139844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockdaw Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8311,135551,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockdolian Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8312,136045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockfin Heights","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8313,135590,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockgardner","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8314,169931,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockie Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8315,134993,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lime Craig Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8316,135497,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lacesston Muir and Glen Burn Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8317,169933,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ladder Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8318,135633,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lady Bell's Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8319,135076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lag Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8320,135318,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Plora Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8321,135624,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laggan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8322,135718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laggan Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8323,135580,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laggan Peninsula and Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8324,135563,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Polhote and Polneul Burns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8325,135472,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pollochro Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8326,135775,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pool of Virkie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8327,135651,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Port Logan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8328,135059,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lagganmullan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8329,135511,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lagganulva Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8330,135546,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lagrae Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8331,135373,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Laird's Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8332,135201,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lake of Menteith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8333,135831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lamb Hoga","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8334,139881,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lambsdale Leans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8335,135212,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lammer Law","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8336,135190,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lammermuir Deans","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8337,135491,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lindean Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8338,135348,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lindores Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8339,135740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lang Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8340,135493,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langtonlees Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8341,135994,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Langwell Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8342,135344,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linhouse Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8343,135187,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linlithgow Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8344,134983,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linn Mill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8345,135420,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linn of Tummel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8346,135585,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linne Mhuirich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8347,135042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Largs Coast Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8348,135106,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lea Larks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8349,135752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leadhills - Wanlockhead","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8350,135466,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lintmill Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8351,139886,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leavad","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8352,136118,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ledmore Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8353,139911,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lennel, Charley's Brae","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8354,135605,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lismore Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8355,135138,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lethenhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8356,136174,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leven Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8357,136017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch a' Sgurr Pegmatite","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8358,139874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch a' Mhuilinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8359,136026,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Levishie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8360,135135,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Battan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8361,137013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Liatrie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8362,135465,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lielowan Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8363,135282,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Ballo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8364,134990,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Glenshee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8365,136023,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Loch Roag Valley Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8366,136085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Littlemill Fluvioglacial Landforms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8367,135079,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Littleton and Balhamie Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8368,135933,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Achnacloich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8369,135990,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch an Duin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8370,135102,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Arkaig Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8371,136006,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ashaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8372,135146,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ashie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8373,135021,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ba Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8374,136158,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Beannach Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8375,136002,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Bee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8376,135012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Bee Machair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8377,135959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Bran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8378,135998,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Dubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8379,135698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Eck","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8380,139925,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Brandy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8381,135108,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Caluim Flows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8382,136093,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Cleat","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8383,135375,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Con","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8384,135411,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Freuchie Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8385,136056,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Glencoul","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8386,136152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Dalbeg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8387,135549,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Doon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8388,136105,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Druidibeg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8389,135977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Hallan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8390,134964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Etteridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8391,139894,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quoich Spillway","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8392,136044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Eye","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8393,135526,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Fada","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8394,136122,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Fleet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8395,136170,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Heilen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8396,135533,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Humphrey Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8397,136033,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Laxavat Ard and Loch Laxavat Iorach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8398,135440,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Leven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8399,139917,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quoigs Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8400,135690,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Libo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8401,139855,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Lieurary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8402,135001,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quoys of Garth","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8403,136202,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raasay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8404,135148,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Lubnaig Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8405,135327,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Mahaick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8406,135095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Maree","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8407,135072,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Meadie Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8408,139877,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Macanrie Fens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8409,135953,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Meodal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8410,139902,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Moidart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8411,135862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Oire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8412,136192,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ruthven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8413,135458,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Moraig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8414,136203,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Morar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8415,136108,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch na Cartach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8416,136135,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mointeach Scadabhaigh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8417,136131,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch nan Eilean Valley Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8418,136049,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Obisary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8419,135836,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Aboyne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8420,135970,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Durran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8421,134974,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Banks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8422,135785,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Clousta","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8423,135861,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Lumgair","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8424,135907,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Girlsta","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8425,135906,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Isbister and the Loons","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8426,135416,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Kinnordy","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8427,135311,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Lintrathen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8428,135803,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8429,135903,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Skene","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8430,135765,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Strathbeg","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8431,136180,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Wester","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8432,136094,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Winless","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8433,135713,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shovelboard","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8434,136060,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Scarmclate","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8435,139856,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Scarrasdale Valley Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8436,135474,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Watston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8437,135737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Sguabain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8438,135983,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Shiel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8439,136013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Watten","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8440,135936,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochailort","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8441,135780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Spynie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8442,136087,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Stack and River Laxford","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8443,135136,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochan Buidhe Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8444,135323,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Siccar Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8445,135988,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Stiapavat","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8446,135052,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Manse Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8447,135686,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Tallant","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8448,135488,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Tay Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8449,136095,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Tuamister","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8450,135054,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Tummel Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8451,136125,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Ussie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8452,134959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Vaa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8453,139861,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochan Lairig Cheile","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8454,134977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Locharbriggs Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8455,135332,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Moss - Drinkstone Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8456,135082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longbridge Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8457,135476,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochcote Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8458,135197,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochindores","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8459,135637,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochmaben Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8460,135738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Martnaham Loch and Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8461,135799,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marwick Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8462,135413,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochmill Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8463,136054,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochs at Clachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8464,135382,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochs Clunie and Marlee","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8465,135285,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochs of Butterstone, Craiglush and Lowes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8466,135898,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochs of Harray and Stenness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8467,139889,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochs of Kirkigarth and Bardister","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8468,135781,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochs of Spiggie and Brow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8469,135845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochs of Tingwall and Asta","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8470,135736,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lochwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8471,135105,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lockshaw Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8472,135868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Masonshaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8473,135227,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Logierait Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8474,135133,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lon a' Chuil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8475,136109,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lon Leanachain","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8476,139953,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Berry Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8477,135462,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longnewton Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8478,136037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meall a' Mhaoil","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8479,136183,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meall an t-Sithe and Creag Rainich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8480,135460,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Loch of Lundie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8481,136053,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Wick River","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8482,135558,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longriggend Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8483,135795,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lossiemouth East Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8484,135832,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lossiemouth Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8485,135573,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Machrihanish Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8486,135574,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maidens to Doonfoot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8487,136188,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loth Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8488,135875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Findhorn Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8489,135141,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower River Conon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8490,135080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower River Cree","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8491,135824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower River Spey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8492,134998,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Strathavon Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8493,135717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lugar Sill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8494,135238,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Makerstoun - Corbie Craigs to Trows' Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8495,135134,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mallart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8496,135784,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meikle Loch and Kippet Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8497,135449,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meikleour Area","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8498,135910,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lunda Wick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8499,135305,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lurg & Dow Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8500,135853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Melby","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8501,135566,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mennock Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8502,135602,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Merrick Kells","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8503,135383,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lurgie Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8504,139875,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Luskentyre Banks and Saltings","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8505,136151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mangersta Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8506,135557,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lynn Spout","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8507,135401,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lynnwood - Whitlaw Wood, Slitrig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8508,135384,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lynslie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8509,136069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Machairs Robach and Newton","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8510,135016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meall Dail-chealach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8511,139921,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meall Ghaordie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8512,135034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meall Imireach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8513,135286,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meall na Samhna","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8514,135366,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Methven Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8515,135009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meall Reamhar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8516,135459,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Methven Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8517,136112,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Migdale Rock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8518,135158,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Meggernie and Croch na Keys Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8519,135086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8520,135448,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Dam","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8521,135270,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8522,135819,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8523,139939,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minto Craigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8524,135663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mochrum Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8525,135529,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moffat Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8526,135099,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moidach More","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8527,135512,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Millburn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8528,135556,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Miller's Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8529,135504,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Milton Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8530,135664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moine Mhor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8531,135395,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mollands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8532,135747,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Milton-Lockhart Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8533,135031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Milton Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8534,135263,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Milton Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8535,136165,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mingulay and Berneray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8536,135757,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mollinsburn Road Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8537,136041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monach Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8538,135397,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monzie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8539,135204,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moorfoot Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8540,139888,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monadh Mor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8541,135841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monadhliath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8542,136014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monar Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8543,136040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moniack Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8544,135226,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monifieth Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8545,135478,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Montrose Basin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8546,135248,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morenish Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8547,136012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morrich More","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8548,135617,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morroch Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8549,135909,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morrone Birkwood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8550,135060,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mortlach Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8551,135860,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mousa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8552,135893,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muckle and Little Green Holm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8553,135362,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morton Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8554,135874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morven and Mullachdubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8555,135999,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Morven and Scaraben","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8556,135879,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moss of Crombie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8557,135812,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moss of Cruden","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8558,134975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muckle Burn, Clunas","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8559,135996,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moss of Killimster","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8560,135074,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moss of Kirkhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8561,135997,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mound Alderwoods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8562,135265,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mount Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8563,135096,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muckle Head and Selwick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8564,135111,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muckle Roe Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8565,139853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mugdock Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8566,135768,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Muir of Dinnet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8567,135559,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ness Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8568,134989,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ness of Clousta - The Brigs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8569,135820,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ness of Cullivoe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8570,135727,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nethan Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8571,136019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newlands of Geise Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8572,135536,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newlaw Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8573,139845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newtown St Boswells Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8574,135915,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Nigg Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8575,135540,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Bellstane Plantation","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8576,135412,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Berwick Law","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8577,170019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Colonsay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8578,135364,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Fife Heaths","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8579,135969,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Harris","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8580,139837,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8581,135676,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Newton Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8582,135129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Roe Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8583,136148,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Rona and Sula Sgeir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8584,139930,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Rothiemurchus Pinewood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8585,135850,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Norwick Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8586,139864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Noss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8587,135473,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ochtertyre Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8588,135430,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Offerance Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8589,135857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Old Wood of Drum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8590,135051,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oliclett","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8591,135870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Orphir and Stenness Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8592,135939,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oykel Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8593,170032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pabbay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8594,135387,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Otterston Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8595,136207,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ousdale Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8596,135446,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oxendean Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8597,135455,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Palmers Hill Railway Cutting","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8598,135796,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Paradise Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8599,136132,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Parallel Roads of Lochaber","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8600,135210,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Park Hill and Tipperton Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8601,135154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pass of Killiecrankie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8602,135324,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pass of Leny Flushes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8603,135371,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pease Bay Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8604,135181,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pease Bridge Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8605,136020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pennylands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8606,170044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penton Linns","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8607,135077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Penwhapple Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8608,136082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Phillips Mains Mire","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8609,135057,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Randolph's Leap","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8610,135419,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rannoch Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8611,135938,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rassal","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8612,135835,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Philorth Valley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8613,135554,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raven Gill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8614,135520,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ravenshall Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8615,135329,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Philpstoun Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8616,135396,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pickletillem Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8617,139858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pinbain Burn to Cairn Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8618,135156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitarrig Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8619,134976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitcaple and Legatsden Quarries","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8620,139898,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Point Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8621,135352,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitkeathly Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8622,134957,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitlowie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8623,135406,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redden Bank Lime Works","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8624,136081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pitmaduthy Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8625,135878,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pittodrie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8626,135036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Port o' Warren","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8627,135015,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Port of Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8628,135607,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Braes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8629,135098,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portnellan - Ross Priory - Claddochside","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8630,135550,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Coast of Arran","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8631,135742,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Kerrera and Gallanach","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8632,135750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Possil Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8633,135236,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Redmyre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8634,135869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Potarch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8635,136171,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Priest Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8636,135132,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Punds to Wick of Hagdale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8637,135827,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quarry Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8638,135917,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quendale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8639,134967,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Qui Ness to Pund Stacks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8640,135837,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quithel Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8641,135646,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Raeburn Flow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8642,135307,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rammer Cleugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8643,135914,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ramna Stacks and Gruney","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8644,135005,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8645,135884,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Moss of Netherley","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8646,135067,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Moss, Oldtown","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8647,135041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ree Burn and Glenbuck Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8648,135800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhynie Chert","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8649,135296,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rickle Craig - Scurdie Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8650,139900,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Reidside Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8651,135942,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Reisgill Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8652,135291,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rescobie and Balgavies Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8653,135186,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Restenneth Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8654,136191,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhidorroch Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8655,139914,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhu Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8656,135723,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rhunahaorine Point","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8657,136038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rigg - Bile","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8658,135543,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ring Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8659,135587,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rinns of Islay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8660,135575,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Esk, Glencartholm","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8661,134962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Feshie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8662,135485,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Riskinhope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8663,135642,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Ayr Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8664,136144,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rockall","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8665,135038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Clyde Meanders","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8666,170076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Dee (Parton to Crossmichael)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8667,134987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rousay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8668,135277,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Dochart Meadows","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8669,135252,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rowardennan Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8670,139927,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Lyon Bank","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8671,135787,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Spey - Insh Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8672,136098,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Thurso","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8673,135386,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Tweed","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8674,135920,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roineval","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8675,135184,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Romadie Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8676,135876,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ronas Hill - North Roe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8677,135139,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rora Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8678,135802,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scaat Craig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8679,135075,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roscobie Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8680,135391,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roscobie Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8681,135763,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rosehearty to Fraserburgh Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8682,135947,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rosemarkie to Shandwick Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8683,136061,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roskill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8684,135256,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roslin Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8685,134988,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ross Park","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8686,135538,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ross Park - Lochshore Woodland","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8687,135206,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rossie Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8688,135023,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roughneuk Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8689,135754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rouken Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8690,135290,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Round Loch of Lundie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8691,135124,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Royal Ordnance, Powfoot","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8692,169878,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ground Bridge","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8693,136106,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rubh' an Eireannaich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8694,135024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rubh' a' Mhail to Uamhannan Donna Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8695,135847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scotstown Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8696,136198,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scourie Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8697,135926,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rubha Camas na Cailinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8698,139872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"S' Airde Beinn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8699,136032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rubha Dunan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8700,135963,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rubha Hunish","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8701,135764,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ruel Estuary","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8702,135975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rum","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8703,135104,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rumsdale Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8704,139883,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Salt Pans Bay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8705,135821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandwater","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8706,139863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sauchie Craig Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8707,135786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Saxa Vord","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8708,135735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sculliongour Limestone Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8709,169964,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Melvin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8710,135667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scare Rocks","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8711,135331,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Schiehallion","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8712,135066,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sel Ayre","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8713,134963,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shannel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8714,135927,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheigra - Oldshoremore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8715,136175,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shiant Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8716,135612,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shiel Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8717,135656,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shiel Dod","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8718,135040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strone Point, North Loch Fyne","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8719,135050,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shiel Wood Pastures","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8720,136011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shieldaig Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8721,135530,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shielhill Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8722,136090,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shielton Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8723,135357,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shingle Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8724,135292,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shirgarton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8725,134971,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skelda Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8726,139897,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skelmorlie Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8727,139869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skelpick Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8728,135065,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skeo Taing to Clugan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8729,135053,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skinsdale Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8730,135097,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Laggan Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8731,139906,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Mull Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8732,135451,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skolie Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8733,135648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"South Shian and Balure","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8734,135125,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Skyreburn Grasslands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8735,135069,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sletill Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8736,135931,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sligachan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8737,135955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slumbay Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8738,136142,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Small Seal Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8739,135576,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sound of Mull Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8740,136064,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spinningdale Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8741,170166,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tieveshilly","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8742,136176,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spittal Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8743,139893,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Spynie Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8744,135177,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Abb's Head to Fast Castle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8745,135244,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Andrews - Craig Hartle","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8746,135864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Cyrus and Kinnaber Links","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8747,135094,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St John's Church","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8748,136055,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Kilda","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8749,135447,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Mary's Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8750,135217,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Michael's Wood Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8751,135801,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sule Skerry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8752,135811,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Ninian's Tombolo","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8753,136091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stack Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8754,135746,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Staffa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8755,135048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stairhill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8756,135338,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Star Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8757,135230,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Steelend Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8758,135880,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sule Stack","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8759,135866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sumburgh Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8760,135259,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swallow Craig Den","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8761,135534,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stenhouse Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8762,135409,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Straloch Moraines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8763,136205,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strath","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8764,135081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strath Duchally","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8765,136110,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strathfleet","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8766,135109,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strathmore Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8767,136024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strathy Bogs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8768,136172,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stroma","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8769,139847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stromness Heaths and Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8770,136126,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strontian Mines","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8771,135678,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tangy Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8772,136100,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tarbat Ness","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8773,135234,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stronvar Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8774,135033,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stroupster Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8775,135295,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Struan Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8776,136181,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Struie Channels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8777,135427,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Swinkie Muir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8778,135131,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Syre Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8779,135535,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tarbert to Skipness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8780,135179,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tay Bank Section","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8781,135258,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tailend Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8782,139949,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Talich","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8783,136062,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Talisker","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8784,135755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Taynish Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8785,135463,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tayport - Tentsmuir Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8786,135083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tayvallich Juniper and Fen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8787,136005,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Talladale Gorge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8788,135614,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Talnotry Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8789,135882,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Ayres of Swinister","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8790,135839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Cletts, Exnaboe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8791,135294,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Threepwood Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8792,136048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Dens","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8793,135415,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Hirsel","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8794,139947,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thistle Brig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8795,134981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Thornylee Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8796,135653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Threave and Carlingwark Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8797,135902,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tilliefoure Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8798,135867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tingon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8799,135677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tinto Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8800,136197,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tolsta Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8801,134991,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tomnadashan Mine","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8802,135705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Torrisdale Cliff","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8803,135107,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Torrs Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8804,135631,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Torrs to Mason's Walk","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8805,135730,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Torrs Warren - Luce Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8806,136115,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Torvean Landforms","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8807,135748,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Totamore Dunes and Loch Ballyhaugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8808,135697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Townhead Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8809,135202,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Traprain Law","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8810,135620,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trearne Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8811,135000,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tressa Ness to Colbinstoft","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8812,135844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trona Mires","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8813,135703,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Troon Golf Links and Foreshore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8814,135976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Trotternish Ridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8815,135121,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Truderscaig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8816,139929,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tulach Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8817,135441,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turin Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8818,135567,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turnberry Dunes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8819,135084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turnberry Lighthouse to Port Murray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8820,135196,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tweedsmuir Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8821,135229,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tweedwood - Gateheugh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8822,135791,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tynet Burn","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8823,135525,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tynron Juniper Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8824,135114,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ulva, Danna and the McCormaig Isles","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8825,135641,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Nethan Valley Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8826,135598,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Solway Flats and Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8827,136104,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Urquhart Bay Wood","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8828,135004,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Virva","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8829,136070,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ushat Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8830,135062,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Uyea - North Roe Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8831,135930,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Vallay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8832,135871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Villians of Hamnavoe","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8833,139951,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Voxter Voe and Valayre Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8834,170206,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waltonhill and Cradle Den","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8835,135886,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ward Hill Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8836,135807,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wartle Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8837,139946,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Water of Ken Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8838,135892,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waulkmill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8839,135816,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ward of Culswick","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8840,135840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Westray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8841,135584,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waulkmill Glen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8842,135454,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weem Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8843,136086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Benbecula Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8844,135122,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Borgie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8845,135116,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Bradieston and Craig of Garvock","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8846,135438,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wester Balgair Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8847,142795,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunloy Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8848,135002,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Burrow Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8849,135510,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Coast of Jura","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8850,135649,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Colonsay Seabird Cliffs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8851,136029,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Halladale","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8852,135665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Loch Lomondside Woodlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8853,135833,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Mainland Moorlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8854,135128,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Strathnaver","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8855,135113,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Tayvallich Peninsula","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8856,135392,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wester Craiglockhart Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8857,135388,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whiting Ness - Ethie Haven","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8858,135481,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitlaw Bank to Hardies Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8859,135171,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wester Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8860,139859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westerdale Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8861,135600,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Western Gailes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8862,135321,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westerton Water Meadow","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8863,136208,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westfield Bridge","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8864,135346,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Westwater Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8865,134978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wether Hill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8866,135091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Weydale Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8867,139940,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whim Bog","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8868,135761,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Loch - Lochinch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8869,135163,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whiteadder Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8870,135147,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitehill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8871,135865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitehills to Melrose Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8872,135313,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitehouse Den","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8873,136143,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whiteness Head","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8874,135200,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitlaw Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8875,135006,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitlaw Rig","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8876,135182,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitmuirhall Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8877,135937,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wick River Marshes","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8878,135368,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodhead Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8879,135117,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Williamhope","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8880,135806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Windy Hills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8881,142770,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bovevagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8882,139850,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wolf's Hole Quarry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8883,135652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wood of Cree","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8884,169816,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dykeneuk Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8885,142810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garron Plateau","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8886,135694,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodend Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8887,135353,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodhall Dean","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8888,135035,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodhall Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8889,169998,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mointeach nan Lochain Dubha","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8890,135297,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yetholm Loch","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8891,169651,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardsheal Peninsula","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8892,169920,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kentallen","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8893,169955,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Aline","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8894,169862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenmore Forest","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8895,170203,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Valtos","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8896,169962,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Long Craig Island","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8897,169813,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dubh Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8898,169961,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Urigill","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8899,170133,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St Margaret's Marsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8900,169960,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Siadar","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8901,170168,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tob Valasay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8902,142843,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheep Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8903,169672,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bankhead Moss, Beith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8904,169692,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Loch Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8905,170088,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Moidart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8906,170144,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strathy Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8907,169892,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hassockrigg and North Shotts Mosses","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8908,169735,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrickarade","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8909,170224,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Park Bay","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8910,170211,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waukenwae Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8911,169959,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch of Mey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8912,169643,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Airds Park and Coille Nathais","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8913,169915,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inverasdale Peatlands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8914,169958,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch nam Madadh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8915,135143,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longman and Castle Stuart Bays","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8916,170023,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Obain Loch Euphoirt","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8917,170043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pentland Firth Islands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8918,169820,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"East Sanday Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8919,170160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Vadills","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8920,169924,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kintyre Goose Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8921,169855,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Giant'S Causeway and Dunseverick","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8922,170105,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Runkerry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8923,169860,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glas Eileanan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8924,170067,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8925,169825,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eilean Hoan","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8926,169827,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Endrick Water","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8927,169684,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berwickshire Coast (Intertidal)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8928,169831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fafernie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8929,169789,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Creag Clunie and the Lion's Face","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8930,169690,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Cart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8931,170091,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Spey","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8932,170187,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turclossie Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8933,169832,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Faray and Holm of Faray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8934,170111,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandness Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8935,170074,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Borgie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8936,170243,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Yell Sound Coast","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8937,170084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Kerry","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8938,170149,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Switha","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8939,170167,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tips of Corsemaul and Tom Mor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8940,170127,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sleibhtean agus Cladach Thiriodh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8941,169845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Forest of Clunie","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8942,169956,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Awe and Loch Ailsh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8943,169957,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loch Calder","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8944,169658,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Assynt Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8945,169683,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Berneray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8946,169698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boreray","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8947,174673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inchcruin","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8948,174675,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kinloch and Kyleakin Hills (Monadh Chaol Acainn is Cheann Loch)","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8949,174714,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sunart","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8950,174720,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Fannyside Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8951,142873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portballintrae","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8952,170225,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Rocks","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8953,174700,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peeswit Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8954,183434,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Creran Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8955,183414,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Barran Dubh","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8956,328965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Renfrewshire Heights","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8957,328952,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slamannan Plateau","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8958,328953,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strath Carnaig and Strath Fleet Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8959,387447,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Inverness-shire Lochs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8960,341280,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Oa","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8961,341281,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oronsay and South Colonsay","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8962,387448,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Onich to North Ballachulish Woods and Shore","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8963,170063,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ramore Head and The Skerries","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8964,555545402,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whinnerston","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8965,555559223,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aith Meadows and Burn of Aith","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8966,555559226,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Southannan Sands","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8967,555559227,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portencross Woods","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8968,555560514,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carlops Meltwater Channels","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8969,142828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rathlin Island - Ballycarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8970,142837,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rathlin Island - Kinramer South","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8971,142832,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rathlin Island - Ballygill North","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8972,142834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rathlin Island Coast","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8973,169785,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigahulliar","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8974,170172,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tow River Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8975,142853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Magilligan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8976,169673,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bann Estuary","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8977,87083,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gortnagory","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8978,142778,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corraslough Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8979,169705,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breen Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8980,169646,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Altikeeragh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8981,87080,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garry Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8982,169687,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Binevenagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8983,169853,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garry Bog Part 2","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8984,142858,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tievebulliagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8985,169689,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Burn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8986,169873,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8987,87082,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenariff","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8988,169728,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caldanagh Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8989,169963,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Foyle","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8990,170142,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Straidkilly Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8991,169851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frosses Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8992,170103,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rostrevor Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8993,87078,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cleggan Valley","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8994,142812,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen Burn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8995,142869,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ness Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8996,170234,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Wolf Island Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8997,174717,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tullyard","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8998,142798,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ervey Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +8999,169803,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dead Island Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9000,142750,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Altmover Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9001,142839,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scawt Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9002,169861,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenarm Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9003,170053,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portmuck","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9004,169773,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corbylin Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9005,169733,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carn/Glenshane","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9006,142865,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Waterloo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9007,169667,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballyknock","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9008,169670,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banagher Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9009,169988,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mckean'S Moss Part II ","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9010,169987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"McKEAN 'S MOSS","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9011,170122,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Silverbrook Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9012,142784,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Culnafay","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9013,142847,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strabane Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9014,142870,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"North Woodburn Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9015,142754,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballynahone Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9016,142871,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Owenkillew and Glenelly Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9017,142845,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9018,169797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Curran Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9019,142840,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Larne Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9020,170170,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Toome","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9021,87085,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Beg","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9022,142780,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crockaghole Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9023,142857,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teal Lough Part II ","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9024,170031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Owenkillew River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9025,169999,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moneygal Bog Part II ","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9026,87088,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moneygal Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9027,142794,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumlea and Mullan Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9028,87089,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Teal Lough & Slaghtfreeden Bogs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9029,169868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Grange Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9030,142753,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballymacormick Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9031,87076,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9032,170030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Outer Belfast Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9033,169828,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Essan Burn & Mullyfamore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9034,170196,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Ballinderry River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9035,169941,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Leathemstown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9036,170227,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Whitespots","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9037,142800,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fairy Water Bogs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9038,142829,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inner Belfast Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9039,170185,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tully Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9040,169786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigantlet Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9041,87087,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moneendogue","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9042,169669,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballysudden","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9043,169945,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lime Hill Farm","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9044,142758,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bardahessiagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9045,142841,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scrabo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9046,142788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Deroran Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9047,142846,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slievenacloy","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9048,142874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portmore Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9049,170141,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Straduff","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9050,142848,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strangford Lough Part 1","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9051,142772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Braade","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9052,170001,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Montiaghs Moss","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9053,174646,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballynanaghten","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9054,169788,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranny Bogs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9055,142860,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tullanaguiggy","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9056,142872,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Pettigoe Plateau","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9057,142849,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Neagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9058,142815,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenmore Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9059,170038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Peatlands Park","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9060,170169,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tonnagh Beg Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9061,169982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Magheramenagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9062,87075,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Beagh Big","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9063,169660,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aughnadarragh Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9064,169898,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Heron & Carrigullian Loughs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9065,87079,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumlisaleen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9066,87084,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lergan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9067,170157,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Cliffs of Magho","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9068,142821,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Horse Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9069,169938,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Largalinny","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9070,169863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glennasheevar","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9071,87081,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Garvros","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9072,142852,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strangford Lough Part 3","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9073,142767,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benburb","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9074,87086,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Monawilkin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9075,170189,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Turmennan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9076,142752,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Annacramph Meadow","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9077,169737,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrowcarlin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9078,169834,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fardrum & Roosky Turloughs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9079,142755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballyquintin Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9080,174652,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrickastickan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9081,170186,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tullysranadeega","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9082,142850,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Strangford Lough Part 2","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9083,169833,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fardross Stream","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9084,174662,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cullentra Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9085,170060,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Quoile","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9086,169966,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loughmoney","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9087,142851,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loughkeelan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9088,142866,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Woodgrange","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9089,87077,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrickbrawn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9090,169904,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hollymount","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9091,169693,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9092,170216,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"West Fermanagh Scarplands","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9093,169668,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballynagross Lower","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9094,169697,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Boho","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9095,142830,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Killard","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9096,170150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tattenamona","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9097,169664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballycam","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9098,170003,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moyrourkan Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9099,142844,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slieve Beagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9100,169922,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilnameel","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9101,169666,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballykilbeg","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9102,174718,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tullybrick Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9103,142835,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kiltubbrid Loughs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9104,142765,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bellanaleck","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9105,169772,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Corbally","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9106,142859,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mill Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9107,142838,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lackan Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9108,169663,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballybannan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9109,169810,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumacrittin Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9110,169740,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Enigan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9111,142824,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Inishroosk","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9112,142861,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Lough Erne - Belleisle","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9113,174653,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castletown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9114,142757,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Straghans Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9115,142868,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Murlough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9116,169648,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Annachullion Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9117,193569,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cam Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9118,193570,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Copeland Islands","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9119,193571,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mullynaskeagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9120,169932,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockninny Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9121,169791,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crossbane Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9122,169811,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumcarn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9123,142774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Burdautien Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9124,142854,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Summerhill Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9125,169755,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cladagh (Swanlinbar) River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9126,142782,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cuilcagh Mountain","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9127,169923,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilroosky Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9128,142836,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockballymore Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9129,169965,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loughaveeley","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9130,142786,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dernish Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9131,142864,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Lough Erne - Trannish","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9132,174674,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Killough Bay and Strand Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9133,174664,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Derryvore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9134,142792,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Derryleckagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9135,169874,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Greenan Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9136,142862,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Lough Erne - Crom","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9137,142797,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Eastern Mournes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9138,328986,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lemnalary","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9139,142867,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moninea Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9140,142831,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Killymackan Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9141,142806,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Finn Floods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9142,142863,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Upper Lough Erne - Galloon","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9143,170129,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slieve Gullion","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9144,174677,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Levallymore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9145,169738,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cashel Loughs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9146,169812,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumlougher Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9147,174711,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Selshion","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9148,183435,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Portrush West Strand","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9149,169731,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carlingford Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9150,174716,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tully Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9151,174681,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Doo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9152,174698,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Outer Ards","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9153,183436,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Foyle and Tributaries","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9154,169665,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballycastle Coalfield","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9155,183433,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lurgan Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9156,183453,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Torr Head","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9157,183412,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castlewellan Lake","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9158,193560,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Black Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9159,193561,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Derrycloony Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9160,555545522,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gruggandoo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9161,193563,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumcrow","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9162,193562,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Conagher","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9163,555545515,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tyrella & Minerstown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9164,193565,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Newlands","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9165,193564,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aghnadarragh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9166,193566,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aghanloo Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9167,193567,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fathom Upper","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9168,193568,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bonds Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9169,328975,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballymacombs More","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9170,328974,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Feystown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9171,555545444,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumharvey","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9172,328976,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edenaclogh Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9173,328977,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lenaghan Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9174,328979,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Corry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9175,555545437,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dunaree Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9176,555545514,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Killeter Forest and Bogs and Lakes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9177,555545508,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Baronscourt","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9178,328980,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Banagher","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9179,328978,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rehaghy Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9180,328983,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lurgan River Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9181,328982,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Aleater","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9182,328981,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Scolban","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9183,328984,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballypalady","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9184,328985,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Murrins","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9185,328987,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Roe and Tributaries","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9186,555545443,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lurgylea","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9187,555545424,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Smulgedon","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9188,555545425,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle River Valley","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9189,555545448,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sandy Braes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9190,555545446,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Gobbins","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9191,555545429,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cruninish Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9192,555545430,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Hare Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9193,555545457,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Corr","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9194,555545459,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"River Faughan and Tributaries","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9195,555545460,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knocknashangan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9196,555545423,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballymacallion","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9197,555545462,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ross","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9198,555545449,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castle Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9199,555545452,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Camlough Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9200,555545422,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Errigal Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9201,555545426,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballymacaldrack","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9202,555545428,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough na blaney bane","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9203,555545434,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Round Lough and Lough Fadda","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9204,555545419,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tandragee","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9205,555545435,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Devenish Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9206,555545431,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rathsherry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9207,555545432,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballyrisk More","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9208,555545427,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough McCall","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9209,555545433,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coolnasillagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9210,555545436,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sheepland Coast","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9211,555545442,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dromore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9212,555545438,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kirlish","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9213,555545441,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lisdoo","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9214,555545445,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Paris Island Big","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9215,555545439,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sloughan and Willmount Glens","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9216,555545440,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tedd","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9217,555545447,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tardree Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9218,555545456,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cloghinny","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9219,555545453,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lislea","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9220,555545463,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scraghy","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9221,555545464,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cloghfin Port","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9222,555545455,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glendesha","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9223,555545473,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mountfield Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9224,555545454,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mullaghbane","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9225,555545466,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slieveanorra and Croaghan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9226,555545461,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blackslee","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9227,555545421,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenballyemon River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9228,555545470,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knocknacloy","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9229,555545458,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Gullion","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9230,555545468,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Moneystaghan Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9231,555545420,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shimna River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9232,555545482,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumbegger","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9233,555545469,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lower Creevagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9234,555545484,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Keadew","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9235,555545477,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Coolcran","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9236,555545478,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Makenny","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9237,555545480,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"The Maidens","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9238,555545481,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tullyratty","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9239,555545479,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gravel Ridge Island","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9240,555545450,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glarryford","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9241,555545495,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Maghaberry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9242,555545471,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Annaghagh Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9243,555545475,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cashel Rock","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9244,555545474,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Sruhanleanantawey Burn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9245,555545476,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Largy Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9246,555545465,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carey Valley","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9247,555545483,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Little Deer Park","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9248,555545472,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mullaghcarn","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9249,555545492,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tower More","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9250,555562040,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Scribbagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9251,555545491,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glen East","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9252,555545499,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brackagh Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9253,555562041,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shane's Castle","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9254,555562033,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Navar Scarps and Lakes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9255,555545494,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brookend","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9256,555545500,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Linford","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9257,555545467,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aghabrack","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9258,555545501,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Caledon and Tynan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9259,555545451,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lisnaragh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9260,555545497,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Minnis","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9261,555545498,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cloghastucan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9262,555545496,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Blaeberry Island Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9263,555545504,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Copeland Reservoir","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9264,555545490,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Fair Head and Murlough Bay","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9265,555545487,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Church Bay","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9266,555545486,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Larkhill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9267,555545489,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Edernery Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9268,555545488,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumbally Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9269,555545506,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Loughermore Mountain","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9270,555545493,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Galboly","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9271,555545523,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenarm Woods Part 2","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9272,555545510,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Anierin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9273,555545524,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gortcorbies","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9274,555545525,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Craigs","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9275,555545520,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tempo River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9276,555545512,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glenariff Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9277,555545511,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Cowey","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9278,555545509,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Castlecoole","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9279,555545526,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drummond Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9280,555545513,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rathlin Island - Kebble","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9281,555545485,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Butterlope Glen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9282,555545516,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Naman Bog and Lake","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9283,555545507,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Macrory","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9284,555545517,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilcoan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9285,555545505,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Kilkeel Steps","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9286,555562018,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cranny Falls","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9287,555545519,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Capecastle","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9288,555562013,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carneal","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9289,555562010,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Benburb - Milltown","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9290,555562024,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drummahon","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9291,555562019,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Croagh Bog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9292,555562031,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Formal","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9293,555562014,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carnmore","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9294,555562034,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Marlbank","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9295,555562007,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9296,555562021,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Dromore Big","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9297,555562048,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Florence Court","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9298,555562043,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Stranacally","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9299,555562027,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gortalughany","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9300,555562020,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Crockanaver","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9301,555562045,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tonnagh Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9302,555562039,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Samuel's Port","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9303,555562008,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ballygalley Head","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9304,555562036,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Prolusk","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9305,555562022,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumarg","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9306,555562037,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Roeveagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9307,555562015,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cavan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9308,555562028,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knock Dhu Sallagh Braes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9309,555562016,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Clermont & Anglesey Mountain","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9310,555562030,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Alaban","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9311,555562029,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Knockadoo Wood","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9312,555562035,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Mournes Coast","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9313,555562047,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Water River","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9314,555562046,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Western Mournes and Kilfeaghan Upper","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9315,555562009,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belvoir","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9316,555562017,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Cloghcor Lough","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9317,555562012,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Brockagh Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9318,555562011,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Big Dog Scarps and Lakes","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9319,555562042,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"St, John's Point","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9320,555562038,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Rushy Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9321,555562025,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumowen","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9322,555596158,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Goraghwood Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9323,555562026,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Frevagh","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9324,555562023,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Drumcully","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9325,555562044,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tircreven","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9326,555562032,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Lough Lark","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9327,555596150,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Ardglass","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9328,555596151,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aughnagon Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9329,555596152,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aughnavallog","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9330,555596161,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Shannaghan Hill","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9331,555596154,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Bellevue","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9332,555596162,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Slieve Croob","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9333,555596156,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Carrivemaclone","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9334,555596160,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gransha","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9335,555596163,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tamnyrankin","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9336,555596155,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belshaws Quarry","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9337,555596153,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Aghanaglack","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9338,555596159,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Gortnasoal Glebe and Meenadoan","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9339,555596157,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Glynn Woods","Area of Special Scientific Interest (NI)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9340,138726,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Belowda Beacon","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9341,138548,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Breney Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9342,137266,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Goss and Tregoss Moors","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9343,138090,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Longworth Clough","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9344,137576,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Oak Field","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9345,140392,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Red Moor","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9346,140403,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Retire Common","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9347,139774,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Talybont Reservoir","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9348,170173,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Tregonetha & Belowda Downs","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9349,137146,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"Walton Moss","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9350,138182,"GBR","Common Standards Monitoring",2013,"Not Reported",18,"White Coppice Flush","Site of Special Scientific Interest (UK)","UK Common Standards Monitoring","Joint Nature Conservation Committee",2018,"English","FALSE","FALSE",, +9351,1054,"HRV","METT",2012,"Not Reported",19,"Plitvička jezera","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9352,1058,"HRV","METT",2012,"Not Reported",19,"Paklenica","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9353,2518,"HRV","METT",2012,"Not Reported",19,"Risnjak","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9354,2520,"HRV","METT",2012,"Not Reported",19,"Mljet","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9355,2523,"HRV","METT",2012,"Not Reported",19,"Kornati","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9356,3373,"HRV","METT",2012,"Not Reported",19,"Krka","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9357,10940,"HRV","METT",2012,"Not Reported",19,"Brijuni","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9358,377865,"HRV","METT",2012,"Not Reported",19,"Sjeverni Velebit","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9359,15602,"HRV","METT",2012,"Not Reported",19,"Kopački rit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9360,15606,"HRV","METT",2012,"Not Reported",19,"Velebit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9361,15614,"HRV","METT",2012,"Not Reported",19,"Medvednica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9362,20700,"HRV","METT",2012,"Not Reported",19,"Biokovo","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9363,63664,"HRV","METT",2012,"Not Reported",19,"Telašćica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9364,63666,"HRV","METT",2012,"Not Reported",19,"Lonjsko polje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9365,377853,"HRV","METT",2012,"Not Reported",19,"Žumberak - Samoborsko gorje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9366,377863,"HRV","METT",2012,"Not Reported",19,"Vransko jezero","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9367,378015,"HRV","METT",2012,"Not Reported",19,"Lastovsko otočje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9368,378033,"HRV","METT",2012,"Not Reported",19,"Papuk","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9369,378034,"HRV","METT",2012,"Not Reported",19,"Učka","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9370,1054,"HRV","METT",2014,"Not Reported",19,"Plitvička jezera","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9371,1058,"HRV","METT",2014,"Not Reported",19,"Paklenica","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9372,2518,"HRV","METT",2014,"Not Reported",19,"Risnjak","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9373,2520,"HRV","METT",2014,"Not Reported",19,"Mljet","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9374,2523,"HRV","METT",2014,"Not Reported",19,"Kornati","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9375,3373,"HRV","METT",2014,"Not Reported",19,"Krka","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9376,10940,"HRV","METT",2014,"Not Reported",19,"Brijuni","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9377,377865,"HRV","METT",2014,"Not Reported",19,"Sjeverni Velebit","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9378,15602,"HRV","METT",2014,"Not Reported",19,"Kopački rit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9379,15606,"HRV","METT",2014,"Not Reported",19,"Velebit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9380,15614,"HRV","METT",2014,"Not Reported",19,"Medvednica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9381,20700,"HRV","METT",2014,"Not Reported",19,"Biokovo","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9382,63664,"HRV","METT",2014,"Not Reported",19,"Telašćica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9383,63666,"HRV","METT",2014,"Not Reported",19,"Lonjsko polje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9384,377853,"HRV","METT",2014,"Not Reported",19,"Žumberak - Samoborsko gorje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9385,377863,"HRV","METT",2014,"Not Reported",19,"Vransko jezero","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9386,378015,"HRV","METT",2014,"Not Reported",19,"Lastovsko otočje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9387,378033,"HRV","METT",2014,"Not Reported",19,"Papuk","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9388,378034,"HRV","METT",2014,"Not Reported",19,"Učka","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9389,1054,"HRV","METT",2016,"Not Reported",19,"Plitvička jezera","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9390,1058,"HRV","METT",2016,"Not Reported",19,"Paklenica","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9391,2518,"HRV","METT",2016,"Not Reported",19,"Risnjak","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9392,2520,"HRV","METT",2016,"Not Reported",19,"Mljet","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9393,2523,"HRV","METT",2016,"Not Reported",19,"Kornati","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9394,3373,"HRV","METT",2016,"Not Reported",19,"Krka","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9395,10940,"HRV","METT",2016,"Not Reported",19,"Brijuni","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9396,377865,"HRV","METT",2016,"Not Reported",19,"Sjeverni Velebit","National Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9397,15602,"HRV","METT",2016,"Not Reported",19,"Kopački rit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9398,15606,"HRV","METT",2016,"Not Reported",19,"Velebit","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9399,15614,"HRV","METT",2016,"Not Reported",19,"Medvednica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9400,20700,"HRV","METT",2016,"Not Reported",19,"Biokovo","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9401,63664,"HRV","METT",2016,"Not Reported",19,"Telašćica","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9402,63666,"HRV","METT",2016,"Not Reported",19,"Lonjsko polje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9403,377853,"HRV","METT",2016,"Not Reported",19,"Žumberak - Samoborsko gorje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9404,377863,"HRV","METT",2016,"Not Reported",19,"Vransko jezero","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9405,378015,"HRV","METT",2016,"Not Reported",19,"Lastovsko otočje","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9406,378033,"HRV","METT",2016,"Not Reported",19,"Papuk","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9407,378034,"HRV","METT",2016,"Not Reported",19,"Učka","Nature Park","Croatian protected area management effectiveness assessments","Croatian Agency for the Environment and Nature (CAEN)",2018,"English","FALSE","FALSE",, +9408,1656,"GEO","METT",2015,"Not Reported",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9409,1656,"GEO","METT",2017,"Not Reported",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9410,555549424,"GEO","METT",2015,"Not Reported",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9411,555549424,"GEO","METT",2017,"Not Reported",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9412,555566931,"GEO","METT",2015,"Not Reported",20,"Pshav-Khevsureti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9413,555566931,"GEO","METT",2017,"Not Reported",20,"Pshav-Khevsureti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9414,555566933,"GEO","METT",2015,"Not Reported",20,"Roshka","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9415,555566933,"GEO","METT",2017,"Not Reported",20,"Roshka","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9416,555566907,"GEO","METT",2015,"Not Reported",20,"Asa","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9417,555566907,"GEO","METT",2017,"Not Reported",20,"Asa","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9418,555549410,"GEO","METT",2015,"Not Reported",20,"Kazbegi","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9419,555549410,"GEO","METT",2017,"Not Reported",20,"Kazbegi","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9420,555549473,"GEO","METT",2015,"Not Reported",20,"Abano Mineral Lake","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9421,555549473,"GEO","METT",2017,"Not Reported",20,"Abano Mineral Lake","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9422,555549475,"GEO","METT",2015,"Not Reported",20,"Travertine of Truso","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9423,555549475,"GEO","METT",2017,"Not Reported",20,"Travertine of Truso","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9424,555549474,"GEO","METT",2015,"Not Reported",20,"Sakhizari cliff","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9425,555549474,"GEO","METT",2017,"Not Reported",20,"Sakhizari cliff","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9426,555566921,"GEO","METT",2015,"Not Reported",20,"Keterisi Mineral Vocluse","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9427,555566921,"GEO","METT",2017,"Not Reported",20,"Keterisi Mineral Vocluse","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9428,555566920,"GEO","METT",2015,"Not Reported",20,"Jvary Pass Travertine","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9429,555566920,"GEO","METT",2017,"Not Reported",20,"Jvary Pass Travertine","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9430,555549415,"GEO","METT",2015,"Not Reported",20,"Algeti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9431,555549415,"GEO","METT",2017,"Not Reported",20,"Algeti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9432,555624300,"GEO","METT",2015,"Not Reported",20,"Birtvisi","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9433,555624300,"GEO","METT",2017,"Not Reported",20,"Birtvisi","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9434,555566912,"GEO","METT",2015,"Not Reported",20,"Dashbashi Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9435,555566912,"GEO","METT",2017,"Not Reported",20,"Dashbashi Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9436,555566935,"GEO","METT",2015,"Not Reported",20,"Samshvilde Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9437,555566935,"GEO","METT",2017,"Not Reported",20,"Samshvilde Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9438,1653,"GEO","RAPPAM",2012,"Not Reported",20,"Lagodekhi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9439,313053,"GEO","RAPPAM",2012,"Not Reported",20,"Tusheti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9440,1667,"GEO","RAPPAM",2012,"Not Reported",20,"Sataplia","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9441,1656,"GEO","RAPPAM",2012,"Not Reported",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9442,313211,"GEO","RAPPAM",2012,"Not Reported",20,"Kobuleti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9443,61588,"GEO","RAPPAM",2012,"Not Reported",20,"Borjomi-Kharagauli","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9444,1666,"GEO","RAPPAM",2012,"Not Reported",20,"Kolkheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9445,555549414,"GEO","RAPPAM",2012,"Not Reported",20,"Tusheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9446,555549413,"GEO","RAPPAM",2012,"Not Reported",20,"Vashlovani","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9447,555549409,"GEO","RAPPAM",2012,"Not Reported",20,"Mtirala","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9448,555549407,"GEO","RAPPAM",2012,"Not Reported",20,"Eagle canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9449,555549417,"GEO","RAPPAM",2012,"Not Reported",20,"Takhti-Tefa","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9450,555549406,"GEO","RAPPAM",2012,"Not Reported",20,"Alazani flood plane forests","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9451,313206,"GEO","RAPPAM",2012,"Not Reported",20,"Chachuna","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9452,313205,"GEO","RAPPAM",2012,"Not Reported",20,"Kobuleti","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9453,555549425,"GEO","RAPPAM",2012,"Not Reported",20,"Lagodekhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9454,555549424,"GEO","RAPPAM",2012,"Not Reported",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9455,1653,"GEO","RAPPAM",2009,"Not Reported",20,"Lagodekhi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9456,313053,"GEO","RAPPAM",2009,"Not Reported",20,"Tusheti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9457,555549408,"GEO","RAPPAM",2009,"Not Reported",20,"Babaneuri","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9458,313048,"GEO","RAPPAM",2009,"Not Reported",20,"Bbatsara","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9459,1660,"GEO","RAPPAM",2009,"Not Reported",20,"Vashlovani","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9460,1657,"GEO","RAPPAM",2009,"Not Reported",20,"Liakhvi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9461,1665,"GEO","RAPPAM",2009,"Not Reported",20,"Mariamjvari","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9462,1667,"GEO","RAPPAM",2009,"Not Reported",20,"Sataplia","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9463,1652,"GEO","RAPPAM",2009,"Not Reported",20,"Borjomi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9464,1656,"GEO","RAPPAM",2009,"Not Reported",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9465,313211,"GEO","RAPPAM",2009,"Not Reported",20,"Kobuleti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9466,61588,"GEO","RAPPAM",2009,"Not Reported",20,"Borjomi-Kharagauli","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9467,1666,"GEO","RAPPAM",2009,"Not Reported",20,"Kolkheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9468,555549414,"GEO","RAPPAM",2009,"Not Reported",20,"Tusheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9469,555549413,"GEO","RAPPAM",2009,"Not Reported",20,"Vashlovani","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9470,555549409,"GEO","RAPPAM",2009,"Not Reported",20,"Mtirala","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9471,555549412,"GEO","RAPPAM",2009,"Not Reported",20,"Tbilisi","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9472,555549415,"GEO","RAPPAM",2009,"Not Reported",20,"Algeti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9473,555549410,"GEO","RAPPAM",2009,"Not Reported",20,"Kazbegi","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9474,555549406,"GEO","RAPPAM",2009,"Not Reported",20,"Alazani flood plane forests","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9475,555549417,"GEO","RAPPAM",2009,"Not Reported",20,"Takhti-Tefa","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9476,555549407,"GEO","RAPPAM",2009,"Not Reported",20,"Eagle canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9477,555549471,"GEO","RAPPAM",2009,"Not Reported",20,"Prometheus Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9478,555566938,"GEO","RAPPAM",2009,"Not Reported",20,"Tetri mgvime Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9479,555549468,"GEO","RAPPAM",2009,"Not Reported",20,"Khomuli Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9480,555566940,"GEO","RAPPAM",2009,"Not Reported",20,"Tsutskvati Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9481,555566926,"GEO","RAPPAM",2009,"Not Reported",20,"Navenakhevi Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9482,555566925,"GEO","RAPPAM",2009,"Not Reported",20,"Nagarevi Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9483,555566918,"GEO","RAPPAM",2009,"Not Reported",20,"Iazoni Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9484,555566934,"GEO","RAPPAM",2009,"Not Reported",20,"Sakajia Karst Cave","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9485,555549470,"GEO","RAPPAM",2009,"Not Reported",20,"Tskaltsitela Ravine","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9486,555549469,"GEO","RAPPAM",2009,"Not Reported",20,"Okatse Canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9487,555566929,"GEO","RAPPAM",2009,"Not Reported",20,"Okatse Waterfall","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9488,313208,"GEO","RAPPAM",2009,"Not Reported",20,"Gardabani","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9489,313212,"GEO","RAPPAM",2009,"Not Reported",20,"Khorugi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9490,313209,"GEO","RAPPAM",2009,"Not Reported",20,"Iori","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9491,313206,"GEO","RAPPAM",2009,"Not Reported",20,"Chachuna","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9492,313210,"GEO","RAPPAM",2009,"Not Reported",20,"Katsoburi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9493,313541,"GEO","RAPPAM",2009,"Not Reported",20,"Nedzvi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9494,313205,"GEO","RAPPAM",2009,"Not Reported",20,"Kobuleti","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9495,555549411,"GEO","RAPPAM",2009,"Not Reported",20,"Ilto","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9496,555549425,"GEO","RAPPAM",2009,"Not Reported",20,"Lagodekhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9497,555549405,"GEO","RAPPAM",2009,"Not Reported",20,"Ajameti","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9498,555549424,"GEO","RAPPAM",2009,"Not Reported",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9499,61588,"GEO","PANPARKS",2007,"Not Reported",20,"Borjomi-Kharagauli","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9500,1652,"GEO","PANPARKS",2007,"Not Reported",20,"Borjomi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9501,313541,"GEO","PANPARKS",2007,"Not Reported",20,"Nedzvi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9502,313053,"GEO","METT",2017,"Not Reported",20,"Tusheti","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9503,555549414,"GEO","METT",2017,"Not Reported",20,"Tusheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9504,555549423,"GEO","METT",2017,"Not Reported",20,"Javakheti","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9505,555549418,"GEO","METT",2017,"Not Reported",20,"Bugdasheni","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9506,555549419,"GEO","METT",2017,"Not Reported",20,"Khanchali","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9507,555549420,"GEO","METT",2017,"Not Reported",20,"Madatapa","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9508,555549422,"GEO","METT",2017,"Not Reported",20,"Sulda","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9509,555549421,"GEO","METT",2017,"Not Reported",20,"Kartsakhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9510,313540,"GEO","METT",2017,"Not Reported",20,"Tetrobi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9511,1660,"GEO","METT",2017,"Not Reported",20,"Vashlovani","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9512,555549413,"GEO","METT",2017,"Not Reported",20,"Vashlovani","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9513,555549407,"GEO","METT",2017,"Not Reported",20,"Eagle canyon","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9514,555549406,"GEO","METT",2017,"Not Reported",20,"Alazani flood plane forests","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9515,555549417,"GEO","METT",2017,"Not Reported",20,"Takhti-Tefa","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9529,1653,"GEO","METT",2016,"Not Reported",20,"Lagodekhi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9530,555549425,"GEO","METT",2016,"Not Reported",20,"Lagodekhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9531,313539,"GEO","METT",2017,"Not Reported",20,"Ktsia-Tabatskuri","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9532,313541,"GEO","METT",2017,"Not Reported",20,"Nedzvi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9533,555566917,"GEO","METT",2017,"Not Reported",20,"Goderdzi Petrified Forest","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9534,1652,"GEO","METT",2017,"Not Reported",20,"Borjomi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9535,61588,"GEO","METT",2017,"Not Reported",20,"Borjomi-Kharagauli","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9536,1653,"GEO","METT",2017,"Not Reported",20,"Lagodekhi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9537,555549425,"GEO","METT",2017,"Not Reported",20,"Lagodekhi","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9545,555549409,"GEO","METT",2017,"Not Reported",20,"Mtirala","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9553,555549409,"GEO","METT",2016,"Not Reported",20,"Mtirala","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9554,1656,"GEO","METT",2016,"Not Reported",20,"Kintrishi","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9555,555549424,"GEO","METT",2016,"Not Reported",20,"Kintrishi","Protected Landscape","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9556,555549467,"GEO","METT",2016,"Not Reported",20,"Machakhela","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9557,1660,"GEO","METT",2015,"Not Reported",20,"Vashlovani","Strict Nature Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9558,555549413,"GEO","METT",2015,"Not Reported",20,"Vashlovani","National Park","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9559,555549406,"GEO","METT",2015,"Not Reported",20,"Alazani flood plane forests","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9560,555549417,"GEO","METT",2015,"Not Reported",20,"Takhti-Tefa","Natural Monument","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9561,313206,"GEO","METT",2015,"Not Reported",20,"Chachuna","Managed Reserve","Georgia protected area management effectiveness assessments","Ministry of Enviroment, Protection and Agriculture of Georgia",2018,"English","FALSE","FALSE",, +9562,799,"MOZ","RAPPAM",2006,"Not Reported",21,"Banhine","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9563,799,"MOZ","METT",2014,"Not Reported",21,"Banhine","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9564,799,"MOZ","METT",2015,"Not Reported",21,"Banhine","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9565,799,"MOZ","METT",2016,"Not Reported",21,"Banhine","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9566,800,"MOZ","RAPPAM",2006,"Not Reported",21,"Zinave","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9567,800,"MOZ","METT",2014,"Not Reported",21,"Zinave","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9568,800,"MOZ","METT",2015,"Not Reported",21,"Zinave","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9569,800,"MOZ","METT",2016,"Not Reported",21,"Zinave","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9570,802,"MOZ","RAPPAM",2006,"Not Reported",21,"Bazaruto","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9571,802,"MOZ","METT",2014,"Not Reported",21,"Bazaruto","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9572,802,"MOZ","METT",2015,"Not Reported",21,"Bazaruto","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9573,802,"MOZ","METT",2016,"Not Reported",21,"Bazaruto","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9574,801,"MOZ","RAPPAM",2006,"Not Reported",21,"Gorongosa","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9575,801,"MOZ","METT",2010,"Not Reported",21,"Gorongosa","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9576,801,"MOZ","METT",2015,"Not Reported",21,"Gorongosa","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9577,20295,"MOZ","RAPPAM",2006,"Not Reported",21,"Limpopo","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9578,20295,"MOZ","METT",2014,"Not Reported",21,"Limpopo","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9579,20295,"MOZ","METT",2015,"Not Reported",21,"Limpopo","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9580,20295,"MOZ","METT",2016,"Not Reported",21,"Limpopo","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9581,4652,"MOZ","RAPPAM",2006,"Not Reported",21,"Maputo","Special Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9582,4652,"MOZ","METT",2014,"Not Reported",21,"Maputo","Special Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9583,4652,"MOZ","METT",2015,"Not Reported",21,"Maputo","Special Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9584,4652,"MOZ","METT",2016,"Not Reported",21,"Maputo","Special Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9585,9035,"MOZ","RAPPAM",2006,"Not Reported",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9586,9035,"MOZ","METT",2013,"Not Reported",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9587,9035,"MOZ","METT",2014,"Not Reported",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9588,9035,"MOZ","METT",2015,"Not Reported",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9589,9035,"MOZ","METT",2016,"Not Reported",21,"Quirimbas","National Park","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9594,4650,"MOZ","RAPPAM",2006,"Not Reported",21,"Gilé","National Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9595,4650,"MOZ","METT",2014,"Not Reported",21,"Gilé","National Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9596,4650,"MOZ","METT",2015,"Not Reported",21,"Gilé","National Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9597,4650,"MOZ","METT",2016,"Not Reported",21,"Gilé","National Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9598,4651,"MOZ","RAPPAM",2006,"Not Reported",21,"Niassa","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9599,4651,"MOZ","METT",2015,"Not Reported",21,"Niassa","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9600,4653,"MOZ","METT",2014,"Not Reported",21,"Pomene","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9601,4653,"MOZ","METT",2015,"Not Reported",21,"Pomene","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9602,4653,"MOZ","METT",2016,"Not Reported",21,"Pomene","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9603,4649,"MOZ","RAPPAM",2006,"Not Reported",21,"Marromeu","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9604,4649,"MOZ","METT",2014,"Not Reported",21,"Marromeu","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9605,4649,"MOZ","METT",2015,"Not Reported",21,"Marromeu","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9606,4649,"MOZ","METT",2016,"Not Reported",21,"Marromeu","Game Reserve","PAME for Mozambique Protected Areas","National Administration of Conservation Areas",2018,"English","FALSE","FALSE",, +9607,326435,"LIE","METT",2017,"Not Reported",22,"Alta Bach","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9608,30756,"LIE","METT",2017,"Not Reported",22,"Au","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9609,30750,"LIE","METT",2017,"Not Reported",22,"Aeulehaeg","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9610,326436,"LIE","METT",2017,"Not Reported",22,"Balzner Neugut","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9611,326437,"LIE","METT",2017,"Not Reported",22,"Balzner Rheinau","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9612,326438,"LIE","METT",2017,"Not Reported",22,"Bim Hensile","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9613,30754,"LIE","METT",2017,"Not Reported",22,"Birka","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9614,326439,"LIE","METT",2017,"Not Reported",22,"Fuermazoeg","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9615,326440,"LIE","METT",2017,"Not Reported",22,"Gampriner Rheinau","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9616,30747,"LIE","METT",2017,"Not Reported",22,"Gampriner Seelein","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9617,326433,"LIE","METT",2017,"Not Reported",22,"Ganada","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9618,326455,"LIE","METT",2017,"Not Reported",22,"Gantenstein","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9619,326426,"LIE","METT",2017,"Not Reported",22,"Garsaelli","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9620,326442,"LIE","METT",2017,"Not Reported",22,"Guschg / Nachtsaess","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9621,326443,"LIE","METT",2017,"Not Reported",22,"Haelos","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9622,30752,"LIE","METT",2017,"Not Reported",22,"Heilos","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9623,326427,"LIE","METT",2017,"Not Reported",22,"Hinter Baergwald /Heubueal","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9624,326444,"LIE","METT",2017,"Not Reported",22,"Hochwuerza","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9625,326445,"LIE","METT",2017,"Not Reported",22,"Malanserwald/Lotzagueetle","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9626,555625696,"LIE","METT",2017,"Not Reported",22,"Mareewiesen","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9627,326446,"LIE","METT",2017,"Not Reported",22,"Maschera","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9628,555625695,"LIE","METT",2017,"Not Reported",22,"Matilaberg","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9629,326428,"LIE","METT",2017,"Not Reported",22,"Messweid","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9630,326429,"LIE","METT",2017,"Not Reported",22,"Mittagsspitze","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9631,326447,"LIE","METT",2017,"Not Reported",22,"Moggawald / Schwarzwald","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9632,555625697,"LIE","METT",2017,"Not Reported",22,"Periol, Bofel, Neufeld, Undera Forst","Protected Landscape","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9633,326448,"LIE","METT",2017,"Not Reported",22,"Plattawald / Bleika","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9634,326449,"LIE","METT",2017,"Not Reported",22,"Pradamee","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9635,326450,"LIE","METT",2017,"Not Reported",22,"Retta","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9636,326430,"LIE","METT",2017,"Not Reported",22,"Rinderwald","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9637,326434,"LIE","METT",2017,"Not Reported",22,"Garsaelli","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9638,68093,"LIE","METT",2017,"Not Reported",22,"Ruggeller Riet","Ramsar Site, Wetland of International Importance","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9639,326452,"LIE","METT",2017,"Not Reported",22,"Saeliwald","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9640,326431,"LIE","METT",2017,"Not Reported",22,"Schlosswald","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9641,30755,"LIE","METT",2017,"Not Reported",22,"Schneckenaeule","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9642,18109,"LIE","METT",2017,"Not Reported",22,"Schwabbruennen/Aescher","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9643,326453,"LIE","METT",2017,"Not Reported",22,"Stachler Wald","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9644,326432,"LIE","METT",2017,"Not Reported",22,"Steger Bach","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9645,326454,"LIE","METT",2017,"Not Reported",22,"Unterau","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9646,555625698,"LIE","METT",2017,"Not Reported",22,"Wesa-Fokswinkel","Protected Landscape","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9647,30753,"LIE","METT",2017,"Not Reported",22,"Wisanels","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +29581,326441,"LIE","METT",2017,"Not Reported",22,"Ganada","Forest Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +29582,326451,"LIE","METT",2017,"Not Reported",22,"Ruggeller Rheinau","Protected Forest","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +29583,18107,"LIE","METT",2017,"Not Reported",22,"Ruggeller Riet","Nature Reserve","Liechtenstein Management Effectiveness Evaluation","Department of Forest and Landscape",2018,"English","FALSE","FALSE",, +9648,555540728,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Baryczy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9649,555540729,"POL","Birdlife IBA",1994,"Not Reported",23,"Grądy Odrzańskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9650,555540730,"POL","Birdlife IBA",1994,"Not Reported",23,"Stawy Przemkowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9651,555540731,"POL","Birdlife IBA",2002,"Not Reported",23,"Zbiornik Mietkowski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9652,555540732,"POL","Birdlife IBA",2004,"Not Reported",23,"Bory Dolnośląskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9653,555540733,"POL","Birdlife IBA",2004,"Not Reported",23,"Góry Stołowe","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9654,555540734,"POL","Birdlife IBA",2002,"Not Reported",23,"Karkonosze","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9655,555540735,"POL","Birdlife IBA",1994,"Not Reported",23,"Łęgi Odrzańskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9656,555577794,"POL","Birdlife IBA",2010,"Not Reported",23,"Góry Izerskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9657,555577795,"POL","Birdlife IBA",2010,"Not Reported",23,"Sudety Wałbrzysko-Kamiennogórskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9658,555540736,"POL","Birdlife IBA",1994,"Not Reported",23,"Błota Rakutowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9659,555540737,"POL","Birdlife IBA",1994,"Not Reported",23,"Bagienna Dolina Drwęcy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9660,555540738,"POL","Birdlife IBA",2002,"Not Reported",23,"Dolina Dolnej Wisły","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9661,555540739,"POL","Birdlife IBA",1994,"Not Reported",23,"Ostoja Nadgoplańska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9662,555540740,"POL","Birdlife IBA",2004,"Not Reported",23,"Żwirownia Skoki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9663,555540741,"POL","Birdlife IBA",1994,"Not Reported",23,"Bagno Bubnów","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9664,555540742,"POL","Birdlife IBA",1994,"Not Reported",23,"Chełmskie Torfowiska Węglanowe","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9665,555540743,"POL","Birdlife IBA",2002,"Not Reported",23,"Dolina Środkowego Bugu","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9666,555540744,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Tyśmienicy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9667,555540745,"POL","Birdlife IBA",1994,"Not Reported",23,"Lasy Janowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9668,555540746,"POL","Birdlife IBA",1994,"Not Reported",23,"Lasy Parczewskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9669,555540747,"POL","Birdlife IBA",1994,"Not Reported",23,"Lasy Strzeleckie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9670,555540748,"POL","Birdlife IBA",2002,"Not Reported",23,"Puszcza Solska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9671,555540749,"POL","Birdlife IBA",1994,"Not Reported",23,"Lasy Łukowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9672,555540750,"POL","Birdlife IBA",2004,"Not Reported",23,"Ostoja Tyszowiecka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9673,555540751,"POL","Birdlife IBA",1994,"Not Reported",23,"Roztocze","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9674,555540752,"POL","Birdlife IBA",2004,"Not Reported",23,"Dolina Górnej Łabuńki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9675,555540753,"POL","Birdlife IBA",1994,"Not Reported",23,"Uroczysko Mosty-Zahajki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9676,555540754,"POL","Birdlife IBA",2002,"Not Reported",23,"Zbiornik Podedwórze","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9677,555540755,"POL","Birdlife IBA",2004,"Not Reported",23,"Staw Boćków","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9678,555540756,"POL","Birdlife IBA",2004,"Not Reported",23,"Zlewnia Górnej Huczwy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9679,555540757,"POL","Birdlife IBA",2004,"Not Reported",23,"Dolina Szyszły","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9680,555540758,"POL","Birdlife IBA",2002,"Not Reported",23,"Polesie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9681,555540759,"POL","Birdlife IBA",2004,"Not Reported",23,"Ostoja Nieliska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9682,555540760,"POL","Birdlife IBA",2004,"Not Reported",23,"Dolina Sołokiji","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9683,555540761,"POL","Birdlife IBA",2004,"Not Reported",23,"Puszcza Barlinecka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9684,555540762,"POL","Birdlife IBA",2004,"Not Reported",23,"Dolina Dolnej Noteci","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9685,555540763,"POL","Birdlife IBA",2004,"Not Reported",23,"Dolina Środkowej Odry","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9686,555540764,"POL","Birdlife IBA",1994,"Not Reported",23,"Jeziora Pszczewskie i Dolina Obry","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9687,555540765,"POL","Birdlife IBA",1994,"Not Reported",23,"Pradolina Warszawsko-Berlińska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9688,555540766,"POL","Birdlife IBA",1994,"Not Reported",23,"Zbiornik Jeziorsko","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9689,555577796,"POL","Birdlife IBA",2010,"Not Reported",23,"Doliny Przysowy i Słudwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9690,555540767,"POL","Birdlife IBA",1994,"Not Reported",23,"Gorce","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9691,555540768,"POL","Birdlife IBA",1994,"Not Reported",23,"Puszcza Niepołomicka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9692,555540769,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Dolnej Soły","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9693,555540770,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Dolnej Skawy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9694,555540771,"POL","Birdlife IBA",2004,"Not Reported",23,"Pasmo Policy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9695,555540772,"POL","Birdlife IBA",2004,"Not Reported",23,"Torfowiska Orawsko-Nowotarskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9696,555540774,"POL","Birdlife IBA",1994,"Not Reported",23,"Stawy w Brzeszczach","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9697,555540775,"POL","Birdlife IBA",1994,"Not Reported",23,"Babia Góra","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9698,555540776,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Dolnego Bugu","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9699,555540777,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Liwca","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9700,555540778,"POL","Birdlife IBA",2002,"Not Reported",23,"Dolina Pilicy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9701,555540779,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Środkowej Wisły","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9702,555540780,"POL","Birdlife IBA",2002,"Not Reported",23,"Doliny Omulwi i Płodownicy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9703,555540781,"POL","Birdlife IBA",1994,"Not Reported",23,"Małopolski Przełom Wisły","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9704,555540782,"POL","Birdlife IBA",1994,"Not Reported",23,"Puszcza Biała","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9705,555540783,"POL","Birdlife IBA",1994,"Not Reported",23,"Doliny Wkry i Mławki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9706,555540784,"POL","Birdlife IBA",2004,"Not Reported",23,"Dolina Kostrzynia","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9707,555540785,"POL","Birdlife IBA",1994,"Not Reported",23,"Bagno Całowanie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9708,555540786,"POL","Birdlife IBA",2004,"Not Reported",23,"Ostoja Kozienicka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9709,555540787,"POL","Birdlife IBA",2004,"Not Reported",23,"Dolina Dolnej Narwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9710,555577797,"POL","Birdlife IBA",2010,"Not Reported",23,"Bagno Pulwy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9711,555540788,"POL","Birdlife IBA",2002,"Not Reported",23,"Zbiornik Nyski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9712,555540789,"POL","Birdlife IBA",1994,"Not Reported",23,"Zbiornik Otmuchowski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9713,555540790,"POL","Birdlife IBA",1994,"Not Reported",23,"Zbiornik Turawa","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9714,555540791,"POL","Birdlife IBA",2002,"Not Reported",23,"Pogórze Przemyskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9715,555540792,"POL","Birdlife IBA",2004,"Not Reported",23,"Beskid Niski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9716,555540793,"POL","Birdlife IBA",2004,"Not Reported",23,"Góry Słonne","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9717,555540794,"POL","Birdlife IBA",2010,"Not Reported",23,"Puszcza Sandomierska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9718,555540795,"POL","Birdlife IBA",1994,"Not Reported",23,"Bagienna Dolina Narwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9719,555540796,"POL","Birdlife IBA",1994,"Not Reported",23,"Puszcza Augustowska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9720,555540797,"POL","Birdlife IBA",1994,"Not Reported",23,"Puszcza Knyszyńska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9721,555540798,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Górnego Nurca","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9722,555540799,"POL","Birdlife IBA",1994,"Not Reported",23,"Bagno Wizna","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9723,555540800,"POL","Birdlife IBA",1994,"Not Reported",23,"Ostoja Biebrzańska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9724,555540801,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Górnej Narwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9725,555540802,"POL","Birdlife IBA",1994,"Not Reported",23,"Przełomowa Dolina Narwi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9726,555540803,"POL","Birdlife IBA",1994,"Not Reported",23,"Wielki Sandr Brdy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9727,555540804,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Słupi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9728,555540805,"POL","Birdlife IBA",1994,"Not Reported",23,"Pobrzeże Słowińskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9729,555540806,"POL","Birdlife IBA",1994,"Not Reported",23,"Ujście Wisły","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9730,555540807,"POL","Birdlife IBA",2002,"Not Reported",23,"Zatoka Pucka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9731,555540808,"POL","Birdlife IBA",2004,"Not Reported",23,"Lasy Lęborskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9732,555540809,"POL","Birdlife IBA",2004,"Not Reported",23,"Puszcza Darżlubska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9733,555540810,"POL","Birdlife IBA",2004,"Not Reported",23,"Lasy Mirachowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9734,555540811,"POL","Birdlife IBA",2004,"Not Reported",23,"Bory Tucholskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9735,555540812,"POL","Birdlife IBA",1994,"Not Reported",23,"Bielawskie Błota","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9736,555540813,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Górnej Wisły","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9737,555540814,"POL","Birdlife IBA",2004,"Not Reported",23,"Beskid Żywiecki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9738,555540815,"POL","Birdlife IBA",1994,"Not Reported",23,"Stawy Wielikąt i Las Tworkowski","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9739,555540816,"POL","Birdlife IBA",2002,"Not Reported",23,"Dolina Nidy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9740,555540817,"POL","Birdlife IBA",1994,"Not Reported",23,"Bagna Nietlickie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9741,555540818,"POL","Birdlife IBA",2002,"Not Reported",23,"Dolina Pasłęki","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9742,555540819,"POL","Birdlife IBA",1994,"Not Reported",23,"Jezioro Łuknajno","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9743,555540820,"POL","Birdlife IBA",1994,"Not Reported",23,"Jezioro Oświn i okolice","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9744,555540821,"POL","Birdlife IBA",1994,"Not Reported",23,"Lasy Iławskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9745,555540822,"POL","Birdlife IBA",1994,"Not Reported",23,"Puszcza Borecka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9746,555540823,"POL","Birdlife IBA",1994,"Not Reported",23,"Puszcza Napiwodzko-Ramucka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9747,555540824,"POL","Birdlife IBA",2002,"Not Reported",23,"Puszcza Piska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9748,555540825,"POL","Birdlife IBA",1994,"Not Reported",23,"Zalew Wiślany","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9749,555540826,"POL","Birdlife IBA",2004,"Not Reported",23,"Lasy Skaliskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9750,555540827,"POL","Birdlife IBA",1994,"Not Reported",23,"Jezioro Dobskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9751,555540828,"POL","Birdlife IBA",1994,"Not Reported",23,"Jezioro Drużno","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9752,555540829,"POL","Birdlife IBA",2004,"Not Reported",23,"Ostoja Poligon Orzysz","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9753,555540830,"POL","Birdlife IBA",2004,"Not Reported",23,"Ostoja Warmińska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9754,555540831,"POL","Birdlife IBA",2002,"Not Reported",23,"Dolina Środkowej Noteci i Kanału Bydgoskiego","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9755,555540832,"POL","Birdlife IBA",2002,"Not Reported",23,"Dolina Środkowej Warty","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9756,555540833,"POL","Birdlife IBA",1994,"Not Reported",23,"Nadnoteckie Łęgi","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9757,555540834,"POL","Birdlife IBA",1994,"Not Reported",23,"Wielki Łęg Obrzański","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9758,555540835,"POL","Birdlife IBA",1994,"Not Reported",23,"Zbiornik Wonieść","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9759,555540836,"POL","Birdlife IBA",2004,"Not Reported",23,"Dolina Małej Wełny pod Kiszkowem","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9760,555540837,"POL","Birdlife IBA",2004,"Not Reported",23,"Dąbrowy Krotoszyńskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9761,555540838,"POL","Birdlife IBA",1994,"Not Reported",23,"Jezioro Zgierzynieckie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9762,555540839,"POL","Birdlife IBA",2002,"Not Reported",23,"Pojezierze Sławskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9763,555540840,"POL","Birdlife IBA",2004,"Not Reported",23,"Puszcza nad Gwdą","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9764,555540841,"POL","Birdlife IBA",2004,"Not Reported",23,"Dolina Samicy","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9765,555540842,"POL","Birdlife IBA",2004,"Not Reported",23,"Puszcza Notecka","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9766,555540843,"POL","Birdlife IBA",2002,"Not Reported",23,"Ostoja Rogalińska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9767,555540844,"POL","Birdlife IBA",1994,"Not Reported",23,"Bagna Rozwarowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9768,555540845,"POL","Birdlife IBA",1994,"Not Reported",23,"Delta Świny","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9769,555540846,"POL","Birdlife IBA",1994,"Not Reported",23,"Dolina Dolnej Odry","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9770,555540847,"POL","Birdlife IBA",1994,"Not Reported",23,"Jezioro Miedwie i okolice","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9771,555540848,"POL","Birdlife IBA",1994,"Not Reported",23,"Jezioro Świdwie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9772,555540849,"POL","Birdlife IBA",1994,"Not Reported",23,"Łąki Skoszewskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9773,555540850,"POL","Birdlife IBA",1994,"Not Reported",23,"Ostoja Ińska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9774,555540851,"POL","Birdlife IBA",1994,"Not Reported",23,"Zalew Szczeciński","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9775,555540852,"POL","Birdlife IBA",2004,"Not Reported",23,"Wybrzeże Trzebiatowskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9776,555540853,"POL","Birdlife IBA",1994,"Not Reported",23,"Zalew Kamieński i Dziwna","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9777,555540854,"POL","Birdlife IBA",2004,"Not Reported",23,"Puszcza Goleniowska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9778,555540855,"POL","Birdlife IBA",2004,"Not Reported",23,"Ostoja Wkrzańska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9779,555540856,"POL","Birdlife IBA",2004,"Not Reported",23,"Ostoja Witnicko-Dębniańska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9780,555540857,"POL","Birdlife IBA",2004,"Not Reported",23,"Lasy Puszczy nad Drawą","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9781,555540858,"POL","Birdlife IBA",2004,"Not Reported",23,"Ostoja Cedyńska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9782,555540859,"POL","Birdlife IBA",1994,"Not Reported",23,"Jeziora Wełtyńskie","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9783,555540860,"POL","Birdlife IBA",1994,"Not Reported",23,"Ostoja Drawska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9784,555540861,"POL","Birdlife IBA",2002,"Not Reported",23,"Przybrzeżne wody Bałtyku","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9785,555540862,"POL","Birdlife IBA",2002,"Not Reported",23,"Zatoka Pomorska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9786,555540863,"POL","Birdlife IBA",2004,"Not Reported",23,"Ujście Warty","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9787,555540864,"POL","Birdlife IBA",1994,"Not Reported",23,"Tatry","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9788,555577798,"POL","Birdlife IBA",1994,"Not Reported",23,"Pieniny","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9789,555540865,"POL","Birdlife IBA",1994,"Not Reported",23,"Puszcza Kampinoska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9790,555540866,"POL","Birdlife IBA",1994,"Not Reported",23,"Bieszczady","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9791,555540867,"POL","Birdlife IBA",1994,"Not Reported",23,"Puszcza Białowieska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9792,555540868,"POL","Birdlife IBA",2002,"Not Reported",23,"Ławica Słupska","Special Protection Area (Birds Directive)","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9793,851,"POL","European Diploma",1998,"Not Reported",23,"Bieszczadzki Park Narodowy","National Park","Poland Management Effectiveness Evaluation","Department of Nature Conservation",2018,"English","FALSE","FALSE",, +9794,555592586,"BHS","METT-RAPPAM",2018,"Not Reported",24,"Jew Fish Marine Reserve (Exuma Cays)","Marine Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9795,555592584,"BHS","METT-RAPPAM",2018,"Not Reported",24,"South Berry Island Marine Reserve","Marine Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9796,555592587,"BHS","METT-RAPPAM",2018,"Not Reported",24,"Crab Cay Marine Reserve","Fisheries Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9797,555592841,"BHS","METT-RAPPAM",2018,"Not Reported",24,"No Name Cay Marine Reserve","Fisheries Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9798,61793,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Rand Nature Centre","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9799,11840,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Peterson Cay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9800,11841,"BHS","METT-RAPPAM",2014,"Not Reported",25,"Lucayan National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9801,315001,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Walker’s Cay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9802,13939,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Black Sound Cay National Reserve","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9803,31341,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Tilloo Cay Reserve","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9804,555592579,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Fowl Cays National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9805,129917,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Abaco National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9806,11839,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Pelican Cays Land & Sea Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9807,315003,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Moriah Harbour Cay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9808,2228,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Exuma Cays Land & Sea Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9809,555592588,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Leon Levy National Park Preserve","Plant Preserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9810,555592589,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Marine Farms","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9811,555592590,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Hope Great House","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9812,555625717,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Graham’s Harbour Iguana and Seabird National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9813,555625719,"BHS","METT-RAPPAM",2018,"Not Reported",25,"West Coast Marine Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9814,555625715,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Pigeon Creek & Snow Bay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9815,555625716,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Southern Great Lake National Park","Protected Area","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9816,555625718,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Green’s Bay National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9817,555592582,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Andros North Marine Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9818,555592581,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Crab Replenishment Reserve","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9819,555592585,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Andros West Side National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9820,555592583,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Andros South Marine Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9821,555592580,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Andros Blue Hole National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9822,315002,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Bonefish Pond National Park","Ecological Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9823,13938,"BHS","METT-RAPPAM",2018,"Not Reported",25,"The Retreat","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9824,555592591,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Harrold and Wilson Pond National Park","Ecological Reserve","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9825,555592592,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Primeval Forest National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9826,2187,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Conception Island National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9827,315000,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Little Inagua National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9828,316891,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Union Creek Reserve","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9829,24,"BHS","METT-RAPPAM",2018,"Not Reported",25,"Inagua National Park","National Park","The Bahamas management effectiveness information","Department of Marine Resources",2018,"English","FALSE","FALSE",, +9830,10932,"KOR","Korea SOP",2016,"Not Reported",26,"Bukhansan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9831,30712,"KOR","Korea SOP",2016,"Not Reported",26,"Byeonsanbando","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9832,4736,"KOR","Korea SOP",2016,"Not Reported",26,"Dadohaehaesang","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9833,770,"KOR","Korea SOP",2016,"Not Reported",26,"Deogyusan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9834,776,"KOR","Korea SOP",2016,"Not Reported",26,"Gayasan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9835,772,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongju","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9836,775,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeryongsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9837,10931,"KOR","Korea SOP",2016,"Not Reported",26,"Hallasan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9838,766,"KOR","Korea SOP",2016,"Not Reported",26,"Hallyeohaesang","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9839,767,"KOR","Korea SOP",2016,"Not Reported",26,"Jirisan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9840,4734,"KOR","Korea SOP",2016,"Not Reported",26,"Juwangsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9841,774,"KOR","Korea SOP",2016,"Not Reported",26,"Naejangsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9842,769,"KOR","Korea SOP",2016,"Not Reported",26,"Odaesan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9843,768,"KOR","Korea SOP",2016,"Not Reported",26,"Seoraksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9844,773,"KOR","Korea SOP",2016,"Not Reported",26,"Songnisan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9845,4735,"KOR","Korea SOP",2016,"Not Reported",26,"Taeanhaean","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9846,30711,"KOR","Korea SOP",2016,"Not Reported",26,"Wolchulsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9847,10933,"KOR","Korea SOP",2016,"Not Reported",26,"Chiaksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9848,30710,"KOR","Korea SOP",2016,"Not Reported",26,"Sobaeksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9849,555557236,"KOR","Korea SOP",2016,"Not Reported",26,"Mudeungsan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9850,555622711,"KOR","Korea SOP",2016,"Not Reported",26,"Taebaeksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9851,10934,"KOR","Korea SOP",2016,"Not Reported",26,"Woraksan","National Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9852,555622125,"KOR","Korea SOP",2016,"Not Reported",26,"Byeongbangsan","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9853,555571321,"KOR","Korea SOP",2016,"Not Reported",26,"Myeongjisan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9854,555571322,"KOR","Korea SOP",2016,"Not Reported",26,"Hogusan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9855,555571335,"KOR","Korea SOP",2016,"Not Reported",26,"Sangjogam County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9856,555571336,"KOR","Korea SOP",2016,"Not Reported",26,"Bongmyeongsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9857,555571337,"KOR","Korea SOP",2016,"Not Reported",26,"Hwangmaesan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9858,555571338,"KOR","Korea SOP",2016,"Not Reported",26,"Bogyeongsa County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9859,555571339,"KOR","Korea SOP",2016,"Not Reported",26,"Bullyeonggyegok County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9860,555571324,"KOR","Korea SOP",2016,"Not Reported",26,"Ipgok County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9861,555571340,"KOR","Korea SOP",2016,"Not Reported",26,"Deokguoncheon County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9862,555571341,"KOR","Korea SOP",2016,"Not Reported",26,"Gososeong County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9863,555571342,"KOR","Korea SOP",2016,"Not Reported",26,"Ungseokbong County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9864,555571343,"KOR","Korea SOP",2016,"Not Reported",26,"Unmunsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9865,555571323,"KOR","Korea SOP",2016,"Not Reported",26,"Bangeosan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9866,555571346,"KOR","Korea SOP",2016,"Not Reported",26,"Amisan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9867,555571326,"KOR","Korea SOP",2016,"Not Reported",26,"Sinbulsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9868,555571327,"KOR","Korea SOP",2016,"Not Reported",26,"Hwawangsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9869,555571328,"KOR","Korea SOP",2016,"Not Reported",26,"Gangcheonsan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9870,555571329,"KOR","Korea SOP",2016,"Not Reported",26,"Geoyeolsanseong County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9871,555571331,"KOR","Korea SOP",2016,"Not Reported",26,"Daeiri County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9872,555571332,"KOR","Korea SOP",2016,"Not Reported",26,"Wolseonggyegok County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9873,555571333,"KOR","Korea SOP",2016,"Not Reported",26,"Jangansan County Park","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9874,555625826,"KOR","Korea SOP",2016,"Not Reported",26,"Binggye","County Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9875,555571365,"KOR","Korea SOP",2016,"Not Reported",26,"Yeonhwasan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9876,555571366,"KOR","Korea SOP",2016,"Not Reported",26,"Woodo Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9877,555571367,"KOR","Korea SOP",2016,"Not Reported",26,"Jogyesan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9878,555571354,"KOR","Korea SOP",2016,"Not Reported",26,"Daedunsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9879,555571355,"KOR","Korea SOP",2016,"Not Reported",26,"Deoksan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9880,555571357,"KOR","Korea SOP",2016,"Not Reported",26,"Mara Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9881,555571358,"KOR","Korea SOP",2016,"Not Reported",26,"Maisan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9882,555571359,"KOR","Korea SOP",2016,"Not Reported",26,"Moaksan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9883,555571360,"KOR","Korea SOP",2016,"Not Reported",26,"Mungyeongsaejae","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9884,555571361,"KOR","Korea SOP",2016,"Not Reported",26,"Seogwipo Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9885,555571362,"KOR","Korea SOP",2016,"Not Reported",26,"Seonunsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9886,555571363,"KOR","Korea SOP",2016,"Not Reported",26,"Seongsanilchul Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9887,555571370,"KOR","Korea SOP",2016,"Not Reported",26,"Chuja Marine","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9888,555571371,"KOR","Korea SOP",2016,"Not Reported",26,"Chilgapsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9889,555571373,"KOR","Korea SOP",2016,"Not Reported",26,"Palgongsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9890,555571349,"KOR","Korea SOP",2016,"Not Reported",26,"Gajisan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9891,555571350,"KOR","Korea SOP",2016,"Not Reported",26,"Gyoungpo","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9892,555571351,"KOR","Korea SOP",2016,"Not Reported",26,"Geumosan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9893,555571368,"KOR","Korea SOP",2016,"Not Reported",26,"Cheongwansan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9894,555571369,"KOR","Korea SOP",2016,"Not Reported",26,"Cheongnyangsan","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9895,555622124,"KOR","Korea SOP",2016,"Not Reported",26,"Jejugotjawal","Provincial Park","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9896,555594098,"KOR","METT",2017,"Not Reported",26,"Dogaegusa_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9897,478391,"KOR","METT",2017,"Not Reported",26,"Hyangnobong","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9898,555547911,"KOR","METT",2017,"Not Reported",26,"Mt. Jeokgeun Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9899,555558236,"KOR","METT",2017,"Not Reported",26,"Bogildo","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9900,555558247,"KOR","METT",2017,"Not Reported",26,"Deoguri","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9901,478393,"KOR","METT",2017,"Not Reported",26,"Sogwang-ri","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9902,478394,"KOR","METT",2017,"Not Reported",26,"Ulleungdo Seonginbong","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9903,555547912,"KOR","METT",2017,"Not Reported",26,"Dongbaekdongsan Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9904,555547913,"KOR","METT",2017,"Not Reported",26,"Sumeunmul Baengdeu Wetlands","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9905,555547915,"KOR","METT",2017,"Not Reported",26,"Mt. Kariwang Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9906,555594064,"KOR","METT",2017,"Not Reported",26,"Naejeoul_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9907,555558250,"KOR","METT",2017,"Not Reported",26,"Eulsugol","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9908,555547916,"KOR","METT",2017,"Not Reported",26,"Mt. Gyebang Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9909,555547920,"KOR","METT",2017,"Not Reported",26,"Punchbowl Forest Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9910,555558261,"KOR","METT",2017,"Not Reported",26,"Jangjaebong","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9911,555558266,"KOR","METT",2017,"Not Reported",26,"Mt. Barwang","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9912,555558277,"KOR","METT",2017,"Not Reported",26,"Mt. Yeogwi","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9913,555594077,"KOR","METT",2017,"Not Reported",26,"Hogyeong_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9914,555558273,"KOR","METT",2017,"Not Reported",26,"Mt. Gyeung","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9915,555558298,"KOR","METT",2017,"Not Reported",26,"Yeongsil","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9916,555594069,"KOR","METT",2017,"Not Reported",26,"Eosarideok_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9917,555594070,"KOR","METT",2017,"Not Reported",26,"Vly.Eoreum_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9918,555594061,"KOR","METT",2017,"Not Reported",26,"Vly.Jogae_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9919,555594062,"KOR","METT",2017,"Not Reported",26,"Vly.Dang_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9920,555594076,"KOR","METT",2017,"Not Reported",26,"Sandeok_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9921,555594058,"KOR","METT",2017,"Not Reported",26,"Mt.Bakji_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9922,555594059,"KOR","METT",2017,"Not Reported",26,"Ucheon_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9923,555594060,"KOR","METT",2017,"Not Reported",26,"Vly.Yanghyeon_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9924,555594091,"KOR","METT",2017,"Not Reported",26,"Bukam_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9925,555594112,"KOR","METT",2017,"Not Reported",26,"Mureung_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9926,555594068,"KOR","METT",2017,"Not Reported",26,"Sangbaejjae_Forest_Reserve","Forest Genetic Resources Reserve","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9927,555512289,"KOR","Korea SOP",2016,"Not Reported",26,"Jinkwannae-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9928,555558258,"KOR","Korea SOP",2016,"Not Reported",26,"Hasi-dong Aninsagu(Dune)","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9929,555512285,"KOR","Korea SOP",2016,"Not Reported",26,"Gwangyang Baegunsan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9930,555512279,"KOR","Korea SOP",2016,"Not Reported",26,"Bongsan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9931,555512281,"KOR","Korea SOP",2016,"Not Reported",26,"Changdukgung Rear Garden","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9932,555512288,"KOR","Korea SOP",2016,"Not Reported",26,"Inwangsan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9933,555512283,"KOR","Korea SOP",2016,"Not Reported",26,"Dunchon-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9934,555512293,"KOR","Korea SOP",2016,"Not Reported",26,"Namsan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9935,555512280,"KOR","Korea SOP",2016,"Not Reported",26,"Bulamsan Samyookdae","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9936,555512286,"KOR","Korea SOP",2016,"Not Reported",26,"Hangang Bamseom","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9937,555512287,"KOR","Korea SOP",2016,"Not Reported",26,"Heoninneung Royal Tombs","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9938,555512297,"KOR","Korea SOP",2016,"Not Reported",26,"Tancheon","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9939,555512278,"KOR","Korea SOP",2016,"Not Reported",26,"Bangi-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9940,555512284,"KOR","Korea SOP",2016,"Not Reported",26,"Godeok-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9941,555512277,"KOR","Korea SOP",2016,"Not Reported",26,"Amsa-dong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9942,555512282,"KOR","Korea SOP",2016,"Not Reported",26,"Donggang Watershed","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9943,555622226,"KOR","Korea SOP",2016,"Not Reported",26,"Seongnaecheon Downstream","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9944,555622229,"KOR","Korea SOP",2016,"Not Reported",26,"Myeongjisan, Cheonggyesan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9945,555622230,"KOR","Korea SOP",2016,"Not Reported",26,"Cheonggyesan Wonteogol","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9946,555622225,"KOR","Korea SOP",2016,"Not Reported",26,"Gwanaksan","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9947,555622222,"KOR","Korea SOP",2016,"Not Reported",26,"Daedeoksan-Geumdaebong","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9948,555622223,"KOR","Korea SOP",2016,"Not Reported",26,"Sohan Valley","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9949,555622224,"KOR","Korea SOP",2016,"Not Reported",26,"Baeksasil Valley","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9950,555622228,"KOR","Korea SOP",2016,"Not Reported",26,"Taehwagang(river)","Ecosystem and Landscape Conservation Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9951,555622219,"KOR","Korea SOP",2016,"Not Reported",26,"Daegu Dalseong Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9952,555622221,"KOR","Korea SOP",2016,"Not Reported",26,"Daechoengho Chudong Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9953,555512473,"KOR","Korea SOP",2016,"Not Reported",26,"Jangdo Island High Moor","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9954,555512477,"KOR","Korea SOP",2016,"Not Reported",26,"Sajapyeong of Jaeyaksan(Mt.)","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9955,555558234,"KOR","Korea SOP",2016,"Not Reported",26,"1100 Altitute Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9956,555512472,"KOR","Korea SOP",2016,"Not Reported",26,"Hwa-eomneup","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9957,555512480,"KOR","Korea SOP",2016,"Not Reported",26,"Yongneup of Mount Daeam","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9958,555512474,"KOR","Korea SOP",2016,"Not Reported",26,"Moojechineup","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9959,555512475,"KOR","Korea SOP",2016,"Not Reported",26,"Mulyeongari-oreum","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9960,555512470,"KOR","Korea SOP",2016,"Not Reported",26,"Du-ung Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9961,555558299,"KOR","Korea SOP",2016,"Not Reported",26,"Hanbando Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9962,555622216,"KOR","Korea SOP",2016,"Not Reported",26,"Wolyeong Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9963,555622217,"KOR","Korea SOP",2016,"Not Reported",26,"Sueunmulbaedui","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9964,555622218,"KOR","Korea SOP",2016,"Not Reported",26,"Doncheon Estuary","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9965,555512476,"KOR","Korea SOP",2016,"Not Reported",26,"Nakdonggang Estuary","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9966,555512469,"KOR","Korea SOP",2016,"Not Reported",26,"Damyang Riverine Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9967,555558279,"KOR","Korea SOP",2016,"Not Reported",26,"Muljangori-oreum","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9968,555558248,"KOR","Korea SOP",2016,"Not Reported",26,"Dongbaekdongsan","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9969,555558295,"KOR","Korea SOP",2016,"Not Reported",26,"Ungok Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9970,555558288,"KOR","Korea SOP",2016,"Not Reported",26,"Sangju Gonggeomji","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9971,555512471,"KOR","Korea SOP",2016,"Not Reported",26,"Hangang Estuary","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9972,555512478,"KOR","Korea SOP",2016,"Not Reported",26,"Sinbulsan Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9973,555512479,"KOR","Korea SOP",2016,"Not Reported",26,"Upo Wetland","Wetland Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9974,555512481,"KOR","MPA MEE",2017,"Not Reported",26,"Gochang","Wetland Protected Area - Tidal Flat","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9975,555558238,"KOR","MPA MEE",2017,"Not Reported",26,"Masan Bay Bongam","Wetland Protected Area - Tidal Flat","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9976,555622956,"KOR","Korea SOP",2016,"Not Reported",26,"Chungbuk Cheungju Muneoimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9977,555622929,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jeongeup Naejangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9978,555622996,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Goryeong Jisanri","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9979,555622741,"KOR","Korea SOP",2016,"Not Reported",26,"Chungbuk Jincheon Jincheoneup 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9980,555622742,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Hoengseong Seowonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9981,555622743,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Hoengseong Hoengseongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9982,555622739,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Haman Saninmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9983,555622740,"KOR","Korea SOP",2016,"Not Reported",26,"Chungbuk Jincheon Jincheoneup 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9984,555622744,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Hoengseong Gabcheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9985,555622745,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Chuncheon Seomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9986,555622746,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Chuncheon Dongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9987,555622747,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Chuncheon Woodudong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9988,555622748,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Miryang Sannaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9989,555622749,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Hapcheon Bongsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9990,555622811,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gapyeong Seorakmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9991,555622845,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Cheongyang Cheongyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9992,555622750,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Hapcheon Daebyeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9993,555622846,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Cheongyang Daechimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9994,555622757,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gwangyang Bonggangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9995,555622938,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changwon Uichanggu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9996,555622758,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gwangyang Gwangyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9997,555622759,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gwangyang Junggundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9998,555622939,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Gimhae jinyeongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +9999,555622713,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gwangju Opoeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10000,555622714,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gwangju Namhansanseongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10001,555622719,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Jinju Daepyeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10002,555622720,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Naju Gyeonghyundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10003,555622721,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Wando Wandoeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10004,555622826,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Gunsan Soryongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10005,555622722,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Seosan Buseokmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10006,555622726,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Muju Seolcheonmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10007,555622727,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changwon Jinhaegu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10008,555622728,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changwon Jinhaegu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10009,555622827,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jeonju Deokjingu 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10010,555622735,"KOR","Korea SOP",2016,"Not Reported",26,"Gwangju Bukgu Cheongpungdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10011,555622729,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Yeonggwang Bulgabmyeon (Bulgapsan)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10012,555622730,"KOR","Korea SOP",2016,"Not Reported",26,"Daejeon Donggu Secheondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10013,555622731,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Dongducheon Sangbongamdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10014,555622732,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Hwaseong Namyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10015,555622733,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gurye Gwangeuimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10016,555622734,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Haenam Samsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10017,555622736,"KOR","Korea SOP",2016,"Not Reported",26,"Gwangju Donggu Yongyeondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10018,555622737,"KOR","Korea SOP",2016,"Not Reported",26,"Gwangju Bukgu Geumgokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10019,555622724,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Hongseong Galsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10020,555622716,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Pochoen Shinbukmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10021,555622717,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Yangsan Gyodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10022,555622718,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Yangsan Wondongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10023,555622725,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Muju Seolcheonmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10024,555622738,"KOR","Korea SOP",2016,"Not Reported",26,"Gwangju Bukgu Hwaamdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10025,555622751,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Seosan Galsandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10026,555622752,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gurye Masanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10027,555622753,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Wando Bogilmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10028,555622754,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Seosan Buseokmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10029,555622755,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Naju Dadomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10030,555622756,"KOR","Korea SOP",2016,"Not Reported",26,"Ulsan Bukgu Songjeongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10031,555622760,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Jangheung Yuchimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10032,555622773,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Anyang Manangu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10033,555622761,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Jangheung Jangheungeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10034,555622764,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Gangneung Jeodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10035,555622769,"KOR","Korea SOP",2016,"Not Reported",26,"Incheon Junggu Unnamdong 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10036,555622770,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Wonju Hojeomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10037,555622762,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Boseong Boknaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10038,555622763,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Yanggu Bangsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10039,555622765,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Uijeongbu Howondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10040,555622774,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Taebaek Hwangjidong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10041,555622766,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Hongcheon Dongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10042,555622767,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gimpo Pungmoodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10043,555622768,"KOR","Korea SOP",2016,"Not Reported",26,"Incheon Junggu Unnamdong 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10044,555622776,"KOR","Korea SOP",2016,"Not Reported",26,"Chungbuk Goesan Cheongcheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10045,555622771,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Wonju sochomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10046,555622777,"KOR","Korea SOP",2016,"Not Reported",26,"Daejeon Seogu Doandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10047,555622772,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwo Wonju Heungeopmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10048,555622775,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Pyeongtaek Jinwimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10049,555622778,"KOR","Korea SOP",2016,"Not Reported",26,"Daejeon Seogu Gasuwondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10050,555622779,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Uijeongbu Sangokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10051,555622780,"KOR","Korea SOP",2016,"Not Reported",26,"Chungbuk Yeongdong Haksanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10052,555622957,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gwacheon Galhyeondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10053,555622958,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Hampyeong Daedongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10054,555622793,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gokseong Gokseongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10055,555622794,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gokseong Ogokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10056,555622828,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jeonju Deokjingu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10057,555622783,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Iksan Woongpomyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10058,555622784,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Wanju Gosanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10059,555622785,"KOR","Korea SOP",2016,"Not Reported",26,"Daegu Bukgu Dongbyeondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10060,555622786,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Buan Gyehwamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10061,555622791,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Buan Jinseomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10062,555622959,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Muan Mongtanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10063,555622960,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Mokpo Jukgyodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10064,555622787,"KOR","Korea SOP",2016,"Not Reported",26,"Daegu Donggu Geumgangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10065,555622788,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Imsil Gwanchonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10066,555622789,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Gimje Geumsanmyeon 3 (Moaksan)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10067,555622790,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Gimje Geumsanmyeon 2 (Geumsansa)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10068,555622795,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gokseong Godalmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10069,555622792,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Damyang Yongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10070,555622803,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Jindo Gunnaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10071,555622808,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Namyangju Sudongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10072,555622809,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Yangju Samsungdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10073,555622796,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Namwon Sannaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10074,555622804,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Jindo uisinmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10075,555622805,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gapyeong Hamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10076,555622797,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gokseong Jukgokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10077,555622798,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Hwasun Nammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10078,555622799,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Boseong Mundeokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10079,555622806,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gapyeong Sangdongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10080,555622997,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Goryeong Ssangrimmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10081,555622800,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Hwasun Chunyangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10082,555622802,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Boseong Hoecheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10083,555622807,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Namyangju Sudongmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10084,555622987,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gangjin Seonjeonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10085,555622988,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gangjin Chilryangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10086,555622810,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Yangju Jangheungmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10087,555622812,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwo Jeongseon Hwaammyeom","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10088,555622813,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gwangmyeong Noonsadong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10089,555622814,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Seongnam Jungwongu 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10090,555622815,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Seongnam Jungwongu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10091,555622816,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Seongnam Jungwongu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10092,555623003,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Gimcheon Nongsomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10093,555622832,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Gochang Asanmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10094,555622820,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Asan Songakmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10095,555622821,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Gongju Sagokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10096,555622822,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Gongju Gyeryongmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10097,555622842,"KOR","Korea SOP",2016,"Not Reported",26,"Chungbuk Jecheon Hansumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10098,555622823,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Gongju Gyeryongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10099,555622843,"KOR","Korea SOP",2016,"Not Reported",26,"Chungbuk Danyang Danyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10100,555623004,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Gimcheon Daedeokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10101,555622824,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Gongju Banpomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10102,555622825,"KOR","Korea SOP",2016,"Not Reported",26,"Chungbuk Okcheon Dongimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10103,555622829,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jeonju Deokjingu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10104,555622830,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Gochang Seongnaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10105,555622831,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Gochang Asanmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10106,555622833,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Sunchang Paldeokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10107,555622834,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Suncheon Songgwangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10108,555622835,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Suncheon Seungjueup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10109,555622836,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Suncheon Seokhyundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10110,555622837,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Suncheon Jogokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10111,555622844,"KOR","Korea SOP",2016,"Not Reported",26,"Sejong Yeongi Dongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10112,555622838,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Goheung Duwonmyeon (Unnamsan)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10113,555622839,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Goheung Namgyeri (Bonghwangsan)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10114,555622840,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Yangyang Hyunnammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10115,555622841,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Hwaseong Songsandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10116,555622853,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Hapcheon Gayamyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10117,555622849,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Wanju Unjumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10118,555622850,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Wanju Dongsangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10119,555622851,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Wanju Soyangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10120,555622852,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Wanju Gooimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10121,555622854,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Hamyang Hamyangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10122,555622855,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jangsu jangsueup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10123,555622866,"KOR","Korea SOP",2016,"Not Reported",26,"Incheon Ganghwagun Hwadomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10124,555622867,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Paju Gwangtanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10125,555622856,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jangsu Beonammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10126,555622858,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Goseong Geojineup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10127,555622868,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Paju Jorieup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10128,555623005,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Gimcheon Jeungsangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10129,555622859,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Goseong Jugwangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10130,555622860,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Hwacheon Hwacheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10131,555622861,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Hongcheon Naemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10132,555622862,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Pyeongchang Jinbumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10133,555622863,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Paju Jeokseongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10134,555622864,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gimpo Wolgokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10135,555622877,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Yangpyeong Yangpyeongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10136,555622878,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Yeoju Sanbukmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10137,555622879,"KOR","Korea SOP",2016,"Not Reported",26,"Umyeonsan 1 (Seoul Seochogu Umyeondong)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10138,555622865,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gimpo Haseongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10139,555622869,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Goyang Deokyanggu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10140,555622880,"KOR","Korea SOP",2016,"Not Reported",26,"Seoul Seochogu Wonjidong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10141,555622872,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Goyang Deokyanggu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10142,555622873,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Hongcheon Bukbangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10143,555622874,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Hongcheon Hongcheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10144,555622875,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Yangpyeong Yangseomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10145,555622876,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Yangpyeong Yongmunmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10146,555622881,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gwacheon Gwanmundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10147,555622884,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Anyang Dongangu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10148,555622889,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Pyeongchang Pyeongchangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10149,555622883,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gwacheon Jungangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10150,555622885,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Suwon Gwonseongu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10151,555622886,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Yongin Yubangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10152,555622890,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Yeongwol Yeongwoleup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10153,555622891,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Samcheok Miromyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10154,555622887,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Yeoju Cheonsongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10155,555622888,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Yeongwol Seomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10156,555622892,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Samcheok Seongnaedong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10157,555622893,"KOR","Korea SOP",2016,"Not Reported",26,"Chungbuk Chungju Suanbomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10158,555622903,"KOR","Korea SOP",2016,"Not Reported",26,"Sejong Yeongi Seomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10159,555622904,"KOR","Korea SOP",2016,"Not Reported",26,"Daejeon Daedeokgu Hwanghodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10160,555622910,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Buyeo Hongsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10161,555622906,"KOR","Korea SOP",2016,"Not Reported",26,"Daejeon Seogu Wolpyeongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10162,555622913,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jinan Jucheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10163,555622914,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jinan Bugwimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10164,555622915,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Iksan Geummamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10165,555622907,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Boryeong Seonjumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10166,555622908,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Buyeo Buyeoeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10167,555622923,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Geochang Buksangmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10168,555622917,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Buyeo Yanghwamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10169,555622918,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Iksan Mohyeondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10170,555622919,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Buan Byeonsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10171,555622920,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jeongeup Gongpyeongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10172,555622921,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Geochang Buksangmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10173,555622912,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Muju Jeoksangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10174,555622922,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Geochang Buksangmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10175,555622927,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jeongeup Shinseongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10176,555622928,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Jangseong Bukhamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10177,555622924,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jinan Jinaneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10178,555622925,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Gimje Geumsanmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10179,555622930,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Imsil Imsileup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10180,555622931,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Geochang Geochangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10181,555622932,"KOR","Korea SOP",2016,"Not Reported",26,"Ulsan Namgu Seonamdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10182,555622934,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Gimhae Sambangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10183,555622994,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk GyeongJu Baebandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10184,555622926,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Jeongeup Ssangamdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10185,555622940,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Gimhae Daedongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10186,555622935,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Gimhae Sangdongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10187,555622936,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changnyeong Changnyeongeup 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10188,555622937,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changnyeong Bugokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10189,555622944,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changwon Masanhappogu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10190,555622995,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk GyeongJu Naenammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10191,555622941,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Gimhae Jangyumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10192,555622942,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changwon Seongsangu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10193,555622943,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changwon Masanhappogu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10194,555622945,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Uiryeong Bongsumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10195,555622946,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Uiryeong Garyemyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10196,555622947,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Uiryeong Garyemyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10197,555622948,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Uiryeong Uiryeongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10198,555622954,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Namwon Gwangchidong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10199,555622949,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Hamyang Macheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10200,555622951,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Hadong Cheongammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10201,555622952,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Hadong Hwagaemyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10202,555622953,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gurye Tojimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10203,555622955,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Buyeo Eunsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10204,555622973,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Yeosu Jungheungdong 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10205,555622964,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Jinju Munsaneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10206,555622965,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Goseong Gaecheonmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10207,555622966,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Goseong Gaecheonmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10208,555622961,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Jinju Panmundong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10209,555622976,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Goseong Sangnimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10210,555622967,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Goseong Daegamyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10211,555622968,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Goseong Maammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10212,555622962,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Jinju Sangbongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10213,555622963,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Jinju Geumsanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10214,555622978,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Tongyeong Dosanmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10215,555622969,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sacheon Sacheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10216,555622984,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Yeosu Dolsaneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10217,555622970,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sacheon Yonghyeonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10218,555622971,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sacheon Gonmyeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10219,555622972,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Hwasun Hancheonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10220,555622979,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Tongyeong Gwangdomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10221,555622985,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Yeosu Hwayangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10222,555622980,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Tongyeong Donghodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10223,555622981,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Tongyeong Hansanmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10224,555623045,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Pohang Bukgu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10225,555622989,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Goheung Geumsanmyeon (Jeodae Peak)","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10226,555622990,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Yeongam Geumjeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10227,555622991,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Namwon Ayeongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10228,555622992,"KOR","Korea SOP",2016,"Not Reported",26,"Daegu Dalseong Hwawoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10229,555622993,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk GyeongJu Namsandong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10230,555622998,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Gumi Namtongdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10231,555622999,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Gumi Doryangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10232,555623000,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Gumi Seonsaneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10233,555623018,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yeong-yang Cheonggimyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10234,555623010,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Bonghwa Sangunmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10235,555623014,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Andong Seonggokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10236,555623015,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Andong Seohumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10237,555623016,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yecheon Yecheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10238,555623017,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yeong-deok Yeongdeokeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10239,555623019,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yeong-yang Cheonggimyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10240,555623020,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yeongju Buseokmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10241,555623021,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yeongju Yeongjudong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10242,555623022,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yeongju Buseokmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10243,555623023,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yeongju Sunheungmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10244,555623024,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yeongju Hamangdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10245,555623030,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yecheon Pungyangmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10246,555623031,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Yecheon Sangrimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10247,555623034,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Ul-jin Uljineup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10248,555623035,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Ul-jin Seomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10249,555623036,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Ul-jin Giseongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10250,555623050,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk GyeongJu Ahngangeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10251,555623051,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk GyeongJu Owidongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10252,555623040,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Cheongsong Budongmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10253,555623041,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Cheongsong Budongmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10254,555623054,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Gunsan Napomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10255,555623042,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Cheongsong Bunammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10256,555623043,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Cheongsong Budongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10257,555623044,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Pohang Honghaeeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10258,555623046,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Pohang Namgu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10259,555623047,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Pohang Namgu 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10260,555623048,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongbuk Pohang Bukgu 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10261,555623055,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Namwon Unbongmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10262,555623056,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changnyeong Changnyeongeup 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10263,555623058,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Namwon Sujimyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10264,555622950,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Geumseomyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10265,555622975,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Goseong Haimyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10266,555622916,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Iksan Woongpomyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10267,555622911,"KOR","Korea SOP",2016,"Not Reported",26,"Daegu Suseonggu Gomodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10268,555622801,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Gohyeonmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10269,555622986,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Yeongam Yeongameup 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10270,555622933,"KOR","Korea SOP",2016,"Not Reported",26,"Ulsan Bukgu Myeongchondong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10271,555622977,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Tongyeong Dosanmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10272,555622983,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Yidongmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10273,555622974,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Seolcheonmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10274,555622982,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Yidongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10275,555625940,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Iksan Woongpomyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10276,555625911,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Geumseomyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10277,555625909,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Danseongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10278,555625912,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Geumseomyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10279,555625910,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Danseongmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10280,555625863,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Chuncheon Soyangro","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10281,555625918,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Sancheongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10282,555625913,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Samjangmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10283,555625914,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Samjangmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10284,555625915,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Samjangmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10285,555625942,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Gwangyang Jinsangmyun","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10286,555625916,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Samjangmyeon 4","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10287,555625945,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Yeongam Yeongameup 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10288,555626043,"KOR","Korea SOP",2016,"Not Reported",26,"Ulsan Junggu Taehwadong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10289,555625917,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Samjangmyeon 5","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10290,555625920,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Sicheonmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10291,555626044,"KOR","Korea SOP",2016,"Not Reported",26,"Ulsan Namgu Mugeodong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10292,555625919,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Sicheonmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10293,555625902,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Hapcheon Gayamyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10294,555625921,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Sicheonmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10295,555625922,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Sancheong Sicheonmyeon 4","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10296,555625852,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam Seocheon Seocheoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10297,555626024,"KOR","Korea SOP",2016,"Not Reported",26,"Sejong Geumnammyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10298,555625901,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Goseong Haimyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10299,555625851,"KOR","Korea SOP",2016,"Not Reported",26,"Chungnam AsanInjumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10300,555625943,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Jangseong Jangseongeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10301,555625944,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonnam Jangseong Samgyemyun","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10302,555626030,"KOR","Korea SOP",2016,"Not Reported",26,"Seoul Nanjihanganggongwon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10303,555625898,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changnyeong Changnyeongeup 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10304,555625899,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Changnyeong Changnyeongeup 4","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10305,555625865,"KOR","Korea SOP",2016,"Not Reported",26,"Ghungnam Dangjin Seokmunmyun","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10306,555626028,"KOR","Korea SOP",2016,"Not Reported",26,"Seoul Jingwan","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10307,555626029,"KOR","Korea SOP",2016,"Not Reported",26,"Seoul Jungrangcheon Sangryu","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10308,555625900,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Geochang Gajomyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10309,555625862,"KOR","Korea SOP",2016,"Not Reported",26,"Gangwon Cheolwon Cheolwoneup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10310,555625897,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Pochoen Changsumyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10311,555625923,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Tongyeong Dosanmyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10312,555625924,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Yangsan Habukmyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10313,555625925,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Yangsan Habukmyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10314,555625905,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Sangjumyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10315,555625904,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Sangjumyeon 1","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10316,555625903,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Namhaeeup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10317,555625907,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Seolcheonyeon 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10318,555625906,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Seolcheonyeon 2","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10319,555625908,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeongnam Namhae Seolcheonyeon 4","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10320,555625941,"KOR","Korea SOP",2016,"Not Reported",26,"Jeonbuk Namwon Sangokdong","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10321,555625896,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Goyang Deokyanggu 3","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10322,555622712,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gwangju Docheokmyeon","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10323,555622715,"KOR","Korea SOP",2016,"Not Reported",26,"Gyeonggi Gwangju Chowoleup","Wildlife Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10324,555623057,"KOR","Korea SOP",2016,"Not Reported",26,"Otter habitat in Jinyang lake","Wildlife Special Protection Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10325,555622160,"KOR","Korea SOP",2016,"Not Reported",26,"174_Todo(jeungdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10326,555512441,"KOR","Korea SOP",2016,"Not Reported",26,"29_Sojido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10327,555512418,"KOR","Korea SOP",2016,"Not Reported",26,"31_Oebujido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10328,555512387,"KOR","Korea SOP",2016,"Not Reported",26,"130_Jokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10329,555622144,"KOR","Korea SOP",2016,"Not Reported",26,"172_Jinjioedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10330,555622145,"KOR","Korea SOP",2016,"Not Reported",26,"171_Naemaemuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10331,555622146,"KOR","Korea SOP",2016,"Not Reported",26,"170_Araetdonbaeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10332,555622147,"KOR","Korea SOP",2016,"Not Reported",26,"169_Seokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10333,555622148,"KOR","Korea SOP",2016,"Not Reported",26,"167_Byeondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10334,555622149,"KOR","Korea SOP",2016,"Not Reported",26,"165_Oehoenggyeondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10335,555622197,"KOR","Korea SOP",2016,"Not Reported",26,"208_Yeomseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10336,555622198,"KOR","Korea SOP",2016,"Not Reported",26,"186_Yukgakdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10337,555622186,"KOR","Korea SOP",2016,"Not Reported",26,"207_Boronseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10338,555622193,"KOR","Korea SOP",2016,"Not Reported",26,"204_Solseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10339,555622152,"KOR","Korea SOP",2016,"Not Reported",26,"164_Sibidongpado9","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10340,555622203,"KOR","Korea SOP",2016,"Not Reported",26,"192_Hyeongjedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10341,555622204,"KOR","Korea SOP",2016,"Not Reported",26,"193_Hyeongjedo1","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10342,555512393,"KOR","Korea SOP",2016,"Not Reported",26,"65_Jungchilgido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10343,555512434,"KOR","Korea SOP",2016,"Not Reported",26,"66_Sochilgido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10344,555622142,"KOR","Korea SOP",2016,"Not Reported",26,"15_Hangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10345,555622143,"KOR","Korea SOP",2016,"Not Reported",26,"1_Dokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10346,555512338,"KOR","Korea SOP",2016,"Not Reported",26,"50_Daegilsando","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10347,555622150,"KOR","Korea SOP",2016,"Not Reported",26,"168_Odo(jodo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10348,555622165,"KOR","Korea SOP",2016,"Not Reported",26,"182_Darado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10349,555622153,"KOR","Korea SOP",2016,"Not Reported",26,"161_Sibidongpado1","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10350,555622154,"KOR","Korea SOP",2016,"Not Reported",26,"162_Sibidongpado2","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10351,555622163,"KOR","Korea SOP",2016,"Not Reported",26,"180_Gudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10352,555622164,"KOR","Korea SOP",2016,"Not Reported",26,"185_Gukeulseom(gukyeoldo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10353,555622166,"KOR","Korea SOP",2016,"Not Reported",26,"183_Daesulgaedo(daeseonggaedo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10354,555622151,"KOR","Korea SOP",2016,"Not Reported",26,"163_Sibidongpado4","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10355,555622158,"KOR","Korea SOP",2016,"Not Reported",26,"176_Sopyeongyeodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10356,555622138,"KOR","Korea SOP",2016,"Not Reported",26,"107_Hoenggyeongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10357,555622139,"KOR","Korea SOP",2016,"Not Reported",26,"73_Sohwado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10358,555622140,"KOR","Korea SOP",2016,"Not Reported",26,"56_Hyeoldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10359,555622141,"KOR","Korea SOP",2016,"Not Reported",26,"98_Maeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10360,555622155,"KOR","Korea SOP",2016,"Not Reported",26,"166_Mumyeongdo(burando)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10361,555622156,"KOR","Korea SOP",2016,"Not Reported",26,"177_Gadeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10362,555622157,"KOR","Korea SOP",2016,"Not Reported",26,"175_Bodeunagiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10363,555622159,"KOR","Korea SOP",2016,"Not Reported",26,"173_Jimado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10364,555622161,"KOR","Korea SOP",2016,"Not Reported",26,"178_Hae1do","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10365,555622162,"KOR","Korea SOP",2016,"Not Reported",26,"179_Hae2do","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10366,555622167,"KOR","Korea SOP",2016,"Not Reported",26,"184_Oeyeopsando(mumyeongdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10367,555622168,"KOR","Korea SOP",2016,"Not Reported",26,"181_Jeodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10368,555622169,"KOR","Korea SOP",2016,"Not Reported",26,"216_Galdossangyeo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10369,555512331,"KOR","Korea SOP",2016,"Not Reported",26,"78_Chaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10370,555622170,"KOR","Korea SOP",2016,"Not Reported",26,"200_Galmaegiseom(seogalmaegiseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10371,555622171,"KOR","Korea SOP",2016,"Not Reported",26,"220_Galsando1","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10372,555622172,"KOR","Korea SOP",2016,"Not Reported",26,"218_Galsando2","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10373,555622173,"KOR","Korea SOP",2016,"Not Reported",26,"197_Gudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10374,555622174,"KOR","Korea SOP",2016,"Not Reported",26,"217_Nebawi","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10375,555622175,"KOR","Korea SOP",2016,"Not Reported",26,"215_Nogundo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10376,555622176,"KOR","Korea SOP",2016,"Not Reported",26,"209_Daegueulbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10377,555622177,"KOR","Korea SOP",2016,"Not Reported",26,"191_Daemado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10378,555622178,"KOR","Korea SOP",2016,"Not Reported",26,"212_Daehodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10379,555622184,"KOR","Korea SOP",2016,"Not Reported",26,"187_Barammagido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10380,555512336,"KOR","Korea SOP",2016,"Not Reported",26,"51_Daecheongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10381,555622179,"KOR","Korea SOP",2016,"Not Reported",26,"213_Dolgeochillido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10382,555622180,"KOR","Korea SOP",2016,"Not Reported",26,"188_Dunbukseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10383,555622181,"KOR","Korea SOP",2016,"Not Reported",26,"210_Ttandokseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10384,555622182,"KOR","Korea SOP",2016,"Not Reported",26,"195_Maemuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10385,555622183,"KOR","Korea SOP",2016,"Not Reported",26,"199_Milmaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10386,555622185,"KOR","Korea SOP",2016,"Not Reported",26,"219_Baeksado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10387,555512314,"KOR","Korea SOP",2016,"Not Reported",26,"79_Akdo(jangguseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10388,555622187,"KOR","Korea SOP",2016,"Not Reported",26,"189_Bulmugido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10389,555622188,"KOR","Korea SOP",2016,"Not Reported",26,"203_Sangbanggodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10390,555622189,"KOR","Korea SOP",2016,"Not Reported",26,"211_Saetgaekkeut","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10391,555622199,"KOR","Korea SOP",2016,"Not Reported",26,"198_Junggalmaegiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10392,555622190,"KOR","Korea SOP",2016,"Not Reported",26,"214_Sogueulbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10393,555622191,"KOR","Korea SOP",2016,"Not Reported",26,"196_Sodeogudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10394,555622192,"KOR","Korea SOP",2016,"Not Reported",26,"221_Sochiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10395,555622194,"KOR","Korea SOP",2016,"Not Reported",26,"194_Songdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10396,555622195,"KOR","Korea SOP",2016,"Not Reported",26,"206_Suryeongseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10397,555622196,"KOR","Korea SOP",2016,"Not Reported",26,"190_Anmaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10398,555622200,"KOR","Korea SOP",2016,"Not Reported",26,"201_Jungbanggodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10399,555622201,"KOR","Korea SOP",2016,"Not Reported",26,"205_Jikgudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10400,555622202,"KOR","Korea SOP",2016,"Not Reported",26,"202_Habanggodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10401,555622205,"KOR","Korea SOP",2016,"Not Reported",26,"222_Sochodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10402,555622206,"KOR","Korea SOP",2016,"Not Reported",26,"223_Jeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10403,555622207,"KOR","Korea SOP",2016,"Not Reported",26,"228_Maryukdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10404,555622208,"KOR","Korea SOP",2016,"Not Reported",26,"229_Maebakseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10405,555512332,"KOR","Korea SOP",2016,"Not Reported",26,"133_Cheongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10406,555622209,"KOR","Korea SOP",2016,"Not Reported",26,"224_Daegadeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10407,555512379,"KOR","Korea SOP",2016,"Not Reported",26,"80_Hyeoldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10408,555622210,"KOR","Korea SOP",2016,"Not Reported",26,"225_Nanggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10409,555512339,"KOR","Korea SOP",2016,"Not Reported",26,"46_Daehangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10410,555622211,"KOR","Korea SOP",2016,"Not Reported",26,"226_Sonanggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10411,555512446,"KOR","Korea SOP",2016,"Not Reported",26,"116_Songdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10412,555622212,"KOR","Korea SOP",2016,"Not Reported",26,"227_Seogakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10413,555512374,"KOR","Korea SOP",2016,"Not Reported",26,"132_Heukgeomdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10414,555622213,"KOR","Korea SOP",2016,"Not Reported",26,"231_Oejodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10415,555512368,"KOR","Korea SOP",2016,"Not Reported",26,"25_Habajiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10416,555622214,"KOR","Korea SOP",2016,"Not Reported",26,"232_Sehangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10417,555622215,"KOR","Korea SOP",2016,"Not Reported",26,"230_Oryeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10418,555512461,"KOR","Korea SOP",2016,"Not Reported",26,"111_Ttanjeonggeumdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10419,555512365,"KOR","Korea SOP",2016,"Not Reported",26,"126_Gotdo(kkotseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10420,555512325,"KOR","Korea SOP",2016,"Not Reported",26,"125_Bukgyeongnyeolbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10421,555512408,"KOR","Korea SOP",2016,"Not Reported",26,"127_Myodo(tokkiseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10422,555512443,"KOR","Korea SOP",2016,"Not Reported",26,"128_Solseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10423,555512416,"KOR","Korea SOP",2016,"Not Reported",26,"52_Odo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10424,555512333,"KOR","Korea SOP",2016,"Not Reported",26,"53_Chudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10425,555512375,"KOR","Korea SOP",2016,"Not Reported",26,"54_Hoenggyeondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10426,555512412,"KOR","Korea SOP",2016,"Not Reported",26,"48_Namuseom(sangmokdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10427,555512413,"KOR","Korea SOP",2016,"Not Reported",26,"49_Napjakdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10428,555512419,"KOR","Korea SOP",2016,"Not Reported",26,"112_Oechido(keunttanchido)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10429,555512410,"KOR","Korea SOP",2016,"Not Reported",26,"108_Naejodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10430,555512346,"KOR","Korea SOP",2016,"Not Reported",26,"109_Dalludo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10431,555512340,"KOR","Korea SOP",2016,"Not Reported",26,"110_Daehyeongjedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10432,555512322,"KOR","Korea SOP",2016,"Not Reported",26,"105_Bonongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10433,555512439,"KOR","Korea SOP",2016,"Not Reported",26,"106_Sohoenggyeongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10434,555512357,"KOR","Korea SOP",2016,"Not Reported",26,"77_Galdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10435,555512454,"KOR","Korea SOP",2016,"Not Reported",26,"75_Soyeonpochodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10436,555512448,"KOR","Korea SOP",2016,"Not Reported",26,"76_Songdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10437,555512414,"KOR","Korea SOP",2016,"Not Reported",26,"43_Naptaegido(seodaegido)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10438,555512316,"KOR","Korea SOP",2016,"Not Reported",26,"44_Baegyado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10439,555512363,"KOR","Korea SOP",2016,"Not Reported",26,"141_Goldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10440,555512356,"KOR","Korea SOP",2016,"Not Reported",26,"142_Gakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10441,555512343,"KOR","Korea SOP",2016,"Not Reported",26,"143_Daesamdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10442,555512337,"KOR","Korea SOP",2016,"Not Reported",26,"64_Daechilgido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10443,555512330,"KOR","Korea SOP",2016,"Not Reported",26,"40_Byeongpungdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10444,555512370,"KOR","Korea SOP",2016,"Not Reported",26,"41_Haenggeumdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10445,555512457,"KOR","Korea SOP",2016,"Not Reported",26,"42_Tanhangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10446,555512347,"KOR","Korea SOP",2016,"Not Reported",26,"61_Darajido(naktaseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10447,555512335,"KOR","Korea SOP",2016,"Not Reported",26,"62_Daebyeongpungdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10448,555512437,"KOR","Korea SOP",2016,"Not Reported",26,"63_Sodarangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10449,555512320,"KOR","Korea SOP",2016,"Not Reported",26,"67_Bido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10450,555512447,"KOR","Korea SOP",2016,"Not Reported",26,"68_Songdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10451,555512449,"KOR","Korea SOP",2016,"Not Reported",26,"69_Sosado(geobukseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10452,555512342,"KOR","Korea SOP",2016,"Not Reported",26,"70_Daesado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10453,555512380,"KOR","Korea SOP",2016,"Not Reported",26,"71_Jaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10454,555512395,"KOR","Korea SOP",2016,"Not Reported",26,"72_Junghwado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10455,555512385,"KOR","Korea SOP",2016,"Not Reported",26,"91_Jinmokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10456,555512386,"KOR","Korea SOP",2016,"Not Reported",26,"55_Jinseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10457,555512359,"KOR","Korea SOP",2016,"Not Reported",26,"57_Galmado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10458,555512327,"KOR","Korea SOP",2016,"Not Reported",26,"58_Bulgeundo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10459,555512429,"KOR","Korea SOP",2016,"Not Reported",26,"59_Seomeoduji(eodudo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10460,555512391,"KOR","Korea SOP",2016,"Not Reported",26,"89_Jukdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10461,555512465,"KOR","Korea SOP",2016,"Not Reported",26,"60_Wondo2(durongseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10462,555512390,"KOR","Korea SOP",2016,"Not Reported",26,"147_Jukdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10463,555512450,"KOR","Korea SOP",2016,"Not Reported",26,"148_Sosongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10464,555512315,"KOR","Korea SOP",2016,"Not Reported",26,"149_Anmokseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10465,555512318,"KOR","Korea SOP",2016,"Not Reported",26,"150_Bangmokseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10466,555512323,"KOR","Korea SOP",2016,"Not Reported",26,"144_Budo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10467,555512383,"KOR","Korea SOP",2016,"Not Reported",26,"145_Janggudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10468,555512366,"KOR","Korea SOP",2016,"Not Reported",26,"146_Goyeo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10469,555512466,"KOR","Korea SOP",2016,"Not Reported",26,"90_Wondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10470,555512420,"KOR","Korea SOP",2016,"Not Reported",26,"92_Oenseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10471,555512440,"KOR","Korea SOP",2016,"Not Reported",26,"93_Sojeongseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10472,555512341,"KOR","Korea SOP",2016,"Not Reported",26,"94_Daejeongseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10473,555512468,"KOR","Korea SOP",2016,"Not Reported",26,"95_Yeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10474,555512438,"KOR","Korea SOP",2016,"Not Reported",26,"96_Soheosado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10475,555512328,"KOR","Korea SOP",2016,"Not Reported",26,"99_Bunamseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10476,555512344,"KOR","Korea SOP",2016,"Not Reported",26,"100_Daeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10477,555512376,"KOR","Korea SOP",2016,"Not Reported",26,"101_Hogamseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10478,555512360,"KOR","Korea SOP",2016,"Not Reported",26,"102_Galmaeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10479,555512317,"KOR","Korea SOP",2016,"Not Reported",26,"103_Bakdariseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10480,555512319,"KOR","Korea SOP",2016,"Not Reported",26,"104_Beopgoseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10481,555512463,"KOR","Korea SOP",2016,"Not Reported",26,"129_Hwado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10482,555512354,"KOR","Korea SOP",2016,"Not Reported",26,"131_Gaerindo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10483,555512415,"KOR","Korea SOP",2016,"Not Reported",26,"87_Odo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10484,555512350,"KOR","Korea SOP",2016,"Not Reported",26,"88_Durido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10485,555512362,"KOR","Korea SOP",2016,"Not Reported",26,"47_Gokdudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10486,555512402,"KOR","Korea SOP",2016,"Not Reported",26,"45_Mokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10487,555512324,"KOR","Korea SOP",2016,"Not Reported",26,"20_Budo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10488,555512459,"KOR","Korea SOP",2016,"Not Reported",26,"21_Tokkiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10489,555512367,"KOR","Korea SOP",2016,"Not Reported",26,"22_Gwangdaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10490,555512423,"KOR","Korea SOP",2016,"Not Reported",26,"23_Sangbajiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10491,555512392,"KOR","Korea SOP",2016,"Not Reported",26,"24_Jungbajiseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10492,555512401,"KOR","Korea SOP",2016,"Not Reported",26,"26_Meongaeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10493,555512428,"KOR","Korea SOP",2016,"Not Reported",26,"137_Seomando","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10494,555512430,"KOR","Korea SOP",2016,"Not Reported",26,"10_Shindo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10495,555512351,"KOR","Korea SOP",2016,"Not Reported",26,"11_Eopyeongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10496,555512407,"KOR","Korea SOP",2016,"Not Reported",26,"12_Mungtungdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10497,555512435,"KOR","Korea SOP",2016,"Not Reported",26,"13_Sochojido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10498,555512372,"KOR","Korea SOP",2016,"Not Reported",26,"14_Halmiyeom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10499,555512355,"KOR","Korea SOP",2016,"Not Reported",26,"16_Gakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10500,555512460,"KOR","Korea SOP",2016,"Not Reported",26,"17_Tonggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10501,555512452,"KOR","Korea SOP",2016,"Not Reported",26,"18_Sotonggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10502,555512394,"KOR","Korea SOP",2016,"Not Reported",26,"19_Jungtonggakeuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10503,555512462,"KOR","Korea SOP",2016,"Not Reported",26,"2_Udo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10504,555512321,"KOR","Korea SOP",2016,"Not Reported",26,"3_Bido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10505,555512427,"KOR","Korea SOP",2016,"Not Reported",26,"4_Seokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10506,555512455,"KOR","Korea SOP",2016,"Not Reported",26,"5_Suribong","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10507,555512456,"KOR","Korea SOP",2016,"Not Reported",26,"6_Susido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10508,555512329,"KOR","Korea SOP",2016,"Not Reported",26,"7_Bunjido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10509,555512451,"KOR","Korea SOP",2016,"Not Reported",26,"8_Sosongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10510,555512345,"KOR","Korea SOP",2016,"Not Reported",26,"9_Daesongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10511,555512398,"KOR","Korea SOP",2016,"Not Reported",26,"81_Mado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10512,555512444,"KOR","Korea SOP",2016,"Not Reported",26,"82_Somado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10513,555512417,"KOR","Korea SOP",2016,"Not Reported",26,"83_Odongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10514,555512382,"KOR","Korea SOP",2016,"Not Reported",26,"84_Jangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10515,555512458,"KOR","Korea SOP",2016,"Not Reported",26,"85_Todo(tokkiseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10516,555512432,"KOR","Korea SOP",2016,"Not Reported",26,"86_Socheomdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10517,555512467,"KOR","Korea SOP",2016,"Not Reported",26,"120_Umuseom(umudo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10518,555512378,"KOR","Korea SOP",2016,"Not Reported",26,"121_Hyanggido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10519,555512442,"KOR","Korea SOP",2016,"Not Reported",26,"118_Solseom(akdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10520,555512371,"KOR","Korea SOP",2016,"Not Reported",26,"119_Hakseom(hakdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10521,555512364,"KOR","Korea SOP",2016,"Not Reported",26,"155_Gomseom(ungdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10522,555512425,"KOR","Korea SOP",2016,"Not Reported",26,"134_Sangjangdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10523,555512397,"KOR","Korea SOP",2016,"Not Reported",26,"39_Maando","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10524,555512389,"KOR","Korea SOP",2016,"Not Reported",26,"36_Jugamdo(Mido)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10525,555512445,"KOR","Korea SOP",2016,"Not Reported",26,"135_Somokgwado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10526,555512422,"KOR","Korea SOP",2016,"Not Reported",26,"35_Sado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10527,555512403,"KOR","Korea SOP",2016,"Not Reported",26,"37_Mokdo(Budo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10528,555512361,"KOR","Korea SOP",2016,"Not Reported",26,"38_Godo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10529,555512358,"KOR","Korea SOP",2016,"Not Reported",26,"117_Galdo(galgotdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10530,555512433,"KOR","Korea SOP",2016,"Not Reported",26,"34_Sochido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10531,555512426,"KOR","Korea SOP",2016,"Not Reported",26,"33_Sejondo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10532,555512404,"KOR","Korea SOP",2016,"Not Reported",26,"154_Mullaeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10533,555512464,"KOR","Korea SOP",2016,"Not Reported",26,"153_Witdaehoseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10534,555512369,"KOR","Korea SOP",2016,"Not Reported",26,"152_Habisado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10535,555512424,"KOR","Korea SOP",2016,"Not Reported",26,"151_Sangbisado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10536,555512431,"KOR","Korea SOP",2016,"Not Reported",26,"113_Sobyeongdaedo(nureongseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10537,555512334,"KOR","Korea SOP",2016,"Not Reported",26,"114_Daebyeongdaedo(jungsamseom)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10538,555512436,"KOR","Korea SOP",2016,"Not Reported",26,"115_Sodapodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10539,555512421,"KOR","Korea SOP",2016,"Not Reported",26,"123_Okdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10540,555512409,"KOR","Korea SOP",2016,"Not Reported",26,"124_Myodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10541,555512373,"KOR","Korea SOP",2016,"Not Reported",26,"122_Heugeodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10542,555512348,"KOR","Korea SOP",2016,"Not Reported",26,"32_Deungdaedo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10543,555512400,"KOR","Korea SOP",2016,"Not Reported",26,"136_Makdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10544,555512396,"KOR","Korea SOP",2016,"Not Reported",26,"30_Jwasarido(Jasarido)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10545,555512377,"KOR","Korea SOP",2016,"Not Reported",26,"27_Hongdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10546,555512352,"KOR","Korea SOP",2016,"Not Reported",26,"28_Eoyudo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10547,555512326,"KOR","Korea SOP",2016,"Not Reported",26,"139_Bukyeongjeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10548,555512411,"KOR","Korea SOP",2016,"Not Reported",26,"138_Namhyeongjeseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10549,555512388,"KOR","Korea SOP",2016,"Not Reported",26,"140_Jujeonjaseom(saengdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10550,555512405,"KOR","Korea SOP",2016,"Not Reported",26,"158_Muneobukdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10551,555512406,"KOR","Korea SOP",2016,"Not Reported",26,"159_Muneonamdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10552,555512353,"KOR","Korea SOP",2016,"Not Reported",26,"160_Gadeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10553,555512381,"KOR","Korea SOP",2016,"Not Reported",26,"156_Jamdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10554,555512384,"KOR","Korea SOP",2016,"Not Reported",26,"157_Jangguseom","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10555,555625809,"KOR","Korea SOP",2016,"Not Reported",26,"235_Donggyeokryulbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10556,555625810,"KOR","Korea SOP",2016,"Not Reported",26,"236_Seogyeokryulbido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10557,555625811,"KOR","Korea SOP",2016,"Not Reported",26,"237_Heuinyeo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10558,555625812,"KOR","Korea SOP",2016,"Not Reported",26,"238_Boksaengdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10559,555625816,"KOR","Korea SOP",2016,"Not Reported",26,"242_Haseodo(Sureongdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10560,555625815,"KOR","Korea SOP",2016,"Not Reported",26,"241_Angeochillidon╚░e─Ñvati","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10561,555625814,"KOR","Korea SOP",2016,"Not Reported",26,"240_Nonggado","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10562,555625808,"KOR","Korea SOP",2016,"Not Reported",26,"234_Seokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10563,555625813,"KOR","Korea SOP",2016,"Not Reported",26,"239_Yuksando","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10564,555625821,"KOR","Korea SOP",2016,"Not Reported",26,"247_Chunbokdo(Chungbokdo)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10565,555625820,"KOR","Korea SOP",2016,"Not Reported",26,"246_Sodeokdo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10566,555625819,"KOR","Korea SOP",2016,"Not Reported",26,"245_Daehyuldo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10567,555625818,"KOR","Korea SOP",2016,"Not Reported",26,"244_Jasarijedo(5)","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10568,555625817,"KOR","Korea SOP",2016,"Not Reported",26,"243_Solyeodo","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10569,555625807,"KOR","Korea SOP",2016,"Not Reported",26,"233_Gujido","Special Island","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10570,555558286,"KOR","MPA MEE",2017,"Not Reported",26,"Oryuk-do (island) and Neighboring Water","Marine Protected Area","The Republic of Korea protected area management effectiveness assessments","Korea National Park Service",2018,"English","FALSE","FALSE",, +10571,9164,"BDI","IMET",2015,"Not Reported",27,"Bururi Forest","Nature Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10572,9161,"BDI","IMET",2015,"Not Reported",27,"Kibira","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10573,9160,"BDI","IMET",2015,"Not Reported",27,"Parc national du Ruvubu","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10574,555558381,"BDI","IMET",2015,"Not Reported",27,"Paysage Aquatique Protégé du Nord","Ramsar Site, Wetland of International Importance","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10575,61707,"BDI","IMET",2015,"Not Reported",27,"Gisagara","Nature Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10576,9162,"BDI","IMET",2015,"Not Reported",27,"R�serve naturelle du Rusizi","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10577,101434,"BDI","IMET",2016,"Not Reported",27,"For�t de Vyanda","Nature Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10578,9165,"BDI","IMET",2016,"Not Reported",27,"R�serve naturelle de Rumonge","Nature Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10579,9166,"BDI","IMET",2016,"Not Reported",27,"Kigwena Forest","Nature Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10581,9168,"BDI","IMET",2016,"Not Reported",27,"Chutes de Karera","Nature Monument","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10582,9167,"BDI","IMET",2016,"Not Reported",27,"Faille de Nyakazu","Nature Monument","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10583,555558380,"BDI","IMET",2016,"Not Reported",27,"R�serve Naturelle de la Malagarazi","Ramsar Site, Wetland of International Importance","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10584,28464,"BDI","IMET",2016,"Not Reported",27,"Monge Forest","Nature Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10585,606,"CMR","IMET",2015,"Not Reported",27,"Bouba Ndjida","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10586,607,"CMR","IMET",2015,"Not Reported",27,"B�nou�","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10587,1242,"CMR","IMET",2015,"Not Reported",27,"Campo-Ma'an","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10588,1245,"CMR","IMET",0,"Not Reported",27,"Lob�k�","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10589,17758,"CMR","IMET",0,"Not Reported",27,"Dja Faunal Reserve","World Heritage Site","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10590,20058,"CMR","IMET",0,"Not Reported",27,"Korup","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10591,20166,"CMR","IMET",2015,"Not Reported",27,"Mbam et Djerem","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10592,643,"COG","IMET",2015,"Not Reported",27,"Odzala Kokoua","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10593,2266,"COG","IMET",2015,"Not Reported",27,"Léfini","Wildlife Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10594,99855,"COG","IMET",2016,"Not Reported",27,"Tchimpounga","Wildlife Sanctuary","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10595,99862,"COG","IMET",2015,"Not Reported",27,"Lessio-Louna","Wildlife Sanctuary","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10596,313401,"COG","IMET",2016,"Not Reported",27,"Conkouati-Douli","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10597,72320,"GAB","IMET",2015,"Not Reported",27,"Akanda","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10598,72324,"GAB","IMET",2015,"Not Reported",27,"Minkebe","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10599,301850,"GAB","IMET",2015,"Not Reported",27,"Mayumba","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10600,303872,"GAB","IMET",2015,"Not Reported",27,"Biringou","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10601,303873,"GAB","IMET",2015,"Not Reported",27,"Ivindo","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10602,303874,"GAB","IMET",2015,"Not Reported",27,"Loango","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10603,303875,"GAB","IMET",2015,"Not Reported",27,"Lop�","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10604,303877,"GAB","IMET",2015,"Not Reported",27,"Moukalaba doudou","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10605,303878,"GAB","IMET",2015,"Not Reported",27,"Mwagne","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10606,303879,"GAB","IMET",2015,"Not Reported",27,"Pongara","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10607,303880,"GAB","IMET",2015,"Not Reported",27,"Waka","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10608,306235,"GAB","IMET",2015,"Not Reported",27,"Plateaux Batéké","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10609,306237,"GAB","IMET",2015,"Not Reported",27,"Monts de Cristal","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10613,12201,"BEN","IMET",2016,"Not Reported",27,"W (Benin)","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10614,597,"BEN","IMET",2016,"Not Reported",27,"Boucle de la Pendjari","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10616,2344,"BFA","IMET",2016,"Not Reported",27,"Deux Bales","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10617,28530,"BFA","IMET",2016,"Not Reported",27,"Tisse","Classified Forest","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10618,1048,"BFA","IMET",2016,"Not Reported",27,"W du Burkina Faso","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10619,9264,"BFA","IMET",2016,"Not Reported",27,"Arly","Partial Faunal Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10620,721,"CIV","IMET",2016,"Not Reported",27,"Tai National Park","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10621,9545,"CIV","IMET",2016,"Not Reported",27,"Como� National Park","World Heritage Site","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10622,723,"CIV","IMET",2016,"Not Reported",27,"Mont Sangbe National Park","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10623,725,"CIV","IMET",2016,"Not Reported",27,"Banco National Park","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10624,33047,"GNB","IMET",2016,"Not Reported",27,"Orango","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10625,317052,"GNB","IMET",2016,"Not Reported",27,"João Vieira and Poilão Marine National Park","Marine National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10626,351088,"GNB","IMET",2016,"Not Reported",27,"Cantanhez Forest","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10627,797,"MRT","IMET",2016,"Not Reported",27,"Banc d'Arguin","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10628,5174,"MRT","IMET",2016,"Not Reported",27,"Cap Blanc","Satellite Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10629,95349,"MRT","IMET",2016,"Not Reported",27,"Parc National du Diawling","Ramsar Site, Wetland of International Importance","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10630,17367,"NER","IMET",2016,"Not Reported",27,"R�serve Naturelle et Culturelle de Termit-Tintoumma","National Nature Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10631,67727,"NER","IMET",2016,"Not Reported",27,"A�r and T�n�r� Natural Reserves","World Heritage Site","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10632,3230,"NER","IMET",2016,"Not Reported",27,"R�serve de faune de Gadabedji","Faunal Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10633,2253,"BEN","IMET",2016,"Not Reported",27,"Pendjari","Hunting Zone","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10634,866,"SEN","IMET",2016,"Not Reported",27,"Delta du Saloum","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10635,12263,"SEN","IMET",2016,"Not Reported",27,"Poponguine","Nature Reserve","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10636,352705,"SEN","IMET",2016,"Not Reported",27,"Kayar","Marine Protected Area","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10637,352706,"SEN","IMET",2016,"Not Reported",27,"Joal","Marine Protected Area","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10639,352704,"SEN","IMET",2016,"Not Reported",27,"Saint-Louis","Marine Protected Area","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10640,865,"SEN","IMET",2016,"Not Reported",27,"Niokolo Koba","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10641,867,"SEN","IMET",2016,"Not Reported",27,"Oiseaux de Djoudj","National Park","JRC IMET information","JRC",2018,"English","FALSE","FALSE",, +10643,103547,"ALB","Birdlife IBA",2013,"Not Reported",28,"Karavasta Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10644,555549369,"ARM","METT",2009,"Not Reported",28,"Plane Grove","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10645,555549369,"ARM","METT",2012,"Not Reported",28,"Plane Grove","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10646,555549374,"ARM","METT",2009,"Not Reported",28,"Sev Lich","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10647,555549374,"ARM","METT",2012,"Not Reported",28,"Sev Lich","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10648,20679,"ARM","METT",2005,"Not Reported",28,"Shikahogh","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10649,20679,"ARM","METT",2012,"Not Reported",28,"Shikahogh","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10650,555549370,"ARM","METT",2012,"Not Reported",28,"Zangezur","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10651,1629,"ARM","Birdlife IBA",2013,"Not Reported",28,"Sevan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10652,555549381,"ARM","METT",2009,"Not Reported",28,"Margahovit","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10653,555549370,"ARM","METT",2014,"Not Reported",28,"Zangezur","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10654,555549370,"ARM","METT",2009,"Not Reported",28,"Zangezur","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10655,555549372,"ARM","METT",2009,"Not Reported",28,"Akhnabat Yew Grove","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10656,555549372,"ARM","METT",2012,"Not Reported",28,"Akhnabat Yew Grove","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10657,555549375,"ARM","METT",2009,"Not Reported",28,"Aragats Alpine","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10658,555549375,"ARM","METT",2012,"Not Reported",28,"Aragats Alpine","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10659,555549376,"ARM","METT",2009,"Not Reported",28,"Ararat Vordan Karmir","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10660,555549376,"ARM","METT",2012,"Not Reported",28,"Ararat Vordan Karmir","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10661,555549391,"ARM","METT",2012,"Not Reported",28,"Arevik","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10662,555549389,"ARM","METT",2009,"Not Reported",28,"Arjatkhleni Hazel-Nut","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10663,555549389,"ARM","METT",2012,"Not Reported",28,"Arjatkhleni Hazel-Nut","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10664,94004,"ARM","METT",2009,"Not Reported",28,"Arzakan-Meghradzor","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10665,94004,"ARM","METT",2012,"Not Reported",28,"Arzakan-Meghradzor","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10666,555549384,"ARM","METT",2009,"Not Reported",28,"Bank's Pine","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10667,555549384,"ARM","METT",2012,"Not Reported",28,"Bank's Pine","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10668,145392,"ARM","METT",2009,"Not Reported",28,"Boghaqar","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10669,145392,"ARM","METT",2012,"Not Reported",28,"Boghaqar","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10670,555549373,"ARM","METT",2009,"Not Reported",28,"Caucasian Rose-Bay","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10671,555549373,"ARM","METT",2012,"Not Reported",28,"Caucasian Rose-Bay","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10672,1630,"ARM","METT",2009,"Not Reported",28,"Dilijan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10673,555549379,"ARM","METT",2009,"Not Reported",28,"Gandzakar","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10674,555549379,"ARM","METT",2012,"Not Reported",28,"Gandzakar","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10675,555549383,"ARM","METT",2009,"Not Reported",28,"Getik","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10676,555549383,"ARM","METT",2012,"Not Reported",28,"Getik","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10677,1631,"ARM","METT",2012,"Not Reported",28,"Khosrov Forest","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10678,555549386,"ARM","METT",2009,"Not Reported",28,"Goravan Sands","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10679,555549386,"ARM","METT",2012,"Not Reported",28,"Goravan Sands","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10680,555549387,"ARM","METT",2009,"Not Reported",28,"Goris","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10681,555549387,"ARM","METT",2012,"Not Reported",28,"Goris","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10682,93999,"ARM","METT",2009,"Not Reported",28,"Gyulagarak","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10683,93999,"ARM","METT",2012,"Not Reported",28,"Gyulagarak","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10684,145394,"ARM","METT",2009,"Not Reported",28,"Hanqavan Hydrological","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10685,145394,"ARM","METT",2012,"Not Reported",28,"Hanqavan Hydrological","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10686,555549388,"ARM","METT",2009,"Not Reported",28,"Herher Open Woodland","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10687,555549388,"ARM","METT",2012,"Not Reported",28,"Herher Open Woodland","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10688,555549382,"ARM","METT",2009,"Not Reported",28,"Ijevan","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10689,555549382,"ARM","METT",2012,"Not Reported",28,"Ijevan","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10690,555549385,"ARM","METT",2009,"Not Reported",28,"Jermuk Hydrological","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10691,555549385,"ARM","METT",2012,"Not Reported",28,"Jermuk Hydrological","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10692,555549380,"ARM","METT",2009,"Not Reported",28,"Jermuk Forest","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10693,555549380,"ARM","METT",2012,"Not Reported",28,"Jermuk Forest","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10694,555549371,"ARM","METT",2009,"Not Reported",28,"Juniper Open Woodland","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10695,555549371,"ARM","METT",2012,"Not Reported",28,"Juniper Open Woodland","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10696,555549377,"ARM","METT",2009,"Not Reported",28,"Khor Virap","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10697,555549377,"ARM","METT",2012,"Not Reported",28,"Khor Virap","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10698,1631,"ARM","METT",2005,"Not Reported",28,"Khosrov Forest","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10700,1631,"ARM","Birdlife IBA",2013,"Not Reported",28,"Khosrov Forest","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10701,555549381,"ARM","METT",2012,"Not Reported",28,"Margahovit","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10702,668,"DEU","European SCS",2007,"Not Reported",28,"Berchtesgaden","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10703,174775,"AUT","European SCS",2007,"Not Reported",28,"Gesäuse","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10704,220254,"AUT","GOBI Survey",2006,"Not Reported",28,"Grosses Walsertal","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10705,220254,"AUT","Stockholm BR Survey",2008,"Not Reported",28,"Grosses Walsertal","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10706,220254,"AUT","GOBI Survey",2008,"Not Reported",28,"Grosses Walsertal","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10707,2033,"AUT","GOBI Survey",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10708,2033,"AUT","Stockholm BR Survey",2008,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10712,5581,"AUT","European Diploma",1967,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10713,900001,"AUT","GOBI Survey",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10714,2032,"AUT","GOBI Survey",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10716,169111,"AUT","European Diploma",2003,"Not Reported",28,"Thayatal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10717,169111,"AUT","European SCS",2007,"Not Reported",28,"Thayatal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10718,31410,"AUT","European Diploma",1994,"Not Reported",28,"Wachau und Umgebung","Landscape Protection Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10719,902494,"AUT","GOBI Survey",2006,"Not Reported",28,"Wienerwald","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10720,902494,"AUT","Stockholm BR Survey",2008,"Not Reported",28,"Wienerwald","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10724,342505,"AZE","Birdlife IBA",2008,"Not Reported",28,"Shirvan National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10725,1983,"AZE","METT",2012,"Not Reported",28,"Gizilaghaj State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10726,313470,"AZE","METT",2005,"Not Reported",28,"Hirkan National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10727,20680,"AZE","METT",2012,"Not Reported",28,"Ilisu State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10728,555549396,"AZE","METT",2012,"Not Reported",28,"Korchay State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10729,555549400,"AZE","METT",2013,"Not Reported",28,"Shahdagh National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10730,1634,"AZE","METT",2013,"Not Reported",28,"Shirvan State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10731,1984,"AZE","METT",2005,"Not Reported",28,"Zagatala State Nature Reserve","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10732,9164,"BDI","RAPPAM",2011,"Not Reported",28,"Bururi Forest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10733,9164,"BDI","Birdlife IBA",2001,"Not Reported",28,"Bururi Forest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10734,9164,"BDI","METT",2012,"Not Reported",28,"Bururi Forest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10735,9161,"BDI","METT",2007,"Not Reported",28,"Kibira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10736,9161,"BDI","RAPPAM",2011,"Not Reported",28,"Kibira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10737,9161,"BDI","Birdlife IBA",2001,"Not Reported",28,"Kibira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10738,9165,"BDI","RAPPAM",2011,"Not Reported",28,"R�serve naturelle de Rumonge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10739,9162,"BDI","RAPPAM",2011,"Not Reported",28,"R�serve naturelle du Rusizi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10740,9162,"BDI","Birdlife IBA",2001,"Not Reported",28,"R�serve naturelle du Rusizi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10741,9160,"BDI","METT",2007,"Not Reported",28,"Parc national du Ruvubu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10742,9160,"BDI","RAPPAM",2011,"Not Reported",28,"Parc national du Ruvubu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10743,9160,"BDI","Birdlife IBA",2001,"Not Reported",28,"Parc national du Ruvubu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10744,2253,"BEN","METT",2011,"Not Reported",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10745,12201,"BEN","METT",2011,"Not Reported",28,"W (Benin)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10746,2253,"BEN","Enhancing Our Heritage",2008,"Not Reported",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10747,2253,"BEN","GOBI Survey",2006,"Not Reported",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10748,2253,"BEN","METT",2005,"Not Reported",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10750,597,"BEN","Birdlife IBA",2001,"Not Reported",28,"Boucle de la Pendjari","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10751,2253,"BEN","RAPPAM",2009,"Not Reported",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10752,7957,"BEN","METT",2010,"Not Reported",28,"Agoua","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10753,5158,"BEN","METT",2010,"Not Reported",28,"La Lama Nord","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10754,33005,"BEN","METT",2010,"Not Reported",28,"La Lama-Sud","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10755,2253,"BEN","METT",2010,"Not Reported",28,"Pendjari","Hunting Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10756,12201,"BEN","METT",2010,"Not Reported",28,"W (Benin)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10757,9234,"IND","RAPPAM",2009,"Not Reported",28,"Barda","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10758,12201,"BEN","METT",2005,"Not Reported",28,"W (Benin)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10759,900731,"BEN","GOBI Survey",2006,"Not Reported",28,"W Region","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10760,145580,"BGD","WH Outlook Report",2014,"Not Reported",28,"The Sundarbans","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10761,555537148,"BGR","Birdlife IBA",2007,"Not Reported",28,"Adata - Tundzha","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10762,555537064,"BGR","Birdlife IBA",2007,"Not Reported",28,"Atanasovsko ezero","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10763,555579908,"BGR","Birdlife IBA",2007,"Not Reported",28,"Atanasovsko ezero","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10764,2044,"BGR","GOBI Survey",2006,"Not Reported",28,"Boitine","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10765,2044,"BGR","Stockholm BR Survey",2008,"Not Reported",28,"Boitine","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10766,176815,"BGR","RAPPAM",2004,"Not Reported",28,"Bulgarka","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10767,32361,"BGR","METT",2006,"Not Reported",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10768,32361,"BGR","PANPARKS",2003,"Not Reported",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10769,32361,"BGR","PANPARKS",2004,"Not Reported",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10770,32361,"BGR","PANPARKS",2005,"Not Reported",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10771,32361,"BGR","PANPARKS",2006,"Not Reported",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10772,32361,"BGR","PANPARKS",2007,"Not Reported",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10773,32361,"BGR","RAPPAM",2004,"Not Reported",28,"Centralen Balkan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10774,11491,"BGR","RAPPAM",2004,"Not Reported",28,"Shumensko plato","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10775,2040,"BGR","GOBI Survey",2006,"Not Reported",28,"Réserve Djendema","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10776,2040,"BGR","Stockholm BR Survey",2008,"Not Reported",28,"Réserve Djendema","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10777,176774,"BGR","RAPPAM",2004,"Not Reported",28,"Persina","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10778,602,"BGR","RAPPAM",2004,"Not Reported",28,"Pirin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10779,9613,"BGR","WH Outlook Report",2014,"Not Reported",28,"Pirin National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10780,555516493,"BGR","Birdlife IBA",2013,"Not Reported",28,"Batin","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10781,555537092,"BGR","Birdlife IBA",2013,"Not Reported",28,"Ribarnitsi Mechka","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10782,555537084,"BGR","Birdlife IBA",2013,"Not Reported",28,"Ribarnitsi Plovdiv","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10783,62485,"BGR","PANPARKS",2005,"Not Reported",28,"Rila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10784,62485,"BGR","PANPARKS",2006,"Not Reported",28,"Rila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10785,62485,"BGR","PANPARKS",2007,"Not Reported",28,"Rila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10786,62485,"BGR","RAPPAM",2004,"Not Reported",28,"Rila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10787,176805,"BGR","RAPPAM",2004,"Not Reported",28,"Rilski manastir","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10788,604,"BGR","RAPPAM",2004,"Not Reported",28,"Rusenski Lom","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10789,11490,"BGR","RAPPAM",2004,"Not Reported",28,"Sinite kamani","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10790,176828,"BGR","RAPPAM",2004,"Not Reported",28,"Strandzha","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10791,9612,"BGR","WH Outlook Report",2014,"Not Reported",28,"Srebarna Nature Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10792,2039,"BGR","GOBI Survey",2006,"Not Reported",28,"Parc national Steneto","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10793,2039,"BGR","Stockholm BR Survey",2008,"Not Reported",28,"Parc national Steneto","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10794,2048,"BGR","GOBI Survey",2006,"Not Reported",28,"Réserve Tsaritchina","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10795,2048,"BGR","Stockholm BR Survey",2008,"Not Reported",28,"Réserve Tsaritchina","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10796,603,"BGR","RAPPAM",2004,"Not Reported",28,"Vitosha","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10797,30709,"BGR","RAPPAM",2004,"Not Reported",28,"Vrachanski balkan","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10798,4501,"BGR","RAPPAM",2004,"Not Reported",28,"Zlatni pyasatsi","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10799,903028,"BIH","Birdlife IBA",2013,"Not Reported",28,"Bardaca Wetland","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10800,109004,"BIH","Birdlife IBA",2013,"Not Reported",28,"Livanjsko Polje","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10801,1985,"BLR","European Diploma",1997,"Not Reported",28,"Belowezskaya Pushcha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10802,2008,"BLR","WH Outlook Report",2014,"Not Reported",28,"Białowieża Forest","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10803,1643,"BLR","European Diploma",1995,"Not Reported",28,"Berezinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10804,2055,"BLR","METT",2007,"Not Reported",28,"Berezinskiy Zapovednik","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10805,101855,"BLR","METT",2007,"Not Reported",28,"Braslavskie Ozera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10806,900563,"BLR","METT",2012,"Not Reported",28,"Mid-Pripyat State Landscape Zakaznik","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10807,101859,"BLR","METT",2012,"Not Reported",28,"Prostyr","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10808,93900,"BLR","METT",2012,"Not Reported",28,"Sporovskiy","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10809,145850,"BLR","METT",2012,"Not Reported",28,"Zvanets","Nature Sanctuary or Partial Reserve (Local)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10810,900563,"BLR","METT",2005,"Not Reported",28,"Mid-Pripyat State Landscape Zakaznik","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10811,900563,"BLR","METT",2009,"Not Reported",28,"Mid-Pripyat State Landscape Zakaznik","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10812,555558383,"BLR","METT",2011,"Not Reported",28,"Morochno","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10813,101859,"BLR","METT",2005,"Not Reported",28,"Prostyr","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10814,101859,"BLR","METT",2009,"Not Reported",28,"Prostyr","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10815,93900,"BLR","METT",2005,"Not Reported",28,"Sporovskiy","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10816,93900,"BLR","METT",2009,"Not Reported",28,"Sporovskiy","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10817,93917,"BLR","METT",2011,"Not Reported",28,"Yelnya","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10818,145850,"BLR","METT",2005,"Not Reported",28,"Zvanets","Nature Sanctuary or Partial Reserve (Local)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10819,145850,"BLR","METT",2009,"Not Reported",28,"Zvanets","Nature Sanctuary or Partial Reserve (Local)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10820,303896,"BOL","RAPPAM",2004,"Not Reported",28,"Aguarague","National Park and Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10821,342502,"BOL","METT",2003,"Not Reported",28,"Altamachi","Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10822,9779,"BOL","CI Tracking Tool",0,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10823,9779,"BOL","PA Consolidation Index",0,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10824,9779,"BOL","Parks profiles",2005,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10825,9779,"BOL","PIP Site Consolidation",1991,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10826,9779,"BOL","PIP Site Consolidation",1996,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10827,9779,"BOL","PIP Site Consolidation",1997,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10828,9779,"BOL","PIP Site Consolidation",1998,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10829,9779,"BOL","PIP Site Consolidation",1999,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10830,9779,"BOL","PIP Site Consolidation",2001,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10831,9779,"BOL","PIP Site Consolidation",2000,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10832,9779,"BOL","MEMS",2001,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10833,9779,"BOL","MEMS",2002,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10834,9779,"BOL","RAPPAM",2004,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10836,9779,"BOL","PIP Site Consolidation",2002,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10837,9779,"BOL","PIP Site Consolidation",2003,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10838,9779,"BOL","PIP Site Consolidation",2004,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10839,9779,"BOL","PIP Site Consolidation",2005,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10840,36,"BOL","RAPPAM",2004,"Not Reported",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10841,303893,"BOL","CI Tracking Tool",0,"Not Reported",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10842,303893,"BOL","MEMS",2001,"Not Reported",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10843,303893,"BOL","MEMS",2002,"Not Reported",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10844,303893,"BOL","PA Consolidation Index",0,"Not Reported",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10845,303893,"BOL","Parks profiles",2005,"Not Reported",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10846,303893,"BOL","RAPPAM",2004,"Not Reported",28,"Apolobamba","National Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10847,9308,"BOL","GOBI Survey",2006,"Not Reported",28,"Estación Biológica del Beni","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10848,9308,"BOL","MEMS",2001,"Not Reported",28,"Estación Biológica del Beni","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10849,9308,"BOL","MEMS",2002,"Not Reported",28,"Estación Biológica del Beni","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10850,9308,"BOL","RAPPAM",2004,"Not Reported",28,"Estación Biológica del Beni","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10851,20037,"BOL","CI Tracking Tool",0,"Not Reported",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10852,20037,"BOL","MEMS",2001,"Not Reported",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10853,20037,"BOL","MEMS",2002,"Not Reported",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10854,20037,"BOL","METT",2003,"Not Reported",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10855,20037,"BOL","PA Consolidation Index",0,"Not Reported",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10856,20037,"BOL","Parks profiles",2005,"Not Reported",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10857,20037,"BOL","RAPPAM",2004,"Not Reported",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10858,32866,"BOL","RAPPAM",2004,"Not Reported",28,"Cordillera de Sama","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10859,32866,"BOL","MEMS",2002,"Not Reported",28,"Cordillera de Sama","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10860,303895,"BOL","CI Tracking Tool",0,"Not Reported",28,"Cotapata","Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10861,98182,"BOL","MEMS",2001,"Not Reported",28,"Cotapata","National Park and Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10862,303895,"BOL","MEMS",2002,"Not Reported",28,"Cotapata","Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10863,303895,"BOL","PA Consolidation Index",0,"Not Reported",28,"Cotapata","Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10864,303895,"BOL","Parks profiles",2005,"Not Reported",28,"Cotapata","Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10865,98182,"BOL","RAPPAM",2004,"Not Reported",28,"Cotapata","National Park and Integrated Management Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10866,36,"BOL","MEMS",2001,"Not Reported",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10867,36,"BOL","MEMS",2002,"Not Reported",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10868,36,"BOL","PIP Site Consolidation",1997,"Not Reported",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10869,36,"BOL","PIP Site Consolidation",1999,"Not Reported",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10870,36,"BOL","PIP Site Consolidation",2000,"Not Reported",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10871,36,"BOL","PIP Site Consolidation",2001,"Not Reported",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10872,36,"BOL","PIP Site Consolidation",2002,"Not Reported",28,"Eduardo Avaroa","Andean Fauna National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10873,303886,"BOL","MEMS",2001,"Not Reported",28,"El Palmar","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10874,303886,"BOL","MEMS",2002,"Not Reported",28,"El Palmar","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10875,303886,"BOL","RAPPAM",2004,"Not Reported",28,"El Palmar","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10876,30,"BOL","CI Tracking Tool",0,"Not Reported",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10877,30,"BOL","MEMS",2001,"Not Reported",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10878,30,"BOL","PA Consolidation Index",0,"Not Reported",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10879,30,"BOL","MEMS",2002,"Not Reported",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10880,30,"BOL","RAPPAM",2004,"Not Reported",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10881,30,"BOL","Parks profiles",2005,"Not Reported",28,"Isiboro Securé","National Park and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10882,303884,"BOL","MEMS",2002,"Not Reported",28,"Kaa-iya del Gran Chaco","Natural Integrated Management Area and National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10883,303884,"BOL","MEMS",2001,"Not Reported",28,"Kaa-iya del Gran Chaco","Natural Integrated Management Area and National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10884,303884,"BOL","RAPPAM",2004,"Not Reported",28,"Kaa-iya del Gran Chaco","Natural Integrated Management Area and National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10885,303894,"BOL","CI Tracking Tool",0,"Not Reported",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10886,303894,"BOL","MEMS",2001,"Not Reported",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10887,303894,"BOL","MEMS",2002,"Not Reported",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10888,303894,"BOL","PA Consolidation Index",0,"Not Reported",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10889,303894,"BOL","Parks profiles",2005,"Not Reported",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10890,303894,"BOL","RAPPAM",2004,"Not Reported",28,"Madidi","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10891,35,"BOL","MEMS",2001,"Not Reported",28,"Manuripi","National Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10892,35,"BOL","MEMS",2002,"Not Reported",28,"Manuripi","National Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10893,35,"BOL","METT",2003,"Not Reported",28,"Manuripi","National Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10894,35,"BOL","RAPPAM",2004,"Not Reported",28,"Manuripi","National Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10895,31,"BOL","MEMS",2001,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10896,31,"BOL","MEMS",2002,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10897,31,"BOL","PIP Site Consolidation",1991,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10898,31,"BOL","PIP Site Consolidation",1996,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10899,31,"BOL","PIP Site Consolidation",1997,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10900,31,"BOL","PIP Site Consolidation",1998,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10901,31,"BOL","PIP Site Consolidation",1999,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10902,31,"BOL","PIP Site Consolidation",2001,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10903,31,"BOL","PIP Site Consolidation",2000,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10904,31,"BOL","RAPPAM",2004,"Not Reported",28,"Noel Kempff Mercado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10905,220295,"BOL","WH Outlook Report",2014,"Not Reported",28,"Noel Kempff Mercado National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10906,303883,"BOL","MEMS",2001,"Not Reported",28,"Otuquis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10907,303885,"BOL","MEMS",2002,"Not Reported",28,"Otuquis","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10908,303883,"BOL","RAPPAM",2004,"Not Reported",28,"Otuquis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10909,303883,"BOL","METT",2003,"Not Reported",28,"Otuquis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10910,20011,"BOL","CI Tracking Tool",0,"Not Reported",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10911,20011,"BOL","PA Consolidation Index",0,"Not Reported",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10912,20011,"BOL","MEMS",2001,"Not Reported",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10913,20011,"BOL","MEMS",2002,"Not Reported",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10914,20011,"BOL","RAPPAM",2004,"Not Reported",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10915,20011,"BOL","Parks profiles",2005,"Not Reported",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10916,20011,"BOL","GOBI Survey",2006,"Not Reported",28,"Pilón Lajas","Biosphere Reserve and Indigenous Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10917,33,"BOL","MEMS",2001,"Not Reported",28,"Sajama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10918,33,"BOL","MEMS",2002,"Not Reported",28,"Sajama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10919,33,"BOL","RAPPAM",2004,"Not Reported",28,"Sajama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10920,303891,"BOL","RAPPAM",2004,"Not Reported",28,"San Matías","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10921,303891,"BOL","MEMS",2001,"Not Reported",28,"San Matías","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10922,303891,"BOL","MEMS",2002,"Not Reported",28,"San Matías","Natural Integrated Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10923,321,"VEN","METT",0,"Not Reported",28,"Sierra Nevada","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10924,20041,"BOL","PIP Site Consolidation",1995,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10925,20041,"BOL","PIP Site Consolidation",1996,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10926,20041,"BOL","PIP Site Consolidation",1997,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10927,20041,"BOL","PIP Site Consolidation",1998,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10928,20041,"BOL","PIP Site Consolidation",1999,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10929,20041,"BOL","PIP Site Consolidation",2000,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10930,20041,"BOL","PIP Site Consolidation",2001,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10931,20041,"BOL","RAPPAM",2004,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10932,20041,"BOL","MEMS",2001,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10933,20041,"BOL","MEMS",2002,"Not Reported",28,"Tariquía","National Flora and Fauna Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10934,20039,"BOL","RAPPAM",2004,"Not Reported",28,"Toro Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10935,20039,"BOL","MEMS",2001,"Not Reported",28,"Toro Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10936,20039,"BOL","MEMS",2002,"Not Reported",28,"Toro Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10937,4644,"BOL","RAPPAM",2004,"Not Reported",28,"Tunari","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10938,9779,"BOL","Birdlife IBA",2013,"Not Reported",28,"Amboró","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10939,20037,"BOL","Birdlife IBA",2013,"Not Reported",28,"Carrasco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10944,639,"CAF","Birdlife IBA",2001,"Not Reported",28,"Bamingui-Bangoran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10946,2059,"CAF","GOBI Survey",2006,"Not Reported",28,"Basse-Lobaye Forest","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10947,2059,"CAF","METT",2010,"Not Reported",28,"Basse-Lobaye Forest","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10948,31458,"CAF","RAPPAM",2010,"Not Reported",28,"Dzanga-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10949,31459,"CAF","Africa Rainforest Study",2001,"Not Reported",28,"Dzanga-Sangha","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10950,31458,"CAF","METT",0,"Not Reported",28,"Dzanga-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10953,31459,"CAF","METT",2005,"Not Reported",28,"Dzanga-Sangha","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10955,31459,"CAF","METT",0,"Not Reported",28,"Dzanga-Sangha","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10958,2256,"CAF","Birdlife IBA",2001,"Not Reported",28,"Manovo-Gounda-Saint Floris","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10959,16792,"CAF","Birdlife IBA",2001,"Not Reported",28,"Manovo-Gounda St Floris National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10960,16792,"CAF","WH Outlook Report",2014,"Not Reported",28,"Manovo-Gounda St Floris National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10961,2256,"CAF","METT",2007,"Not Reported",28,"Manovo-Gounda-Saint Floris","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10964,301877,"CAF","Birdlife IBA",2001,"Not Reported",28,"Ngotto extension","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10965,28745,"CAF","RAPPAM",2010,"Not Reported",28,"Ngotto","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10967,555547988,"COG","CMR","CAF","WH Outlook Report",2014,"Not Reported",28,"Sangha Trinational","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE" +10971,96156,"CHN","Birdlife IBA",2008,"Not Reported",28,"Baimaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10972,315638,"CHN","METT",2003,"Not Reported",28,"Baishuihe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10973,95843,"CHN","METT",2003,"Not Reported",28,"Baishuijiang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +10974,315640,"CHN","METT",2003,"Not Reported",28,"Baiyang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10975,315642,"CHN","METT",2003,"Not Reported",28,"Baodinggou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10976,95750,"CHN","Birdlife IBA",2008,"Not Reported",28,"Caiyanghe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10977,96143,"CHN","Birdlife IBA",2008,"Not Reported",28,"Cangshanerhai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10978,96016,"CHN","METT",2003,"Not Reported",28,"Changbaishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10979,315645,"CHN","METT",2003,"Not Reported",28,"Changqing","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10980,555547989,"CHN","WH Outlook Report",2014,"Not Reported",28,"Chengjiang Fossil Site","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10981,555512005,"CHN","WH Outlook Report",2014,"Not Reported",28,"China Danxia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10982,96129,"CHN","Birdlife IBA",2008,"Not Reported",28,"Dashanbaoheijinghe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10983,315701,"CHN","Birdlife IBA",2008,"Not Reported",28,"Liuyangdaweishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10984,96148,"CHN","RAPPAM",2001,"Not Reported",28,"Yongdedaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +10985,3016,"CHN","GOBI Survey",2006,"Not Reported",28,"Dinghushan","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10986,96145,"CHN","Birdlife IBA",2008,"Not Reported",28,"Gaoligongshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10987,95742,"CHN","Birdlife IBA",2008,"Not Reported",28,"Jinpingfenshuiling","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10988,315662,"CHN","METT",2008,"Not Reported",28,"Ganligahai-zecha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10989,96145,"CHN","METT",2003,"Not Reported",28,"Gaoligongshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10990,95596,"CHN","METT",2011,"Not Reported",28,"Neilingding-futian","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10991,95861,"CHN","METT",2005,"Not Reported",28,"Damingshanshuiyuanlin (Guangxi)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10992,95678,"CHN","METT",2012,"Not Reported",28,"Xinyinghongshulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10993,95467,"CHN","METT",2012,"Not Reported",28,"Huzhong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10994,315715,"CHN","METT",2010,"Not Reported",28,"Nanwenghe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10995,96070,"CHN","METT",2006,"Not Reported",28,"Helanshan (Ningxia)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10996,95853,"CHN","METT",2006,"Not Reported",28,"Hepu rugen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10997,95853,"CHN","METT",2009,"Not Reported",28,"Hepu rugen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10998,95853,"CHN","METT",2012,"Not Reported",28,"Hepu rugen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +10999,95743,"CHN","Birdlife IBA",2008,"Not Reported",28,"Huanglianshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11000,67733,"CHN","WH Outlook Report",2014,"Not Reported",28,"Huanglong Scenic and Historic Interest Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11001,96103,"CHN","METT",2003,"Not Reported",28,"Huanglongsi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11002,95550,"CHN","METT",2003,"Not Reported",28,"Houhe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11003,95557,"CHN","METT",2012,"Not Reported",28,"Longganhu","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11004,95556,"CHN","METT",2012,"Not Reported",28,"Changjiangtianeezhoubaijitun (Hubei)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11005,95549,"CHN","METT",2012,"Not Reported",28,"Changjiangxinluoduanbaijitun (Hubei)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11006,95579,"CHN","METT",2003,"Not Reported",28,"Badagongshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11007,315673,"CHN","METT",2012,"Not Reported",28,"Hanma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11008,96033,"CHN","METT",0,"Not Reported",28,"Dafengmilu (Jiangsu)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11009,95716,"CHN","RAPPAM",2001,"Not Reported",28,"Jiaozishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11010,315688,"CHN","METT",2003,"Not Reported",28,"Jiudingshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11011,96104,"CHN","METT",2003,"Not Reported",28,"Jiuzhaigou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11012,67732,"CHN","WH Outlook Report",2014,"Not Reported",28,"Jiuzhaigou Valley Scenic and Historic Interest Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11013,315696,"CHN","METT",2003,"Not Reported",28,"Laoxiancheng","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11014,96097,"CHN","METT",2003,"Not Reported",28,"Longxihongkou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11015,95734,"CHN","RAPPAM",2001,"Not Reported",28,"Diaolingshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11016,95727,"CHN","RAPPAM",2001,"Not Reported",28,"Zhangmuqing","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11017,95632,"CHN","METT",2005,"Not Reported",28,"Maoershan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11018,95450,"CHN","METT",2005,"Not Reported",28,"Momoge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11019,95450,"CHN","METT",2007,"Not Reported",28,"Momoge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11020,95450,"CHN","METT",2008,"Not Reported",28,"Momoge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11021,124384,"CHN","WH Outlook Report",2014,"Not Reported",28,"Mount Emei Scenic Area, including Leshan Giant Buddha Scenic Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11022,26654,"CHN","WH Outlook Report",2014,"Not Reported",28,"Mount Huangshan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11023,903136,"CHN","WH Outlook Report",2014,"Not Reported",28,"Mount Sanqingshan National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11024,17050,"CHN","WH Outlook Report",2014,"Not Reported",28,"Mount Taishan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11025,198295,"CHN","WH Outlook Report",2014,"Not Reported",28,"Mount Wuyi","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11026,96178,"CHN","METT",2005,"Not Reported",28,"Mulun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11027,95774,"CHN","Birdlife IBA",2008,"Not Reported",28,"Napahai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11028,902688,"CHN","Birdlife IBA",2008,"Not Reported",28,"Napahai Wetland","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11029,95776,"CHN","Birdlife IBA",2008,"Not Reported",28,"Nangunhe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11030,95620,"CHN","METT",2009,"Not Reported",28,"Nonggang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11031,95620,"CHN","METT",0,"Not Reported",28,"Nonggang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11032,95620,"CHN","METT",2005,"Not Reported",28,"Nonggang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11033,315631,"CHN","METT",2011,"Not Reported",28,"Zhujiangkouzhonghuabaijitun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11034,315719,"CHN","METT",2003,"Not Reported",28,"Piankou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11035,67859,"CHN","METT",2005,"Not Reported",28,"Poyanghuhouniao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11036,67859,"CHN","METT",2007,"Not Reported",28,"Poyanghuhouniao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11037,67859,"CHN","METT",2009,"Not Reported",28,"Poyanghuhouniao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11038,315720,"CHN","METT",2003,"Not Reported",28,"Qianfoshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11039,315691,"CHN","METT",2010,"Not Reported",28,"Kekexili","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11040,96078,"CHN","METT",2010,"Not Reported",28,"Qinghaihuniaodao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11041,96077,"CHN","METT",2010,"Not Reported",28,"Mengda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11042,315729,"CHN","METT",2010,"Not Reported",28,"Sanjiangyuan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11043,95655,"CHN","METT",2006,"Not Reported",28,"Sanya Coral Reef National Nature Reserve","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11044,95655,"CHN","METT",2009,"Not Reported",28,"Sanya Coral Reef National Nature Reserve","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11045,95655,"CHN","METT",2012,"Not Reported",28,"Sanya Coral Reef National Nature Reserve","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11046,900682,"CHN","METT",2009,"Not Reported",28,"Shankou Mangrove Nature Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11047,96090,"CHN","METT",2003,"Not Reported",28,"Foping","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11048,95725,"CHN","RAPPAM",2001,"Not Reported",28,"Shibalianshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11049,902902,"CHN","WH Outlook Report",2014,"Not Reported",28,"Sichuan Giant Panda Sanctuaries - Wolong, Mt Siguniang and Jiajin Mountains","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11050,903131,"CHN","WH Outlook Report",2014,"Not Reported",28,"South China Karst","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11051,95794,"CHN","METT",2003,"Not Reported",28,"Taibaishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11052,95693,"CHN","METT",2003,"Not Reported",28,"Tangjiahe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11053,900881,"CHN","WH Outlook Report",2014,"Not Reported",28,"Three Parallel Rivers of Yunnan Protected Areas","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11054,145503,"CHN","GOBI Survey",2006,"Not Reported",28,"Tianmushan","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11055,95692,"CHN","METT",2003,"Not Reported",28,"Wanglang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11056,315605,"CHN","RAPPAM",2001,"Not Reported",28,"Wenshanlaojunshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11057,95695,"CHN","METT",2003,"Not Reported",28,"Wolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11058,95733,"CHN","RAPPAM",2001,"Not Reported",28,"Shizishan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11059,315606,"CHN","METT",2003,"Not Reported",28,"Wujiao","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11060,67731,"CHN","WH Outlook Report",2014,"Not Reported",28,"Wulingyuan Scenic and Historic Interest Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11061,95451,"CHN","METT",2009,"Not Reported",28,"Xianghai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11062,315610,"CHN","METT",2003,"Not Reported",28,"Xiaohegou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11063,95691,"CHN","METT",2003,"Not Reported",28,"Xiaozhaizigou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11064,555556045,"CHN","WH Outlook Report",2014,"Not Reported",28,"Xinjiang Tianshan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11065,315614,"CHN","METT",2003,"Not Reported",28,"Xuebaoding","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11066,67737,"CHN","GOBI Survey",2006,"Not Reported",28,"Yancheng","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11067,95531,"CHN","METT",2011,"Not Reported",28,"Huanghesanjiaozhou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11068,95531,"CHN","Birdlife IBA",2010,"Not Reported",28,"Huanghesanjiaozhou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11069,96148,"CHN","Birdlife IBA",2008,"Not Reported",28,"Yongdedaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","TRUE","FALSE",, +11070,95770,"CHN","Birdlife IBA",2008,"Not Reported",28,"Yulongxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11071,96156,"CHN","METT",2003,"Not Reported",28,"Baimaxueshan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11072,315626,"CHN","METT",2009,"Not Reported",28,"Zhalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11073,607,"CMR","Birdlife IBA",2001,"Not Reported",28,"B�nou�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11074,555547998,"CMR","METT",2004,"Not Reported",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11075,555547998,"CMR","METT",2006,"Not Reported",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11076,555547998,"CMR","METT",2008,"Not Reported",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11077,555547998,"CMR","METT",0,"Not Reported",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11078,20112,"CMR","RAPPAM",2002,"Not Reported",28,"Bayang-Mbo","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11079,20112,"CMR","METT",2012,"Not Reported",28,"Bayang-Mbo","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11080,607,"CMR","RAPPAM",2002,"Not Reported",28,"B�nou�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11081,606,"CMR","RAPPAM",2002,"Not Reported",28,"Bouba Ndjida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11082,308624,"CMR","METT",2003,"Not Reported",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11083,308624,"CMR","METT",2005,"Not Reported",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11084,308624,"CMR","METT",2014,"Not Reported",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11085,308624,"CMR","RAPPAM",2002,"Not Reported",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11086,1242,"CMR","METT",0,"Not Reported",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11087,1242,"CMR","RAPPAM",2010,"Not Reported",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11088,1242,"CMR","RAPPAM",2002,"Not Reported",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11089,1242,"CMR","METT",2005,"Not Reported",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11090,1242,"CMR","METT",2010,"Not Reported",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11091,1242,"CMR","METT",2004,"Not Reported",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11092,1242,"CMR","METT",2006,"Not Reported",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11093,1242,"CMR","METT",2008,"Not Reported",28,"Campo-Ma'an","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11094,1240,"CMR","Africa Rainforest Study",2001,"Not Reported",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11095,3012,"CMR","GOBI Survey",2006,"Not Reported",28,"Dja","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11096,1240,"CMR","METT",2005,"Not Reported",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11097,1240,"CMR","METT",2006,"Not Reported",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11098,1240,"CMR","RAPPAM",2010,"Not Reported",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11099,1240,"CMR","RAPPAM",2002,"Not Reported",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11100,1240,"CMR","Birdlife IBA",2001,"Not Reported",28,"Dja","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11101,17758,"CMR","Birdlife IBA",2001,"Not Reported",28,"Dja Faunal Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11102,17758,"CMR","WH Outlook Report",2014,"Not Reported",28,"Dja Faunal Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11103,1244,"CMR","RAPPAM",2002,"Not Reported",28,"Douala Edéa","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11104,1244,"CMR","METT",2011,"Not Reported",28,"Douala Edéa","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11105,555548870,"CMR","RAPPAM",2002,"Not Reported",28,"Ebo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11106,1241,"CMR","RAPPAM",2002,"Not Reported",28,"Faro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11107,609,"CMR","RAPPAM",2002,"Not Reported",28,"Kalamaloué","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11108,1246,"CMR","RAPPAM",2002,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11109,20058,"CMR","Africa Rainforest Study",2001,"Not Reported",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11110,20058,"CMR","METT",2004,"Not Reported",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11111,20058,"CMR","METT",2006,"Not Reported",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11112,20058,"CMR","METT",2008,"Not Reported",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11113,20058,"CMR","METT",0,"Not Reported",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11114,20058,"CMR","RAPPAM",2002,"Not Reported",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11115,20058,"CMR","METT",2010,"Not Reported",28,"Korup","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11116,555547998,"CMR","RAPPAM",2002,"Not Reported",28,"Bakossi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11117,1245,"CMR","METT",2003,"Not Reported",28,"Lob�k�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11118,1245,"CMR","METT",2005,"Not Reported",28,"Lob�k�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11119,1245,"CMR","RAPPAM",2010,"Not Reported",28,"Lob�k�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11120,1245,"CMR","RAPPAM",2002,"Not Reported",28,"Lob�k�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11121,1245,"CMR","METT",2007,"Not Reported",28,"Lob�k�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11122,1245,"CMR","METT",2010,"Not Reported",28,"Lob�k�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11123,20166,"CMR","RAPPAM",2002,"Not Reported",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11124,20166,"CMR","METT",0,"Not Reported",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11125,20166,"CMR","RAPPAM",2010,"Not Reported",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11126,20166,"CMR","METT",2004,"Not Reported",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11127,20166,"CMR","METT",2006,"Not Reported",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11128,20166,"CMR","METT",2008,"Not Reported",28,"Mbam et Djerem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11129,111111,"USA","RAPPAM",2002,"Not Reported",28,"Hideaway Islands","Research Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11130,308636,"CMR","RAPPAM",2002,"Not Reported",28,"Mengame","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11131,555547994,"CMR","METT",2012,"Not Reported",28,"Mont Cameroun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11132,610,"CMR","RAPPAM",2002,"Not Reported",28,"Mozogo Gokoro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11134,30674,"CMR","METT",2003,"Not Reported",28,"Nki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11135,30674,"CMR","METT",2005,"Not Reported",28,"Nki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11136,30674,"CMR","METT",2010,"Not Reported",28,"Nki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11137,30674,"CMR","RAPPAM",2002,"Not Reported",28,"Nki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11138,1628,"CMR","RAPPAM",2002,"Not Reported",28,"Lac Ossa","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11139,20117,"CMR","RAPPAM",2002,"Not Reported",28,"Rumpi Hills","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11141,20125,"CMR","RAPPAM",2002,"Not Reported",28,"Santchou","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11142,20125,"CMR","Birdlife IBA",2013,"Not Reported",28,"Santchou","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11143,555547996,"CMR","METT",2013,"Not Reported",28,"Takamanda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11144,555548871,"CMR","RAPPAM",2002,"Not Reported",28,"Tchabal Mbabo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11145,308637,"CMR","RAPPAM",2002,"Not Reported",28,"Vall�e du Mb�r�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11146,608,"CMR","RAPPAM",2002,"Not Reported",28,"Waza","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11147,608,"CMR","Birdlife IBA",2001,"Not Reported",28,"Waza","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11148,222222,"CMR","RAPPAM",2002,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11150,20324,"COD","RAPPAM",2010,"Not Reported",28,"Bili-Uere","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11151,20324,"COD","METT",2010,"Not Reported",28,"Bili-Uere","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11152,5183,"COD","METT",2010,"Not Reported",28,"Bombo Lumene","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11153,5183,"COD","RAPPAM",2010,"Not Reported",28,"Bombo Lumene","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11154,20337,"COD","METT",2010,"Not Reported",28,"Bushimaie","Hunting Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11155,20337,"COD","RAPPAM",2010,"Not Reported",28,"Bushimaie","Hunting Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11156,37043,"COD","RAPPAM",2010,"Not Reported",28,"Okapi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11157,1083,"COD","METT",2007,"Not Reported",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11158,1083,"COD","METT",2008,"Not Reported",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11159,1083,"COD","METT",2009,"Not Reported",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11160,1083,"COD","METT",2013,"Not Reported",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11161,1083,"COD","METT",2010,"Not Reported",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11162,1083,"COD","RAPPAM",2010,"Not Reported",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11163,1083,"COD","Birdlife IBA",2001,"Not Reported",28,"Garamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11164,4327,"COD","Birdlife IBA",2001,"Not Reported",28,"Garamba National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11165,4327,"COD","WH Outlook Report",2014,"Not Reported",28,"Garamba National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11166,72312,"COD","METT",2010,"Not Reported",28,"Itombwe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11167,72312,"COD","RAPPAM",2010,"Not Reported",28,"Itombwe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11168,124389,"COD","Africa Rainforest Study",2001,"Not Reported",28,"Okapi Wildlife Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11169,1082,"COD","METT",2007,"Not Reported",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11170,1082,"COD","METT",2013,"Not Reported",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11171,1082,"COD","METT",2010,"Not Reported",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11172,1082,"COD","RAPPAM",2010,"Not Reported",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11173,1082,"COD","Birdlife IBA",2001,"Not Reported",28,"Kahuzi-Biega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11174,4328,"COD","Birdlife IBA",2001,"Not Reported",28,"Kahuzi-Biega National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11175,4328,"COD","WH Outlook Report",2014,"Not Reported",28,"Kahuzi-Biega National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11176,1084,"COD","METT",2010,"Not Reported",28,"Kundelungu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11177,1084,"COD","RAPPAM",2010,"Not Reported",28,"Kundelungu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11178,555512077,"COD","METT",2010,"Not Reported",28,"Lomako-Yokokala","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11179,555512077,"COD","RAPPAM",2010,"Not Reported",28,"Lomako-Yokokala","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11180,555512071,"COD","METT",2005,"Not Reported",28,"Luki","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11181,1080,"COD","METT",2010,"Not Reported",28,"Maiko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11182,1080,"COD","RAPPAM",2010,"Not Reported",28,"Maiko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11183,555512074,"COD","METT",2010,"Not Reported",28,"Mangai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11184,555512074,"COD","RAPPAM",2010,"Not Reported",28,"Mangai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11185,37044,"COD","RAPPAM",2010,"Not Reported",28,"Mangrove Nature Reserve or Marine Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11186,555512068,"COD","RAPPAM",2010,"Not Reported",28,"N'Sele","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11187,555512068,"COD","METT",2010,"Not Reported",28,"N'Sele","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11188,643,"COG","METT",2005,"Not Reported",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11189,37043,"COD","METT",2010,"Not Reported",28,"Okapi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11190,37043,"COD","Birdlife IBA",2001,"Not Reported",28,"Okapi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11191,124389,"COD","Birdlife IBA",2001,"Not Reported",28,"Okapi Wildlife Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11192,124389,"COD","WH Outlook Report",2014,"Not Reported",28,"Okapi Wildlife Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11193,37044,"COD","METT",2010,"Not Reported",28,"Mangrove Nature Reserve or Marine Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11194,555512076,"COD","METT",2009,"Not Reported",28,"Tumba-Lediima","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11195,478292,"COD","METT",2005,"Not Reported",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11196,478292,"COD","METT",2007,"Not Reported",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11197,478292,"COD","METT",2010,"Not Reported",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11198,478292,"COD","RAPPAM",2010,"Not Reported",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11199,10906,"COD","Birdlife IBA",2001,"Not Reported",28,"Salonga National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11200,478292,"COD","Birdlife IBA",2001,"Not Reported",28,"Salonga","Integrale Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11201,555512076,"COD","RAPPAM",2010,"Not Reported",28,"Tumba-Lediima","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11202,555512076,"COD","METT",2010,"Not Reported",28,"Tumba-Lediima","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11203,1079,"COD","METT",2010,"Not Reported",28,"Upemba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11204,1079,"COD","RAPPAM",2010,"Not Reported",28,"Upemba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11205,166889,"COD","METT",2007,"Not Reported",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11206,166889,"COD","METT",2008,"Not Reported",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11207,166889,"COD","METT",0,"Not Reported",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11208,166889,"COD","RAPPAM",2010,"Not Reported",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11209,2017,"COD","Birdlife IBA",2001,"Not Reported",28,"Virunga National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11210,166889,"COD","Birdlife IBA",2001,"Not Reported",28,"Virunga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11211,478291,"COD","Birdlife IBA",2001,"Not Reported",28,"Parc national des Virunga","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11212,2017,"COD","WH Outlook Report",2014,"Not Reported",28,"Virunga National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11213,313401,"COG","RAPPAM",2012,"Not Reported",28,"Conkouati-Douli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11214,313401,"COG","METT",2007,"Not Reported",28,"Conkouati-Douli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11215,313401,"COG","METT",2011,"Not Reported",28,"Conkouati-Douli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11216,13694,"COG","RAPPAM",2012,"Not Reported",28,"Réserve de biosphère de la Dimonika","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11217,313494,"COG","RAPPAM",2012,"Not Reported",28,"Lac Télé","Community Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11218,166739,"COG","Birdlife IBA",2007,"Not Reported",28,"Réserve Communautaire du Lac Télé/Likouala-aux-Herbes","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11219,313494,"COG","Birdlife IBA",2007,"Not Reported",28,"Lac Télé","Community Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11220,2266,"COG","RAPPAM",2012,"Not Reported",28,"Léfini","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11221,99862,"COG","RAPPAM",2012,"Not Reported",28,"Lessio-Louna","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11222,300342,"COG","RAPPAM",2012,"Not Reported",28,"Lossi","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11223,72332,"COG","RAPPAM",2012,"Not Reported",28,"Nouabalé-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11224,72332,"COG","METT",2007,"Not Reported",28,"Nouabalé-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11225,72332,"COG","METT",2013,"Not Reported",28,"Nouabalé-Ndoki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11226,643,"COG","Africa Rainforest Study",2001,"Not Reported",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11227,643,"COG","METT",2006,"Not Reported",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11228,643,"COG","RAPPAM",2012,"Not Reported",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11229,643,"COG","Birdlife IBA",2001,"Not Reported",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11230,555555585,"COG","Birdlife IBA",2001,"Not Reported",28,"Site Ramsar Odzala Kokoua","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11231,643,"COG","GOBI Survey",2006,"Not Reported",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11232,643,"COG","METT",2007,"Not Reported",28,"Odzala Kokoua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11233,354009,"COG","RAPPAM",2012,"Not Reported",28,"Patte d'Oie","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11235,99855,"COG","RAPPAM",2012,"Not Reported",28,"Tchimpounga","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11236,313162,"CPV","METT",2009,"Not Reported",28,"Bordeira, Chã das Caldeiras e Pico Novo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11237,313125,"CPV","METT",2006,"Not Reported",28,"Monte Gordo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11238,313125,"CPV","METT",2007,"Not Reported",28,"Monte Gordo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11239,313125,"CPV","METT",2009,"Not Reported",28,"Monte Gordo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11240,313160,"CPV","METT",2009,"Not Reported",28,"Serra da Malagueta","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11241,313160,"CPV","METT",2006,"Not Reported",28,"Serra da Malagueta","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11242,313160,"CPV","METT",2007,"Not Reported",28,"Serra da Malagueta","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11243,344528,"CZE","METT",2005,"Not Reported",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11244,344528,"CZE","METT",2006,"Not Reported",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11245,344528,"CZE","METT",2007,"Not Reported",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11246,344528,"CZE","METT",2008,"Not Reported",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11247,344528,"CZE","METT",2009,"Not Reported",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11248,344528,"CZE","RAPPAM",2004,"Not Reported",28,"Beskydy","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11249,134938,"CZE","Stockholm BR Survey",2008,"Not Reported",28,"Bílé Karpaty","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11250,342001,"CZE","Birdlife IBA",2005,"Not Reported",28,"Bohdanečský rybník","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11251,555517314,"CZE","Birdlife IBA",2005,"Not Reported",28,"Bohdanecsky rybnik a rybnik Matka","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11252,555537220,"CZE","Birdlife IBA",2005,"Not Reported",28,"Bohdanecsky rybnik","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11253,555537218,"CZE","Birdlife IBA",2005,"Not Reported",28,"Broumovsko","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11254,555537222,"CZE","Birdlife IBA",2005,"Not Reported",28,"Bzenecka Doubrava - Stranicke Pomoravi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11255,555517156,"CZE","RAPPAM",2004,"Not Reported",28,"Ceske Svycarsko","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11256,555517072,"CZE","Birdlife IBA",2005,"Not Reported",28,"Hradiste","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11257,555537210,"CZE","Birdlife IBA",2005,"Not Reported",28,"Doupovske hory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11258,555516948,"CZE","Birdlife IBA",2007,"Not Reported",28,"Hlubocke obory","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11259,555537204,"CZE","Birdlife IBA",2007,"Not Reported",28,"Hlubocke obory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11260,555537235,"CZE","Birdlife IBA",2007,"Not Reported",28,"Hostynske vrchy","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11261,555537223,"CZE","Birdlife IBA",2005,"Not Reported",28,"Hovoransko - Cejkovicko","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11262,555537228,"CZE","Birdlife IBA",2005,"Not Reported",28,"Jaroslavicke rybniky","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11263,344537,"CZE","Birdlife IBA",2005,"Not Reported",28,"Jeseníky","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11264,555537231,"CZE","Birdlife IBA",2005,"Not Reported",28,"Jeseniky","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11265,555537216,"CZE","Birdlife IBA",2005,"Not Reported",28,"Jizerske hory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11266,344538,"CZE","RAPPAM",2004,"Not Reported",28,"Jizerské hory","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11267,342034,"CZE","European Diploma",2000,"Not Reported",28,"Karlštejn","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11268,555537230,"CZE","Birdlife IBA",2005,"Not Reported",28,"Kralicky Sneznik","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11269,2063,"CZE","Stockholm BR Survey",2008,"Not Reported",28,"Køivoklátsko","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11270,344524,"CZE","Birdlife IBA",2005,"Not Reported",28,"Krkonošský národní park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11271,555517277,"CZE","Birdlife IBA",2005,"Not Reported",28,"Krkonose","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11272,555537217,"CZE","Birdlife IBA",2005,"Not Reported",28,"Krkonose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11273,344541,"CZE","Birdlife IBA",2005,"Not Reported",28,"Labské pískovce","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11274,555537214,"CZE","Birdlife IBA",2005,"Not Reported",28,"Labske piskovce","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11275,555537233,"CZE","Birdlife IBA",2005,"Not Reported",28,"Libava","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11276,11588,"CZE","GOBI Survey",2006,"Not Reported",28,"Dolní Morava","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11277,11588,"CZE","Stockholm BR Survey",2008,"Not Reported",28,"Dolní Morava","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11278,344544,"CZE","RAPPAM",2004,"Not Reported",28,"Moravský kras","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11279,555537211,"CZE","Birdlife IBA",2005,"Not Reported",28,"Vodni nadrz Nechranice","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11280,555537212,"CZE","Birdlife IBA",2005,"Not Reported",28,"Novodomske raseliniste - Kovarska","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11281,555537207,"CZE","Birdlife IBA",2007,"Not Reported",28,"Novohradske hory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11282,555537219,"CZE","Birdlife IBA",2005,"Not Reported",28,"Orlicke Zahori","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11283,344546,"CZE","Birdlife IBA",2010,"Not Reported",28,"Pálava","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11284,555537226,"CZE","Birdlife IBA",2010,"Not Reported",28,"Palava","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11285,344526,"CZE","RAPPAM",2004,"Not Reported",28,"Podyjí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11286,344526,"CZE","Birdlife IBA",2005,"Not Reported",28,"Podyjí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11287,555517566,"CZE","Birdlife IBA",2005,"Not Reported",28,"Podyji","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11288,555537229,"CZE","Birdlife IBA",2005,"Not Reported",28,"Podyji","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11289,344526,"CZE","European Diploma",2000,"Not Reported",28,"Podyjí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11290,342074,"CZE","Birdlife IBA",2010,"Not Reported",28,"Řežabinec a Řežabinecké tůně","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11291,555537203,"CZE","Birdlife IBA",2010,"Not Reported",28,"Rezabinec","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11292,555517583,"CZE","Birdlife IBA",2010,"Not Reported",28,"Soutok - Podluzi","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11293,555537224,"CZE","Birdlife IBA",2010,"Not Reported",28,"Soutok - Tvrdonicko","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11294,343199,"CZE","Birdlife IBA",2010,"Not Reported",28,"Věstonická nádrž","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11295,555537227,"CZE","Birdlife IBA",2010,"Not Reported",28,"Stredni nadrz Vodniho Dila Nove Mlyny","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11296,344527,"CZE","Birdlife IBA",2013,"Not Reported",28,"Šumava","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11297,555537209,"CZE","Birdlife IBA",2013,"Not Reported",28,"Sumava","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11298,20015,"CZE","GOBI Survey",2006,"Not Reported",28,"Šumava","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11299,20015,"CZE","Stockholm BR Survey",2008,"Not Reported",28,"Šumava","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11300,2062,"CZE","Stockholm BR Survey",2008,"Not Reported",28,"Tøeboòsko","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11301,344552,"CZE","Birdlife IBA",2010,"Not Reported",28,"Tøeboòsko","Protected Landscape Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11302,555537201,"CZE","Birdlife IBA",2010,"Not Reported",28,"Trebonsko","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11303,555537202,"CZE","Birdlife IBA",2006,"Not Reported",28,"Udoli Otavy a Vltavy","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11304,555537213,"CZE","Birdlife IBA",2005,"Not Reported",28,"Vychodni Krusne hory","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11305,555537200,"CZE","Birdlife IBA",2010,"Not Reported",28,"Zehunsky rybnik - Obora Knezicky","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11306,555537172,"CYP","Birdlife IBA",2013,"Not Reported",28,"VOUNOKORFES MADARIS - PAPOUTSAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11307,555537176,"CYP","Birdlife IBA",2013,"Not Reported",28,"PERIOCHI AGIAS THEKLAS - LIOPETRI","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11308,555537171,"CYP","Birdlife IBA",2013,"Not Reported",28,"PERIOCHI ATSA - AGIOS THEODOROS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11309,555537192,"CYP","Birdlife IBA",2013,"Not Reported",28,"ZONI EIDIKIS PROSTASIAS CHA - POTAMI","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11310,555537185,"CYP","Birdlife IBA",2013,"Not Reported",28,"KOILADA EZOUSAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11311,555537179,"CYP","Birdlife IBA",2013,"Not Reported",28,"FAROS KATO PAFOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11312,555579919,"CYP","Birdlife IBA",2013,"Not Reported",28,"Faros Kato Pafou","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11313,555537196,"CYP","Birdlife IBA",2013,"Not Reported",28,"PERIOCHI KOSIIS - PALLOUROKAMPOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11314,900570,"CYP","Birdlife IBA",2013,"Not Reported",28,"Larnaca Salt Lake","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11315,555537193,"CYP","Birdlife IBA",2013,"Not Reported",28,"ALYKES LARNAKAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11316,555579922,"CYP","Birdlife IBA",2013,"Not Reported",28,"Alykes Larnakas","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11317,555516681,"CYP","Birdlife IBA",2013,"Not Reported",28,"Limni Oroklinis","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11318,555537197,"CYP","Birdlife IBA",2013,"Not Reported",28,"ZONI EIDIKIS PROSTASIAS LIMNI OROKLINIS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11319,555537169,"CYP","Birdlife IBA",2013,"Not Reported",28,"DASOS PAFOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11320,555537194,"CYP","Birdlife IBA",2013,"Not Reported",28,"POTAMOS PANAGIAS STAZOUSAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11321,555537175,"CYP","Birdlife IBA",2013,"Not Reported",28,"LIMNI PARALIMNIOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11322,555579916,"CYP","Birdlife IBA",2013,"Not Reported",28,"Limni Paralimniou","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11323,555537195,"CYP","Birdlife IBA",2013,"Not Reported",28,"POTAMOS PENTASCHINOS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11324,555537183,"CYP","Birdlife IBA",2013,"Not Reported",28,"ZONI EIDIKIS PROSTASIAS KOILADA SARAMA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11325,14847,"CYP","Birdlife IBA",2013,"Not Reported",28,"Troodos","National Forest Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11326,555537188,"CYP","Birdlife IBA",2013,"Not Reported",28,"ETHNIKO DASIKO PARKO TROODOUS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11327,555579920,"CYP","Birdlife IBA",2013,"Not Reported",28,"Ethniko Dasiko Parko Troodous","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11328,555537177,"CYP","Birdlife IBA",2013,"Not Reported",28,"VOUNI PANAGIAS","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11329,555579917,"CYP","Birdlife IBA",2013,"Not Reported",28,"Vouni Panagias","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11330,555537190,"CYP","Birdlife IBA",2013,"Not Reported",28,"PERIOCHI KOILADAS XYLOURIKOU","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11331,555577570,"DJI","METT",2009,"Not Reported",28,"Haramous","Area protected for habitat and species","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11332,2236,"DMA","PIP Site Consolidation",1992,"Not Reported",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11333,2236,"DMA","PIP Site Consolidation",1996,"Not Reported",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11334,2236,"DMA","PIP Site Consolidation",1997,"Not Reported",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11335,2236,"DMA","PIP Site Consolidation",1998,"Not Reported",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11336,2236,"DMA","PIP Site Consolidation",1999,"Not Reported",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11337,2236,"DMA","PIP Site Consolidation",2001,"Not Reported",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11338,2236,"DMA","PIP Site Consolidation",2000,"Not Reported",28,"Morne Trois Pitons","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11339,145583,"DMA","WH Outlook Report",2014,"Not Reported",28,"Morne Trois Pitons National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11340,17653,"DNK","Birdlife IBA",2010,"Not Reported",28,"Førby Sø","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11341,555538061,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ålvand Klithede og Førby Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11342,555580347,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ålvand Klithede og Førby Sø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11343,555538066,"DNK","Birdlife IBA",2010,"Not Reported",28,"Agger Tange","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11344,555538009,"DNK","Birdlife IBA",2006,"Not Reported",28,"Almindingen, Ølene og Paradisbakkerne","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11345,555580331,"DNK","Birdlife IBA",2006,"Not Reported",28,"Almindingen, Ølene og Paradisbakkerne","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11346,17657,"DNK","Birdlife IBA",2006,"Not Reported",28,"Anholt, Ørkenen","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11347,64588,"DNK","Birdlife IBA",2006,"Not Reported",28,"Arreskov Sø","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11348,555522371,"DNK","Birdlife IBA",2006,"Not Reported",28,"Arreskov Sø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11349,555538017,"DNK","Birdlife IBA",2006,"Not Reported",28,"Arreskov Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11350,555537996,"DNK","Birdlife IBA",2010,"Not Reported",28,"Bøtø Nor","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11351,555538028,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ballum og Husum Enge og Kamper Strandenge","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11352,555522370,"DNK","Birdlife IBA",2010,"Not Reported",28,"Skove og søer syd for Brahetrolleborg","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11353,555538013,"DNK","Birdlife IBA",2010,"Not Reported",28,"Skove ved Brahetrolleborg","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11354,555537993,"DNK","Birdlife IBA",2010,"Not Reported",28,"Søer ved Bregentved og Gisselfeld","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11355,555538069,"DNK","Birdlife IBA",2006,"Not Reported",28,"Dråby Vig","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11356,555580344,"DNK","Birdlife IBA",2006,"Not Reported",28,"Dråby Vig","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11357,67899,"DNK","Birdlife IBA",2006,"Not Reported",28,"Ertholmene","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11358,555538008,"DNK","Birdlife IBA",2006,"Not Reported",28,"Ertholmene","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11359,555543244,"DNK","Birdlife IBA",2006,"Not Reported",28,"Bornholm: Ertholmene","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11360,555580327,"DNK","Birdlife IBA",2006,"Not Reported",28,"Ertholmene","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11361,67874,"DNK","Birdlife IBA",2010,"Not Reported",28,"Filso","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11362,555538040,"DNK","Birdlife IBA",2010,"Not Reported",28,"Fiilsø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11363,555538074,"DNK","Birdlife IBA",2010,"Not Reported",28,"Glomstrup Vig, Agerø, Munkholm og Katholm Odde, L","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11364,555522306,"DNK","Birdlife IBA",2006,"Not Reported",28,"Gribskov","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11365,555537981,"DNK","Birdlife IBA",2006,"Not Reported",28,"Gribskov","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11366,555538000,"DNK","Birdlife IBA",2010,"Not Reported",28,"Guldborgsund","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11367,17691,"DNK","Birdlife IBA",2010,"Not Reported",28,"Hansted reservatet","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11368,555522446,"DNK","Birdlife IBA",2010,"Not Reported",28,"Hanstholmreservatet, Nors Sø og Vandet Sø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11369,555538065,"DNK","Birdlife IBA",2010,"Not Reported",28,"Hanstholm Reservatet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11370,555538051,"DNK","Birdlife IBA",2010,"Not Reported",28,"Harboøre Tange, Plet Enge og Gjeller Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11371,555538047,"DNK","Birdlife IBA",2010,"Not Reported",28,"S├©nder Feldborg Plantage","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11372,555580341,"DNK","Birdlife IBA",2010,"Not Reported",28,"S├©nder Feldborg Plantage","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11373,555538032,"DNK","Birdlife IBA",2007,"Not Reported",28,"Hedeområder ved Store Råbjerg","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11374,555580336,"DNK","Birdlife IBA",2007,"Not Reported",28,"Hedeområder ved Store Råbjerg","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11375,67881,"DNK","Birdlife IBA",2010,"Not Reported",28,"Hirsholmene","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11376,555538085,"DNK","Birdlife IBA",2010,"Not Reported",28,"Hirsholmene","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11377,555538067,"DNK","Birdlife IBA",2010,"Not Reported",28,"Hjarbæk Fjord og Simested Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11378,555538033,"DNK","Birdlife IBA",2010,"Not Reported",28,"Engarealer ved Ho Bugt","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11379,67886,"DNK","Birdlife IBA",2010,"Not Reported",28,"Horsens Fjord & Endelave","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11380,555522441,"DNK","Birdlife IBA",2010,"Not Reported",28,"Horsens Fjord, havet ├©st for og Endelave","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11381,555538058,"DNK","Birdlife IBA",2010,"Not Reported",28,"Horsens Fjord og Endelave","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11382,555543154,"DNK","Birdlife IBA",2010,"Not Reported",28,"Horsens Fjord, sea east of and Endelave","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11383,555538019,"DNK","Birdlife IBA",2006,"Not Reported",28,"Hostrup Sø, Assenholm Mose og Felsted Vestermark","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11384,555580332,"DNK","Birdlife IBA",2006,"Not Reported",28,"Hostrup Sø, Assenholm Mose og Felsted Vestermark","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11385,67898,"DNK","Birdlife IBA",2010,"Not Reported",28,"Waters between Lolland and Falster including Rods*","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11386,555537997,"DNK","Birdlife IBA",2010,"Not Reported",28,"Kyststrækningen v. Hyllekrog-Rødsand","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11387,902373,"DNK","WH Outlook Report",2014,"Not Reported",28,"Ilulissat Icefjord","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11388,555537980,"DNK","Birdlife IBA",2007,"Not Reported",28,"Jægerspris Nordskov","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11389,555538081,"DNK","Birdlife IBA",2006,"Not Reported",28,"Råbjerg og Tolshave Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11390,555538034,"DNK","Birdlife IBA",2010,"Not Reported",28,"Kallesmærsk Hede og Grærup Langsø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11391,17669,"DNK","Birdlife IBA",2006,"Not Reported",28,"Møens Klint, Høje Møn","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11392,555538004,"DNK","Birdlife IBA",2006,"Not Reported",28,"Klinteskoven","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11393,555580335,"DNK","Birdlife IBA",2006,"Not Reported",28,"Klinteskoven","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11394,92413,"DNK","Birdlife IBA",2010,"Not Reported",28,"Skast og Kogsbøl Moser","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11395,555538030,"DNK","Birdlife IBA",2010,"Not Reported",28,"Kogsbøl og Skast Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11396,555522332,"DNK","Birdlife IBA",2010,"Not Reported",28,"Havet og kysten mellem Hundested og Rørvig","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11397,555537994,"DNK","Birdlife IBA",2010,"Not Reported",28,"Havet mellem Korshage og Hundested","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11398,555543129,"DNK","Birdlife IBA",2010,"Not Reported",28,"The sea and the coast between Rørvig and Hundeste","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11399,555538083,"DNK","Birdlife IBA",2010,"Not Reported",28,"Kysten fra Aggersund til Bygholm Vejle","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11400,67889,"DNK","Birdlife IBA",2006,"Not Reported",28,"Nærå Coast and Æbelo area","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11401,555522360,"DNK","Birdlife IBA",2006,"Not Reported",28,"Æbelø, havet syd for og Nærå","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11402,555538015,"DNK","Birdlife IBA",2006,"Not Reported",28,"Æbelø, havet syd for og Nærå","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11403,555543117,"DNK","Birdlife IBA",2006,"Not Reported",28,"Æbelø and the sea south of, and Nærå","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11404,67879,"DNK","Birdlife IBA",2010,"Not Reported",28,"Vejlerne and Logstor Bredning","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11405,555522462,"DNK","Birdlife IBA",2010,"Not Reported",28,"Løgstør Bredning, Vejlerne og Bulbjerg","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11406,555538071,"DNK","Birdlife IBA",2010,"Not Reported",28,"Løgstør Bredning, Livø, Feggesund og Skarrehage","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11407,555538062,"DNK","Birdlife IBA",2010,"Not Reported",28,"Lønnerup Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11408,67888,"DNK","Birdlife IBA",2010,"Not Reported",28,"Lillebælt","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11409,555522358,"DNK","Birdlife IBA",2010,"Not Reported",28,"Lillebælt","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11410,555538018,"DNK","Birdlife IBA",2010,"Not Reported",28,"Lillebælt","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11411,555543120,"DNK","Birdlife IBA",2010,"Not Reported",28,"Lillebælt","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11412,555522380,"DNK","Birdlife IBA",2006,"Not Reported",28,"Lindet skov, Hønning Mose, Hønning Plantage og L","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11413,555538027,"DNK","Birdlife IBA",2006,"Not Reported",28,"Lindet Skov, Hønning Mose og Plantage, Lovdrup Sk","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11414,555538073,"DNK","Birdlife IBA",2010,"Not Reported",28,"Lovns Bredning","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11415,555538070,"DNK","Birdlife IBA",2010,"Not Reported",28,"Mågerodde og Karby Odde","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11416,555580345,"DNK","Birdlife IBA",2010,"Not Reported",28,"Mågerodde og Karby Odde","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11417,92423,"DNK","Birdlife IBA",2006,"Not Reported",28,"Mandø","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11418,555538078,"DNK","Birdlife IBA",2006,"Not Reported",28,"Madum Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11419,555538036,"DNK","Birdlife IBA",2006,"Not Reported",28,"Mandø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11420,555538011,"DNK","Birdlife IBA",2010,"Not Reported",28,"Marstal Bugt og den sydlige del af Langeland","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11421,17685,"DNK","Birdlife IBA",2008,"Not Reported",28,"Mossø","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11422,555538057,"DNK","Birdlife IBA",2008,"Not Reported",28,"Mossø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11423,67896,"DNK","Birdlife IBA",2010,"Not Reported",28,"Nakskov Fjord and Inner Fjord","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11424,555522343,"DNK","Birdlife IBA",2010,"Not Reported",28,"Nakskov Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11425,555538002,"DNK","Birdlife IBA",2010,"Not Reported",28,"Nakskov Fjord og Inderfjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11426,555543135,"DNK","Birdlife IBA",2010,"Not Reported",28,"Nakskov Fjord","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11427,555522463,"DNK","Birdlife IBA",2008,"Not Reported",28,"Agger Tange, Nissum Bredning, Skibsted Fjord og A*","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11428,555538045,"DNK","Birdlife IBA",2008,"Not Reported",28,"Nissum Bredning","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11429,67877,"DNK","Birdlife IBA",2010,"Not Reported",28,"Nissum Fjord","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11430,555522411,"DNK","Birdlife IBA",2010,"Not Reported",28,"Nissum Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11431,555538046,"DNK","Birdlife IBA",2010,"Not Reported",28,"Nissum Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11432,67882,"DNK","Birdlife IBA",2006,"Not Reported",28,"Nordre Ronner","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11433,555538084,"DNK","Birdlife IBA",2006,"Not Reported",28,"Nordre Rønner","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11434,555538014,"DNK","Birdlife IBA",2010,"Not Reported",28,"Odense Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11435,555543119,"DNK","Birdlife IBA",2010,"Not Reported",28,"Odense Fjord","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11436,555580334,"DNK","Birdlife IBA",2010,"Not Reported",28,"Odense Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11437,555538064,"DNK","Birdlife IBA",2007,"Not Reported",28,"Ovesø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11438,67895,"DNK","Birdlife IBA",2010,"Not Reported",28,"Præsto Fjord, Jungshoved Nor, Ulvshale and Nyord","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11439,555522336,"DNK","Birdlife IBA",2010,"Not Reported",28,"Havet og kysten mellem Præstø Fjord og Grønsund","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11440,555538003,"DNK","Birdlife IBA",2010,"Not Reported",28,"Præstø Fjord, Ulvshale, Nyord og Jungshoved Nor","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11441,555543133,"DNK","Birdlife IBA",2010,"Not Reported",28,"The sea and coast between Præstø Fjord and Grøn","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11442,555538026,"DNK","Birdlife IBA",2010,"Not Reported",28,"Rømø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11443,555537984,"DNK","Birdlife IBA",2006,"Not Reported",28,"Ramsø Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11444,555538035,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ribe Holme og enge med Kongeåens udløb","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11445,67875,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ringkobing Fjord","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11446,555522422,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ringkøbing Fjord og Nymindestrømmen","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11447,555538048,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ringkøbing Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11448,555522483,"DNK","Birdlife IBA",2006,"Not Reported",28,"Rold Skov, Lindenborg Ådal og Madum Sø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11449,555538079,"DNK","Birdlife IBA",2006,"Not Reported",28,"Rold Skov","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11450,555522361,"DNK","Birdlife IBA",2009,"Not Reported",28,"Havet mellem Romsø og Hindsholm samt Romsø","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11451,555538016,"DNK","Birdlife IBA",2009,"Not Reported",28,"Romsø og sydkysten af Hindsholm","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11452,555543118,"DNK","Birdlife IBA",2009,"Not Reported",28,"The sea between Romsø and Hindsholm and Romsø","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11453,555522308,"DNK","Birdlife IBA",2006,"Not Reported",28,"Roskilde Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11454,555537985,"DNK","Birdlife IBA",2006,"Not Reported",28,"Roskilde Fjord, Kattinge Vig og Kattinge Sø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11455,555543126,"DNK","Birdlife IBA",2006,"Not Reported",28,"Roskilde Fjord og Jaegerspris Nordskov","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11456,555538024,"DNK","Birdlife IBA",2006,"Not Reported",28,"Sønder Ådal","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11457,555537977,"DNK","Birdlife IBA",2006,"Not Reported",28,"Saltholm og omliggende hav","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11458,555543205,"DNK","Birdlife IBA",2006,"Not Reported",28,"Waters around Saltholm","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11459,555580326,"DNK","Birdlife IBA",2006,"Not Reported",28,"Saltholm og omliggende hav","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11460,67891,"DNK","Birdlife IBA",2006,"Not Reported",28,"Sejro Bugt, Nekselo Bugt & Saltbæk Vig","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11461,555522322,"DNK","Birdlife IBA",2006,"Not Reported",28,"Sejerø Bugt og Saltbæk Vig","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11462,555537986,"DNK","Birdlife IBA",2006,"Not Reported",28,"Sejerø Bugt og Nekselø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11463,555543130,"DNK","Birdlife IBA",2006,"Not Reported",28,"The bay of Sejerø and Saltbæk Vig","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11464,555537987,"DNK","Birdlife IBA",2010,"Not Reported",28,"Skælskør Nor, Skælskør Fjord og Gammelsø","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11465,555522397,"DNK","Birdlife IBA",2008,"Not Reported",28,"Skove langs nordsiden af Vejle Fjord","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11466,555538043,"DNK","Birdlife IBA",2008,"Not Reported",28,"Skovområde ved Vejle Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11467,555522444,"DNK","Birdlife IBA",2008,"Not Reported",28,"Sepstrup Sande, Vrads Sande, Velling Skov og Pals*","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11468,555538059,"DNK","Birdlife IBA",2008,"Not Reported",28,"Skovområde syd for Silkeborg","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11469,555538029,"DNK","Birdlife IBA",2006,"Not Reported",28,"Rinkenæs Skov, Dyrehaven og Rode Skov","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11470,555580328,"DNK","Birdlife IBA",2006,"Not Reported",28,"Rinkenæs Skov, Dyrehaven og Rode Skov","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11471,555538005,"DNK","Birdlife IBA",2010,"Not Reported",28,"Skovene ved Vemmetofte","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11472,555537983,"DNK","Birdlife IBA",2008,"Not Reported",28,"Gammel Havdrup Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11473,555537990,"DNK","Birdlife IBA",2006,"Not Reported",28,"Sprogø og Halsskov Rev","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11474,555543162,"DNK","Birdlife IBA",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11475,67887,"DNK","Birdlife IBA",2006,"Not Reported",28,"Stavns Fjord and adjacent waters","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11476,555522428,"DNK","Birdlife IBA",2006,"Not Reported",28,"Stavns Fjord, Samsø Østerflak og Nordby Hede","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11477,555538054,"DNK","Birdlife IBA",2006,"Not Reported",28,"Stavns Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11478,555543206,"DNK","Birdlife IBA",2006,"Not Reported",28,"Stavns Fjord and adjacent waters","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11479,555577556,"DNK","WH Outlook Report",2014,"Not Reported",28,"Stevns Klint","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11480,67890,"DNK","Birdlife IBA",2010,"Not Reported",28,"South Funen Archipelago","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11481,555522376,"DNK","Birdlife IBA",2010,"Not Reported",28,"Sydfynske Øhav","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11482,555538010,"DNK","Birdlife IBA",2010,"Not Reported",28,"Sydfynske Øhav","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11483,555543125,"DNK","Birdlife IBA",2010,"Not Reported",28,"South Funen sea with islands","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11484,555538023,"DNK","Birdlife IBA",2006,"Not Reported",28,"Tinglev Sø og Mose, Ulvemose og Terkelsbøl Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11485,555522324,"DNK","Birdlife IBA",2010,"Not Reported",28,"Åmose, Tissø, Halleby Å og Flasken","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11486,555537992,"DNK","Birdlife IBA",2010,"Not Reported",28,"Tissø, Åmose og Hallenslev Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11487,555538042,"DNK","Birdlife IBA",2006,"Not Reported",28,"Uldum Kær, Tørring Kær og Ølholm Kær","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11488,555580338,"DNK","Birdlife IBA",2006,"Not Reported",28,"Uldum Kær, Tørring Kær og Ølholm Kær","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11489,67880,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ulvedybet and Nibe Bredning","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11490,555522481,"DNK","Birdlife IBA",2010,"Not Reported",28,"Nibe Bredning, Halkær Ådal og Sønderup Ådal","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11491,555538076,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ulvedybet og Nibe Bredning","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11492,555537998,"DNK","Birdlife IBA",2010,"Not Reported",28,"Ulvsund, Grønsund og Farø Fjord","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11493,555538041,"DNK","Birdlife IBA",2010,"Not Reported",28,"Vadehavet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11494,170248,"DNK","Birdlife IBA",2010,"Not Reported",28,"Vangså, område ved","Protected by conservation order, excl. Church sur*","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11495,555538068,"DNK","Birdlife IBA",2010,"Not Reported",28,"Vangså Hede","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11496,555580346,"DNK","Birdlife IBA",2010,"Not Reported",28,"Vangså Hede","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11497,555538038,"DNK","Birdlife IBA",2006,"Not Reported",28,"Vejen Mose","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11498,555580339,"DNK","Birdlife IBA",2006,"Not Reported",28,"Vejen Mose","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11499,555538052,"DNK","Birdlife IBA",2010,"Not Reported",28,"Venø, Venø Sund","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11500,555580342,"DNK","Birdlife IBA",2010,"Not Reported",28,"Venø, Venø Sund","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11501,555538063,"DNK","Birdlife IBA",2010,"Not Reported",28,"Vestlige Vejler, Arup Holm og Hovsør Røn","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11502,555538012,"DNK","Birdlife IBA",2009,"Not Reported",28,"Vresen og havet mellem Fyn og Langeland","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11503,40978,"EGY","RAPPAM",2006,"Not Reported",28,"Abu Gallum","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11504,313029,"EGY","RAPPAM",2006,"Not Reported",28,"El Ahrash","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11505,312969,"EGY","RAPPAM",2006,"Not Reported",28,"Ashtum El Gamel","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11506,306581,"EGY","RAPPAM",2006,"Not Reported",28,"El Bourollus","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11507,12359,"EGY","RAPPAM",2006,"Not Reported",28,"El Omayed","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11508,312977,"EGY","RAPPAM",2006,"Not Reported",28,"Elba","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11509,313379,"EGY","RAPPAM",2006,"Not Reported",28,"Hasana Dome","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11510,306581,"EGY","Birdlife IBA",2001,"Not Reported",28,"El Bourollus","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11511,40977,"EGY","METT",2009,"Not Reported",28,"Nabq","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11512,40977,"EGY","RAPPAM",2006,"Not Reported",28,"Nabq","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11513,3020,"EGY","GOBI Survey",2006,"Not Reported",28,"Omayed","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11514,312964,"EGY","RAPPAM",2006,"Not Reported",28,"Petrified Forest","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11515,14899,"EGY","RAPPAM",2006,"Not Reported",28,"Qarun","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11516,9782,"EGY","METT",2009,"Not Reported",28,"Ras Mohammed","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11517,9782,"EGY","RAPPAM",2006,"Not Reported",28,"Ras Mohammed","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11518,111111,"USA","RAPPAM",2006,"Not Reported",28,"Hideaway Islands","Research Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11519,555543022,"EGY","METT",2009,"Not Reported",28,"Red Sea Islands","Developing Resources Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11521,12363,"EGY","METT",2009,"Not Reported",28,"St. Catherine","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11522,13650,"EGY","RAPPAM",2006,"Not Reported",28,"Salouga and Ghazal","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11523,14900,"EGY","RAPPAM",2006,"Not Reported",28,"Siwa","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11524,12363,"EGY","RAPPAM",2006,"Not Reported",28,"St. Catherine","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11525,12363,"EGY","METT",2011,"Not Reported",28,"St. Catherine","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11526,312963,"EGY","RAPPAM",2006,"Not Reported",28,"Taba","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11527,14895,"EGY","RAPPAM",2006,"Not Reported",28,"Wadi Al Alaqi","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11528,902487,"EGY","WH Outlook Report",2014,"Not Reported",28,"Wadi Al-Hitan (Whale Valley)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11529,61414,"EGY","GOBI Survey",2006,"Not Reported",28,"Wadi Allaqi","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11530,18771,"EGY","RAPPAM",2006,"Not Reported",28,"Wadi El Assuti","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11531,312975,"EGY","METT",2009,"Not Reported",28,"Wadi Degla","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11532,312975,"EGY","RAPPAM",2006,"Not Reported",28,"Wadi Degla","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11533,306589,"EGY","RAPPAM",2006,"Not Reported",28,"Wadi El-Gemal - Hamata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11534,306589,"EGY","METT",2009,"Not Reported",28,"Wadi El-Gemal - Hamata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11535,30006,"EGY","METT",2009,"Not Reported",28,"Wadi El Rayan","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11536,30006,"EGY","RAPPAM",2006,"Not Reported",28,"Wadi El Rayan","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11537,30006,"EGY","Birdlife IBA",2001,"Not Reported",28,"Wadi El Rayan","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11538,555547985,"EGY","Birdlife IBA",2001,"Not Reported",28,"Wadi El Rayan Protected Area","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11539,313380,"EGY","RAPPAM",2006,"Not Reported",28,"Wadi Sannur Cave","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11540,306592,"EGY","METT",2009,"Not Reported",28,"White Desert","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11541,306592,"EGY","RAPPAM",2006,"Not Reported",28,"White Desert","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11542,312966,"EGY","RAPPAM",2006,"Not Reported",28,"Zaranik","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11543,145569,"DZA","GOBI Survey",2006,"Not Reported",28,"Djurdjura","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11544,902531,"DZA","GOBI Survey",2006,"Not Reported",28,"Gouraya","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11545,17706,"DZA","Birdlife IBA",2001,"Not Reported",28,"Lac Oubeira","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11546,67756,"DZA","Birdlife IBA",2001,"Not Reported",28,"Lac Tonga","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11547,23177,"DZA","Birdlife IBA",2001,"Not Reported",28,"Parc Culturel de l'Ahagghar (Tamanrasset)","Cultural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11548,4999,"DZA","Birdlife IBA",2001,"Not Reported",28,"Tassili n'Ajjer","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11549,12352,"DZA","Birdlife IBA",2001,"Not Reported",28,"Parc Culturel du Tassili (Illizi)","Cultural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11550,4999,"DZA","METT",2010,"Not Reported",28,"Tassili n'Ajjer","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11551,4999,"DZA","WH Outlook Report",2014,"Not Reported",28,"Tassili n'Ajjer","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11552,902530,"DZA","GOBI Survey",2006,"Not Reported",28,"Taza","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11553,67740,"FRA","GOBI Survey",2006,"Not Reported",28,"Archipel de la Guadeloupe","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11554,6325,"FRA","European Diploma",1966,"Not Reported",28,"Camargue","Regional Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11555,7165,"FRA","Stockholm BR Survey",2008,"Not Reported",28,"Camargue","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11556,660,"FRA","French National Parks",2008,"Not Reported",28,"C�vennes","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11557,659,"FRA","French National Parks",2008,"Not Reported",28,"Ecrins","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11558,9617,"FRA","WH Outlook Report",2014,"Not Reported",28,"Gulf of Porto: Calanche of Piana, Gulf of Girolata, Scandola Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11559,903134,"FRA","WH Outlook Report",2014,"Not Reported",28,"Lagoons of New Caledonia: Reef Diversity and Associated Ecosystems","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11560,659,"FRA","European Diploma",1990,"Not Reported",28,"Ecrins","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11561,95332,"FRA","Birdlife IBA",2013,"Not Reported",28,"Grande Briere","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11562,555526084,"FRA","Birdlife IBA",2013,"Not Reported",28,"Grande Brière et marais de Donges","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11563,555539359,"FRA","Birdlife IBA",2013,"Not Reported",28,"Grande Brière, marais de Donges et du Brivet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11564,664,"FRA","European Diploma",1993,"Not Reported",28,"Mercantour","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11565,664,"FRA","French National Parks",2008,"Not Reported",28,"Mercantour","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11566,26648,"FRA","GOBI Survey",2006,"Not Reported",28,"Mont Ventoux","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11567,26648,"FRA","Stockholm BR Survey",2008,"Not Reported",28,"Mont Ventoux","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11568,168198,"FRA","GOBI Survey",2006,"Not Reported",28,"Pays de Fontainebleau","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11569,168198,"FRA","Stockholm BR Survey",2008,"Not Reported",28,"Pays de Fontainebleau","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11570,555512006,"FRA","WH Outlook Report",2014,"Not Reported",28,"Pitons, cirques and remparts of Reunion Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11571,555539401,"FRA","Birdlife IBA",2013,"Not Reported",28,"Plaine de Niort Nord-Ouest","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11572,663,"FRA","European Diploma",1997,"Not Reported",28,"Port-Cros","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11573,663,"FRA","French National Parks",2008,"Not Reported",28,"Port-Cros","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11574,662,"FRA","French National Parks",2008,"Not Reported",28,"Pyr�n�es","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11575,145590,"ESP","FRA","WH Outlook Report",2014,"Not Reported",28,"Pyr�n�es - Mont Perdu","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE", +11576,7168,"FRA","European Diploma",1985,"Not Reported",28,"Scandola","Corsican Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11577,2067,"FRA","GOBI Survey",2006,"Not Reported",28,"Vall�e du Fango","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11578,661,"FRA","European Diploma",1976,"Not Reported",28,"Vanoise","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11579,661,"FRA","French National Parks",2008,"Not Reported",28,"Vanoise","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11580,67741,"FRA","GOBI Survey",2006,"Not Reported",28,"Vosges du Nord/Pfälzerwald (Germany)","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11581,902505,"FSM","GOBI Survey",2006,"Not Reported",28,"Utwe","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11582,903129,"GAB","WH Outlook Report",2014,"Not Reported",28,"Ecosystem and Relict Cultural Landscape of Lopé-Okanda","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11583,5187,"GAB","GOBI Survey",2006,"Not Reported",28,"R�serve naturelle int�grale d'Ipassa-Makokou","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11584,303873,"GAB","METT",2005,"Not Reported",28,"Ivindo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11585,303873,"GAB","METT",2006,"Not Reported",28,"Ivindo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11586,303874,"GAB","METT",2007,"Not Reported",28,"Loango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11587,303874,"GAB","METT",2010,"Not Reported",28,"Loango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11588,303874,"GAB","RAPPAM",2010,"Not Reported",28,"Loango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11589,303875,"GAB","Africa Rainforest Study",2001,"Not Reported",28,"Lop�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11590,303875,"GAB","RAPPAM",2010,"Not Reported",28,"Lop�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11591,301850,"GAB","METT",2007,"Not Reported",28,"Mayumba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11592,72324,"GAB","METT",2004,"Not Reported",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11593,72324,"GAB","METT",2005,"Not Reported",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11595,72324,"GAB","RAPPAM",2010,"Not Reported",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11596,72324,"GAB","METT",2010,"Not Reported",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11597,303877,"GAB","METT",2007,"Not Reported",28,"Moukalaba doudou","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11598,303878,"GAB","METT",2005,"Not Reported",28,"Mwagne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11599,303878,"GAB","METT",2006,"Not Reported",28,"Mwagne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11600,5173,"GHA","Africa Rainforest Study",2001,"Not Reported",28,"Nini-Suhien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11601,5173,"GHA","RAPPAM",2002,"Not Reported",28,"Nini-Suhien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11602,5173,"GHA","METT",2003,"Not Reported",28,"Nini-Suhien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11603,67970,"GHA","RAPPAM",2009,"Not Reported",28,"Anlo-Keta lagoon complex","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11604,26463,"GHA","RAPPAM",2002,"Not Reported",28,"Assin-Attandanso","Game Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11605,672,"GHA","Africa Rainforest Study",2001,"Not Reported",28,"Bia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11606,5189,"GHA","METT",2009,"Not Reported",28,"Bia National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11607,672,"GHA","Birdlife IBA",2001,"Not Reported",28,"Bia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11608,5150,"GHA","Birdlife IBA",2001,"Not Reported",28,"Bia","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11609,40813,"GHA","Birdlife IBA",2001,"Not Reported",28,"Bia Trributaries South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11610,26460,"GHA","Africa Rainforest Study",2001,"Not Reported",28,"Kakum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11611,26460,"GHA","RAPPAM",2002,"Not Reported",28,"Kakum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11612,26460,"GHA","METT",2003,"Not Reported",28,"Kakum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11613,67970,"GHA","Birdlife IBA",2001,"Not Reported",28,"Anlo-Keta lagoon complex","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11614,40815,"GHA","METT",2009,"Not Reported",28,"Krokosua Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11615,68788,"GHA","METT",2003,"Not Reported",28,"Kyabobo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11616,68788,"GHA","RAPPAM",2002,"Not Reported",28,"Kyabobo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11618,67968,"GHA","RAPPAM",2009,"Not Reported",28,"Sakumo Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11619,67969,"GHA","RAPPAM",2009,"Not Reported",28,"Songor Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11620,3214,"GMB","RAPPAM",2009,"Not Reported",28,"Abuko","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11621,31330,"GMB","Birdlife IBA",2001,"Not Reported",28,"Baobolon Wetland Reserve","Wetland Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11622,145529,"GMB","Birdlife IBA",2001,"Not Reported",28,"Baobolon Wetland Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11623,31330,"GMB","RAPPAM",2009,"Not Reported",28,"Baobolon Wetland Reserve","Wetland Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11624,555547522,"GMB","RAPPAM",2009,"Not Reported",28,"Gunjur (Bolonfenyo)","Community Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11625,2289,"GMB","RAPPAM",2009,"Not Reported",28,"Kiang West","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11626,2289,"GMB","METT",2010,"Not Reported",28,"Kiang West","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11627,2289,"GMB","METT",2011,"Not Reported",28,"Kiang West","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11628,2290,"GMB","RAPPAM",2009,"Not Reported",28,"Niumi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11630,2288,"GMB","RAPPAM",2009,"Not Reported",28,"River Gambia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11631,903024,"GMB","RAPPAM",2009,"Not Reported",28,"Tanbi Wetland Complex","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11632,62085,"GMB","RAPPAM",2009,"Not Reported",28,"Tanji","Bird Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11633,62085,"GMB","METT",2010,"Not Reported",28,"Tanji","Bird Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11634,62085,"GMB","METT",2011,"Not Reported",28,"Tanji","Bird Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11635,67909,"GRL","Birdlife IBA",2013,"Not Reported",28,"Heden (Jameson Land)","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11636,342670,"GNB","METT",2009,"Not Reported",28,"Boé","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11637,33046,"GNB","Marine Tracking Tool",2004,"Not Reported",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11638,33046,"GNB","RAPPAM",2009,"Not Reported",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11639,33046,"GNB","RAPPAM",2007,"Not Reported",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11640,351088,"GNB","Marine Tracking Tool",2004,"Not Reported",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11641,33050,"GNB","METT",2009,"Not Reported",28,"Dulombi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11642,33047,"GNB","METT",2006,"Not Reported",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11643,317052,"GNB","Marine Tracking Tool",2004,"Not Reported",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11644,317052,"GNB","METT",2004,"Not Reported",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11645,317052,"GNB","METT",2006,"Not Reported",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11646,317052,"GNB","RAPPAM",2009,"Not Reported",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11647,317052,"GNB","RAPPAM",2007,"Not Reported",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11648,33048,"GNB","Birdlife IBA",2001,"Not Reported",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11649,33048,"GNB","Marine Tracking Tool",2004,"Not Reported",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11650,33048,"GNB","METT",2004,"Not Reported",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11651,33048,"GNB","METT",2005,"Not Reported",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11652,33048,"GNB","METT",2006,"Not Reported",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11653,33048,"GNB","RAPPAM",2007,"Not Reported",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11654,351088,"GNB","METT",2004,"Not Reported",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11655,351088,"GNB","METT",2005,"Not Reported",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11656,351088,"GNB","METT",2006,"Not Reported",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11657,351088,"GNB","RAPPAM",2007,"Not Reported",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11658,33047,"GNB","Marine Tracking Tool",2004,"Not Reported",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11659,33047,"GNB","METT",2004,"Not Reported",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11660,33047,"GNB","METT",2005,"Not Reported",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11661,33047,"GNB","RAPPAM",2007,"Not Reported",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11662,33047,"GNB","RAPPAM",2009,"Not Reported",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11663,33047,"GNB","METT",2007,"Not Reported",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11664,351088,"GNB","METT",2010,"Not Reported",28,"Cantanhez Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11665,33047,"GNB","METT",2010,"Not Reported",28,"Orango","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11666,317052,"GNB","METT",2010,"Not Reported",28,"João Vieira and Poilão Marine National Park","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11667,33048,"GNB","METT",2010,"Not Reported",28,"Lagoas de Cufada","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11668,33046,"GNB","METT",2010,"Not Reported",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11669,342672,"GNB","METT",2009,"Not Reported",28,"Salifo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11670,33046,"GNB","METT",2004,"Not Reported",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11671,33046,"GNB","METT",2005,"Not Reported",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11672,33046,"GNB","METT",2006,"Not Reported",28,"Rio Cacheu Mangroves","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11673,342655,"GNB","RAPPAM",2009,"Not Reported",28,"Ilhas Formosa , Nago & Tchediã (Urok)","Marine Community Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11674,388667,"GUF","METT",0,"Not Reported",28,"Guyane (parc amazonien)","National Park - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11675,555514403,"GUF","METT",2005,"Not Reported",28,"Trésor","Regional Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11676,555539885,"IRL","Birdlife IBA",2000,"Not Reported",28,"Blackwater Estuary SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11677,555527921,"IRL","Birdlife IBA",2013,"Not Reported",28,"Boyne Coast and Estuary SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11678,555539931,"IRL","Birdlife IBA",2013,"Not Reported",28,"Boyne Estuary SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11679,555527720,"IRL","Birdlife IBA",2000,"Not Reported",28,"Castlemaine Harbour SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11680,555527760,"IRL","Birdlife IBA",2009,"Not Reported",28,"Inishkea Islands SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11681,555539863,"IRL","Birdlife IBA",2009,"Not Reported",28,"Inishkea Islands SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11682,555527668,"IRL","Birdlife IBA",2009,"Not Reported",28,"Inishtrahull SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11683,555577755,"IRL","Birdlife IBA",2009,"Not Reported",28,"Inishtrahull SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11684,555527651,"IRL","Birdlife IBA",2009,"Not Reported",28,"Clonakilty Bay SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11685,555539932,"IRL","Birdlife IBA",2009,"Not Reported",28,"Clonakilty Bay SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11686,555527685,"IRL","Birdlife IBA",2013,"Not Reported",28,"Lambay Island SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11687,555539922,"IRL","Birdlife IBA",2013,"Not Reported",28,"Lambay Island SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11688,555527713,"IRL","Birdlife IBA",2000,"Not Reported",28,"Rahasane Turlough SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11689,555539939,"IRL","Birdlife IBA",2000,"Not Reported",28,"Rahasane Turlough SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11690,555539858,"IRL","Birdlife IBA",2013,"Not Reported",28,"River Shannon Callows SAC","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11691,555539946,"IRL","Birdlife IBA",2013,"Not Reported",28,"Middle Shannon Callows SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11692,555539924,"IRL","Birdlife IBA",2000,"Not Reported",28,"Tory Island SPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11693,903064,"IRQ","Birdlife IBA",2013,"Not Reported",28,"Hawizeh Marsh (Haur Al-Hawizeh)","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11694,68003,"ISL","Birdlife IBA",2013,"Not Reported",28,"Myvatn-Laxá region","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11695,903139,"ISL","WH Outlook Report",2014,"Not Reported",28,"Surtsey","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11696,178867,"ITA","METT",2003,"Not Reported",28,"Riserva naturale guidata Abetina di Rosello","Regional/Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11697,719,"ITA","European Diploma",1967,"Not Reported",28,"Parco nazionale Abruzzo, Lazio e Molise","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11698,1978,"ITA","National PAME Assessment",0,"Not Reported",28,"Parco nazionale del Circeo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11699,31169,"ITA","METT",2003,"Not Reported",28,"Riserva naturale Cratere degli Astroni","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11700,15301,"ITA","METT",2003,"Not Reported",28,"Parco regionale Diecimare","Regional/Provincial Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11701,718,"ITA","European Diploma",2006,"Not Reported",28,"Parco nazionale del Gran Paradiso","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11702,178894,"ITA","METT",2003,"Not Reported",28,"Oasi naturale di Guardiaregia - Campochiaro","Other Protected Natural Regional Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11703,13172,"ITA","MPA MEE",2009,"Not Reported",28,"Area marina protetta Isole Ciclopi","Natural Marine Reserve and Natural Protected Marine Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11704,900008,"ITA","WH Outlook Report",2014,"Not Reported",28,"Isole Eolie (Aeolian Islands)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11705,178992,"ITA","METT",2003,"Not Reported",28,"Oasi di Macchiagrande","Other Protected Natural Regional Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11706,64513,"ITA","METT",2005,"Not Reported",28,"Parco nazionale della Maiella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11707,64513,"ITA","PANPARKS",2005,"Not Reported",28,"Parco nazionale della Maiella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11708,64513,"ITA","PANPARKS",2006,"Not Reported",28,"Parco nazionale della Maiella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11709,64513,"ITA","PANPARKS",2007,"Not Reported",28,"Parco nazionale della Maiella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11710,26609,"ITA","European Diploma",1992,"Not Reported",28,"Parco naturale della Maremma","Regional/Provincial Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11711,6022,"ITA","European Diploma",1993,"Not Reported",28,"Parco naturale delle Alpi Marittime","Regional/Provincial Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11712,6006,"ITA","European Diploma",2005,"Not Reported",28,"Parco naturale di Migliarino, San Rossore e Massaciuccoli","Regional/Provincial Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11713,3033,"ITA","GOBI Survey",2006,"Not Reported",28,"Miramare","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11714,31209,"ITA","METT",2003,"Not Reported",28,"Riserva di Monte Arcosu","Other Protected Natural Regional Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11715,178942,"ITA","METT",2003,"Not Reported",28,"Oasi naturale del Monte Polveracchio","Other Protected Natural Regional Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11716,900879,"ITA","WH Outlook Report",2014,"Not Reported",28,"Monte San Giorgio","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11717,31115,"ITA","European Diploma",1988,"Not Reported",28,"Riserva naturale Isola di Montecristo","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11718,555556047,"ITA","WH Outlook Report",2014,"Not Reported",28,"Mount Etna","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11720,13176,"ITA","MPA MEE",2009,"Not Reported",28,"Area marina protetta Penisola del Sinis - Isola Mal di Ventre","Natural Marine Reserve and Natural Protected Marine Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11721,31100,"ITA","European Diploma",1985,"Not Reported",28,"Riserva naturale Sasso Fratino","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11722,20721,"ITA","MPA MEE",2009,"Not Reported",28,"Area naturale marina protetta Secche di Tor Paterno","Natural Marine Reserve and Natural Protected Marine Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11723,902541,"ITA","GOBI Survey",2006,"Not Reported",28,"Selva Pisana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11724,902541,"ITA","Stockholm BR Survey",2008,"Not Reported",28,"Selva Pisana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11725,478641,"ITA","WH Outlook Report",2014,"Not Reported",28,"The Dolomites","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11726,15263,"ITA","MPA MEE",2009,"Not Reported",28,"Riserva naturale marina Torre Guaceto","Natural Marine Reserve and Natural Protected Marine Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11727,168201,"JOR","GOBI Survey",2006,"Not Reported",28,"Dana Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11728,30697,"JOR","METT",2005,"Not Reported",28,"Dibeen Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11729,30697,"JOR","METT",2007,"Not Reported",28,"Dibeen Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11730,30697,"JOR","METT",2006,"Not Reported",28,"Dibeen Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11731,30697,"JOR","METT",2012,"Not Reported",28,"Dibeen Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11732,30694,"JOR","METT",2006,"Not Reported",28,"Fifa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11733,30694,"JOR","METT",2011,"Not Reported",28,"Fifa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11734,17232,"JOR","METT",2006,"Not Reported",28,"Mujib Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11735,17232,"JOR","METT",2007,"Not Reported",28,"Mujib Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11736,313089,"JOR","METT",2006,"Not Reported",28,"Qatar Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11737,313089,"JOR","METT",2011,"Not Reported",28,"Qatar Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11738,17232,"JOR","Birdlife IBA",2013,"Not Reported",28,"Mujib Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11739,555542337,"JOR","WH Outlook Report",2014,"Not Reported",28,"Wadi Rum Protected Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11740,313091,"JOR","METT",2006,"Not Reported",28,"Yarmouk Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11741,313091,"JOR","METT",2011,"Not Reported",28,"Yarmouk Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11742,313091,"JOR","METT",0,"Not Reported",28,"Yarmouk Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11743,1671,"KAZ","METT",2007,"Not Reported",28,"Aksu-Dzhabagly","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11744,1669,"KAZ","Birdlife IBA",2006,"Not Reported",28,"Alma-Atinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11745,100017,"KAZ","Birdlife IBA",2005,"Not Reported",28,"Altun Emel","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11746,1673,"KAZ","METT",2012,"Not Reported",28,"Barsakel'messkiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11747,62641,"KAZ","METT",2009,"Not Reported",28,"Bayanayl'skiy","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11748,100018,"KAZ","METT",2011,"Not Reported",28,"Ele Alatau","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11749,100018,"KAZ","METT",2006,"Not Reported",28,"Ele Alatau","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11750,100018,"KAZ","METT",2009,"Not Reported",28,"Ele Alatau","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11751,17722,"KAZ","Birdlife IBA",2004,"Not Reported",28,"Lakes of the lower Turgay & Irgiz","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11752,62625,"KAZ","Birdlife IBA",2004,"Not Reported",28,"Turgaiskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11753,17722,"KAZ","METT",2011,"Not Reported",28,"Lakes of the lower Turgay & Irgiz","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11754,342652,"KAZ","Birdlife IBA",2006,"Not Reported",28,"Mangyshlakskiy","Experimental Botanical Garden","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11755,1668,"KAZ","Birdlife IBA",2006,"Not Reported",28,"Kurgal'dzhinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11756,17721,"KAZ","Birdlife IBA",2006,"Not Reported",28,"Tengiz-Korgalzhyn Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11757,903137,"KAZ","Birdlife IBA",2006,"Not Reported",28,"Saryarka ÔÇô Steppe and Lakes of Northern Kazakhstan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11758,478024,"KAZ","Birdlife IBA",2007,"Not Reported",28,"Koibagar-Tyuntyugur Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11759,1672,"KAZ","METT",2008,"Not Reported",28,"Markakol'skiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11760,1672,"KAZ","Birdlife IBA",2006,"Not Reported",28,"Markakol'skiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11761,1672,"KAZ","METT",2011,"Not Reported",28,"Markakol'skiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11762,1670,"KAZ","METT",2003,"Not Reported",28,"Naurzumskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11763,478036,"KAZ","Birdlife IBA",2004,"Not Reported",28,"Naurzum Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11764,903137,"KAZ","WH Outlook Report",2014,"Not Reported",28,"Saryarka ÔÇô Steppe and Lakes of Northern Kazakhstan","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11765,100017,"KAZ","METT",2012,"Not Reported",28,"Altun Emel","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11766,478037,"KAZ","METT",2007,"Not Reported",28,"Zharsor-Urkash Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11767,478037,"KAZ","METT",2008,"Not Reported",28,"Zharsor-Urkash Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11768,11827,"KAZ","METT",2012,"Not Reported",28,"Ustyurtskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11769,478037,"KAZ","Birdlife IBA",2004,"Not Reported",28,"Zharsor-Urkash Lake System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11770,758,"KEN","Birdlife IBA",1999,"Not Reported",28,"Amboseli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11771,7422,"KEN","METT",2005,"Not Reported",28,"Arabuko Sokoke","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11772,7422,"KEN","METT",2006,"Not Reported",28,"Arabuko Sokoke","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11773,7422,"KEN","Birdlife IBA",1999,"Not Reported",28,"Arabuko Sokoke","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11774,2417,"KEN","METT",2007,"Not Reported",28,"Boni","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11775,2417,"KEN","METT",2013,"Not Reported",28,"Boni","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11776,7543,"KEN","METT",2006,"Not Reported",28,"Buda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11777,7543,"KEN","METT",2010,"Not Reported",28,"Buda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11778,7543,"KEN","METT",2012,"Not Reported",28,"Buda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11779,7543,"KEN","METT",2007,"Not Reported",28,"Buda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11780,478054,"KEN","METT",2006,"Not Reported",28,"Kaya Chonyi","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11781,2591,"KEN","METT",2013,"Not Reported",28,"Dodori","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11782,478058,"KEN","METT",2006,"Not Reported",28,"Kaya Dzombo","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11783,7561,"KEN","METT",2006,"Not Reported",28,"Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11784,378055,"KEN","METT",2006,"Not Reported",28,"Barnstedt-Melbecker Bach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11785,33450,"KEN","METT",2005,"Not Reported",28,"Kakamega","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11786,33450,"KEN","METT",2006,"Not Reported",28,"Kakamega","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11787,33450,"KEN","METT",2009,"Not Reported",28,"Kakamega","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11788,478056,"KEN","METT",2006,"Not Reported",28,"Kaya Kambe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11790,478056,"KEN","METT",2007,"Not Reported",28,"Kaya Kambe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11791,478056,"KEN","METT",2008,"Not Reported",28,"Kaya Kambe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11792,478054,"KEN","METT",2007,"Not Reported",28,"Kaya Chonyi","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11793,478054,"KEN","METT",2008,"Not Reported",28,"Kaya Chonyi","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11794,478058,"KEN","METT",2007,"Not Reported",28,"Kaya Dzombo","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11795,7561,"KEN","METT",2007,"Not Reported",28,"Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11796,478055,"KEN","METT",2007,"Not Reported",28,"Kaya Jibana","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11797,478055,"KEN","METT",2008,"Not Reported",28,"Kaya Jibana","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11800,478057,"KEN","METT",2007,"Not Reported",28,"Kaya Ribe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11801,478057,"KEN","METT",2008,"Not Reported",28,"Kaya Ribe","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11802,555542339,"KEN","WH Outlook Report",2014,"Not Reported",28,"Kenya Lake System in the Great Rift Valley","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11803,7602,"KEN","Birdlife IBA",1999,"Not Reported",28,"Kikuyu Escarpment","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11804,763,"KEN","West Indian Ocean MPA",2003,"Not Reported",28,"Kisite","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11805,3038,"KEN","West Indian Ocean MPA",2003,"Not Reported",28,"Kiunga Marine Conservancy","Community Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11806,103549,"KEN","Birdlife IBA",1999,"Not Reported",28,"Lake Naivasha","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11807,762,"KEN","Birdlife IBA",1999,"Not Reported",28,"Lake Nakuru","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11808,68092,"KEN","Birdlife IBA",1999,"Not Reported",28,"Lake Nakuru","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11809,145586,"KEN","WH Outlook Report",2014,"Not Reported",28,"Lake Turkana National Parks","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11810,765,"KEN","West Indian Ocean MPA",2003,"Not Reported",28,"Mallindi","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11811,7644,"KEN","METT",2006,"Not Reported",28,"Marenji","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11812,7644,"KEN","METT",2007,"Not Reported",28,"Marenji","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11813,755,"KEN","Birdlife IBA",1999,"Not Reported",28,"Meru","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11814,14013,"KEN","West Indian Ocean MPA",2003,"Not Reported",28,"Mombasa","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11815,901249,"KEN","GOBI Survey",2006,"Not Reported",28,"Mount Elgon","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11816,145585,"KEN","WH Outlook Report",2014,"Not Reported",28,"Mount Kenya National Park/Natural Forest","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11817,2085,"KEN","GOBI Survey",2006,"Not Reported",28,"Mount Kulal Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11818,19568,"KEN","West Indian Ocean MPA",2003,"Not Reported",28,"Mpunguti","Marine National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11819,7664,"KEN","METT",2006,"Not Reported",28,"Mrima","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11820,7664,"KEN","METT",2007,"Not Reported",28,"Mrima","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11821,7676,"KEN","METT",2006,"Not Reported",28,"Mwachi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11822,7676,"KEN","METT",2007,"Not Reported",28,"Mwachi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11823,2433,"KEN","Birdlife IBA",1999,"Not Reported",28,"Mwea","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11824,761,"KEN","Birdlife IBA",1999,"Not Reported",28,"Nairobi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11825,378057,"KEN","METT",2006,"Not Reported",28,"Bergbaufolgelandschaft Gr├╝nhaus","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11826,2427,"KEN","Birdlife IBA",1999,"Not Reported",28,"Shaba","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11827,759,"KEN","METT",2004,"Not Reported",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11828,759,"KEN","METT",2006,"Not Reported",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11830,2299,"KEN","METT",2006,"Not Reported",28,"Tana River Primate","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11832,2299,"KEN","METT",2007,"Not Reported",28,"Tana River Primate","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11834,752,"KEN","Birdlife IBA",1999,"Not Reported",28,"Tsavo East","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11835,19564,"KEN","Birdlife IBA",1999,"Not Reported",28,"Tsavo West","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11836,19566,"KEN","West Indian Ocean MPA",2003,"Not Reported",28,"Watamu","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11837,7744,"KEN","METT",2006,"Not Reported",28,"Witu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11838,7744,"KEN","METT",2007,"Not Reported",28,"Witu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11839,167076,"KGZ","Birdlife IBA",2006,"Not Reported",28,"Chatyrkul","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11840,902830,"KGZ","Birdlife IBA",2006,"Not Reported",28,"Chatyr Kul","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11841,167118,"KGZ","METT",2013,"Not Reported",28,"Sarychat-Ertash NR","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11842,167122,"KGZ","Birdlife IBA",2006,"Not Reported",28,"Sonkul","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11843,555542701,"KGZ","Birdlife IBA",2006,"Not Reported",28,"Son-Kol Lake","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11844,313446,"KHM","Birdlife IBA",2007,"Not Reported",28,"Ang Trapeng Thmor","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11845,2351,"KHM","RAPPAM",2004,"Not Reported",28,"Angkor Wat","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11846,68870,"KHM","RAPPAM",2004,"Not Reported",28,"Banteay Chhmar","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11847,68867,"KHM","RAPPAM",2004,"Not Reported",28,"Beng Per","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11848,313448,"KHM","RAPPAM",2004,"Not Reported",28,"Boeng Tonle Chhmar","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11849,198314,"KHM","METT",2010,"Not Reported",28,"Boeng Chhmar and Associated River System and Floodplain","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11850,478395,"KHM","Birdlife IBA",2007,"Not Reported",28,"Trapeang Lpeou","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11851,478405,"KHM","RAPPAM",2004,"Not Reported",28,"Botum Sakor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11852,313445,"KHM","Birdlife IBA",2005,"Not Reported",28,"Central Cardamom Mountains","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11853,68871,"KHM","RAPPAM",2004,"Not Reported",28,"Dong Peng","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11854,68857,"KHM","RAPPAM",2004,"Not Reported",28,"Kep","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11855,10193,"KHM","RAPPAM",2004,"Not Reported",28,"Kirirom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11856,198315,"KHM","RAPPAM",2004,"Not Reported",28,"Koh Kapik and Associated Islets","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11857,61943,"KHM","METT",2010,"Not Reported",28,"Kulen Promtep","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11858,61943,"KHM","METT",2006,"Not Reported",28,"Kulen Promtep","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11859,61943,"KHM","RAPPAM",2004,"Not Reported",28,"Kulen Promtep","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11860,10121,"KHM","RAPPAM",2004,"Not Reported",28,"Lomphat","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11861,313449,"KHM","Birdlife IBA",2007,"Not Reported",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11862,313444,"KHM","METT",2009,"Not Reported",28,"Mondulkiri","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11863,68864,"KHM","RAPPAM",2004,"Not Reported",28,"Peam Krasop","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11864,313447,"KHM","RAPPAM",2004,"Not Reported",28,"Phnom Aural","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11865,68856,"KHM","Birdlife IBA",2006,"Not Reported",28,"Preah Monivong (Bokor)","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11866,68861,"KHM","RAPPAM",2004,"Not Reported",28,"Phnom Kulen","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11867,68868,"KHM","RAPPAM",2004,"Not Reported",28,"Pnom Namlear","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11868,10120,"KHM","METT",2003,"Not Reported",28,"Phnom Prich","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11869,10120,"KHM","METT",2009,"Not Reported",28,"Phnom Prich","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11870,10120,"KHM","RAPPAM",2004,"Not Reported",28,"Phnom Prich","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11871,68865,"KHM","Birdlife IBA",2005,"Not Reported",28,"Phnom Samkos","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11872,68865,"KHM","RAPPAM",2004,"Not Reported",28,"Phnom Samkos","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11873,313443,"KHM","METT",2010,"Not Reported",28,"Preah Vihear","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11874,313443,"KHM","RAPPAM",2004,"Not Reported",28,"Preah Vihear","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11875,313450,"KHM","METT",2009,"Not Reported",28,"Prek Toal","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11876,313450,"KHM","METT",2010,"Not Reported",28,"Prek Toal","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11877,313450,"KHM","RAPPAM",2004,"Not Reported",28,"Prek Toal","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11878,313450,"KHM","METT",2005,"Not Reported",28,"Prek Toal","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11879,68859,"KHM","RAPPAM",2004,"Not Reported",28,"Ream","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11880,478401,"KHM","RAPPAM",2004,"Not Reported",28,"Roniem Daun Sam I","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11881,68872,"KHM","RAPPAM",2004,"Not Reported",28,"Samlaut","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11882,68869,"KHM","RAPPAM",2004,"Not Reported",28,"Snoul","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11883,313449,"KHM","METT",2005,"Not Reported",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11884,313449,"KHM","METT",2009,"Not Reported",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11885,313449,"KHM","METT",2010,"Not Reported",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11886,313449,"KHM","RAPPAM",2004,"Not Reported",28,"Stung Sen","Multiple Use Management Area - Core Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11887,145807,"KHM","GOBI Survey",2006,"Not Reported",28,"Tonle Sap","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11890,68862,"KHM","Asean MEE",2012,"Not Reported",28,"Virachey","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11891,68862,"KHM","RAPPAM",2004,"Not Reported",28,"Virachey","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11892,4254,"KIR","Birdlife IBA",2007,"Not Reported",28,"Malden Island (Closed Area)","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11893,555512002,"KIR","WH Outlook Report",2014,"Not Reported",28,"Phoenix Islands Protected Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11894,220043,"LBN","Birdlife IBA",1994,"Not Reported",28,"Ammiq Wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11895,902497,"LBN","GOBI Survey",2006,"Not Reported",28,"Shouf","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11896,555576134,"LBN","Birdlife IBA",1994,"Not Reported",28,"Al Shouf Cedars Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11897,15060,"LBN","METT",2007,"Not Reported",28,"Arz Tannourine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11898,15060,"LBN","METT",2004,"Not Reported",28,"Arz Tannourine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11899,900006,"ZAF","LSO","WH Outlook Report",2014,"Not Reported",28,"Maloti-Drakensberg Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE", +11900,7447,"LSO","METT",2005,"Not Reported",28,"Sehlabathebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11901,181880,"LVA","METT",2006,"Not Reported",28,"Bernāti","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11902,146748,"LVA","METT",2006,"Not Reported",28,"Ķemeru nacionālais parks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11903,95339,"LVA","METT",2006,"Not Reported",28,"Lake Engure","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11904,145808,"LVA","GOBI Survey",2006,"Not Reported",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11905,145808,"LVA","METT",2005,"Not Reported",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11906,145808,"LVA","METT",2008,"Not Reported",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11907,145808,"LVA","METT",2009,"Not Reported",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11908,145808,"LVA","Stockholm BR Survey",2008,"Not Reported",28,"North Vidzeme","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11909,1679,"LVA","METT",2006,"Not Reported",28,"Slīteres nacionālais parks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11910,1679,"LVA","METT",0,"Not Reported",28,"Slīteres nacionālais parks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11911,172550,"LVA","METT",2006,"Not Reported",28,"Užava","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11912,37069,"LVA","METT",2006,"Not Reported",28,"Vidzemes akmeņainā jūrmala","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11913,902701,"MAR","Birdlife IBA",2001,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11914,17713,"MAR","Birdlife IBA",2001,"Not Reported",28,"Baie de Khnifiss","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11915,11689,"MAR","Birdlife IBA",2001,"Not Reported",28,"Merja Zerga","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11916,555571315,"MAR","GOBI Survey",2006,"Not Reported",28,"R�serve de Biosph�re des Oasis du Sud Marocain","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11917,11697,"MAR","Birdlife IBA",2001,"Not Reported",28,"Sous Massa National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11918,902705,"MAR","Birdlife IBA",2001,"Not Reported",28,"Sidi Moussa Oualidia","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11919,97566,"MDA","METT",2010,"Not Reported",28,"Codru","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11920,901300,"MDA","METT",2008,"Not Reported",28,"Lower Dniester","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11921,901300,"MDA","METT",2011,"Not Reported",28,"Lower Dniester","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11922,220067,"MDA","METT",2011,"Not Reported",28,"Lower Prut Lakes","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11923,97653,"MDA","METT",2010,"Not Reported",28,"Orhei Gorge","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11924,97653,"MDA","METT",2013,"Not Reported",28,"Orhei Gorge","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11925,97570,"MDA","METT",2010,"Not Reported",28,"Plaiul fagului","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11926,97566,"MDA","METT",2008,"Not Reported",28,"Codru","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11927,97571,"MDA","METT",2008,"Not Reported",28,"Padurca Domneasca","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11928,97570,"MDA","METT",2008,"Not Reported",28,"Plaiul fagului","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11929,97569,"MDA","METT",2008,"Not Reported",28,"Prutul de jos","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11930,97571,"MDA","METT",2011,"Not Reported",28,"Padurca Domneasca","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11931,176309,"MKD","METT",0,"Not Reported",28,"Arboretum","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11932,100037,"MKD","METT",2011,"Not Reported",28,"Matka Canyon","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11933,81080,"MKD","METT",0,"Not Reported",28,"Cham Chiflik","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11934,176312,"MKD","METT",0,"Not Reported",28,"Crna dudinka, Lesnovski Manastir","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11935,176314,"MKD","METT",0,"Not Reported",28,"Crni orevi, Demir Kapija","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11936,176297,"MKD","METT",0,"Not Reported",28,"Drenachka Reka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11937,16443,"MKD","METT",0,"Not Reported",28,"Klisura Demir Kapija","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11938,176319,"MKD","METT",0,"Not Reported",28,"Duvalo (Kosel)","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11939,176293,"MKD","METT",0,"Not Reported",28,"Ezerani","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11940,2516,"MKD","METT",2007,"Not Reported",28,"Galichica","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11941,176298,"MKD","METT",0,"Not Reported",28,"Garska Reka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11942,176320,"MKD","METT",0,"Not Reported",28,"Gladnica","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11943,176300,"MKD","METT",0,"Not Reported",28,"Iberliska Reka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11944,81083,"MKD","METT",0,"Not Reported",28,"Kale Banjicko","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11945,81085,"MKD","METT",0,"Not Reported",28,"Kalnica","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11946,100037,"MKD","METT",0,"Not Reported",28,"Matka Canyon","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11948,81086,"MKD","METT",0,"Not Reported",28,"Karaslari","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11949,176323,"MKD","METT",0,"Not Reported",28,"Karshi Bavchi","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11950,63656,"MKD","METT",0,"Not Reported",28,"Katlanovski predel","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11951,16435,"MKD","METT",0,"Not Reported",28,"Katlanovsko Blato","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11952,176324,"MKD","METT",0,"Not Reported",28,"Koleshinski Vodopad","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11953,176325,"MKD","METT",0,"Not Reported",28,"Konche","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11954,176295,"MKD","METT",0,"Not Reported",28,"Kozle","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11955,176328,"MKD","METT",0,"Not Reported",28,"Makedonski dab, s.Trpejca, Ohrid","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11956,176329,"MKD","METT",0,"Not Reported",28,"Manastir, Mariovo","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11957,15603,"MKD","METT",0,"Not Reported",28,"Markovi Kuli","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11958,1050,"MKD","METT",2007,"Not Reported",28,"Mavrovo","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11959,176332,"MKD","METT",0,"Not Reported",28,"Morodvis","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11960,176333,"MKD","METT",0,"Not Reported",28,"Murite","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11961,2015,"MKD","WH Outlook Report",2014,"Not Reported",28,"Natural and Cultural Heritage of the Ohrid region","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11962,16437,"MKD","METT",0,"Not Reported",28,"Ohridsko Ezero","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11963,176334,"MKD","METT",0,"Not Reported",28,"Orashac","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11964,176335,"MKD","METT",0,"Not Reported",28,"Ostrovo, Gazi Baba","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11965,176322,"MKD","METT",0,"Not Reported",28,"Gorna Slatinska Peshtera","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11966,176337,"MKD","METT",0,"Not Reported",28,"Peshtera Mlechnik","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11967,176338,"MKD","METT",0,"Not Reported",28,"Peshtera Ubavica","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11968,176343,"MKD","METT",0,"Not Reported",28,"Platan, Tetovo","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11969,176304,"MKD","METT",0,"Not Reported",28,"Popova Shapka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11970,127887,"MKD","METT",0,"Not Reported",28,"Lake Prespa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11971,81084,"MKD","METT",0,"Not Reported",28,"Prevalec","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11972,176347,"MKD","METT",0,"Not Reported",28,"Rechica","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11973,176348,"MKD","METT",0,"Not Reported",28,"Beleshnicka Reka","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11974,176352,"MKD","METT",0,"Not Reported",28,"Stebla od platan, Star Dojran","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11975,176307,"MKD","METT",0,"Not Reported",28,"Suvi Dol","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11976,176294,"MKD","METT",0,"Not Reported",28,"Tikvesh","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11977,16436,"MKD","METT",0,"Not Reported",28,"Vodno","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11978,176359,"MKD","METT",0,"Not Reported",28,"Zvegor","Designated area not yet reviewed","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11979,4326,"MNE","RAPPAM",2009,"Not Reported",28,"Durmitor National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11980,4326,"MNE","METT",2009,"Not Reported",28,"Durmitor National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11981,4326,"MNE","METT",2012,"Not Reported",28,"Durmitor National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11982,4326,"MNE","WH Outlook Report",2014,"Not Reported",28,"Durmitor National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11987,99844,"MNG","RAPPAM",2005,"Not Reported",28,"Altai Tavan range","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11988,99844,"MNG","METT",2005,"Not Reported",28,"Altai Tavan range","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11989,99844,"MNG","METT",2012,"Not Reported",28,"Altai Tavan range","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11990,1307,"MNG","RAPPAM",2005,"Not Reported",28,"Bogdkhan mountain","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11991,166794,"MNG","METT",2013,"Not Reported",28,"Toson Hulslai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11992,902268,"MNG","RAPPAM",2005,"Not Reported",28,"Lake Ganga and its surrounding wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11993,313184,"MNG","METT",2005,"Not Reported",28,"Develiin aral","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11994,313184,"MNG","METT",2012,"Not Reported",28,"Develiin aral","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11995,902508,"MNG","RAPPAM",2005,"Not Reported",28,"Dornod Mongol","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11996,93580,"MNG","RAPPAM",2005,"Not Reported",28,"Gobi Gurvansaikhan range","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11997,93582,"MNG","RAPPAM",2005,"Not Reported",28,"Gorkhi - Terelj","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11998,798,"MNG","RAPPAM",2005,"Not Reported",28,"Great Gobi","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +11999,99848,"MNG","METT",2013,"Not Reported",28,"Ikh nart","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12000,93533,"MNG","METT",2012,"Not Reported",28,"Khan Khentii","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12001,93533,"MNG","RAPPAM",2005,"Not Reported",28,"Khan Khentii","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12002,145566,"MNG","RAPPAM",2005,"Not Reported",28,"Khan Khukhii-Khyragas Lake","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12003,166791,"MNG","METT",2005,"Not Reported",28,"Har Us Nuur","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12004,166791,"MNG","RAPPAM",2005,"Not Reported",28,"Har Us Nuur","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12005,166791,"MNG","METT",2012,"Not Reported",28,"Har Us Nuur","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12006,11745,"MNG","METT",2012,"Not Reported",28,"Khasagt Khairkhan mountain","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12007,11745,"MNG","RAPPAM",2005,"Not Reported",28,"Khasagt Khairkhan mountain","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12008,11746,"MNG","RAPPAM",2005,"Not Reported",28,"Khorgo Terkh Zagaan nuur","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12009,166790,"MNG","RAPPAM",2005,"Not Reported",28,"Khoridol Saridag","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12010,555576523,"MNG","RAPPAM",2005,"Not Reported",28,"Xugnu Tarna","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12011,93536,"MNG","METT",2012,"Not Reported",28,"Khukh Serkhyn range","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12012,93579,"MNG","RAPPAM",2005,"Not Reported",28,"Khuvsgul","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12013,93538,"MNG","RAPPAM",2005,"Not Reported",28,"Mongol Daguur","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12014,555576544,"MNG","RAPPAM",2005,"Not Reported",28,"Myangan-Ugalzat","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12015,99848,"MNG","METT",0,"Not Reported",28,"Ikh nart","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12016,166792,"MNG","RAPPAM",2005,"Not Reported",28,"Noyon Khangai","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12017,93518,"MNG","RAPPAM",2005,"Not Reported",28,"Numrug","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12018,313186,"MNG","METT",2012,"Not Reported",28,"Onon - Balj /A/","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12019,62548,"MNG","RAPPAM",2005,"Not Reported",28,"Onon - Balj river /B/","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12020,93541,"MNG","RAPPAM",2005,"Not Reported",28,"Otgontenger mountain","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12021,313187,"MNG","METT",2005,"Not Reported",28,"Siilxem nuruu /A/, /B/","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12022,124309,"MNG","RAPPAM",2005,"Not Reported",28,"Gobiin baga /A/, /B/","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12023,313188,"MNG","RAPPAM",2005,"Not Reported",28,"Tarvagatai nuruu","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12024,313189,"MNG","METT",2012,"Not Reported",28,"Cambagarav mountain","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12025,313189,"MNG","METT",2005,"Not Reported",28,"Cambagarav mountain","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12026,313189,"MNG","RAPPAM",2005,"Not Reported",28,"Cambagarav mountain","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12027,555576529,"MNG","RAPPAM",2005,"Not Reported",28,"Tujiin Nars","National Conservation Parks","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12028,93566,"MNG","METT",2005,"Not Reported",28,"Altan Els","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12029,93566,"MNG","RAPPAM",2005,"Not Reported",28,"Altan Els","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12030,93566,"MNG","METT",2012,"Not Reported",28,"Altan Els","Strictly Protected Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12031,900880,"MNG","RUS","WH Outlook Report",2014,"Not Reported",28,"Uvs Nuur Basin","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE", +12032,307735,"MNP","MPA MEE",2003,"Not Reported",28,"Bird Island","Scenic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12033,555586443,"MNP","Birdlife IBA",2007,"Not Reported",28,"Guguan Island","Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12034,4245,"MNP","Birdlife IBA",2007,"Not Reported",28,"Maug Island","Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12035,111111,"USA","RAPPAM",2007,"Not Reported",28,"Hideaway Islands","Research Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12036,797,"MRT","MPA MEE",2003,"Not Reported",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12037,797,"MRT","RAPPAM",2009,"Not Reported",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12038,797,"MRT","RAPPAM",2007,"Not Reported",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12040,797,"MRT","Birdlife IBA",2001,"Not Reported",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12041,17726,"MRT","Birdlife IBA",2001,"Not Reported",28,"Banc d'Arguin","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12042,20388,"MRT","Birdlife IBA",2001,"Not Reported",28,"Banc d'Arguin National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12043,20388,"MRT","WH Outlook Report",2014,"Not Reported",28,"Banc d'Arguin National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12044,5174,"MRT","METT",0,"Not Reported",28,"Cap Blanc","Satellite Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12045,5174,"MRT","RAPPAM",2007,"Not Reported",28,"Cap Blanc","Satellite Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12046,5174,"MRT","RAPPAM",2009,"Not Reported",28,"Cap Blanc","Satellite Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12047,900595,"MRT","Birdlife IBA",2001,"Not Reported",28,"Chat Tboul","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12048,902500,"MRT","GOBI Survey",2006,"Not Reported",28,"Delta du Fleuve Sénégal (Mauritania)","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12049,9310,"MRT","METT",2007,"Not Reported",28,"Diawling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12050,9310,"MRT","RAPPAM",2007,"Not Reported",28,"Diawling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12051,9310,"MRT","RAPPAM",2009,"Not Reported",28,"Diawling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12054,797,"MRT","Enhancing Our Heritage",2009,"Not Reported",28,"Banc d'Arguin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12055,39872,"MUS","METT",2009,"Not Reported",28,"Black River Gorges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12056,5049,"MUS","METT",2009,"Not Reported",28,"Bois Sec","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12057,555571180,"MUS","METT",2009,"Not Reported",28,"Bras D'Eau National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12059,5045,"MUS","METT",2009,"Not Reported",28,"Cabinet Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12061,5048,"MUS","METT",2009,"Not Reported",28,"Gouly Pere","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12062,5054,"MUS","METT",2009,"Not Reported",28,"Ile aux Aigrettes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12063,555571172,"MUS","METT",2009,"Not Reported",28,"Ile D'Ambre","Islet National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12064,5050,"MUS","METT",2009,"Not Reported",28,"Ilot Gabriel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12066,555571168,"MUS","METT",2009,"Not Reported",28,"Les Mares","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12071,5042,"MUS","METT",2009,"Not Reported",28,"Perrier","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12072,900596,"MUS","METT",2009,"Not Reported",28,"Rivulet Terre Rouge Estuary Bird Sanctuary","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12073,1305,"MUS","METT",2009,"Not Reported",28,"Ile Ronde (Round Island)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12074,9152,"MUS","METT",2009,"Not Reported",28,"Ile aux Serpents","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12075,8785,"NAM","METT",2011,"Not Reported",28,"Ai-Ais Hot Springs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12076,8785,"NAM","METT",2004,"Not Reported",28,"Ai-Ais Hot Springs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12077,8785,"NAM","METT",2009,"Not Reported",28,"Ai-Ais Hot Springs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12078,303692,"NAM","METT",2004,"Not Reported",28,"Bwabwata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12079,303692,"NAM","METT",2009,"Not Reported",28,"Bwabwata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12081,303692,"NAM","METT",0,"Not Reported",28,"Bwabwata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12082,1361,"NAM","METT",2005,"Not Reported",28,"Cape Cross Seal Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12083,1362,"NAM","METT",2005,"Not Reported",28,"Daan Viljoen Game Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12084,1362,"NAM","METT",2009,"Not Reported",28,"Daan Viljoen Game Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12085,1362,"NAM","METT",2010,"Not Reported",28,"Daan Viljoen Game Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12087,884,"NAM","Birdlife IBA",2001,"Not Reported",28,"Etosha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12088,95356,"NAM","Birdlife IBA",2001,"Not Reported",28,"Etosha Pan, Lake Oponono & Cuvelai drainage","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12089,883,"NAM","METT",2010,"Not Reported",28,"Namib-Naukluft","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12090,18005,"NAM","METT",2004,"Not Reported",28,"Hardap Recreation Resort","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12091,17999,"NAM","METT",2004,"Not Reported",28,"Khaudum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12092,30052,"NAM","METT",2004,"Not Reported",28,"Nkasa Rupara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12093,30052,"NAM","METT",2009,"Not Reported",28,"Nkasa Rupara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12094,30052,"NAM","METT",2011,"Not Reported",28,"Nkasa Rupara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12095,30051,"NAM","METT",2004,"Not Reported",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12096,30051,"NAM","METT",2009,"Not Reported",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12097,30051,"NAM","METT",0,"Not Reported",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12098,30051,"NAM","METT",2010,"Not Reported",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12099,30051,"NAM","METT",2011,"Not Reported",28,"Mudumu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12100,883,"NAM","METT",2009,"Not Reported",28,"Namib-Naukluft","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12101,555556048,"NAM","WH Outlook Report",2014,"Not Reported",28,"Namib Sand Sea","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12102,883,"NAM","Birdlife IBA",2013,"Not Reported",28,"Namib-Naukluft","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12103,555556048,"NAM","Birdlife IBA",2013,"Not Reported",28,"Namib Sand Sea","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12104,883,"NAM","METT",2004,"Not Reported",28,"Namib-Naukluft","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12106,30048,"NAM","METT",2004,"Not Reported",28,"Naute Recreation Resort","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12107,95354,"NAM","Birdlife IBA",2001,"Not Reported",28,"Sandwich Harbour","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12108,885,"NAM","METT",2004,"Not Reported",28,"Skeleton Coast Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12109,885,"NAM","METT",2011,"Not Reported",28,"Skeleton Coast Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12110,885,"NAM","METT",2009,"Not Reported",28,"Skeleton Coast Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12111,303691,"NAM","Birdlife IBA",2001,"Not Reported",28,"Tsau // Khaeb (Sperrgebiet)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12112,303691,"NAM","METT",2004,"Not Reported",28,"Tsau // Khaeb (Sperrgebiet)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12113,303691,"NAM","METT",2009,"Not Reported",28,"Tsau // Khaeb (Sperrgebiet)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12114,303691,"NAM","METT",2011,"Not Reported",28,"Tsau // Khaeb (Sperrgebiet)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12115,18004,"NAM","METT",2005,"Not Reported",28,"Von Bach Recreation Resort","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12116,887,"NAM","METT",2009,"Not Reported",28,"Waterberg Plateau Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12117,887,"NAM","METT",2011,"Not Reported",28,"Waterberg Plateau Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12118,67727,"NER","WH Outlook Report",2014,"Not Reported",28,"A�r and T�n�r� Natural Reserves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12119,145581,"NER","GOBI Survey",2006,"Not Reported",28,"Air and T�n�r�","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12120,67727,"NER","RAPPAM",2010,"Not Reported",28,"A�r and T�n�r� Natural Reserves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12121,67727,"NER","RAPPAM",2009,"Not Reported",28,"A�r and T�n�r� Natural Reserves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12122,11652,"NER","RAPPAM",2010,"Not Reported",28,"R�serve partielle de faune de Dosso","Partial Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12123,900599,"NER","METT",2013,"Not Reported",28,"Lac Tchad","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12124,3230,"NER","RAPPAM",2010,"Not Reported",28,"R�serve de faune de Gadabedji","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12125,9024,"NER","Birdlife IBA",2001,"Not Reported",28,"R�serve Nationale naturelle de l'A�r et du T�n�r�","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12126,67727,"NER","Birdlife IBA",2001,"Not Reported",28,"A�r and T�n�r� Natural Reserves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12127,818,"NER","RAPPAM",2009,"Not Reported",28,"Parc W Niger","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12128,818,"NER","RAPPAM",2010,"Not Reported",28,"Parc W Niger","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12129,17367,"NER","METT",2013,"Not Reported",28,"R�serve Naturelle et Culturelle de Termit-Tintoumma","National Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12130,2331,"NER","RAPPAM",2010,"Not Reported",28,"Reserve totale de faune de Tamou","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12131,124385,"NER","Enhancing Our Heritage",2009,"Not Reported",28,"W-Arly-Pendjari Complex","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12132,124385,"NER","WH Outlook Report",2014,"Not Reported",28,"W-Arly-Pendjari Complex","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12133,145510,"NER","GOBI Survey",2006,"Not Reported",28,"W Region","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12134,302135,"NIC","METT",2013,"Not Reported",28,"Apacunca","Genetic Resources Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12136,145584,"NIC","GOBI Survey",2006,"Not Reported",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12138,145584,"NIC","PIP Site Consolidation",2002,"Not Reported",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12139,145584,"NIC","PIP Site Consolidation",2003,"Not Reported",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12140,145584,"NIC","PIP Site Consolidation",2004,"Not Reported",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12141,145584,"NIC","PIP Site Consolidation",2005,"Not Reported",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12142,145584,"NIC","METT",2005,"Not Reported",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12143,107231,"NIC","METT",2012,"Not Reported",28,"Cañon de Somoto","National Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12144,107231,"NIC","METT",2013,"Not Reported",28,"Cañon de Somoto","National Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12145,61046,"NIC","METT",2012,"Not Reported",28,"Laguna de Asososca","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12146,61054,"NIC","METT",2012,"Not Reported",28,"Cerro El Arenal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12147,61056,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Cerro Apante","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12148,61056,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Cerro Apante","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12149,61054,"NIC","METT",2013,"Not Reported",28,"Cerro El Arenal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12150,61054,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Cerro El Arenal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12151,61054,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Cerro El Arenal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12152,302131,"NIC","METT",2012,"Not Reported",28,"Cerro Datanli El Diablo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12153,302131,"NIC","METT",2013,"Not Reported",28,"Cerro Datanli El Diablo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12154,61055,"NIC","METT",2012,"Not Reported",28,"Fila Cerro Frío La Cumplida","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12155,61055,"NIC","METT",2013,"Not Reported",28,"Fila Cerro Frío La Cumplida","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12156,12662,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Cerro Musun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12157,12662,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Cerro Musun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12158,61053,"NIC","METT",2012,"Not Reported",28,"Volcán Yalí","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12159,107232,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Chocoyero El Brujo","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12160,107232,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Chocoyero El Brujo","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12161,61044,"NIC","METT",2012,"Not Reported",28,"Complejo Volcánico Pilas El Hoyo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12162,61044,"NIC","METT",2013,"Not Reported",28,"Complejo Volcánico Pilas El Hoyo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12163,12657,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Coordillera Dipilto y Jalapa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12164,12657,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Coordillera Dipilto y Jalapa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12165,302131,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Cerro Datanli El Diablo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12166,302131,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Cerro Datanli El Diablo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12167,30633,"NIC","METT",2012,"Not Reported",28,"Estero Padre Ramos","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12168,30633,"NIC","METT",2013,"Not Reported",28,"Estero Padre Ramos","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12169,30633,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Estero Padre Ramos","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12170,30633,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Estero Padre Ramos","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12171,12652,"NIC","METT",2012,"Not Reported",28,"Estero Real","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12172,12652,"NIC","METT",2013,"Not Reported",28,"Estero Real","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12173,30632,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Fortaleza la Inmaculada Concepción de María.","Historical Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12174,30632,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Fortaleza la Inmaculada Concepción de María.","Historical Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12175,30628,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Indio Maiz","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12176,30628,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Indio Maiz","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12177,34672,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Isla Juan Venado","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12178,34672,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Isla Juan Venado","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12179,302129,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"La Flor","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12180,30630,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Los Guatuzos","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12181,30630,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Los Guatuzos","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12182,168212,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Miraflor/Moropotente","Landscape and/or Marine Protected","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12183,168212,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Miraflor/Moropotente","Landscape and/or Marine Protected","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12184,61050,"NIC","METT",2012,"Not Reported",28,"Cerro Quiabuc Las Brisas","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12185,61050,"NIC","METT",2013,"Not Reported",28,"Cerro Quiabuc Las Brisas","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12186,145584,"NIC","METT",2010,"Not Reported",28,"Bosawas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12187,302135,"NIC","METT",2012,"Not Reported",28,"Apacunca","Genetic Resources Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12188,12658,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12189,12658,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12190,12658,"NIC","METT",2008,"Not Reported",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12191,12658,"NIC","METT",2005,"Not Reported",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12192,12658,"NIC","METT",2010,"Not Reported",28,"Río Escalante Chacocente","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12193,302128,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Río San Juan","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12194,302128,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Río San Juan","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12195,901253,"NIC","GOBI Survey",2006,"Not Reported",28,"Rio San Juan","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12196,12681,"NIC","METT",2012,"Not Reported",28,"Salto Río Yasika","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12197,12681,"NIC","METT",2013,"Not Reported",28,"Salto Río Yasika","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12198,102216,"HND","PROARCA/CAPAS",0,"Not Reported",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12199,12657,"NIC","METT",2012,"Not Reported",28,"Coordillera Dipilto y Jalapa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12200,12657,"NIC","METT",2013,"Not Reported",28,"Coordillera Dipilto y Jalapa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12201,61049,"NIC","METT",2012,"Not Reported",28,"Tepesomoto/Pataste","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12202,61049,"NIC","METT",2013,"Not Reported",28,"Tepesomoto/Pataste","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12203,12680,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Cerro Tisey Estanzuela","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12204,12680,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Cerro Tisey Estanzuela","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12205,12680,"NIC","METT",2012,"Not Reported",28,"Cerro Tisey Estanzuela","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12206,12680,"NIC","METT",2013,"Not Reported",28,"Cerro Tisey Estanzuela","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12207,12670,"NIC","METT",2012,"Not Reported",28,"Cerro Tomabu","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12208,12670,"NIC","METT",2013,"Not Reported",28,"Cerro Tomabu","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12209,12659,"NIC","METT",2012,"Not Reported",28,"Volcán Cosiguina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12210,12659,"NIC","METT",2013,"Not Reported",28,"Volcán Cosiguina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12211,12659,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Volcán Cosiguina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12212,12659,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Volcán Cosiguina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12213,12683,"NIC","PROARCA/CAPAS",2000,"Not Reported",28,"Volcán Mombacho","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12214,12683,"NIC","PROARCA/CAPAS",2005,"Not Reported",28,"Volcán Mombacho","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12215,12661,"NIC","METT",2012,"Not Reported",28,"Complejo Volcánico Momotombo y Momotombito","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12216,12661,"NIC","METT",2013,"Not Reported",28,"Complejo Volcánico Momotombo y Momotombito","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12217,10091,"NPL","RAPPAM",2002,"Not Reported",28,"Annapurna","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12218,10091,"NPL","Birdlife IBA",2004,"Not Reported",28,"Annapurna","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12219,1308,"NPL","METT",2005,"Not Reported",28,"Bardia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12220,1308,"NPL","Birdlife IBA",2004,"Not Reported",28,"Bardia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12221,303694,"NPL","Enhancing Our Heritage",2007,"Not Reported",28,"Chitwan - Buffer Zone","National Park - Buffer Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12222,303694,"NPL","Enhancing Our Heritage",2003,"Not Reported",28,"Chitwan - Buffer Zone","National Park - Buffer Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12223,805,"NPL","Birdlife IBA",2004,"Not Reported",28,"Chitwan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12224,10905,"NPL","Birdlife IBA",2004,"Not Reported",28,"Chitwan National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12225,10905,"NPL","WH Outlook Report",2014,"Not Reported",28,"Chitwan National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12226,10087,"NPL","Birdlife IBA",2004,"Not Reported",28,"Dhorpatan","Hunting Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12227,143001,"NPL","METT",2003,"Not Reported",28,"Kanchanjunga","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12228,143001,"NPL","RAPPAM",2002,"Not Reported",28,"Kanchanjunga","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12229,143001,"NPL","Birdlife IBA",2004,"Not Reported",28,"Kanchanjunga","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12230,143001,"NPL","METT",2005,"Not Reported",28,"Kanchanjunga","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12231,7953,"NPL","RAPPAM",2002,"Not Reported",28,"Khaptad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12232,1310,"NPL","RAPPAM",2002,"Not Reported",28,"Koshi Tappu","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12233,803,"NPL","Birdlife IBA",2004,"Not Reported",28,"Langtang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12234,36687,"NPL","RAPPAM",2002,"Not Reported",28,"Lantang","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12235,26606,"NPL","RAPPAM",2002,"Not Reported",28,"Makalu-Barun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12236,26606,"NPL","Birdlife IBA",2004,"Not Reported",28,"Makalu-Barun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12237,143002,"NPL","RAPPAM",2002,"Not Reported",28,"Manaslu","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12238,10089,"NPL","METT",2003,"Not Reported",28,"Parsa","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12239,10089,"NPL","METT",2005,"Not Reported",28,"Parsa","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12241,10089,"NPL","RAPPAM",2002,"Not Reported",28,"Parsa","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12242,10089,"NPL","Birdlife IBA",2004,"Not Reported",28,"Parsa","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12243,806,"NPL","RAPPAM",2002,"Not Reported",28,"Rara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12244,555569933,"NPL","Birdlife IBA",2004,"Not Reported",28,"Rara - Buffer Zone","National Park - Buffer Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12246,313264,"NPL","RAPPAM",2002,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12247,805,"NPL","METT",2003,"Not Reported",28,"Chitwan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12248,805,"NPL","METT",2005,"Not Reported",28,"Chitwan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12250,303694,"NPL","RAPPAM",2002,"Not Reported",28,"Chitwan - Buffer Zone","National Park - Buffer Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12251,10087,"NPL","RAPPAM",2002,"Not Reported",28,"Dhorpatan","Hunting Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12252,1309,"NPL","METT",2005,"Not Reported",28,"Suklaphanta","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12255,1309,"NPL","RAPPAM",2002,"Not Reported",28,"Suklaphanta","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12256,804,"NPL","METT",2005,"Not Reported",28,"Sagarmatha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12257,804,"NPL","RAPPAM",2002,"Not Reported",28,"Sagarmatha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12258,804,"NPL","Birdlife IBA",2004,"Not Reported",28,"Sagarmatha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12259,2007,"NPL","Birdlife IBA",2004,"Not Reported",28,"Sagarmatha National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12260,2007,"NPL","WH Outlook Report",2014,"Not Reported",28,"Sagarmatha National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12261,7952,"NPL","RAPPAM",2002,"Not Reported",28,"Shey-Phoksundo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12262,7952,"NPL","METT",2005,"Not Reported",28,"Shey-Phoksundo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12263,7952,"NPL","Birdlife IBA",2004,"Not Reported",28,"Shey-Phoksundo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12264,10910,"NPL","Birdlife IBA",2004,"Not Reported",28,"Shivapuri-Nagarjun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12265,10910,"NPL","RAPPAM",2002,"Not Reported",28,"Shivapuri-Nagarjun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12266,1309,"NPL","Birdlife IBA",2004,"Not Reported",28,"Suklaphanta","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12267,555564462,"NZL","Birdlife IBA",2010,"Not Reported",28,"Campbell Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12268,168239,"NZL","WH Outlook Report",2014,"Not Reported",28,"New Zealand Sub-Antarctic Islands","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12269,26652,"NZL","WH Outlook Report",2014,"Not Reported",28,"Te Wahipounamu ÔÇô South West New Zealand","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12270,26649,"NZL","WH Outlook Report",2014,"Not Reported",28,"Tongariro National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12271,10270,"PAK","METT",2003,"Not Reported",28,"Chitral Gol","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12272,6810,"PAK","METT",2003,"Not Reported",28,"Machiara","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12274,241,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12275,241,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12277,241,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12278,241,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12279,241,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12280,241,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12281,107315,"PAN","PIP Site Consolidation",2003,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12282,107315,"PAN","PIP Site Consolidation",2004,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12283,107315,"PAN","PIP Site Consolidation",2005,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12284,107315,"PAN","PIP Site Consolidation",2002,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12285,240,"PAN","METT",2010,"Not Reported",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12286,107292,"PAN","METT",2006,"Not Reported",28,"Donoso","Multiple Use Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12287,40968,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12288,40968,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12290,40968,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12291,40968,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12292,40968,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12293,40968,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Camino de Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12294,241,"PAN","METT",2010,"Not Reported",28,"Altos de Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12295,17183,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12296,17183,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12299,17183,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12300,17183,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12301,17183,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Canglón","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12302,17181,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12303,17181,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12304,17181,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12306,17181,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12307,17181,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12308,17181,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Cenegón del Mangle","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12309,115116,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12310,115116,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12312,115116,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12313,115116,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12314,115116,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12315,115116,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Cerro Gaital","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12316,12685,"PAN","METT",0,"Not Reported",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12317,12685,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12318,12685,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12320,12685,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12321,12685,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12322,12685,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12323,12685,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Cerro Hoya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12324,12684,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12325,12684,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12327,12684,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12328,12684,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12329,12684,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12330,12684,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12331,12684,"PAN","METT",2010,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12332,12684,"PAN","PIP Site Consolidation",2002,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12333,12684,"PAN","PIP Site Consolidation",2003,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12334,12684,"PAN","PIP Site Consolidation",2004,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12335,12684,"PAN","PIP Site Consolidation",2005,"Not Reported",28,"Chagres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12336,301969,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12337,301969,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12339,301969,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12340,301969,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12341,301969,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12342,301969,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Ciénega de las Macanas","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12343,17831,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12346,17831,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12347,17831,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12348,17831,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12349,17831,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12350,17831,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12351,17831,"PAN","METT",2010,"Not Reported",28,"Coiba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12352,902479,"PAN","WH Outlook Report",2014,"Not Reported",28,"Coiba National Park and its Special Zone of Marin*","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12353,5191,"PAN","PIP Site Consolidation",1991,"Not Reported",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12354,5191,"PAN","PIP Site Consolidation",1996,"Not Reported",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12355,5191,"PAN","PIP Site Consolidation",1997,"Not Reported",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12356,5191,"PAN","PIP Site Consolidation",1998,"Not Reported",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12357,5191,"PAN","PIP Site Consolidation",1999,"Not Reported",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12358,5191,"PAN","PIP Site Consolidation",2001,"Not Reported",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12359,5191,"PAN","PIP Site Consolidation",2000,"Not Reported",28,"Darién","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12360,236,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12363,236,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12364,236,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12365,236,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12366,236,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12367,236,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12368,2554,"PAN","WH Outlook Report",2014,"Not Reported",28,"Darien National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12369,236,"PAN","METT",2010,"Not Reported",28,"Darién","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12370,12695,"PAN","METT",2006,"Not Reported",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12371,12695,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12372,12695,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12374,12695,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12375,12695,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12376,12695,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12377,12695,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"El Montuoso","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12378,99631,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12379,99631,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12381,99631,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12382,99631,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12383,99631,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12384,99631,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12385,99631,"PAN","METT",2010,"Not Reported",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12386,99632,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12387,99632,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12389,99632,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12390,99632,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12391,99632,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12392,99632,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Golfo de Chiriquí","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12393,102252,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12394,102252,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12396,102252,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12397,102252,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12398,102252,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12399,102252,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Golfo de Montijo","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12400,107289,"PAN","METT",2006,"Not Reported",28,"Damani-Guariviara","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12401,107289,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Damani-Guariviara","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12402,107289,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Damani-Guariviara","Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12403,16787,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12405,16787,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12407,16787,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12408,16787,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12409,16787,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12410,16787,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12411,10914,"PAN","METT",2006,"Not Reported",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12412,10914,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12413,10914,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12415,10914,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12416,10914,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12417,10914,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12418,10914,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Isla Cañas","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12419,115137,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12420,115137,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12422,115137,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12423,115137,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12424,115137,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12425,115137,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Isla Galeta","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12426,12688,"PAN","METT",2006,"Not Reported",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12427,12688,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12428,12688,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12430,12688,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12431,12688,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12432,12688,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12433,12688,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Isla Iguana","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12434,198343,"PAN","GOBI Survey",2006,"Not Reported",28,"Reserva de la Biósfera de La Amistad","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12435,107315,"PAN","METT",2006,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12436,107315,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12437,107315,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12438,107315,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12439,107315,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12440,107315,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12441,107315,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12442,2553,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12443,2553,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12445,2553,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12446,2553,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12447,2553,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12448,2553,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Internacional La Amistad","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12449,107315,"PAN","METT",2010,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12450,107315,"PAN","METT",2009,"Not Reported",28,"La Amistad","International Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12451,12699,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12452,12699,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12454,12699,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12455,12699,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12456,12699,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12457,12699,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"La Tronosa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12458,12698,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12459,12698,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12461,12698,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12462,12698,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12463,12698,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12464,12698,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"La Yeguada","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12465,17184,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12466,17184,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12468,17184,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12469,17184,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12470,17184,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12471,17184,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Lago Gatún","Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12472,107326,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12473,107326,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12475,107326,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12476,107326,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12477,107326,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Majé","Watershed Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12478,16787,"PAN","METT",2010,"Not Reported",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12479,16787,"PAN","METT",2006,"Not Reported",28,"Isla Bastimentos","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12480,12826,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12481,12826,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12483,12826,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12484,12826,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12485,12826,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Metropolitano","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12486,107334,"PAN","METT",0,"Not Reported",28,"Narganá","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12487,99631,"PAN","METT",0,"Not Reported",28,"General de División Omar Torrijos Herrera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12488,17185,"PAN","METT",2006,"Not Reported",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12489,17185,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12490,17185,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12492,17185,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12493,17185,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12494,17185,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12495,17185,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Palo Seco","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12496,303325,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12497,303325,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12500,303325,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12501,303325,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12502,303325,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12503,303325,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Playa la Barqueta Agrícola","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12504,102216,"HND","PROARCA/CAPAS",2001,"Not Reported",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12505,102216,"HND","PROARCA/CAPAS",2002,"Not Reported",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12507,102216,"HND","PROARCA/CAPAS",2003,"Not Reported",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12508,102216,"HND","PROARCA/CAPAS",2004,"Not Reported",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12509,102216,"HND","PROARCA/CAPAS",2005,"Not Reported",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12510,102216,"HND","PROARCA/CAPAS",2006,"Not Reported",28,"San Lorenzo","Management Habitat/Species","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12511,68135,"PAN","METT",2006,"Not Reported",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12512,68135,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12514,68135,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12515,68135,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12516,68135,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12517,68135,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12518,68135,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"San San-Pond Sak","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12519,115110,"PAN","METT",2006,"Not Reported",28,"Santa Fe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12520,115110,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Santa Fe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12521,12686,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12522,12686,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12524,12686,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12525,12686,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12526,12686,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12527,12686,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Sarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12528,107372,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12531,107372,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12532,107372,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12533,107372,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12534,107372,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12535,107372,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Serranía Filo del Tallo","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12536,238,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12537,238,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12539,238,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12540,238,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12541,238,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12542,238,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12543,238,"PAN","METT",2010,"Not Reported",28,"Soberania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12544,12687,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12545,12687,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12547,12687,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12548,12687,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12549,12687,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12550,12687,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Taboga-Urabá","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12551,10903,"PAN","WH Outlook Report",2014,"Not Reported",28,"Talamanca Range-La Amistad Reserves / La Amistad *","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12552,107377,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12553,107377,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12555,107377,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12556,107377,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12557,107377,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12558,107377,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Tapagra","Hydrological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12559,240,"PAN","METT",2006,"Not Reported",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12560,240,"PAN","METT",0,"Not Reported",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12561,240,"PAN","PROARCA/CAPAS",2001,"Not Reported",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12562,240,"PAN","PROARCA/CAPAS",2002,"Not Reported",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12564,240,"PAN","PROARCA/CAPAS",2003,"Not Reported",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12565,240,"PAN","PROARCA/CAPAS",2004,"Not Reported",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12566,240,"PAN","PROARCA/CAPAS",2005,"Not Reported",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12567,240,"PAN","PROARCA/CAPAS",2006,"Not Reported",28,"Volcan Barú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12568,12896,"PCN","Birdlife IBA",2013,"Not Reported",28,"Henderson Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12569,555531088,"POR","Birdlife IBA",2005,"Not Reported",28,"Barrinha de Esmoriz","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12570,555531099,"POR","Birdlife IBA",2005,"Not Reported",28,"Cabeção","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12571,555531103,"POR","Birdlife IBA",2005,"Not Reported",28,"Cabrela","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12572,555540911,"POR","Birdlife IBA",2005,"Not Reported",28,"Campo Maior","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12573,4723,"POR","Birdlife IBA",2005,"Not Reported",28,"Sapal de Castro Marim e Vila Real de Santo Antóni","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12574,127885,"POR","Birdlife IBA",2005,"Not Reported",28,"Sapais de Castro Marim","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12575,555540892,"POR","Birdlife IBA",2005,"Not Reported",28,"Sapais de Castro Marim","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12576,555540913,"POR","Birdlife IBA",2005,"Not Reported",28,"Castro Verde","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12577,18945,"POR","Birdlife IBA",2005,"Not Reported",28,"Sudoeste Alentejano e Costa Vicentina","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12578,555531082,"POR","Birdlife IBA",2005,"Not Reported",28,"Costa Sudoeste","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12579,555540889,"POR","Birdlife IBA",2005,"Not Reported",28,"Costa Sudoeste","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12580,555540923,"POR","Birdlife IBA",2005,"Not Reported",28,"Cuba","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12581,555531092,"POR","Birdlife IBA",2005,"Not Reported",28,"Douro Internacional","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12582,555540906,"POR","Birdlife IBA",2005,"Not Reported",28,"Douro Internacional e Vale do Águeda","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12583,555531079,"POR","Birdlife IBA",2005,"Not Reported",28,"Estuário do Tejo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12584,555540884,"POR","Birdlife IBA",2005,"Not Reported",28,"Estuário do Tejo","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12585,555540876,"POR","Birdlife IBA",2005,"Not Reported",28,"Estuários dos Rios Minho e Coura","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12586,198300,"POR","WH Outlook Report",2014,"Not Reported",28,"Laurisilva of Madeira","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12587,555540912,"POR","Birdlife IBA",2005,"Not Reported",28,"Mourão/Moura/Barrancos","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12588,18942,"POR","Birdlife IBA",2005,"Not Reported",28,"Paul de Arzila","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12589,127881,"POR","Birdlife IBA",2005,"Not Reported",28,"Paúl de Arzila","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12590,555540879,"POR","Birdlife IBA",2005,"Not Reported",28,"Paul de Arzila","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12591,555540880,"POR","Birdlife IBA",2005,"Not Reported",28,"Paul da Madriz","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12592,900610,"POR","Birdlife IBA",2005,"Not Reported",28,"Paúl do Taipal","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12593,555540908,"POR","Birdlife IBA",2005,"Not Reported",28,"Paul do Taipal","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12594,555540878,"POR","Birdlife IBA",2005,"Not Reported",28,"Ria de Aveiro","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12595,143012,"POR","Birdlife IBA",2005,"Not Reported",28,"Vale do Guadiana","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12596,555540914,"POR","Birdlife IBA",2005,"Not Reported",28,"Vale do Guadiana","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12597,555531091,"POR","Birdlife IBA",2005,"Not Reported",28,"Rios Sabor e Maçãs","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12598,555540905,"POR","Birdlife IBA",2005,"Not Reported",28,"Rios Sabor e Maçãs","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12599,32568,"POR","European Diploma",1992,"Not Reported",28,"Ilhas Selvagens","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12600,1338,"POR","Birdlife IBA",2005,"Not Reported",28,"Serra da Estrela","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12601,555531084,"POR","Birdlife IBA",2005,"Not Reported",28,"Serra da Estrela","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12602,5808,"POR","Birdlife IBA",2005,"Not Reported",28,"Serra da Malcata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12603,555540881,"POR","Birdlife IBA",2005,"Not Reported",28,"Serra da Malcata","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12604,860,"POR","Birdlife IBA",2005,"Not Reported",28,"Peneda/Gerês","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12605,555531072,"POR","Birdlife IBA",2005,"Not Reported",28,"Peneda/Gerês","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12606,555540877,"POR","Birdlife IBA",2005,"Not Reported",28,"Serra do Gerês","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12607,18946,"POR","Birdlife IBA",2005,"Not Reported",28,"Montesinho","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12608,555549136,"POR","Birdlife IBA",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12609,555577799,"POR","Birdlife IBA",2005,"Not Reported",28,"Montesinho / Nogueira","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12610,555531073,"POR","Birdlife IBA",2005,"Not Reported",28,"Alvão/Marão","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12611,388861,"POR","Birdlife IBA",2005,"Not Reported",28,"Tejo Internacional","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12612,555540910,"POR","Birdlife IBA",2005,"Not Reported",28,"Tejo Internacional, Erges e Pônsul","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12613,555540907,"POR","Birdlife IBA",2005,"Not Reported",28,"Vale do Côa","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12614,555540919,"POR","Birdlife IBA",2005,"Not Reported",28,"Vila Fernando","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12615,20987,"PRY","METT",2010,"Not Reported",28,"Ñacunday","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12619,317135,"PRY","Birdlife IBA",2011,"Not Reported",28,"Arroyo Blanco","Natural Private Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12620,37115,"PRY","Birdlife IBA",2011,"Not Reported",28,"Natural Reserve del Bosque Mbaracayú","Private Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12621,220266,"PRY","GOBI Survey",2006,"Not Reported",28,"Bosque Mbaracayú","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12622,242,"PRY","PIP Site Consolidation",1997,"Not Reported",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12623,242,"PRY","PIP Site Consolidation",1998,"Not Reported",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12624,242,"PRY","PIP Site Consolidation",1999,"Not Reported",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12625,242,"PRY","PIP Site Consolidation",2000,"Not Reported",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12626,242,"PRY","PIP Site Consolidation",2001,"Not Reported",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12627,242,"PRY","PIP Site Consolidation",2002,"Not Reported",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12628,20989,"PRY","Birdlife IBA",2011,"Not Reported",28,"Limoy","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12629,20991,"PRY","PIP Site Consolidation",1992,"Not Reported",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12630,20991,"PRY","PIP Site Consolidation",1996,"Not Reported",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12631,20991,"PRY","PIP Site Consolidation",1997,"Not Reported",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12632,20991,"PRY","PIP Site Consolidation",1998,"Not Reported",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12633,20991,"PRY","PIP Site Consolidation",1999,"Not Reported",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12634,20991,"PRY","PIP Site Consolidation",2001,"Not Reported",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12635,20991,"PRY","PIP Site Consolidation",2000,"Not Reported",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12636,20991,"PRY","METT",2005,"Not Reported",28,"Mbaracayu","Biological Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12637,317136,"PRY","Birdlife IBA",2011,"Not Reported",28,"Morombi","Natural Private Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12638,245,"PRY","Birdlife IBA",2011,"Not Reported",28,"Caaguazú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12639,242,"PRY","Birdlife IBA",2011,"Not Reported",28,"Defensores del Chaco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12640,21003,"PRY","Birdlife IBA",2011,"Not Reported",28,"San Rafael","Managed Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12641,244,"PRY","Birdlife IBA",2011,"Not Reported",28,"Tentiente Agripino Enciso","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12642,20988,"PRY","Birdlife IBA",2011,"Not Reported",28,"Itabó","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12643,4263,"PYF","Birdlife IBA",2006,"Not Reported",28,"Mohotani Reserve Integrale","Natural Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12644,11179,"ROU","METT",2009,"Not Reported",28,"Muntii Apuseni","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12645,11179,"ROU","METT",2012,"Not Reported",28,"Muntii Apuseni","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12646,63612,"ROU","RAPPAM",2006,"Not Reported",28,"Cheile Bicazului - Hasmas","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12647,555578953,"ROU","RAPPAM",2006,"Not Reported",28,"Lacul Sarat - Braila","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12648,20678,"ROU","RAPPAM",2006,"Not Reported",28,"Bucegi","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12649,20678,"ROU","METT",2009,"Not Reported",28,"Bucegi","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12650,20678,"ROU","METT",2012,"Not Reported",28,"Bucegi","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12651,196478,"ROU","RAPPAM",2006,"Not Reported",28,"Buila - Vânturarita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12652,196478,"ROU","METT",2009,"Not Reported",28,"Buila - Vânturarita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12653,196478,"ROU","METT",2012,"Not Reported",28,"Buila - Vânturarita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12654,11172,"ROU","RAPPAM",2006,"Not Reported",28,"Calimani","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12655,11172,"ROU","METT",2009,"Not Reported",28,"Calimani","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12656,11172,"ROU","METT",2012,"Not Reported",28,"Calimani","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12657,11170,"ROU","RAPPAM",2006,"Not Reported",28,"Ceahlau","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12658,11170,"ROU","METT",2009,"Not Reported",28,"Ceahlau","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12659,11170,"ROU","METT",2012,"Not Reported",28,"Ceahlau","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12660,63612,"ROU","METT",2012,"Not Reported",28,"Cheile Bicazului - Hasmas","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12661,11176,"ROU","METT",2012,"Not Reported",28,"Cheile Nerei - Beusnita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12662,11176,"ROU","METT",2009,"Not Reported",28,"Cheile Nerei - Beusnita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12663,11181,"ROU","RAPPAM",2006,"Not Reported",28,"Gradistea Muncelului - Cioclovina","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12664,11155,"ROU","METT",2009,"Not Reported",28,"Comana","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12665,11155,"ROU","RAPPAM",2006,"Not Reported",28,"Comana","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12666,11174,"ROU","RAPPAM",2006,"Not Reported",28,"Cozia","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12667,11174,"ROU","METT",2009,"Not Reported",28,"Cozia","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12668,11174,"ROU","METT",2012,"Not Reported",28,"Cozia","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12669,11173,"ROU","RAPPAM",2006,"Not Reported",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12670,67728,"ROU","WH Outlook Report",2014,"Not Reported",28,"Danube Delta","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12671,337831,"ROU","METT",2009,"Not Reported",28,"Defileul Jiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12672,337831,"ROU","METT",2012,"Not Reported",28,"Defileul Jiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12673,349838,"ROU","METT",2012,"Not Reported",28,"Defileul Muresului Superior","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12674,337830,"ROU","RAPPAM",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12675,11175,"ROU","RAPPAM",2006,"Not Reported",28,"Domogled - Valea Cernei","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12676,11175,"ROU","METT",2012,"Not Reported",28,"Domogled - Valea Cernei","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12677,11175,"ROU","METT",2009,"Not Reported",28,"Domogled - Valea Cernei","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12678,63612,"ROU","METT",2009,"Not Reported",28,"Cheile Bicazului - Hasmas","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12679,196477,"ROU","RAPPAM",2006,"Not Reported",28,"Geoparcul Dinozaurilor Tara Hategului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12680,196477,"ROU","METT",2009,"Not Reported",28,"Geoparcul Dinozaurilor Tara Hategului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12681,196477,"ROU","METT",2012,"Not Reported",28,"Geoparcul Dinozaurilor Tara Hategului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12682,861,"ROU","RAPPAM",2006,"Not Reported",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12683,184172,"ROU","METT",2005,"Not Reported",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12684,184172,"ROU","METT",2007,"Not Reported",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12685,184172,"ROU","METT",2008,"Not Reported",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12686,184172,"ROU","METT",2009,"Not Reported",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12687,193310,"ROU","METT",2010,"Not Reported",28,"Muntii Maramuresului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12688,11179,"ROU","RAPPAM",2006,"Not Reported",28,"Muntii Apuseni","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12689,184172,"ROU","RAPPAM",2006,"Not Reported",28,"Muntii Macinului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12690,193310,"ROU","METT",2005,"Not Reported",28,"Muntii Maramuresului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12691,193310,"ROU","METT",2006,"Not Reported",28,"Muntii Maramuresului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12692,193310,"ROU","RAPPAM",2006,"Not Reported",28,"Muntii Maramuresului","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12693,11176,"ROU","RAPPAM",2006,"Not Reported",28,"Cheile Nerei - Beusnita","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12694,184173,"ROU","METT",2012,"Not Reported",28,"Vânatori Neamt","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12695,11173,"ROU","European Diploma",2006,"Not Reported",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12696,11173,"ROU","METT",2003,"Not Reported",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12697,11173,"ROU","METT",2009,"Not Reported",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12698,11173,"ROU","METT",2012,"Not Reported",28,"Piatra Craiului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12699,3040,"ROU","Stockholm BR Survey",2008,"Not Reported",28,"Pietrosul Mare Nature Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12700,63623,"ROU","RAPPAM",2006,"Not Reported",28,"Portile de Fier","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12701,196474,"ROU","METT",2009,"Not Reported",28,"Putna - Vrancea","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12702,196474,"ROU","RAPPAM",2006,"Not Reported",28,"Putna - Vrancea","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12703,196474,"ROU","METT",2012,"Not Reported",28,"Putna - Vrancea","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12704,861,"ROU","European Diploma",2008,"Not Reported",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12705,3041,"ROU","GOBI Survey",2006,"Not Reported",28,"Retezat National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12706,861,"ROU","METT",2003,"Not Reported",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12707,861,"ROU","PANPARKS",2004,"Not Reported",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12708,861,"ROU","PANPARKS",2005,"Not Reported",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12709,861,"ROU","PANPARKS",2006,"Not Reported",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12710,861,"ROU","PANPARKS",2007,"Not Reported",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12712,11171,"ROU","RAPPAM",2006,"Not Reported",28,"Rodna","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12713,11171,"ROU","METT",2009,"Not Reported",28,"Rodna","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12714,11171,"ROU","METT",2012,"Not Reported",28,"Rodna","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12715,11171,"ROU","GOBI Survey",2006,"Not Reported",28,"Rodna","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12716,81224,"ROU","RAPPAM",2006,"Not Reported",28,"Semenic - Cheile Carasului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12717,19023,"ROU","METT",2012,"Not Reported",28,"Cheile Carasului","Nature reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12718,184173,"ROU","RAPPAM",2006,"Not Reported",28,"Vânatori Neamt","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12719,184173,"ROU","METT",2009,"Not Reported",28,"Vânatori Neamt","Natural park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12720,198919,"RUS","RAPPAM",2001,"Not Reported",28,"Agrakhansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12721,200029,"RUS","RAPPAM",2001,"Not Reported",28,"Alakit","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12722,199626,"RUS","RAPPAM",2001,"Not Reported",28,"Alania","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12723,1691,"RUS","RAPPAM",2001,"Not Reported",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12724,1691,"RUS","METT",2005,"Not Reported",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12725,1691,"RUS","METT",2008,"Not Reported",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12726,208547,"RUS","METT",2003,"Not Reported",28,"Kaltajskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12727,1691,"RUS","METT",2006,"Not Reported",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12729,198618,"RUS","RAPPAM",2001,"Not Reported",28,"Altyn-Solok","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12730,1711,"RUS","METT",2009,"Not Reported",28,"Astrakhansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12731,1711,"RUS","METT",2012,"Not Reported",28,"Astrakhansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12732,1711,"RUS","RAPPAM",2001,"Not Reported",28,"Astrakhansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12733,11830,"RUS","METT",2008,"Not Reported",28,"Azas","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12734,11830,"RUS","RAPPAM",2001,"Not Reported",28,"Azas","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12735,201129,"RUS","RAPPAM",2001,"Not Reported",28,"Badzhal'sky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12736,11592,"RUS","METT",2007,"Not Reported",28,"Baikalsky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12737,11592,"RUS","RAPPAM",2001,"Not Reported",28,"Baikalsky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12738,900556,"RUS","RAPPAM",2001,"Not Reported",28,"Barguzinskyi","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12739,200814,"RUS","RAPPAM",2001,"Not Reported",28,"Barsovy","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12740,13987,"RUS","RAPPAM",2001,"Not Reported",28,"Bassegi","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12741,19002,"RUS","RAPPAM",2001,"Not Reported",28,"Bashkiria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12742,19002,"RUS","METT",2003,"Not Reported",28,"Bashkiria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12743,19002,"RUS","METT",2005,"Not Reported",28,"Bashkiria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12744,1709,"RUS","RAPPAM",2001,"Not Reported",28,"Bashkirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12745,201177,"RUS","RAPPAM",2001,"Not Reported",28,"Bastack","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12746,205471,"RUS","RAPPAM",2001,"Not Reported",28,"Bairovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12747,200033,"RUS","METT",2005,"Not Reported",28,"Beke","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12748,200033,"RUS","RAPPAM",2001,"Not Reported",28,"Beke","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12749,1733,"RUS","RAPPAM",2001,"Not Reported",28,"Belogor'e","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12750,1733,"RUS","METT",2009,"Not Reported",28,"Belogor'e","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12751,204024,"RUS","METT",2007,"Not Reported",28,"Belozerskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12752,204024,"RUS","METT",2008,"Not Reported",28,"Belozerskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12753,201263,"RUS","METT",2003,"Not Reported",28,"Birminskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12754,201263,"RUS","METT",2005,"Not Reported",28,"Birminskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12755,201130,"RUS","RAPPAM",2001,"Not Reported",28,"Birskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12756,201428,"RUS","RAPPAM",2001,"Not Reported",28,"Bogdinsko-Baskunchaksky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12757,201132,"RUS","RAPPAM",2001,"Not Reported",28,"Bolon'sky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12758,68518,"RUS","RAPPAM",2001,"Not Reported",28,"Bolshaya Kokshaga","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12759,1715,"RUS","RAPPAM",2001,"Not Reported",28,"Bolshekhekhtsirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12760,61771,"RUS","RAPPAM",2001,"Not Reported",28,"Bolshoy Arktichesky / Great Arctic","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12761,61508,"RUS","RAPPAM",2001,"Not Reported",28,"Botchinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12762,103550,"RUS","RAPPAM",2001,"Not Reported",28,"Brekhovsky Islands in the Yenisei estuary","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12763,20684,"RUS","METT",2003,"Not Reported",28,"Bryansky Les","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12764,20684,"RUS","METT",2005,"Not Reported",28,"Bryansky Les","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12765,20684,"RUS","RAPPAM",2001,"Not Reported",28,"Bryansky Les","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12766,200009,"RUS","RAPPAM",2001,"Not Reported",28,"Bur","Resource Reserve (project)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12767,11833,"RUS","METT",2003,"Not Reported",28,"Bureinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12768,11833,"RUS","METT",2005,"Not Reported",28,"Bureinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12769,11833,"RUS","RAPPAM",2001,"Not Reported",28,"Bureinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12770,203437,"RUS","METT",2005,"Not Reported",28,"Bystrinskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12771,203437,"RUS","METT",2009,"Not Reported",28,"Bystrinskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12772,203437,"RUS","RAPPAM",2001,"Not Reported",28,"Bystrinskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12773,900629,"RUS","WH Outlook Report",2014,"Not Reported",28,"Central Sikhote-Alin","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12774,1725,"RUS","RAPPAM",2001,"Not Reported",28,"Tsentralno-Lesnoi","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12775,1732,"RUS","RAPPAM",2001,"Not Reported",28,"Tsentralno-Chernozemny","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12776,1732,"RUS","METT",2009,"Not Reported",28,"Tsentralno-Chernozemny","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12777,12442,"RUS","RAPPAM",2001,"Not Reported",28,"Tsentralnosibirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12778,199993,"RUS","METT",2007,"Not Reported",28,"Chabda","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12779,199993,"RUS","METT",2008,"Not Reported",28,"Chabda","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12780,199993,"RUS","METT",2009,"Not Reported",28,"Chabda","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12781,199997,"RUS","RAPPAM",2001,"Not Reported",28,"Charuoda","Reserved Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12782,68579,"RUS","RAPPAM",2001,"Not Reported",28,"Chavash Varmane","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12783,68549,"RUS","RAPPAM",2001,"Not Reported",28,"Chernye Zemli","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12784,68549,"RUS","METT",2009,"Not Reported",28,"Chernye Zemli","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12785,201133,"RUS","RAPPAM",2001,"Not Reported",28,"Chukenskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12786,199360,"RUS","METT",2011,"Not Reported",28,"Udorskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12787,15779,"RUS","RAPPAM",2001,"Not Reported",28,"Dagestansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12788,1703,"RUS","RAPPAM",2001,"Not Reported",28,"Darvinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12789,200854,"RUS","METT",2013,"Not Reported",28,"Dautsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12790,145589,"RUS","RAPPAM",2001,"Not Reported",28,"Daursky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12791,145589,"RUS","METT",2009,"Not Reported",28,"Daursky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12792,200854,"RUS","RAPPAM",2001,"Not Reported",28,"Dautsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12793,20682,"RUS","RAPPAM",2001,"Not Reported",28,"Denezhkin Kamen","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12794,202074,"RUS","Birdlife IBA",2007,"Not Reported",28,"Drofiny","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12795,208715,"RUS","RAPPAM",2001,"Not Reported",28,"Elizarovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12796,209576,"RUS","METT",2008,"Not Reported",28,"Ergaki","Nature park (project)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12797,901254,"RUS","MPA MEE",2003,"Not Reported",28,"Far East Marine","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12798,1734,"RUS","RAPPAM",2001,"Not Reported",28,"Galich'ya Gora","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12799,1734,"RUS","METT",2009,"Not Reported",28,"Galich'ya Gora","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12800,168241,"RUS","WH Outlook Report",2014,"Not Reported",28,"Golden Mountains of Altai","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12801,198939,"RUS","RAPPAM",2001,"Not Reported",28,"Golubye ozera","Nature Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12802,199330,"RUS","METT",2011,"Not Reported",28,"Ilychskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12803,201427,"RUS","METT",2005,"Not Reported",28,"Il'menno-bugrovoi","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12804,201427,"RUS","METT",2006,"Not Reported",28,"Il'menno-bugrovoi","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12805,201427,"RUS","METT",2009,"Not Reported",28,"Il'menno-bugrovoi","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12806,1721,"RUS","METT",2003,"Not Reported",28,"Ilmensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12807,1721,"RUS","METT",2005,"Not Reported",28,"Ilmensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12808,1721,"RUS","RAPPAM",2001,"Not Reported",28,"Ilmensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12809,199330,"RUS","METT",2007,"Not Reported",28,"Ilychskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12810,208696,"RUS","RAPPAM",2001,"Not Reported",28,"Kabanskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12811,1708,"RUS","Birdlife IBA",2007,"Not Reported",28,"Kabardino-Balkarsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12812,1708,"RUS","RAPPAM",2001,"Not Reported",28,"Kabardino-Balkarsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12813,67718,"RUS","RAPPAM",2001,"Not Reported",28,"Kaluzhskie Zaseki","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12814,202643,"RUS","RAPPAM",2001,"Not Reported",28,"Kamennaya Step'","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12815,1713,"RUS","METT",2005,"Not Reported",28,"Kandalakshsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12816,1713,"RUS","RAPPAM",2001,"Not Reported",28,"Kandalakshsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12817,204564,"RUS","RAPPAM",2001,"Not Reported",28,"Kanozersky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12818,198924,"RUS","Birdlife IBA",2006,"Not Reported",28,"Kasumkentskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12819,68519,"RUS","METT",2008,"Not Reported",28,"Katunsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12820,198345,"RUS","GOBI Survey",2006,"Not Reported",28,"Katunsky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12821,68519,"RUS","METT",2003,"Not Reported",28,"Katunsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12822,68519,"RUS","METT",2005,"Not Reported",28,"Katunsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12823,68519,"RUS","RAPPAM",2001,"Not Reported",28,"Katunsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12824,198345,"RUS","Stockholm BR Survey",2008,"Not Reported",28,"Katunsky","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12825,1696,"RUS","Birdlife IBA",2007,"Not Reported",28,"Kavkazsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12826,198301,"RUS","Birdlife IBA",2007,"Not Reported",28,"Western Caucasus","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12827,209778,"RUS","RAPPAM",2001,"Not Reported",28,"Kavkazskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12828,198923,"RUS","Birdlife IBA",2007,"Not Reported",28,"Kayakentskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12829,1726,"RUS","RAPPAM",2001,"Not Reported",28,"Kedrovaya Pad","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12830,68347,"RUS","RAPPAM",2001,"Not Reported",28,"Kenozersky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12831,67719,"RUS","RAPPAM",2001,"Not Reported",28,"Kerzhensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12832,201742,"RUS","METT",2008,"Not Reported",28,"Khakassky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12833,201742,"RUS","RAPPAM",2001,"Not Reported",28,"Khakassky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12834,62691,"RUS","RAPPAM",2001,"Not Reported",28,"Khankaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12835,198944,"RUS","METT",2013,"Not Reported",28,"Kharbinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12836,201138,"RUS","RAPPAM",2001,"Not Reported",28,"Khekhtsirsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12837,201242,"RUS","RAPPAM",2001,"Not Reported",28,"Khingano-Arkharinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12838,1707,"RUS","RAPPAM",2001,"Not Reported",28,"Khingansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12839,1727,"RUS","RAPPAM",2001,"Not Reported",28,"Khopersky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12840,206707,"RUS","RAPPAM",2001,"Not Reported",28,"Khvalynsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12841,205236,"RUS","RAPPAM",2001,"Not Reported",28,"Kirzinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12842,1729,"RUS","RAPPAM",2001,"Not Reported",28,"Kivach","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12843,201827,"RUS","RAPPAM",2001,"Not Reported",28,"Kletnyansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12844,201985,"RUS","RAPPAM",2001,"Not Reported",28,"Klyazminsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12845,67720,"RUS","RAPPAM",2001,"Not Reported",28,"Komandorsky / Commander Islands +","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12846,67720,"RUS","METT",2008,"Not Reported",28,"Komandorsky / Commander Islands +","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12847,1712,"RUS","RAPPAM",2001,"Not Reported",28,"Komsomolsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12848,198929,"RUS","Birdlife IBA",2006,"Not Reported",28,"Kosobsko-Kelebskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12849,13988,"RUS","European Diploma",1998,"Not Reported",28,"Kostomukshsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12850,13988,"RUS","RAPPAM",2001,"Not Reported",28,"Kostomukshsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12851,10715,"RUS","METT",2009,"Not Reported",28,"Kronotskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12852,1690,"RUS","RAPPAM",2001,"Not Reported",28,"Kronotsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12853,68431,"RUS","METT",2005,"Not Reported",28,"Kunovatsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12854,68431,"RUS","METT",2007,"Not Reported",28,"Kunovatsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12855,68431,"RUS","METT",2008,"Not Reported",28,"Kunovatsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12856,199980,"RUS","METT",2008,"Not Reported",28,"Kuoluma","Reserved Territory","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12857,204038,"RUS","RAPPAM",2001,"Not Reported",28,"Kurgansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12858,11628,"RUS","METT",2003,"Not Reported",28,"Kurilsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12859,11628,"RUS","METT",2005,"Not Reported",28,"Kurilsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12860,68348,"RUS","RAPPAM",2001,"Not Reported",28,"Kurshskaya Kosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12861,62694,"RUS","RAPPAM",2001,"Not Reported",28,"Kuznetsky Alatau","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12862,146613,"RUS","METT",2005,"Not Reported",28,"Kytalyk","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12864,146613,"RUS","METT",2007,"Not Reported",28,"Kytalyk","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12865,146613,"RUS","METT",2009,"Not Reported",28,"Kytalyk","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12866,146613,"RUS","RAPPAM",2001,"Not Reported",28,"Kytalyk","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12867,124386,"RUS","WH Outlook Report",2014,"Not Reported",28,"Lake Baikal","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12868,10716,"RUS","Stockholm BR Survey",2008,"Not Reported",28,"Laplandskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12869,1700,"RUS","RAPPAM",2001,"Not Reported",28,"Laplandsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12870,1702,"RUS","METT",2003,"Not Reported",28,"Lazovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12871,1702,"RUS","METT",2005,"Not Reported",28,"Lazovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12872,555547991,"RUS","WH Outlook Report",2014,"Not Reported",28,"Lena Pillars Nature Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12873,206117,"RUS","Birdlife IBA",2007,"Not Reported",28,"Rostovskoe GOOH (Aleksandrovskiy uchastok)","Managed Resource Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12874,199988,"RUS","RAPPAM",2001,"Not Reported",28,"Lenskie stolby","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12875,11578,"RUS","RAPPAM",2001,"Not Reported",28,"Losiny Ostrov","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12876,4815,"RUS","RAPPAM",2001,"Not Reported",28,"Magadansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12877,201245,"RUS","METT",2003,"Not Reported",28,"Magdagachinskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12878,201245,"RUS","METT",2005,"Not Reported",28,"Magdagachinskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12879,1704,"RUS","RAPPAM",2001,"Not Reported",28,"Malaya Sosva","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12880,19003,"RUS","RAPPAM",2001,"Not Reported",28,"Mary Chodra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12881,199337,"RUS","METT",2011,"Not Reported",28,"Boloto Okean","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12882,198942,"RUS","METT",2013,"Not Reported",28,"Mekletinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12883,198942,"RUS","RAPPAM",2001,"Not Reported",28,"Mekletinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12884,198942,"RUS","METT",2009,"Not Reported",28,"Mekletinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12885,68359,"RUS","RAPPAM",2001,"Not Reported",28,"Meschera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12886,61504,"RUS","RAPPAM",2001,"Not Reported",28,"Meschersky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12887,1719,"RUS","RAPPAM",2001,"Not Reported",28,"Mordovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12888,201387,"RUS","RAPPAM",2001,"Not Reported",28,"Moree-U","Zapovednik (project)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12889,200034,"RUS","RAPPAM",2001,"Not Reported",28,"Muna","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12890,204563,"RUS","RAPPAM",2001,"Not Reported",28,"Murmansky Tundrovy","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12891,201984,"RUS","RAPPAM",2001,"Not Reported",28,"Muromsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12892,203438,"RUS","METT",2004,"Not Reported",28,"Nalychevskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12893,203438,"RUS","METT",2005,"Not Reported",28,"Nalychevskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12894,203438,"RUS","METT",2009,"Not Reported",28,"Nalychevskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12895,203438,"RUS","RAPPAM",2001,"Not Reported",28,"Nalychevskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12896,1693,"RUS","METT",2011,"Not Reported",28,"Pechoro-Ilychsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12897,19000,"RUS","Birdlife IBA",2007,"Not Reported",28,"Prielbrus'e","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12898,902356,"RUS","WH Outlook Report",2014,"Not Reported",28,"Natural System of Wrangel Island Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12899,199940,"RUS","RAPPAM",2001,"Not Reported",28,"Nechkinsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12900,201384,"RUS","METT",2005,"Not Reported",28,"Nenetsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12901,201384,"RUS","RAPPAM",2001,"Not Reported",28,"Nenetsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12903,201385,"RUS","RAPPAM",2001,"Not Reported",28,"Nenetsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12904,206948,"RUS","METT",2013,"Not Reported",28,"Nikol'skiy sosnovyi bor","Nature Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12905,1717,"RUS","RAPPAM",2001,"Not Reported",28,"Nizhne-Svirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12906,68350,"RUS","RAPPAM",2001,"Not Reported",28,"Nizhnyaya Kama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12907,1717,"RUS","METT",2003,"Not Reported",28,"Nizhne-Svirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12908,201247,"RUS","METT",2003,"Not Reported",28,"Norsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12909,201247,"RUS","METT",2005,"Not Reported",28,"Norsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12910,201247,"RUS","RAPPAM",2001,"Not Reported",28,"Norsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12911,61511,"RUS","RAPPAM",2001,"Not Reported",28,"Nurgush","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12912,199337,"RUS","METT",2007,"Not Reported",28,"Boloto Okean","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12913,1724,"RUS","METT",2003,"Not Reported",28,"Oksky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12914,1724,"RUS","RAPPAM",2001,"Not Reported",28,"Oksky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12915,201139,"RUS","RAPPAM",2001,"Not Reported",28,"Oldzhikansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12916,11831,"RUS","METT",2003,"Not Reported",28,"Olekminsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12917,11831,"RUS","METT",2005,"Not Reported",28,"Olekminsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12918,11831,"RUS","RAPPAM",2001,"Not Reported",28,"Olekminsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12919,198956,"RUS","RAPPAM",2001,"Not Reported",28,"Olonetsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12920,68547,"RUS","RAPPAM",2001,"Not Reported",28,"Orenburgsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12921,68547,"RUS","METT",2009,"Not Reported",28,"Orenburgsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12922,61576,"RUS","RAPPAM",2001,"Not Reported",28,"Orlovskoye Poles'e","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12923,201248,"RUS","METT",2003,"Not Reported",28,"Orlovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12924,201248,"RUS","METT",2005,"Not Reported",28,"Orlovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12925,201248,"RUS","RAPPAM",2001,"Not Reported",28,"Orlovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12926,68351,"RUS","RAPPAM",2001,"Not Reported",28,"Paanayarvi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12927,68351,"RUS","PANPARKS",2005,"Not Reported",28,"Paanayarvi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12928,68351,"RUS","PANPARKS",2006,"Not Reported",28,"Paanayarvi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12929,68351,"RUS","PANPARKS",2007,"Not Reported",28,"Paanayarvi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12930,64472,"RUS","RAPPAM",2001,"Not Reported",28,"Pasvik","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12931,1693,"RUS","METT",2007,"Not Reported",28,"Pechoro-Ilychsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12932,1693,"RUS","RAPPAM",2001,"Not Reported",28,"Pechoro-Ilychsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12933,1716,"RUS","RAPPAM",2001,"Not Reported",28,"Pinezhsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12934,68361,"RUS","RAPPAM",2001,"Not Reported",28,"Plescheevo Ozero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12935,61509,"RUS","RAPPAM",2001,"Not Reported",28,"Polistovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12936,15784,"RUS","RAPPAM",2001,"Not Reported",28,"Poronaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12937,200490,"RUS","RAPPAM",2001,"Not Reported",28,"Priazovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12938,19000,"RUS","RAPPAM",2001,"Not Reported",28,"Prielbrus'e","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12939,902327,"RUS","Stockholm BR Survey",2008,"Not Reported",28,"Prioksko-Terrasnyi","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12940,68580,"RUS","RAPPAM",2001,"Not Reported",28,"Pripyshmenskie Bory","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12941,199960,"RUS","RAPPAM",2001,"Not Reported",28,"Prisursky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12942,206543,"RUS","RAPPAM",2001,"Not Reported",28,"Privolzhskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12943,62692,"RUS","METT",2009,"Not Reported",28,"Privolzhskaya Lesostep","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12944,555512003,"RUS","WH Outlook Report",2014,"Not Reported",28,"Putorana Plateau","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12945,62445,"RUS","RAPPAM",2001,"Not Reported",28,"Putoransky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12946,61510,"RUS","RAPPAM",2001,"Not Reported",28,"Rdeisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12947,209576,"RUS","METT",2011,"Not Reported",28,"Ergaki","Nature park (project)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12948,200404,"RUS","METT",2011,"Not Reported",28,"Ukok","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12949,205996,"RUS","RAPPAM",2001,"Not Reported",28,"Remdovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12950,206114,"RUS","RAPPAM",2001,"Not Reported",28,"Rostovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12951,206114,"RUS","METT",2009,"Not Reported",28,"Rostovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12952,68352,"RUS","RAPPAM",2001,"Not Reported",28,"Russky Sever","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12953,205496,"RUS","RAPPAM",2001,"Not Reported",28,"Ryazanskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12954,11579,"RUS","RAPPAM",2001,"Not Reported",28,"Samarskaya Luka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12955,206725,"RUS","METT",2013,"Not Reported",28,"Saratovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12956,206725,"RUS","METT",2009,"Not Reported",28,"Saratovsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12957,198943,"RUS","METT",2009,"Not Reported",28,"Sarpinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12958,1694,"RUS","METT",2006,"Not Reported",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12959,1694,"RUS","METT",2003,"Not Reported",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12960,1694,"RUS","METT",2005,"Not Reported",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12961,1694,"RUS","METT",2008,"Not Reported",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12962,1694,"RUS","RAPPAM",2001,"Not Reported",28,"Sayano-Shushensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12963,205993,"RUS","RAPPAM",2001,"Not Reported",28,"Sebezshsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12964,1722,"RUS","RAPPAM",2001,"Not Reported",28,"Severo-Osetinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12965,200525,"RUS","RAPPAM",2001,"Not Reported",28,"Severozemel'skiy","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12966,68353,"RUS","METT",2003,"Not Reported",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12967,68353,"RUS","METT",2005,"Not Reported",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12968,68353,"RUS","METT",2008,"Not Reported",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12969,68353,"RUS","METT",2006,"Not Reported",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12970,68353,"RUS","RAPPAM",2001,"Not Reported",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12971,11834,"RUS","METT",2003,"Not Reported",28,"Shulgan-Tash","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12972,11834,"RUS","METT",2005,"Not Reported",28,"Shulgan-Tash","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12973,11834,"RUS","RAPPAM",2001,"Not Reported",28,"Shulgan-Tash","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12974,209640,"RUS","METT",2008,"Not Reported",28,"Shushensky Bor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12975,209640,"RUS","RAPPAM",2001,"Not Reported",28,"Shushensky Bor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12976,209640,"RUS","METT",2006,"Not Reported",28,"Shushensky Bor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12977,201368,"RUS","RAPPAM",2001,"Not Reported",28,"Siysky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12978,68354,"RUS","RAPPAM",2001,"Not Reported",28,"Smolenskoye Poozer'e / Smolemsk Lakeland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12979,199587,"RUS","RAPPAM",2001,"Not Reported",28,"Smolny","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12980,11577,"RUS","RAPPAM",2001,"Not Reported",28,"Sochinsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12981,10719,"RUS","RAPPAM",2001,"Not Reported",28,"Sokhondinskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12982,208853,"RUS","RAPPAM",2001,"Not Reported",28,"Starokulatkinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12983,1691,"RUS","METT",2011,"Not Reported",28,"Altaisky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12984,68353,"RUS","METT",2011,"Not Reported",28,"Shorsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12985,209640,"RUS","METT",2011,"Not Reported",28,"Shushensky Bor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12986,10718,"RUS","METT",2011,"Not Reported",28,"Sayano-Shushenskiy","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12987,145588,"RUS","METT",2011,"Not Reported",28,"Ubsunorskaya Kotlovina","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12988,11830,"RUS","METT",2011,"Not Reported",28,"Azas","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12989,201742,"RUS","METT",2011,"Not Reported",28,"Khakassky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12990,62693,"RUS","METT",2008,"Not Reported",28,"Ostrov Vrangelya / Wrangel Island","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12991,198952,"RUS","RAPPAM",2001,"Not Reported",28,"Stepnoj","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12992,209747,"RUS","METT",2005,"Not Reported",28,"Stershiny (uchastok2)","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12993,209747,"RUS","METT",2007,"Not Reported",28,"Stershiny (uchastok2)","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12994,209747,"RUS","METT",2008,"Not Reported",28,"Stershiny (uchastok2)","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12995,1714,"RUS","RAPPAM",2001,"Not Reported",28,"Stolby","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12996,208854,"RUS","RAPPAM",2001,"Not Reported",28,"Sursky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12997,68355,"RUS","METT",2003,"Not Reported",28,"Taganai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12998,68355,"RUS","METT",2005,"Not Reported",28,"Taganai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +12999,68355,"RUS","RAPPAM",2001,"Not Reported",28,"Taganai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13000,1689,"RUS","RAPPAM",2001,"Not Reported",28,"Taimyrsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13001,145591,"RUS","European Diploma",1994,"Not Reported",28,"Teberda","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13002,1705,"RUS","Birdlife IBA",2007,"Not Reported",28,"Teberdinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13003,1705,"RUS","METT",2003,"Not Reported",28,"Teberdinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13004,1705,"RUS","METT",2005,"Not Reported",28,"Teberdinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13005,1705,"RUS","RAPPAM",2001,"Not Reported",28,"Teberdinsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13006,200004,"RUS","METT",2005,"Not Reported",28,"Terpej-Tumus","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13007,200004,"RUS","RAPPAM",2001,"Not Reported",28,"Terpej-Tumus","Resource Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13008,198920,"RUS","RAPPAM",2001,"Not Reported",28,"Tlyaratinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13009,198920,"RUS","Birdlife IBA",2007,"Not Reported",28,"Tlyaratinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13010,201252,"RUS","RAPPAM",2001,"Not Reported",28,"Tomskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13011,1732,"RUS","European Diploma",1998,"Not Reported",28,"Tsentralno-Chernozemny","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13012,206121,"RUS","METT",2009,"Not Reported",28,"Tsimlyansky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13013,204565,"RUS","RAPPAM",2001,"Not Reported",28,"Tulomsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13014,67722,"RUS","METT",2008,"Not Reported",28,"Ubsunurskaya Kotlovina","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13015,67722,"RUS","METT",2006,"Not Reported",28,"Ubsunurskaya Kotlovina","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13016,67722,"RUS","RAPPAM",2001,"Not Reported",28,"Ubsunurskaya Kotlovina","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13017,67722,"RUS","METT",2009,"Not Reported",28,"Ubsunurskaya Kotlovina","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13018,199808,"RUS","METT",2003,"Not Reported",28,"Kara-Hol'skiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13019,199808,"RUS","METT",2005,"Not Reported",28,"Kara-Hol'skiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13020,199808,"RUS","METT",2006,"Not Reported",28,"Kara-Hol'skiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13021,199808,"RUS","METT",2008,"Not Reported",28,"Kara-Hol'skiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13022,199360,"RUS","METT",2007,"Not Reported",28,"Udorskiy","Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13023,201143,"RUS","RAPPAM",2001,"Not Reported",28,"Udyl'","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13024,203386,"RUS","RAPPAM",2001,"Not Reported",28,"Ugra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13025,200404,"RUS","METT",2006,"Not Reported",28,"Ukok","Nature Sanctuary or Partial Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13026,1718,"RUS","METT",2003,"Not Reported",28,"Ussuriysky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13027,1718,"RUS","METT",2005,"Not Reported",28,"Ussuriysky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13028,1718,"RUS","RAPPAM",2001,"Not Reported",28,"Ussuriysky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13029,11832,"RUS","RAPPAM",2001,"Not Reported",28,"Ust'-Lensky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13031,68357,"RUS","RAPPAM",2001,"Not Reported",28,"Valdaisky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13032,208714,"RUS","RAPPAM",2001,"Not Reported",28,"Vaspukhol'skiy","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13033,208716,"RUS","RAPPAM",2001,"Not Reported",28,"Verkhne-Kondinsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13034,15780,"RUS","RAPPAM",2001,"Not Reported",28,"Verkhne-Tazovsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13035,95389,"RUS","Birdlife IBA",2006,"Not Reported",28,"Veselovskoye Reservoir","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13036,93294,"RUS","WH Outlook Report",2014,"Not Reported",28,"Virgin Komi Forests","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13037,68546,"RUS","RAPPAM",2001,"Not Reported",28,"Vishersky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13038,1728,"RUS","RAPPAM",2001,"Not Reported",28,"Visimsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13040,68358,"RUS","RAPPAM",2001,"Not Reported",28,"Vodlozersky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13041,124387,"RUS","WH Outlook Report",2014,"Not Reported",28,"Volcanoes of Kamchatka","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13042,555547592,"RUS","METT",2013,"Not Reported",28,"Volga-Akhtuba Floodplain","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13046,1730,"RUS","RAPPAM",2001,"Not Reported",28,"Volzhsko-Kamsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13047,1720,"RUS","RAPPAM",2001,"Not Reported",28,"Voronezhsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13050,61512,"RUS","RAPPAM",2001,"Not Reported",28,"Voroninsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13051,198301,"RUS","WH Outlook Report",2014,"Not Reported",28,"Western Caucasus","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13052,4817,"RUS","RAPPAM",2001,"Not Reported",28,"Yugansky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13053,61506,"RUS","METT",2006,"Not Reported",28,"Yugyd Va","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13054,61506,"RUS","RAPPAM",2001,"Not Reported",28,"Yugyd Va","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13055,203440,"RUS","RAPPAM",2001,"Not Reported",28,"Yuzhno-Kamchatsky","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13056,203439,"RUS","RAPPAM",2001,"Not Reported",28,"Juzhno-Kamchatskiy","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13057,20686,"RUS","RAPPAM",2001,"Not Reported",28,"Yuzhno-Uralsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13058,61502,"RUS","RAPPAM",2001,"Not Reported",28,"Zemlya Frantsa-Iosifa / Franz Josef Land","Zakaznik (Federal)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13059,1706,"RUS","RAPPAM",2001,"Not Reported",28,"Zeysky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13060,61575,"RUS","METT",2003,"Not Reported",28,"Zjuratkul","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13061,61575,"RUS","METT",2005,"Not Reported",28,"Zjuratkul","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13062,61575,"RUS","RAPPAM",2001,"Not Reported",28,"Zjuratkul","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13063,11949,"SAU","Birdlife IBA",2013,"Not Reported",28,"Harrat al-Harrah","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13064,101910,"SAU","Birdlife IBA",2013,"Not Reported",28,"Ibex Reserve (Hawtat Bani Tamin)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13065,19556,"SAU","Birdlife IBA",2013,"Not Reported",28,"Mahazat as-Sayd","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13066,68153,"SEN","Birdlife IBA",2001,"Not Reported",28,"Delta du Saloum","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13067,866,"SEN","RAPPAM",2009,"Not Reported",28,"Delta du Saloum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13068,68151,"SEN","RAPPAM",2009,"Not Reported",28,"Djoudj","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13069,68151,"SEN","RAPPAM",2011,"Not Reported",28,"Djoudj","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13070,2578,"SEN","Enhancing Our Heritage",2009,"Not Reported",28,"Djoudj National Bird Sanctuary","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13071,2578,"SEN","METT",2012,"Not Reported",28,"Djoudj National Bird Sanctuary","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13072,2578,"SEN","WH Outlook Report",2014,"Not Reported",28,"Djoudj National Bird Sanctuary","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13073,68154,"SEN","RAPPAM",2011,"Not Reported",28,"Gueumbeul","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13074,68154,"SEN","METT",0,"Not Reported",28,"Gueumbeul","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13075,352706,"SEN","RAPPAM",2009,"Not Reported",28,"Joal","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13076,352706,"SEN","RAPPAM",2011,"Not Reported",28,"Joal","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13077,352705,"SEN","RAPPAM",2009,"Not Reported",28,"Kayar","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13078,352705,"SEN","RAPPAM",2011,"Not Reported",28,"Kayar","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13079,869,"SEN","RAPPAM",2009,"Not Reported",28,"Langue de Barbarie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13080,869,"SEN","RAPPAM",2011,"Not Reported",28,"Langue de Barbarie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13081,869,"SEN","METT",0,"Not Reported",28,"Langue de Barbarie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13082,5178,"SEN","METT",0,"Not Reported",28,"Ndiael","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13083,865,"SEN","RAPPAM",2009,"Not Reported",28,"Niokolo Koba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13084,865,"SEN","Enhancing Our Heritage",2009,"Not Reported",28,"Niokolo Koba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13085,3045,"SEN","GOBI Survey",2006,"Not Reported",28,"Parc national du Niokolo-Koba","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13086,2580,"SEN","WH Outlook Report",2014,"Not Reported",28,"Niokolo-Koba National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13087,870,"SEN","METT",0,"Not Reported",28,"Magdalen Islands (Iles de la Madeleine)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13088,866,"SEN","METT",0,"Not Reported",28,"Delta du Saloum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13089,865,"SEN","Birdlife IBA",2001,"Not Reported",28,"Niokolo Koba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13090,2580,"SEN","Birdlife IBA",2001,"Not Reported",28,"Niokolo-Koba National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13091,12263,"SEN","RAPPAM",2011,"Not Reported",28,"Poponguine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13092,12263,"SEN","METT",0,"Not Reported",28,"Poponguine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13093,352704,"SEN","RAPPAM",2011,"Not Reported",28,"Saint-Louis","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13094,1344,"SGP","Asean MEE",2012,"Not Reported",28,"Bukit Timah Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13095,313505,"SGP","Birdlife IBA",2012,"Not Reported",28,"Central Catchment Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13096,555542335,"SLE","METT",2009,"Not Reported",28,"Gola Rainforest National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13097,555542335,"SLE","Birdlife IBA",2005,"Not Reported",28,"Gola Rainforest National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13098,303925,"SLE","Birdlife IBA",2005,"Not Reported",28,"Kambui Hills and Extensions","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13099,5180,"SLE","METT",2006,"Not Reported",28,"Kangari Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13100,5180,"SLE","Birdlife IBA",2005,"Not Reported",28,"Kangari Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13101,8517,"SLE","Birdlife IBA",2005,"Not Reported",28,"Loma Mountains","No or Non - Hunting Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13102,29968,"SLE","Birdlife IBA",2005,"Not Reported",28,"Loma Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13103,29968,"SLE","METT",2006,"Not Reported",28,"Loma Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13104,7417,"SLE","METT",2006,"Not Reported",28,"Outamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13105,7417,"SLE","Birdlife IBA",2005,"Not Reported",28,"Outamba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13106,555547922,"SLE","METT",2010,"Not Reported",28,"Sierra Leone River Estuary","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13107,10732,"SLE","Birdlife IBA",2005,"Not Reported",28,"Sankan Biriwa (Tingi Hills)","No or Non - Hunting Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13108,5179,"SLE","Birdlife IBA",2005,"Not Reported",28,"Western Area","No or Non - Hunting Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13109,19249,"SLE","Birdlife IBA",2005,"Not Reported",28,"Western Area Peninsula Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13110,107426,"SLV","METT",2005,"Not Reported",28,"Manglar Bah├¡a de Jiquilisco","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13111,107427,"SLV","PROARCA/CAPAS",2001,"Not Reported",28,"Manglar Barra de Santiago","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13112,107427,"SLV","PROARCA/CAPAS",2006,"Not Reported",28,"Manglar Barra de Santiago","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13113,107387,"SLV","PROARCA/CAPAS",2002,"Not Reported",28,"Cerro Cacahuatique","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13114,107387,"SLV","PROARCA/CAPAS",2003,"Not Reported",28,"Cerro Cacahuatique","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13115,107387,"SLV","PROARCA/CAPAS",2006,"Not Reported",28,"Cerro Cacahuatique","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13116,302026,"SLV","METT",2010,"Not Reported",28,"Chaparron o Chaguantique","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13117,12509,"SLV","PROARCA/CAPAS",2001,"Not Reported",28,"Colima","Protected Area with Managed Resources","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13118,12509,"SLV","PROARCA/CAPAS",2002,"Not Reported",28,"Colima","Protected Area with Managed Resources","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13119,12509,"SLV","PROARCA/CAPAS",2004,"Not Reported",28,"Colima","Protected Area with Managed Resources","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13120,12524,"SLV","METT",2005,"Not Reported",28,"San Diego La Barra, laguna, cerro, San felipe (12)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13121,12494,"SLV","PROARCA/CAPAS",1999,"Not Reported",28,"El Imposible y El Balsamero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13122,12494,"SLV","PROARCA/CAPAS",2006,"Not Reported",28,"El Imposible y El Balsamero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13123,302006,"SLV","METT",2010,"Not Reported",28,"El Tercio","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13124,12516,"SLV","PROARCA/CAPAS",2003,"Not Reported",28,"Escuintla","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13125,555542793,"SLV","METT",2010,"Not Reported",28,"El Caballito","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13126,62037,"SLV","METT",2010,"Not Reported",28,"Isla San Sebastián","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13127,62035,"SLV","PROARCA/CAPAS",2006,"Not Reported",28,"La Joya","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13128,302009,"SLV","PROARCA/CAPAS",2004,"Not Reported",28,"La Magdalena","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13129,555542800,"SLV","METT",0,"Not Reported",28,"La Montañita","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13131,107424,"SLV","PROARCA/CAPAS",2006,"Not Reported",28,"Los C├│banos","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13132,107426,"SLV","METT",2010,"Not Reported",28,"Manglar Bah├¡a de Jiquilisco","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13133,107436,"SLV","METT",2010,"Not Reported",28,"Manglar Portezuelo","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13134,9638,"SLV","PROARCA/CAPAS",1999,"Not Reported",28,"Parque Nacional Montecristo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13135,9638,"SLV","PROARCA/CAPAS",2000,"Not Reported",28,"Parque Nacional Montecristo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13136,302030,"SLV","PROARCA/CAPAS",2003,"Not Reported",28,"Nancuchiname (Mata de Piña, La Maroma, Porción 5 y 6)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13137,302030,"SLV","PROARCA/CAPAS",2004,"Not Reported",28,"Nancuchiname (Mata de Piña, La Maroma, Porción 5 y 6)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13138,302030,"SLV","METT",2010,"Not Reported",28,"Nancuchiname (Mata de Piña, La Maroma, Porción 5 y 6)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13139,12521,"SLV","METT",2010,"Not Reported",28,"Normandia","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13140,12527,"SLV","PROARCA/CAPAS",2003,"Not Reported",28,"Parque Walter Tilo Deininger","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13141,302035,"SLV","PROARCA/CAPAS",2005,"Not Reported",28,"Plan de Amayo","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13142,302035,"SLV","PROARCA/CAPAS",2006,"Not Reported",28,"Plan de Amayo","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13143,12524,"SLV","PROARCA/CAPAS",2003,"Not Reported",28,"San Diego La Barra, laguna, cerro, San felipe (12)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13144,315157,"SLV","PROARCA/CAPAS",2003,"Not Reported",28,"Santa Rita","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13145,315157,"SLV","PROARCA/CAPAS",2006,"Not Reported",28,"Santa Rita","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13146,302036,"SLV","PROARCA/CAPAS",2006,"Not Reported",28,"Taquillo","Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13147,328841,"SRB","METT",2012,"Not Reported",28,"Deliblatska pescara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13148,145399,"SRB","RAPPAM",2009,"Not Reported",28,"Kalenic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13149,20695,"SRB","METT",2012,"Not Reported",28,"Dolina Pcinje","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13150,1053,"SRB","RAPPAM",2009,"Not Reported",28,"Nacionalni park Fruska Gora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13151,328830,"SRB","RAPPAM",2009,"Not Reported",28,"Prebreza","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13152,16401,"SRB","METT",2012,"Not Reported",28,"Golija","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13153,328846,"SRB","METT",2012,"Not Reported",28,"Gornje Podunavlje","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13154,555547528,"SRB","METT",2012,"Not Reported",28,"Golija-Studenica","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13155,20701,"SRB","RAPPAM",2009,"Not Reported",28,"Ovcarsko-Kablarska klisura","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13156,16406,"SRB","METT",2012,"Not Reported",28,"Jegricka","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13157,328863,"SRB","METT",2009,"Not Reported",28,"Reon sela Trsica i Tronose","Area of Cultural and Historical Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13158,328843,"SRB","METT",2012,"Not Reported",28,"Karadjordjevo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13159,328863,"SRB","RAPPAM",2009,"Not Reported",28,"Reon sela Trsica i Tronose","Area of Cultural and Historical Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13160,15598,"SRB","METT",2012,"Not Reported",28,"Ncionalni park Kopaonik","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13161,15598,"SRB","RAPPAM",2009,"Not Reported",28,"Ncionalni park Kopaonik","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13162,145272,"SRB","RAPPAM",2009,"Not Reported",28,"Bukovo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13163,20704,"SRB","METT",2009,"Not Reported",28,"Veliko ratno ostrvo","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13164,20701,"SRB","METT",2009,"Not Reported",28,"Ovcarsko-Kablarska klisura","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13165,328917,"SRB","RAPPAM",2009,"Not Reported",28,"Petrlaska pecina","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13166,145248,"SRB","RAPPAM",2009,"Not Reported",28,"Danilova kosa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13167,2522,"SRB","METT",2009,"Not Reported",28,"Nacionalni park Djerdap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13168,1053,"SRB","METT",2009,"Not Reported",28,"Nacionalni park Fruska Gora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13169,15598,"SRB","METT",2009,"Not Reported",28,"Ncionalni park Kopaonik","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13170,16386,"SRB","METT",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13171,15596,"SRB","METT",2009,"Not Reported",28,"Nacionalni park Tara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13172,16406,"SRB","METT",2009,"Not Reported",28,"Jegricka","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13173,328838,"SRB","METT",2009,"Not Reported",28,"Carska bara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13174,145250,"SRB","RAPPAM",2009,"Not Reported",28,"Feljesana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13175,20701,"SRB","METT",2012,"Not Reported",28,"Ovcarsko-Kablarska klisura","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13176,16393,"SRB","RAPPAM",2009,"Not Reported",28,"Palic","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13177,145132,"SRB","METT",2012,"Not Reported",28,"Sargan - Mokra Gora","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13178,16399,"SRB","METT",2012,"Not Reported",28,"Sicevacka klisura","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13179,145136,"SRB","RAPPAM",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13180,328849,"SRB","RAPPAM",2009,"Not Reported",28,"Slano Kopovo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13181,145248,"SRB","METT",2009,"Not Reported",28,"Danilova kosa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13182,16397,"SRB","RAPPAM",2009,"Not Reported",28,"Stara planina","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13183,15596,"SRB","RAPPAM",2009,"Not Reported",28,"Nacionalni park Tara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13184,20704,"SRB","METT",2012,"Not Reported",28,"Veliko ratno ostrvo","Landscape of Outstanding Qualities","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13185,145145,"SRB","RAPPAM",2009,"Not Reported",28,"Veliki Sturac","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13186,13651,"SUR","METT",2010,"Not Reported",28,"Bigi Pan","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13187,19574,"SUR","METT",2010,"Not Reported",28,"Boven-Coesewijne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13188,277,"SUR","METT",2010,"Not Reported",28,"Brinck-heuvel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13189,279,"SUR","METT",2010,"Not Reported",28,"Brownsberg","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13190,220298,"SUR","WH Outlook Report",2014,"Not Reported",28,"Central Suriname Nature Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13191,12188,"SUR","METT",2010,"Not Reported",28,"Copi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13192,282,"SUR","METT",2010,"Not Reported",28,"Galibi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13193,303889,"SUR","METT",2010,"Not Reported",28,"North Commewijne - Marowijne","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13194,303890,"SUR","METT",2010,"Not Reported",28,"Noord Coronie","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13195,303892,"SUR","METT",2010,"Not Reported",28,"Noord Saramacca","Multiple Use Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13196,12186,"SUR","METT",2010,"Not Reported",28,"Peruvia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13197,276,"SUR","METT",2010,"Not Reported",28,"Sipaliwini","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13198,280,"SUR","METT",2010,"Not Reported",28,"Wia-Wia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13199,394688,"SVN","RAPPAM",2009,"Not Reported",28,"Goričko","Ecological Important Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13200,901260,"SVN","Stockholm BR Survey",2008,"Not Reported",28,"Julian Alps","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13201,394879,"SVN","RAPPAM",2009,"Not Reported",28,"Kolpa","Ecological Important Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13202,124157,"SVN","RAPPAM",2009,"Not Reported",28,"Kozjanski park","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13203,387295,"SVN","Birdlife IBA",2013,"Not Reported",28,"Krajinski park Ljubljansko barje","Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13204,394847,"SVN","Birdlife IBA",2013,"Not Reported",28,"Ljubljansko barje","Ecological Important Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13205,395208,"SVN","Birdlife IBA",2013,"Not Reported",28,"Ljubljansko barje","Specialy Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13206,395236,"SVN","Birdlife IBA",2013,"Not Reported",28,"Ljubljansko barje","Specialy Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13207,555535222,"SVN","Birdlife IBA",2013,"Not Reported",28,"Ljubljansko Barje","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13208,555541579,"SVN","Birdlife IBA",2013,"Not Reported",28,"Ljubljansko barje","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13209,63662,"SVN","RAPPAM",2009,"Not Reported",28,"Logarska dolina","Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13210,178735,"SVN","RAPPAM",2009,"Not Reported",28,"Notranjski regijski park","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13211,67621,"SVN","RAPPAM",2009,"Not Reported",28,"Sečoveljske soline","Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13212,12209,"SVN","WH Outlook Report",2014,"Not Reported",28,"Škocjan Caves","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13213,326354,"SVN","RAPPAM",2009,"Not Reported",28,"Škocjanski zatok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13214,394733,"SVN","Birdlife IBA",2013,"Not Reported",28,"Snežnik - Pivka","Ecological Important Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13215,395174,"SVN","Birdlife IBA",2013,"Not Reported",28,"Javorniki - Snežnik","Specialy Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13216,395224,"SVN","Birdlife IBA",2013,"Not Reported",28,"Snežnik - Pivka","Specialy Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13217,555535188,"SVN","Birdlife IBA",2013,"Not Reported",28,"Javorniki - Snežnik","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13218,555541567,"SVN","Birdlife IBA",2013,"Not Reported",28,"Snežnik - Pivka","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13219,902609,"SVN","GOBI Survey",2006,"Not Reported",28,"The Karst","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13220,902609,"SVN","Stockholm BR Survey",2008,"Not Reported",28,"The Karst","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13221,326108,"SVN","European Diploma",2004,"Not Reported",28,"Triglav","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13222,2517,"SVN","RAPPAM",2009,"Not Reported",28,"Triglavski narodni park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13223,1342,"SYC","Birdlife IBA",2001,"Not Reported",28,"Aldabra","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13224,5004,"SYC","Birdlife IBA",2001,"Not Reported",28,"Aldabra Atoll","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13225,555542730,"SYC","Birdlife IBA",2001,"Not Reported",28,"Aldabra Atoll","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13226,5004,"SYC","Enhancing Our Heritage",2002,"Not Reported",28,"Aldabra Atoll","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13227,5004,"SYC","Enhancing Our Heritage",2007,"Not Reported",28,"Aldabra Atoll","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13228,555542730,"SYC","METT",2009,"Not Reported",28,"Aldabra Atoll","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13229,5004,"SYC","WH Outlook Report",2014,"Not Reported",28,"Aldabra Atoll","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13230,478637,"TUR","METT",2008,"Not Reported",28,"G�reme National Park and the Rock Sites of Cappadocia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13231,6939,"SYC","West Indian Ocean MPA",2003,"Not Reported",28,"Cousin Island","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13232,6938,"SYC","Birdlife IBA",2001,"Not Reported",28,"Praslin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13233,9628,"SYC","WH Outlook Report",2014,"Not Reported",28,"Vall�e de Mai Nature Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13234,555558303,"TCD","RAPPAM",2008,"Not Reported",28,"Aouk","Hunting reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13235,5164,"TCD","RAPPAM",2008,"Not Reported",28,"Bahr Salamat","Faunal reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13236,5168,"TCD","RAPPAM",2008,"Not Reported",28,"Binder-L�r�","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13238,9033,"TCD","RAPPAM",2008,"Not Reported",28,"Fada Archei","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13239,30017,"TCD","Birdlife IBA",2001,"Not Reported",28,"Lac Fitri","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13240,555547987,"TCD","WH Outlook Report",2014,"Not Reported",28,"Lakes of Ounianga","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13241,642,"TCD","RAPPAM",2008,"Not Reported",28,"Manda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13242,5166,"TCD","RAPPAM",2008,"Not Reported",28,"Mandelia","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13243,111111,"USA","RAPPAM",2008,"Not Reported",28,"Hideaway Islands","Research Natural Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13244,1250,"TCD","RAPPAM",2008,"Not Reported",28,"Ouadi-Rim�-Ouadi Achim","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13246,5165,"TCD","RAPPAM",2008,"Not Reported",28,"Siniaka-Minia","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13247,641,"TCD","RAPPAM",2008,"Not Reported",28,"Zakouma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13248,39522,"THA","Birdlife IBA",2004,"Not Reported",28,"Chalerm Phrakiat Somdej Phrathep Ratchasuda","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13249,900615,"THA","Birdlife IBA",2004,"Not Reported",28,"Princess Sirindhorn Wildlife Sanctuary (Pru ToDaeng Wildlife Sanctuary)","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13250,935,"THA","METT",2008,"Not Reported",28,"Doi Inthanon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13251,312937,"THA","Birdlife IBA",2007,"Not Reported",28,"Doi Phukha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13252,902480,"THA","WH Outlook Report",2014,"Not Reported",28,"Dong Phayayen-Khao Yai Forest Complex","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13253,1407,"THA","Birdlife IBA",2007,"Not Reported",28,"Huai Kha Khaeng","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13254,4012,"THA","Birdlife IBA",2007,"Not Reported",28,"Kaengkrachan Forest Complex","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13255,4012,"THA","METT",2005,"Not Reported",28,"Kaengkrachan Forest Complex","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13256,1425,"THA","Birdlife IBA",2007,"Not Reported",28,"Khao Angruenai","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13257,938,"THA","Birdlife IBA",2007,"Not Reported",28,"Khao Chamao-Khao Wong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13258,938,"THA","METT",2008,"Not Reported",28,"Khao Chamao-Khao Wong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13259,940,"THA","Birdlife IBA",2007,"Not Reported",28,"Khao Khitchakut","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13260,18446,"THA","Birdlife IBA",2007,"Not Reported",28,"Khao Laem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13261,1412,"THA","Birdlife IBA",2007,"Not Reported",28,"Khao Soi Dao","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13262,927,"THA","Asean MEE",2012,"Not Reported",28,"Khao Yai","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13263,927,"THA","Birdlife IBA",2007,"Not Reported",28,"Khao Yai","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13264,7468,"THA","METT",2009,"Not Reported",28,"Khlong Lan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13265,312949,"THA","METT",2005,"Not Reported",28,"Kuiburi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13266,1411,"THA","Birdlife IBA",2007,"Not Reported",28,"Lum Nam Pai","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13267,312938,"THA","Birdlife IBA",2007,"Not Reported",28,"Mae Phang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13268,4675,"THA","Birdlife IBA",2007,"Not Reported",28,"Mae Ping","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13269,1406,"THA","Birdlife IBA",2007,"Not Reported",28,"Mae Tuen","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13270,19669,"THA","Birdlife IBA",2013,"Not Reported",28,"Mae Wong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13271,19670,"THA","Birdlife IBA",2013,"Not Reported",28,"Mae Yom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13272,2109,"THA","GOBI Survey",2006,"Not Reported",28,"Mae Sa-Kog Ma Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13273,312947,"THA","Birdlife IBA",2007,"Not Reported",28,"Namtok Huai Yang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13274,8037,"THA","Birdlife IBA",2007,"Not Reported",28,"Pang Sida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13275,8037,"THA","METT",2005,"Not Reported",28,"Pang Sida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13276,1408,"THA","Birdlife IBA",2007,"Not Reported",28,"Phu Khiew","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13277,1413,"THA","Birdlife IBA",2007,"Not Reported",28,"Phu Luang","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13278,1413,"THA","METT",2005,"Not Reported",28,"Phu Luang","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13279,1417,"THA","Birdlife IBA",2007,"Not Reported",28,"Phu Miang - Phu Thong","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13280,931,"THA","Birdlife IBA",2007,"Not Reported",28,"Phu Phan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13281,4003,"THA","Birdlife IBA",2007,"Not Reported",28,"Sai Yok","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13282,1414,"THA","Birdlife IBA",2007,"Not Reported",28,"Salak Phra","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13283,555512235,"THA","Birdlife IBA",2007,"Not Reported",28,"Salawin","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13284,5118,"THA","Birdlife IBA",2007,"Not Reported",28,"Khuen Si Nakarin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13285,31257,"THA","Birdlife IBA",2007,"Not Reported",28,"Sub Langka","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13286,8040,"THA","Birdlife IBA",2007,"Not Reported",28,"Thap Lan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13287,929,"THA","Birdlife IBA",2007,"Not Reported",28,"Thung Salaeng Luang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13288,1405,"THA","Birdlife IBA",2007,"Not Reported",28,"Thungyai Naresuan","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13289,67729,"THA","Birdlife IBA",2007,"Not Reported",28,"Thungyai - Huai Kha Khaeng Wildlife Sanctuaries","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13290,1405,"THA","METT",2005,"Not Reported",28,"Thungyai Naresuan","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13291,67729,"THA","WH Outlook Report",2014,"Not Reported",28,"Thungyai - Huai Kha Khaeng Wildlife Sanctuaries","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13292,1422,"THA","Birdlife IBA",2007,"Not Reported",28,"Yod Dom","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13293,167090,"TJK","Birdlife IBA",2006,"Not Reported",28,"Искандеркульский","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13294,1736,"TJK","METT",2004,"Not Reported",28,"Ромит","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13295,1736,"TJK","METT",2008,"Not Reported",28,"Ромит","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13296,1736,"TJK","METT",2011,"Not Reported",28,"Ромит","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13297,167121,"TJK","METT",2004,"Not Reported",28,"Ширкентский историко-природный парк","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13298,167121,"TJK","METT",2008,"Not Reported",28,"Ширкентский историко-природный парк","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13299,167121,"TJK","METT",2011,"Not Reported",28,"Ширкентский историко-природный парк","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13300,555556049,"TJK","WH Outlook Report",2014,"Not Reported",28,"Tajik National Park (Mountains of the Pamirs)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13301,167070,"TKM","METT",2003,"Not Reported",28,"Amu-Darya","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13302,167070,"TKM","METT",2005,"Not Reported",28,"Amu-Darya","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13303,167070,"TKM","METT",2012,"Not Reported",28,"Amu-Darya","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13304,167071,"TKM","METT",2012,"Not Reported",28,"Badkhyz","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13305,167071,"TKM","METT",2003,"Not Reported",28,"Badkhyz","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13306,167071,"TKM","METT",2005,"Not Reported",28,"Badkhyz","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13307,167099,"TKM","METT",2012,"Not Reported",28,"Hazar","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13308,167099,"TKM","METT",2005,"Not Reported",28,"Hazar","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13309,167099,"TKM","METT",2009,"Not Reported",28,"Hazar","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13310,167106,"TKM","METT",2012,"Not Reported",28,"Kopetdag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13311,1737,"TKM","METT",0,"Not Reported",28,"Kaplangurskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13312,167070,"TKM","METT",0,"Not Reported",28,"Amu-Darya","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13313,167071,"TKM","METT",0,"Not Reported",28,"Badkhyz","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13314,167106,"TKM","METT",0,"Not Reported",28,"Kopetdag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13315,167107,"TKM","METT",0,"Not Reported",28,"Kugitang","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13316,167124,"TKM","METT",0,"Not Reported",28,"Sunt-Khasardag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13317,2166,"TKM","METT",2012,"Not Reported",28,"Repetek Zapovednik","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13318,167124,"TKM","METT",2003,"Not Reported",28,"Sunt-Khasardag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13319,167124,"TKM","METT",2005,"Not Reported",28,"Sunt-Khasardag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13320,167124,"TKM","METT",2012,"Not Reported",28,"Sunt-Khasardag","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13321,315555,"TON","Birdlife IBA",2007,"Not Reported",28,"Tofua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13322,32564,"TUN","Birdlife IBA",2001,"Not Reported",28,"Bahiret El Bibane","Wetland Zone of National Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13323,4487,"TUN","METT",2012,"Not Reported",28,"Bouhedma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13324,101837,"TUN","METT",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13325,13963,"TUN","GOBI Survey",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13326,17744,"TUN","METT",2003,"Not Reported",28,"El Feïja","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13327,4322,"TUN","WH Outlook Report",2014,"Not Reported",28,"Ichkeul National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13328,903086,"TUN","Birdlife IBA",2001,"Not Reported",28,"Sebkhet Sejoumi","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13329,95401,"TUR","Birdlife IBA",2011,"Not Reported",28,"Lake Burdur","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13330,555547529,"TUR","GOBI Survey",2006,"Not Reported",28,"Camili","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13331,555549444,"TUR","METT",2003,"Not Reported",28,"Camili","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13332,95399,"TUR","Birdlife IBA",2013,"Not Reported",28,"Göksu Delta","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13333,478637,"TUR","RAPPAM",2005,"Not Reported",28,"G�reme National Park and the Rock Sites of Cappadocia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13334,478637,"TUR","RAPPAM",2009,"Not Reported",28,"G�reme National Park and the Rock Sites of Cappadocia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13335,478637,"TUR","WH Outlook Report",2014,"Not Reported",28,"G�reme National Park and the Rock Sites of Cappadocia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13336,478640,"TUR","WH Outlook Report",2014,"Not Reported",28,"Hierapolis-Pamukkale","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13337,166757,"TUR","Birdlife IBA",2011,"Not Reported",28,"Kizilirmak Delta","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13338,95403,"TUR","Birdlife IBA",2000,"Not Reported",28,"Lake Kus","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13339,925,"TZA","Birdlife IBA",2002,"Not Reported",28,"Arusha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13340,7886,"TZA","Birdlife IBA",2002,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13341,301444,"TZA","METT",2005,"Not Reported",28,"Bagai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13342,303471,"TZA","METT",2005,"Not Reported",28,"Balangai West","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13343,301476,"TZA","METT",2005,"Not Reported",28,"Bamba Ridge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13344,301476,"TZA","METT",2011,"Not Reported",28,"Bamba Ridge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13345,303466,"TZA","METT",2005,"Not Reported",28,"Bombo East II","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13346,301462,"TZA","METT",2005,"Not Reported",28,"Bombo West","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13347,301462,"TZA","METT",2009,"Not Reported",28,"Bombo West","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13348,303516,"TZA","METT",2005,"Not Reported",28,"Chamanyani","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13349,301431,"TZA","METT",2005,"Not Reported",28,"Chambogo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13350,301431,"TZA","METT",2009,"Not Reported",28,"Chambogo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13351,301431,"TZA","METT",2006,"Not Reported",28,"Chambogo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13352,303575,"TZA","METT",2005,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13353,303575,"TZA","METT",2014,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13354,303575,"TZA","METT",2006,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13356,303575,"TZA","METT",2007,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13358,303575,"TZA","METT",2011,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13359,303575,"TZA","METT",0,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13360,303575,"TZA","METT",2013,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13361,303575,"TZA","METT",2012,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13362,303351,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13363,301436,"TZA","METT",2005,"Not Reported",28,"Chongweni","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13364,303523,"TZA","METT",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13365,350016,"TZA","METT",2005,"Not Reported",28,"Derema","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13367,301687,"TZA","METT",2007,"Not Reported",28,"Ndimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13368,301687,"TZA","METT",2011,"Not Reported",28,"Ndimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13369,301687,"TZA","METT",2006,"Not Reported",28,"Ndimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13370,301561,"TZA","METT",2005,"Not Reported",28,"Dindili","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13371,301547,"TZA","METT",2013,"Not Reported",28,"Dodoma Reservoir","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13373,303486,"TZA","METT",2011,"Not Reported",28,"South Gendagenda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13374,301437,"TZA","METT",2005,"Not Reported",28,"Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13375,301544,"TZA","METT",2011,"Not Reported",28,"Gwami","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13376,301621,"TZA","METT",2005,"Not Reported",28,"Idewa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13377,301621,"TZA","METT",2009,"Not Reported",28,"Idewa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13378,301618,"TZA","METT",2009,"Not Reported",28,"Ihanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13379,301618,"TZA","METT",2005,"Not Reported",28,"Ihanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13381,301618,"TZA","METT",2013,"Not Reported",28,"Ihanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13383,303509,"TZA","METT",2005,"Not Reported",28,"Ikwamba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13384,303509,"TZA","METT",2013,"Not Reported",28,"Ikwamba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13385,303378,"TZA","METT",2005,"Not Reported",28,"Image","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13386,303378,"TZA","METT",2013,"Not Reported",28,"Image","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13387,301612,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13388,350036,"TZA","METT",2007,"Not Reported",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13389,350036,"TZA","METT",2006,"Not Reported",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13392,350036,"TZA","METT",2011,"Not Reported",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13393,350036,"TZA","METT",2014,"Not Reported",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13394,350036,"TZA","METT",2013,"Not Reported",28,"Jozani-Chwaka Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13395,303475,"TZA","METT",2005,"Not Reported",28,"Kambai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13396,303475,"TZA","METT",2011,"Not Reported",28,"Kambai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13397,303582,"TZA","METT",2005,"Not Reported",28,"Kambona","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13398,303582,"TZA","METT",2012,"Not Reported",28,"Kambona","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13399,354044,"TZA","METT",2005,"Not Reported",28,"Kamwalla I","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13400,354045,"TZA","METT",2005,"Not Reported",28,"Kamwalla II","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13401,301528,"TZA","METT",2005,"Not Reported",28,"Kanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13402,301528,"TZA","METT",2009,"Not Reported",28,"Kanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13403,301528,"TZA","METT",2006,"Not Reported",28,"Kanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13404,301440,"TZA","METT",2005,"Not Reported",28,"Kankoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13405,303451,"TZA","METT",2005,"Not Reported",28,"Kiranga Hengae","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13406,921,"TZA","Birdlife IBA",2005,"Not Reported",28,"Katavi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13407,301615,"TZA","METT",2014,"Not Reported",28,"Katundu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13408,301615,"TZA","METT",2011,"Not Reported",28,"Katundu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13409,301615,"TZA","METT",2013,"Not Reported",28,"Katundu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13410,301463,"TZA","METT",2005,"Not Reported",28,"Kwembago","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13411,301463,"TZA","METT",2013,"Not Reported",28,"Kwembago","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13412,301571,"TZA","METT",2011,"Not Reported",28,"Kazimzumbwi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13413,40922,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13414,19775,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13415,301635,"TZA","METT",2005,"Not Reported",28,"Kibao","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13416,351707,"TZA","METT",2005,"Not Reported",28,"Kichi Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13417,351707,"TZA","METT",2014,"Not Reported",28,"Kichi Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13418,351707,"TZA","METT",2013,"Not Reported",28,"Kichi Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13419,351707,"TZA","METT",2011,"Not Reported",28,"Kichi Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13420,301641,"TZA","METT",2005,"Not Reported",28,"Kigogo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13421,301512,"TZA","METT",2013,"Not Reported",28,"Kilindi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13422,303524,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13423,303513,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13424,350028,"TZA","METT",2013,"Not Reported",28,"Kiranzi Kitunguu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13425,350028,"TZA","METT",2005,"Not Reported",28,"Kiranzi Kitunguu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13426,17761,"TZA","WH Outlook Report",2014,"Not Reported",28,"Kilimanjaro National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13427,301512,"TZA","METT",2005,"Not Reported",28,"Kilindi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13428,301512,"TZA","METT",2009,"Not Reported",28,"Kilindi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13429,301512,"TZA","METT",2006,"Not Reported",28,"Kilindi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13430,19748,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13431,301642,"TZA","METT",2011,"Not Reported",28,"Mangroves-Bagamoyo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13432,7520,"TZA","METT",2005,"Not Reported",28,"Kimboza","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13434,7520,"TZA","METT",2006,"Not Reported",28,"Kimboza","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13435,301420,"TZA","METT",2005,"Not Reported",28,"Kindoroko","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13436,303522,"TZA","METT",2011,"Not Reported",28,"Kingoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13437,301682,"TZA","METT",2012,"Not Reported",28,"Nyera/Kiperere","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13438,303527,"TZA","METT",2011,"Not Reported",28,"Kipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13439,19474,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13440,301568,"TZA","Birdlife IBA",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13441,301465,"TZA","METT",2005,"Not Reported",28,"Kisima Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13442,301601,"TZA","METT",2006,"Not Reported",28,"Kisinga Lugaro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13443,301601,"TZA","METT",2005,"Not Reported",28,"Kisinga Lugaro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13444,301601,"TZA","METT",2013,"Not Reported",28,"Kisinga Lugaro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13445,303445,"TZA","METT",2005,"Not Reported",28,"Kisiwani","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13446,301458,"TZA","METT",2005,"Not Reported",28,"Kitara Ridge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13447,301629,"TZA","METT",2008,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13448,301629,"TZA","METT",2014,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13449,301629,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13450,301629,"TZA","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13451,350003,"TZA","METT",2010,"Not Reported",28,"Kitulo Plateau National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13452,354046,"TZA","METT",2005,"Not Reported",28,"Kiverenge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13453,354046,"TZA","METT",2009,"Not Reported",28,"Kiverenge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13455,303383,"TZA","METT",2005,"Not Reported",28,"Kiwengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13456,303383,"TZA","METT",2013,"Not Reported",28,"Kiwengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13457,303383,"TZA","METT",2014,"Not Reported",28,"Kiwengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13458,303383,"TZA","METT",2011,"Not Reported",28,"Kiwengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13459,31760,"TZA","METT",2011,"Not Reported",28,"Kiwengwa Pongwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13460,31760,"TZA","METT",2007,"Not Reported",28,"Kiwengwa Pongwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13461,351703,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13462,303443,"TZA","METT",2005,"Not Reported",28,"Koko Hill","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13463,303481,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13464,303860,"TZA","METT",2011,"Not Reported",28,"Mkundi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13465,301487,"TZA","METT",2011,"Not Reported",28,"Kwamrimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13466,301487,"TZA","METT",2005,"Not Reported",28,"Kwamrimba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13467,301479,"TZA","METT",2011,"Not Reported",28,"Kwamgumi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13468,301479,"TZA","METT",2005,"Not Reported",28,"Kwamgumi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13469,303484,"TZA","METT",2005,"Not Reported",28,"Kwani","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13470,303484,"TZA","METT",2011,"Not Reported",28,"Kwani","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13471,378263,"TZA","METT",2005,"Not Reported",28,"NSG Ratinger Sandberge ","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13472,303444,"TZA","METT",2005,"Not Reported",28,"Kwizu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13473,924,"TZA","Birdlife IBA",2002,"Not Reported",28,"Lake Manyara National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13474,900623,"TZA","Birdlife IBA",2001,"Not Reported",28,"Lake Natron Basin","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13475,301703,"TZA","METT",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13477,303576,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13478,303576,"TZA","METT",2014,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13479,303576,"TZA","METT",0,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13480,303576,"TZA","METT",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13482,303576,"TZA","METT",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13483,303576,"TZA","METT",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13484,303576,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13485,303576,"TZA","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13486,352700,"TZA","METT",2012,"Not Reported",28,"Lukwika-Lumesule G.R.","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13488,303367,"TZA","METT",2005,"Not Reported",28,"Kilanga (Nilo)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13489,301478,"TZA","METT",2005,"Not Reported",28,"Mafi Hill","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13490,301567,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13491,301435,"TZA","METT",2005,"Not Reported",28,"Maganda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13492,7436,"TZA","METT",2013,"Not Reported",28,"Magombera","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13493,301640,"TZA","METT",2005,"Not Reported",28,"Mahenge Scarp","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13494,350012,"TZA","METT",2005,"Not Reported",28,"Mahezangulu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13495,303583,"TZA","METT",2012,"Not Reported",28,"Makonde Scarp I","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13496,303583,"TZA","METT",2005,"Not Reported",28,"Makonde Scarp I","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13497,303583,"TZA","METT",2006,"Not Reported",28,"Makonde Scarp I","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13498,303391,"TZA","METT",2005,"Not Reported",28,"Makonde Scarp II","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13499,303391,"TZA","METT",2006,"Not Reported",28,"Makonde Scarp II","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13500,555556080,"TZA","METT",2005,"Not Reported",28,"Makonde Scarp III","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13501,555556080,"TZA","METT",2006,"Not Reported",28,"Makonde Scarp III","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13502,301685,"TZA","METT",2014,"Not Reported",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13503,301685,"TZA","METT",2009,"Not Reported",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13504,301685,"TZA","METT",2011,"Not Reported",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13505,301685,"TZA","METT",2013,"Not Reported",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13506,478262,"TZA","METT",2005,"Not Reported",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13507,478262,"TZA","METT",2013,"Not Reported",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13508,303502,"TZA","METT",2005,"Not Reported",28,"Mamboya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13509,303502,"TZA","METT",2013,"Not Reported",28,"Mamboya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13510,301553,"TZA","METT",0,"Not Reported",28,"Mamiwa Kisara South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13511,301553,"TZA","METT",2005,"Not Reported",28,"Mamiwa Kisara South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13512,301553,"TZA","METT",2006,"Not Reported",28,"Mamiwa Kisara South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13513,301553,"TZA","METT",2007,"Not Reported",28,"Mamiwa Kisara South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13515,303526,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13516,301585,"TZA","METT",2005,"Not Reported",28,"Mangalisa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13517,303519,"TZA","METT",2011,"Not Reported",28,"Marenda","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13518,301656,"TZA","METT",2013,"Not Reported",28,"Masagati","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13519,350026,"TZA","METT",2011,"Not Reported",28,"Masanganya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13520,31757,"TZA","METT",2011,"Not Reported",28,"Masingini Catchment Forest","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13521,7437,"TZA","Birdlife IBA",2001,"Not Reported",28,"Maswa G.R. (N)","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13522,301693,"TZA","METT",2011,"Not Reported",28,"Matapwa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13523,301719,"TZA","METT",2012,"Not Reported",28,"Mbagala","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13525,555549305,"TZA","METT",2013,"Not Reported",28,"Mbarang'andu WMA","Wildlife management area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13526,301634,"TZA","METT",2014,"Not Reported",28,"Mbinga Kimaji / Kimate","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13527,301634,"TZA","METT",2009,"Not Reported",28,"Mbinga Kimaji / Kimate","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13528,301634,"TZA","METT",2013,"Not Reported",28,"Mbinga Kimaji / Kimate","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13529,301634,"TZA","METT",2011,"Not Reported",28,"Mbinga Kimaji / Kimate","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13530,19495,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13531,350017,"TZA","METT",2005,"Not Reported",28,"Mbwegere","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13532,19478,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13533,303523,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13535,351701,"TZA","METT",2005,"Not Reported",28,"Mfumbia","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13536,19470,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13537,919,"TZA","Birdlife IBA",2002,"Not Reported",28,"Mikumi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13538,919,"TZA","METT",2007,"Not Reported",28,"Mikumi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13539,919,"TZA","METT",2006,"Not Reported",28,"Mikumi National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13540,301432,"TZA","METT",2005,"Not Reported",28,"Minja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13541,301647,"TZA","METT",2008,"Not Reported",28,"Mtarure","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13542,301647,"TZA","METT",2013,"Not Reported",28,"Mtarure","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13543,303387,"TZA","METT",2014,"Not Reported",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13544,303387,"TZA","METT",2008,"Not Reported",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13545,303387,"TZA","METT",2013,"Not Reported",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13546,303387,"TZA","METT",2011,"Not Reported",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13547,350021,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13548,301503,"TZA","METT",2005,"Not Reported",28,"Mkongo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13549,301522,"TZA","METT",2005,"Not Reported",28,"Mkuli Exten.","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13550,301565,"TZA","METT",2005,"Not Reported",28,"Mkungwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13551,350008,"TZA","METT",2005,"Not Reported",28,"Mkusu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13552,350008,"TZA","METT",2009,"Not Reported",28,"Mkusu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13553,350008,"TZA","METT",2006,"Not Reported",28,"Mkusu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13554,301549,"TZA","METT",2005,"Not Reported",28,"Mlali","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13555,351710,"TZA","METT",2011,"Not Reported",28,"Mlola","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13557,351702,"TZA","METT",2011,"Not Reported",28,"Mlungui","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13558,220235,"TZA","METT",2009,"Not Reported",28,"Mnazi Bay-Ruvuma Estuary","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13559,303526,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13561,352703,"TZA","METT",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13562,301415,"TZA","METT",2005,"Not Reported",28,"Mramba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13563,301415,"TZA","METT",2009,"Not Reported",28,"Mramba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13564,301415,"TZA","METT",2006,"Not Reported",28,"Mramba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13565,352701,"TZA","METT",2012,"Not Reported",28,"Msanjesi GR/Kipitimbi/Lionja FR","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13566,301646,"TZA","METT",2005,"Not Reported",28,"Mselezi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13567,301646,"TZA","METT",2009,"Not Reported",28,"Mselezi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13568,31762,"TZA","METT",2007,"Not Reported",28,"Msitu Mkuu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13569,31762,"TZA","METT",2011,"Not Reported",28,"Msitu Mkuu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13570,301505,"TZA","METT",2011,"Not Reported",28,"Msumbugwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13571,301662,"TZA","METT",2010,"Not Reported",28,"Rungwe","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13572,301469,"TZA","METT",2005,"Not Reported",28,"Mtai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13573,301469,"TZA","METT",2006,"Not Reported",28,"Mtai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13574,301602,"TZA","METT",2011,"Not Reported",28,"Mtanza","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13575,301592,"TZA","METT",2011,"Not Reported",28,"Mtita","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13576,301453,"TZA","METT",2005,"Not Reported",28,"Mtumbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13577,301638,"TZA","METT",2005,"Not Reported",28,"Mufindi Scarp","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13579,350029,"TZA","METT",2011,"Not Reported",28,"Mohoro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13580,31766,"TZA","METT",2011,"Not Reported",28,"Mohoro River","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13581,301654,"TZA","METT",2005,"Not Reported",28,"Mhulu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13582,303517,"TZA","METT",2005,"Not Reported",28,"Mvuha","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13583,301722,"TZA","METT",2013,"Not Reported",28,"Mwambesi","Forest Reserve and Game Controlled Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13584,303585,"TZA","METT",2012,"Not Reported",28,"Nagaga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13585,301639,"TZA","METT",2006,"Not Reported",28,"Nambinga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13586,301639,"TZA","METT",2005,"Not Reported",28,"Nambinga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13587,301639,"TZA","METT",2009,"Not Reported",28,"Nambinga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13588,41079,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13589,303392,"TZA","METT",2013,"Not Reported",28,"Nandembo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13590,301720,"TZA","METT",2005,"Not Reported",28,"Ndechela","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13591,301475,"TZA","METT",2005,"Not Reported",28,"Ndekemai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13592,301488,"TZA","METT",2005,"Not Reported",28,"Ndolwa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13593,303531,"TZA","METT",2005,"Not Reported",28,"Dabaga New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13594,303531,"TZA","METT",2013,"Not Reported",28,"Dabaga New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13595,301663,"TZA","METT",2014,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13596,301663,"TZA","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13597,301663,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13598,301663,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13599,301663,"TZA","METT",2008,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13604,555556107,"TZA","METT",2014,"Not Reported",28,"Ngezi-Vumawimbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13605,555556107,"TZA","METT",2012,"Not Reported",28,"Ngezi-Vumawimbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13606,555556107,"TZA","METT",2007,"Not Reported",28,"Ngezi-Vumawimbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13607,555556107,"TZA","METT",2011,"Not Reported",28,"Ngezi-Vumawimbi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13608,918,"TZA","Birdlife IBA",2001,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13609,2010,"TZA","Birdlife IBA",2001,"Not Reported",28,"Ngorongoro Conservation Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13610,2010,"TZA","WH Outlook Report",2014,"Not Reported",28,"Ngorongoro Conservation Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13611,303525,"TZA","METT",2011,"Not Reported",28,"Ngulakula","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13612,303380,"TZA","METT",2011,"Not Reported",28,"Nyumburuni","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13613,350015,"TZA","METT",2005,"Not Reported",28,"Nguru North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13614,350015,"TZA","METT",2006,"Not Reported",28,"Nguru North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13615,301532,"TZA","METT",2005,"Not Reported",28,"Talagwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13617,303367,"TZA","METT",2009,"Not Reported",28,"Kilanga (Nilo)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13618,303367,"TZA","METT",2006,"Not Reported",28,"Kilanga (Nilo)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13619,41069,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13620,303389,"TZA","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13621,19477,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13622,301613,"TZA","METT",2005,"Not Reported",28,"Nyaganje","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13624,301588,"TZA","METT",2005,"Not Reported",28,"Pala Mountains","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13625,303333,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13626,303333,"TZA","Birdlife IBA",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13627,301588,"TZA","METT",2013,"Not Reported",28,"Pala Mountains","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13628,301676,"TZA","METT",2005,"Not Reported",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13629,301676,"TZA","METT",2008,"Not Reported",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13630,301676,"TZA","METT",2014,"Not Reported",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13631,301676,"TZA","METT",2013,"Not Reported",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13632,301676,"TZA","METT",2011,"Not Reported",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13633,301570,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13634,301517,"TZA","METT",2005,"Not Reported",28,"Pumula","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13635,31764,"TZA","METT",2011,"Not Reported",28,"Ras Kiuyu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13636,301702,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13637,301702,"TZA","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13638,301702,"TZA","METT",2014,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13640,301702,"TZA","METT",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13642,301702,"TZA","METT",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13643,301702,"TZA","METT",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13644,301702,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13645,917,"TZA","METT",2010,"Not Reported",28,"Ruaha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13646,917,"TZA","METT",2013,"Not Reported",28,"Ruaha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13647,917,"TZA","Birdlife IBA",2002,"Not Reported",28,"Ruaha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13648,917,"TZA","METT",2011,"Not Reported",28,"Ruaha National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13649,301692,"TZA","METT",2006,"Not Reported",28,"Ruawa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13651,301692,"TZA","METT",2007,"Not Reported",28,"Ruawa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13652,301692,"TZA","METT",2011,"Not Reported",28,"Ruawa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13653,301521,"TZA","METT",2005,"Not Reported",28,"Rudewa South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13654,902412,"TZA","METT",2007,"Not Reported",28,"Rufiji-Mafia-Kilwa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13656,902412,"TZA","METT",2011,"Not Reported",28,"Rufiji-Mafia-Kilwa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13657,301595,"TZA","METT",2011,"Not Reported",28,"Ruhoi River","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13659,301673,"TZA","METT",2014,"Not Reported",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13660,301673,"TZA","METT",2013,"Not Reported",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13661,301673,"TZA","METT",2008,"Not Reported",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13662,301673,"TZA","METT",2011,"Not Reported",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13663,303529,"TZA","METT",2014,"Not Reported",28,"Rupiage","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13664,303529,"TZA","METT",2011,"Not Reported",28,"Rupiage","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13665,303529,"TZA","METT",2013,"Not Reported",28,"Rupiage","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13666,303377,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13667,301568,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13668,7434,"TZA","METT",2011,"Not Reported",28,"Saadani National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13669,303354,"TZA","METT",2013,"Not Reported",28,"Salanga/Bereku","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13670,378253,"TZA","METT",2005,"Not Reported",28,"NSG Oestlicher Teutoburger Wald (LP BI-West)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13671,301717,"TZA","METT",2013,"Not Reported",28,"Sasawara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13672,301480,"TZA","METT",2011,"Not Reported",28,"Sengoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13673,1399,"TZA","METT",2003,"Not Reported",28,"Selous G.R","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13674,5005,"TZA","METT",2009,"Not Reported",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13675,1399,"TZA","Birdlife IBA",2001,"Not Reported",28,"Selous G.R","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13676,5005,"TZA","Birdlife IBA",2001,"Not Reported",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13677,5005,"TZA","METT",2007,"Not Reported",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13679,5005,"TZA","WH Outlook Report",2014,"Not Reported",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13680,5005,"TZA","METT",2012,"Not Reported",28,"Selous Game Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13681,1399,"TZA","METT",2004,"Not Reported",28,"Selous G.R","Game reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13682,351704,"TZA","METT",2011,"Not Reported",28,"Semdoe/Msige","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13683,916,"TZA","Birdlife IBA",2001,"Not Reported",28,"Serengeti National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13684,2575,"TZA","Birdlife IBA",2001,"Not Reported",28,"Serengeti National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13685,2575,"TZA","WH Outlook Report",2014,"Not Reported",28,"Serengeti National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13686,301442,"TZA","METT",2005,"Not Reported",28,"Shagayu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13687,303467,"TZA","METT",2005,"Not Reported",28,"Shambalai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13688,301450,"TZA","METT",2005,"Not Reported",28,"Shume Magamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13689,303512,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13690,301532,"TZA","METT",2007,"Not Reported",28,"Talagwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13691,301624,"TZA","METT",2014,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13692,301624,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13693,301624,"TZA","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13694,920,"TZA","Birdlife IBA",2011,"Not Reported",28,"Tarangire National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13695,61723,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13696,350030,"TZA","METT",2008,"Not Reported",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13698,350030,"TZA","METT",2005,"Not Reported",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13699,350030,"TZA","METT",2014,"Not Reported",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13700,350030,"TZA","METT",2013,"Not Reported",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13701,350030,"TZA","METT",2011,"Not Reported",28,"Tongomba New","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13702,350014,"TZA","METT",2005,"Not Reported",28,"Tongwe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13703,19297,"TZA","METT",2003,"Not Reported",28,"Udzungwa Mountains National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13704,19297,"TZA","METT",2007,"Not Reported",28,"Udzungwa Mountains National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13706,9043,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13707,301577,"TZA","METT",2005,"Not Reported",28,"Ukwiva","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13708,301577,"TZA","METT",2009,"Not Reported",28,"Ukwiva","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13709,301577,"TZA","METT",2006,"Not Reported",28,"Ukwiva","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13710,301577,"TZA","METT",2013,"Not Reported",28,"Ukwiva","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13711,19476,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13712,301564,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13713,301564,"TZA","METT",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13714,301578,"TZA","METT",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13715,301578,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13716,301578,"TZA","METT",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13717,303506,"TZA","METT",2005,"Not Reported",28,"Uponera","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13718,301527,"TZA","METT",2011,"Not Reported",28,"Uzigua","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13719,303559,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13720,303476,"TZA","METT",2005,"Not Reported",28,"Vugiri","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13721,301428,"TZA","METT",2005,"Not Reported",28,"Vumari","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13722,301428,"TZA","METT",2009,"Not Reported",28,"Vumari","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13723,301596,"TZA","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13724,301556,"TZA","METT",2005,"Not Reported",28,"Wotta","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13725,40923,"TZA","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13726,303358,"TZA","METT",2003,"Not Reported",28,"Zaraninge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13727,1445,"UGA","Birdlife IBA",2001,"Not Reported",28,"Ajai","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13728,34804,"UGA","METT",2012,"Not Reported",28,"Budongo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13729,34804,"UGA","Birdlife IBA",2001,"Not Reported",28,"Budongo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13730,34805,"UGA","METT",2003,"Not Reported",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13731,34805,"UGA","METT",2011,"Not Reported",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13732,34805,"UGA","METT",2012,"Not Reported",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13733,34805,"UGA","METT",2006,"Not Reported",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13734,34805,"UGA","Birdlife IBA",2008,"Not Reported",28,"Bugoma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13735,18437,"UGA","Enhancing Our Heritage",2002,"Not Reported",28,"Bwindi Impenetrable","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13736,18437,"UGA","Enhancing Our Heritage",2003,"Not Reported",28,"Bwindi Impenetrable","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13737,18437,"UGA","Enhancing Our Heritage",2007,"Not Reported",28,"Bwindi Impenetrable","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13738,18437,"UGA","Birdlife IBA",2001,"Not Reported",28,"Bwindi Impenetrable","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13739,61609,"UGA","Birdlife IBA",2001,"Not Reported",28,"Bwindi Impenetrable National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13740,61609,"UGA","WH Outlook Report",2014,"Not Reported",28,"Bwindi Impenetrable National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13741,40371,"UGA","Birdlife IBA",2001,"Not Reported",28,"Echuya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13742,33147,"UGA","METT",2003,"Not Reported",28,"Itwara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13743,33147,"UGA","METT",2011,"Not Reported",28,"Itwara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13744,33147,"UGA","METT",2012,"Not Reported",28,"Itwara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13745,33147,"UGA","METT",2006,"Not Reported",28,"Itwara","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13746,39985,"UGA","METT",2003,"Not Reported",28,"Kagombe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13747,315143,"UGA","Birdlife IBA",2008,"Not Reported",28,"Kasyoha - Kitomi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13748,315238,"UGA","METT",2003,"Not Reported",28,"Kibale","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13749,315238,"UGA","Africa Rainforest Study",2001,"Not Reported",28,"Kibale","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13750,40002,"UGA","Birdlife IBA",2001,"Not Reported",28,"Kibale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13751,958,"UGA","METT",2012,"Not Reported",28,"Kidepo Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13752,958,"UGA","Birdlife IBA",2001,"Not Reported",28,"Kidepo Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13753,1446,"UGA","Birdlife IBA",2001,"Not Reported",28,"Kyambura","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13754,1441,"UGA","Birdlife IBA",2001,"Not Reported",28,"Lake Mburo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13755,902978,"UGA","Birdlife IBA",2001,"Not Reported",28,"Lake Mburo-Nakivali Wetland System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13756,902980,"UGA","Birdlife IBA",2001,"Not Reported",28,"Lake Opeta Wetland System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13757,34808,"UGA","Birdlife IBA",2001,"Not Reported",28,"Mabira","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13758,313109,"UGA","Birdlife IBA",2001,"Not Reported",28,"Mgahinga Gorilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13759,28175,"UGA","Birdlife IBA",2001,"Not Reported",28,"Mount Elgon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13760,40630,"UGA","Birdlife IBA",2001,"Not Reported",28,"Mount Kei","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13761,40588,"UGA","Birdlife IBA",2001,"Not Reported",28,"Moroto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13762,31275,"UGA","Birdlife IBA",2001,"Not Reported",28,"Otze Forest White Rhino","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13763,315109,"UGA","Birdlife IBA",2001,"Not Reported",28,"Atiya","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13764,956,"UGA","Birdlife IBA",2001,"Not Reported",28,"Murchison Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13765,902984,"UGA","Birdlife IBA",2008,"Not Reported",28,"Nabajjuzi Wetland System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13766,902322,"UGA","Birdlife IBA",2001,"Not Reported",28,"Lake Nabugabo wetland system","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13767,40602,"UGA","METT",2012,"Not Reported",28,"Nyangea - Napore","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13768,3051,"UGA","GOBI Survey",2006,"Not Reported",28,"Queen Elizabeth National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13769,40476,"UGA","METT",2012,"Not Reported",28,"Rom","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13770,18438,"UGA","METT",2003,"Not Reported",28,"Rwenzori Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13771,18438,"UGA","Birdlife IBA",2001,"Not Reported",28,"Rwenzori Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13772,61608,"UGA","Birdlife IBA",2001,"Not Reported",28,"Rwenzori Mountains National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13773,478026,"UGA","Birdlife IBA",2001,"Not Reported",28,"Rwenzori Mountains Ramsar Site","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13774,61608,"UGA","WH Outlook Report",2014,"Not Reported",28,"Rwenzori Mountains National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13775,40042,"UGA","Birdlife IBA",2001,"Not Reported",28,"Semuliki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13776,1440,"UGA","Birdlife IBA",2001,"Not Reported",28,"Toro-Semuliki or Toro-Semliki","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13777,40603,"UGA","METT",2012,"Not Reported",28,"Timu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13778,40604,"UGA","METT",2012,"Not Reported",28,"Zulia","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13779,1751,"UKR","RAPPAM",2008,"Not Reported",28,"Askaniya Nova","National Biosphere Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13780,220033,"UKR","European Diploma",1997,"Not Reported",28,"Carpathian","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13781,220033,"UKR","Stockholm BR Survey",2008,"Not Reported",28,"Carpathian","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13782,160790,"UKR","RAPPAM",2008,"Not Reported",28,"Cherems'kiy","State Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13783,161597,"UKR","RAPPAM",2008,"Not Reported",28,"Staroguts'kiy","State Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13784,166901,"UKR","Birdlife IBA",2013,"Not Reported",28,"Northern Part of the Dniester Liman","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13785,160920,"UKR","RAPPAM",2008,"Not Reported",28,"Golosiivskyi Lis (Forest)","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13787,166779,"UKR","RAPPAM",2008,"Not Reported",28,"Gorgany Range","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13788,160966,"UKR","RAPPAM",2008,"Not Reported",28,"Ichnyans'kiy","Regional Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13789,1756,"UKR","RAPPAM",2008,"Not Reported",28,"Kanevskiy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13790,1754,"UKR","RAPPAM",2008,"Not Reported",28,"Karadagskiy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13791,1745,"UKR","RAPPAM",2008,"Not Reported",28,"Karpatskiy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13792,1990,"UKR","RAPPAM",2008,"Not Reported",28,"Karpatskiy","National Biosphere Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13793,160999,"UKR","RAPPAM",2008,"Not Reported",28,"Kazantypskyi","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13794,99722,"UKR","RAPPAM",2008,"Not Reported",28,"Luganskiy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13795,62696,"UKR","RAPPAM",2008,"Not Reported",28,"Medobory","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13796,161214,"UKR","RAPPAM",2008,"Not Reported",28,"Mezins'ka Shveytsariya","Regional Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13797,161304,"UKR","RAPPAM",2008,"Not Reported",28,"Opukskyi","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13798,102251,"UKR","RAPPAM",2008,"Not Reported",28,"Podolskie Tovtry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13799,903141,"UKR","WH Outlook Report",2014,"Not Reported",28,"Primeval Beech Forests of the Carpathians and Other Regions of Europe","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13800,161439,"UKR","METT",2007,"Not Reported",28,"Prypiat-Stokhid","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13802,161439,"UKR","METT",2012,"Not Reported",28,"Prypiat-Stokhid","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13803,161439,"UKR","METT",2009,"Not Reported",28,"Prypiat-Stokhid","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13805,161439,"UKR","RAPPAM",2008,"Not Reported",28,"Prypiat-Stokhid","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13806,161467,"UKR","RAPPAM",2008,"Not Reported",28,"Rivnens'kiy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13807,161481,"UKR","RAPPAM",2008,"Not Reported",28,"Roztochchia","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13808,11580,"UKR","METT",2012,"Not Reported",28,"Shatskiy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13809,166906,"UKR","METT",2009,"Not Reported",28,"Shatsk Lakes","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13810,11580,"UKR","RAPPAM",2008,"Not Reported",28,"Shatskiy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13811,161555,"UKR","RAPPAM",2008,"Not Reported",28,"Skolivs'kiy","State Zakaznik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13812,166780,"UKR","RAPPAM",2008,"Not Reported",28,"Svyaty Gory","National Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13813,161634,"UKR","RAPPAM",2008,"Not Reported",28,"Synevyr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13814,94043,"UKR","RAPPAM",2008,"Not Reported",28,"Ukrainskiy Stepnoy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13815,67754,"UKR","Stockholm BR Survey",2008,"Not Reported",28,"East Carpathians (UKR)","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13816,102250,"UKR","RAPPAM",2008,"Not Reported",28,"Vyzhnetskiy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13817,1750,"UKR","RAPPAM",2008,"Not Reported",28,"Yaltinskiy Gorno-Lesnoy","Nature Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13818,161828,"UKR","RAPPAM",2008,"Not Reported",28,"Yavorivskyi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13819,161903,"UKR","RAPPAM",2008,"Not Reported",28,"Znesennia","Regional Landscape Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13820,478062,"URY","METT",2005,"Not Reported",28,"Cabo Polonio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13821,478064,"URY","METT",2005,"Not Reported",28,"Laguna de Rocha","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13822,306,"URY","METT",2005,"Not Reported",28,"Arequita","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13823,2223,"URY","GOBI Survey",2006,"Not Reported",28,"Bañados del Este","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13824,95268,"URY","METT",2005,"Not Reported",28,"Bosques del Río Negro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13825,95268,"URY","METT",2009,"Not Reported",28,"Bosques del Río Negro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13829,478063,"URY","METT",2005,"Not Reported",28,"Cerro Verde","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13830,478063,"URY","METT",2006,"Not Reported",28,"Cerro Verde","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13831,478063,"URY","METT",2009,"Not Reported",28,"Cerro Verde","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13832,478060,"URY","METT",2005,"Not Reported",28,"Esteros de Farrapos e Islas del Rio Uruguay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13835,478060,"URY","METT",2010,"Not Reported",28,"Esteros de Farrapos e Islas del Rio Uruguay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13836,555542447,"URY","METT",2005,"Not Reported",28,"Humedales del Santa Lucia","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13837,555542447,"URY","METT",2009,"Not Reported",28,"Humedales del Santa Lucia","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13841,4729,"URY","METT",2005,"Not Reported",28,"Laguna de Castillos","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13843,555542452,"URY","METT",2005,"Not Reported",28,"Laguna Garzón","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13847,478064,"URY","METT",2009,"Not Reported",28,"Laguna de Rocha","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13848,555542452,"URY","METT",2006,"Not Reported",28,"Laguna Garzón","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13849,478061,"URY","METT",2009,"Not Reported",28,"Localidad Rupestre Chamanga","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13850,555542449,"URY","METT",2009,"Not Reported",28,"Montes del Queguay","Managed Protected Area Resource","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13851,478065,"URY","METT",2005,"Not Reported",28,"Quebrada de los Cuervos","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13853,478062,"URY","METT",2009,"Not Reported",28,"Cabo Polonio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13854,305,"URY","METT",2005,"Not Reported",28,"San Miguel","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13855,305,"URY","METT",2009,"Not Reported",28,"San Miguel","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13856,555542450,"URY","METT",2009,"Not Reported",28,"Potrerillo de Santa Teresa","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13859,478065,"URY","METT",2010,"Not Reported",28,"Quebrada de los Cuervos","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13861,555542450,"URY","METT",2005,"Not Reported",28,"Potrerillo de Santa Teresa","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13863,478059,"URY","METT",2005,"Not Reported",28,"Valle del Lunarejo","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13866,478059,"URY","METT",2010,"Not Reported",28,"Valle del Lunarejo","Protected Landscape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13867,55552961,"USA","USA SOP",2001,"Not Reported",28,"Adams","Local Land Trust Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13868,555586829,"USA","USA SOP",2007,"Not Reported",28,"Apostle Islands","National Lakeshore","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13869,1072,"USA","USA SOP",2007,"Not Reported",28,"Assateague Island","National Seashore","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13870,976,"USA","USA SOP",2003,"Not Reported",28,"Big Bend","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13871,2137,"USA","GOBI Survey",2006,"Not Reported",28,"Big Bend National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13872,3056,"USA","GOBI Survey",2006,"Not Reported",28,"Big Thicket National Preserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13873,365963,"USA","USA SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13874,1024,"USA","USA SOP",2006,"Not Reported",28,"Biscayne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13875,1000,"USA","USA SOP",2005,"Not Reported",28,"Bryce Canyon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13876,13013,"USA","USA SOP",2008,"Not Reported",28,"Cabrillo","National Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13877,982,"USA","USA SOP",2004,"Not Reported",28,"Canyonlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13878,93291,"USA","WH Outlook Report",2014,"Not Reported",28,"Carlsbad Caverns National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13879,2150,"USA","GOBI Survey",2006,"Not Reported",28,"Cascade Head Expt. Forest & Scenic Research Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13880,366856,"USA","USA SOP",2006,"Not Reported",28,"Catoctin Mountain","Recreation Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13881,5194,"USA","GOBI Survey",2006,"Not Reported",28,"Central Gulf Coastal Plain Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13882,2152,"USA","GOBI Survey",2006,"Not Reported",28,"Central Plains Experimental Range","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13883,2149,"USA","GOBI Survey",2006,"Not Reported",28,"Channel Islands","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13885,555586740,"USA","MPA MEE",2003,"Not Reported",28,"Channel Islands","National Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13886,1033,"USA","USA SOP",2008,"Not Reported",28,"Channel Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13887,55551176,"USA","USA SOP",2004,"Not Reported",28,"Chesapeake and Ohio Canal","National Historical Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13888,2158,"USA","GOBI Survey",2006,"Not Reported",28,"Coram Experimental Forest","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13889,367731,"USA","USA SOP",2005,"Not Reported",28,"Death Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13890,969,"USA","USA SOP",2003,"Not Reported",28,"Denali","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13891,971,"USA","USA SOP",2006,"Not Reported",28,"Everglades","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13892,2012,"USA","WH Outlook Report",2014,"Not Reported",28,"Everglades National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13893,22622,"USA","USA SOP",2004,"Not Reported",28,"Fort Necessity","National Battlefield","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13894,555585118,"USA","USA SOP",2003,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13895,3005,"USA","USA SOP",2007,"Not Reported",28,"Gateway","National Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13896,1010,"USA","USA SOP",2008,"Not Reported",28,"Glacier Bay","National Park & Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13897,11591,"USA","GOBI Survey",2006,"Not Reported",28,"Glacier Bay-Admiralty Island Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13898,2011,"USA","WH Outlook Report",2014,"Not Reported",28,"Grand Canyon National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13899,12165,"USA","USA SOP",2009,"Not Reported",28,"Great Basin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13900,9632,"USA","USA SOP",2004,"Not Reported",28,"Great Smoky Mountains National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13901,9632,"USA","WH Outlook Report",2014,"Not Reported",28,"Great Smoky Mountains National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13902,18337,"USA","USA SOP",2008,"Not Reported",28,"Hawaii Volcanoes National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13903,18337,"USA","WH Outlook Report",2014,"Not Reported",28,"Hawaii Volcanoes National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13904,1077,"USA","USA SOP",2007,"Not Reported",28,"Indiana Dunes","National Lakeshore","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13905,3052,"USA","GOBI Survey",2006,"Not Reported",28,"Isle Royale National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13906,977,"USA","USA SOP",2007,"Not Reported",28,"Isle Royale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13907,555556142,"USA","Birdlife IBA",2012,"Not Reported",28,"Johnston Atoll","National Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13908,370321,"USA","USA SOP",2005,"Not Reported",28,"Joshua Tree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13909,44446200,"USA","USA SOP",2007,"Not Reported",28,"Keweenaw Peninsula Fee","Private Conservation Land","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13910,99998,"USA","Birdlife IBA",2009,"Not Reported",28,"Kilauea Point","National Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13911,2018,"CAN","USA","WH Outlook Report",2014,"Not Reported",28,"Kluane / Wrangell-St Elias / Glacier Bay / Tatshenshini-Alsek","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE", +13912,2156,"USA","GOBI Survey",2006,"Not Reported",28,"Konza Prairie Research Natural Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13913,555585135,"USA","USA SOP",2005,"Not Reported",28,"Haycock-longf","Local Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13914,2577,"USA","WH Outlook Report",2014,"Not Reported",28,"Mammoth Cave National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13915,371941,"USA","USA SOP",2005,"Not Reported",28,"Mojave","National Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13916,10723,"USA","GOBI Survey",2006,"Not Reported",28,"Mojave and Colorado Deserts Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13917,18923,"USA","GOBI Survey",2006,"Not Reported",28,"New Jersey Pinelands Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13918,2162,"USA","GOBI Survey",2006,"Not Reported",28,"Niwot Ridge Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13919,368362,"USA","Birdlife IBA",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13920,220201,"USA","Birdlife IBA",2009,"Not Reported",28,"Papah─ünaumoku─ükea Marine National Monument","Marine National Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13921,312243,"USA","Birdlife IBA",2009,"Not Reported",28,"Longline","Protected Species Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13922,555512001,"USA","Birdlife IBA",2009,"Not Reported",28,"Papah─ünaumoku─ükea","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13923,2135,"USA","GOBI Survey",2006,"Not Reported",28,"Olympic","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13924,974,"USA","USA SOP",2004,"Not Reported",28,"Olympic","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13925,2579,"USA","WH Outlook Report",2014,"Not Reported",28,"Olympic National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13926,2139,"USA","GOBI Survey",2006,"Not Reported",28,"Organ Pipe Cactus","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13927,555512001,"USA","WH Outlook Report",2014,"Not Reported",28,"Papah─ünaumoku─ükea","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13928,999910,"USA","Birdlife IBA",2012,"Not Reported",28,"Pearl Harbor","National Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13929,1067,"USA","USA SOP",2007,"Not Reported",28,"Pictured Rocks","National Lakeshore","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13930,1068,"USA","USA SOP",2002,"Not Reported",28,"Point Reyes","National Seashore","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13931,994,"USA","USA SOP",2008,"Not Reported",28,"Redwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13933,4325,"USA","WH Outlook Report",2014,"Not Reported",28,"Redwood National and State Parks","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13934,2141,"USA","GOBI Survey",2006,"Not Reported",28,"Rocky Mountain National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13935,984,"USA","USA SOP",2002,"Not Reported",28,"Rocky Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13936,55551184,"USA","USA SOP",2004,"Not Reported",28,"Saint-Gaudens","National Historic Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13937,2161,"USA","GOBI Survey",2006,"Not Reported",28,"San Joaquin Experimental Range","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13938,13014,"USA","USA SOP",2008,"Not Reported",28,"Santa Monica Mountains","National Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13939,2136,"USA","GOBI Survey",2006,"Not Reported",28,"Sequoia-Kings Canyon National Parks","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13940,989,"USA","USA SOP",2003,"Not Reported",28,"Shenandoah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13941,1066,"USA","USA SOP",2007,"Not Reported",28,"Sleeping Bear Dunes","National Lakeshore","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13942,2142,"USA","GOBI Survey",2006,"Not Reported",28,"Three Sisters","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13943,2155,"USA","GOBI Survey",2006,"Not Reported",28,"The University of Michigan Biological Station","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13944,342,"USA","USA SOP",2008,"Not Reported",28,"Virgin Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13945,93295,"CAN","USA","WH Outlook Report",2014,"Not Reported",28,"Waterton Glacier International Peace Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE", +13946,2134,"USA","USA SOP",2002,"Not Reported",28,"Waterton Glacier International Peace","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13947,2013,"USA","WH Outlook Report",2014,"Not Reported",28,"Yellowstone National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13948,10908,"USA","WH Outlook Report",2014,"Not Reported",28,"Yosemite National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13949,991,"USA","USA SOP",2005,"Not Reported",28,"Zion","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13950,1767,"UZB","METT",2004,"Not Reported",28,"Baday-Tugay","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13951,1767,"UZB","METT",2008,"Not Reported",28,"Baday-Tugay","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13952,1767,"UZB","METT",2006,"Not Reported",28,"Baday-Tugay","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13953,1767,"UZB","METT",2009,"Not Reported",28,"Baday-Tugay","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13954,1761,"UZB","METT",2006,"Not Reported",28,"Chatkalskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13955,1761,"UZB","METT",2008,"Not Reported",28,"Chatkalskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13956,11829,"UZB","METT",2006,"Not Reported",28,"Gissarskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13957,11829,"UZB","METT",2008,"Not Reported",28,"Gissarskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13958,167102,"UZB","METT",2006,"Not Reported",28,"Kitab Geological NR","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13959,167102,"UZB","METT",2008,"Not Reported",28,"Kitab Geological NR","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13960,1768,"UZB","METT",2006,"Not Reported",28,"Kyzylkumskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13961,1768,"UZB","METT",2008,"Not Reported",28,"Kyzylkumskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13962,1764,"UZB","METT",2007,"Not Reported",28,"Nuratinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13963,1764,"UZB","METT",2006,"Not Reported",28,"Nuratinskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13964,20683,"UZB","METT",2006,"Not Reported",28,"Surkhanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13965,20683,"UZB","METT",2007,"Not Reported",28,"Surkhanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13966,1766,"UZB","METT",2006,"Not Reported",28,"Zaaminskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13967,1766,"UZB","METT",2007,"Not Reported",28,"Zaaminskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13968,1770,"UZB","METT",2006,"Not Reported",28,"Zeravshanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13969,1770,"UZB","METT",2003,"Not Reported",28,"Zeravshanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13970,1770,"UZB","METT",2005,"Not Reported",28,"Zeravshanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13971,1770,"UZB","METT",2008,"Not Reported",28,"Zeravshanskiy","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13972,26472,"VCT","RAPPAM",2006,"Not Reported",28,"Chateaubelair Islet","Wildlife Reserve / Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13973,61700,"VCT","RAPPAM",2006,"Not Reported",28,"Cumberland","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13974,555576494,"VCT","RAPPAM",2006,"Not Reported",28,"Dalaway","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13975,31477,"VCT","RAPPAM",2006,"Not Reported",28,"Kingshill","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13976,555576495,"VCT","RAPPAM",2006,"Not Reported",28,"Kingstown","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13977,555576503,"VCT","RAPPAM",2006,"Not Reported",28,"Richmond","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13978,555576504,"VCT","RAPPAM",2006,"Not Reported",28,"Soufriere","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13979,26479,"VCT","RAPPAM",2006,"Not Reported",28,"Petit St. Vincent","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13980,31478,"VCT","RAPPAM",2006,"Not Reported",28,"Tobago Cays-Mayreau","Marine Park / Marine Reserve / Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13981,315,"VEN","Venezuela Vision",1991,"Not Reported",28,"Aguaro-Guariquito","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13982,315,"VEN","Venezuela Vision",2001,"Not Reported",28,"Aguaro-Guariquito","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13983,61416,"VEN","GOBI Survey",2006,"Not Reported",28,"Alto Orinoco - Casiquiare","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13984,2245,"VEN","Venezuela Vision",1991,"Not Reported",28,"National Park Archipielago de Los Roques","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13985,2245,"VEN","Venezuela Vision",2001,"Not Reported",28,"National Park Archipielago de Los Roques","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13986,4372,"VEN","Venezuela Vision",2001,"Not Reported",28,"Cerro Autana","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13987,313,"VEN","Enhancing Our Heritage",2002,"Not Reported",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13988,313,"VEN","Enhancing Our Heritage",2007,"Not Reported",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13989,313,"VEN","Parks profiles",2004,"Not Reported",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13990,313,"VEN","Venezuela Vision",1991,"Not Reported",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13991,313,"VEN","Venezuela Vision",2001,"Not Reported",28,"Canaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13992,61612,"VEN","WH Outlook Report",2014,"Not Reported",28,"Canaima National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13993,309,"VEN","METT",0,"Not Reported",28,"Cerro Santa Ana","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13994,338,"VEN","Parks profiles",2002,"Not Reported",28,"Cerro El Copey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13995,338,"VEN","Venezuela Vision",1991,"Not Reported",28,"Cerro El Copey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13996,338,"VEN","Venezuela Vision",2001,"Not Reported",28,"Cerro El Copey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13997,19287,"VEN","Venezuela Vision",2001,"Not Reported",28,"Cerro Platillón","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13998,309,"VEN","Venezuela Vision",2001,"Not Reported",28,"Cerro Santa Ana","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +13999,30032,"VEN","Parks profiles",2001,"Not Reported",28,"Cerro Saroche","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14000,30032,"VEN","Venezuela Vision",1991,"Not Reported",28,"Cerro Saroche","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14001,30032,"VEN","Venezuela Vision",2001,"Not Reported",28,"Cerro Saroche","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14002,310,"VEN","METT",2010,"Not Reported",28,"Cerros Matasiete y Guayamurí","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14003,310,"VEN","Venezuela Vision",2001,"Not Reported",28,"Cerros Matasiete y Guayamurí","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14004,4374,"VEN","Venezuela Vision",2001,"Not Reported",28,"Chorrera de las Gonz├ílez","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14005,30031,"VEN","Venezuela Vision",1991,"Not Reported",28,"Chorro el Indio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14006,30031,"VEN","Venezuela Vision",2001,"Not Reported",28,"Chorro el Indio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14007,20085,"VEN","METT",0,"Not Reported",28,"Ciénagas de Juan Manuel, Aguas Blancas y Negras","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14008,19286,"VEN","Venezuela Vision",1991,"Not Reported",28,"Cinaruco-Capanaparo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14009,19286,"VEN","Venezuela Vision",2001,"Not Reported",28,"Cinaruco-Capanaparo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14010,337,"VEN","Venezuela Vision",1991,"Not Reported",28,"Cueva de la Quebrada del Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14011,337,"VEN","Venezuela Vision",2001,"Not Reported",28,"Cueva de la Quebrada del Toro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14012,20054,"VEN","Parks profiles",2004,"Not Reported",28,"Dinira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14013,20054,"VEN","Venezuela Vision",1991,"Not Reported",28,"Dinira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14014,20054,"VEN","Venezuela Vision",2001,"Not Reported",28,"Dinira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14015,4366,"VEN","Venezuela Vision",1991,"Not Reported",28,"Duida-Marahuaca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14016,4366,"VEN","Venezuela Vision",2001,"Not Reported",28,"Duida-Marahuaca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14017,327,"VEN","Venezuela Vision",1991,"Not Reported",28,"El Avila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14018,327,"VEN","Venezuela Vision",2001,"Not Reported",28,"El Avila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14019,327,"VEN","Parks profiles",2002,"Not Reported",28,"El Avila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14020,333,"VEN","Venezuela Vision",1991,"Not Reported",28,"El Guácharo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14021,333,"VEN","Venezuela Vision",2001,"Not Reported",28,"El Guácharo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14022,322,"VEN","Venezuela Vision",1991,"Not Reported",28,"El Tamá","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14023,322,"VEN","Venezuela Vision",2001,"Not Reported",28,"El Tamá","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14024,15135,"VEN","Parks profiles",2001,"Not Reported",28,"Guaramacal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14025,15135,"VEN","Venezuela Vision",1991,"Not Reported",28,"Guaramacal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14026,15135,"VEN","Venezuela Vision",2001,"Not Reported",28,"Guaramacal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14027,325,"VEN","Parks profiles",2004,"Not Reported",28,"Guatopo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14028,325,"VEN","Venezuela Vision",1991,"Not Reported",28,"Guatopo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14029,325,"VEN","Venezuela Vision",2001,"Not Reported",28,"Guatopo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14030,323,"VEN","Parks profiles",2005,"Not Reported",28,"Henri Pittier","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14031,323,"VEN","Venezuela Vision",1991,"Not Reported",28,"Henri Pittier","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14032,323,"VEN","Venezuela Vision",2001,"Not Reported",28,"Henri Pittier","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14033,4368,"VEN","Venezuela Vision",1991,"Not Reported",28,"Jaua Sarisariñama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14034,4368,"VEN","Venezuela Vision",2001,"Not Reported",28,"Jaua Sarisariñama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14035,30673,"VEN","METT",0,"Not Reported",28,"Laguna de Boca de Caño","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14036,336,"VEN","Parks profiles",2002,"Not Reported",28,"Laguna de la Restinga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14037,336,"VEN","Venezuela Vision",1991,"Not Reported",28,"Laguna de la Restinga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14038,336,"VEN","Venezuela Vision",2001,"Not Reported",28,"Laguna de la Restinga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14039,336,"VEN","METT",2010,"Not Reported",28,"Laguna de la Restinga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14040,308,"VEN","METT",2010,"Not Reported",28,"Laguna de las Marites","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14041,308,"VEN","Venezuela Vision",2001,"Not Reported",28,"Laguna de las Marites","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14042,331,"VEN","METT",2010,"Not Reported",28,"Laguna de Tacarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14043,331,"VEN","Parks profiles",2002,"Not Reported",28,"Laguna de Tacarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14045,331,"VEN","Venezuela Vision",1991,"Not Reported",28,"Laguna de Tacarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14046,331,"VEN","Venezuela Vision",2001,"Not Reported",28,"Laguna de Tacarigua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14047,4363,"VEN","Venezuela Vision",2001,"Not Reported",28,"Laguna de Urao","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14048,311,"VEN","Venezuela Vision",2001,"Not Reported",28,"Tetas de Maria Guevara","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14049,19280,"VEN","Venezuela Vision",2001,"Not Reported",28,"Loma de León","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14050,19280,"VEN","Parks profiles",2003,"Not Reported",28,"Loma de León","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14051,2245,"VEN","Parks profiles",2004,"Not Reported",28,"National Park Archipielago de Los Roques","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14052,334,"VEN","Parks profiles",2001,"Not Reported",28,"Macarao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14053,334,"VEN","Venezuela Vision",1991,"Not Reported",28,"Macarao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14054,334,"VEN","Venezuela Vision",2001,"Not Reported",28,"Macarao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14055,146676,"VEN","Venezuela Vision",2001,"Not Reported",28,"Mariusa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14056,2246,"VEN","METT",0,"Not Reported",28,"Medanos de Coro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14057,2246,"VEN","Venezuela Vision",1991,"Not Reported",28,"Medanos de Coro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14058,2246,"VEN","Venezuela Vision",2001,"Not Reported",28,"Medanos de Coro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14059,324,"VEN","METT",0,"Not Reported",28,"Mochima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14060,324,"VEN","Parks profiles",2002,"Not Reported",28,"Mochima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14061,324,"VEN","Venezuela Vision",1991,"Not Reported",28,"Mochima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14062,324,"VEN","Venezuela Vision",2001,"Not Reported",28,"Mochima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14063,2247,"VEN","Venezuela Vision",1991,"Not Reported",28,"Morrocoy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14064,2247,"VEN","Venezuela Vision",2001,"Not Reported",28,"Morrocoy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14065,2247,"VEN","METT",2010,"Not Reported",28,"Morrocoy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14066,4369,"VEN","Parks profiles",2003,"Not Reported",28,"Morros de Macaira","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14067,4369,"VEN","Venezuela Vision",2001,"Not Reported",28,"Morros de Macaira","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14068,19290,"VEN","Venezuela Vision",2001,"Not Reported",28,"Morros de San Juan (Arístides Rojas)","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14069,19285,"VEN","Venezuela Vision",1991,"Not Reported",28,"Páramos del Batallón y La Negra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14070,19285,"VEN","Venezuela Vision",2001,"Not Reported",28,"Páramos del Batallón y La Negra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14071,328,"VEN","METT",2010,"Not Reported",28,"Península de Paria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14072,30026,"VEN","Venezuela Vision",2001,"Not Reported",28,"Parima-Tapirapecó","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14073,323,"VEN","METT",0,"Not Reported",28,"Henri Pittier","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14074,2245,"VEN","METT",0,"Not Reported",28,"National Park Archipielago de Los Roques","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14075,328,"VEN","Parks profiles",2004,"Not Reported",28,"Península de Paria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14076,328,"VEN","Venezuela Vision",1991,"Not Reported",28,"Península de Paria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14077,328,"VEN","Venezuela Vision",2001,"Not Reported",28,"Península de Paria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14078,318,"VEN","Venezuela Vision",1991,"Not Reported",28,"Perijá","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14079,318,"VEN","Venezuela Vision",2001,"Not Reported",28,"Perijá","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14080,10782,"VEN","Parks profiles",2004,"Not Reported",28,"San Camilo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14081,10782,"VEN","Venezuela Vision",1991,"Not Reported",28,"San Camilo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14082,10782,"VEN","Venezuela Vision",2001,"Not Reported",28,"San Camilo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14083,10767,"VEN","WWF/CATIE",2003,"Not Reported",28,"San Esteban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14084,10767,"VEN","METT",2010,"Not Reported",28,"San Esteban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14085,4367,"VEN","Venezuela Vision",1991,"Not Reported",28,"Serranía de la Neblina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14086,4367,"VEN","Venezuela Vision",2001,"Not Reported",28,"Serranía de la Neblina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14087,30033,"VEN","METT",2005,"Not Reported",28,"Sierra de la Culata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14088,30635,"VEN","Venezuela Vision",1991,"Not Reported",28,"Serranía de San Luis","Protective Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14089,30635,"VEN","Venezuela Vision",2001,"Not Reported",28,"Serranía de San Luis","Protective Zone","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14090,30033,"VEN","Venezuela Vision",1991,"Not Reported",28,"Sierra de la Culata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14091,30033,"VEN","Venezuela Vision",2001,"Not Reported",28,"Sierra de la Culata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14092,321,"VEN","METT",2005,"Not Reported",28,"Sierra Nevada","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14093,321,"VEN","Venezuela Vision",1991,"Not Reported",28,"Sierra Nevada","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14094,321,"VEN","Venezuela Vision",2001,"Not Reported",28,"Sierra Nevada","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14095,30030,"VEN","Venezuela Vision",2001,"Not Reported",28,"Formaciones de Tepuyes","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14096,332,"VEN","Parks profiles",2003,"Not Reported",28,"Terepaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14097,332,"VEN","Venezuela Vision",1991,"Not Reported",28,"Terepaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14098,332,"VEN","Venezuela Vision",2001,"Not Reported",28,"Terepaima","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14099,30024,"VEN","Venezuela Vision",2001,"Not Reported",28,"Turuepano","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14100,30024,"VEN","Parks profiles",2004,"Not Reported",28,"Turuepano","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14101,30024,"VEN","METT",2010,"Not Reported",28,"Turuepano","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14102,327,"VEN","METT",2010,"Not Reported",28,"El Avila","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14103,335,"VEN","Parks profiles",2003,"Not Reported",28,"Yacambú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14104,335,"VEN","Venezuela Vision",1991,"Not Reported",28,"Yacambú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14105,335,"VEN","Venezuela Vision",2001,"Not Reported",28,"Yacambú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14106,317,"VEN","Venezuela Vision",1991,"Not Reported",28,"Yapacana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14107,317,"VEN","Venezuela Vision",2001,"Not Reported",28,"Yapacana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14108,330,"VEN","Parks profiles",2004,"Not Reported",28,"Yurubí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14109,330,"VEN","Venezuela Vision",1991,"Not Reported",28,"Yurubí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14110,330,"VEN","Venezuela Vision",2001,"Not Reported",28,"Yurubí","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14111,10188,"VNM","Birdlife IBA",2007,"Not Reported",28,"Ba Be","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14112,10188,"VNM","METT",2005,"Not Reported",28,"Ba Be","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14113,10188,"VNM","METT",2010,"Not Reported",28,"Ba Be","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14114,10110,"VNM","Birdlife IBA",2007,"Not Reported",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14115,10110,"VNM","METT",2010,"Not Reported",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14116,10110,"VNM","METT",2011,"Not Reported",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14117,10110,"VNM","RAPPAM",2004,"Not Reported",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14118,10369,"VNM","METT",2006,"Not Reported",28,"Ben En","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14119,10369,"VNM","METT",2010,"Not Reported",28,"Ben En","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14120,10369,"VNM","METT",2011,"Not Reported",28,"Ben En","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14121,10369,"VNM","RAPPAM",2004,"Not Reported",28,"Ben En","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14122,303067,"VNM","METT",2003,"Not Reported",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14123,303067,"VNM","METT",2010,"Not Reported",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14124,303067,"VNM","METT",2011,"Not Reported",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14125,303067,"VNM","METT",2005,"Not Reported",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14126,303067,"VNM","RAPPAM",2004,"Not Reported",28,"Bidoup-Nui Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14127,303069,"VNM","METT",2003,"Not Reported",28,"Bu Gia Map","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14128,303069,"VNM","METT",2005,"Not Reported",28,"Bu Gia Map","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14129,303069,"VNM","RAPPAM",2004,"Not Reported",28,"Bu Gia Map","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14130,478146,"VNM","GOBI Survey",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14131,7877,"VNM","Birdlife IBA",2007,"Not Reported",28,"Cat Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14132,478147,"VNM","GOBI Survey",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14133,478148,"VNM","GOBI Survey",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14134,303072,"VNM","METT",2003,"Not Reported",28,"Cat Tien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14135,303072,"VNM","METT",2005,"Not Reported",28,"Cat Tien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14136,303072,"VNM","RAPPAM",2004,"Not Reported",28,"Cat Tien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14137,12171,"VNM","METT",2006,"Not Reported",28,"Chu Mom Ray","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14138,12171,"VNM","RAPPAM",2004,"Not Reported",28,"Chu Mom Ray","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14139,10380,"VNM","METT",2006,"Not Reported",28,"Chu Yang Sin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14140,10380,"VNM","RAPPAM",2004,"Not Reported",28,"Chu Yang Sin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14141,10111,"VNM","METT",2005,"Not Reported",28,"Con Dao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14142,10111,"VNM","METT",2009,"Not Reported",28,"Con Dao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14143,10111,"VNM","METT",2011,"Not Reported",28,"Con Dao","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14144,303075,"VNM","METT",2013,"Not Reported",28,"Cu Mong","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14145,7878,"VNM","RAPPAM",2004,"Not Reported",28,"Cuc Phuong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14146,10384,"VNM","METT",2004,"Not Reported",28,"Dakrong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14147,10384,"VNM","RAPPAM",2004,"Not Reported",28,"Dakrong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14148,303029,"VNM","METT",2009,"Not Reported",28,"Du Gia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14149,900889,"VNM","WH Outlook Report",2014,"Not Reported",28,"Ha Long Bay","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14150,10357,"VNM","METT",2005,"Not Reported",28,"Hoang Lien","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14151,71337,"VNM","METT",2010,"Not Reported",28,"Hoang Lien-Van Ban","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14152,71337,"VNM","METT",2011,"Not Reported",28,"Hoang Lien-Van Ban","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14153,303032,"VNM","METT",2013,"Not Reported",28,"Hon Me (marine)","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14154,10377,"VNM","METT",2005,"Not Reported",28,"Kon Chu Rang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14155,10377,"VNM","METT",2010,"Not Reported",28,"Kon Chu Rang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14156,10378,"VNM","METT",2005,"Not Reported",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14157,10378,"VNM","Birdlife IBA",2007,"Not Reported",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14159,10378,"VNM","METT",2008,"Not Reported",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14160,10378,"VNM","METT",2010,"Not Reported",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14161,10378,"VNM","METT",2011,"Not Reported",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14162,10378,"VNM","RAPPAM",2004,"Not Reported",28,"Kon Ka Kinh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14163,10379,"VNM","METT",2004,"Not Reported",28,"Krong Trai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14164,10395,"VNM","METT",2006,"Not Reported",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14165,10395,"VNM","METT",2003,"Not Reported",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14166,10395,"VNM","METT",2010,"Not Reported",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14167,10395,"VNM","METT",2011,"Not Reported",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14168,10395,"VNM","RAPPAM",2004,"Not Reported",28,"Lo Go-Xa Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14169,478151,"VNM","METT",2013,"Not Reported",28,"Mui Ca Mau","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14170,302848,"VNM","METT",2006,"Not Reported",28,"Na Hang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14171,302848,"VNM","METT",2008,"Not Reported",28,"Na Hang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14172,303065,"VNM","METT",2005,"Not Reported",28,"Ngoc Linh (Kon Tum)","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14173,303076,"VNM","METT",2013,"Not Reported",28,"O Loan","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14174,303039,"VNM","METT",2003,"Not Reported",28,"Phong Dien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14175,303039,"VNM","METT",2007,"Not Reported",28,"Phong Dien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14176,303039,"VNM","RAPPAM",2004,"Not Reported",28,"Phong Dien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14177,900883,"VNM","RAPPAM",2004,"Not Reported",28,"Phong Nha-Ke Bang National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14178,900883,"VNM","METT",2006,"Not Reported",28,"Phong Nha-Ke Bang National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14179,900883,"VNM","WH Outlook Report",2014,"Not Reported",28,"Phong Nha-Ke Bang National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14180,10398,"VNM","METT",2007,"Not Reported",28,"Phu Quoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14181,303030,"VNM","METT",2005,"Not Reported",28,"Pu Hu","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14182,303024,"VNM","METT",2005,"Not Reported",28,"Pu Huong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14183,303059,"VNM","METT",2001,"Not Reported",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14184,303059,"VNM","METT",2004,"Not Reported",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14185,303059,"VNM","METT",2005,"Not Reported",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14186,303059,"VNM","METT",2010,"Not Reported",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14187,303059,"VNM","METT",2011,"Not Reported",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14188,61595,"VNM","METT",2005,"Not Reported",28,"Pu Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14189,61595,"VNM","RAPPAM",2004,"Not Reported",28,"Pu Mat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14190,303074,"VNM","METT",2013,"Not Reported",28,"Quy Nhon","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14191,303066,"VNM","METT",2003,"Not Reported",28,"Song Thanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14192,303066,"VNM","METT",2006,"Not Reported",28,"Song Thanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14193,303066,"VNM","RAPPAM",2004,"Not Reported",28,"Song Thanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14194,10363,"VNM","METT",2005,"Not Reported",28,"Sop Cop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14195,303068,"VNM","RAPPAM",2004,"Not Reported",28,"Ta Dung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14196,303080,"VNM","METT",2010,"Not Reported",28,"Ta Kou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14197,303080,"VNM","METT",2011,"Not Reported",28,"Ta Kou","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14198,303020,"VNM","Birdlife IBA",2007,"Not Reported",28,"Tien Hai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14199,555577559,"VNM","WH Outlook Report",2014,"Not Reported",28,"Trang An Landscape Complex","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14201,10360,"VNM","METT",2010,"Not Reported",28,"Trung Khanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14202,303045,"VNM","METT",2004,"Not Reported",28,"Van Long","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14203,303045,"VNM","METT",2005,"Not Reported",28,"Van Long","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14204,10375,"VNM","RAPPAM",2004,"Not Reported",28,"Vu Quang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14205,303022,"VNM","METT",2006,"Not Reported",28,"Xuan Lien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14206,303022,"VNM","METT",2010,"Not Reported",28,"Xuan Lien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14207,303022,"VNM","METT",2011,"Not Reported",28,"Xuan Lien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14208,61551,"VNM","Birdlife IBA",2003,"Not Reported",28,"Xuan Thuy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14209,61551,"VNM","METT",2006,"Not Reported",28,"Xuan Thuy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14210,61551,"VNM","METT",2009,"Not Reported",28,"Xuan Thuy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14211,61551,"VNM","METT",2011,"Not Reported",28,"Xuan Thuy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14212,18033,"VNM","METT",2005,"Not Reported",28,"Yok Don","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14213,18033,"VNM","RAPPAM",2004,"Not Reported",28,"Yok Don","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14214,18274,"VUT","METT",2010,"Not Reported",28,"Erromango Kauri","Forest Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14215,18919,"VUT","METT",2010,"Not Reported",28,"Lake Letas","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14216,305082,"VUT","METT",2009,"Not Reported",28,"Nguna-Pele","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14217,555542725,"YEM","Birdlife IBA",2013,"Not Reported",28,"Detwah Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14218,903138,"YEM","WH Outlook Report",2014,"Not Reported",28,"Socotra Archipelago","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14219,4106,"ZMB","METT",2009,"Not Reported",28,"Bangweulu","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14220,4106,"ZMB","METT",2012,"Not Reported",28,"Bangweulu","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14222,1097,"ZMB","METT",2003,"Not Reported",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14223,1097,"ZMB","METT",2004,"Not Reported",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14224,1097,"ZMB","METT",2005,"Not Reported",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14225,1097,"ZMB","METT",2006,"Not Reported",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14226,1097,"ZMB","METT",2009,"Not Reported",28,"Blue Lagoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14227,62095,"ZMB","METT",2004,"Not Reported",28,"Chiawa","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14228,62095,"ZMB","METT",2009,"Not Reported",28,"Chiawa","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14229,62095,"ZMB","METT",2012,"Not Reported",28,"Chiawa","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14231,4105,"ZMB","METT",2004,"Not Reported",28,"Kafinda","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14232,1085,"ZMB","METT",2003,"Not Reported",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14233,1085,"ZMB","METT",2004,"Not Reported",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14234,1085,"ZMB","METT",2005,"Not Reported",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14235,1085,"ZMB","METT",2006,"Not Reported",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14236,1085,"ZMB","METT",2009,"Not Reported",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14237,4091,"ZMB","Birdlife IBA",2001,"Not Reported",28,"Kafue Flats","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14238,1085,"ZMB","Birdlife IBA",2001,"Not Reported",28,"Kafue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14239,1099,"ZMB","METT",2003,"Not Reported",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14240,1099,"ZMB","METT",2004,"Not Reported",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14241,1099,"ZMB","METT",2005,"Not Reported",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14242,1099,"ZMB","METT",2006,"Not Reported",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14243,1099,"ZMB","METT",2009,"Not Reported",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14244,1099,"ZMB","Birdlife IBA",2001,"Not Reported",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14245,1094,"ZMB","METT",2004,"Not Reported",28,"Lavushi Manda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14246,1089,"ZMB","Birdlife IBA",2001,"Not Reported",28,"Liuwa Plain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14247,1089,"ZMB","METT",2004,"Not Reported",28,"Liuwa Plain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14248,1098,"ZMB","METT",2003,"Not Reported",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14249,1098,"ZMB","METT",2004,"Not Reported",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14250,1098,"ZMB","METT",2005,"Not Reported",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14251,1098,"ZMB","METT",2006,"Not Reported",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14252,1098,"ZMB","METT",2009,"Not Reported",28,"Lochinvar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14253,7962,"ZMB","METT",2003,"Not Reported",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14254,7962,"ZMB","METT",2004,"Not Reported",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14255,7962,"ZMB","METT",2005,"Not Reported",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14256,7962,"ZMB","METT",2006,"Not Reported",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14257,7962,"ZMB","METT",2009,"Not Reported",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14258,7962,"ZMB","METT",2007,"Not Reported",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14259,7962,"ZMB","METT",2012,"Not Reported",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14261,7962,"ZMB","Birdlife IBA",2001,"Not Reported",28,"Lower Zambezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14262,1086,"ZMB","METT",2003,"Not Reported",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14263,1086,"ZMB","METT",2005,"Not Reported",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14264,1091,"ZMB","Birdlife IBA",2001,"Not Reported",28,"Lukusuzi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14265,1095,"ZMB","Birdlife IBA",2005,"Not Reported",28,"Lusenga Plain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14266,2347,"ZMB","METT",2003,"Not Reported",28,"Mosi-Oa-Tunya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14267,2347,"ZMB","METT",2005,"Not Reported",28,"Mosi-Oa-Tunya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14268,20399,"ZWE","ZMB","WH Outlook Report",2014,"Not Reported",28,"Mosi-oa-Tunya / Victoria Falls","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE", +14269,1088,"ZMB","METT",2004,"Not Reported",28,"North Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14270,1088,"ZMB","METT",2006,"Not Reported",28,"North Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14271,1088,"ZMB","METT",2009,"Not Reported",28,"North Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14272,1088,"ZMB","Birdlife IBA",2001,"Not Reported",28,"North Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14273,27022,"ZMB","Birdlife IBA",2001,"Not Reported",28,"Mitenge","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14274,1087,"ZMB","Birdlife IBA",2001,"Not Reported",28,"Sioma Ngwezi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14275,1086,"ZMB","METT",2004,"Not Reported",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14276,1086,"ZMB","METT",2006,"Not Reported",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14277,1086,"ZMB","METT",2009,"Not Reported",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14278,1086,"ZMB","Birdlife IBA",2001,"Not Reported",28,"South Luangwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14279,1092,"ZMB","Birdlife IBA",2005,"Not Reported",28,"Nsumbu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14280,4081,"ZMB","METT",2004,"Not Reported",28,"West Zambezi","Game Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14281,2532,"ZWE","Birdlife IBA",2001,"Not Reported",28,"Chimanimani","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14282,20341,"ZWE","Birdlife IBA",2001,"Not Reported",28,"Chirinda","State Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14283,1105,"ZWE","Birdlife IBA",2001,"Not Reported",28,"Chizarira","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14284,1991,"ZWE","METT",2014,"Not Reported",28,"Hwange","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14285,1991,"ZWE","Birdlife IBA",2001,"Not Reported",28,"Hwange","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14286,10907,"ZWE","WH Outlook Report",2014,"Not Reported",28,"Mana Pools National Park, Sapi and Chewore Safari Areas","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14288,1111,"ZWE","Birdlife IBA",2001,"Not Reported",28,"Nyanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14289,3064,"ZWE","Birdlife IBA",2001,"Not Reported",28,"Lake Chivero","Recreation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14290,26589,"ZWE","Birdlife IBA",2001,"Not Reported",28,"Stapleford","State Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14291,1120,"AFG","Birdlife IBA",1994,"Not Reported",28,"Abe-e-Estada","Flamingo and Water Fowl Sanctuaries","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14292,1122,"AFG","Birdlife IBA",2008,"Not Reported",28,"Band-e-Amir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14293,7510,"BWA","Birdlife IBA",2001,"Not Reported",28,"Central Kalahari","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14294,600,"BWA","METT",2013,"Not Reported",28,"Chobe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14295,600,"BWA","Birdlife IBA",2001,"Not Reported",28,"Chobe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14296,7450,"BWA","METT",2013,"Not Reported",28,"Chobe","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14297,7508,"BWA","Birdlife IBA",2001,"Not Reported",28,"Gemsbok","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14298,303628,"BWA","METT",2008,"Not Reported",28,"Nata","Bird Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14299,555577555,"BWA","WH Outlook Report",2014,"Not Reported",28,"Okavango Delta","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14300,7909,"CHL","METT",2004,"Not Reported",28,"Alerce Andino","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14301,7909,"CHL","METT",2010,"Not Reported",28,"Alerce Andino","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14302,555558308,"CHL","METT",2004,"Not Reported",28,"Alerce Costero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14303,555558308,"CHL","METT",2010,"Not Reported",28,"Alerce Costero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14304,555558308,"CHL","RAPPAM",2005,"Not Reported",28,"Alerce Costero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14305,112,"CHL","METT",0,"Not Reported",28,"Alto Biobio","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14306,112,"CHL","METT",2010,"Not Reported",28,"Alto Biobio","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14307,112,"CHL","RAPPAM",2005,"Not Reported",28,"Alto Biobio","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14308,555543793,"CHL","METT",2005,"Not Reported",28,"Predio Sector Altos de Cantillana - Horcón de Piedra y Roblería Cajón de Lisboa","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14309,555543793,"CHL","METT",2010,"Not Reported",28,"Predio Sector Altos de Cantillana - Horcón de Piedra y Roblería Cajón de Lisboa","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14310,94111,"CHL","RAPPAM",2005,"Not Reported",28,"Altos de Lircay","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14311,94116,"CHL","METT",2010,"Not Reported",28,"Bellotos El Melado","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14312,101,"CHL","METT",0,"Not Reported",28,"Bosque Fray Jorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14313,101,"CHL","METT",2010,"Not Reported",28,"Bosque Fray Jorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14314,902496,"CHL","GOBI Survey",2006,"Not Reported",28,"Cabo de Hornos","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14315,110,"CHL","METT",2007,"Not Reported",28,"Cerro Castillo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14316,110,"CHL","METT",2010,"Not Reported",28,"Cerro Castillo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14317,110,"CHL","RAPPAM",2005,"Not Reported",28,"Cerro Castillo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14318,20052,"CHL","METT",2010,"Not Reported",28,"Cerro Nielol","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14319,20052,"CHL","METT",0,"Not Reported",28,"Cerro Nielol","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14320,20052,"CHL","RAPPAM",2005,"Not Reported",28,"Cerro Nielol","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14321,7910,"CHL","METT",0,"Not Reported",28,"Chiloe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14322,7910,"CHL","METT",2010,"Not Reported",28,"Chiloe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14324,7910,"CHL","RAPPAM",2005,"Not Reported",28,"Chiloe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14325,117,"CHL","RAPPAM",2005,"Not Reported",28,"China Muerta","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14326,2227,"CHL","RAPPAM",2005,"Not Reported",28,"Conguillio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14327,2227,"CHL","METT",2010,"Not Reported",28,"Conguillio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14328,2227,"CHL","METT",0,"Not Reported",28,"Conguillio","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14329,9426,"CHL","RAPPAM",2005,"Not Reported",28,"Contulmo","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14330,9421,"CHL","METT",2010,"Not Reported",28,"El Morado","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14331,9421,"CHL","METT",0,"Not Reported",28,"El Morado","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14332,9450,"CHL","METT",2010,"Not Reported",28,"Federico Albert","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14333,9450,"CHL","METT",0,"Not Reported",28,"Federico Albert","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14334,317329,"CHL","METT",2010,"Not Reported",28,"Francisco Coloane","Marine and Coastal Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14335,95209,"CHL","METT",2004,"Not Reported",28,"Futaleufu","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14336,95209,"CHL","RAPPAM",2005,"Not Reported",28,"Futaleufu","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14337,95209,"CHL","METT",2010,"Not Reported",28,"Futaleufu","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14338,16806,"CHL","RAPPAM",2005,"Not Reported",28,"Hornopiren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14339,16806,"CHL","METT",2004,"Not Reported",28,"Hornopiren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14340,16806,"CHL","METT",2010,"Not Reported",28,"Hornopiren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14341,9418,"CHL","RAPPAM",2005,"Not Reported",28,"Huerquehue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14342,555543809,"CHL","METT",2010,"Not Reported",28,"Punta Morro - Desembocadura río Copiapó - Isla grande de Atacama","Marine and Coastal Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14343,317183,"CHL","METT",0,"Not Reported",28,"Islotes de Punihuil","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14344,317183,"CHL","METT",2010,"Not Reported",28,"Islotes de Punihuil","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14346,121,"CHL","GOBI Survey",2006,"Not Reported",28,"Archipielago Juan Fernández","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14347,97,"CHL","METT",2009,"Not Reported",28,"Archipielago Juan Fernadez","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14348,100,"CHL","METT",2010,"Not Reported",28,"La Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14349,100,"CHL","METT",0,"Not Reported",28,"La Campana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14350,555543807,"CHL","METT",2010,"Not Reported",28,"Lafken Mapu Lahual","Marine and Coastal Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14351,9441,"CHL","METT",2010,"Not Reported",28,"Lago Palena","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14352,9441,"CHL","METT",0,"Not Reported",28,"Lago Palena","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14354,9441,"CHL","RAPPAM",2005,"Not Reported",28,"Lago Palena","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14355,9415,"CHL","METT",2010,"Not Reported",28,"Laguna del Laja","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14356,9415,"CHL","METT",0,"Not Reported",28,"Laguna del Laja","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14357,9415,"CHL","RAPPAM",2005,"Not Reported",28,"Laguna del Laja","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14358,83,"CHL","METT",2007,"Not Reported",28,"Laguna San Rafael","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14359,83,"CHL","METT",2010,"Not Reported",28,"Laguna San Rafael","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14360,83,"CHL","RAPPAM",2005,"Not Reported",28,"Laguna San Rafael","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14361,9449,"CHL","RAPPAM",2005,"Not Reported",28,"Laguna Torca","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14362,94110,"CHL","METT",2004,"Not Reported",28,"Lahuen Nadi","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14363,94110,"CHL","METT",2010,"Not Reported",28,"Lahuen Nadi","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14364,9435,"CHL","METT",2010,"Not Reported",28,"Las Vicunas","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14365,9435,"CHL","METT",0,"Not Reported",28,"Las Vicunas","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14366,3013,"CHL","GOBI Survey",2006,"Not Reported",28,"Lauca","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14367,86,"CHL","METT",2010,"Not Reported",28,"Lauca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14368,86,"CHL","METT",0,"Not Reported",28,"Lauca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14369,9439,"CHL","METT",2010,"Not Reported",28,"Llanquihue","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14370,9439,"CHL","METT",0,"Not Reported",28,"Llanquihue","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14372,94116,"CHL","METT",0,"Not Reported",28,"Bellotos El Melado","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14373,94116,"CHL","RAPPAM",2005,"Not Reported",28,"Bellotos El Melado","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14374,30043,"CHL","METT",2010,"Not Reported",28,"Los Flamencos","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14375,30043,"CHL","METT",0,"Not Reported",28,"Los Flamencos","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14376,94117,"CHL","RAPPAM",2005,"Not Reported",28,"Los Queules","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14377,4769,"CHL","METT",2010,"Not Reported",28,"Los Ruiles","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14378,4769,"CHL","METT",0,"Not Reported",28,"Los Ruiles","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14379,4769,"CHL","RAPPAM",2005,"Not Reported",28,"Los Ruiles","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14380,113,"CHL","RAPPAM",2005,"Not Reported",28,"Malalcahuello","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14381,9433,"CHL","RAPPAM",2005,"Not Reported",28,"Malleco","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14382,94118,"CHL","METT",0,"Not Reported",28,"Mocho - Choshuenco","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14383,94118,"CHL","METT",2010,"Not Reported",28,"Mocho - Choshuenco","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14385,104,"CHL","RAPPAM",2005,"Not Reported",28,"Nahuelbuta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14386,115,"CHL","RAPPAM",2005,"Not Reported",28,"Nalcas","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14387,94115,"CHL","METT",2010,"Not Reported",28,"Nevado Tres Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14388,94115,"CHL","METT",0,"Not Reported",28,"Nevado Tres Cruces","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14389,111,"CHL","METT",0,"Not Reported",28,"Nuble","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14390,111,"CHL","METT",2010,"Not Reported",28,"Nuble","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14391,111,"CHL","RAPPAM",2005,"Not Reported",28,"Nuble","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14392,9436,"CHL","METT",2010,"Not Reported",28,"Pampa del Tamarugal","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14393,9436,"CHL","METT",0,"Not Reported",28,"Pampa del Tamarugal","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14394,317184,"CHL","METT",0,"Not Reported",28,"Pan De Azucar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14395,317184,"CHL","METT",2010,"Not Reported",28,"Pan De Azucar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14396,30044,"CHL","METT",2010,"Not Reported",28,"Pinguino de Humbolt","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14397,30044,"CHL","METT",0,"Not Reported",28,"Pinguino de Humbolt","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14398,90,"CHL","METT",2004,"Not Reported",28,"Puyehue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14399,90,"CHL","METT",2010,"Not Reported",28,"Puyehue","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14400,9424,"CHL","RAPPAM",2005,"Not Reported",28,"Queulat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14401,94119,"CHL","METT",0,"Not Reported",28,"Radal Siete Tazas","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14402,555543714,"CHL","METT",2010,"Not Reported",28,"Radal Siete Tazas","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14403,94119,"CHL","RAPPAM",2005,"Not Reported",28,"Radal Siete Tazas","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14404,9423,"CHL","RAPPAM",2005,"Not Reported",28,"Ralco","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14405,9432,"CHL","METT",2010,"Not Reported",28,"Rio Clarillo","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14406,9432,"CHL","METT",0,"Not Reported",28,"Rio Clarillo","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14407,555543766,"CHL","METT",2004,"Not Reported",28,"Río Cruces y Chorocomayo","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14408,555543766,"CHL","RAPPAM",2005,"Not Reported",28,"Río Cruces y Chorocomayo","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14409,555543766,"CHL","METT",2010,"Not Reported",28,"Río Cruces y Chorocomayo","Nature Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14410,9448,"CHL","METT",2010,"Not Reported",28,"Rio Los Cipreses","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14411,9448,"CHL","METT",0,"Not Reported",28,"Rio Los Cipreses","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14412,9444,"CHL","RAPPAM",2005,"Not Reported",28,"Rio Simpsom","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14413,9425,"CHL","METT",2010,"Not Reported",28,"Salar De Surire","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14414,9425,"CHL","METT",0,"Not Reported",28,"Salar De Surire","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14415,9417,"CHL","RAPPAM",2005,"Not Reported",28,"Tolhuaca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14416,89,"CHL","METT",2007,"Not Reported",28,"Torres del Paine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14417,89,"CHL","METT",2010,"Not Reported",28,"Torres del Paine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14418,88,"CHL","METT",2010,"Not Reported",28,"Vicente Perez Rosales","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14419,88,"CHL","METT",0,"Not Reported",28,"Vicente Perez Rosales","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14421,88,"CHL","RAPPAM",2005,"Not Reported",28,"Vicente Perez Rosales","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14422,91,"CHL","RAPPAM",2005,"Not Reported",28,"Villarrica","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14423,10706,"CHL","RAPPAM",2005,"Not Reported",28,"Villarrica","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14424,9416,"CHL","METT",2010,"Not Reported",28,"Volcan Isluga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14425,9416,"CHL","METT",0,"Not Reported",28,"Volcan Isluga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14426,81073,"ECU","Ecuador MEE",1999,"Not Reported",28,"Antisana","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14427,81073,"ECU","PIP Site Consolidation",2004,"Not Reported",28,"Antisana","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14428,7913,"ECU","Ecuador MEE",1999,"Not Reported",28,"Cajas","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14429,183,"ECU","Ecuador MEE",1999,"Not Reported",28,"Cayambe Coca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14430,183,"ECU","PIP Site Consolidation",2004,"Not Reported",28,"Cayambe Coca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14431,183,"ECU","METT",2005,"Not Reported",28,"Cayambe Coca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14432,97513,"ECU","Ecuador MEE",1999,"Not Reported",28,"Manglares Cayapas Mataje","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14433,32717,"ECU","Ecuador MEE",1999,"Not Reported",28,"Chimborazo","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14434,32717,"ECU","METT",2005,"Not Reported",28,"Chimborazo","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14435,32717,"ECU","METT",2009,"Not Reported",28,"Chimborazo","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14436,184,"ECU","Ecuador MEE",1999,"Not Reported",28,"Cotacachi Cayapas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14437,190,"ECU","Ecuador MEE",1999,"Not Reported",28,"Cotopaxi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14438,190,"ECU","PIP Site Consolidation",2004,"Not Reported",28,"Cotopaxi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14439,2499,"ECU","Ecuador MEE",1999,"Not Reported",28,"Cuyabeno","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14440,97513,"ECU","METT",2009,"Not Reported",28,"Manglares Cayapas Mataje","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14441,67623,"ECU","Ecuador MEE",1999,"Not Reported",28,"El Ángel","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14442,67623,"ECU","METT",2005,"Not Reported",28,"El Ángel","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14443,7914,"ECU","Ecuador MEE",1999,"Not Reported",28,"El Boliche","National Recreation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14444,187,"ECU","Ecuador MEE",1999,"Not Reported",28,"Galápagos","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14445,11753,"ECU","Ecuador MEE",1999,"Not Reported",28,"Galápagos","Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14446,187,"ECU","Galapagos MEE",2004,"Not Reported",28,"Galápagos","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14447,11753,"ECU","WWF/CATIE",0,"Not Reported",28,"Galápagos","Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14448,187,"ECU","MPA MEE",0,"Not Reported",28,"Galápagos","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14449,191,"ECU","MPA MEE",2003,"Not Reported",28,"Galápagos Islands","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14450,191,"ECU","WH Outlook Report",2014,"Not Reported",28,"Galápagos Islands","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14451,186,"ECU","Birdlife IBA",1990,"Not Reported",28,"Yasuní","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14452,20003,"ECU","Ecuador MEE",1999,"Not Reported",28,"Limoncocha","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14453,97512,"ECU","Ecuador MEE",1999,"Not Reported",28,"Llanganates","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14454,97512,"ECU","PIP Site Consolidation",2004,"Not Reported",28,"Llanganates","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14455,129914,"ECU","Ecuador MEE",1999,"Not Reported",28,"Los ILinizas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14456,129914,"ECU","METT",2009,"Not Reported",28,"Los ILinizas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14457,189,"ECU","Ecuador MEE",1999,"Not Reported",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14458,189,"ECU","PIP Site Consolidation",1992,"Not Reported",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14459,189,"ECU","PIP Site Consolidation",1996,"Not Reported",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14460,189,"ECU","PIP Site Consolidation",1997,"Not Reported",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14461,189,"ECU","PIP Site Consolidation",1998,"Not Reported",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14462,189,"ECU","PIP Site Consolidation",1999,"Not Reported",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14463,189,"ECU","PIP Site Consolidation",2000,"Not Reported",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14464,189,"ECU","PIP Site Consolidation",2001,"Not Reported",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14465,129915,"ECU","Ecuador MEE",1999,"Not Reported",28,"Mache Chindul","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14466,2238,"ECU","Ecuador MEE",1999,"Not Reported",28,"Manglares Churute","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14467,555547537,"ECU","GOBI Survey",2006,"Not Reported",28,"Podocarpus-El Condor","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14468,7912,"ECU","Ecuador MEE",1999,"Not Reported",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14469,7912,"ECU","PIP Site Consolidation",1992,"Not Reported",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14470,7912,"ECU","PIP Site Consolidation",1996,"Not Reported",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14471,7912,"ECU","PIP Site Consolidation",1997,"Not Reported",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14472,7912,"ECU","PIP Site Consolidation",1998,"Not Reported",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14473,7912,"ECU","PIP Site Consolidation",1999,"Not Reported",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14474,7912,"ECU","PIP Site Consolidation",2000,"Not Reported",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14475,7912,"ECU","PIP Site Consolidation",2001,"Not Reported",28,"Podocarpus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14476,168274,"ECU","Ecuador MEE",1999,"Not Reported",28,"Pululahua","Geobotanical Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14477,2499,"ECU","Birdlife IBA",1990,"Not Reported",28,"Cuyabeno","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14478,2499,"ECU","METT",2009,"Not Reported",28,"Cuyabeno","Fauna Production Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14479,183,"ECU","METT",2009,"Not Reported",28,"Cayambe Coca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14480,188,"ECU","Ecuador MEE",1999,"Not Reported",28,"Sangay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14481,188,"ECU","Enhancing Our Heritage",2003,"Not Reported",28,"Sangay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14482,188,"ECU","Enhancing Our Heritage",2005,"Not Reported",28,"Sangay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14483,188,"ECU","Enhancing Our Heritage",2007,"Not Reported",28,"Sangay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14484,9614,"ECU","WH Outlook Report",2014,"Not Reported",28,"Sangay National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14485,81072,"ECU","Ecuador MEE",1999,"Not Reported",28,"Sumaco Napo-Galeras","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14486,220263,"ECU","GOBI Survey",2006,"Not Reported",28,"Sumaco","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14487,186,"ECU","Ecuador MEE",1999,"Not Reported",28,"Yasuní","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14488,186,"ECU","GOBI Survey",2006,"Not Reported",28,"Yasuní","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14489,389074,"ESP","Catalonia MEE",2002,"Not Reported",28,"Aiguabarreig Segre-Cinca","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14490,389075,"ESP","Catalonia MEE",2002,"Not Reported",28,"Aiguabarreig Segre-Noguera Pallaresa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14492,389076,"ESP","Catalonia MEE",2002,"Not Reported",28,"Aiguabarreig Segre-Noguera Ribagorçana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14493,151247,"ESP","Catalonia MEE",2002,"Not Reported",28,"Aiguamolls de l`Empordà","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14496,389077,"ESP","Catalonia MEE",2002,"Not Reported",28,"Aiguamolls de l`Alt Empordà","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14497,196014,"ESP","Catalonia MEE",2002,"Not Reported",28,"Aigüestortes i Estany de Sant Maurici","Nacional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14499,389079,"ESP","Catalonia MEE",2002,"Not Reported",28,"Aigüestortes","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14500,389080,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riu Gai├á-Albereda de Santes Creus","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14501,389005,"ESP","Catalonia MEE",2002,"Not Reported",28,"Alt Àneu","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14503,389082,"ESP","Catalonia MEE",2002,"Not Reported",28,"Alta Garrotxa, l`","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14505,902522,"ESP","GOBI Survey",2006,"Not Reported",28,"Alto de Bernesga","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14506,555523471,"ESP","Birdlife IBA",2008,"Not Reported",28,"Altos De Barahona","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14507,555538338,"ESP","Birdlife IBA",2008,"Not Reported",28,"Altos de Barahona - ZEPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14508,902518,"ESP","GOBI Survey",2006,"Not Reported",28,"Área de Allariz","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14509,389083,"ESP","Catalonia MEE",2002,"Not Reported",28,"Arribèra deth Garona","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14510,389084,"ESP","Catalonia MEE",2002,"Not Reported",28,"Artiga de Lin, Era","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14512,389085,"ESP","Catalonia MEE",2002,"Not Reported",28,"Barrancs de Sant Antoni-Lloret-la Galera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14513,349405,"ESP","Birdlife IBA",2007,"Not Reported",28,"Valles Occidentales","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14514,555523227,"ESP","Birdlife IBA",2007,"Not Reported",28,"Los Valles","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14515,555538277,"ESP","Birdlife IBA",2007,"Not Reported",28,"Los Valles","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14516,389086,"ESP","Catalonia MEE",2002,"Not Reported",28,"Bessons, els","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14517,349094,"ESP","Birdlife IBA",2007,"Not Reported",28,"Cañón del Río Lobos","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14518,555523463,"ESP","Birdlife IBA",2007,"Not Reported",28,"Cañón del Río Lobos","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14519,555538159,"ESP","Birdlife IBA",2007,"Not Reported",28,"Cañón del Río Lobos - ZEPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14520,145809,"ESP","Stockholm BR Survey",2008,"Not Reported",28,"Cabo de Gata-Nijar","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14521,349127,"ESP","Catalonia MEE",2002,"Not Reported",28,"Cap de Creus","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14524,389006,"ESP","Catalonia MEE",2002,"Not Reported",28,"Cap de Creus","Nature Reserve (Integral)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14525,389087,"ESP","Catalonia MEE",2002,"Not Reported",28,"Cap de Creus","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14526,389088,"ESP","Catalonia MEE",2002,"Not Reported",28,"Cap de Santes Creus-Litoral meridional tarragoní","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14527,389089,"ESP","Catalonia MEE",2002,"Not Reported",28,"Capçalera de la Noguera Ribagorçana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14528,389090,"ESP","Catalonia MEE",2002,"Not Reported",28,"Capçaleres del Ter i del Freser","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14529,389091,"ESP","Catalonia MEE",2002,"Not Reported",28,"Carbasí","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14530,555538262,"ESP","Birdlife IBA",2007,"Not Reported",28,"Carrizales y sotos de Aranjuez","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14531,389208,"ESP","Birdlife IBA",2008,"Not Reported",28,"Tossa Plana de Lles-Puigpedrós","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14532,555538659,"ESP","Birdlife IBA",2008,"Not Reported",28,"Tossa Plana de Lles-Puigpedrós","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14533,555549049,"ESP","Birdlife IBA",2008,"Not Reported",28,"Tossa Plana de Lles-Puigpedrós","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14534,389092,"ESP","Catalonia MEE",2002,"Not Reported",28,"Cingles de Bertí","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14535,389093,"ESP","Catalonia MEE",2002,"Not Reported",28,"Collegats-Queralt","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14537,389094,"ESP","Catalonia MEE",2002,"Not Reported",28,"Collsacabra","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14538,389095,"ESP","Catalonia MEE",2002,"Not Reported",28,"Conreria-Sant Mateu-Céllecs, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14539,389096,"ESP","Catalonia MEE",2002,"Not Reported",28,"Costoja","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14540,196213,"ESP","Catalonia MEE",2002,"Not Reported",28,"Delta de l`Ebre","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14543,389097,"ESP","Catalonia MEE",2002,"Not Reported",28,"Delta de l`Ebre","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14544,389098,"ESP","Catalonia MEE",2002,"Not Reported",28,"Delta del Llobregat","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14547,349265,"ESP","Catalonia MEE",2002,"Not Reported",28,"Desembocadura del Riu Gaià","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14548,389099,"ESP","Catalonia MEE",2002,"Not Reported",28,"Desembocadura del Riu Gaià","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14549,893,"ESP","European Diploma",1985,"Not Reported",28,"Ordesa y Monte Perdido","Nacional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14550,67752,"ESP","GOBI Survey",2006,"Not Reported",28,"Doñana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14551,67752,"ESP","Stockholm BR Survey",2008,"Not Reported",28,"Doñana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14552,890,"ESP","Wetland tracking tool",2005,"Not Reported",28,"Marismas del Río Palmones","Nature Place","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14553,61611,"ESP","WH Outlook Report",2014,"Not Reported",28,"Doñana National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14554,555538235,"ESP","Birdlife IBA",2008,"Not Reported",28,"Valle del Tiétar y embalses de Rosarito y Navalcán","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14555,389100,"ESP","Catalonia MEE",2002,"Not Reported",28,"Erms d`Aitona","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14556,389101,"ESP","Catalonia MEE",2002,"Not Reported",28,"Estanh de Vielha","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14557,389229,"ESP","Catalonia MEE",2002,"Not Reported",28,"Estany d`Ivars-Vilasana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14558,389102,"ESP","Catalonia MEE",2002,"Not Reported",28,"Estany de Banyoles","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14559,389103,"ESP","Catalonia MEE",2002,"Not Reported",28,"Estany de Montcortès","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14560,389104,"ESP","Catalonia MEE",2002,"Not Reported",28,"Estany de Sils","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14562,389105,"ESP","Catalonia MEE",2002,"Not Reported",28,"Estanys de Basturs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14563,348858,"ESP","Catalonia MEE",2002,"Not Reported",28,"Estanys de la Jonquera","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14564,389106,"ESP","Catalonia MEE",2002,"Not Reported",28,"Basses de l`Albera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14565,389107,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riu i estanys de Tordera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14566,389108,"ESP","Catalonia MEE",2002,"Not Reported",28,"Eth Portilhon","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14567,389109,"ESP","Catalonia MEE",2002,"Not Reported",28,"Faiada de Malpàs, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14568,389110,"ESP","Catalonia MEE",2002,"Not Reported",28,"Filià","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14569,389111,"ESP","Catalonia MEE",2002,"Not Reported",28,"Foix, el","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14571,196147,"ESP","Birdlife IBA",2007,"Not Reported",28,"Fuentes Carrionas y Fuente Cobre - Montaña Palentina","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14572,555538620,"ESP","Birdlife IBA",2007,"Not Reported",28,"Fuentes Carrionas y Fuente Cobre - Montaña Palentina","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14573,555549019,"ESP","Birdlife IBA",2007,"Not Reported",28,"Fuentes Carrionas y Fuente Cobre - Montaña Palentina","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14574,389117,"ESP","Catalonia MEE",2002,"Not Reported",28,"Gallifa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14575,12206,"ESP","WH Outlook Report",2014,"Not Reported",28,"Garajonay National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14576,389118,"ESP","Catalonia MEE",2002,"Not Reported",28,"Gavarres, les","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14577,389119,"ESP","Catalonia MEE",2002,"Not Reported",28,"Gelada","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14578,902519,"ESP","GOBI Survey",2006,"Not Reported",28,"Gran Canaria","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14579,2098,"ESP","GOBI Survey",2006,"Not Reported",28,"Reserva de Grazalema","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14580,389120,"ESP","Catalonia MEE",2002,"Not Reported",28,"Guilleries, les","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14581,389028,"ESP","Birdlife IBA",2007,"Not Reported",28,"Hoces del Alto Ebro y Rudrón","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14582,555523405,"ESP","Birdlife IBA",2007,"Not Reported",28,"Hoces del Alto Ebro y Rudrón","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14583,555538614,"ESP","Birdlife IBA",2007,"Not Reported",28,"Hoces del Alto Ebro y Rudrón - ZEPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14584,555523409,"ESP","Birdlife IBA",2007,"Not Reported",28,"Humada-Peña Amaya","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14585,555538327,"ESP","Birdlife IBA",2007,"Not Reported",28,"Humada - Peña Amaya - ZEPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14586,198303,"ESP","WH Outlook Report",2014,"Not Reported",28,"Ibiza, Biodiversity and Culture","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14587,389121,"ESP","Catalonia MEE",2002,"Not Reported",28,"Illa de Canet","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14589,349062,"ESP","Catalonia MEE",2002,"Not Reported",28,"L`illa de Fluvià","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14590,389122,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riberes i illes de l`Ebre","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14592,389123,"ESP","Catalonia MEE",2002,"Not Reported",28,"Illes Medes","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14594,348781,"ESP","Birdlife IBA",2008,"Not Reported",28,"Islote de Lobos","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14595,555524077,"ESP","Birdlife IBA",2008,"Not Reported",28,"Islote de Lobos","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14596,142934,"ESP","Birdlife IBA",2008,"Not Reported",28,"Corralejo","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14597,555524078,"ESP","Birdlife IBA",2008,"Not Reported",28,"Corralejo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14598,555538192,"ESP","Birdlife IBA",2008,"Not Reported",28,"Dunas de Corralejo e Isla de Lobos","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14599,5199,"ESP","GOBI Survey",2006,"Not Reported",28,"La Palma","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14600,5199,"ESP","Stockholm BR Survey",2008,"Not Reported",28,"La Palma","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14601,61526,"ESP","GOBI Survey",2006,"Not Reported",28,"Reserva de la Biósfera Lanzarote","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14602,389124,"ESP","Catalonia MEE",2002,"Not Reported",28,"Mare de Déu de la Roca","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14603,389125,"ESP","Catalonia MEE",2002,"Not Reported",28,"Marimanha","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14605,15446,"ESP","Catalonia MEE",2002,"Not Reported",28,"Mas de Melons","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14607,555552489,"ESP","Catalonia MEE",2002,"Not Reported",28,"Reserva Marina de Masía Blanca","Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14608,348962,"ESP","Catalonia MEE",2002,"Not Reported",28,"Massís de l`Albera","Nature Place (National Interest)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14609,389126,"ESP","Catalonia MEE",2002,"Not Reported",28,"Massís de l`Albera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14611,389127,"ESP","Catalonia MEE",2002,"Not Reported",28,"Massís de les Cadiretes","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14612,389128,"ESP","Catalonia MEE",2002,"Not Reported",28,"Massís de les Salines","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14613,389129,"ESP","Catalonia MEE",2002,"Not Reported",28,"Massís del Garraf","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14615,15429,"ESP","Catalonia MEE",2002,"Not Reported",28,"Muntanya de Montserrat","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14618,61525,"ESP","GOBI Survey",2006,"Not Reported",28,"Menorca","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14619,61525,"ESP","Stockholm BR Survey",2008,"Not Reported",28,"Menorca","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14620,389131,"ESP","Catalonia MEE",2002,"Not Reported",28,"Miracle, el","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14621,901257,"ESP","GOBI Survey",2006,"Not Reported",28,"Monfragüe","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14622,389133,"ESP","Catalonia MEE",2002,"Not Reported",28,"Montanhes de Les e Bossòst","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14624,348798,"ESP","Birdlife IBA",2008,"Not Reported",28,"Izki","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14625,555538605,"ESP","Birdlife IBA",2008,"Not Reported",28,"Izki","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14626,555549010,"ESP","Birdlife IBA",2008,"Not Reported",28,"Izki","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14627,389134,"ESP","Catalonia MEE",2002,"Not Reported",28,"Montesquiu","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14629,389135,"ESP","Catalonia MEE",2002,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14631,389136,"ESP","Catalonia MEE",2002,"Not Reported",28,"Montllober","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14633,389137,"ESP","Catalonia MEE",2002,"Not Reported",28,"El Montmell-Marmellar","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14634,389138,"ESP","Catalonia MEE",2002,"Not Reported",28,"Montserrat","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14639,220269,"ESP","GOBI Survey",2006,"Not Reported",28,"Muniellos","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14640,389139,"ESP","Catalonia MEE",2002,"Not Reported",28,"Muntanya de Sal de Cardona","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14641,389140,"ESP","Catalonia MEE",2002,"Not Reported",28,"Muntanyes de Begur","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14643,389142,"ESP","Catalonia MEE",2002,"Not Reported",28,"Muntanyes de Prades","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14646,389143,"ESP","Catalonia MEE",2002,"Not Reported",28,"Muntanyes de Rocacorba","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14647,389144,"ESP","Catalonia MEE",2002,"Not Reported",28,"Muntanyes de Tivissa-Vandellòs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14648,389145,"ESP","Catalonia MEE",2002,"Not Reported",28,"Naut Aran","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14649,389146,"ESP","Catalonia MEE",2002,"Not Reported",28,"Vall del Rigart","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14650,389147,"ESP","Catalonia MEE",2002,"Not Reported",28,"Obagues del Riu Corb","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14651,389148,"ESP","Catalonia MEE",2002,"Not Reported",28,"Olèrdola","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14653,905,"SWE","European Diploma",1988,"Not Reported",28,"Padjelanta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14654,348789,"ESP","Birdlife IBA",2008,"Not Reported",28,"La Caldera de Taburiente","Nacional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14655,555538193,"ESP","Birdlife IBA",2008,"Not Reported",28,"Caldera de Taburiente","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14656,555548898,"ESP","Birdlife IBA",2008,"Not Reported",28,"Caldera de Taburiente","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14657,196099,"ESP","Birdlife IBA",2008,"Not Reported",28,"Jandía","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14658,555524079,"ESP","Birdlife IBA",2008,"Not Reported",28,"Jandía","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14659,555538189,"ESP","Birdlife IBA",2008,"Not Reported",28,"Jandía","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14660,389149,"ESP","Catalonia MEE",2002,"Not Reported",28,"Penya-segats de la Muga","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14661,901256,"ESP","GOBI Survey",2006,"Not Reported",28,"Picos de Europe, Gran Cant├íbrica","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14662,389151,"ESP","Catalonia MEE",2002,"Not Reported",28,"Plana de Sant Jordi, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14663,389152,"ESP","Catalonia MEE",2002,"Not Reported",28,"Platja de Torredembarra i Creixell","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14665,389153,"ESP","Catalonia MEE",2002,"Not Reported",28,"Ports, els","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14668,389154,"ESP","Catalonia MEE",2002,"Not Reported",28,"Puig de la Banya del Boc","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14670,68185,"ESP","Birdlife IBA",2008,"Not Reported",28,"Complejo intermareal Umia-Grove","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14671,349318,"ESP","Birdlife IBA",2008,"Not Reported",28,"Complexo intermareal Umia-O Grove A Lanzada, punta Carreir├│n e lagoa Bodeira","Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14672,349347,"ESP","Birdlife IBA",2008,"Not Reported",28,"Complexo intermareal Umia-O Grove, A Lanzada, punta Carreir├│n e lagoa Bodeira","Protected Wetland","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14673,555538233,"ESP","Birdlife IBA",2008,"Not Reported",28,"Complexo intermareal Umia - O Grove, A Lanzada, punta Carreir├│n e lagoa Bodeira","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14674,900547,"ESP","GOBI Survey",2006,"Not Reported",28,"Redes","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14675,4840,"ESP","Birdlife IBA",2008,"Not Reported",28,"Picos de Europa en Castilla y León","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14676,555538615,"ESP","Birdlife IBA",2008,"Not Reported",28,"Picos de Europa en Castilla y León","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14677,555549016,"ESP","Birdlife IBA",2008,"Not Reported",28,"Picos de Europa en Castilla y León","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14678,389155,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riba-roja","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14679,349256,"ESP","Catalonia MEE",2002,"Not Reported",28,"Ribera de l`Algars","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14680,389156,"ESP","Catalonia MEE",2002,"Not Reported",28,"Ribera de l`Algars","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14681,349700,"ESP","Catalonia MEE",2002,"Not Reported",28,"Ribera de l`Ebre a Flix","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14682,389157,"ESP","Catalonia MEE",2002,"Not Reported",28,"Ribera de l`Ebre a Flix","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14683,389158,"ESP","Catalonia MEE",2002,"Not Reported",28,"Ribera Salada","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14684,389159,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riberes de l`Alt Segre","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14686,349712,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riera d`Arbucies-Hostalric","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14687,389160,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riera d`Arbúcies","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14688,349711,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riera de Merlés","Nature Reserve (Parcial)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14689,389073,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riera de Merlés","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14690,389161,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riera de Navel","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14691,389162,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riera de Santa Coloma","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14693,389163,"ESP","Catalonia MEE",2002,"Not Reported",28,"Riera de Sorreigs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14695,389164,"ESP","Catalonia MEE",2002,"Not Reported",28,"Rojala-Platja del Torn, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14697,349647,"ESP","Birdlife IBA",2008,"Not Reported",28,"Roque de Garachico","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14698,555538746,"ESP","Birdlife IBA",2008,"Not Reported",28,"Roque de Garachico","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14699,555549134,"ESP","Birdlife IBA",2008,"Not Reported",28,"Roque de Garachico","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14700,389165,"ESP","Catalonia MEE",2002,"Not Reported",28,"Roques Blanques","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14701,389166,"ESP","Catalonia MEE",2002,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14702,389167,"ESP","Catalonia MEE",2002,"Not Reported",28,"Sant Joan de Toran","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14703,389168,"ESP","Catalonia MEE",2002,"Not Reported",28,"Sant Llorenç del Munt i l`Obac","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14706,389169,"ESP","Catalonia MEE",2002,"Not Reported",28,"Sauva Negra, la","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14707,389170,"ESP","Catalonia MEE",2002,"Not Reported",28,"Savassona","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14708,389171,"ESP","Catalonia MEE",2002,"Not Reported",28,"Sèquia Major","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14709,389172,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra Cavallera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14710,389173,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra d`Aubenç i Roc de Cogul","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14711,389174,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra d`Ensija-els Rasos de Peguera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14712,389177,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra de Carreu-Sant Corneli","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14713,389178,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra de Castelltallat","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14714,389179,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra de Collserola","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14716,389180,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra de Llaberia","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14717,389181,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra de Montgrony","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14718,389182,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra de Montsià","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14720,389183,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra de Picancel","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14721,389184,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra de Queralt i Els Tossals","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14722,389249,"ESP","Catalonia MEE",2002,"Not Reported",28,"Vall Alta de Serradell-Terreta-Serra de Sant Gervàs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14723,389185,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra de Turp i Mora Condal-Valldaran","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14724,389186,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra del Catllaràs","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14725,389187,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra del Montsant","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14726,389188,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra del Montsec","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14728,389189,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra del Verd","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14729,389190,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra Llarga-Secans de la Noguera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14730,389191,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serra Mitjana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14731,389192,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serres d`Odèn-Port del Comte","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14732,389193,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serres de Busa-els Bastets-Lord","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14733,389194,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serres de Cardó-el Boix","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14734,389195,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serres de Milany-Santa Magdalena i Puigsacalm-Bellmunt","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14735,389206,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serres del Montnegre i el Corredor","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14737,389196,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serres de Pàndols-Cavalls","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14738,389204,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serres de Pradell-l`Argentera","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14739,389205,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serres del Cadí-Moixeró","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14743,134940,"ESP","GOBI Survey",2006,"Not Reported",28,"Sierra de las Nieves y su Entorno","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14744,902520,"ESP","GOBI Survey",2006,"Not Reported",28,"Sierra del Rincón","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14745,220270,"ESP","GOBI Survey",2006,"Not Reported",28,"Somiedo","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14746,389207,"ESP","Catalonia MEE",2002,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14748,903132,"ESP","European Diploma",1989,"Not Reported",28,"Teide National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14749,903132,"ESP","WH Outlook Report",2014,"Not Reported",28,"Teide National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14750,900724,"ESP","GOBI Survey",2006,"Not Reported",28,"Terras do Mino","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14751,349482,"ESP","Catalonia MEE",2002,"Not Reported",28,"Torrent del Pi","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14752,389208,"ESP","Catalonia MEE",2002,"Not Reported",28,"Tossa Plana de Lles-Puigpedrós","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14754,389209,"ESP","Catalonia MEE",2002,"Not Reported",28,"Tossal Gros de Miramar","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14755,389210,"ESP","Catalonia MEE",2002,"Not Reported",28,"Tossals d` Almatret","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14756,389211,"ESP","Catalonia MEE",2002,"Not Reported",28,"Tossals d`Isòvol i Olopte","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14758,389212,"ESP","Catalonia MEE",2002,"Not Reported",28,"Serós-Tossals de Montmeneu","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14759,389214,"ESP","Catalonia MEE",2002,"Not Reported",28,"Tres Hereus, els","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14760,389215,"ESP","Catalonia MEE",2002,"Not Reported",28,"Turons de la Plana Ausetana","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14761,389216,"ESP","Catalonia MEE",2002,"Not Reported",28,"Turons de Maçanet","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14763,196192,"ESP","Catalonia MEE",2002,"Not Reported",28,"Utxesa","Nature Reserve (Wildlife)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14764,389217,"ESP","Catalonia MEE",2002,"Not Reported",28,"Utxesa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14766,349623,"ESP","Birdlife IBA",2007,"Not Reported",28,"Valle de Iruelas","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14767,555538260,"ESP","Birdlife IBA",2007,"Not Reported",28,"Valle de Iruelas","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14768,555548941,"ESP","Birdlife IBA",2007,"Not Reported",28,"Valle De Iruelas","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14769,901255,"ESP","GOBI Survey",2006,"Not Reported",28,"Valle de Laciana","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14770,901258,"ESP","Stockholm BR Survey",2008,"Not Reported",28,"Valles del Jubera, Leza, Cidacos y Alhama","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14771,389001,"ESP","Birdlife IBA",2008,"Not Reported",28,"Lagunas de Villafafila","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14772,555538158,"ESP","Birdlife IBA",2008,"Not Reported",28,"Lagunas de Villafafila","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14773,389219,"ESP","Catalonia MEE",2002,"Not Reported",28,"Volcà de la Crosa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14775,196372,"ESP","Catalonia MEE",2002,"Not Reported",28,"Zona Volcànica de la Garrotxa","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14778,389220,"ESP","Catalonia MEE",2002,"Not Reported",28,"Zona Volcànica de la Garrotxa","Protection Plan","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14779,2279,"ETH","Birdlife IBA",2013,"Not Reported",28,"Abijatta-Shalla Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14780,342654,"ETH","METT",2005,"Not Reported",28,"Alatish","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14781,10740,"ETH","METT",2011,"Not Reported",28,"Alledeghi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14782,652,"ETH","METT",2005,"Not Reported",28,"Awash","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14783,652,"ETH","Birdlife IBA",2013,"Not Reported",28,"Awash","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14784,18439,"ETH","METT",2005,"Not Reported",28,"Babile Elephant","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14785,2281,"ETH","METT",2004,"Not Reported",28,"Bale Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14786,2281,"ETH","METT",0,"Not Reported",28,"Bale Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14787,342517,"ETH","METT",2005,"Not Reported",28,"Chebera-Churchura","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14788,13704,"ETH","METT",2005,"Not Reported",28,"Gambella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14789,2277,"ETH","Birdlife IBA",1996,"Not Reported",28,"Mago","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14790,13766,"ETH","METT",2005,"Not Reported",28,"Maze","Controlled Hunting Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14791,2278,"ETH","METT",2005,"Not Reported",28,"Nechisar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14792,2280,"ETH","METT",2005,"Not Reported",28,"Omo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14793,2280,"ETH","Birdlife IBA",1996,"Not Reported",28,"Omo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14794,10739,"ETH","METT",2005,"Not Reported",28,"Senkelle Swayne's Hartebeest","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14795,653,"ETH","METT",2005,"Not Reported",28,"Simien Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14796,2006,"ETH","WH Outlook Report",2014,"Not Reported",28,"Simien National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14797,7401,"ETH","Birdlife IBA",1996,"Not Reported",28,"Yabello","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14798,2276,"ETH","METT",2005,"Not Reported",28,"Yangudi Rassa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14799,34878,"FJI","METT",2010,"Not Reported",28,"Taveuni","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14800,1516,"FJI","METT",2010,"Not Reported",28,"Tomaniivi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14801,67983,"GIN","RAPPAM",2007,"Not Reported",28,"Ile Alcatraz","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14802,29069,"GIN","RAPPAM",2007,"Not Reported",28,"Badiar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14803,900716,"GIN","RAPPAM",2006,"Not Reported",28,"Badiar","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14804,903066,"GIN","RAPPAM",2007,"Not Reported",28,"Bafing-Falémé","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14805,29484,"GIN","RAPPAM",2007,"Not Reported",28,"Di�ck�","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14806,29447,"GIN","RAPPAM",2007,"Not Reported",28,"Haut Niger National Park - Kouya Core Area","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14807,67983,"GIN","METT",2006,"Not Reported",28,"Ile Alcatraz","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14808,67984,"GIN","METT",2006,"Not Reported",28,"Iles Tristao","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14809,67986,"GIN","METT",2006,"Not Reported",28,"Rio Pongo","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14812,67987,"GIN","Birdlife IBA",2001,"Not Reported",28,"Konkour�","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14814,29066,"GIN","Birdlife IBA",2001,"Not Reported",28,"Massif du Ziama","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14815,29067,"GIN","RAPPAM",2009,"Not Reported",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14816,2574,"GIN","Birdlife IBA",2001,"Not Reported",28,"Mount Nimba Strict Nature Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14817,29067,"GIN","Birdlife IBA",2001,"Not Reported",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14818,29067,"GIN","RAPPAM",2007,"Not Reported",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14819,3027,"GIN","METT",2004,"Not Reported",28,"R�serve de la biosph�re des Monts Nimba","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14820,3027,"GIN","METT",2010,"Not Reported",28,"R�serve de la biosph�re des Monts Nimba","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14821,29067,"GIN","METT",2004,"Not Reported",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14823,67986,"GIN","Birdlife IBA",2001,"Not Reported",28,"Rio Pongo","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14824,19980,"GIN","RAPPAM",2007,"Not Reported",28,"Tristao","Faunal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14825,29066,"GIN","RAPPAM",2007,"Not Reported",28,"Massif du Ziama","Classified Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14827,313354,"GNQ","METT",0,"Not Reported",28,"Caldera de Luba","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14828,20267,"GNQ","METT",0,"Not Reported",28,"Monte Alén","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14829,20267,"GNQ","Africa Rainforest Study",2001,"Not Reported",28,"Monte Alén","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14830,20267,"GNQ","RAPPAM",2010,"Not Reported",28,"Monte Alén","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14831,20264,"GNQ","METT",0,"Not Reported",28,"Pico de Basilé","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14832,2189,"GRD","RAPPAM",2006,"Not Reported",28,"Grand Etang Forest Corridors Addition","Local Area Planning","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14833,14182,"GRD","RAPPAM",2006,"Not Reported",28,"High North","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14834,12705,"GRD","RAPPAM",2006,"Not Reported",28,"Levera","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14835,14191,"GRD","RAPPAM",2006,"Not Reported",28,"Molinier-Beausejour","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14836,116321,"GRD","RAPPAM",2006,"Not Reported",28,"Mt. Hartman","Surveyed/Undesignated Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14837,14181,"GRD","RAPPAM",2006,"Not Reported",28,"Mt. St. Catherine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14838,116322,"GRD","RAPPAM",2006,"Not Reported",28,"Perseverance","Designated Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14839,41045,"HND","METT",2010,"Not Reported",28,"Tawahka Asangni _x000D_ +_x000D_ +","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14840,41011,"HND","PROARCA/CAPAS",2002,"Not Reported",28,"Capiro Calentura","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14841,18805,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Celaque","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14842,18807,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Azul Meámbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14843,23306,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Cusuco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14844,23308,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"El Armado","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14845,18828,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"El Chile","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14846,18828,"HND","PROARCA/CAPAS",2001,"Not Reported",28,"El Chile","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14847,18828,"HND","PROARCA/CAPAS",2002,"Not Reported",28,"El Chile","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14848,41019,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"El Jicarito","Habitat Management Area by Species","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14849,555582978,"HND","METT",2006,"Not Reported",28,"Guanaja 2","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14850,555582978,"HND","METT",2008,"Not Reported",28,"Guanaja 2","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14851,555582978,"HND","METT",2012,"Not Reported",28,"Guanaja 2","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14852,18847,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"La Muralla","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14853,18847,"HND","PROARCA/CAPAS",2002,"Not Reported",28,"La Muralla","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14854,30625,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Laguna de Karatasca","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14855,36051,"HND","PROARCA/CAPAS",2002,"Not Reported",28,"Laguna de Guaimoreto","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14856,18811,"HND","PROARCA/CAPAS",2001,"Not Reported",28,"Montañade Yoro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14857,41013,"HND","METT",2005,"Not Reported",28,"Patuca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14858,41013,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Patuca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14859,41013,"HND","METT",2010,"Not Reported",28,"Patuca","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14860,18810,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Pico Bonito","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14861,18812,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Pico Pijol","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14862,18812,"HND","PROARCA/CAPAS",2002,"Not Reported",28,"Pico Pijol","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14863,18812,"HND","PROARCA/CAPAS",2005,"Not Reported",28,"Pico Pijol","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14864,41027,"HND","METT",2006,"Not Reported",28,"Port Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14865,41027,"HND","METT",2008,"Not Reported",28,"Port Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14866,41027,"HND","METT",2012,"Not Reported",28,"Port Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14867,41014,"HND","METT",2010,"Not Reported",28,"R�o Pl�tano","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14868,36053,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"R�o Kruta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14870,5002,"HND","Enhancing Our Heritage",2002,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14871,5002,"HND","Enhancing Our Heritage",2005,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14872,5002,"HND","Enhancing Our Heritage",2007,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14873,5002,"HND","PIP Site Consolidation",1997,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14874,5002,"HND","PIP Site Consolidation",1998,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14875,5002,"HND","PIP Site Consolidation",1999,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14876,5002,"HND","PIP Site Consolidation",2000,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14877,5002,"HND","PIP Site Consolidation",2001,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14878,5002,"HND","PIP Site Consolidation",2002,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14879,5002,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14880,5002,"HND","PROARCA/CAPAS",2003,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14881,5002,"HND","PROARCA/CAPAS",2006,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14882,5002,"HND","GOBI Survey",2006,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14883,5002,"HND","METT",2005,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14884,5002,"HND","WH Outlook Report",2014,"Not Reported",28,"R�o Pl�tano Biosphere Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14885,62046,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Rus-Rus","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14886,555582985,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Warunta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14887,555582985,"HND","PROARCA/CAPAS",2001,"Not Reported",28,"Warunta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14888,18808,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Agalta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14889,2213,"BLZ","METT",2006,"Not Reported",28,"Halfmoon Caye","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14890,2213,"BLZ","METT",2008,"Not Reported",28,"Halfmoon Caye","Natural Monument","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14891,41045,"HND","METT",2005,"Not Reported",28,"Tawahka Asangni _x000D_ +_x000D_ +","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14893,62052,"HND","METT",2006,"Not Reported",28,"Turtle Harbor","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14894,62052,"HND","METT",2008,"Not Reported",28,"Turtle Harbor","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14895,62052,"HND","METT",2012,"Not Reported",28,"Turtle Harbor","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14896,302119,"HND","PROARCA/CAPAS",2000,"Not Reported",28,"Yuscar�n","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14897,302119,"HND","PROARCA/CAPAS",2001,"Not Reported",28,"Yuscar�n","Biological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14898,7880,"HTI","METT",2009,"Not Reported",28,"La Visite","Natural National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14899,7879,"HTI","METT",2009,"Not Reported",28,"Parc Macaya","Natural National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14900,13653,"HUN","Stockholm BR Survey",2008,"Not Reported",28,"Aggtelek Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14901,13652,"HUN","GOBI Survey",2006,"Not Reported",28,"Aggleki","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14902,93292,"HUN","WH Outlook Report",2014,"Not Reported",28,"Caves of Aggtelek Karst and Slovak Karst","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14903,100798,"HUN","Wetland tracking tool",2005,"Not Reported",28,"Duna-Dráva","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14904,2072,"HUN","GOBI Survey",2006,"Not Reported",28,"Lake Fertö Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14905,2069,"HUN","GOBI Survey",2006,"Not Reported",28,"Hortobágy National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14906,2069,"HUN","Stockholm BR Survey",2008,"Not Reported",28,"Hortobágy National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14907,9705,"HUN","European Diploma",1995,"Not Reported",28,"Ipolytarnóci ősmaradványok","Nature Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14908,2070,"HUN","GOBI Survey",2006,"Not Reported",28,"Kiskunság Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14909,2070,"HUN","Stockholm BR Survey",2008,"Not Reported",28,"Kiskunság Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14910,2072,"HUN","Stockholm BR Survey",2008,"Not Reported",28,"Lake Fertö Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14911,3029,"HUN","GOBI Survey",2006,"Not Reported",28,"Pilis Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14912,3029,"HUN","Stockholm BR Survey",2008,"Not Reported",28,"Pilis Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14913,555527181,"HUN","European Diploma",1995,"Not Reported",28,"Tihanyi-félsziget","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14914,17120,"IRN","Birdlife IBA",1994,"Not Reported",28,"Amirkelayeh","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14915,17156,"IRN","Birdlife IBA",1994,"Not Reported",28,"Anzali Mordab (Talab) complex","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14916,708,"IRN","Birdlife IBA",1994,"Not Reported",28,"Arjan or Ajan and Parishan","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14917,17162,"IRN","Birdlife IBA",1994,"Not Reported",28,"Bujagh National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14918,313251,"IRN","Birdlife IBA",1994,"Not Reported",28,"Bojagh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14919,17162,"IRN","METT",2007,"Not Reported",28,"Bujagh National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14920,17162,"IRN","METT",2008,"Not Reported",28,"Bujagh National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14921,902321,"IRN","METT",2005,"Not Reported",28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14922,902321,"IRN","METT",2007,"Not Reported",28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14923,902321,"IRN","METT",2008,"Not Reported",28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14924,902321,"IRN","METT",2009,"Not Reported",28,"Fereydoon Kenar, Ezbaran & Sorkh Ruds Ab-Bandans","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14925,68014,"IRN","Birdlife IBA",1994,"Not Reported",28,"Lake Gori","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14926,17131,"IRN","Birdlife IBA",1994,"Not Reported",28,"Hamoun","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14927,17158,"IRN","Birdlife IBA",1994,"Not Reported",28,"Hamun-e-Saberi & Hamun-e-Helmand","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14928,709,"IRN","Birdlife IBA",1994,"Not Reported",28,"Hara","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14929,17166,"IRN","Birdlife IBA",1994,"Not Reported",28,"Khuran Straits","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14930,17159,"IRN","Birdlife IBA",1994,"Not Reported",28,"Lake Kobi","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14931,708,"IRN","METT",2009,"Not Reported",28,"Arjan or Ajan and Parishan","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14932,68012,"IRN","METT",2013,"Not Reported",28,"Lake Parishan & Dasht-e-Arjan","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14933,17154,"IRN","Birdlife IBA",1994,"Not Reported",28,"Lake Urmia [or Orumiyeh]","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14934,313261,"IRN","Birdlife IBA",1994,"Not Reported",28,"Urumieh lake","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14935,17154,"IRN","METT",2009,"Not Reported",28,"Lake Urmia [or Orumiyeh]","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14936,17154,"IRN","METT",2013,"Not Reported",28,"Lake Urmia [or Orumiyeh]","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14937,17154,"IRN","METT",0,"Not Reported",28,"Lake Urmia [or Orumiyeh]","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14938,17175,"IRN","Birdlife IBA",1994,"Not Reported",28,"Miankaleh","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14939,313406,"IRN","Birdlife IBA",1994,"Not Reported",28,"Hara-e Roud-e Gaz","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14940,17167,"IRN","Birdlife IBA",1994,"Not Reported",28,"Deltas of Rud-e-Shur, Rud-e-Shirin and Rud-e-Minab","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14941,17128,"IRN","Birdlife IBA",1994,"Not Reported",28,"Shadegan","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14942,17157,"IRN","Birdlife IBA",1994,"Not Reported",28,"Shadegan Marshes & mudflats of Khor-al Amaya & Khor Musa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14943,17161,"IRN","Birdlife IBA",1994,"Not Reported",28,"Shurgol, Yadegarlu & Dorgeh Sangi Lakes","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14944,145816,"JAM","METT",2009,"Not Reported",28,"Black River Lower Morass","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14945,145816,"JAM","RAPPAM",2006,"Not Reported",28,"Black River Lower Morass","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14946,28856,"JAM","METT",2009,"Not Reported",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14947,28856,"JAM","PIP Site Consolidation",1997,"Not Reported",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14948,28856,"JAM","PIP Site Consolidation",1998,"Not Reported",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14949,28856,"JAM","PIP Site Consolidation",1999,"Not Reported",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14950,28856,"JAM","PIP Site Consolidation",2000,"Not Reported",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14951,28856,"JAM","PIP Site Consolidation",2001,"Not Reported",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14952,28856,"JAM","RAPPAM",2006,"Not Reported",28,"Blue and John Crow Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14953,555542822,"JAM","METT",2009,"Not Reported",28,"Bluefields Bay","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14954,13675,"JAM","METT",2009,"Not Reported",28,"Bogue Islands Lagoon","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14955,28982,"JAM","RAPPAM",2006,"Not Reported",28,"Bull Head","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14956,28941,"JAM","PIP Site Consolidation",2001,"Not Reported",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14957,28941,"JAM","PIP Site Consolidation",2002,"Not Reported",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14958,28941,"JAM","PIP Site Consolidation",2003,"Not Reported",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14959,28941,"JAM","PIP Site Consolidation",2004,"Not Reported",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14960,28941,"JAM","PIP Site Consolidation",2005,"Not Reported",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14961,28941,"JAM","RAPPAM",2006,"Not Reported",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14962,555542828,"JAM","METT",2009,"Not Reported",28,"Coral Spring","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14963,305460,"AUS","METT",2009,"Not Reported",28,"Discovery Bay","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14964,555542840,"JAM","RAPPAM",2006,"Not Reported",28,"Dolphin Head","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14965,555542821,"JAM","METT",2009,"Not Reported",28,"Galleon - Black River","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14966,555542818,"JAM","METT",2009,"Not Reported",28,"Galleon Harbour","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14967,28941,"JAM","METT",2002,"Not Reported",28,"Cockpit Country","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14968,555542827,"JAM","METT",2009,"Not Reported",28,"Mason River Savanna","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14970,555542827,"JAM","RAPPAM",2006,"Not Reported",28,"Mason River Savanna","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14971,203,"JAM","METT",2009,"Not Reported",28,"Montego Bay","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14973,203,"JAM","RAPPAM",2006,"Not Reported",28,"Montego Bay","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14974,28995,"JAM","RAPPAM",2006,"Not Reported",28,"Mount Diablo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14975,13676,"JAM","RAPPAM",2006,"Not Reported",28,"Negril","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14977,13676,"JAM","METT",2009,"Not Reported",28,"Negril","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14979,202,"JAM","RAPPAM",2006,"Not Reported",28,"Ocho Rios","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14980,202,"JAM","METT",2009,"Not Reported",28,"Ocho Rios","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14981,555542823,"JAM","METT",2009,"Not Reported",28,"Orange Bay","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14982,14871,"JAM","RAPPAM",2006,"Not Reported",28,"Palisadoes","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14983,902403,"JAM","METT",2009,"Not Reported",28,"Palisadoes - Port Royal","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14984,220101,"JAM","RAPPAM",2006,"Not Reported",28,"Portland Bight","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14985,220101,"JAM","METT",2009,"Not Reported",28,"Portland Bight","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14986,555542900,"JAM","METT",2009,"Not Reported",28,"Salt Harbour (revised)","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14987,555542820,"JAM","METT",2009,"Not Reported",28,"Three Bay Area","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14988,902908,"LBR","RAPPAM",2009,"Not Reported",28,"Kpatawee Wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14989,901219,"LBR","METT",2013,"Not Reported",28,"Lake Piso","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14991,902909,"LBR","RAPPAM",2009,"Not Reported",28,"Marshall Wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14992,902910,"LBR","RAPPAM",2009,"Not Reported",28,"Mesurado Wetlands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14993,9176,"LBR","Birdlife IBA",2013,"Not Reported",28,"East Nimba Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14994,901219,"LBR","RAPPAM",2009,"Not Reported",28,"Lake Piso","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14996,555512169,"LBR","METT",2009,"Not Reported",28,"Grand Kru-River Gee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14997,9170,"LBR","METT",2009,"Not Reported",28,"Grebo National Forest Park","National Forest Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14998,7409,"LBR","Birdlife IBA",2013,"Not Reported",28,"Sapo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +14999,7409,"LBR","METT",2002,"Not Reported",28,"Sapo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15000,7409,"LBR","METT",2011,"Not Reported",28,"Sapo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15001,97461,"LCA","RAPPAM",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15002,11846,"LCA","RAPPAM",2009,"Not Reported",28,"Pigeon Island","National Landmark","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15003,902367,"LCA","RAPPAM",2009,"Not Reported",28,"Pitons Management Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15004,902367,"LCA","WH Outlook Report",2014,"Not Reported",28,"Pitons Management Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15005,97463,"LCA","RAPPAM",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15006,71020,"LCA","RAPPAM",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15007,555542221,"LUX","Birdlife IBA",2009,"Not Reported",28,"Aspelt - Lannebur, Am Kessel","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15008,16296,"LUX","Birdlife IBA",2009,"Not Reported",28,"Haardt-Hesselbierg-Staebierg (Dudelange-Kayl-Rumelange)","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15009,337473,"LUX","Birdlife IBA",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15010,337500,"LUX","Birdlife IBA",2009,"Not Reported",28,"Dudelange Haard","ZSC - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15011,555536895,"LUX","Birdlife IBA",2009,"Not Reported",28,"Dudelange Haard","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15012,555542220,"LUX","Birdlife IBA",2009,"Not Reported",28,"Dudelange Haard","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15013,555577784,"LUX","Birdlife IBA",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15014,555578875,"LUX","Birdlife IBA",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15015,337472,"LUX","Birdlife IBA",2009,"Not Reported",28,"Esch-sur-Alzette Sud-est - Anciennes minières / Ellergronn 2","ZPS - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15016,337499,"LUX","Birdlife IBA",2009,"Not Reported",28,"Esch-sur-Alzette Sud-est - Anciennes minières / Ellergronn 1","ZSC - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15017,555536894,"LUX","Birdlife IBA",2009,"Not Reported",28,"Esch-sur-Alzette Sud-est - Anciennes minières / Ellegronn","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15018,555542219,"LUX","Birdlife IBA",2009,"Not Reported",28,"Esch-sur-Alzette Sud-est - Anciennes minières / Ellegronn","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15019,16358,"LUX","European Diploma",1973,"Not Reported",28,"Parc Naturel de l'Our","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15020,337457,"LUX","Birdlife IBA",2009,"Not Reported",28,"Vallée de la Syre de Moutfort à Roodt/Syre","ZPS - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15021,555542216,"LUX","Birdlife IBA",2009,"Not Reported",28,"Vallée de la Syre de Moutfort à Roodt/Syre","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15022,337455,"LUX","Birdlife IBA",2009,"Not Reported",28,"Vallée supérieure de la Sûre et affluents de la frontière belge à Esch-sur-Sûre","ZPS - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15023,337481,"LUX","Birdlife IBA",2009,"Not Reported",28,"Vallée supérieure de la Sûre / Lac du barrage","ZSC - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15024,555536875,"LUX","Birdlife IBA",2009,"Not Reported",28,"Vallée supérieure de la Sûre / Lac du barrage","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15025,555542214,"LUX","Birdlife IBA",2009,"Not Reported",28,"Vallée supérieure de la Sûre et affluents de la frontière belge à Esch-sur-Sûre","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15026,337454,"LUX","Birdlife IBA",2009,"Not Reported",28,"Vallée supérieure de l'Our et affluents de Lieler à Dasbourg","ZPS - Natura 2000","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15027,555542213,"LUX","Birdlife IBA",2009,"Not Reported",28,"Vallée supérieure de l'Our et affluents de Lieler à Dasbourg","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15028,2327,"MLI","RAPPAM",2008,"Not Reported",28,"R�serve partielle de faune d'Ansongo-M�naka","Partial Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15029,555556061,"MLI","RAPPAM",2008,"Not Reported",28,"R�serve partielle de faune du Banifing-Baoul�","Partial Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15030,5086,"MLI","RAPPAM",2008,"Not Reported",28,"R�serve de Biosph�re du Baoul�","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15032,5086,"MLI","GOBI Survey",2006,"Not Reported",28,"R�serve de Biosph�re du Baoul�","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15034,20171,"MLI","WH Outlook Report",2014,"Not Reported",28,"Cliff of Bandiagara (Land of the Dogons)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15035,902264,"MLI","RAPPAM",2009,"Not Reported",28,"Delta Int�rieur du Niger","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15036,20171,"MLI","Birdlife IBA",2001,"Not Reported",28,"Cliff of Bandiagara (Land of the Dogons)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15037,2321,"MLI","RAPPAM",2008,"Not Reported",28,"R�serve partielle de faune dite des El�phants du Gourma","Partial Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15038,2325,"MLI","RAPPAM",2008,"Not Reported",28,"R�serve totale de faune de K�ni�baoul�","Total Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15041,317195,"MLI","METT",2009,"Not Reported",28,"Parc National Kouroufing","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15042,317193,"MLI","METT",2009,"Not Reported",28,"Parc National de Wongo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15043,555556064,"MLI","METT",2009,"Not Reported",28,"R�serve totale de faune de Mand� Wula","Total Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15044,317194,"MLI","METT",2009,"Not Reported",28,"Sanctuaire des Chimpanz�s du Bafing","Chimpanzee Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15045,3213,"MLI","RAPPAM",2008,"Not Reported",28,"R�serve totale de faune de Sounsan","Total Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15047,555556053,"MLI","RAPPAM",2008,"Not Reported",28,"Zone d'Int�r�t Cyn�g�tique de Tidermene-Alata","Hunting Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15048,14818,"MLT","Birdlife IBA",2013,"Not Reported",28,"L-inħawi fuq l-Għoljiet ta' Ċenċ, Għawdex","Bird Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15049,330746,"MLT","Birdlife IBA",2013,"Not Reported",28,"Ta' Ċenċ (Sannat, Għawdex)","Site of Scientific Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15050,330726,"MLT","Birdlife IBA",2013,"Not Reported",28,"L-Inħawi tar-Ramla tat-Torri / Rdum tal-Madonna","Special Areas of Conservation - International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15051,555540716,"MLT","Birdlife IBA",2013,"Not Reported",28,"L-Inhawi tar-Ramla tat-Torri u tal-Irdum tal-Madonna","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15052,555552403,"MLT","Birdlife IBA",2013,"Not Reported",28,"L-Inhawi tar-Ramla tat-Torri u tal-Irdum tal-Madonna","Special Protection Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15053,555580324,"MLT","Birdlife IBA",2013,"Not Reported",28,"L-Inhawi tar-Ramla tat-Torri u tal-Irdum tal-Madonna","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15054,555540727,"MLT","Birdlife IBA",2013,"Not Reported",28,"Rdumijiet ta' Malta: Wied Moqbol sal-Ponta ta' Benghisa","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15055,555552414,"MLT","Birdlife IBA",2013,"Not Reported",28,"Rdumijiet ta' Malta: Wied Moqbol sal-Ponta ta' Benghisa","Special Protection Areas","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15056,33184,"MWI","Birdlife IBA",2013,"Not Reported",28,"Dzalanyama","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15057,780,"MWI","RAPPAM",2006,"Not Reported",28,"Kasungu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15058,145538,"MWI","Birdlife IBA",2001,"Not Reported",28,"Lake Chilwa","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15059,2317,"MWI","RAPPAM",2006,"Not Reported",28,"Lake Malawi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15060,10904,"MWI","WH Outlook Report",2014,"Not Reported",28,"Lake Malawi National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15061,2315,"MWI","RAPPAM",2006,"Not Reported",28,"Lengwe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15062,2315,"MWI","METT",2012,"Not Reported",28,"Lengwe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15063,2316,"MWI","METT",2012,"Not Reported",28,"Liwonde","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15064,2316,"MWI","RAPPAM",2006,"Not Reported",28,"Liwonde","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15065,2319,"MWI","RAPPAM",2006,"Not Reported",28,"Majete","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15066,220264,"MWI","GOBI Survey",2006,"Not Reported",28,"Mount Mulanje","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15067,2320,"MWI","RAPPAM",2006,"Not Reported",28,"Mwabvi","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15068,2318,"MWI","METT",2010,"Not Reported",28,"Nkhota-Kota","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15069,2318,"MWI","RAPPAM",2006,"Not Reported",28,"Nkhota-Kota","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15071,33185,"MWI","Birdlife IBA",2013,"Not Reported",28,"Ntchisi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15072,779,"MWI","RAPPAM",2006,"Not Reported",28,"Nyika","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15073,33167,"MWI","Birdlife IBA",2013,"Not Reported",28,"Soche","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15074,33172,"MWI","Birdlife IBA",2013,"Not Reported",28,"Thyolo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15075,4648,"MWI","METT",2010,"Not Reported",28,"Vwaza Marsh","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15076,4648,"MWI","RAPPAM",2006,"Not Reported",28,"Vwaza Marsh","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15077,20299,"NGA","Africa Rainforest Study",2001,"Not Reported",28,"Cross River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15078,37009,"NGA","METT",2003,"Not Reported",28,"Cross River North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15079,7873,"NGA","Birdlife IBA",2013,"Not Reported",28,"Gashaka-Gumti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15080,36813,"NGA","Birdlife IBA",2009,"Not Reported",28,"Ibadan","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15081,36808,"NGA","RAPPAM",2002,"Not Reported",28,"Oba Hills","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15082,36979,"NGA","METT",2003,"Not Reported",28,"Okomu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15083,36979,"NGA","RAPPAM",2002,"Not Reported",28,"Okomu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15084,7465,"NGA","Birdlife IBA",2009,"Not Reported",28,"Okomu","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15085,36979,"NGA","Birdlife IBA",2009,"Not Reported",28,"Okomu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15086,37009,"NGA","RAPPAM",2002,"Not Reported",28,"Cross River North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15087,36820,"NGA","Birdlife IBA",2001,"Not Reported",28,"Omo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15088,1332,"NGA","Birdlife IBA",2013,"Not Reported",28,"Yankari","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15089,36534,"NGA","Birdlife IBA",2013,"Not Reported",28,"Yankari","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15090,902489,"NOR","WH Outlook Report",2014,"Not Reported",28,"West Norwegian Fjords – Geirangerfjord and Nærøyfjord","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15091,198328,"PHL","Birdlife IBA",2001,"Not Reported",28,"Agusan Marsh Wildlife Sanctuary","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15092,306406,"PHL","METT",2006,"Not Reported",28,"Angat","Watershed Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15093,555549240,"PHL","METT",2010,"Not Reported",28,"Balabag","Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15094,5216,"PHL","METT",2009,"Not Reported",28,"Balbalasang-Balbalan National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15095,5211,"PHL","METT",2006,"Not Reported",28,"Bicol","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15096,313617,"PHL","Asean MEE",2012,"Not Reported",28,"Mount Iglit Baco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15097,7237,"PHL","METT",2006,"Not Reported",28,"Libmanan Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15098,555577558,"PHL","WH Outlook Report",2014,"Not Reported",28,"Mount Hamiguitan Range Wildlife Sanctuary","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15099,64412,"PHL","Asean MEE",2012,"Not Reported",28,"Mount Kitanglad Range","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15100,10326,"PHL","Asean MEE",2012,"Not Reported",28,"Mount Malindang","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15101,1337,"PHL","METT",2008,"Not Reported",28,"Mts. Iglit-Baco National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15102,317296,"PHL","METT",2006,"Not Reported",28,"Northern Sierra Madre Mountain Range","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15103,555549244,"PHL","METT",2008,"Not Reported",28,"Poblacion","Fish Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15104,317298,"PHL","METT",2009,"Not Reported",28,"Polilio","Watershed Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15105,198299,"PHL","WH Outlook Report",2014,"Not Reported",28,"Puerto-Princesa Subterranean River National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15106,555549230,"PHL","MPA MEE",2003,"Not Reported",28,"Tubbataha Reef","Natural Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15107,68917,"PHL","WH Outlook Report",2014,"Not Reported",28,"Tubbataha Reefs Natural Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15108,862,"RWA","Birdlife IBA",2013,"Not Reported",28,"Akagera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15109,9148,"RWA","METT",2004,"Not Reported",28,"Nyungwe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15110,9148,"RWA","Birdlife IBA",2013,"Not Reported",28,"Nyungwe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15111,863,"RWA","METT",2004,"Not Reported",28,"Volcans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15112,863,"RWA","Birdlife IBA",2001,"Not Reported",28,"Volcans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15113,2337,"SDN","METT",2009,"Not Reported",28,"Badingilo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15114,1371,"SDN","METT",2009,"Not Reported",28,"Boma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15115,2336,"SDN","Birdlife IBA",2001,"Not Reported",28,"Dinder","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15116,902398,"SDN","GOBI Survey",2006,"Not Reported",28,"Dinder National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15118,903,"SDN","METT",2009,"Not Reported",28,"Southern","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15119,1368,"SDN","METT",2009,"Not Reported",28,"Zeraf","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15120,168242,"SLB","WH Outlook Report",2014,"Not Reported",28,"East Rennell","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15121,302579,"SYR","METT",2008,"Not Reported",28,"Abu Kubeiss","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15122,302579,"SYR","METT",2012,"Not Reported",28,"Abu Kubeiss","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15123,350,"AGO","METT",2012,"Not Reported",28,"National Park Bicuar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15124,351,"AGO","METT",2012,"Not Reported",28,"National Park Cangandala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15125,347,"AGO","METT",2011,"Not Reported",28,"National Park Iona","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15126,348,"AGO","METT",2012,"Not Reported",28,"National Park Quiçãma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15313,354093,"AUS","NSW SOP",2005,"Not Reported",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15314,354093,"AUS","NSW SOP",2007,"Not Reported",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15315,354093,"AUS","NSW SOP",2010,"Not Reported",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15316,354093,"AUS","NSW SOP",2013,"Not Reported",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15317,354093,"AUS","NSW SOP",2004,"Not Reported",28,"Aberbaldie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15318,555543266,"AUS","NSW SOP",2007,"Not Reported",28,"Abercrombie","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15319,555543266,"AUS","NSW SOP",2010,"Not Reported",28,"Abercrombie","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15320,555543266,"AUS","NSW SOP",2013,"Not Reported",28,"Abercrombie","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15321,102535,"AUS","NSW SOP",2005,"Not Reported",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15322,102535,"AUS","NSW SOP",2007,"Not Reported",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15323,102535,"AUS","NSW SOP",2010,"Not Reported",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15324,102535,"AUS","NSW SOP",2013,"Not Reported",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15325,555548695,"AUS","NSW SOP",2013,"Not Reported",28,"Abercrombie River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15326,102535,"AUS","NSW SOP",2004,"Not Reported",28,"Abercrombie River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15327,313747,"AUS","Birdlife IBA",2008,"Not Reported",28,"Adele Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15328,555576608,"AUS","NSW SOP",2013,"Not Reported",28,"Adelyne","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15329,23405,"AUS","NSW SOP",2005,"Not Reported",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15330,23405,"AUS","NSW SOP",2007,"Not Reported",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15331,23405,"AUS","NSW SOP",2010,"Not Reported",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15332,23405,"AUS","NSW SOP",2013,"Not Reported",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15333,23405,"AUS","NSW SOP",2004,"Not Reported",28,"Agnes Banks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15334,314543,"AUS","Victorian SOP",2010,"Not Reported",28,"Aire River W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15335,314543,"AUS","Victorian SOP",2005,"Not Reported",28,"Aire River W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15336,314543,"AUS","Victorian SOP",2013,"Not Reported",28,"Aire River W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15337,311243,"AUS","Birdlife IBA",2008,"Not Reported",28,"Black Pyramid Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15338,555548789,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Albinia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15339,555548789,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Albinia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15340,550,"AUS","Victorian SOP",2010,"Not Reported",28,"Alfred National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15341,550,"AUS","Victorian SOP",2005,"Not Reported",28,"Alfred National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15342,550,"AUS","Victorian SOP",2013,"Not Reported",28,"Alfred National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15343,313811,"AUS","NTMEE",2013,"Not Reported",28,"Alice Springs Telegraph Station","Historical Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15344,309250,"AUS","NSW SOP",2010,"Not Reported",28,"Alma Tier","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15345,354115,"AUS","NSW SOP",2007,"Not Reported",28,"Alma B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15346,354115,"AUS","NSW SOP",2013,"Not Reported",28,"Alma B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15347,62941,"AUS","Victorian SOP",2005,"Not Reported",28,"Alpine National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15348,62941,"AUS","Victorian SOP",2010,"Not Reported",28,"Alpine National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15349,62941,"AUS","Victorian SOP",2013,"Not Reported",28,"Alpine National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15350,23792,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Alton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15351,23792,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Alton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15352,555548821,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Alwal (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15353,354118,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Amamoor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15354,354118,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Amamoor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15355,125956,"AUS","NSW SOP",2005,"Not Reported",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15356,125956,"AUS","NSW SOP",2007,"Not Reported",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15357,125956,"AUS","NSW SOP",2010,"Not Reported",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15358,125956,"AUS","NSW SOP",2013,"Not Reported",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15359,125956,"AUS","NSW SOP",2004,"Not Reported",28,"Andrew Johnston Big Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15360,125957,"AUS","Victorian SOP",2005,"Not Reported",28,"Anglesea B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15362,125957,"AUS","Victorian SOP",2010,"Not Reported",28,"Anglesea B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15363,125957,"AUS","Victorian SOP",2013,"Not Reported",28,"Anglesea B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15364,354128,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Annan River (Yuku Baja-Muliku)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15365,354128,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Annan River (Yuku Baja-Muliku)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15366,314711,"AUS","Victorian SOP",2010,"Not Reported",28,"Annuello F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15367,314711,"AUS","Victorian SOP",2013,"Not Reported",28,"Annuello F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15368,314104,"AUS","Victorian SOP",2005,"Not Reported",28,"Apsley B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15369,309969,"AUS","NSW SOP",2005,"Not Reported",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15370,309969,"AUS","NSW SOP",2007,"Not Reported",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15371,309969,"AUS","NSW SOP",2010,"Not Reported",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15372,309969,"AUS","NSW SOP",2013,"Not Reported",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15373,309969,"AUS","NSW SOP",2004,"Not Reported",28,"Arakoola","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15374,354135,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15375,354135,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15376,354135,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15377,354135,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15378,354135,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15379,309970,"AUS","NSW SOP",2005,"Not Reported",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15380,309970,"AUS","NSW SOP",2007,"Not Reported",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15381,309970,"AUS","NSW SOP",2010,"Not Reported",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15382,309970,"AUS","NSW SOP",2013,"Not Reported",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15383,309970,"AUS","NSW SOP",2004,"Not Reported",28,"Arakwal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15384,309971,"AUS","NSW SOP",2005,"Not Reported",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15385,309971,"AUS","NSW SOP",2007,"Not Reported",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15386,309971,"AUS","NSW SOP",2010,"Not Reported",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15387,309971,"AUS","NSW SOP",2004,"Not Reported",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15388,309971,"AUS","NSW SOP",2013,"Not Reported",28,"Araluen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15389,24574,"AUS","Victorian SOP",2005,"Not Reported",28,"Arthurs Seat","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15390,24574,"AUS","Victorian SOP",2010,"Not Reported",28,"Arthurs Seat","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15391,24574,"AUS","Victorian SOP",2013,"Not Reported",28,"Arthurs Seat","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15392,24568,"AUS","Birdlife IBA",2008,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15393,900733,"AUS","Birdlife IBA",2008,"Not Reported",28,"Ashmore Reef National Nature Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15394,555556870,"AUS","Birdlife IBA",2008,"Not Reported",28,"Ashmore Reef","Commonwealth Marine Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15395,309856,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Astrebla Downs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15396,309856,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Astrebla Downs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15397,23798,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Auburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15398,23798,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Auburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15399,61604,"AUS","WH Outlook Report",2014,"Not Reported",28,"Australian Fossil Mammal Sites (Riversleigh / Naracoorte)","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15400,23409,"AUS","NSW SOP",2005,"Not Reported",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15401,23409,"AUS","NSW SOP",2007,"Not Reported",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15402,23409,"AUS","NSW SOP",2010,"Not Reported",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15403,23409,"AUS","NSW SOP",2013,"Not Reported",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15404,23409,"AUS","NSW SOP",2004,"Not Reported",28,"Avisford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15405,24576,"AUS","Victorian SOP",2005,"Not Reported",28,"Avon","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15406,24576,"AUS","Victorian SOP",2010,"Not Reported",28,"Avon","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15407,24576,"AUS","Victorian SOP",2013,"Not Reported",28,"Avon","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15408,127332,"AUS","Victorian SOP",2005,"Not Reported",28,"Avon - Mt Hedrick N.F.S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15409,354159,"AUS","NSW SOP",2005,"Not Reported",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15410,354159,"AUS","NSW SOP",2007,"Not Reported",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15411,354159,"AUS","NSW SOP",2010,"Not Reported",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15412,354159,"AUS","NSW SOP",2013,"Not Reported",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15413,354159,"AUS","NSW SOP",2004,"Not Reported",28,"Avondale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15414,23410,"AUS","NSW SOP",2005,"Not Reported",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15415,23410,"AUS","NSW SOP",2007,"Not Reported",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15416,23410,"AUS","NSW SOP",2010,"Not Reported",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15417,23410,"AUS","NSW SOP",2013,"Not Reported",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15418,23410,"AUS","NSW SOP",2004,"Not Reported",28,"Awabakal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15419,309972,"AUS","NSW SOP",2005,"Not Reported",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15420,309972,"AUS","NSW SOP",2007,"Not Reported",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15421,309972,"AUS","NSW SOP",2010,"Not Reported",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15422,309972,"AUS","NSW SOP",2004,"Not Reported",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15423,309972,"AUS","NSW SOP",2013,"Not Reported",28,"Baalijin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15424,555576617,"AUS","NSW SOP",2013,"Not Reported",28,"Back Arm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15425,309973,"AUS","NSW SOP",2005,"Not Reported",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15426,309973,"AUS","NSW SOP",2007,"Not Reported",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15427,309973,"AUS","NSW SOP",2010,"Not Reported",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15428,309973,"AUS","NSW SOP",2013,"Not Reported",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15429,309973,"AUS","NSW SOP",2004,"Not Reported",28,"Back River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15430,23411,"AUS","NSW SOP",2005,"Not Reported",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15431,23411,"AUS","NSW SOP",2007,"Not Reported",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15432,23411,"AUS","NSW SOP",2010,"Not Reported",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15433,23411,"AUS","NSW SOP",2013,"Not Reported",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15434,23411,"AUS","NSW SOP",2004,"Not Reported",28,"Badja Swamps","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15435,555548726,"AUS","Victorian SOP",2010,"Not Reported",28,"Bael Bael Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15436,555548726,"AUS","Victorian SOP",2013,"Not Reported",28,"Bael Bael Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15437,311178,"AUS","NSW SOP",2005,"Not Reported",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15438,311178,"AUS","NSW SOP",2007,"Not Reported",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15439,311178,"AUS","NSW SOP",2010,"Not Reported",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15440,311178,"AUS","NSW SOP",2013,"Not Reported",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15441,313679,"AUS","NSW SOP",2004,"Not Reported",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15442,309974,"AUS","NSW SOP",2005,"Not Reported",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15443,309974,"AUS","NSW SOP",2007,"Not Reported",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15444,309974,"AUS","NSW SOP",2010,"Not Reported",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15445,309974,"AUS","NSW SOP",2013,"Not Reported",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15446,309974,"AUS","NSW SOP",2004,"Not Reported",28,"Bagul Waajaarr","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15447,387,"AUS","NSW SOP",2005,"Not Reported",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15448,387,"AUS","NSW SOP",2007,"Not Reported",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15449,387,"AUS","NSW SOP",2010,"Not Reported",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15450,387,"AUS","NSW SOP",2013,"Not Reported",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15451,387,"AUS","NSW SOP",2004,"Not Reported",28,"Bald Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15452,125976,"AUS","NSW SOP",2005,"Not Reported",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15453,125976,"AUS","NSW SOP",2007,"Not Reported",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15454,125976,"AUS","NSW SOP",2010,"Not Reported",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15455,125976,"AUS","NSW SOP",2013,"Not Reported",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15456,125976,"AUS","NSW SOP",2004,"Not Reported",28,"Ballina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15457,555576619,"AUS","NSW SOP",2013,"Not Reported",28,"Balowra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15458,127429,"AUS","Victorian SOP",2005,"Not Reported",28,"Baluk Willam N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15459,309976,"AUS","NSW SOP",2005,"Not Reported",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15460,309976,"AUS","NSW SOP",2007,"Not Reported",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15461,309976,"AUS","NSW SOP",2010,"Not Reported",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15462,309976,"AUS","NSW SOP",2013,"Not Reported",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15463,309976,"AUS","NSW SOP",2004,"Not Reported",28,"Bamarang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15464,354177,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Ban Ban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15465,354177,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Ban Ban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15466,23414,"AUS","NSW SOP",2005,"Not Reported",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15467,23414,"AUS","NSW SOP",2007,"Not Reported",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15468,23414,"AUS","NSW SOP",2010,"Not Reported",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15469,23414,"AUS","NSW SOP",2004,"Not Reported",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15470,23414,"AUS","NSW SOP",2013,"Not Reported",28,"Bandicoot Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15471,309979,"AUS","NSW SOP",2005,"Not Reported",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15472,309979,"AUS","NSW SOP",2007,"Not Reported",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15473,309979,"AUS","NSW SOP",2010,"Not Reported",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15474,309979,"AUS","NSW SOP",2013,"Not Reported",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15475,309979,"AUS","NSW SOP",2004,"Not Reported",28,"Barool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15476,555576620,"AUS","NSW SOP",2013,"Not Reported",28,"Bango","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15477,354180,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15478,354180,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15479,127448,"AUS","Victorian SOP",2005,"Not Reported",28,"Bannockburn B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15480,311187,"AUS","NSW SOP",2005,"Not Reported",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15481,311187,"AUS","NSW SOP",2007,"Not Reported",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15482,311187,"AUS","NSW SOP",2010,"Not Reported",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15484,311187,"AUS","NSW SOP",2013,"Not Reported",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15486,354182,"AUS","NSW SOP",2005,"Not Reported",28,"Banyabba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15487,354182,"AUS","NSW SOP",2007,"Not Reported",28,"Banyabba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15488,311187,"AUS","NSW SOP",2004,"Not Reported",28,"Banyabba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15489,354182,"AUS","NSW SOP",2004,"Not Reported",28,"Banyabba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15490,309978,"AUS","NSW SOP",2005,"Not Reported",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15491,309978,"AUS","NSW SOP",2007,"Not Reported",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15492,309978,"AUS","NSW SOP",2010,"Not Reported",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15493,309978,"AUS","NSW SOP",2013,"Not Reported",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15494,311178,"AUS","NSW SOP",2004,"Not Reported",28,"Bago Bluff","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15495,555543697,"AUS","NSW SOP",2010,"Not Reported",28,"Barayamal","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15496,555543697,"AUS","NSW SOP",2013,"Not Reported",28,"Barayamal","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15497,354189,"AUS","NSW SOP",2005,"Not Reported",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15498,354189,"AUS","NSW SOP",2007,"Not Reported",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15499,354189,"AUS","NSW SOP",2010,"Not Reported",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15500,354189,"AUS","NSW SOP",2013,"Not Reported",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15501,354189,"AUS","NSW SOP",2004,"Not Reported",28,"Bargo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15502,555543698,"AUS","NSW SOP",2010,"Not Reported",28,"Bargo River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15503,555543698,"AUS","NSW SOP",2013,"Not Reported",28,"Bargo River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15504,555548814,"AUS","Victorian SOP",2005,"Not Reported",28,"Barmah National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15505,555548814,"AUS","Victorian SOP",2010,"Not Reported",28,"Barmah National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15506,555548814,"AUS","Victorian SOP",2013,"Not Reported",28,"Barmah National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15507,125983,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Barnard Island Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15508,125983,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Barnard Island Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15514,314713,"AUS","Victorian SOP",2005,"Not Reported",28,"Barrabool F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15515,314713,"AUS","Victorian SOP",2013,"Not Reported",28,"Barrabool F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15516,555543700,"AUS","NSW SOP",2007,"Not Reported",28,"Barrakee","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15517,555543700,"AUS","NSW SOP",2010,"Not Reported",28,"Barrakee","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15518,555543700,"AUS","NSW SOP",2013,"Not Reported",28,"Barrakee","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15519,1153,"AUS","NSW SOP",2005,"Not Reported",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15520,1153,"AUS","NSW SOP",2007,"Not Reported",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15521,1153,"AUS","NSW SOP",2010,"Not Reported",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15522,1153,"AUS","NSW SOP",2013,"Not Reported",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15523,1153,"AUS","NSW SOP",2004,"Not Reported",28,"Barren Grounds","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15524,309981,"AUS","NSW SOP",2005,"Not Reported",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15525,309981,"AUS","NSW SOP",2007,"Not Reported",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15526,309981,"AUS","NSW SOP",2010,"Not Reported",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15527,309981,"AUS","NSW SOP",2013,"Not Reported",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15528,309981,"AUS","NSW SOP",2004,"Not Reported",28,"Barrengarry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15529,308670,"AUS","NSW SOP",2010,"Not Reported",28,"Barrenjoey","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15530,313669,"AUS","NSW SOP",2005,"Not Reported",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15531,313669,"AUS","NSW SOP",2007,"Not Reported",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15532,313669,"AUS","NSW SOP",2010,"Not Reported",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15533,313669,"AUS","NSW SOP",2013,"Not Reported",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15534,354195,"AUS","NSW SOP",2005,"Not Reported",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15535,354195,"AUS","NSW SOP",2007,"Not Reported",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15536,354195,"AUS","NSW SOP",2010,"Not Reported",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15537,354195,"AUS","NSW SOP",2013,"Not Reported",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15538,313669,"AUS","NSW SOP",2004,"Not Reported",28,"Barrington Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15539,354195,"AUS","NSW SOP",2004,"Not Reported",28,"Barrington Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15540,444,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Barron Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15541,444,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Barron Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15542,354196,"AUS","Birdlife IBA",2008,"Not Reported",28,"Barrow Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15543,311196,"AUS","NSW SOP",2005,"Not Reported",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15544,311196,"AUS","NSW SOP",2007,"Not Reported",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15545,311196,"AUS","NSW SOP",2010,"Not Reported",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15546,311196,"AUS","NSW SOP",2004,"Not Reported",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15547,311196,"AUS","NSW SOP",2013,"Not Reported",28,"Barton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15548,555576624,"AUS","NSW SOP",2013,"Not Reported",28,"Barwon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15549,555576625,"AUS","NSW SOP",2013,"Not Reported",28,"Barwon","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15550,305387,"AUS","Victorian SOP",2010,"Not Reported",28,"Barwon Bluff","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15551,305387,"AUS","Victorian SOP",2005,"Not Reported",28,"Barwon Bluff","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15552,305387,"AUS","Victorian SOP",2013,"Not Reported",28,"Barwon Bluff","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15553,555548741,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Basilisk Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15554,309982,"AUS","NSW SOP",2005,"Not Reported",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15555,309982,"AUS","NSW SOP",2007,"Not Reported",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15556,309982,"AUS","NSW SOP",2010,"Not Reported",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15557,309982,"AUS","NSW SOP",2013,"Not Reported",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15558,309982,"AUS","NSW SOP",2004,"Not Reported",28,"Basket Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15559,555548008,"AUS","NSW SOP",2010,"Not Reported",28,"Batemans","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15560,314802,"AUS","Victorian SOP",2010,"Not Reported",28,"Bald Hills Creek W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15561,314803,"AUS","Victorian SOP",2005,"Not Reported",28,"Bats Ridge W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15562,314803,"AUS","Victorian SOP",2013,"Not Reported",28,"Bats Ridge W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15563,24580,"AUS","Victorian SOP",2005,"Not Reported",28,"Baw Baw National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15564,24580,"AUS","Victorian SOP",2010,"Not Reported",28,"Baw Baw National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15565,24580,"AUS","Victorian SOP",2013,"Not Reported",28,"Baw Baw National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15566,314861,"AUS","Victorian SOP",2010,"Not Reported",28,"Yatmerone Swamp W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15567,314862,"AUS","Victorian SOP",2005,"Not Reported",28,"Bay of Islands Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15568,314862,"AUS","Victorian SOP",2013,"Not Reported",28,"Bay of Islands Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15569,555576628,"AUS","NSW SOP",2013,"Not Reported",28,"Bedooba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15570,63907,"AUS","Birdlife IBA",2008,"Not Reported",28,"Bedout Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15571,354211,"AUS","Victorian SOP",2005,"Not Reported",28,"Beechworth B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15572,555548785,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Beeron","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15573,555548785,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Beeron","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15574,309983,"AUS","NSW SOP",2005,"Not Reported",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15575,309983,"AUS","NSW SOP",2007,"Not Reported",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15576,309983,"AUS","NSW SOP",2010,"Not Reported",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15577,309983,"AUS","NSW SOP",2013,"Not Reported",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15578,309983,"AUS","NSW SOP",2004,"Not Reported",28,"Bees Nest","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15579,354220,"AUS","NSW SOP",2005,"Not Reported",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15580,354220,"AUS","NSW SOP",2007,"Not Reported",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15581,354220,"AUS","NSW SOP",2010,"Not Reported",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15582,354220,"AUS","NSW SOP",2013,"Not Reported",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15583,354220,"AUS","NSW SOP",2004,"Not Reported",28,"Belford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15584,23417,"AUS","NSW SOP",2005,"Not Reported",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15585,23417,"AUS","NSW SOP",2007,"Not Reported",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15586,23417,"AUS","NSW SOP",2010,"Not Reported",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15587,23417,"AUS","NSW SOP",2004,"Not Reported",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15588,23417,"AUS","NSW SOP",2013,"Not Reported",28,"Bell Bird Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15589,314605,"AUS","Birdlife IBA",2008,"Not Reported",28,"Lake Connewarre W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15590,309984,"AUS","NSW SOP",2005,"Not Reported",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15591,309984,"AUS","NSW SOP",2007,"Not Reported",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15592,309984,"AUS","NSW SOP",2010,"Not Reported",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15593,309984,"AUS","NSW SOP",2013,"Not Reported",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15594,310114,"AUS","NSW SOP",2004,"Not Reported",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15595,555548790,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bellthorpe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15596,555548790,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bellthorpe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15597,555576629,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15598,23418,"AUS","NSW SOP",2005,"Not Reported",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15599,23418,"AUS","NSW SOP",2007,"Not Reported",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15600,23418,"AUS","NSW SOP",2010,"Not Reported",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15601,23418,"AUS","NSW SOP",2013,"Not Reported",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15602,23418,"AUS","NSW SOP",2004,"Not Reported",28,"Belowla Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15603,311220,"AUS","Victorian SOP",2005,"Not Reported",28,"Bemm River S.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15604,311220,"AUS","Victorian SOP",2010,"Not Reported",28,"Bemm River S.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15605,311220,"AUS","Victorian SOP",2013,"Not Reported",28,"Bemm River S.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15606,372,"AUS","NSW SOP",2005,"Not Reported",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15607,372,"AUS","NSW SOP",2007,"Not Reported",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15608,372,"AUS","NSW SOP",2010,"Not Reported",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15609,372,"AUS","NSW SOP",2013,"Not Reported",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15610,372,"AUS","NSW SOP",2004,"Not Reported",28,"Ben Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15611,102537,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15612,102537,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15613,102537,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15614,102537,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15615,102537,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15616,517,"AUS","Birdlife IBA",2008,"Not Reported",28,"Ben Lomond","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15617,309986,"AUS","NSW SOP",2005,"Not Reported",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15618,309986,"AUS","NSW SOP",2007,"Not Reported",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15619,309986,"AUS","NSW SOP",2010,"Not Reported",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15620,309986,"AUS","NSW SOP",2013,"Not Reported",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15621,309986,"AUS","NSW SOP",2004,"Not Reported",28,"Benambra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15622,354233,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Benarkin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15623,354233,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Benarkin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15624,555576630,"AUS","NSW SOP",2013,"Not Reported",28,"Bendick Murrell","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15625,23810,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bendidee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15626,23810,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bendidee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15627,63926,"AUS","Birdlife IBA",2008,"Not Reported",28,"Benger Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15628,555543706,"AUS","NSW SOP",2010,"Not Reported",28,"Beni","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15629,555543706,"AUS","NSW SOP",2013,"Not Reported",28,"Beni","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15630,354237,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Beninbi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15631,354237,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Beninbi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15632,354239,"AUS","NSW SOP",2005,"Not Reported",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15633,354239,"AUS","NSW SOP",2007,"Not Reported",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15634,354239,"AUS","NSW SOP",2010,"Not Reported",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15635,354239,"AUS","NSW SOP",2013,"Not Reported",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15636,354239,"AUS","NSW SOP",2004,"Not Reported",28,"Bents Basin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15637,23419,"AUS","NSW SOP",2005,"Not Reported",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15638,23419,"AUS","NSW SOP",2007,"Not Reported",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15639,23419,"AUS","NSW SOP",2010,"Not Reported",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15640,23419,"AUS","NSW SOP",2013,"Not Reported",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15641,23419,"AUS","NSW SOP",2004,"Not Reported",28,"Berkeley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15642,354240,"AUS","NSW SOP",2005,"Not Reported",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15643,354240,"AUS","NSW SOP",2007,"Not Reported",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15644,354240,"AUS","NSW SOP",2010,"Not Reported",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15645,354240,"AUS","NSW SOP",2013,"Not Reported",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15646,354240,"AUS","NSW SOP",2004,"Not Reported",28,"Berlang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15647,309987,"AUS","NSW SOP",2005,"Not Reported",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15648,309987,"AUS","NSW SOP",2007,"Not Reported",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15649,309987,"AUS","NSW SOP",2010,"Not Reported",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15650,309987,"AUS","NSW SOP",2013,"Not Reported",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15651,309987,"AUS","NSW SOP",2004,"Not Reported",28,"Bermaguee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15652,354242,"AUS","NSW SOP",2005,"Not Reported",28,"Berowra Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15653,354242,"AUS","NSW SOP",2007,"Not Reported",28,"Berowra Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15654,354242,"AUS","NSW SOP",2010,"Not Reported",28,"Berowra Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15655,354242,"AUS","NSW SOP",2013,"Not Reported",28,"Berowra Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15656,555576632,"AUS","NSW SOP",2013,"Not Reported",28,"Berowra Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15657,4696,"AUS","Birdlife IBA",2008,"Not Reported",28,"Betsey Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15658,305407,"AUS","Victorian SOP",2010,"Not Reported",28,"Beware Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15659,305407,"AUS","Victorian SOP",2005,"Not Reported",28,"Beware Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15660,305407,"AUS","Victorian SOP",2013,"Not Reported",28,"Beware Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15661,126017,"AUS","NSW SOP",2005,"Not Reported",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15662,126017,"AUS","NSW SOP",2007,"Not Reported",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15663,126017,"AUS","NSW SOP",2010,"Not Reported",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15664,126017,"AUS","NSW SOP",2013,"Not Reported",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15665,126017,"AUS","NSW SOP",2004,"Not Reported",28,"Biamanga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15666,555543296,"AUS","NSW SOP",2010,"Not Reported",28,"Biddon","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15667,555543296,"AUS","NSW SOP",2013,"Not Reported",28,"Biddon","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15668,23421,"AUS","NSW SOP",2005,"Not Reported",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15669,23421,"AUS","NSW SOP",2007,"Not Reported",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15670,23421,"AUS","NSW SOP",2010,"Not Reported",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15671,23421,"AUS","NSW SOP",2013,"Not Reported",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15672,23421,"AUS","NSW SOP",2004,"Not Reported",28,"Big Bush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15673,528,"AUS","Victorian SOP",2005,"Not Reported",28,"Big Desert","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15674,528,"AUS","Victorian SOP",2010,"Not Reported",28,"Big Desert","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15675,528,"AUS","Victorian SOP",2013,"Not Reported",28,"Big Desert","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15676,311337,"AUS","Victorian SOP",2010,"Not Reported",28,"Big Reedy Lagoon W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15677,311337,"AUS","Victorian SOP",2005,"Not Reported",28,"Big Reedy Lagoon W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15678,555543297,"AUS","Birdlife IBA",2008,"Not Reported",28,"Billiatt","Wilderness Protection Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15679,309988,"AUS","NSW SOP",2005,"Not Reported",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15680,309988,"AUS","NSW SOP",2007,"Not Reported",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15681,309988,"AUS","NSW SOP",2010,"Not Reported",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15682,309988,"AUS","NSW SOP",2013,"Not Reported",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15683,309988,"AUS","NSW SOP",2004,"Not Reported",28,"Billinudgel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15684,309989,"AUS","NSW SOP",2005,"Not Reported",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15685,309989,"AUS","NSW SOP",2007,"Not Reported",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15686,309989,"AUS","NSW SOP",2010,"Not Reported",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15687,309989,"AUS","NSW SOP",2013,"Not Reported",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15688,309989,"AUS","NSW SOP",2004,"Not Reported",28,"Bimberamala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15689,23425,"AUS","NSW SOP",2005,"Not Reported",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15690,23425,"AUS","NSW SOP",2007,"Not Reported",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15691,23425,"AUS","NSW SOP",2010,"Not Reported",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15692,23425,"AUS","NSW SOP",2013,"Not Reported",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15693,23425,"AUS","NSW SOP",2004,"Not Reported",28,"Bimberi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15694,309990,"AUS","NSW SOP",2005,"Not Reported",28,"Bindarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15695,309990,"AUS","NSW SOP",2007,"Not Reported",28,"Bindarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15696,309990,"AUS","NSW SOP",2010,"Not Reported",28,"Bindarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15697,309990,"AUS","NSW SOP",2013,"Not Reported",28,"Bindarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15698,354256,"AUS","NSW SOP",2005,"Not Reported",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15699,354256,"AUS","NSW SOP",2007,"Not Reported",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15700,354256,"AUS","NSW SOP",2010,"Not Reported",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15701,354256,"AUS","NSW SOP",2013,"Not Reported",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15703,354256,"AUS","NSW SOP",2004,"Not Reported",28,"Bindarri","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15705,555543298,"AUS","NSW SOP",2010,"Not Reported",28,"Bingara","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15706,555543298,"AUS","NSW SOP",2013,"Not Reported",28,"Bingara","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15707,354257,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bingera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15708,354257,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bingera","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15709,309991,"AUS","NSW SOP",2005,"Not Reported",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15710,309991,"AUS","NSW SOP",2007,"Not Reported",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15711,309991,"AUS","NSW SOP",2010,"Not Reported",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15712,309991,"AUS","NSW SOP",2013,"Not Reported",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15713,309991,"AUS","NSW SOP",2004,"Not Reported",28,"Binjura","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15714,1144,"AUS","NSW SOP",2005,"Not Reported",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15715,1144,"AUS","NSW SOP",2007,"Not Reported",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15716,1144,"AUS","NSW SOP",2010,"Not Reported",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15717,1144,"AUS","NSW SOP",2013,"Not Reported",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15718,1144,"AUS","NSW SOP",2004,"Not Reported",28,"Binnaway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15719,555548805,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Binya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15720,555548805,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Binya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15721,24299,"AUS","NSW SOP",2005,"Not Reported",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15722,24299,"AUS","NSW SOP",2007,"Not Reported",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15723,24299,"AUS","NSW SOP",2010,"Not Reported",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15724,24299,"AUS","NSW SOP",2004,"Not Reported",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15725,24299,"AUS","NSW SOP",2013,"Not Reported",28,"Bird Islands","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15726,314714,"AUS","Victorian SOP",2010,"Not Reported",28,"Birdcage F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15727,309992,"AUS","NSW SOP",2005,"Not Reported",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15728,309992,"AUS","NSW SOP",2007,"Not Reported",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15729,309992,"AUS","NSW SOP",2010,"Not Reported",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15730,309992,"AUS","NSW SOP",2013,"Not Reported",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15731,313674,"AUS","NSW SOP",2004,"Not Reported",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15732,313684,"AUS","NSW SOP",2005,"Not Reported",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15733,313684,"AUS","NSW SOP",2007,"Not Reported",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15734,313684,"AUS","NSW SOP",2010,"Not Reported",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15735,313684,"AUS","NSW SOP",2013,"Not Reported",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15736,313684,"AUS","NSW SOP",2004,"Not Reported",28,"Black Andrew","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15737,354264,"AUS","NSW SOP",2005,"Not Reported",28,"Black Bulga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15738,354264,"AUS","NSW SOP",2007,"Not Reported",28,"Black Bulga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15739,354264,"AUS","NSW SOP",2010,"Not Reported",28,"Black Bulga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15740,354264,"AUS","NSW SOP",2013,"Not Reported",28,"Black Bulga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15741,309861,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Black Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15742,309861,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Black Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15743,24586,"AUS","Victorian SOP",2005,"Not Reported",28,"Black Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15744,24586,"AUS","Victorian SOP",2010,"Not Reported",28,"Black Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15745,24586,"AUS","Victorian SOP",2013,"Not Reported",28,"Black Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15746,314499,"AUS","Victorian SOP",2005,"Not Reported",28,"Black Range S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15747,314499,"AUS","Victorian SOP",2010,"Not Reported",28,"Black Range S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15748,127240,"AUS","Victorian SOP",2010,"Not Reported",28,"Black Dog Creek K30 SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15749,127240,"AUS","Victorian SOP",2005,"Not Reported",28,"Black Dog Creek K30 SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15750,127240,"AUS","Victorian SOP",2013,"Not Reported",28,"Black Dog Creek K30 SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15751,313894,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Blackbraes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15752,313894,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Blackbraes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15753,428,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Blackdown Tableland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15754,428,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Blackdown Tableland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15755,62952,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Blackwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15756,62952,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Blackwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15757,23823,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bladensburg","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15758,23823,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bladensburg","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15759,311246,"AUS","Victorian SOP",2005,"Not Reported",28,"Blond Bay G.L.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15760,314491,"AUS","Victorian SOP",2010,"Not Reported",28,"Blond Bay W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15761,314491,"AUS","Victorian SOP",2005,"Not Reported",28,"Blond Bay W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15762,314491,"AUS","Victorian SOP",2013,"Not Reported",28,"Blond Bay W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15763,313761,"AUS","NSW SOP",2007,"Not Reported",28,"Blue Gum Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15764,313761,"AUS","NSW SOP",2010,"Not Reported",28,"Blue Gum Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15765,313761,"AUS","NSW SOP",2013,"Not Reported",28,"Blue Gum Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15766,314552,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Blue Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15767,356,"AUS","NSW SOP",2005,"Not Reported",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15768,356,"AUS","NSW SOP",2007,"Not Reported",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15769,356,"AUS","NSW SOP",2010,"Not Reported",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15770,356,"AUS","NSW SOP",2004,"Not Reported",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15771,356,"AUS","NSW SOP",2013,"Not Reported",28,"Blue Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15774,555548727,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bluff Hill","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15775,555548727,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bluff Hill","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15776,309993,"AUS","NSW SOP",2005,"Not Reported",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15777,309993,"AUS","NSW SOP",2007,"Not Reported",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15778,309993,"AUS","NSW SOP",2010,"Not Reported",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15779,309993,"AUS","NSW SOP",2013,"Not Reported",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15780,309993,"AUS","NSW SOP",2004,"Not Reported",28,"Bluff River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15781,308672,"AUS","NSW SOP",2010,"Not Reported",28,"Boat Harbour","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15782,23435,"AUS","NSW SOP",2005,"Not Reported",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15783,23435,"AUS","NSW SOP",2007,"Not Reported",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15784,23435,"AUS","NSW SOP",2010,"Not Reported",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15785,23435,"AUS","NSW SOP",2013,"Not Reported",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15786,23435,"AUS","NSW SOP",2004,"Not Reported",28,"Boatharbour","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15787,555543306,"AUS","NSW SOP",2010,"Not Reported",28,"Bobbiwaa","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15788,555543306,"AUS","NSW SOP",2013,"Not Reported",28,"Bobbiwaa","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15789,309994,"AUS","NSW SOP",2005,"Not Reported",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15790,309994,"AUS","NSW SOP",2007,"Not Reported",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15791,309994,"AUS","NSW SOP",2010,"Not Reported",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15792,309994,"AUS","NSW SOP",2013,"Not Reported",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15793,309994,"AUS","NSW SOP",2004,"Not Reported",28,"Bobundara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15794,309995,"AUS","NSW SOP",2005,"Not Reported",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15795,309995,"AUS","NSW SOP",2007,"Not Reported",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15796,309995,"AUS","NSW SOP",2010,"Not Reported",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15797,309995,"AUS","NSW SOP",2013,"Not Reported",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15798,309995,"AUS","NSW SOP",2004,"Not Reported",28,"Bogandyera","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15799,23436,"AUS","NSW SOP",2005,"Not Reported",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15800,23436,"AUS","NSW SOP",2007,"Not Reported",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15801,23436,"AUS","NSW SOP",2010,"Not Reported",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15802,23436,"AUS","NSW SOP",2013,"Not Reported",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15803,23436,"AUS","NSW SOP",2004,"Not Reported",28,"Boginderra Hills","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15804,309996,"AUS","NSW SOP",2005,"Not Reported",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15805,309996,"AUS","NSW SOP",2007,"Not Reported",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15806,309996,"AUS","NSW SOP",2010,"Not Reported",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15807,309996,"AUS","NSW SOP",2013,"Not Reported",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15808,309996,"AUS","NSW SOP",2004,"Not Reported",28,"Bolivia Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15809,309997,"AUS","NSW SOP",2005,"Not Reported",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15810,309997,"AUS","NSW SOP",2007,"Not Reported",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15811,309997,"AUS","NSW SOP",2010,"Not Reported",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15812,309997,"AUS","NSW SOP",2013,"Not Reported",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15813,309997,"AUS","NSW SOP",2004,"Not Reported",28,"Bollanolla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15814,354292,"AUS","NSW SOP",2005,"Not Reported",28,"Bomaderry Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15815,354292,"AUS","NSW SOP",2007,"Not Reported",28,"Bomaderry Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15816,354292,"AUS","NSW SOP",2010,"Not Reported",28,"Bomaderry Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15817,354292,"AUS","NSW SOP",2013,"Not Reported",28,"Bomaderry Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15818,102538,"AUS","NSW SOP",2005,"Not Reported",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15819,102538,"AUS","NSW SOP",2007,"Not Reported",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15820,102538,"AUS","NSW SOP",2010,"Not Reported",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15821,102538,"AUS","NSW SOP",2013,"Not Reported",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15822,102538,"AUS","NSW SOP",2004,"Not Reported",28,"Bondi Gulf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15823,102539,"AUS","NSW SOP",2005,"Not Reported",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15824,102539,"AUS","NSW SOP",2007,"Not Reported",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15825,102539,"AUS","NSW SOP",2010,"Not Reported",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15826,102539,"AUS","NSW SOP",2013,"Not Reported",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15827,102539,"AUS","NSW SOP",2004,"Not Reported",28,"Bongil Bongil","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15828,354299,"AUS","Birdlife IBA",2008,"Not Reported",28,"Boodjamulla (Lawn Hill)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15829,354299,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Boodjamulla (Lawn Hill)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15830,354299,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Boodjamulla (Lawn Hill)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15831,23439,"AUS","NSW SOP",2005,"Not Reported",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15832,23439,"AUS","NSW SOP",2007,"Not Reported",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15833,23439,"AUS","NSW SOP",2010,"Not Reported",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15834,23439,"AUS","NSW SOP",2004,"Not Reported",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15835,23439,"AUS","NSW SOP",2013,"Not Reported",28,"Boomi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15836,23440,"AUS","NSW SOP",2005,"Not Reported",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15837,23440,"AUS","NSW SOP",2007,"Not Reported",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15838,23440,"AUS","NSW SOP",2010,"Not Reported",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15839,23440,"AUS","NSW SOP",2004,"Not Reported",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15840,23440,"AUS","NSW SOP",2013,"Not Reported",28,"Boomi West","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15841,555543308,"AUS","NSW SOP",2007,"Not Reported",28,"Boonanghi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15842,555543308,"AUS","NSW SOP",2010,"Not Reported",28,"Boonanghi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15843,555543308,"AUS","NSW SOP",2013,"Not Reported",28,"Boonanghi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15844,309999,"AUS","NSW SOP",2005,"Not Reported",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15845,309999,"AUS","NSW SOP",2007,"Not Reported",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15846,309999,"AUS","NSW SOP",2010,"Not Reported",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15847,309999,"AUS","NSW SOP",2013,"Not Reported",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15848,309999,"AUS","NSW SOP",2004,"Not Reported",28,"Boonanghi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15849,23441,"AUS","NSW SOP",2005,"Not Reported",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15850,23441,"AUS","NSW SOP",2007,"Not Reported",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15851,23441,"AUS","NSW SOP",2010,"Not Reported",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15852,23441,"AUS","NSW SOP",2013,"Not Reported",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15853,23441,"AUS","NSW SOP",2004,"Not Reported",28,"Boondelbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15854,354302,"AUS","Victorian SOP",2005,"Not Reported",28,"Boonderoo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15855,9463,"AUS","NSW SOP",2005,"Not Reported",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15856,9463,"AUS","NSW SOP",2007,"Not Reported",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15857,9463,"AUS","NSW SOP",2010,"Not Reported",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15858,9463,"AUS","NSW SOP",2013,"Not Reported",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15859,9463,"AUS","NSW SOP",2004,"Not Reported",28,"Boonoo Boonoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15860,23442,"AUS","NSW SOP",2005,"Not Reported",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15861,23442,"AUS","NSW SOP",2007,"Not Reported",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15862,23442,"AUS","NSW SOP",2010,"Not Reported",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15863,23442,"AUS","NSW SOP",2013,"Not Reported",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15864,23442,"AUS","NSW SOP",2004,"Not Reported",28,"Boorganna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15865,310000,"AUS","NSW SOP",2005,"Not Reported",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15866,310000,"AUS","NSW SOP",2007,"Not Reported",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15867,310000,"AUS","NSW SOP",2010,"Not Reported",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15868,310000,"AUS","NSW SOP",2013,"Not Reported",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15869,310000,"AUS","NSW SOP",2004,"Not Reported",28,"Booroolong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15870,10615,"AUS","NSW SOP",2005,"Not Reported",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15871,10615,"AUS","NSW SOP",2007,"Not Reported",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15872,10615,"AUS","NSW SOP",2010,"Not Reported",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15873,10615,"AUS","NSW SOP",2013,"Not Reported",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15874,10615,"AUS","NSW SOP",2004,"Not Reported",28,"Booti Booti","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15875,9464,"AUS","NSW SOP",2005,"Not Reported",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15876,9464,"AUS","NSW SOP",2007,"Not Reported",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15877,9464,"AUS","NSW SOP",2010,"Not Reported",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15878,9464,"AUS","NSW SOP",2013,"Not Reported",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15879,9464,"AUS","NSW SOP",2004,"Not Reported",28,"Border Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15880,555543286,"AUS","NSW SOP",2007,"Not Reported",28,"Borenore","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15881,555543286,"AUS","NSW SOP",2010,"Not Reported",28,"Borenore","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15882,555543286,"AUS","NSW SOP",2013,"Not Reported",28,"Borenore","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15883,23443,"AUS","NSW SOP",2005,"Not Reported",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15884,23443,"AUS","NSW SOP",2007,"Not Reported",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15885,23443,"AUS","NSW SOP",2010,"Not Reported",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15886,23443,"AUS","NSW SOP",2004,"Not Reported",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15887,23443,"AUS","NSW SOP",2013,"Not Reported",28,"Boronga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15888,23445,"AUS","NSW SOP",2004,"Not Reported",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15889,23445,"AUS","NSW SOP",2005,"Not Reported",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15890,23445,"AUS","NSW SOP",2007,"Not Reported",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15891,23445,"AUS","NSW SOP",2013,"Not Reported",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15895,23445,"AUS","NSW SOP",2010,"Not Reported",28,"Botany Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15897,391,"AUS","NSW SOP",2005,"Not Reported",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15898,391,"AUS","NSW SOP",2007,"Not Reported",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15899,391,"AUS","NSW SOP",2010,"Not Reported",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15900,391,"AUS","NSW SOP",2013,"Not Reported",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15901,391,"AUS","NSW SOP",2004,"Not Reported",28,"Bouddi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15902,1139,"AUS","NSW SOP",2005,"Not Reported",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15904,1139,"AUS","NSW SOP",2007,"Not Reported",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15906,1139,"AUS","NSW SOP",2010,"Not Reported",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15908,1139,"AUS","NSW SOP",2013,"Not Reported",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15910,1139,"AUS","NSW SOP",2004,"Not Reported",28,"Bournda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15912,404,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bowling Green Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15913,404,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bowling Green Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15914,23446,"AUS","NSW SOP",2005,"Not Reported",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15915,23446,"AUS","NSW SOP",2007,"Not Reported",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15916,23446,"AUS","NSW SOP",2010,"Not Reported",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15917,23446,"AUS","NSW SOP",2013,"Not Reported",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15918,23446,"AUS","NSW SOP",2004,"Not Reported",28,"Bowraville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15919,314805,"AUS","Victorian SOP",2005,"Not Reported",28,"Bradshaw Swamp N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15920,309690,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Brampton Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15921,309690,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Brampton Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15922,314717,"AUS","Victorian SOP",2010,"Not Reported",28,"Breamlea F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15923,314717,"AUS","Victorian SOP",2013,"Not Reported",28,"Breamlea F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15924,555543291,"AUS","NSW SOP",2010,"Not Reported",28,"Breelong","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15925,555543291,"AUS","NSW SOP",2013,"Not Reported",28,"Breelong","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15926,310002,"AUS","NSW SOP",2005,"Not Reported",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15927,310002,"AUS","NSW SOP",2007,"Not Reported",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15928,310002,"AUS","NSW SOP",2010,"Not Reported",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15929,310002,"AUS","NSW SOP",2013,"Not Reported",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15930,310002,"AUS","NSW SOP",2004,"Not Reported",28,"Bretti","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15931,126061,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bribie Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15932,126061,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bribie Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15933,555543293,"AUS","NSW SOP",2007,"Not Reported",28,"Bridal Veil Falls","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15935,555543293,"AUS","NSW SOP",2010,"Not Reported",28,"Bridal Veil Falls","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15937,555543293,"AUS","NSW SOP",2013,"Not Reported",28,"Bridal Veil Falls","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15938,555576645,"AUS","NSW SOP",2013,"Not Reported",28,"Brigalow","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15939,310003,"AUS","NSW SOP",2005,"Not Reported",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15940,310003,"AUS","NSW SOP",2007,"Not Reported",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15941,310003,"AUS","NSW SOP",2010,"Not Reported",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15942,310003,"AUS","NSW SOP",2013,"Not Reported",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15943,310003,"AUS","NSW SOP",2004,"Not Reported",28,"Brigalow","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15944,310004,"AUS","NSW SOP",2005,"Not Reported",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15945,310004,"AUS","NSW SOP",2007,"Not Reported",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15946,310004,"AUS","NSW SOP",2010,"Not Reported",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15947,310004,"AUS","NSW SOP",2013,"Not Reported",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15948,310004,"AUS","NSW SOP",2004,"Not Reported",28,"Brimbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15949,310005,"AUS","NSW SOP",2005,"Not Reported",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15950,310005,"AUS","NSW SOP",2007,"Not Reported",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15951,310005,"AUS","NSW SOP",2010,"Not Reported",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15952,310005,"AUS","NSW SOP",2013,"Not Reported",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15953,354331,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15954,354331,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15955,354331,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15956,310005,"AUS","NSW SOP",2004,"Not Reported",28,"Brindabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15957,354331,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15958,354331,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15959,546,"AUS","Victorian SOP",2005,"Not Reported",28,"Brisbane Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15960,546,"AUS","Victorian SOP",2010,"Not Reported",28,"Brisbane Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15961,546,"AUS","Victorian SOP",2013,"Not Reported",28,"Brisbane Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15962,375,"AUS","NSW SOP",2005,"Not Reported",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15963,375,"AUS","NSW SOP",2007,"Not Reported",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15964,375,"AUS","NSW SOP",2010,"Not Reported",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15965,375,"AUS","NSW SOP",2013,"Not Reported",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15966,375,"AUS","NSW SOP",2004,"Not Reported",28,"Brisbane Water","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15967,309891,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Broad Sound Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15968,309891,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Broad Sound Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15969,63740,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15970,63740,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15971,63740,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15972,63740,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15973,63740,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15974,63740,"AUS","Victorian SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15975,314718,"AUS","Victorian SOP",2005,"Not Reported",28,"Brodribb River F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15976,23449,"AUS","NSW SOP",2005,"Not Reported",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15977,23449,"AUS","NSW SOP",2007,"Not Reported",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15978,23449,"AUS","NSW SOP",2010,"Not Reported",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15979,23449,"AUS","NSW SOP",2013,"Not Reported",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15980,23449,"AUS","NSW SOP",2004,"Not Reported",28,"Broken Head","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15981,354342,"AUS","Victorian SOP",2005,"Not Reported",28,"Broken-Boosey","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15982,354342,"AUS","Victorian SOP",2010,"Not Reported",28,"Broken-Boosey","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15983,354342,"AUS","Victorian SOP",2013,"Not Reported",28,"Broken-Boosey","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15984,308674,"AUS","NSW SOP",2010,"Not Reported",28,"Bronte-Coogee","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15985,2690,"AUS","Victorian SOP",2005,"Not Reported",28,"Bronzewing B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15987,2690,"AUS","Victorian SOP",2013,"Not Reported",28,"Bronzewing B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15988,126080,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Brook Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15989,126080,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Brook Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15990,23450,"AUS","NSW SOP",2005,"Not Reported",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15991,23450,"AUS","NSW SOP",2007,"Not Reported",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15992,23450,"AUS","NSW SOP",2010,"Not Reported",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15993,23450,"AUS","NSW SOP",2013,"Not Reported",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15994,23450,"AUS","NSW SOP",2004,"Not Reported",28,"Broulee Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15995,310007,"AUS","NSW SOP",2005,"Not Reported",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15996,310007,"AUS","NSW SOP",2007,"Not Reported",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15997,310007,"AUS","NSW SOP",2010,"Not Reported",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15998,310007,"AUS","NSW SOP",2013,"Not Reported",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15999,310007,"AUS","NSW SOP",2004,"Not Reported",28,"Brundee Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16000,23452,"AUS","NSW SOP",2005,"Not Reported",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16001,23452,"AUS","NSW SOP",2007,"Not Reported",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16002,23452,"AUS","NSW SOP",2010,"Not Reported",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16003,23452,"AUS","NSW SOP",2013,"Not Reported",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16004,23452,"AUS","NSW SOP",2004,"Not Reported",28,"Brunswick Heads","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16005,23453,"AUS","NSW SOP",2005,"Not Reported",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16006,23453,"AUS","NSW SOP",2007,"Not Reported",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16007,23453,"AUS","NSW SOP",2010,"Not Reported",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16008,23453,"AUS","NSW SOP",2013,"Not Reported",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16009,23453,"AUS","NSW SOP",2004,"Not Reported",28,"Brush Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16010,314560,"AUS","Victorian SOP",2005,"Not Reported",28,"Bryan Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16011,555576646,"AUS","NSW SOP",2013,"Not Reported",28,"Bubalahla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16012,314476,"AUS","Victorian SOP",2005,"Not Reported",28,"Buchan Caves Reserve","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16013,314476,"AUS","Victorian SOP",2010,"Not Reported",28,"Buchan Caves Reserve","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16014,314476,"AUS","Victorian SOP",2013,"Not Reported",28,"Buchan Caves Reserve","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16015,2613,"AUS","NSW SOP",2005,"Not Reported",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16016,2613,"AUS","NSW SOP",2007,"Not Reported",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16017,2613,"AUS","NSW SOP",2010,"Not Reported",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16018,2613,"AUS","NSW SOP",2013,"Not Reported",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16019,2613,"AUS","NSW SOP",2004,"Not Reported",28,"Budawang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16020,23456,"AUS","NSW SOP",2005,"Not Reported",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16021,23456,"AUS","NSW SOP",2007,"Not Reported",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16022,23456,"AUS","NSW SOP",2010,"Not Reported",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16023,23456,"AUS","NSW SOP",2013,"Not Reported",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16024,23456,"AUS","NSW SOP",2004,"Not Reported",28,"Budderoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16025,23457,"AUS","NSW SOP",2005,"Not Reported",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16026,23457,"AUS","NSW SOP",2007,"Not Reported",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16027,23457,"AUS","NSW SOP",2010,"Not Reported",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16028,23457,"AUS","NSW SOP",2013,"Not Reported",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16029,23457,"AUS","NSW SOP",2004,"Not Reported",28,"Buddigower","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16030,555543314,"AUS","NSW SOP",2007,"Not Reported",28,"Budelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16031,555543314,"AUS","NSW SOP",2010,"Not Reported",28,"Budelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16032,555543314,"AUS","NSW SOP",2013,"Not Reported",28,"Budelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16033,310008,"AUS","NSW SOP",2005,"Not Reported",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16034,310008,"AUS","NSW SOP",2007,"Not Reported",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16035,310008,"AUS","NSW SOP",2010,"Not Reported",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16036,310008,"AUS","NSW SOP",2013,"Not Reported",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16037,310008,"AUS","NSW SOP",2004,"Not Reported",28,"Bugan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16038,313671,"AUS","NSW SOP",2005,"Not Reported",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16039,313671,"AUS","NSW SOP",2007,"Not Reported",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16040,313671,"AUS","NSW SOP",2010,"Not Reported",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16041,313671,"AUS","NSW SOP",2013,"Not Reported",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16042,313671,"AUS","NSW SOP",2004,"Not Reported",28,"Bugong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16043,555543315,"AUS","NSW SOP",2010,"Not Reported",28,"Bulahdelah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16044,555543315,"AUS","NSW SOP",2013,"Not Reported",28,"Bulahdelah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16045,354355,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bulburin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16046,354355,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bulburin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16047,24602,"AUS","Victorian SOP",2010,"Not Reported",28,"Bull Beef Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16048,24602,"AUS","Victorian SOP",2013,"Not Reported",28,"Bull Beef Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16049,555543316,"AUS","NSW SOP",2010,"Not Reported",28,"Bull Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16050,555543316,"AUS","NSW SOP",2013,"Not Reported",28,"Bull Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16051,555543317,"AUS","NSW SOP",2010,"Not Reported",28,"Bullala","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16052,555543317,"AUS","NSW SOP",2013,"Not Reported",28,"Bullala","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16053,555543318,"AUS","NSW SOP",2010,"Not Reported",28,"Bullawa Creek","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16054,555543318,"AUS","NSW SOP",2013,"Not Reported",28,"Bullawa Creek","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16055,64390,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bulleringa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16056,64390,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bulleringa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16057,9465,"AUS","NSW SOP",2005,"Not Reported",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16058,9465,"AUS","NSW SOP",2007,"Not Reported",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16059,9465,"AUS","NSW SOP",2010,"Not Reported",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16060,9465,"AUS","NSW SOP",2013,"Not Reported",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16061,354364,"AUS","NSW SOP",2005,"Not Reported",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16062,354364,"AUS","NSW SOP",2007,"Not Reported",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16063,354364,"AUS","NSW SOP",2010,"Not Reported",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16064,354364,"AUS","NSW SOP",2013,"Not Reported",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16065,9465,"AUS","NSW SOP",2004,"Not Reported",28,"Bundjalung","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16066,354364,"AUS","NSW SOP",2004,"Not Reported",28,"Bundjalung","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16067,310011,"AUS","NSW SOP",2005,"Not Reported",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16068,310011,"AUS","NSW SOP",2007,"Not Reported",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16069,310011,"AUS","NSW SOP",2010,"Not Reported",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16070,310011,"AUS","NSW SOP",2013,"Not Reported",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16071,310011,"AUS","NSW SOP",2004,"Not Reported",28,"Bungabbee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16072,23461,"AUS","NSW SOP",2005,"Not Reported",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16073,23461,"AUS","NSW SOP",2007,"Not Reported",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16074,23461,"AUS","NSW SOP",2010,"Not Reported",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16075,23461,"AUS","NSW SOP",2013,"Not Reported",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16076,313686,"AUS","NSW SOP",2005,"Not Reported",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16077,313686,"AUS","NSW SOP",2007,"Not Reported",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16078,313686,"AUS","NSW SOP",2010,"Not Reported",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16079,354367,"AUS","NSW SOP",2005,"Not Reported",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16080,354367,"AUS","NSW SOP",2007,"Not Reported",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16081,354367,"AUS","NSW SOP",2010,"Not Reported",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16082,354367,"AUS","NSW SOP",2013,"Not Reported",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16083,23461,"AUS","NSW SOP",2004,"Not Reported",28,"Bungawalbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16084,313686,"AUS","NSW SOP",2004,"Not Reported",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16085,354367,"AUS","NSW SOP",2004,"Not Reported",28,"Bungawalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16086,313686,"AUS","NSW SOP",2013,"Not Reported",28,"Bungawalbin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16087,354372,"AUS","NSW SOP",2005,"Not Reported",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16088,354372,"AUS","NSW SOP",2007,"Not Reported",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16089,354372,"AUS","NSW SOP",2010,"Not Reported",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16090,354372,"AUS","NSW SOP",2013,"Not Reported",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16091,555548684,"AUS","NSW SOP",2013,"Not Reported",28,"Bungonia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16092,354372,"AUS","NSW SOP",2004,"Not Reported",28,"Bungonia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16093,70967,"AUS","Victorian SOP",2010,"Not Reported",28,"Bunurong Marine Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16095,70967,"AUS","Victorian SOP",2005,"Not Reported",28,"Bunurong Marine Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16097,70967,"AUS","Victorian SOP",2013,"Not Reported",28,"Bunurong Marine Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16099,309893,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Bunya Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16100,309893,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Bunya Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16101,354374,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16102,354374,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16103,64353,"AUS","Victorian SOP",2010,"Not Reported",28,"Bunyip","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16104,64353,"AUS","Victorian SOP",2005,"Not Reported",28,"Bunyip","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16105,354376,"AUS","Victorian SOP",2005,"Not Reported",28,"Bunyip B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16106,64353,"AUS","Victorian SOP",2013,"Not Reported",28,"Bunyip","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16107,23835,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Burleigh Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16108,23835,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Burleigh Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16109,310012,"AUS","NSW SOP",2005,"Not Reported",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16110,310012,"AUS","NSW SOP",2007,"Not Reported",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16111,310012,"AUS","NSW SOP",2010,"Not Reported",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16112,310012,"AUS","NSW SOP",2013,"Not Reported",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16113,310012,"AUS","NSW SOP",2004,"Not Reported",28,"Burning Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16114,310016,"AUS","NSW SOP",2005,"Not Reported",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16115,310016,"AUS","NSW SOP",2007,"Not Reported",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16116,310016,"AUS","NSW SOP",2010,"Not Reported",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16117,310016,"AUS","NSW SOP",2004,"Not Reported",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16118,310016,"AUS","NSW SOP",2013,"Not Reported",28,"Burnt School","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16119,310013,"AUS","NSW SOP",2005,"Not Reported",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16120,310013,"AUS","NSW SOP",2007,"Not Reported",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16121,310013,"AUS","NSW SOP",2010,"Not Reported",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16122,310013,"AUS","NSW SOP",2004,"Not Reported",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16123,310013,"AUS","NSW SOP",2013,"Not Reported",28,"Burnt-Down Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16124,310020,"AUS","NSW SOP",2005,"Not Reported",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16125,310020,"AUS","NSW SOP",2007,"Not Reported",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16126,310020,"AUS","NSW SOP",2010,"Not Reported",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16127,310020,"AUS","NSW SOP",2013,"Not Reported",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16128,310020,"AUS","NSW SOP",2004,"Not Reported",28,"Burra Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16129,354388,"AUS","NSW SOP",2005,"Not Reported",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16130,354388,"AUS","NSW SOP",2007,"Not Reported",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16131,354388,"AUS","NSW SOP",2010,"Not Reported",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16132,354388,"AUS","NSW SOP",2013,"Not Reported",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16133,354388,"AUS","NSW SOP",2004,"Not Reported",28,"Burragorang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16134,555548709,"AUS","NSW SOP",2010,"Not Reported",28,"Burral Yurrul","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16135,555548709,"AUS","NSW SOP",2013,"Not Reported",28,"Burral Yurrul","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16136,555543273,"AUS","NSW SOP",2010,"Not Reported",28,"Burral Yurrul","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16137,555543273,"AUS","NSW SOP",2013,"Not Reported",28,"Burral Yurrul","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16138,10585,"AUS","NSW SOP",2005,"Not Reported",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16139,10585,"AUS","NSW SOP",2007,"Not Reported",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16140,10585,"AUS","NSW SOP",2010,"Not Reported",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16141,10585,"AUS","NSW SOP",2013,"Not Reported",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16142,10585,"AUS","NSW SOP",2004,"Not Reported",28,"Burrinjuck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16143,311340,"AUS","Victorian SOP",2005,"Not Reported",28,"Burrowa - Pine Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16144,311340,"AUS","Victorian SOP",2010,"Not Reported",28,"Burrowa - Pine Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16145,311340,"AUS","Victorian SOP",2013,"Not Reported",28,"Burrowa - Pine Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16146,23837,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Burrum Coast","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16147,23837,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Burrum Coast","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16148,555576651,"AUS","NSW SOP",2013,"Not Reported",28,"Burwood Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16149,12958,"AUS","NSW SOP",2010,"Not Reported",28,"Bushrangers Bay","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16150,354391,"AUS","NSW SOP",2005,"Not Reported",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16151,354391,"AUS","NSW SOP",2007,"Not Reported",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16152,354391,"AUS","NSW SOP",2010,"Not Reported",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16153,354391,"AUS","NSW SOP",2004,"Not Reported",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16154,354391,"AUS","NSW SOP",2013,"Not Reported",28,"Bushy Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16155,310021,"AUS","NSW SOP",2005,"Not Reported",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16156,310021,"AUS","NSW SOP",2007,"Not Reported",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16157,310021,"AUS","NSW SOP",2010,"Not Reported",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16158,310021,"AUS","NSW SOP",2013,"Not Reported",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16159,354392,"AUS","NSW SOP",2005,"Not Reported",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16160,354392,"AUS","NSW SOP",2007,"Not Reported",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16161,354392,"AUS","NSW SOP",2010,"Not Reported",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16162,354392,"AUS","NSW SOP",2013,"Not Reported",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16163,310021,"AUS","NSW SOP",2004,"Not Reported",28,"Butterleaf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16164,354392,"AUS","NSW SOP",2004,"Not Reported",28,"Butterleaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16165,127268,"AUS","Victorian SOP",2010,"Not Reported",28,"Buxton Silver Gum N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16166,127268,"AUS","Victorian SOP",2005,"Not Reported",28,"Buxton Silver Gum N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16167,127268,"AUS","Victorian SOP",2013,"Not Reported",28,"Buxton Silver Gum N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16168,23841,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Byfield","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16169,23841,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Byfield","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16170,310022,"AUS","NSW SOP",2005,"Not Reported",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16171,310022,"AUS","NSW SOP",2007,"Not Reported",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16172,310022,"AUS","NSW SOP",2010,"Not Reported",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16173,310022,"AUS","NSW SOP",2013,"Not Reported",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16174,310022,"AUS","NSW SOP",2004,"Not Reported",28,"Byrnes Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16175,308673,"AUS","NSW SOP",2010,"Not Reported",28,"Cabbage Tree Bay","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16176,310025,"AUS","NSW SOP",2005,"Not Reported",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16177,310025,"AUS","NSW SOP",2007,"Not Reported",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16178,310025,"AUS","NSW SOP",2010,"Not Reported",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16179,310025,"AUS","NSW SOP",2013,"Not Reported",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16180,310025,"AUS","NSW SOP",2004,"Not Reported",28,"Cambewarra Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16181,23467,"AUS","NSW SOP",2005,"Not Reported",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16182,23467,"AUS","NSW SOP",2007,"Not Reported",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16183,23467,"AUS","NSW SOP",2010,"Not Reported",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16184,23467,"AUS","NSW SOP",2004,"Not Reported",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16185,23467,"AUS","NSW SOP",2013,"Not Reported",28,"Camels Hump","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16186,23468,"AUS","NSW SOP",2005,"Not Reported",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16187,23468,"AUS","NSW SOP",2007,"Not Reported",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16188,23468,"AUS","NSW SOP",2010,"Not Reported",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16189,23468,"AUS","NSW SOP",2013,"Not Reported",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16190,555543279,"AUS","NSW SOP",2007,"Not Reported",28,"Camerons Gorge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16191,555543279,"AUS","NSW SOP",2010,"Not Reported",28,"Camerons Gorge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16192,555543279,"AUS","NSW SOP",2013,"Not Reported",28,"Camerons Gorge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16193,23468,"AUS","NSW SOP",2004,"Not Reported",28,"Camerons Gorge","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16194,23844,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Camooweal Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16195,23844,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Camooweal Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16196,9483,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Cania Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16197,9483,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Cania Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16198,127239,"AUS","Victorian SOP",2005,"Not Reported",28,"Cann River B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16199,308675,"AUS","NSW SOP",2010,"Not Reported",28,"Cape Banks","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16200,354414,"AUS","NSW SOP",2005,"Not Reported",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16201,354414,"AUS","NSW SOP",2007,"Not Reported",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16202,354414,"AUS","NSW SOP",2010,"Not Reported",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16204,354414,"AUS","NSW SOP",2013,"Not Reported",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16205,354414,"AUS","NSW SOP",2004,"Not Reported",28,"Cape Byron","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16206,127242,"AUS","Victorian SOP",2010,"Not Reported",28,"Cape Conran Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16207,127242,"AUS","Victorian SOP",2005,"Not Reported",28,"Cape Conran Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16208,127242,"AUS","Victorian SOP",2013,"Not Reported",28,"Cape Conran Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16209,458,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Cape Hillsborough","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16210,458,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Cape Hillsborough","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16211,305326,"AUS","Victorian SOP",2010,"Not Reported",28,"Cape Howe","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16212,305326,"AUS","Victorian SOP",2005,"Not Reported",28,"Cape Howe","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16213,305326,"AUS","Victorian SOP",2013,"Not Reported",28,"Cape Howe","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16214,127244,"AUS","Victorian SOP",2005,"Not Reported",28,"Cape Liptrap Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16215,127244,"AUS","Victorian SOP",2010,"Not Reported",28,"Cape Liptrap Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16216,127244,"AUS","Victorian SOP",2013,"Not Reported",28,"Cape Liptrap Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16217,410,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Cape Melville (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16218,410,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Cape Melville (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16219,9506,"AUS","Victorian SOP",2010,"Not Reported",28,"Cape Nelson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16220,9506,"AUS","Victorian SOP",2005,"Not Reported",28,"Cape Nelson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16221,9506,"AUS","Victorian SOP",2013,"Not Reported",28,"Cape Nelson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16222,23846,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Cape Palmerston","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16223,23846,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Cape Palmerston","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16224,431,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Cape Upstart","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16225,431,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Cape Upstart","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16226,555548756,"AUS","NSW SOP",2010,"Not Reported",28,"Capertee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16227,555548756,"AUS","NSW SOP",2013,"Not Reported",28,"Capertee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16228,310027,"AUS","NSW SOP",2005,"Not Reported",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16229,310027,"AUS","NSW SOP",2007,"Not Reported",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16230,310027,"AUS","NSW SOP",2010,"Not Reported",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16231,310027,"AUS","NSW SOP",2013,"Not Reported",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16232,310027,"AUS","NSW SOP",2004,"Not Reported",28,"Capoompeta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16233,126133,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Capricorn Coast","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16234,126133,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Capricorn Coast","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16235,126134,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Capricornia Cays","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16236,126134,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Capricornia Cays","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16237,313898,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16238,313898,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16239,310028,"AUS","NSW SOP",2005,"Not Reported",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16240,310028,"AUS","NSW SOP",2007,"Not Reported",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16241,310028,"AUS","NSW SOP",2010,"Not Reported",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16242,310028,"AUS","NSW SOP",2013,"Not Reported",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16243,310028,"AUS","NSW SOP",2004,"Not Reported",28,"Captains Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16244,23471,"AUS","NSW SOP",2005,"Not Reported",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16245,23471,"AUS","NSW SOP",2007,"Not Reported",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16246,23471,"AUS","NSW SOP",2010,"Not Reported",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16247,23471,"AUS","NSW SOP",2013,"Not Reported",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16248,23471,"AUS","NSW SOP",2004,"Not Reported",28,"Careunga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16249,63710,"AUS","Birdlife IBA",2008,"Not Reported",28,"Carnac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16250,403,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Carnarvon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16251,403,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Carnarvon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16252,357748,"AUS","Victorian SOP",2005,"Not Reported",28,"Carpendeit B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16253,555576655,"AUS","NSW SOP",2013,"Not Reported",28,"Carrabear","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16254,313672,"AUS","NSW SOP",2005,"Not Reported",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16255,313672,"AUS","NSW SOP",2007,"Not Reported",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16256,313672,"AUS","NSW SOP",2010,"Not Reported",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16257,313672,"AUS","NSW SOP",2013,"Not Reported",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16258,354434,"AUS","NSW SOP",2005,"Not Reported",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16259,354434,"AUS","NSW SOP",2007,"Not Reported",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16260,354434,"AUS","NSW SOP",2010,"Not Reported",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16261,354434,"AUS","NSW SOP",2013,"Not Reported",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16262,309992,"AUS","NSW SOP",2004,"Not Reported",28,"Biriwal Bulga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16263,354434,"AUS","NSW SOP",2004,"Not Reported",28,"Carrai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16264,126140,"AUS","NSW SOP",2005,"Not Reported",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16265,126140,"AUS","NSW SOP",2007,"Not Reported",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16266,126140,"AUS","NSW SOP",2010,"Not Reported",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16267,126140,"AUS","NSW SOP",2013,"Not Reported",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16268,354439,"AUS","NSW SOP",2005,"Not Reported",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16269,354439,"AUS","NSW SOP",2007,"Not Reported",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16270,354439,"AUS","NSW SOP",2010,"Not Reported",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16271,354439,"AUS","NSW SOP",2013,"Not Reported",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16272,313672,"AUS","NSW SOP",2004,"Not Reported",28,"Carrai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16273,354439,"AUS","NSW SOP",2004,"Not Reported",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16274,354439,"AUS","Victorian SOP",2005,"Not Reported",28,"Cascade","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16275,435,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Castle Tower","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16276,435,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Castle Tower","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16277,555548421,"AUS","Victorian SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16278,313687,"AUS","NSW SOP",2005,"Not Reported",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16279,313687,"AUS","NSW SOP",2007,"Not Reported",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16280,313687,"AUS","NSW SOP",2010,"Not Reported",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16281,313687,"AUS","NSW SOP",2013,"Not Reported",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16282,313687,"AUS","NSW SOP",2004,"Not Reported",28,"Castlereagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16283,313850,"AUS","NTMEE",2013,"Not Reported",28,"Casuarina","Coastal Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16284,354444,"AUS","NSW SOP",2005,"Not Reported",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16285,354444,"AUS","NSW SOP",2007,"Not Reported",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16286,354444,"AUS","NSW SOP",2010,"Not Reported",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16287,354444,"AUS","NSW SOP",2013,"Not Reported",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16288,555543285,"AUS","NSW SOP",2007,"Not Reported",28,"Cataract","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16289,555543285,"AUS","NSW SOP",2010,"Not Reported",28,"Cataract","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16290,555543285,"AUS","NSW SOP",2013,"Not Reported",28,"Cataract","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16291,354444,"AUS","NSW SOP",2004,"Not Reported",28,"Cataract","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16292,127207,"AUS","Victorian SOP",2005,"Not Reported",28,"Cathedral Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16293,127207,"AUS","Victorian SOP",2010,"Not Reported",28,"Cathedral Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16294,127207,"AUS","Victorian SOP",2013,"Not Reported",28,"Cathedral Range","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16295,2610,"AUS","NSW SOP",2005,"Not Reported",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16296,2610,"AUS","NSW SOP",2007,"Not Reported",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16297,2610,"AUS","NSW SOP",2010,"Not Reported",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16298,2610,"AUS","NSW SOP",2013,"Not Reported",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16299,2610,"AUS","NSW SOP",2004,"Not Reported",28,"Cathedral Rock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16300,10620,"AUS","NSW SOP",2005,"Not Reported",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16301,10620,"AUS","NSW SOP",2007,"Not Reported",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16302,10620,"AUS","NSW SOP",2010,"Not Reported",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16303,10620,"AUS","NSW SOP",2013,"Not Reported",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16304,10620,"AUS","NSW SOP",2004,"Not Reported",28,"Cattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16305,23473,"AUS","NSW SOP",2005,"Not Reported",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16306,23473,"AUS","NSW SOP",2007,"Not Reported",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16307,23473,"AUS","NSW SOP",2010,"Not Reported",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16308,23473,"AUS","NSW SOP",2013,"Not Reported",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16309,23473,"AUS","NSW SOP",2004,"Not Reported",28,"Cecil Hoskins","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16310,430,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16311,23474,"AUS","NSW SOP",2005,"Not Reported",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16312,23474,"AUS","NSW SOP",2007,"Not Reported",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16313,23474,"AUS","NSW SOP",2010,"Not Reported",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16314,23474,"AUS","NSW SOP",2013,"Not Reported",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16315,23474,"AUS","NSW SOP",2004,"Not Reported",28,"Cedar Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16316,102674,"AUS","Tasmanian WHA",2004,"Not Reported",28,"Central Plateau","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16317,313673,"AUS","NSW SOP",2005,"Not Reported",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16318,313673,"AUS","NSW SOP",2007,"Not Reported",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16319,313673,"AUS","NSW SOP",2010,"Not Reported",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16320,313673,"AUS","NSW SOP",2013,"Not Reported",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16321,354447,"AUS","NSW SOP",2005,"Not Reported",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16322,354447,"AUS","NSW SOP",2007,"Not Reported",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16323,354447,"AUS","NSW SOP",2010,"Not Reported",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16324,354447,"AUS","NSW SOP",2013,"Not Reported",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16325,309984,"AUS","NSW SOP",2004,"Not Reported",28,"Bellinger River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16326,354447,"AUS","NSW SOP",2004,"Not Reported",28,"Chaelundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16327,313688,"AUS","NSW SOP",2005,"Not Reported",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16328,313688,"AUS","NSW SOP",2007,"Not Reported",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16329,313688,"AUS","NSW SOP",2010,"Not Reported",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16330,313688,"AUS","NSW SOP",2013,"Not Reported",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16332,313688,"AUS","NSW SOP",2004,"Not Reported",28,"Chambigne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16333,310029,"AUS","NSW SOP",2005,"Not Reported",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16334,310029,"AUS","NSW SOP",2007,"Not Reported",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16335,310029,"AUS","NSW SOP",2010,"Not Reported",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16336,310029,"AUS","NSW SOP",2004,"Not Reported",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16337,310029,"AUS","NSW SOP",2013,"Not Reported",28,"Chapmans Peak","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16338,354452,"AUS","NSW SOP",2005,"Not Reported",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16339,354452,"AUS","NSW SOP",2007,"Not Reported",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16340,354452,"AUS","NSW SOP",2010,"Not Reported",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16341,354452,"AUS","NSW SOP",2013,"Not Reported",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16342,354452,"AUS","NSW SOP",2004,"Not Reported",28,"Chatsworth Hill","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16343,354454,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Cherbourg","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16344,354454,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Cherbourg","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16345,64389,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Chesterton Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16346,64389,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Chesterton Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16347,126152,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Chillagoe-Mungana Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16348,126152,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Chillagoe-Mungana Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16349,354464,"AUS","Victorian SOP",2005,"Not Reported",28,"Chiltern-Mt Pilot National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16350,354464,"AUS","Victorian SOP",2010,"Not Reported",28,"Chiltern-Mt Pilot National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16351,354464,"AUS","Victorian SOP",2013,"Not Reported",28,"Chiltern-Mt Pilot National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16352,24617,"AUS","Victorian SOP",2005,"Not Reported",28,"Churchill National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16353,24617,"AUS","Victorian SOP",2010,"Not Reported",28,"Churchill National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16354,24617,"AUS","Victorian SOP",2013,"Not Reported",28,"Churchill National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16355,305470,"AUS","Victorian SOP",2010,"Not Reported",28,"Churchill Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16356,305470,"AUS","Victorian SOP",2005,"Not Reported",28,"Churchill Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16357,305470,"AUS","Victorian SOP",2013,"Not Reported",28,"Churchill Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16358,126159,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Claremont Isles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16359,126159,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Claremont Isles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16360,310030,"AUS","NSW SOP",2005,"Not Reported",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16361,310030,"AUS","NSW SOP",2007,"Not Reported",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16362,310030,"AUS","NSW SOP",2010,"Not Reported",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16363,310030,"AUS","NSW SOP",2013,"Not Reported",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16364,310030,"AUS","NSW SOP",2004,"Not Reported",28,"Clarence Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16365,310031,"AUS","NSW SOP",2005,"Not Reported",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16366,310031,"AUS","NSW SOP",2007,"Not Reported",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16367,310031,"AUS","NSW SOP",2010,"Not Reported",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16368,310031,"AUS","NSW SOP",2013,"Not Reported",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16369,310031,"AUS","NSW SOP",2004,"Not Reported",28,"Clarkes Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16370,451,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Clump Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16371,451,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Clump Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16372,310032,"AUS","NSW SOP",2005,"Not Reported",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16373,310032,"AUS","NSW SOP",2007,"Not Reported",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16374,310032,"AUS","NSW SOP",2010,"Not Reported",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16375,310032,"AUS","NSW SOP",2013,"Not Reported",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16376,310032,"AUS","NSW SOP",2004,"Not Reported",28,"Clyde River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16377,314566,"AUS","Victorian SOP",2005,"Not Reported",28,"Clydebank Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16378,23855,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Coalstoun Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16379,23855,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Coalstoun Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16380,555543337,"AUS","Victorian SOP",2010,"Not Reported",28,"Cobboboonee National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16381,555543337,"AUS","Victorian SOP",2013,"Not Reported",28,"Cobboboonee National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16382,555576658,"AUS","NSW SOP",2013,"Not Reported",28,"Cobbora","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16383,314812,"AUS","Victorian SOP",2013,"Not Reported",28,"Cobra Killuc W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16384,64182,"AUS","NSW SOP",2005,"Not Reported",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16385,64182,"AUS","NSW SOP",2007,"Not Reported",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16386,64182,"AUS","NSW SOP",2010,"Not Reported",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16387,64182,"AUS","NSW SOP",2013,"Not Reported",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16388,64182,"AUS","NSW SOP",2004,"Not Reported",28,"Cockle Bay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16389,373,"AUS","NSW SOP",2005,"Not Reported",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16390,373,"AUS","NSW SOP",2007,"Not Reported",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16391,373,"AUS","NSW SOP",2010,"Not Reported",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16392,373,"AUS","NSW SOP",2013,"Not Reported",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16393,1140,"AUS","NSW SOP",2005,"Not Reported",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16394,1140,"AUS","NSW SOP",2007,"Not Reported",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16395,1140,"AUS","NSW SOP",2010,"Not Reported",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16396,1140,"AUS","NSW SOP",2013,"Not Reported",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16397,373,"AUS","NSW SOP",2004,"Not Reported",28,"Cocoparra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16398,1140,"AUS","NSW SOP",2004,"Not Reported",28,"Cocopara","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16399,10606,"AUS","Birdlife IBA",2008,"Not Reported",28,"Coffin Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16400,354482,"AUS","NSW SOP",2005,"Not Reported",28,"Coffs Coast","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16401,354482,"AUS","NSW SOP",2007,"Not Reported",28,"Coffs Coast","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16402,354482,"AUS","NSW SOP",2010,"Not Reported",28,"Coffs Coast","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16403,354482,"AUS","NSW SOP",2013,"Not Reported",28,"Coffs Coast","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16404,555543340,"AUS","NSW SOP",2010,"Not Reported",28,"Colongra Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16405,555543340,"AUS","NSW SOP",2013,"Not Reported",28,"Colongra Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16406,555543341,"AUS","NSW SOP",2010,"Not Reported",28,"Columbey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16407,555543341,"AUS","NSW SOP",2013,"Not Reported",28,"Columbey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16408,555576662,"AUS","NSW SOP",2013,"Not Reported",28,"Columbey","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16409,354487,"AUS","NSW SOP",2005,"Not Reported",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16410,354487,"AUS","NSW SOP",2007,"Not Reported",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16411,354487,"AUS","NSW SOP",2010,"Not Reported",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16412,354487,"AUS","NSW SOP",2013,"Not Reported",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16413,354487,"AUS","NSW SOP",2004,"Not Reported",28,"Colymea","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16414,555576663,"AUS","NSW SOP",2013,"Not Reported",28,"Combaning","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16415,555543342,"AUS","NSW SOP",2007,"Not Reported",28,"Comboyne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16416,555543342,"AUS","NSW SOP",2010,"Not Reported",28,"Comboyne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16417,555543342,"AUS","NSW SOP",2013,"Not Reported",28,"Comboyne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16418,70931,"AUS","NSW SOP",2005,"Not Reported",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16419,70931,"AUS","NSW SOP",2007,"Not Reported",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16420,70931,"AUS","NSW SOP",2010,"Not Reported",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16421,70931,"AUS","NSW SOP",2013,"Not Reported",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16422,70931,"AUS","NSW SOP",2004,"Not Reported",28,"Comerong Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16423,354496,"AUS","NSW SOP",2005,"Not Reported",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16424,354496,"AUS","NSW SOP",2007,"Not Reported",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16425,354496,"AUS","NSW SOP",2010,"Not Reported",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16426,354496,"AUS","NSW SOP",2013,"Not Reported",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16427,354496,"AUS","NSW SOP",2004,"Not Reported",28,"Coneac","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16428,146692,"AUS","NSW SOP",2005,"Not Reported",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16429,146692,"AUS","NSW SOP",2007,"Not Reported",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16430,146692,"AUS","NSW SOP",2010,"Not Reported",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16431,146692,"AUS","NSW SOP",2013,"Not Reported",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16432,146692,"AUS","NSW SOP",2004,"Not Reported",28,"Conimbla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16433,102541,"AUS","NSW SOP",2005,"Not Reported",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16434,102541,"AUS","NSW SOP",2007,"Not Reported",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16435,102541,"AUS","NSW SOP",2010,"Not Reported",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16436,102541,"AUS","NSW SOP",2013,"Not Reported",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16437,102541,"AUS","NSW SOP",2004,"Not Reported",28,"Conjola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16438,62983,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Conondale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16439,62983,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Conondale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16440,2630,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Conway","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16441,2630,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Conway","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16442,555577030,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16443,23481,"AUS","NSW SOP",2005,"Not Reported",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16444,23481,"AUS","NSW SOP",2007,"Not Reported",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16445,23481,"AUS","NSW SOP",2010,"Not Reported",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16446,23481,"AUS","NSW SOP",2013,"Not Reported",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16447,23481,"AUS","NSW SOP",2004,"Not Reported",28,"Coocumbac Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16448,23482,"AUS","NSW SOP",2005,"Not Reported",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16449,23482,"AUS","NSW SOP",2007,"Not Reported",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16450,23482,"AUS","NSW SOP",2010,"Not Reported",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16451,23482,"AUS","NSW SOP",2013,"Not Reported",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16452,315022,"AUS","NSW SOP",2010,"Not Reported",28,"Cook Island","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16453,23482,"AUS","NSW SOP",2004,"Not Reported",28,"Cook Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16454,555576665,"AUS","NSW SOP",2013,"Not Reported",28,"Cookbundoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16455,310038,"AUS","NSW SOP",2005,"Not Reported",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16456,310038,"AUS","NSW SOP",2007,"Not Reported",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16457,310038,"AUS","NSW SOP",2010,"Not Reported",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16458,310038,"AUS","NSW SOP",2013,"Not Reported",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16459,310038,"AUS","NSW SOP",2004,"Not Reported",28,"Coolah Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16460,1156,"AUS","NSW SOP",2005,"Not Reported",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16461,1156,"AUS","NSW SOP",2007,"Not Reported",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16462,1156,"AUS","NSW SOP",2010,"Not Reported",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16463,1156,"AUS","NSW SOP",2013,"Not Reported",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16464,1156,"AUS","NSW SOP",2004,"Not Reported",28,"Coolbaggie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16465,555576666,"AUS","NSW SOP",2013,"Not Reported",28,"Cooleburba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16466,23484,"AUS","NSW SOP",2005,"Not Reported",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16467,23484,"AUS","NSW SOP",2007,"Not Reported",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16468,23484,"AUS","NSW SOP",2013,"Not Reported",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16469,23484,"AUS","NSW SOP",2004,"Not Reported",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16470,23484,"AUS","NSW SOP",2010,"Not Reported",28,"Coolongolook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16471,67730,"AUS","Birdlife IBA",2008,"Not Reported",28,"Fraser Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16472,309914,"AUS","Birdlife IBA",2008,"Not Reported",28,"Great Sandy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16473,102543,"AUS","NSW SOP",2005,"Not Reported",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16474,102543,"AUS","NSW SOP",2007,"Not Reported",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16475,102543,"AUS","NSW SOP",2010,"Not Reported",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16476,102543,"AUS","NSW SOP",2004,"Not Reported",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16477,102543,"AUS","NSW SOP",2013,"Not Reported",28,"Coolumbooka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16478,310039,"AUS","NSW SOP",2005,"Not Reported",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16479,310039,"AUS","NSW SOP",2007,"Not Reported",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16480,310039,"AUS","NSW SOP",2010,"Not Reported",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16481,310039,"AUS","NSW SOP",2013,"Not Reported",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16482,310039,"AUS","NSW SOP",2004,"Not Reported",28,"Cooperabung Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16483,541,"AUS","Victorian SOP",2005,"Not Reported",28,"Coopracambra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16484,541,"AUS","Victorian SOP",2010,"Not Reported",28,"Coopracambra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16485,541,"AUS","Victorian SOP",2013,"Not Reported",28,"Coopracambra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16486,313674,"AUS","NSW SOP",2005,"Not Reported",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16487,313674,"AUS","NSW SOP",2007,"Not Reported",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16488,313674,"AUS","NSW SOP",2010,"Not Reported",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16489,313674,"AUS","NSW SOP",2013,"Not Reported",28,"Coorabakh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16490,310095,"AUS","NSW SOP",2004,"Not Reported",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16491,311457,"AUS","Victorian SOP",2005,"Not Reported",28,"Cooriemungle Creek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16492,311457,"AUS","Victorian SOP",2010,"Not Reported",28,"Cooriemungle Creek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16493,311457,"AUS","Victorian SOP",2013,"Not Reported",28,"Cooriemungle Creek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16494,310040,"AUS","NSW SOP",2005,"Not Reported",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16495,310040,"AUS","NSW SOP",2007,"Not Reported",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16496,310040,"AUS","NSW SOP",2010,"Not Reported",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16497,310040,"AUS","NSW SOP",2004,"Not Reported",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16498,310040,"AUS","NSW SOP",2013,"Not Reported",28,"Coornartha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16499,26012,"AUS","Birdlife IBA",2008,"Not Reported",28,"Coorong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16500,354514,"AUS","NSW SOP",2005,"Not Reported",28,"Copeland Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16501,354514,"AUS","NSW SOP",2007,"Not Reported",28,"Copeland Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16502,354514,"AUS","NSW SOP",2010,"Not Reported",28,"Copeland Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16503,354514,"AUS","NSW SOP",2013,"Not Reported",28,"Copeland Tops","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16504,1147,"AUS","NSW SOP",2005,"Not Reported",28,"Copperhannia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16505,1147,"AUS","NSW SOP",2010,"Not Reported",28,"Copperhannia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16506,1147,"AUS","NSW SOP",2013,"Not Reported",28,"Copperhannia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16507,1147,"AUS","NSW SOP",2004,"Not Reported",28,"Copperhannia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16508,354516,"AUS","Victorian SOP",2010,"Not Reported",28,"Coradjil N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16509,354516,"AUS","Victorian SOP",2013,"Not Reported",28,"Coradjil N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16510,23485,"AUS","NSW SOP",2005,"Not Reported",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16511,23485,"AUS","NSW SOP",2007,"Not Reported",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16512,23485,"AUS","NSW SOP",2010,"Not Reported",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16513,23485,"AUS","NSW SOP",2013,"Not Reported",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16514,23485,"AUS","NSW SOP",2004,"Not Reported",28,"Coramba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16515,354517,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16516,354517,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16517,24629,"AUS","Victorian SOP",2010,"Not Reported",28,"Corner Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16518,24629,"AUS","Victorian SOP",2005,"Not Reported",28,"Corner Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16519,24629,"AUS","Victorian SOP",2013,"Not Reported",28,"Corner Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16523,354520,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16524,354520,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16525,354520,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16526,555576669,"AUS","NSW SOP",2013,"Not Reported",28,"Corramy","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16527,354520,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16528,310041,"AUS","NSW SOP",2005,"Not Reported",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16529,310041,"AUS","NSW SOP",2007,"Not Reported",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16530,310041,"AUS","NSW SOP",2010,"Not Reported",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16531,310041,"AUS","NSW SOP",2013,"Not Reported",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16532,310041,"AUS","NSW SOP",2004,"Not Reported",28,"Corrie Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16533,354523,"AUS","NSW SOP",2005,"Not Reported",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16534,354523,"AUS","NSW SOP",2007,"Not Reported",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16535,354523,"AUS","NSW SOP",2010,"Not Reported",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16536,354523,"AUS","NSW SOP",2013,"Not Reported",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16537,354523,"AUS","NSW SOP",2004,"Not Reported",28,"Corymbia","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16538,310043,"AUS","NSW SOP",2005,"Not Reported",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16539,310043,"AUS","NSW SOP",2007,"Not Reported",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16540,310043,"AUS","NSW SOP",2010,"Not Reported",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16542,310043,"AUS","NSW SOP",2013,"Not Reported",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16543,354527,"AUS","NSW SOP",2005,"Not Reported",28,"Cottan-Bimbang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16544,354527,"AUS","NSW SOP",2007,"Not Reported",28,"Cottan-Bimbang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16545,310043,"AUS","NSW SOP",2004,"Not Reported",28,"Cottan-Bimbang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16546,310188,"AUS","NSW SOP",2004,"Not Reported",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16548,310044,"AUS","NSW SOP",2005,"Not Reported",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16549,310044,"AUS","NSW SOP",2007,"Not Reported",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16550,310044,"AUS","NSW SOP",2010,"Not Reported",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16551,310044,"AUS","NSW SOP",2013,"Not Reported",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16552,310044,"AUS","NSW SOP",2004,"Not Reported",28,"Couchy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16553,310046,"AUS","NSW SOP",2005,"Not Reported",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16554,310046,"AUS","NSW SOP",2007,"Not Reported",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16555,310046,"AUS","NSW SOP",2010,"Not Reported",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16556,310046,"AUS","NSW SOP",2013,"Not Reported",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16557,310046,"AUS","NSW SOP",2004,"Not Reported",28,"Courabyra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16558,555543328,"AUS","NSW SOP",2010,"Not Reported",28,"Couradda","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16559,555543328,"AUS","NSW SOP",2013,"Not Reported",28,"Couradda","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16560,310047,"AUS","NSW SOP",2005,"Not Reported",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16561,310047,"AUS","NSW SOP",2007,"Not Reported",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16562,310047,"AUS","NSW SOP",2010,"Not Reported",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16563,310047,"AUS","NSW SOP",2013,"Not Reported",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16564,310047,"AUS","NSW SOP",2004,"Not Reported",28,"Coxcomb","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16565,309349,"AUS","Birdlife IBA",2008,"Not Reported",28,"Cradle Mountain-Lake St Clair","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16566,309349,"AUS","Tasmanian WHA",2004,"Not Reported",28,"Cradle Mountain-Lake St Clair","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16567,311499,"AUS","Victorian SOP",2010,"Not Reported",28,"Craigieburn Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16568,311499,"AUS","Victorian SOP",2005,"Not Reported",28,"Craigieburn Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16569,311499,"AUS","Victorian SOP",2013,"Not Reported",28,"Craigieburn Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16570,126199,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Crater Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16571,126199,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Crater Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16572,555543330,"AUS","NSW SOP",2010,"Not Reported",28,"Crawney Pass","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16573,555543330,"AUS","NSW SOP",2013,"Not Reported",28,"Crawney Pass","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16574,900002,"AUS","GOBI Survey",2006,"Not Reported",28,"Croajingolong National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16575,2029,"AUS","Victorian SOP",2005,"Not Reported",28,"Croajingolong National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16576,2029,"AUS","Victorian SOP",2010,"Not Reported",28,"Croajingolong National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16577,2029,"AUS","Victorian SOP",2013,"Not Reported",28,"Croajingolong National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16578,555576672,"AUS","NSW SOP",2013,"Not Reported",28,"Crooked Creek","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16579,378,"AUS","NSW SOP",2005,"Not Reported",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16580,378,"AUS","NSW SOP",2007,"Not Reported",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16581,378,"AUS","NSW SOP",2010,"Not Reported",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16582,378,"AUS","NSW SOP",2013,"Not Reported",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16583,378,"AUS","NSW SOP",2004,"Not Reported",28,"Crowdy Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16584,23883,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Crows Nest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16585,23883,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Crows Nest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16586,102544,"AUS","NSW SOP",2005,"Not Reported",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16587,102544,"AUS","NSW SOP",2007,"Not Reported",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16588,102544,"AUS","NSW SOP",2010,"Not Reported",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16589,102544,"AUS","NSW SOP",2013,"Not Reported",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16590,102544,"AUS","NSW SOP",2004,"Not Reported",28,"Cudgen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16591,555543332,"AUS","NSW SOP",2010,"Not Reported",28,"Cudgera Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16592,555543332,"AUS","NSW SOP",2013,"Not Reported",28,"Cudgera Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16593,309902,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Cudmore (Limited Depth)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16594,309902,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Cudmore (Limited Depth)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16595,126205,"AUS","NSW SOP",2005,"Not Reported",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16596,126205,"AUS","NSW SOP",2007,"Not Reported",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16597,126205,"AUS","NSW SOP",2010,"Not Reported",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16598,126205,"AUS","NSW SOP",2013,"Not Reported",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16599,126205,"AUS","NSW SOP",2004,"Not Reported",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16600,126205,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16601,126205,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Culgoa Floodplain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16602,310050,"AUS","NSW SOP",2005,"Not Reported",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16603,310050,"AUS","NSW SOP",2007,"Not Reported",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16604,310050,"AUS","NSW SOP",2010,"Not Reported",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16605,310050,"AUS","NSW SOP",2013,"Not Reported",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16606,310050,"AUS","NSW SOP",2004,"Not Reported",28,"Cullendulla Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16607,354552,"AUS","Victorian SOP",2010,"Not Reported",28,"Cullens Lake W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16608,354552,"AUS","Victorian SOP",2005,"Not Reported",28,"Cullens Lake W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16609,354552,"AUS","Victorian SOP",2013,"Not Reported",28,"Cullens Lake W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16610,310051,"AUS","NSW SOP",2005,"Not Reported",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16611,310051,"AUS","NSW SOP",2007,"Not Reported",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16612,310051,"AUS","NSW SOP",2010,"Not Reported",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16613,310051,"AUS","NSW SOP",2013,"Not Reported",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16614,310051,"AUS","NSW SOP",2004,"Not Reported",28,"Cumbebin Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16615,310052,"AUS","NSW SOP",2005,"Not Reported",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16616,310052,"AUS","NSW SOP",2007,"Not Reported",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16617,310052,"AUS","NSW SOP",2010,"Not Reported",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16618,310052,"AUS","NSW SOP",2013,"Not Reported",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16619,126140,"AUS","NSW SOP",2004,"Not Reported",28,"Cascade","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16620,354554,"AUS","NSW SOP",2005,"Not Reported",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16621,354554,"AUS","NSW SOP",2007,"Not Reported",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16622,354554,"AUS","NSW SOP",2010,"Not Reported",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16623,555543333,"AUS","NSW SOP",2007,"Not Reported",28,"Curracabundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16624,555543333,"AUS","NSW SOP",2010,"Not Reported",28,"Curracabundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16625,555543333,"AUS","NSW SOP",2013,"Not Reported",28,"Curracabundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16626,354554,"AUS","NSW SOP",2004,"Not Reported",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16627,354554,"AUS","NSW SOP",2013,"Not Reported",28,"Curracabundi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16628,62990,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Currawinya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16629,62990,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Currawinya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16630,354555,"AUS","NSW SOP",2005,"Not Reported",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16631,354555,"AUS","NSW SOP",2007,"Not Reported",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16632,354555,"AUS","NSW SOP",2010,"Not Reported",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16633,354555,"AUS","NSW SOP",2013,"Not Reported",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16634,354555,"AUS","NSW SOP",2004,"Not Reported",28,"Currys Gap","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16635,354557,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Curtain Fig","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16636,354557,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Curtain Fig","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16637,311522,"AUS","Birdlife IBA",2008,"Not Reported",28,"Curtis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16638,64387,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Curtis Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16639,64387,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Curtis Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16640,310053,"AUS","NSW SOP",2005,"Not Reported",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16641,310053,"AUS","NSW SOP",2007,"Not Reported",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16642,310053,"AUS","NSW SOP",2010,"Not Reported",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16643,310053,"AUS","NSW SOP",2013,"Not Reported",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16644,310053,"AUS","NSW SOP",2004,"Not Reported",28,"Cuumbeun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16645,313895,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"D'Aguilar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16646,313895,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"D'Aguilar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16647,555548734,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16648,555548734,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16649,405,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Daintree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16650,405,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Daintree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16651,62993,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Dalrymple","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16652,62993,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Dalrymple","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16653,310054,"AUS","NSW SOP",2005,"Not Reported",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16654,310054,"AUS","NSW SOP",2007,"Not Reported",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16655,310054,"AUS","NSW SOP",2010,"Not Reported",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16656,310054,"AUS","NSW SOP",2013,"Not Reported",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16657,310054,"AUS","NSW SOP",2004,"Not Reported",28,"Dalrymple-Hay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16658,311539,"AUS","Victorian SOP",2010,"Not Reported",28,"Dalyenong N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16659,311539,"AUS","Victorian SOP",2005,"Not Reported",28,"Dalyenong N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16660,311539,"AUS","Victorian SOP",2013,"Not Reported",28,"Dalyenong N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16661,354567,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Dan Dan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16662,354567,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Dan Dan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16663,10586,"AUS","NSW SOP",2005,"Not Reported",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16664,10586,"AUS","NSW SOP",2007,"Not Reported",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16665,10586,"AUS","NSW SOP",2010,"Not Reported",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16666,10586,"AUS","NSW SOP",2013,"Not Reported",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16667,10586,"AUS","NSW SOP",2004,"Not Reported",28,"Dananbilla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16668,354570,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Danbulla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16670,354570,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Danbulla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16671,24633,"AUS","Victorian SOP",2005,"Not Reported",28,"Dandenong Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16672,24633,"AUS","Victorian SOP",2010,"Not Reported",28,"Dandenong Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16673,24633,"AUS","Victorian SOP",2013,"Not Reported",28,"Dandenong Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16674,555548640,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16675,310055,"AUS","NSW SOP",2005,"Not Reported",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16676,310055,"AUS","NSW SOP",2007,"Not Reported",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16677,310055,"AUS","NSW SOP",2010,"Not Reported",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16678,310055,"AUS","NSW SOP",2013,"Not Reported",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16679,310055,"AUS","NSW SOP",2004,"Not Reported",28,"Dangelong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16680,23489,"AUS","NSW SOP",2005,"Not Reported",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16681,23489,"AUS","NSW SOP",2007,"Not Reported",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16682,23489,"AUS","NSW SOP",2010,"Not Reported",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16683,23489,"AUS","NSW SOP",2013,"Not Reported",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16684,23489,"AUS","NSW SOP",2004,"Not Reported",28,"Dapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16685,310056,"AUS","NSW SOP",2005,"Not Reported",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16686,310056,"AUS","NSW SOP",2007,"Not Reported",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16687,310056,"AUS","NSW SOP",2010,"Not Reported",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16688,310056,"AUS","NSW SOP",2013,"Not Reported",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16689,310056,"AUS","NSW SOP",2004,"Not Reported",28,"Darawank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16690,26013,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Davies Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16691,26013,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Davies Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16692,310057,"AUS","NSW SOP",2005,"Not Reported",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16693,310057,"AUS","NSW SOP",2007,"Not Reported",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16694,310057,"AUS","NSW SOP",2010,"Not Reported",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16695,310057,"AUS","NSW SOP",2013,"Not Reported",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16696,310057,"AUS","NSW SOP",2004,"Not Reported",28,"Davis Scrub","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16697,354586,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16698,354586,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16699,354587,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Dawes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16700,354587,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Dawes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16701,354593,"AUS","Victorian SOP",2010,"Not Reported",28,"Deep Lead Nature Conservation Reserve (No. 2)","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16702,354593,"AUS","Victorian SOP",2005,"Not Reported",28,"Deep Lead Nature Conservation Reserve (No. 2)","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16703,354593,"AUS","Victorian SOP",2013,"Not Reported",28,"Deep Lead Nature Conservation Reserve (No. 2)","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16704,23892,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Deepwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16705,23892,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Deepwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16706,354594,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Deer Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16707,354594,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Deer Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16708,23492,"AUS","NSW SOP",2005,"Not Reported",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16709,23492,"AUS","NSW SOP",2007,"Not Reported",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16710,23492,"AUS","NSW SOP",2010,"Not Reported",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16711,23492,"AUS","NSW SOP",2013,"Not Reported",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16712,23492,"AUS","NSW SOP",2004,"Not Reported",28,"Deer Vale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16713,102546,"AUS","NSW SOP",2005,"Not Reported",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16714,102546,"AUS","NSW SOP",2007,"Not Reported",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16715,102546,"AUS","NSW SOP",2010,"Not Reported",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16716,102546,"AUS","NSW SOP",2004,"Not Reported",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16717,102546,"AUS","NSW SOP",2013,"Not Reported",28,"Demon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16718,62994,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Denham Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16719,62994,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Denham Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16720,64354,"AUS","Victorian SOP",2005,"Not Reported",28,"Dergholm","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16721,64354,"AUS","Victorian SOP",2010,"Not Reported",28,"Dergholm","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16722,64354,"AUS","Victorian SOP",2013,"Not Reported",28,"Dergholm","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16723,555548742,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16724,311587,"AUS","Victorian SOP",2010,"Not Reported",28,"Derrimut Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16725,311587,"AUS","Victorian SOP",2005,"Not Reported",28,"Derrimut Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16726,311587,"AUS","Victorian SOP",2013,"Not Reported",28,"Derrimut Grassland N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16727,2606,"AUS","NSW SOP",2005,"Not Reported",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16728,2606,"AUS","NSW SOP",2007,"Not Reported",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16729,2606,"AUS","NSW SOP",2010,"Not Reported",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16730,2606,"AUS","NSW SOP",2013,"Not Reported",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16731,2606,"AUS","NSW SOP",2004,"Not Reported",28,"Deua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16732,310058,"AUS","NSW SOP",2005,"Not Reported",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16733,310058,"AUS","NSW SOP",2007,"Not Reported",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16734,310058,"AUS","NSW SOP",2010,"Not Reported",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16736,310058,"AUS","NSW SOP",2013,"Not Reported",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16738,354604,"AUS","NSW SOP",2005,"Not Reported",28,"Dharawal","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16739,354604,"AUS","NSW SOP",2007,"Not Reported",28,"Dharawal","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16740,555576680,"AUS","NSW SOP",2013,"Not Reported",28,"Dharawal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16741,310058,"AUS","NSW SOP",2004,"Not Reported",28,"Dharawal","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16742,354604,"AUS","NSW SOP",2004,"Not Reported",28,"Dharawal","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16743,371,"AUS","NSW SOP",2005,"Not Reported",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16744,371,"AUS","NSW SOP",2007,"Not Reported",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16745,371,"AUS","NSW SOP",2010,"Not Reported",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16746,371,"AUS","NSW SOP",2013,"Not Reported",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16747,371,"AUS","NSW SOP",2004,"Not Reported",28,"Dharug","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16748,126240,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Diamantina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16749,126240,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Diamantina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16750,126240,"AUS","Birdlife IBA",2008,"Not Reported",28,"Diamantina","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16751,354611,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16752,354611,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16753,354612,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Dinden","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16754,354612,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Dinden","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16755,420,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16756,420,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16757,2697,"AUS","Victorian SOP",2010,"Not Reported",28,"Discovery Bay Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16758,2697,"AUS","Victorian SOP",2005,"Not Reported",28,"Discovery Bay Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16759,2697,"AUS","Victorian SOP",2013,"Not Reported",28,"Discovery Bay Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16760,305460,"AUS","Victorian SOP",2005,"Not Reported",28,"Discovery Bay","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16761,305460,"AUS","Victorian SOP",2010,"Not Reported",28,"Discovery Bay","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16762,305460,"AUS","Victorian SOP",2013,"Not Reported",28,"Discovery Bay","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16763,2697,"AUS","Birdlife IBA",2008,"Not Reported",28,"Discovery Bay Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16764,357295,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Djiru","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16765,357295,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Djiru","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16766,555543351,"AUS","NSW SOP",2010,"Not Reported",28,"Doctors Nose Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16767,555543351,"AUS","NSW SOP",2013,"Not Reported",28,"Doctors Nose Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16768,354615,"AUS","Victorian SOP",2010,"Not Reported",28,"Doctors Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16769,354615,"AUS","Victorian SOP",2005,"Not Reported",28,"Doctors Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16770,354615,"AUS","Victorian SOP",2013,"Not Reported",28,"Doctors Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16771,126252,"AUS","NSW SOP",2005,"Not Reported",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16772,126252,"AUS","NSW SOP",2007,"Not Reported",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16773,126252,"AUS","NSW SOP",2010,"Not Reported",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16774,126252,"AUS","NSW SOP",2013,"Not Reported",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16775,126252,"AUS","NSW SOP",2004,"Not Reported",28,"Donnybrook Boyup Brook Road","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16776,555576683,"AUS","NSW SOP",2013,"Not Reported",28,"Doodle Comer Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16777,310059,"AUS","NSW SOP",2005,"Not Reported",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16778,310059,"AUS","NSW SOP",2007,"Not Reported",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16779,310059,"AUS","NSW SOP",2010,"Not Reported",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16780,310059,"AUS","NSW SOP",2013,"Not Reported",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16781,309574,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16782,379,"AUS","NSW SOP",2005,"Not Reported",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16783,379,"AUS","NSW SOP",2007,"Not Reported",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16784,379,"AUS","NSW SOP",2010,"Not Reported",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16785,379,"AUS","NSW SOP",2013,"Not Reported",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16786,379,"AUS","NSW SOP",2004,"Not Reported",28,"Dorrigo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16787,309403,"AUS","Birdlife IBA",2008,"Not Reported",28,"Douglas-Apsley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16788,314573,"AUS","Victorian SOP",2010,"Not Reported",28,"Dowd Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16789,314573,"AUS","Victorian SOP",2005,"Not Reported",28,"Dowd Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16790,314573,"AUS","Victorian SOP",2013,"Not Reported",28,"Dowd Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16791,314574,"AUS","Victorian SOP",2010,"Not Reported",28,"Dowdle Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16792,314574,"AUS","Victorian SOP",2005,"Not Reported",28,"Dowdle Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16793,555543354,"AUS","NSW SOP",2010,"Not Reported",28,"Dowe","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16794,555543354,"AUS","NSW SOP",2013,"Not Reported",28,"Dowe","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16795,310060,"AUS","NSW SOP",2005,"Not Reported",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16796,310060,"AUS","NSW SOP",2007,"Not Reported",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16797,310060,"AUS","NSW SOP",2010,"Not Reported",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16798,310060,"AUS","NSW SOP",2013,"Not Reported",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16799,310060,"AUS","NSW SOP",2004,"Not Reported",28,"Downfall","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16800,63940,"AUS","Birdlife IBA",2008,"Not Reported",28,"Dragon Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16801,354632,"AUS","Victorian SOP",2013,"Not Reported",28,"Dreeite N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16802,555543355,"AUS","NSW SOP",2010,"Not Reported",28,"Drillwarrina","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16803,555543355,"AUS","NSW SOP",2013,"Not Reported",28,"Drillwarrina","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16804,63001,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Dryander","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16805,63001,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Dryander","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16806,555543359,"AUS","NSW SOP",2007,"Not Reported",28,"Dthinna Dthinnawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16807,555543359,"AUS","NSW SOP",2010,"Not Reported",28,"Dthinna Dthinnawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16808,555543359,"AUS","NSW SOP",2013,"Not Reported",28,"Dthinna Dthinnawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16809,555543358,"AUS","NSW SOP",2010,"Not Reported",28,"Dthinna Dthinnawan","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16810,555543358,"AUS","NSW SOP",2013,"Not Reported",28,"Dthinna Dthinnawan","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16811,23899,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Dularcha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16812,23899,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Dularcha","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16813,126263,"AUS","Victorian SOP",2005,"Not Reported",28,"Dundas","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16814,310061,"AUS","NSW SOP",2005,"Not Reported",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16815,310061,"AUS","NSW SOP",2007,"Not Reported",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16816,310061,"AUS","NSW SOP",2010,"Not Reported",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16817,310061,"AUS","NSW SOP",2013,"Not Reported",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16818,313673,"AUS","NSW SOP",2004,"Not Reported",28,"Chaelundi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16819,354651,"AUS","NSW SOP",2007,"Not Reported",28,"Dural","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16820,354651,"AUS","NSW SOP",2010,"Not Reported",28,"Dural","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16821,354651,"AUS","NSW SOP",2013,"Not Reported",28,"Dural","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16822,555543393,"AUS","NSW SOP",2010,"Not Reported",28,"Durands Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16823,555543393,"AUS","NSW SOP",2013,"Not Reported",28,"Durands Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16824,555543395,"AUS","NSW SOP",2007,"Not Reported",28,"Duroby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16825,555543395,"AUS","NSW SOP",2010,"Not Reported",28,"Duroby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16826,555543395,"AUS","NSW SOP",2013,"Not Reported",28,"Duroby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16827,555543396,"AUS","NSW SOP",2010,"Not Reported",28,"Durridgere","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16828,555543396,"AUS","NSW SOP",2013,"Not Reported",28,"Durridgere","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16829,310062,"AUS","NSW SOP",2005,"Not Reported",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16830,310062,"AUS","NSW SOP",2007,"Not Reported",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16831,310062,"AUS","NSW SOP",2010,"Not Reported",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16832,310062,"AUS","NSW SOP",2013,"Not Reported",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16833,310062,"AUS","NSW SOP",2004,"Not Reported",28,"Duval","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16834,305309,"AUS","Victorian SOP",2010,"Not Reported",28,"Eagle Rock","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16835,305309,"AUS","Victorian SOP",2005,"Not Reported",28,"Eagle Rock","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16836,305309,"AUS","Victorian SOP",2013,"Not Reported",28,"Eagle Rock","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16837,23499,"AUS","NSW SOP",2005,"Not Reported",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16838,23499,"AUS","NSW SOP",2007,"Not Reported",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16839,23499,"AUS","NSW SOP",2010,"Not Reported",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16840,23499,"AUS","NSW SOP",2013,"Not Reported",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16841,23499,"AUS","NSW SOP",2004,"Not Reported",28,"Eagles Claw","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16842,555543400,"AUS","Victorian SOP",2013,"Not Reported",28,"Ecklin South Swamp N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16843,314878,"AUS","Birdlife IBA",2008,"Not Reported",28,"Eclipse Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16844,1152,"AUS","NSW SOP",2005,"Not Reported",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16845,1152,"AUS","NSW SOP",2007,"Not Reported",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16846,1152,"AUS","NSW SOP",2010,"Not Reported",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16847,1152,"AUS","NSW SOP",2013,"Not Reported",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16848,1152,"AUS","NSW SOP",2004,"Not Reported",28,"Egan Peaks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16849,309734,"AUS","Birdlife IBA",2008,"Not Reported",28,"Wright and Egg Islands","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16850,23903,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Ella Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16851,23903,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Ella Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16852,310063,"AUS","NSW SOP",2005,"Not Reported",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16853,310063,"AUS","NSW SOP",2007,"Not Reported",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16854,310063,"AUS","NSW SOP",2010,"Not Reported",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16855,310063,"AUS","NSW SOP",2013,"Not Reported",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16856,310063,"AUS","NSW SOP",2004,"Not Reported",28,"Ellerslie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16857,313834,"AUS","NTMEE",2013,"Not Reported",28,"Elsey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16858,447,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Endeavour River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16859,447,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Endeavour River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16860,311659,"AUS","Victorian SOP",2005,"Not Reported",28,"Enfield","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16861,311659,"AUS","Victorian SOP",2010,"Not Reported",28,"Enfield","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16862,311659,"AUS","Victorian SOP",2013,"Not Reported",28,"Enfield","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16863,445,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16864,445,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16865,309907,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Erringibba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16866,309907,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Erringibba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16867,24645,"AUS","Victorian SOP",2005,"Not Reported",28,"Errinundra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16868,24645,"AUS","Victorian SOP",2010,"Not Reported",28,"Errinundra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16869,24645,"AUS","Victorian SOP",2013,"Not Reported",28,"Errinundra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16870,555548820,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Errk Oykangand (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16871,555548820,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Errk Oykangand (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16872,354687,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Esk","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16873,354687,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Esk","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16874,9477,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Eubenangee Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16875,9477,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Eubenangee Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16876,313896,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Eudlo Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16877,313896,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Eudlo Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16878,23501,"AUS","NSW SOP",2005,"Not Reported",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16879,23501,"AUS","NSW SOP",2007,"Not Reported",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16880,23501,"AUS","NSW SOP",2013,"Not Reported",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16881,23501,"AUS","NSW SOP",2010,"Not Reported",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16882,23501,"AUS","NSW SOP",2004,"Not Reported",28,"Eugowra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16883,407,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Eungella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16884,407,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Eungella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16885,432,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Eurimbula","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16886,432,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Eurimbula","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16887,102547,"AUS","NSW SOP",2005,"Not Reported",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16888,102547,"AUS","NSW SOP",2007,"Not Reported",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16889,102547,"AUS","NSW SOP",2010,"Not Reported",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16890,102547,"AUS","NSW SOP",2013,"Not Reported",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16891,102547,"AUS","NSW SOP",2004,"Not Reported",28,"Eurobodalla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16892,555543408,"AUS","NSW SOP",2010,"Not Reported",28,"Eusdale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16893,555543408,"AUS","NSW SOP",2013,"Not Reported",28,"Eusdale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16894,555576691,"AUS","NSW SOP",2013,"Not Reported",28,"Euston","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16895,23502,"AUS","NSW SOP",2005,"Not Reported",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16896,23502,"AUS","NSW SOP",2007,"Not Reported",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16897,23502,"AUS","NSW SOP",2010,"Not Reported",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16898,23502,"AUS","NSW SOP",2013,"Not Reported",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16899,23502,"AUS","NSW SOP",2004,"Not Reported",28,"Evans Crown","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16900,555543409,"AUS","NSW SOP",2007,"Not Reported",28,"Everlasting Swamp","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16901,555543409,"AUS","NSW SOP",2010,"Not Reported",28,"Everlasting Swamp","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16902,555543409,"AUS","NSW SOP",2013,"Not Reported",28,"Everlasting Swamp","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16903,314576,"AUS","Victorian SOP",2005,"Not Reported",28,"Ewing Morass W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16904,314576,"AUS","Victorian SOP",2010,"Not Reported",28,"Ewing Morass W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16905,126281,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Expedition (Limited Depth)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16906,126281,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Expedition (Limited Depth)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16907,23909,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Fairlies Knob","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16908,23909,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Fairlies Knob","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16909,126284,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Family Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16910,126284,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Family Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16911,23910,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Ferntree Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16912,23910,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Ferntree Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16913,310064,"AUS","NSW SOP",2005,"Not Reported",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16914,310064,"AUS","NSW SOP",2007,"Not Reported",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16915,310064,"AUS","NSW SOP",2010,"Not Reported",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16916,310064,"AUS","NSW SOP",2013,"Not Reported",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16917,310064,"AUS","NSW SOP",2004,"Not Reported",28,"Fifes Knob","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16918,354710,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Finucane Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16919,354710,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Finucane Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16920,310065,"AUS","NSW SOP",2005,"Not Reported",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16921,310065,"AUS","NSW SOP",2007,"Not Reported",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16922,310065,"AUS","NSW SOP",2010,"Not Reported",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16923,310065,"AUS","NSW SOP",2013,"Not Reported",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16924,310065,"AUS","NSW SOP",2004,"Not Reported",28,"Fishermans Bend","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16925,558,"AUS","Birdlife IBA",2008,"Not Reported",28,"Fitzgerald River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16926,63014,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Fitzroy Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16927,63014,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Fitzroy Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16928,23506,"AUS","NSW SOP",2005,"Not Reported",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16929,23506,"AUS","NSW SOP",2007,"Not Reported",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16930,23506,"AUS","NSW SOP",2010,"Not Reported",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16931,23506,"AUS","NSW SOP",2013,"Not Reported",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16932,23506,"AUS","NSW SOP",2004,"Not Reported",28,"Five Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16933,900737,"AUS","Birdlife IBA",2008,"Not Reported",28,"Fivebough and Tuckerbil Swamps","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16934,555543387,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16935,555543387,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16936,310066,"AUS","NSW SOP",2005,"Not Reported",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16937,310066,"AUS","NSW SOP",2007,"Not Reported",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16938,310066,"AUS","NSW SOP",2010,"Not Reported",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16939,310066,"AUS","NSW SOP",2013,"Not Reported",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16940,310066,"AUS","NSW SOP",2004,"Not Reported",28,"Flaggy Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16941,23507,"AUS","NSW SOP",2005,"Not Reported",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16942,23507,"AUS","NSW SOP",2007,"Not Reported",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16943,23507,"AUS","NSW SOP",2010,"Not Reported",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16944,23507,"AUS","NSW SOP",2013,"Not Reported",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16945,23507,"AUS","NSW SOP",2004,"Not Reported",28,"Flagstaff Memorial","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16946,555543388,"AUS","NSW SOP",2010,"Not Reported",28,"Flat Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16947,555543388,"AUS","NSW SOP",2013,"Not Reported",28,"Flat Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16948,2632,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Flinders Group (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16949,2632,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Flinders Group (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16950,475,"AUS","Birdlife IBA",2008,"Not Reported",28,"Ikara-Flinders Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16951,313804,"AUS","NTMEE",2013,"Not Reported",28,"Fogg Dam","Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16952,63020,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16953,126295,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Forest Den","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16954,126295,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Forest Den","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16955,63021,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Fort Lytton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16956,63021,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Fort Lytton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16957,310067,"AUS","NSW SOP",2005,"Not Reported",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16958,310067,"AUS","NSW SOP",2007,"Not Reported",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16959,310067,"AUS","NSW SOP",2010,"Not Reported",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16960,310067,"AUS","NSW SOP",2013,"Not Reported",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16961,310061,"AUS","NSW SOP",2004,"Not Reported",28,"Dunggir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16962,434,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Forty Mile Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16963,434,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Forty Mile Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16964,126304,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Frankland Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16965,126304,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Frankland Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16966,309430,"AUS","Tasmanian WHA",2004,"Not Reported",28,"Franklin-Gordon Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16967,67730,"AUS","WH Outlook Report",2014,"Not Reported",28,"Fraser Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16968,23508,"AUS","NSW SOP",2005,"Not Reported",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16969,23508,"AUS","NSW SOP",2007,"Not Reported",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16970,23508,"AUS","NSW SOP",2010,"Not Reported",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16971,23508,"AUS","NSW SOP",2013,"Not Reported",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16972,23508,"AUS","NSW SOP",2004,"Not Reported",28,"Freemantle","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16973,2710,"AUS","Victorian SOP",2010,"Not Reported",28,"French Island National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16974,305458,"AUS","Victorian SOP",2010,"Not Reported",28,"French Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16975,2710,"AUS","Victorian SOP",2005,"Not Reported",28,"French Island National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16976,305458,"AUS","Victorian SOP",2005,"Not Reported",28,"French Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16977,2710,"AUS","Victorian SOP",2013,"Not Reported",28,"French Island National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16978,305458,"AUS","Victorian SOP",2013,"Not Reported",28,"French Island","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16979,23914,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Freshwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16980,23914,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Freshwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16981,354742,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16982,354742,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16983,354742,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16984,354742,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16985,354742,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16986,555548673,"AUS","NSW SOP",2010,"Not Reported",28,"Gaagal Wanggaan (South Beach)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16987,555548673,"AUS","NSW SOP",2013,"Not Reported",28,"Gaagal Wanggaan (South Beach)","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16988,555548797,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Gadgarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16989,310068,"AUS","NSW SOP",2005,"Not Reported",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16990,310068,"AUS","NSW SOP",2007,"Not Reported",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16991,310068,"AUS","NSW SOP",2010,"Not Reported",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16992,310068,"AUS","NSW SOP",2004,"Not Reported",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16993,310068,"AUS","NSW SOP",2013,"Not Reported",28,"Gads Sugarloaf","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16994,555548717,"AUS","Victorian SOP",2010,"Not Reported",28,"Gadsen Bend Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16995,555548717,"AUS","Victorian SOP",2013,"Not Reported",28,"Gadsen Bend Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16996,102548,"AUS","NSW SOP",2005,"Not Reported",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16997,102548,"AUS","NSW SOP",2007,"Not Reported",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16998,102548,"AUS","NSW SOP",2010,"Not Reported",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +16999,102548,"AUS","NSW SOP",2013,"Not Reported",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17000,102548,"AUS","NSW SOP",2004,"Not Reported",28,"Gamilaroi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17001,310069,"AUS","NSW SOP",2005,"Not Reported",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17002,310069,"AUS","NSW SOP",2007,"Not Reported",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17003,310069,"AUS","NSW SOP",2010,"Not Reported",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17004,310069,"AUS","NSW SOP",2013,"Not Reported",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17005,310069,"AUS","NSW SOP",2004,"Not Reported",28,"Ganay","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17006,555576696,"AUS","NSW SOP",2013,"Not Reported",28,"Gandangara","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17007,354751,"AUS","NSW SOP",2005,"Not Reported",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17008,354751,"AUS","NSW SOP",2007,"Not Reported",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17009,354751,"AUS","NSW SOP",2010,"Not Reported",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17010,354751,"AUS","NSW SOP",2013,"Not Reported",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17011,354751,"AUS","NSW SOP",2004,"Not Reported",28,"Garawarra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17012,555543411,"AUS","NSW SOP",2007,"Not Reported",28,"Garby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17013,555543411,"AUS","NSW SOP",2010,"Not Reported",28,"Garby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17014,555543411,"AUS","NSW SOP",2013,"Not Reported",28,"Garby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17015,555543411,"AUS","NSW SOP",2005,"Not Reported",28,"Garby","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17016,313675,"AUS","NSW SOP",2005,"Not Reported",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17017,313675,"AUS","NSW SOP",2007,"Not Reported",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17018,313675,"AUS","NSW SOP",2010,"Not Reported",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17019,313675,"AUS","NSW SOP",2013,"Not Reported",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17020,313675,"AUS","NSW SOP",2004,"Not Reported",28,"Gardens of Stone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17021,315029,"AUS","NTMEE",2013,"Not Reported",28,"Garig Gunak Barlu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17022,63026,"AUS","NSW SOP",2005,"Not Reported",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17023,63026,"AUS","NSW SOP",2007,"Not Reported",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17024,63026,"AUS","NSW SOP",2010,"Not Reported",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17025,63026,"AUS","NSW SOP",2013,"Not Reported",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17026,63026,"AUS","NSW SOP",2004,"Not Reported",28,"Garigal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17027,555543412,"AUS","NSW SOP",2010,"Not Reported",28,"Garrawilla","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17028,555543412,"AUS","NSW SOP",2013,"Not Reported",28,"Garrawilla","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17029,354757,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Gatton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17030,354757,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Gatton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17031,126313,"AUS","Birdlife IBA",2008,"Not Reported",28,"Gawler Ranges","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17032,314578,"AUS","Victorian SOP",2010,"Not Reported",28,"Gaynor Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17033,314578,"AUS","Victorian SOP",2013,"Not Reported",28,"Gaynor Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17034,354760,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Geham","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17035,354760,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Geham","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17036,314817,"AUS","Victorian SOP",2010,"Not Reported",28,"Gemmill Swamp W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17037,314817,"AUS","Victorian SOP",2005,"Not Reported",28,"Gemmill Swamp W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17038,314817,"AUS","Victorian SOP",2013,"Not Reported",28,"Gemmill Swamp W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17039,1159,"AUS","NSW SOP",2005,"Not Reported",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17040,1159,"AUS","NSW SOP",2007,"Not Reported",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17041,1159,"AUS","NSW SOP",2010,"Not Reported",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17042,1159,"AUS","NSW SOP",2013,"Not Reported",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17043,1159,"AUS","NSW SOP",2004,"Not Reported",28,"Georges Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17044,10623,"AUS","NSW SOP",2005,"Not Reported",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17046,10623,"AUS","NSW SOP",2007,"Not Reported",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17047,10623,"AUS","NSW SOP",2010,"Not Reported",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17048,10623,"AUS","NSW SOP",2013,"Not Reported",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17049,10623,"AUS","NSW SOP",2004,"Not Reported",28,"Georges River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17051,310070,"AUS","NSW SOP",2005,"Not Reported",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17052,310070,"AUS","NSW SOP",2007,"Not Reported",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17053,310070,"AUS","NSW SOP",2010,"Not Reported",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17054,310070,"AUS","NSW SOP",2013,"Not Reported",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17055,310111,"AUS","NSW SOP",2004,"Not Reported",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17056,310071,"AUS","NSW SOP",2005,"Not Reported",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17057,310071,"AUS","NSW SOP",2007,"Not Reported",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17058,310071,"AUS","NSW SOP",2010,"Not Reported",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17059,310071,"AUS","NSW SOP",2013,"Not Reported",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17060,310071,"AUS","NSW SOP",2004,"Not Reported",28,"Gibraltar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17061,366,"AUS","NSW SOP",2005,"Not Reported",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17062,366,"AUS","NSW SOP",2007,"Not Reported",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17063,366,"AUS","NSW SOP",2010,"Not Reported",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17064,366,"AUS","NSW SOP",2013,"Not Reported",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17065,366,"AUS","NSW SOP",2004,"Not Reported",28,"Gibraltar Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17066,555576697,"AUS","NSW SOP",2013,"Not Reported",28,"Gillindich","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17067,555576698,"AUS","NSW SOP",2013,"Not Reported",28,"Gilwarny","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17068,555576699,"AUS","NSW SOP",2013,"Not Reported",28,"Ginghet","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17069,2687,"AUS","Victorian SOP",2010,"Not Reported",28,"Gippsland Lakes Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17070,2687,"AUS","Victorian SOP",2005,"Not Reported",28,"Gippsland Lakes Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17071,2687,"AUS","Victorian SOP",2013,"Not Reported",28,"Gippsland Lakes Coastal Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17072,310072,"AUS","NSW SOP",2005,"Not Reported",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17073,310072,"AUS","NSW SOP",2007,"Not Reported",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17074,310072,"AUS","NSW SOP",2010,"Not Reported",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17075,310072,"AUS","NSW SOP",2013,"Not Reported",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17076,310072,"AUS","NSW SOP",2004,"Not Reported",28,"Girralang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17077,555548817,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Girramay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17078,555548817,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Girramay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17079,421,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Girraween","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17080,421,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Girraween","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17081,354779,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Girringun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17082,354779,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Girringun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17083,555543417,"AUS","NSW SOP",2010,"Not Reported",28,"Gir-um-bit","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17084,555543417,"AUS","NSW SOP",2013,"Not Reported",28,"Gir-um-bit","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17085,555543418,"AUS","NSW SOP",2010,"Not Reported",28,"Gir-um-bit","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17086,555543418,"AUS","NSW SOP",2013,"Not Reported",28,"Gir-um-bit","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17087,309911,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Glass House Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17088,309911,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Glass House Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17089,354782,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Glastonbury","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17090,354782,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Glastonbury","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17091,354785,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Glenbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17092,354785,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Glenbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17093,127514,"AUS","Victorian SOP",2005,"Not Reported",28,"Glenelg River (8) SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17094,127518,"AUS","Victorian SOP",2005,"Not Reported",28,"Glenelg River, Fulham SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17095,127518,"AUS","Victorian SOP",2010,"Not Reported",28,"Glenelg River, Fulham SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17096,127518,"AUS","Victorian SOP",2013,"Not Reported",28,"Glenelg River, Fulham SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17097,127426,"AUS","Victorian SOP",2005,"Not Reported",28,"Glenorchy I5 B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17098,354794,"AUS","NSW SOP",2005,"Not Reported",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17099,354794,"AUS","NSW SOP",2007,"Not Reported",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17100,354794,"AUS","NSW SOP",2010,"Not Reported",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17101,354794,"AUS","NSW SOP",2013,"Not Reported",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17102,354794,"AUS","NSW SOP",2004,"Not Reported",28,"Glenrock","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17103,127565,"AUS","Victorian SOP",2010,"Not Reported",28,"Glenrowan I69 B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17104,127565,"AUS","Victorian SOP",2005,"Not Reported",28,"Glenrowan I69 B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17105,126331,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Gloucester Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17106,126331,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Gloucester Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17107,126333,"AUS","Victorian SOP",2005,"Not Reported",28,"Gobarup N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17108,126333,"AUS","Victorian SOP",2010,"Not Reported",28,"Gobarup N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17109,126333,"AUS","Victorian SOP",2013,"Not Reported",28,"Gobarup N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17110,12202,"AUS","WH Outlook Report",2014,"Not Reported",28,"Gondwana Rainforests of Australia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17111,126335,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Goneaway","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17112,126335,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Goneaway","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17113,102551,"AUS","NSW SOP",2005,"Not Reported",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17114,102551,"AUS","NSW SOP",2007,"Not Reported",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17115,102551,"AUS","NSW SOP",2010,"Not Reported",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17116,102551,"AUS","NSW SOP",2013,"Not Reported",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17117,102551,"AUS","NSW SOP",2004,"Not Reported",28,"Goobang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17118,310073,"AUS","NSW SOP",2005,"Not Reported",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17119,310073,"AUS","NSW SOP",2007,"Not Reported",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17120,310073,"AUS","NSW SOP",2010,"Not Reported",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17121,310073,"AUS","NSW SOP",2013,"Not Reported",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17122,310073,"AUS","NSW SOP",2004,"Not Reported",28,"Good Good","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17123,309913,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Good Night Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17124,309913,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Good Night Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17125,126336,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Goodedulla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17126,126336,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Goodedulla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17127,555543376,"AUS","NSW SOP",2010,"Not Reported",28,"Goodiman","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17128,555543376,"AUS","NSW SOP",2013,"Not Reported",28,"Goodiman","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17129,555548494,"AUS","NSW SOP",2010,"Not Reported",28,"Goolawah","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17130,555548494,"AUS","NSW SOP",2013,"Not Reported",28,"Goolawah","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17131,555548663,"AUS","NSW SOP",2010,"Not Reported",28,"Goolawah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17132,555548663,"AUS","NSW SOP",2013,"Not Reported",28,"Goolawah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17133,23924,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Goold Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17134,23924,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Goold Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17135,314729,"AUS","Victorian SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17136,555548318,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17137,555548318,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17138,555548728,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Goomboorian","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17139,555548728,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Goomboorian","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17140,23514,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17141,23514,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17142,23514,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17143,23514,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17144,310074,"AUS","NSW SOP",2005,"Not Reported",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17145,310074,"AUS","NSW SOP",2007,"Not Reported",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17146,310074,"AUS","NSW SOP",2010,"Not Reported",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17147,310074,"AUS","NSW SOP",2013,"Not Reported",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17148,310074,"AUS","NSW SOP",2004,"Not Reported",28,"Goonengerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17149,555543377,"AUS","NSW SOP",2010,"Not Reported",28,"Goonoo","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17150,555543377,"AUS","NSW SOP",2013,"Not Reported",28,"Goonoo","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17151,555543378,"AUS","NSW SOP",2010,"Not Reported",28,"Goonoo","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17152,555543378,"AUS","NSW SOP",2013,"Not Reported",28,"Goonoo","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17153,310075,"AUS","NSW SOP",2005,"Not Reported",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17154,310075,"AUS","NSW SOP",2007,"Not Reported",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17155,310075,"AUS","NSW SOP",2010,"Not Reported",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17156,310075,"AUS","NSW SOP",2013,"Not Reported",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17157,310075,"AUS","NSW SOP",2004,"Not Reported",28,"Goonook","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17158,555543379,"AUS","NSW SOP",2010,"Not Reported",28,"Goonoowigal","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17159,555543379,"AUS","NSW SOP",2013,"Not Reported",28,"Goonoowigal","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17160,23515,"AUS","NSW SOP",2005,"Not Reported",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17161,23515,"AUS","NSW SOP",2007,"Not Reported",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17162,23515,"AUS","NSW SOP",2010,"Not Reported",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17163,23515,"AUS","NSW SOP",2013,"Not Reported",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17164,23515,"AUS","NSW SOP",2004,"Not Reported",28,"Goorooyarroo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17165,313919,"AUS","Birdlife IBA",2008,"Not Reported",28,"Goose Island","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17166,146691,"AUS","NSW SOP",2005,"Not Reported",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17167,146691,"AUS","NSW SOP",2007,"Not Reported",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17168,146691,"AUS","NSW SOP",2010,"Not Reported",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17169,146691,"AUS","NSW SOP",2013,"Not Reported",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17170,146691,"AUS","NSW SOP",2004,"Not Reported",28,"Goulburn River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17171,310076,"AUS","NSW SOP",2005,"Not Reported",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17172,310076,"AUS","NSW SOP",2007,"Not Reported",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17173,310076,"AUS","NSW SOP",2010,"Not Reported",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17174,310076,"AUS","NSW SOP",2013,"Not Reported",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17175,310076,"AUS","NSW SOP",2004,"Not Reported",28,"Gourock","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17176,10607,"AUS","Victorian SOP",2010,"Not Reported",28,"Grampians National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17177,10607,"AUS","Victorian SOP",2005,"Not Reported",28,"Grampians National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17178,10607,"AUS","Victorian SOP",2013,"Not Reported",28,"Grampians National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17179,127512,"AUS","Victorian SOP",2005,"Not Reported",28,"Grants B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17180,2628,"AUS","WH Outlook Report",2009,"Not Reported",28,"Great Barrier Reef","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17181,2571,"AUS","WH Outlook Report",2014,"Not Reported",28,"Great Barrier Reef","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17182,23928,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Great Basalt Wall","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17183,23928,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Great Basalt Wall","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17184,354835,"AUS","Victorian SOP",2010,"Not Reported",28,"Great Otway National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17185,354835,"AUS","Victorian SOP",2013,"Not Reported",28,"Great Otway National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17186,309914,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Great Sandy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17187,309914,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Great Sandy","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17188,354837,"AUS","Victorian SOP",2010,"Not Reported",28,"Great Spectacle, Little Spectacle, Round Lake, Tobacco Lake","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17189,354837,"AUS","Victorian SOP",2013,"Not Reported",28,"Great Spectacle, Little Spectacle, Round Lake, Tobacco Lake","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17190,354841,"AUS","Victorian SOP",2005,"Not Reported",28,"Greater Bendigo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17191,354841,"AUS","Victorian SOP",2010,"Not Reported",28,"Greater Bendigo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17192,354841,"AUS","Victorian SOP",2013,"Not Reported",28,"Greater Bendigo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17193,220294,"AUS","WH Outlook Report",2014,"Not Reported",28,"Greater Blue Mountains Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17194,126356,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Green Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17195,126356,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Green Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17196,313836,"AUS","Birdlife IBA",2008,"Not Reported",28,"Judbarra / Gregory","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17197,127143,"AUS","Victorian SOP",2013,"Not Reported",28,"Gresswell Forest (part a) N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17198,463,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Grey Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17199,463,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Grey Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17200,555548811,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Grongah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17201,555548811,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Grongah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17202,23518,"AUS","NSW SOP",2005,"Not Reported",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17203,23518,"AUS","NSW SOP",2007,"Not Reported",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17204,23518,"AUS","NSW SOP",2010,"Not Reported",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17205,23518,"AUS","NSW SOP",2004,"Not Reported",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17206,23518,"AUS","NSW SOP",2013,"Not Reported",28,"Gubbata","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17207,310077,"AUS","NSW SOP",2005,"Not Reported",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17208,310077,"AUS","NSW SOP",2007,"Not Reported",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17209,310077,"AUS","NSW SOP",2010,"Not Reported",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17210,310077,"AUS","NSW SOP",2013,"Not Reported",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17211,310077,"AUS","NSW SOP",2004,"Not Reported",28,"Gulaga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17212,102552,"AUS","NSW SOP",2005,"Not Reported",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17213,102552,"AUS","NSW SOP",2007,"Not Reported",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17214,102552,"AUS","NSW SOP",2010,"Not Reported",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17215,102552,"AUS","NSW SOP",2013,"Not Reported",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17216,102552,"AUS","NSW SOP",2004,"Not Reported",28,"Gulguer","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17217,494,"AUS","Birdlife IBA",2008,"Not Reported",28,"Gum Lagoon","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17218,354858,"AUS","NSW SOP",2005,"Not Reported",28,"Gumbaynggirr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17219,354858,"AUS","NSW SOP",2007,"Not Reported",28,"Gumbaynggirr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17220,354858,"AUS","NSW SOP",2010,"Not Reported",28,"Gumbaynggirr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17221,354858,"AUS","NSW SOP",2013,"Not Reported",28,"Gumbaynggirr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17222,555543366,"AUS","NSW SOP",2010,"Not Reported",28,"Gumbaynggirr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17223,555543366,"AUS","NSW SOP",2013,"Not Reported",28,"Gumbaynggirr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17224,555543366,"AUS","Victorian SOP",2010,"Not Reported",28,"Gumbaynggirr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17225,555543366,"AUS","Victorian SOP",2013,"Not Reported",28,"Gumbaynggirr","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17226,310078,"AUS","NSW SOP",2005,"Not Reported",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17227,310078,"AUS","NSW SOP",2007,"Not Reported",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17229,310078,"AUS","NSW SOP",2010,"Not Reported",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17231,310078,"AUS","NSW SOP",2013,"Not Reported",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17233,310078,"AUS","NSW SOP",2004,"Not Reported",28,"Gundabooka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17234,555543368,"AUS","NSW SOP",2007,"Not Reported",28,"Gungewalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17235,555543368,"AUS","NSW SOP",2010,"Not Reported",28,"Gungewalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17236,555543368,"AUS","NSW SOP",2013,"Not Reported",28,"Gungewalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17237,127155,"AUS","Victorian SOP",2005,"Not Reported",28,"Gunners Tank B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17238,555543369,"AUS","NSW SOP",2010,"Not Reported",28,"Gunyerwarildi","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17239,555543369,"AUS","NSW SOP",2013,"Not Reported",28,"Gunyerwarildi","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17240,354864,"AUS","NSW SOP",2005,"Not Reported",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17241,354864,"AUS","NSW SOP",2007,"Not Reported",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17242,354864,"AUS","NSW SOP",2010,"Not Reported",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17243,354864,"AUS","NSW SOP",2013,"Not Reported",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17244,354864,"AUS","NSW SOP",2004,"Not Reported",28,"Gurranang","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17245,361,"AUS","NSW SOP",2005,"Not Reported",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17246,361,"AUS","NSW SOP",2007,"Not Reported",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17247,361,"AUS","NSW SOP",2010,"Not Reported",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17248,361,"AUS","NSW SOP",2013,"Not Reported",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17249,313689,"AUS","NSW SOP",2005,"Not Reported",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17250,313689,"AUS","NSW SOP",2007,"Not Reported",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17251,313689,"AUS","NSW SOP",2010,"Not Reported",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17252,354866,"AUS","NSW SOP",2005,"Not Reported",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17253,354866,"AUS","NSW SOP",2007,"Not Reported",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17254,354866,"AUS","NSW SOP",2010,"Not Reported",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17255,354866,"AUS","NSW SOP",2013,"Not Reported",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17256,361,"AUS","NSW SOP",2004,"Not Reported",28,"Guy Fawkes River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17257,354866,"AUS","NSW SOP",2004,"Not Reported",28,"Guy Fawkes River","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17258,313689,"AUS","NSW SOP",2013,"Not Reported",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17259,313689,"AUS","NSW SOP",2004,"Not Reported",28,"Guy Fawkes River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17260,555543370,"AUS","NSW SOP",2010,"Not Reported",28,"Gwydir River","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17261,555543370,"AUS","NSW SOP",2013,"Not Reported",28,"Gwydir River","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17262,555543371,"AUS","NSW SOP",2010,"Not Reported",28,"Gwydir River","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17263,555543371,"AUS","NSW SOP",2013,"Not Reported",28,"Gwydir River","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17264,555576711,"AUS","NSW SOP",2013,"Not Reported",28,"Gwydir Wetlands","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17265,354869,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Gympie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17266,354869,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Gympie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17267,126363,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Halifax Bay Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17268,126363,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Halifax Bay Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17269,354873,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Hampton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17270,354873,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Hampton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17271,63040,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Hann Tableland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17272,63040,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Hann Tableland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17273,309453,"AUS","Tasmanian WHA",2004,"Not Reported",28,"Hartz Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17274,23936,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Hasties Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17275,23936,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Hasties Swamp","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17276,384,"AUS","NSW SOP",2005,"Not Reported",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17277,384,"AUS","NSW SOP",2007,"Not Reported",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17278,384,"AUS","NSW SOP",2010,"Not Reported",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17279,384,"AUS","NSW SOP",2013,"Not Reported",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17280,384,"AUS","NSW SOP",2004,"Not Reported",28,"Hat Head","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17281,314586,"AUS","Victorian SOP",2005,"Not Reported",28,"Hateleys Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17282,533,"AUS","Victorian SOP",2005,"Not Reported",28,"Hattah - Kulkyne National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17283,533,"AUS","Victorian SOP",2010,"Not Reported",28,"Hattah - Kulkyne National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17284,533,"AUS","Victorian SOP",2013,"Not Reported",28,"Hattah - Kulkyne National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17285,310080,"AUS","NSW SOP",2005,"Not Reported",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17286,310080,"AUS","NSW SOP",2007,"Not Reported",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17287,310080,"AUS","NSW SOP",2010,"Not Reported",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17288,310080,"AUS","NSW SOP",2004,"Not Reported",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17289,310080,"AUS","NSW SOP",2013,"Not Reported",28,"Hattons Bluff","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17290,23521,"AUS","NSW SOP",2005,"Not Reported",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17291,23521,"AUS","NSW SOP",2007,"Not Reported",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17292,23521,"AUS","NSW SOP",2010,"Not Reported",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17293,23521,"AUS","NSW SOP",2013,"Not Reported",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17294,23521,"AUS","NSW SOP",2004,"Not Reported",28,"Hattons Corner","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17295,63046,"AUS","NSW SOP",2005,"Not Reported",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17296,63046,"AUS","NSW SOP",2007,"Not Reported",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17297,63046,"AUS","NSW SOP",2010,"Not Reported",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17298,63046,"AUS","NSW SOP",2013,"Not Reported",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17299,63046,"AUS","NSW SOP",2004,"Not Reported",28,"Hayters Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17300,145576,"AUS","WH Outlook Report",2014,"Not Reported",28,"Heard and McDonald Islands","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17301,314587,"AUS","Victorian SOP",2005,"Not Reported",28,"Heard Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17302,314588,"AUS","Victorian SOP",2005,"Not Reported",28,"Heart Morass W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17303,313676,"AUS","NSW SOP",2005,"Not Reported",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17304,313676,"AUS","NSW SOP",2007,"Not Reported",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17305,313676,"AUS","NSW SOP",2010,"Not Reported",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17306,313676,"AUS","NSW SOP",2013,"Not Reported",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17307,313676,"AUS","NSW SOP",2004,"Not Reported",28,"Heathcote","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17308,354890,"AUS","Victorian SOP",2010,"Not Reported",28,"Heathcote-Graytown National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17309,354890,"AUS","Victorian SOP",2005,"Not Reported",28,"Heathcote-Graytown National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17310,354890,"AUS","Victorian SOP",2013,"Not Reported",28,"Heathcote-Graytown National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17311,64393,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Hell Hole Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17312,64393,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Hell Hole Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17313,555548603,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17314,555548603,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17315,555548783,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Herberton Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17316,555548783,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Herberton Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17317,555576713,"AUS","NSW SOP",2005,"Not Reported",28,"Hexham Swamp","NRS Addition - Gazettal in Progress","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17318,555576713,"AUS","NSW SOP",2007,"Not Reported",28,"Hexham Swamp","NRS Addition - Gazettal in Progress","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17319,555576713,"AUS","NSW SOP",2004,"Not Reported",28,"Hexham Swamp","NRS Addition - Gazettal in Progress","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17320,409,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Hinchinbrook Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17321,409,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Hinchinbrook Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17322,314589,"AUS","Victorian SOP",2010,"Not Reported",28,"Hird Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17323,314589,"AUS","Victorian SOP",2005,"Not Reported",28,"Hird Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17324,314589,"AUS","Victorian SOP",2013,"Not Reported",28,"Hird Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17325,555576715,"AUS","NSW SOP",2013,"Not Reported",28,"Hobden Hill","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17326,310081,"AUS","NSW SOP",2005,"Not Reported",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17327,310081,"AUS","NSW SOP",2007,"Not Reported",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17328,310081,"AUS","NSW SOP",2010,"Not Reported",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17329,310081,"AUS","NSW SOP",2013,"Not Reported",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17330,310081,"AUS","NSW SOP",2004,"Not Reported",28,"Hogarth Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17331,23944,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Holbourne Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17332,23944,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Holbourne Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17333,24670,"AUS","Victorian SOP",2010,"Not Reported",28,"Holden F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17334,24670,"AUS","Victorian SOP",2005,"Not Reported",28,"Holden F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17335,24670,"AUS","Victorian SOP",2013,"Not Reported",28,"Holden F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17336,544,"AUS","Victorian SOP",2005,"Not Reported",28,"Holey Plains","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17337,544,"AUS","Victorian SOP",2010,"Not Reported",28,"Holey Plains","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17338,544,"AUS","Victorian SOP",2013,"Not Reported",28,"Holey Plains","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17339,313897,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Homevale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17340,313897,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Homevale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17341,23946,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Hope Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17342,23946,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Hope Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17343,555543431,"AUS","NSW SOP",2010,"Not Reported",28,"Horton Falls","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17344,555543431,"AUS","NSW SOP",2013,"Not Reported",28,"Horton Falls","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17345,126397,"AUS","NSW SOP",2005,"Not Reported",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17346,126397,"AUS","NSW SOP",2007,"Not Reported",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17347,126397,"AUS","NSW SOP",2010,"Not Reported",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17348,126397,"AUS","NSW SOP",2013,"Not Reported",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17349,126397,"AUS","NSW SOP",2004,"Not Reported",28,"Hortons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17350,306583,"AUS","Victorian SOP",2005,"Not Reported",28,"Hotspur B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17351,63057,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Howick Group (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17352,63057,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Howick Group (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17353,311672,"AUS","Victorian SOP",2010,"Not Reported",28,"Hughes Creek Hill B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17354,311672,"AUS","Victorian SOP",2005,"Not Reported",28,"Hughes Creek Hill B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17355,311672,"AUS","Victorian SOP",2013,"Not Reported",28,"Hughes Creek Hill B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17356,462,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Hull River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17357,462,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Hull River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17358,555548791,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Humboldt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17359,555548791,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Humboldt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17360,555543432,"AUS","NSW SOP",2010,"Not Reported",28,"Hunter Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17361,555543432,"AUS","NSW SOP",2013,"Not Reported",28,"Hunter Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17362,63058,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Idalia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17363,63058,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Idalia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17364,356376,"AUS","NSW SOP",2005,"Not Reported",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17365,356376,"AUS","NSW SOP",2007,"Not Reported",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17366,356376,"AUS","NSW SOP",2010,"Not Reported",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17367,356376,"AUS","NSW SOP",2013,"Not Reported",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17368,356376,"AUS","NSW SOP",2004,"Not Reported",28,"Illawarra Escarpment","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17369,23524,"AUS","NSW SOP",2005,"Not Reported",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17370,23524,"AUS","NSW SOP",2007,"Not Reported",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17371,23524,"AUS","NSW SOP",2010,"Not Reported",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17372,23524,"AUS","NSW SOP",2013,"Not Reported",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17373,23524,"AUS","NSW SOP",2004,"Not Reported",28,"Illawong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17374,555543435,"AUS","NSW SOP",2007,"Not Reported",28,"Illunie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17375,555543435,"AUS","NSW SOP",2010,"Not Reported",28,"Illunie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17376,555543435,"AUS","NSW SOP",2013,"Not Reported",28,"Illunie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17377,11137,"AUS","NSW SOP",2005,"Not Reported",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17378,11137,"AUS","NSW SOP",2007,"Not Reported",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17379,11137,"AUS","NSW SOP",2010,"Not Reported",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17380,11137,"AUS","NSW SOP",2013,"Not Reported",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17381,11137,"AUS","NSW SOP",2004,"Not Reported",28,"Iluka","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17382,310082,"AUS","NSW SOP",2005,"Not Reported",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17383,310082,"AUS","NSW SOP",2007,"Not Reported",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17384,310082,"AUS","NSW SOP",2010,"Not Reported",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17385,310082,"AUS","NSW SOP",2013,"Not Reported",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17386,310082,"AUS","NSW SOP",2004,"Not Reported",28,"Imbota","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17387,310083,"AUS","NSW SOP",2005,"Not Reported",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17388,310083,"AUS","NSW SOP",2007,"Not Reported",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17389,310083,"AUS","NSW SOP",2010,"Not Reported",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17390,310083,"AUS","NSW SOP",2013,"Not Reported",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17391,310083,"AUS","NSW SOP",2004,"Not Reported",28,"Indwarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17392,1145,"AUS","NSW SOP",2005,"Not Reported",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17393,1145,"AUS","NSW SOP",2007,"Not Reported",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17394,1145,"AUS","NSW SOP",2010,"Not Reported",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17395,1145,"AUS","NSW SOP",2013,"Not Reported",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17396,1145,"AUS","NSW SOP",2004,"Not Reported",28,"Ingalba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17397,311677,"AUS","Victorian SOP",2010,"Not Reported",28,"Inglewood N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17398,311677,"AUS","Victorian SOP",2005,"Not Reported",28,"Inglewood N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17399,311677,"AUS","Victorian SOP",2013,"Not Reported",28,"Inglewood N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17400,64183,"AUS","NSW SOP",2005,"Not Reported",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17401,64183,"AUS","NSW SOP",2007,"Not Reported",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17402,64183,"AUS","NSW SOP",2010,"Not Reported",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17403,64183,"AUS","NSW SOP",2013,"Not Reported",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17404,64183,"AUS","NSW SOP",2004,"Not Reported",28,"Inner Pocket","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17405,64244,"AUS","Victorian SOP",2010,"Not Reported",28,"Inverleigh F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17406,64244,"AUS","Victorian SOP",2005,"Not Reported",28,"Inverleigh F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17407,64244,"AUS","Victorian SOP",2013,"Not Reported",28,"Inverleigh F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17408,311882,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17409,23525,"AUS","NSW SOP",2005,"Not Reported",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17410,23525,"AUS","NSW SOP",2007,"Not Reported",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17411,23525,"AUS","NSW SOP",2010,"Not Reported",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17412,23525,"AUS","NSW SOP",2013,"Not Reported",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17413,23525,"AUS","NSW SOP",2004,"Not Reported",28,"Ironbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17414,310084,"AUS","NSW SOP",2005,"Not Reported",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17415,310084,"AUS","NSW SOP",2007,"Not Reported",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17416,310084,"AUS","NSW SOP",2010,"Not Reported",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17417,310084,"AUS","NSW SOP",2013,"Not Reported",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17418,310084,"AUS","NSW SOP",2004,"Not Reported",28,"Ironmungy","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17419,433,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Isla Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17420,433,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Isla Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17421,310086,"AUS","NSW SOP",2005,"Not Reported",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17422,310086,"AUS","NSW SOP",2007,"Not Reported",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17423,310086,"AUS","NSW SOP",2010,"Not Reported",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17424,310086,"AUS","NSW SOP",2013,"Not Reported",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17425,310086,"AUS","NSW SOP",2004,"Not Reported",28,"Jaaningga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17426,356397,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Muundhi (Jack River) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17427,356397,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Muundhi (Jack River) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17428,314590,"AUS","Victorian SOP",2005,"Not Reported",28,"Jack Smith Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17429,314590,"AUS","Victorian SOP",2010,"Not Reported",28,"Jack Smith Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17430,314590,"AUS","Victorian SOP",2013,"Not Reported",28,"Jack Smith Lake W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17431,356398,"AUS","Victorian SOP",2005,"Not Reported",28,"Jacka Lake & lakes to north W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17432,356406,"AUS","NSW SOP",2004,"Not Reported",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17433,356406,"AUS","NSW SOP",2005,"Not Reported",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17434,356406,"AUS","NSW SOP",2007,"Not Reported",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17435,356406,"AUS","NSW SOP",2010,"Not Reported",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17436,356406,"AUS","NSW SOP",2013,"Not Reported",28,"Jackywalbin","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17437,310087,"AUS","NSW SOP",2005,"Not Reported",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17438,310087,"AUS","NSW SOP",2007,"Not Reported",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17439,310087,"AUS","NSW SOP",2010,"Not Reported",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17440,310087,"AUS","NSW SOP",2013,"Not Reported",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17441,310087,"AUS","NSW SOP",2004,"Not Reported",28,"Jagun","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17442,356409,"AUS","Victorian SOP",2013,"Not Reported",28,"Jallukar N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17443,356413,"AUS","Victorian SOP",2010,"Not Reported",28,"Jancourt N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17444,356413,"AUS","Victorian SOP",2013,"Not Reported",28,"Jancourt N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17445,64392,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Japoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17446,64392,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Japoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17447,311880,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Jardine River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17448,311880,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Jardine River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17449,23526,"AUS","NSW SOP",2005,"Not Reported",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17450,23526,"AUS","NSW SOP",2007,"Not Reported",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17451,23526,"AUS","NSW SOP",2010,"Not Reported",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17452,23526,"AUS","NSW SOP",2004,"Not Reported",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17453,23526,"AUS","NSW SOP",2013,"Not Reported",28,"Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17454,356417,"AUS","Victorian SOP",2010,"Not Reported",28,"Jawbone F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17455,356417,"AUS","Victorian SOP",2005,"Not Reported",28,"Jawbone F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17456,356417,"AUS","Victorian SOP",2013,"Not Reported",28,"Jawbone F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17457,305405,"AUS","Victorian SOP",2010,"Not Reported",28,"Jawbone","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17458,305405,"AUS","Victorian SOP",2005,"Not Reported",28,"Jawbone","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17459,305405,"AUS","Victorian SOP",2013,"Not Reported",28,"Jawbone","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17460,555543422,"AUS","NSW SOP",2007,"Not Reported",28,"Jenolan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17461,555543422,"AUS","NSW SOP",2010,"Not Reported",28,"Jenolan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17462,555543422,"AUS","NSW SOP",2013,"Not Reported",28,"Jenolan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17463,310089,"AUS","NSW SOP",2005,"Not Reported",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17464,310089,"AUS","NSW SOP",2007,"Not Reported",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17465,310089,"AUS","NSW SOP",2010,"Not Reported",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17466,310089,"AUS","NSW SOP",2013,"Not Reported",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17467,310089,"AUS","NSW SOP",2004,"Not Reported",28,"Jerilderie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17468,310090,"AUS","NSW SOP",2005,"Not Reported",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17469,310090,"AUS","NSW SOP",2007,"Not Reported",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17470,310090,"AUS","NSW SOP",2010,"Not Reported",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17471,310090,"AUS","NSW SOP",2004,"Not Reported",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17472,310090,"AUS","NSW SOP",2013,"Not Reported",28,"Jerralong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17473,310091,"AUS","NSW SOP",2005,"Not Reported",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17474,310091,"AUS","NSW SOP",2007,"Not Reported",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17475,310091,"AUS","NSW SOP",2010,"Not Reported",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17476,310091,"AUS","NSW SOP",2013,"Not Reported",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17477,310091,"AUS","NSW SOP",2004,"Not Reported",28,"Jerrawangala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17478,308676,"AUS","NSW SOP",2010,"Not Reported",28,"Jervis Bay","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17479,356422,"AUS","NSW SOP",2005,"Not Reported",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17480,356422,"AUS","NSW SOP",2007,"Not Reported",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17481,356422,"AUS","NSW SOP",2010,"Not Reported",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17482,356422,"AUS","NSW SOP",2013,"Not Reported",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17483,356422,"AUS","NSW SOP",2004,"Not Reported",28,"Jervis Bay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17484,356424,"AUS","NSW SOP",2005,"Not Reported",28,"Jilliby","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17485,356424,"AUS","NSW SOP",2007,"Not Reported",28,"Jilliby","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17486,356424,"AUS","NSW SOP",2010,"Not Reported",28,"Jilliby","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17487,356424,"AUS","NSW SOP",2013,"Not Reported",28,"Jilliby","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17488,314733,"AUS","Victorian SOP",2005,"Not Reported",28,"Jilpanger N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17489,314733,"AUS","Victorian SOP",2013,"Not Reported",28,"Jilpanger N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17490,555576719,"AUS","NSW SOP",2013,"Not Reported",28,"Jimberoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17491,555576720,"AUS","NSW SOP",2013,"Not Reported",28,"Jinangong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17492,555576721,"AUS","NSW SOP",2013,"Not Reported",28,"Jindalee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17493,310092,"AUS","NSW SOP",2005,"Not Reported",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17494,310092,"AUS","NSW SOP",2007,"Not Reported",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17495,310092,"AUS","NSW SOP",2010,"Not Reported",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17496,310092,"AUS","NSW SOP",2013,"Not Reported",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17497,310092,"AUS","NSW SOP",2004,"Not Reported",28,"Jingellic","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17498,310093,"AUS","NSW SOP",2005,"Not Reported",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17499,310093,"AUS","NSW SOP",2007,"Not Reported",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17500,310093,"AUS","NSW SOP",2010,"Not Reported",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17501,310093,"AUS","NSW SOP",2013,"Not Reported",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17502,310093,"AUS","NSW SOP",2004,"Not Reported",28,"Joadja","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17503,310094,"AUS","NSW SOP",2005,"Not Reported",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17504,310094,"AUS","NSW SOP",2007,"Not Reported",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17505,310094,"AUS","NSW SOP",2010,"Not Reported",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17506,310094,"AUS","NSW SOP",2004,"Not Reported",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17507,310094,"AUS","NSW SOP",2013,"Not Reported",28,"Jobs Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17508,23530,"AUS","NSW SOP",2005,"Not Reported",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17509,23530,"AUS","NSW SOP",2007,"Not Reported",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17510,23530,"AUS","NSW SOP",2010,"Not Reported",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17511,23530,"AUS","NSW SOP",2013,"Not Reported",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17512,23530,"AUS","NSW SOP",2004,"Not Reported",28,"John Gould","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17513,314591,"AUS","Victorian SOP",2010,"Not Reported",28,"Johnson Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17514,314591,"AUS","Victorian SOP",2005,"Not Reported",28,"Johnson Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17515,314591,"AUS","Victorian SOP",2013,"Not Reported",28,"Johnson Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17516,306600,"AUS","Victorian SOP",2010,"Not Reported",28,"Jones Bay G.L.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17517,306600,"AUS","Victorian SOP",2005,"Not Reported",28,"Jones Bay G.L.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17518,314592,"AUS","Victorian SOP",2005,"Not Reported",28,"Jones Bay W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17519,313836,"AUS","NTMEE",2013,"Not Reported",28,"Judbarra / Gregory","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17520,23531,"AUS","NSW SOP",2005,"Not Reported",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17521,23531,"AUS","NSW SOP",2007,"Not Reported",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17522,23531,"AUS","NSW SOP",2010,"Not Reported",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17523,23531,"AUS","NSW SOP",2013,"Not Reported",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17524,23531,"AUS","NSW SOP",2004,"Not Reported",28,"Julian Rocks Nguthungulli","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17525,309323,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Junee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17526,309323,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Junee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17527,310095,"AUS","NSW SOP",2005,"Not Reported",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17528,310095,"AUS","NSW SOP",2007,"Not Reported",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17529,310095,"AUS","NSW SOP",2010,"Not Reported",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17530,310095,"AUS","NSW SOP",2013,"Not Reported",28,"Junuy Juluum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17531,309978,"AUS","NSW SOP",2004,"Not Reported",28,"Barakee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17532,310097,"AUS","NSW SOP",2005,"Not Reported",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17533,310097,"AUS","NSW SOP",2007,"Not Reported",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17534,310097,"AUS","NSW SOP",2010,"Not Reported",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17535,310097,"AUS","NSW SOP",2013,"Not Reported",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17536,310097,"AUS","NSW SOP",2004,"Not Reported",28,"Juugawaarri","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17537,2614,"AUS","NSW SOP",2005,"Not Reported",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17538,2614,"AUS","NSW SOP",2007,"Not Reported",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17539,2614,"AUS","NSW SOP",2010,"Not Reported",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17540,2614,"AUS","NSW SOP",2013,"Not Reported",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17541,2614,"AUS","NSW SOP",2004,"Not Reported",28,"Kajuligah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17542,2572,"AUS","WH Outlook Report",2014,"Not Reported",28,"Kakadu National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17543,393,"AUS","Birdlife IBA",2008,"Not Reported",28,"Kakadu","National Park (Commonwealth)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17544,2572,"AUS","Birdlife IBA",2008,"Not Reported",28,"Kakadu National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17545,67763,"AUS","Birdlife IBA",2008,"Not Reported",28,"Kakadu National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17546,314820,"AUS","Victorian SOP",2010,"Not Reported",28,"Kaladbro W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17547,314820,"AUS","Victorian SOP",2005,"Not Reported",28,"Kaladbro W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17548,314820,"AUS","Victorian SOP",2013,"Not Reported",28,"Kaladbro W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17549,555543428,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17550,555543428,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17551,555543429,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17552,555543429,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17553,310098,"AUS","NSW SOP",2005,"Not Reported",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17554,310098,"AUS","NSW SOP",2007,"Not Reported",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17555,310098,"AUS","NSW SOP",2010,"Not Reported",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17556,310098,"AUS","NSW SOP",2004,"Not Reported",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17557,310098,"AUS","NSW SOP",2013,"Not Reported",28,"Kanangra-Boyd","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17559,126427,"AUS","Victorian SOP",2005,"Not Reported",28,"Kanawinka F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17560,310099,"AUS","NSW SOP",2005,"Not Reported",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17561,310099,"AUS","NSW SOP",2007,"Not Reported",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17562,310099,"AUS","NSW SOP",2010,"Not Reported",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17563,310099,"AUS","NSW SOP",2013,"Not Reported",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17564,310099,"AUS","NSW SOP",2004,"Not Reported",28,"Kangaroo River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17565,64251,"AUS","Victorian SOP",2005,"Not Reported",28,"Kangerong N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17566,356455,"AUS","Victorian SOP",2010,"Not Reported",28,"Kanyapella W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17567,356455,"AUS","Victorian SOP",2013,"Not Reported",28,"Kanyapella W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17568,313802,"AUS","NTMEE",2013,"Not Reported",28,"Karlu Karlu / Devils Marbles","Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17569,126434,"AUS","Birdlife IBA",2008,"Not Reported",28,"Karroun Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17570,310100,"AUS","NSW SOP",2005,"Not Reported",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17571,310100,"AUS","NSW SOP",2007,"Not Reported",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17572,310100,"AUS","NSW SOP",2010,"Not Reported",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17574,310100,"AUS","NSW SOP",2013,"Not Reported",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17576,356457,"AUS","NSW SOP",2005,"Not Reported",28,"Karuah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17577,356457,"AUS","NSW SOP",2007,"Not Reported",28,"Karuah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17578,555543437,"AUS","NSW SOP",2010,"Not Reported",28,"Karuah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17579,555543437,"AUS","NSW SOP",2013,"Not Reported",28,"Karuah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17580,310100,"AUS","NSW SOP",2004,"Not Reported",28,"Karuah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17581,356457,"AUS","NSW SOP",2004,"Not Reported",28,"Karuah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17582,23532,"AUS","NSW SOP",2005,"Not Reported",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17583,23532,"AUS","NSW SOP",2007,"Not Reported",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17584,23532,"AUS","NSW SOP",2010,"Not Reported",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17585,23532,"AUS","NSW SOP",2013,"Not Reported",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17586,23532,"AUS","NSW SOP",2004,"Not Reported",28,"Kattang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17587,313837,"AUS","NTMEE",2013,"Not Reported",28,"Keep River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17588,555548456,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Kelvin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17589,555548456,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Kelvin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17590,23533,"AUS","NSW SOP",2005,"Not Reported",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17591,23533,"AUS","NSW SOP",2007,"Not Reported",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17592,23533,"AUS","NSW SOP",2010,"Not Reported",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17593,23533,"AUS","NSW SOP",2013,"Not Reported",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17594,555576727,"AUS","NSW SOP",2013,"Not Reported",28,"Kemendok","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17595,23533,"AUS","NSW SOP",2004,"Not Reported",28,"Kemendok","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17596,356463,"AUS","NSW SOP",2005,"Not Reported",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17597,356463,"AUS","NSW SOP",2007,"Not Reported",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17598,356463,"AUS","NSW SOP",2010,"Not Reported",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17599,356463,"AUS","NSW SOP",2013,"Not Reported",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17600,356463,"AUS","NSW SOP",2004,"Not Reported",28,"Kemps Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17601,126446,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Keppel Bay Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17602,126446,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Keppel Bay Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17603,313899,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17604,313899,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17605,314594,"AUS","Victorian SOP",2005,"Not Reported",28,"Kerr Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17606,555576730,"AUS","NSW SOP",2013,"Not Reported",28,"Kerrawary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17607,555548696,"AUS","NSW SOP",2010,"Not Reported",28,"Keverstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17608,555548696,"AUS","NSW SOP",2013,"Not Reported",28,"Keverstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17609,555576731,"AUS","NSW SOP",2013,"Not Reported",28,"Keverstone","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17610,126448,"AUS","NSW SOP",2005,"Not Reported",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17611,126448,"AUS","NSW SOP",2007,"Not Reported",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17612,126448,"AUS","NSW SOP",2010,"Not Reported",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17613,126448,"AUS","NSW SOP",2013,"Not Reported",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17614,126448,"AUS","NSW SOP",2004,"Not Reported",28,"Khappinghat","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17615,310101,"AUS","NSW SOP",2005,"Not Reported",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17616,310101,"AUS","NSW SOP",2007,"Not Reported",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17617,310101,"AUS","NSW SOP",2010,"Not Reported",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17618,310101,"AUS","NSW SOP",2013,"Not Reported",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17619,310101,"AUS","NSW SOP",2004,"Not Reported",28,"Khatambuhl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17620,310102,"AUS","NSW SOP",2005,"Not Reported",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17621,310102,"AUS","NSW SOP",2007,"Not Reported",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17622,310102,"AUS","NSW SOP",2010,"Not Reported",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17623,310102,"AUS","NSW SOP",2013,"Not Reported",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17624,310102,"AUS","NSW SOP",2004,"Not Reported",28,"Killabakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17625,313690,"AUS","NSW SOP",2005,"Not Reported",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17626,313690,"AUS","NSW SOP",2007,"Not Reported",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17627,313690,"AUS","NSW SOP",2010,"Not Reported",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17628,313690,"AUS","NSW SOP",2013,"Not Reported",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17629,313690,"AUS","NSW SOP",2004,"Not Reported",28,"Killarney","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17630,555543442,"AUS","NSW SOP",2010,"Not Reported",28,"Killarney","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17631,555543442,"AUS","NSW SOP",2013,"Not Reported",28,"Killarney","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17632,359,"AUS","NSW SOP",2005,"Not Reported",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17633,359,"AUS","NSW SOP",2007,"Not Reported",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17634,359,"AUS","NSW SOP",2010,"Not Reported",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17635,359,"AUS","NSW SOP",2013,"Not Reported",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17636,359,"AUS","NSW SOP",2004,"Not Reported",28,"Kinchega","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17637,543,"AUS","Victorian SOP",2005,"Not Reported",28,"Kinglake National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17638,543,"AUS","Victorian SOP",2010,"Not Reported",28,"Kinglake National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17639,543,"AUS","Victorian SOP",2013,"Not Reported",28,"Kinglake National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17640,555548740,"AUS","Victorian SOP",2005,"Not Reported",28,"Kings Billabong Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17641,555548740,"AUS","Victorian SOP",2010,"Not Reported",28,"Kings Billabong Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17642,555548740,"AUS","Victorian SOP",2013,"Not Reported",28,"Kings Billabong Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17643,23537,"AUS","NSW SOP",2005,"Not Reported",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17644,23537,"AUS","NSW SOP",2007,"Not Reported",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17645,23537,"AUS","NSW SOP",2010,"Not Reported",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17646,23537,"AUS","NSW SOP",2013,"Not Reported",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17647,23537,"AUS","NSW SOP",2004,"Not Reported",28,"Kings Plains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17648,356491,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Kinrara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17649,356491,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Kinrara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17650,356494,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17651,356495,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Kirrama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17652,356495,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Kirrama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17653,356496,"AUS","NSW SOP",2005,"Not Reported",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17654,356496,"AUS","NSW SOP",2007,"Not Reported",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17655,356496,"AUS","NSW SOP",2010,"Not Reported",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17656,356496,"AUS","NSW SOP",2013,"Not Reported",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17657,356496,"AUS","NSW SOP",2004,"Not Reported",28,"Kirramingly","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17658,23975,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Kondalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17659,23975,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Kondalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17660,555548815,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Koombooloomba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17661,310103,"AUS","NSW SOP",2005,"Not Reported",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17662,310103,"AUS","NSW SOP",2007,"Not Reported",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17663,310103,"AUS","NSW SOP",2010,"Not Reported",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17664,310103,"AUS","NSW SOP",2013,"Not Reported",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17665,310103,"AUS","NSW SOP",2004,"Not Reported",28,"Kooraban","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17666,356505,"AUS","Victorian SOP",2010,"Not Reported",28,"Koorangie W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17667,356505,"AUS","Victorian SOP",2005,"Not Reported",28,"Koorangie W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17668,356505,"AUS","Victorian SOP",2013,"Not Reported",28,"Koorangie W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17669,310104,"AUS","NSW SOP",2005,"Not Reported",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17670,310104,"AUS","NSW SOP",2007,"Not Reported",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17671,310104,"AUS","NSW SOP",2010,"Not Reported",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17672,310104,"AUS","NSW SOP",2013,"Not Reported",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17673,310104,"AUS","NSW SOP",2004,"Not Reported",28,"Koorawatha","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17674,314822,"AUS","Victorian SOP",2005,"Not Reported",28,"Kooraweera Lakes W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17675,310105,"AUS","NSW SOP",2005,"Not Reported",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17676,310105,"AUS","NSW SOP",2007,"Not Reported",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17677,310105,"AUS","NSW SOP",2010,"Not Reported",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17678,310105,"AUS","NSW SOP",2004,"Not Reported",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17679,310105,"AUS","NSW SOP",2013,"Not Reported",28,"Koorebang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17680,356507,"AUS","NSW SOP",2005,"Not Reported",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17681,356507,"AUS","NSW SOP",2007,"Not Reported",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17682,356507,"AUS","NSW SOP",2010,"Not Reported",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17683,356507,"AUS","NSW SOP",2013,"Not Reported",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17684,356507,"AUS","NSW SOP",2004,"Not Reported",28,"Kooyong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17685,24694,"AUS","Victorian SOP",2005,"Not Reported",28,"Kooyoora","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17686,24694,"AUS","Victorian SOP",2010,"Not Reported",28,"Kooyoora","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17687,24694,"AUS","Victorian SOP",2013,"Not Reported",28,"Kooyoora","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17688,310106,"AUS","NSW SOP",2005,"Not Reported",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17689,310106,"AUS","NSW SOP",2007,"Not Reported",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17690,310106,"AUS","NSW SOP",2010,"Not Reported",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17691,310106,"AUS","NSW SOP",2013,"Not Reported",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17692,310106,"AUS","NSW SOP",2004,"Not Reported",28,"Koreelah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17693,23539,"AUS","NSW SOP",2005,"Not Reported",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17694,23539,"AUS","NSW SOP",2007,"Not Reported",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17695,23539,"AUS","NSW SOP",2010,"Not Reported",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17696,23539,"AUS","NSW SOP",2013,"Not Reported",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17697,23539,"AUS","NSW SOP",2004,"Not Reported",28,"Kororo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17698,2022,"AUS","GOBI Survey",2006,"Not Reported",28,"Kosciuszko National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17699,310108,"AUS","NSW SOP",2004,"Not Reported",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17700,310108,"AUS","NSW SOP",2005,"Not Reported",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17701,310108,"AUS","NSW SOP",2007,"Not Reported",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17711,310108,"AUS","NSW SOP",2010,"Not Reported",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17712,310108,"AUS","NSW SOP",2013,"Not Reported",28,"Kosciuszko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17719,310109,"AUS","NSW SOP",2005,"Not Reported",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17720,310109,"AUS","NSW SOP",2007,"Not Reported",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17721,310109,"AUS","NSW SOP",2010,"Not Reported",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17722,310109,"AUS","NSW SOP",2013,"Not Reported",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17723,310109,"AUS","NSW SOP",2004,"Not Reported",28,"Koukandowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17724,23976,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Kroombit Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17725,23976,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Kroombit Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17726,555548834,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Kulla (McIlwraith Range) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17727,555548834,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Kulla (McIlwraith Range) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17728,356514,"AUS","NSW SOP",2005,"Not Reported",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17729,356514,"AUS","NSW SOP",2007,"Not Reported",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17730,356514,"AUS","NSW SOP",2010,"Not Reported",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17731,356514,"AUS","NSW SOP",2013,"Not Reported",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17732,356514,"AUS","NSW SOP",2004,"Not Reported",28,"Kuma","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17733,310111,"AUS","NSW SOP",2005,"Not Reported",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17734,310111,"AUS","NSW SOP",2007,"Not Reported",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17735,310111,"AUS","NSW SOP",2010,"Not Reported",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17736,310111,"AUS","NSW SOP",2013,"Not Reported",28,"Kumbatine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17737,356515,"AUS","NSW SOP",2005,"Not Reported",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17738,356515,"AUS","NSW SOP",2007,"Not Reported",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17739,356515,"AUS","NSW SOP",2010,"Not Reported",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17741,356515,"AUS","NSW SOP",2004,"Not Reported",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17742,356515,"AUS","NSW SOP",2013,"Not Reported",28,"Kumbatine","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17743,356518,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17744,356519,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Kuranda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17745,356519,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Kuranda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17746,310110,"AUS","NSW SOP",2005,"Not Reported",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17747,310110,"AUS","NSW SOP",2007,"Not Reported",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17748,310110,"AUS","NSW SOP",2010,"Not Reported",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17749,310110,"AUS","NSW SOP",2013,"Not Reported",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17750,310110,"AUS","NSW SOP",2004,"Not Reported",28,"Ku-ring-gai Chase","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17751,23979,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Kurrimine Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17752,23979,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Kurrimine Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17753,555577147,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Kutini-Payamu (Iron Range) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17754,310112,"AUS","NSW SOP",2005,"Not Reported",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17755,310112,"AUS","NSW SOP",2007,"Not Reported",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17756,310112,"AUS","NSW SOP",2010,"Not Reported",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17757,310112,"AUS","NSW SOP",2013,"Not Reported",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17758,310112,"AUS","NSW SOP",2004,"Not Reported",28,"Kwiambal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17759,555543446,"AUS","NSW SOP",2010,"Not Reported",28,"Kwiambal","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17760,555543446,"AUS","NSW SOP",2013,"Not Reported",28,"Kwiambal","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17761,313691,"AUS","NSW SOP",2005,"Not Reported",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17762,313691,"AUS","NSW SOP",2007,"Not Reported",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17763,313691,"AUS","NSW SOP",2010,"Not Reported",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17764,313691,"AUS","NSW SOP",2013,"Not Reported",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17765,356521,"AUS","NSW SOP",2005,"Not Reported",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17766,356521,"AUS","NSW SOP",2007,"Not Reported",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17767,356521,"AUS","NSW SOP",2010,"Not Reported",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17768,356521,"AUS","NSW SOP",2013,"Not Reported",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17769,313691,"AUS","NSW SOP",2004,"Not Reported",28,"Kybeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17770,356521,"AUS","NSW SOP",2004,"Not Reported",28,"Kybeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17771,63268,"AUS","Birdlife IBA",2008,"Not Reported",28,"Lacepede Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17772,555576738,"AUS","NSW SOP",2013,"Not Reported",28,"Lachlan Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17773,555576739,"AUS","NSW SOP",2013,"Not Reported",28,"Lachlan Valley","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17774,555576740,"AUS","NSW SOP",2013,"Not Reported",28,"Lachlan Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17775,555576741,"AUS","NSW SOP",2013,"Not Reported",28,"Lachlan Valley","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17776,314826,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Beeac W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17777,314826,"AUS","Victorian SOP",2013,"Not Reported",28,"Lake Beeac W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17778,64385,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Lake Bindegolly","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17779,64385,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Lake Bindegolly","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17780,314599,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Bookar W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17781,314827,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Carchap W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17782,356528,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Clarke W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17783,314602,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Coleman W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17784,555548721,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Condah","Indigenous Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17785,314605,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Connewarre W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17786,314605,"AUS","Victorian SOP",2010,"Not Reported",28,"Lake Connewarre W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17787,314605,"AUS","Victorian SOP",2013,"Not Reported",28,"Lake Connewarre W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17788,314606,"AUS","Victorian SOP",2010,"Not Reported",28,"Lake Corringle W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17789,314606,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Corringle W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17790,314606,"AUS","Victorian SOP",2013,"Not Reported",28,"Lake Corringle W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17791,314828,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Cundare W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17792,314608,"AUS","Victorian SOP",2010,"Not Reported",28,"Lake Curlip W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17793,314608,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Curlip W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17794,314608,"AUS","Victorian SOP",2013,"Not Reported",28,"Lake Curlip W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17795,306650,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Eildon National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17796,306650,"AUS","Victorian SOP",2010,"Not Reported",28,"Lake Eildon National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17797,306650,"AUS","Victorian SOP",2013,"Not Reported",28,"Lake Eildon National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17798,24372,"AUS","Birdlife IBA",2008,"Not Reported",28,"Kati Thanda-Lake Eyre","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17799,314614,"AUS","Victorian SOP",2010,"Not Reported",28,"Lake Gillear W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17800,10588,"AUS","NSW SOP",2005,"Not Reported",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17801,10588,"AUS","NSW SOP",2007,"Not Reported",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17802,10588,"AUS","NSW SOP",2010,"Not Reported",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17803,10588,"AUS","NSW SOP",2013,"Not Reported",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17804,356534,"AUS","NSW SOP",2005,"Not Reported",28,"Lake Innes","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17805,356534,"AUS","NSW SOP",2007,"Not Reported",28,"Lake Innes","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17806,356534,"AUS","NSW SOP",2010,"Not Reported",28,"Lake Innes","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17807,356534,"AUS","NSW SOP",2013,"Not Reported",28,"Lake Innes","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17808,10588,"AUS","NSW SOP",2004,"Not Reported",28,"Lake Innes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17809,314618,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Jollicum W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17810,356537,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Kanagulk W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17811,314619,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Karnak W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17812,356538,"AUS","Victorian SOP",2010,"Not Reported",28,"Lake Lalbert W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17813,356538,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Lalbert W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17814,356538,"AUS","Victorian SOP",2013,"Not Reported",28,"Lake Lalbert W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17815,356541,"AUS","NSW SOP",2005,"Not Reported",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17816,356541,"AUS","NSW SOP",2007,"Not Reported",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17817,356541,"AUS","NSW SOP",2010,"Not Reported",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17818,356541,"AUS","NSW SOP",2013,"Not Reported",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17819,356541,"AUS","NSW SOP",2004,"Not Reported",28,"Lake Macquarie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17820,314886,"AUS","Birdlife IBA",2008,"Not Reported",28,"Lake McLarty","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17821,314625,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Muirhead W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17822,64362,"AUS","Birdlife IBA",2008,"Not Reported",28,"Lake Newland","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17823,314829,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Oundell W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17824,314830,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Purrumbete W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17825,314832,"AUS","Victorian SOP",2010,"Not Reported",28,"Lake Terangpom W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17826,314832,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Terangpom W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17827,555543487,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Thurrumbong W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17828,64360,"AUS","Birdlife IBA",2008,"Not Reported",28,"Lake Torrens","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17829,356547,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Tyrrell W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17830,313692,"AUS","NSW SOP",2005,"Not Reported",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17831,313692,"AUS","NSW SOP",2007,"Not Reported",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17832,313692,"AUS","NSW SOP",2010,"Not Reported",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17833,313692,"AUS","NSW SOP",2013,"Not Reported",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17834,313692,"AUS","NSW SOP",2004,"Not Reported",28,"Lake Urana","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17835,314632,"AUS","Victorian SOP",2005,"Not Reported",28,"Lake Wongan W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17836,398,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17837,314833,"AUS","Victorian SOP",2010,"Not Reported",28,"Lakes Powell and Carpul W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17838,314833,"AUS","Victorian SOP",2013,"Not Reported",28,"Lakes Powell and Carpul W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17839,555548818,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Lama Lama (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17840,555548818,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Lama Lama (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17841,126510,"AUS","Victorian SOP",2010,"Not Reported",28,"Lambert Island N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17842,311888,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Lamington","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17843,24736,"AUS","Victorian SOP",2010,"Not Reported",28,"Landsborough N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17844,24736,"AUS","Victorian SOP",2005,"Not Reported",28,"Landsborough N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17845,10628,"AUS","NSW SOP",2005,"Not Reported",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17846,10628,"AUS","NSW SOP",2007,"Not Reported",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17847,10628,"AUS","NSW SOP",2010,"Not Reported",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17848,10628,"AUS","NSW SOP",2013,"Not Reported",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17849,10628,"AUS","NSW SOP",2004,"Not Reported",28,"Lane Cove","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17850,2695,"AUS","Victorian SOP",2005,"Not Reported",28,"Langi Ghiran","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17851,2695,"AUS","Victorian SOP",2010,"Not Reported",28,"Langi Ghiran","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17852,2695,"AUS","Victorian SOP",2013,"Not Reported",28,"Langi Ghiran","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17853,102553,"AUS","NSW SOP",2005,"Not Reported",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17854,102553,"AUS","NSW SOP",2007,"Not Reported",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17855,102553,"AUS","NSW SOP",2010,"Not Reported",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17856,102553,"AUS","NSW SOP",2013,"Not Reported",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17857,102553,"AUS","NSW SOP",2004,"Not Reported",28,"Langtree","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17858,306662,"AUS","Victorian SOP",2010,"Not Reported",28,"Langwarrin Flora & Fauna Reserve","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17859,306662,"AUS","Victorian SOP",2005,"Not Reported",28,"Langwarrin Flora & Fauna Reserve","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17860,306662,"AUS","Victorian SOP",2013,"Not Reported",28,"Langwarrin Flora & Fauna Reserve","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17861,555543489,"AUS","NSW SOP",2010,"Not Reported",28,"Lansdowne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17862,555543489,"AUS","NSW SOP",2013,"Not Reported",28,"Lansdowne","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17863,356564,"AUS","Victorian SOP",2005,"Not Reported",28,"Laverton Grasslands F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17864,356567,"AUS","NSW SOP",2005,"Not Reported",28,"Leacock","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17865,356567,"AUS","NSW SOP",2007,"Not Reported",28,"Leacock","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17866,356567,"AUS","NSW SOP",2010,"Not Reported",28,"Leacock","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17867,356567,"AUS","NSW SOP",2013,"Not Reported",28,"Leacock","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17868,306668,"AUS","Victorian SOP",2010,"Not Reported",28,"Leaghur","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17869,306668,"AUS","Victorian SOP",2005,"Not Reported",28,"Leaghur","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17870,306668,"AUS","Victorian SOP",2013,"Not Reported",28,"Leaghur","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17871,555543480,"AUS","NSW SOP",2010,"Not Reported",28,"Leard","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17872,555543480,"AUS","NSW SOP",2013,"Not Reported",28,"Leard","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17873,356569,"AUS","NSW SOP",2005,"Not Reported",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17874,356569,"AUS","NSW SOP",2007,"Not Reported",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17875,356569,"AUS","NSW SOP",2010,"Not Reported",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17876,356569,"AUS","NSW SOP",2013,"Not Reported",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17877,356569,"AUS","NSW SOP",2004,"Not Reported",28,"Ledknapper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17878,24738,"AUS","Victorian SOP",2005,"Not Reported",28,"Lerderderg","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17879,24738,"AUS","Victorian SOP",2010,"Not Reported",28,"Lerderderg","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17880,24738,"AUS","Victorian SOP",2013,"Not Reported",28,"Lerderderg","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17881,314639,"AUS","Victorian SOP",2005,"Not Reported",28,"Lignum Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17882,1137,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17883,1137,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17884,1137,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17885,555576747,"AUS","NSW SOP",2013,"Not Reported",28,"Limeburners Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17886,1137,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17887,356589,"AUS","Victorian SOP",2010,"Not Reported",28,"Limeburners Lagoon (Hovells Creek) F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17888,356589,"AUS","Victorian SOP",2005,"Not Reported",28,"Limeburners Lagoon (Hovells Creek) F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17889,356589,"AUS","Victorian SOP",2013,"Not Reported",28,"Limeburners Lagoon (Hovells Creek) F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17890,313839,"AUS","NTMEE",2013,"Not Reported",28,"Limmen","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17891,1149,"AUS","NSW SOP",2005,"Not Reported",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17892,1149,"AUS","NSW SOP",2007,"Not Reported",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17893,1149,"AUS","NSW SOP",2010,"Not Reported",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17894,1149,"AUS","NSW SOP",2013,"Not Reported",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17895,1149,"AUS","NSW SOP",2004,"Not Reported",28,"Limpinwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17896,552,"AUS","Victorian SOP",2010,"Not Reported",28,"Lind National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17897,552,"AUS","Victorian SOP",2005,"Not Reported",28,"Lind National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17898,552,"AUS","Victorian SOP",2013,"Not Reported",28,"Lind National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17899,9484,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Lindeman Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17900,9484,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Lindeman Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17901,24739,"AUS","NSW SOP",2005,"Not Reported",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17902,24739,"AUS","NSW SOP",2007,"Not Reported",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17903,24739,"AUS","NSW SOP",2010,"Not Reported",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17904,24739,"AUS","NSW SOP",2013,"Not Reported",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17905,24739,"AUS","NSW SOP",2004,"Not Reported",28,"Linton","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17906,23546,"AUS","NSW SOP",2005,"Not Reported",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17907,23546,"AUS","NSW SOP",2007,"Not Reported",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17908,23546,"AUS","NSW SOP",2010,"Not Reported",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17909,23546,"AUS","NSW SOP",2013,"Not Reported",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17910,23546,"AUS","NSW SOP",2004,"Not Reported",28,"Lion Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17911,313840,"AUS","NTMEE",2013,"Not Reported",28,"Litchfield","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17912,9475,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Littabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17913,9475,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Littabella","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17914,314738,"AUS","Victorian SOP",2010,"Not Reported",28,"Little Bog Creek F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17915,314738,"AUS","Victorian SOP",2005,"Not Reported",28,"Little Bog Creek F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17916,23547,"AUS","NSW SOP",2005,"Not Reported",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17917,23547,"AUS","NSW SOP",2007,"Not Reported",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17918,23547,"AUS","NSW SOP",2013,"Not Reported",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17919,23547,"AUS","NSW SOP",2010,"Not Reported",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17920,23547,"AUS","NSW SOP",2004,"Not Reported",28,"Little Broughton Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17921,126538,"AUS","Birdlife IBA",2008,"Not Reported",28,"Little Desert National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17922,126538,"AUS","Victorian SOP",2005,"Not Reported",28,"Little Desert National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17923,126538,"AUS","Victorian SOP",2010,"Not Reported",28,"Little Desert National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17924,126538,"AUS","Victorian SOP",2013,"Not Reported",28,"Little Desert National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17925,23549,"AUS","NSW SOP",2005,"Not Reported",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17926,23549,"AUS","NSW SOP",2007,"Not Reported",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17927,23549,"AUS","NSW SOP",2010,"Not Reported",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17928,23549,"AUS","NSW SOP",2013,"Not Reported",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17929,23549,"AUS","NSW SOP",2004,"Not Reported",28,"Little Llangothlin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17930,555548802,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Little Mulgrave","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17931,23550,"AUS","NSW SOP",2005,"Not Reported",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17932,23550,"AUS","NSW SOP",2007,"Not Reported",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17933,23550,"AUS","NSW SOP",2010,"Not Reported",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17934,23550,"AUS","NSW SOP",2004,"Not Reported",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17935,23550,"AUS","NSW SOP",2013,"Not Reported",28,"Little Pimlico Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17936,311952,"AUS","NSW SOP",2005,"Not Reported",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17937,311952,"AUS","NSW SOP",2007,"Not Reported",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17938,311952,"AUS","NSW SOP",2010,"Not Reported",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17939,311952,"AUS","NSW SOP",2013,"Not Reported",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17940,311952,"AUS","NSW SOP",2004,"Not Reported",28,"Livingstone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17941,555543492,"AUS","NSW SOP",2007,"Not Reported",28,"Livingstone","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17942,555543492,"AUS","NSW SOP",2010,"Not Reported",28,"Livingstone","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17943,555543492,"AUS","NSW SOP",2013,"Not Reported",28,"Livingstone","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17944,460,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Lizard Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17945,460,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Lizard Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17946,126547,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Lochern","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17947,126547,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Lochern","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17948,306683,"AUS","Victorian SOP",2005,"Not Reported",28,"Locksley B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17949,306683,"AUS","Victorian SOP",2013,"Not Reported",28,"Locksley B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17950,555548752,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Lockyer","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17951,555548752,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Lockyer","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17952,555548792,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17953,555548792,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17954,314739,"AUS","Victorian SOP",2005,"Not Reported",28,"Long Forest F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17955,314739,"AUS","Victorian SOP",2010,"Not Reported",28,"Long Forest F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17956,314739,"AUS","Victorian SOP",2013,"Not Reported",28,"Long Forest F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17957,23551,"AUS","NSW SOP",2005,"Not Reported",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17958,23551,"AUS","NSW SOP",2007,"Not Reported",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17959,23551,"AUS","NSW SOP",2010,"Not Reported",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17960,23551,"AUS","NSW SOP",2013,"Not Reported",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17961,23551,"AUS","NSW SOP",2004,"Not Reported",28,"Long Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17962,12961,"AUS","NSW SOP",2010,"Not Reported",28,"Long Reef","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17963,356621,"AUS","Victorian SOP",2005,"Not Reported",28,"Longerenong B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17964,314835,"AUS","Victorian SOP",2010,"Not Reported",28,"Lonsdale Lakes W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17965,314835,"AUS","Victorian SOP",2013,"Not Reported",28,"Lonsdale Lakes W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17966,308667,"AUS","Birdlife IBA",2008,"Not Reported",28,"Lord Howe Island","Permanent Park Preserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17967,315023,"AUS","NSW SOP",2010,"Not Reported",28,"Lord Howe Island","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17968,5001,"AUS","WH Outlook Report",2014,"Not Reported",28,"Lord Howe Island Group","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17969,313693,"AUS","NSW SOP",2005,"Not Reported",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17970,313693,"AUS","NSW SOP",2007,"Not Reported",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17971,313693,"AUS","NSW SOP",2010,"Not Reported",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17972,313693,"AUS","NSW SOP",2013,"Not Reported",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17973,313693,"AUS","NSW SOP",2004,"Not Reported",28,"Loughnan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17974,63912,"AUS","Birdlife IBA",2008,"Not Reported",28,"Lowendal Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17975,24745,"AUS","Victorian SOP",2005,"Not Reported",28,"Lower Glenelg National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17976,24745,"AUS","Victorian SOP",2010,"Not Reported",28,"Lower Glenelg National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17977,24745,"AUS","Victorian SOP",2013,"Not Reported",28,"Lower Glenelg National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17978,555548798,"AUS","Victorian SOP",2010,"Not Reported",28,"Lower Goulburn National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17979,555548798,"AUS","Victorian SOP",2013,"Not Reported",28,"Lower Goulburn National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17980,555577173,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Ma'alpiku Island (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17981,555548777,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Macalister Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17982,356647,"AUS","NSW SOP",2005,"Not Reported",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17983,356647,"AUS","NSW SOP",2007,"Not Reported",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17984,356647,"AUS","NSW SOP",2010,"Not Reported",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17985,356647,"AUS","NSW SOP",2013,"Not Reported",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17986,356647,"AUS","NSW SOP",2004,"Not Reported",28,"Macanally","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17987,126559,"AUS","Victorian SOP",2005,"Not Reported",28,"Macfarlane Lookout N.F.S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17988,314642,"AUS","Victorian SOP",2010,"Not Reported",28,"Macleod Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17989,314642,"AUS","Victorian SOP",2005,"Not Reported",28,"Macleod Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17990,314642,"AUS","Victorian SOP",2013,"Not Reported",28,"Macleod Morass W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17991,310119,"AUS","NSW SOP",2005,"Not Reported",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17992,310119,"AUS","NSW SOP",2007,"Not Reported",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17993,310119,"AUS","NSW SOP",2010,"Not Reported",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17994,310119,"AUS","NSW SOP",2013,"Not Reported",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17995,310119,"AUS","NSW SOP",2004,"Not Reported",28,"Macquarie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17996,63115,"AUS","Tasmanian WHA",2004,"Not Reported",28,"Macquarie Harbour","Historic Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17997,145579,"AUS","WH Outlook Report",2014,"Not Reported",28,"Macquarie Island","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17998,146690,"AUS","NSW SOP",2005,"Not Reported",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +17999,146690,"AUS","NSW SOP",2007,"Not Reported",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18000,146690,"AUS","NSW SOP",2010,"Not Reported",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18001,146690,"AUS","NSW SOP",2013,"Not Reported",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18002,555576755,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18003,146690,"AUS","NSW SOP",2004,"Not Reported",28,"Macquarie Marshes","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18004,392,"AUS","NSW SOP",2005,"Not Reported",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18005,392,"AUS","NSW SOP",2007,"Not Reported",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18006,392,"AUS","NSW SOP",2010,"Not Reported",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18007,392,"AUS","NSW SOP",2013,"Not Reported",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18008,555543498,"AUS","NSW SOP",2005,"Not Reported",28,"Macquarie Pass","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18009,555543498,"AUS","NSW SOP",2007,"Not Reported",28,"Macquarie Pass","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18010,555543498,"AUS","NSW SOP",2010,"Not Reported",28,"Macquarie Pass","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18011,392,"AUS","NSW SOP",2004,"Not Reported",28,"Macquarie Pass","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18012,555543498,"AUS","NSW SOP",2013,"Not Reported",28,"Macquarie Pass","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18013,446,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Magnetic Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18014,446,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Magnetic Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18015,9481,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Main Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18016,9481,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Main Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18017,306694,"AUS","NSW SOP",2005,"Not Reported",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18018,306694,"AUS","NSW SOP",2007,"Not Reported",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18019,306694,"AUS","NSW SOP",2010,"Not Reported",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18020,306694,"AUS","NSW SOP",2013,"Not Reported",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18021,306694,"AUS","NSW SOP",2004,"Not Reported",28,"Major Creek SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18022,356655,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Malaan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18023,356655,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Malaan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18024,555576757,"AUS","NSW SOP",2013,"Not Reported",28,"Malabar Headland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18025,356657,"AUS","Victorian SOP",2005,"Not Reported",28,"Maldon B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18026,356658,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Maleny","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18027,356658,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Maleny","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18028,314301,"AUS","Victorian SOP",2005,"Not Reported",28,"Mallacoota B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18029,314740,"AUS","Victorian SOP",2010,"Not Reported",28,"Mallanbool F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18030,314740,"AUS","Victorian SOP",2013,"Not Reported",28,"Mallanbool F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18031,310120,"AUS","NSW SOP",2005,"Not Reported",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18032,310120,"AUS","NSW SOP",2007,"Not Reported",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18033,310120,"AUS","NSW SOP",2010,"Not Reported",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18034,310120,"AUS","NSW SOP",2013,"Not Reported",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18035,310120,"AUS","NSW SOP",2004,"Not Reported",28,"Mallanganee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18036,358,"AUS","NSW SOP",2005,"Not Reported",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18037,358,"AUS","NSW SOP",2007,"Not Reported",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18038,358,"AUS","NSW SOP",2010,"Not Reported",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18039,358,"AUS","NSW SOP",2013,"Not Reported",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18040,358,"AUS","NSW SOP",2004,"Not Reported",28,"Mallee Cliffs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18041,23557,"AUS","NSW SOP",2005,"Not Reported",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18042,23557,"AUS","NSW SOP",2007,"Not Reported",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18043,23557,"AUS","NSW SOP",2010,"Not Reported",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18044,23557,"AUS","NSW SOP",2013,"Not Reported",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18045,23557,"AUS","NSW SOP",2004,"Not Reported",28,"Mann River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18046,1143,"AUS","NSW SOP",2005,"Not Reported",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18047,1143,"AUS","NSW SOP",2007,"Not Reported",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18048,1143,"AUS","NSW SOP",2010,"Not Reported",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18049,1143,"AUS","NSW SOP",2013,"Not Reported",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18050,1143,"AUS","NSW SOP",2004,"Not Reported",28,"Manobalai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18051,555577184,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mapleton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18053,24000,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mapleton Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18054,24000,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mapleton Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18055,356666,"AUS","Victorian SOP",2010,"Not Reported",28,"Marble Gully - Mount Tambo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18056,356666,"AUS","Victorian SOP",2013,"Not Reported",28,"Marble Gully - Mount Tambo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18057,305390,"AUS","Victorian SOP",2010,"Not Reported",28,"Marengo Reefs","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18058,305390,"AUS","Victorian SOP",2005,"Not Reported",28,"Marengo Reefs","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18059,305390,"AUS","Victorian SOP",2013,"Not Reported",28,"Marengo Reefs","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18060,555576759,"AUS","NSW SOP",2013,"Not Reported",28,"Mares Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18061,311947,"AUS","NSW SOP",2005,"Not Reported",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18062,311947,"AUS","NSW SOP",2007,"Not Reported",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18063,311947,"AUS","NSW SOP",2010,"Not Reported",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18064,311947,"AUS","NSW SOP",2013,"Not Reported",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18065,311947,"AUS","NSW SOP",2004,"Not Reported",28,"Maria","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18066,24002,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Maria Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18067,24002,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Maria Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18068,522,"AUS","Birdlife IBA",2008,"Not Reported",28,"Maria Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18069,64391,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mariala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18070,64391,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mariala","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18071,555543469,"AUS","NSW SOP",2010,"Not Reported",28,"Maroomba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18072,555543469,"AUS","NSW SOP",2013,"Not Reported",28,"Maroomba","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18073,555543470,"AUS","NSW SOP",2007,"Not Reported",28,"Maroota Ridge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18074,555543470,"AUS","NSW SOP",2010,"Not Reported",28,"Maroota Ridge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18075,555543470,"AUS","NSW SOP",2013,"Not Reported",28,"Maroota Ridge","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18076,555548455,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Marpa (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18077,2605,"AUS","NSW SOP",2005,"Not Reported",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18078,2605,"AUS","NSW SOP",2007,"Not Reported",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18079,2605,"AUS","NSW SOP",2010,"Not Reported",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18080,2605,"AUS","NSW SOP",2013,"Not Reported",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18081,2605,"AUS","NSW SOP",2004,"Not Reported",28,"Marramarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18082,555543471,"AUS","NSW SOP",2007,"Not Reported",28,"Marrangaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18083,555543471,"AUS","NSW SOP",2010,"Not Reported",28,"Marrangaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18084,555543471,"AUS","NSW SOP",2013,"Not Reported",28,"Marrangaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18085,313694,"AUS","NSW SOP",2005,"Not Reported",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18086,313694,"AUS","NSW SOP",2007,"Not Reported",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18087,313694,"AUS","NSW SOP",2010,"Not Reported",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18088,313694,"AUS","NSW SOP",2013,"Not Reported",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18089,313694,"AUS","NSW SOP",2004,"Not Reported",28,"Marshalls Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18090,313542,"AUS","NTMEE",2013,"Not Reported",28,"Mary River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18091,310122,"AUS","NSW SOP",2005,"Not Reported",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18092,310122,"AUS","NSW SOP",2007,"Not Reported",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18093,310122,"AUS","NSW SOP",2010,"Not Reported",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18094,310122,"AUS","NSW SOP",2013,"Not Reported",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18095,310122,"AUS","NSW SOP",2004,"Not Reported",28,"Maryland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18096,436,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mazeppa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18097,436,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mazeppa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18098,555576763,"AUS","NSW SOP",2013,"Not Reported",28,"Mcleods Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18099,310123,"AUS","NSW SOP",2005,"Not Reported",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18100,310123,"AUS","NSW SOP",2007,"Not Reported",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18101,310123,"AUS","NSW SOP",2010,"Not Reported",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18102,310123,"AUS","NSW SOP",2013,"Not Reported",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18103,310123,"AUS","NSW SOP",2004,"Not Reported",28,"Mebbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18104,356696,"AUS","NSW SOP",2005,"Not Reported",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18105,356696,"AUS","NSW SOP",2007,"Not Reported",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18106,356696,"AUS","NSW SOP",2010,"Not Reported",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18107,356696,"AUS","NSW SOP",2013,"Not Reported",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18108,555543477,"AUS","NSW SOP",2010,"Not Reported",28,"Medowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18109,356696,"AUS","NSW SOP",2004,"Not Reported",28,"Medowie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18110,555543477,"AUS","NSW SOP",2013,"Not Reported",28,"Medowie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18111,311718,"AUS","Victorian SOP",2005,"Not Reported",28,"Meereek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18112,311718,"AUS","Victorian SOP",2013,"Not Reported",28,"Meereek F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18113,356700,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Melsonby (Gaarraay) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18114,356700,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Melsonby (Gaarraay) (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18115,310124,"AUS","NSW SOP",2005,"Not Reported",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18116,310124,"AUS","NSW SOP",2007,"Not Reported",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18117,310124,"AUS","NSW SOP",2010,"Not Reported",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18118,310124,"AUS","NSW SOP",2013,"Not Reported",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18119,310124,"AUS","NSW SOP",2004,"Not Reported",28,"Melville Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18120,313695,"AUS","NSW SOP",2005,"Not Reported",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18121,313695,"AUS","NSW SOP",2007,"Not Reported",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18122,313695,"AUS","NSW SOP",2010,"Not Reported",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18123,313695,"AUS","NSW SOP",2013,"Not Reported",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18124,313695,"AUS","NSW SOP",2004,"Not Reported",28,"Meringo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18125,310126,"AUS","NSW SOP",2005,"Not Reported",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18126,310126,"AUS","NSW SOP",2007,"Not Reported",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18127,310126,"AUS","NSW SOP",2010,"Not Reported",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18128,310126,"AUS","NSW SOP",2004,"Not Reported",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18129,310126,"AUS","NSW SOP",2013,"Not Reported",28,"Mernot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18130,310127,"AUS","NSW SOP",2005,"Not Reported",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18131,310127,"AUS","NSW SOP",2007,"Not Reported",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18132,310127,"AUS","NSW SOP",2010,"Not Reported",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18133,310127,"AUS","NSW SOP",2013,"Not Reported",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18134,310127,"AUS","NSW SOP",2004,"Not Reported",28,"Meroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18135,305377,"AUS","Victorian SOP",2010,"Not Reported",28,"Merri","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18136,305377,"AUS","Victorian SOP",2005,"Not Reported",28,"Merri","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18137,305377,"AUS","Victorian SOP",2013,"Not Reported",28,"Merri","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18138,313696,"AUS","NSW SOP",2005,"Not Reported",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18139,313696,"AUS","NSW SOP",2007,"Not Reported",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18140,313696,"AUS","NSW SOP",2010,"Not Reported",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18141,313696,"AUS","NSW SOP",2013,"Not Reported",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18142,313696,"AUS","NSW SOP",2004,"Not Reported",28,"Merriangaah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18143,555543456,"AUS","NSW SOP",2010,"Not Reported",28,"Merriwindi","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18144,555543456,"AUS","NSW SOP",2013,"Not Reported",28,"Merriwindi","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18145,309929,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Michaelmas and Upolu Cays","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18146,309929,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Michaelmas and Upolu Cays","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18147,356713,"AUS","NSW SOP",2005,"Not Reported",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18148,356713,"AUS","NSW SOP",2007,"Not Reported",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18149,356713,"AUS","NSW SOP",2010,"Not Reported",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18150,356713,"AUS","NSW SOP",2013,"Not Reported",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18151,356713,"AUS","NSW SOP",2004,"Not Reported",28,"Middle Brother","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18152,23564,"AUS","NSW SOP",2005,"Not Reported",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18153,23564,"AUS","NSW SOP",2007,"Not Reported",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18154,23564,"AUS","NSW SOP",2010,"Not Reported",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18155,23564,"AUS","NSW SOP",2013,"Not Reported",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18156,23564,"AUS","NSW SOP",2004,"Not Reported",28,"Midkin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18157,314836,"AUS","Victorian SOP",2010,"Not Reported",28,"Milangil Lake W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18158,314836,"AUS","Victorian SOP",2005,"Not Reported",28,"Milangil Lake W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18159,23565,"AUS","NSW SOP",2005,"Not Reported",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18160,23565,"AUS","NSW SOP",2007,"Not Reported",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18161,23565,"AUS","NSW SOP",2004,"Not Reported",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18162,23565,"AUS","NSW SOP",2010,"Not Reported",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18163,23565,"AUS","NSW SOP",2013,"Not Reported",28,"Mills Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18164,24018,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Millstream Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18165,24018,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Millstream Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18166,2612,"AUS","NSW SOP",2005,"Not Reported",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18167,2612,"AUS","NSW SOP",2007,"Not Reported",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18168,2612,"AUS","NSW SOP",2010,"Not Reported",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18169,2612,"AUS","NSW SOP",2013,"Not Reported",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18170,2612,"AUS","NSW SOP",2004,"Not Reported",28,"Mimosa Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18171,64394,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Minerva Hills","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18172,64394,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Minerva Hills","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18173,555548563,"AUS","NSW SOP",2013,"Not Reported",28,"Minimbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18174,555548563,"AUS","NSW SOP",2010,"Not Reported",28,"Minimbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18175,313677,"AUS","NSW SOP",2005,"Not Reported",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18176,313677,"AUS","NSW SOP",2007,"Not Reported",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18177,313677,"AUS","NSW SOP",2010,"Not Reported",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18178,313677,"AUS","NSW SOP",2013,"Not Reported",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18179,313677,"AUS","NSW SOP",2004,"Not Reported",28,"Minjary","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18180,127186,"AUS","Victorian SOP",2005,"Not Reported",28,"Mitchell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18181,127186,"AUS","Victorian SOP",2010,"Not Reported",28,"Mitchell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18182,127186,"AUS","Victorian SOP",2013,"Not Reported",28,"Mitchell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18183,555577198,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mitirinchi Island (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18184,314324,"AUS","Victorian SOP",2005,"Not Reported",28,"Mitta Mitta B.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18185,555543520,"AUS","NSW SOP",2010,"Not Reported",28,"Moema","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18186,555543520,"AUS","NSW SOP",2013,"Not Reported",28,"Moema","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18187,23569,"AUS","NSW SOP",2005,"Not Reported",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18188,23569,"AUS","NSW SOP",2007,"Not Reported",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18189,23569,"AUS","NSW SOP",2010,"Not Reported",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18190,23569,"AUS","NSW SOP",2013,"Not Reported",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18191,23569,"AUS","NSW SOP",2004,"Not Reported",28,"Moffats Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18194,126598,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Molle Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18195,126598,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Molle Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18196,313678,"AUS","NSW SOP",2005,"Not Reported",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18197,313678,"AUS","NSW SOP",2007,"Not Reported",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18198,313678,"AUS","NSW SOP",2010,"Not Reported",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18199,313678,"AUS","NSW SOP",2013,"Not Reported",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18200,555543526,"AUS","NSW SOP",2007,"Not Reported",28,"Monga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18201,555543526,"AUS","NSW SOP",2010,"Not Reported",28,"Monga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18202,555543526,"AUS","NSW SOP",2013,"Not Reported",28,"Monga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18203,313678,"AUS","NSW SOP",2004,"Not Reported",28,"Monga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18204,313697,"AUS","NSW SOP",2005,"Not Reported",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18205,313697,"AUS","NSW SOP",2007,"Not Reported",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18206,313697,"AUS","NSW SOP",2010,"Not Reported",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18207,313697,"AUS","NSW SOP",2013,"Not Reported",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18208,313697,"AUS","NSW SOP",2004,"Not Reported",28,"Monkerai","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18209,310133,"AUS","NSW SOP",2005,"Not Reported",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18210,310133,"AUS","NSW SOP",2007,"Not Reported",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18211,310133,"AUS","NSW SOP",2010,"Not Reported",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18212,310133,"AUS","NSW SOP",2013,"Not Reported",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18213,310133,"AUS","NSW SOP",2004,"Not Reported",28,"Monkeycot","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18214,63136,"AUS","NSW SOP",2005,"Not Reported",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18215,63136,"AUS","NSW SOP",2007,"Not Reported",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18216,63136,"AUS","NSW SOP",2010,"Not Reported",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18217,63136,"AUS","NSW SOP",2013,"Not Reported",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18218,63136,"AUS","NSW SOP",2004,"Not Reported",28,"Montague Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18219,310134,"AUS","NSW SOP",2005,"Not Reported",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18220,310134,"AUS","NSW SOP",2007,"Not Reported",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18221,310134,"AUS","NSW SOP",2010,"Not Reported",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18222,310134,"AUS","NSW SOP",2013,"Not Reported",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18223,310134,"AUS","NSW SOP",2004,"Not Reported",28,"Mooball","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18224,126608,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Moogerah Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18225,126608,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Moogerah Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18226,24025,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mooloolah River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18227,24025,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mooloolah River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18228,23573,"AUS","NSW SOP",2005,"Not Reported",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18229,23573,"AUS","NSW SOP",2007,"Not Reported",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18230,23573,"AUS","NSW SOP",2010,"Not Reported",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18231,23573,"AUS","NSW SOP",2013,"Not Reported",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18232,23573,"AUS","NSW SOP",2004,"Not Reported",28,"Moon Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18233,24761,"AUS","Victorian SOP",2010,"Not Reported",28,"Moondarra","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18234,24761,"AUS","Victorian SOP",2005,"Not Reported",28,"Moondarra","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18235,24761,"AUS","Victorian SOP",2013,"Not Reported",28,"Moondarra","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18236,23574,"AUS","NSW SOP",2005,"Not Reported",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18237,23574,"AUS","NSW SOP",2007,"Not Reported",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18238,23574,"AUS","NSW SOP",2010,"Not Reported",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18239,23574,"AUS","NSW SOP",2013,"Not Reported",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18240,23574,"AUS","NSW SOP",2004,"Not Reported",28,"Moonee Beach","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18241,310135,"AUS","NSW SOP",2005,"Not Reported",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18242,310135,"AUS","NSW SOP",2007,"Not Reported",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18243,310135,"AUS","NSW SOP",2010,"Not Reported",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18244,310135,"AUS","NSW SOP",2013,"Not Reported",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18245,310135,"AUS","NSW SOP",2004,"Not Reported",28,"Moore Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18246,24762,"AUS","Victorian SOP",2010,"Not Reported",28,"Moormurng F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18247,24762,"AUS","Victorian SOP",2005,"Not Reported",28,"Moormurng F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18248,24762,"AUS","Victorian SOP",2013,"Not Reported",28,"Moormurng F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18249,126614,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Moorrinya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18250,126614,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Moorrinya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18251,314746,"AUS","Victorian SOP",2005,"Not Reported",28,"Morass Creek F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18252,24026,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Moresby Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18253,24026,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Moresby Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18254,24027,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Moreton Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18255,24027,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Moreton Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18256,126620,"AUS","Victorian SOP",2010,"Not Reported",28,"Mornington Peninsula National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18257,126620,"AUS","Victorian SOP",2005,"Not Reported",28,"Mornington Peninsula National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18258,126620,"AUS","Victorian SOP",2013,"Not Reported",28,"Mornington Peninsula National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18259,313698,"AUS","NSW SOP",2005,"Not Reported",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18260,313698,"AUS","NSW SOP",2007,"Not Reported",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18261,313698,"AUS","NSW SOP",2010,"Not Reported",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18262,313698,"AUS","NSW SOP",2013,"Not Reported",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18263,313698,"AUS","NSW SOP",2004,"Not Reported",28,"Mororo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18264,23577,"AUS","NSW SOP",2005,"Not Reported",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18265,23577,"AUS","NSW SOP",2007,"Not Reported",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18266,23577,"AUS","NSW SOP",2010,"Not Reported",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18267,23577,"AUS","NSW SOP",2013,"Not Reported",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18268,23577,"AUS","NSW SOP",2004,"Not Reported",28,"Morrisons Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18269,306756,"AUS","Victorian SOP",2005,"Not Reported",28,"Mortimers Paddock B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18270,356775,"AUS","Victorian SOP",2005,"Not Reported",28,"Mortlake Common F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18271,356775,"AUS","Victorian SOP",2013,"Not Reported",28,"Mortlake Common F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18272,63863,"AUS","NSW SOP",2005,"Not Reported",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18273,63863,"AUS","NSW SOP",2007,"Not Reported",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18274,63863,"AUS","NSW SOP",2010,"Not Reported",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18275,63863,"AUS","NSW SOP",2013,"Not Reported",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18276,555543506,"AUS","NSW SOP",2005,"Not Reported",28,"Morton","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18277,555543506,"AUS","NSW SOP",2007,"Not Reported",28,"Morton","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18278,555543506,"AUS","NSW SOP",2010,"Not Reported",28,"Morton","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18279,555543506,"AUS","NSW SOP",2013,"Not Reported",28,"Morton","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18280,63863,"AUS","NSW SOP",2004,"Not Reported",28,"Morton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18281,24765,"AUS","Victorian SOP",2010,"Not Reported",28,"Morwell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18282,24765,"AUS","Victorian SOP",2005,"Not Reported",28,"Morwell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18283,24765,"AUS","Victorian SOP",2013,"Not Reported",28,"Morwell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18284,23579,"AUS","NSW SOP",2005,"Not Reported",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18285,23579,"AUS","NSW SOP",2007,"Not Reported",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18286,23579,"AUS","NSW SOP",2010,"Not Reported",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18287,23579,"AUS","NSW SOP",2013,"Not Reported",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18288,23579,"AUS","NSW SOP",2004,"Not Reported",28,"Mother Of Ducks Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18289,5331,"AUS","Birdlife IBA",2008,"Not Reported",28,"Moulting Lagoon","Game Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18290,67764,"AUS","Birdlife IBA",2008,"Not Reported",28,"Moulting Lagoon","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18291,555548713,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18292,442,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Aberdeen","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18293,442,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Aberdeen","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18294,356777,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Arapiles-Tooan","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18295,356777,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Arapiles-Tooan","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18296,356777,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Arapiles-Tooan","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18297,126624,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Archer","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18298,126624,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Archer","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18299,423,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Barney","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18300,423,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Barney","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18301,24029,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18302,24029,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18303,126627,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Beckworth S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18304,356780,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Binga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18305,356780,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Binga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18306,2694,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Bolangum N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18307,2694,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Bolangum N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18308,63144,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Buangor","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18309,63144,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Buangor","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18310,63144,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Buangor","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18311,535,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Buffalo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18312,535,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Buffalo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18313,535,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Buffalo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18314,356783,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18315,356783,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18316,356783,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18317,356783,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18318,356783,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Canobolas","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18319,24033,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Chinghee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18320,24033,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Chinghee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18321,310138,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18322,310138,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18323,310138,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18324,310138,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18325,310138,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Clifford","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18326,310139,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18327,310139,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18328,310139,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18329,310139,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18330,310139,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Clunie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18331,24034,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Colosseum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18332,24034,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Colosseum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18333,24035,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Cook","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18334,24035,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Cook","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18335,63145,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Coolum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18336,63145,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Coolum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18337,555576778,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18338,126642,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Delegate S.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18339,306764,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Doboobetic B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18340,306764,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Doboobetic B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18341,31040,"CHE","NSW SOP",2005,"Not Reported",28,"K�rpf","Federal Hunting Reserves","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18342,31040,"CHE","NSW SOP",2007,"Not Reported",28,"K�rpf","Federal Hunting Reserves","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18343,31040,"CHE","NSW SOP",2010,"Not Reported",28,"K�rpf","Federal Hunting Reserves","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18344,31040,"CHE","NSW SOP",2013,"Not Reported",28,"K�rpf","Federal Hunting Reserves","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18345,310140,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Dowling","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18346,24767,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Eccles National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18347,24767,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Eccles National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18348,24767,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Eccles National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18349,356790,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Elizabeth N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18350,356790,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Elizabeth N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18351,356790,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Elizabeth N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18352,126643,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Erip F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18353,126644,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Etna Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18354,126644,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Etna Caves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18355,126648,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Gibbo N.F.S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18356,102569,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Granya","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18357,102569,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Granya","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18358,102569,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Granya","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18359,10589,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18360,10589,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18361,10589,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18363,10589,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18365,356797,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Hyland","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18366,356797,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Hyland","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18367,10589,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Hyland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18368,356797,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Hyland","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18369,24042,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Hypipamee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18370,24042,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Hypipamee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18371,382,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18372,382,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18373,382,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18374,382,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18375,382,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Imlay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18376,314749,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Jeffcott F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18377,314749,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Jeffcott F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18378,102554,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18379,102554,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18380,102554,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18381,102554,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18382,102554,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18383,24043,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Jim Crow","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18384,24043,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Jim Crow","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18385,360,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18386,360,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18387,360,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18388,360,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18389,360,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Kaputar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18390,126656,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Korong N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18391,24769,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Lawson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18392,24769,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Lawson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18393,24769,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Lawson","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18394,555548628,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18395,555548813,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Lewis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18396,555548813,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Lewis","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18397,356802,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Mackay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18398,356802,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Mackay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18399,310141,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18400,310141,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18401,310141,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18402,310141,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18403,310141,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18404,126657,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Martin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18405,126657,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Martin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18406,310141,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Mackenzie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18407,64277,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Mitta Mitta F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18408,24770,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Napier","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18409,24770,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Napier","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18410,24770,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Napier","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18411,23581,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18412,23581,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18413,23581,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18414,23581,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18415,23581,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Neville","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18416,309932,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18417,309932,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18418,309932,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18419,309932,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18420,309932,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Nothofagus","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18421,310142,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18422,310142,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18423,310142,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18424,310142,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18425,310142,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Nullum","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18426,309933,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount O'Connell","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18427,309933,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount O'Connell","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18428,126660,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Ossa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18429,126660,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Ossa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18430,310143,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18431,310143,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18432,310143,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18433,310143,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18434,555543504,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Pikapene","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18435,555543504,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Pikapene","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18436,310143,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Pikapene","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18437,24049,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Pinbarren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18438,24049,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Pinbarren","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18439,306773,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Piper N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18440,306773,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Piper N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18441,306773,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Piper N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18442,551,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Richmond National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18443,551,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Richmond National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18444,551,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Richmond National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18445,309574,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18446,309574,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18447,309574,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18448,309574,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18449,310067,"AUS","NSW SOP",2004,"Not Reported",28,"Fortis Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18450,545,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Samaria","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18451,545,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Samaria","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18452,545,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Samaria","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18453,10590,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18454,10590,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18455,10590,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18456,10590,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18457,10590,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Seaview","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18458,555548702,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Spurgeon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18459,555548702,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Spurgeon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18460,356666,"AUS","Victorian SOP",2005,"Not Reported",28,"Marble Gully - Mount Tambo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18461,440,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Walsh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18462,440,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Walsh","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18463,24051,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18464,24051,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18465,314655,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount William Swamp (The Big Swamp) W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18466,356825,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mount Windsor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18468,356825,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mount Windsor","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18470,308010,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Wombat-Garden Range F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18471,308010,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Wombat-Garden Range F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18472,308010,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Wombat-Garden Range F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18473,9508,"AUS","Victorian SOP",2010,"Not Reported",28,"Mount Worth","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18474,9508,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Worth","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18475,9508,"AUS","Victorian SOP",2013,"Not Reported",28,"Mount Worth","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18476,23582,"AUS","NSW SOP",2005,"Not Reported",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18477,23582,"AUS","NSW SOP",2007,"Not Reported",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18478,23582,"AUS","NSW SOP",2010,"Not Reported",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18479,23582,"AUS","NSW SOP",2013,"Not Reported",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18480,23582,"AUS","NSW SOP",2004,"Not Reported",28,"Mount Yarrowyck","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18481,309936,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mowbray","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18482,309936,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mowbray","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18483,555548607,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18484,555548607,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18485,310145,"AUS","NSW SOP",2005,"Not Reported",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18486,310145,"AUS","NSW SOP",2007,"Not Reported",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18487,310145,"AUS","NSW SOP",2010,"Not Reported",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18488,310145,"AUS","NSW SOP",2013,"Not Reported",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18489,310145,"AUS","NSW SOP",2004,"Not Reported",28,"Muckleewee Mountain","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18490,310146,"AUS","NSW SOP",2005,"Not Reported",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18491,310146,"AUS","NSW SOP",2007,"Not Reported",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18492,310146,"AUS","NSW SOP",2010,"Not Reported",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18493,310146,"AUS","NSW SOP",2004,"Not Reported",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18494,310146,"AUS","NSW SOP",2013,"Not Reported",28,"Mudjarn","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18495,555548739,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Mudlo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18496,555548739,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Mudlo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18497,555576782,"AUS","NSW SOP",2013,"Not Reported",28,"Mugii Murum-ban","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18498,23585,"AUS","NSW SOP",2005,"Not Reported",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18499,23585,"AUS","NSW SOP",2007,"Not Reported",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18500,23585,"AUS","NSW SOP",2010,"Not Reported",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18501,23585,"AUS","NSW SOP",2004,"Not Reported",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18502,23585,"AUS","NSW SOP",2013,"Not Reported",28,"Muldiva","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18503,102555,"AUS","NSW SOP",2005,"Not Reported",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18504,102555,"AUS","NSW SOP",2007,"Not Reported",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18505,102555,"AUS","NSW SOP",2010,"Not Reported",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18506,102555,"AUS","NSW SOP",2013,"Not Reported",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18507,102555,"AUS","NSW SOP",2004,"Not Reported",28,"Mulgoa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18508,555548615,"AUS","NSW SOP",2010,"Not Reported",28,"Mullengandra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18509,310147,"AUS","NSW SOP",2004,"Not Reported",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18510,555548615,"AUS","NSW SOP",2013,"Not Reported",28,"Mullengandra","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18511,310147,"AUS","NSW SOP",2005,"Not Reported",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18512,310147,"AUS","NSW SOP",2007,"Not Reported",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18513,310147,"AUS","NSW SOP",2010,"Not Reported",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18514,310147,"AUS","NSW SOP",2013,"Not Reported",28,"Mullengandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18515,356849,"AUS","NSW SOP",2005,"Not Reported",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18516,356849,"AUS","NSW SOP",2007,"Not Reported",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18517,356849,"AUS","NSW SOP",2010,"Not Reported",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18518,356849,"AUS","NSW SOP",2013,"Not Reported",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18519,356849,"AUS","NSW SOP",2004,"Not Reported",28,"Mullion Range","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18520,314751,"AUS","Victorian SOP",2010,"Not Reported",28,"Mullungdung F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18521,314751,"AUS","Victorian SOP",2005,"Not Reported",28,"Mullungdung F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18522,314751,"AUS","Victorian SOP",2013,"Not Reported",28,"Mullungdung F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18523,310148,"AUS","NSW SOP",2005,"Not Reported",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18524,310148,"AUS","NSW SOP",2007,"Not Reported",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18525,310148,"AUS","NSW SOP",2010,"Not Reported",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18526,310148,"AUS","NSW SOP",2013,"Not Reported",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18527,356852,"AUS","NSW SOP",2005,"Not Reported",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18528,356852,"AUS","NSW SOP",2007,"Not Reported",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18529,356852,"AUS","NSW SOP",2010,"Not Reported",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18530,310148,"AUS","NSW SOP",2004,"Not Reported",28,"Mummel Gulf","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18531,356852,"AUS","NSW SOP",2004,"Not Reported",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18532,356852,"AUS","NSW SOP",2013,"Not Reported",28,"Mummel Gulf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18533,1160,"AUS","NSW SOP",2005,"Not Reported",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18534,1160,"AUS","NSW SOP",2007,"Not Reported",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18535,1160,"AUS","NSW SOP",2010,"Not Reported",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18536,1160,"AUS","NSW SOP",2013,"Not Reported",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18537,1160,"AUS","NSW SOP",2004,"Not Reported",28,"Mundoonen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18538,311889,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18539,1138,"AUS","NSW SOP",2005,"Not Reported",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18540,1138,"AUS","NSW SOP",2007,"Not Reported",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18541,1138,"AUS","NSW SOP",2010,"Not Reported",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18542,1138,"AUS","NSW SOP",2013,"Not Reported",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18543,1138,"AUS","NSW SOP",2004,"Not Reported",28,"Munghorn Gap","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18544,126692,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18545,2608,"AUS","NSW SOP",2005,"Not Reported",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18546,2608,"AUS","NSW SOP",2007,"Not Reported",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18547,2608,"AUS","NSW SOP",2010,"Not Reported",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18548,2608,"AUS","NSW SOP",2013,"Not Reported",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18549,555576783,"AUS","NSW SOP",2013,"Not Reported",28,"Mungo","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18550,2608,"AUS","NSW SOP",2004,"Not Reported",28,"Mungo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18551,356856,"AUS","NSW SOP",2005,"Not Reported",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18552,356856,"AUS","NSW SOP",2007,"Not Reported",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18553,356856,"AUS","NSW SOP",2010,"Not Reported",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18554,356856,"AUS","NSW SOP",2013,"Not Reported",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18555,356856,"AUS","NSW SOP",2004,"Not Reported",28,"Munmorah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18556,310149,"AUS","NSW SOP",2005,"Not Reported",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18557,310149,"AUS","NSW SOP",2007,"Not Reported",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18558,310149,"AUS","NSW SOP",2010,"Not Reported",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18559,310149,"AUS","NSW SOP",2013,"Not Reported",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18560,310149,"AUS","NSW SOP",2004,"Not Reported",28,"Munro Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18561,1151,"AUS","NSW SOP",2005,"Not Reported",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18562,1151,"AUS","NSW SOP",2007,"Not Reported",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18563,1151,"AUS","NSW SOP",2010,"Not Reported",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18564,1151,"AUS","NSW SOP",2013,"Not Reported",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18565,1151,"AUS","NSW SOP",2004,"Not Reported",28,"Muogamarra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18566,389,"AUS","NSW SOP",2005,"Not Reported",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18567,389,"AUS","NSW SOP",2007,"Not Reported",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18568,389,"AUS","NSW SOP",2010,"Not Reported",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18569,389,"AUS","NSW SOP",2013,"Not Reported",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18570,389,"AUS","NSW SOP",2004,"Not Reported",28,"Murramarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18571,314863,"AUS","Victorian SOP",2005,"Not Reported",28,"Murray - Kulkyne Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18572,314863,"AUS","Victorian SOP",2010,"Not Reported",28,"Murray - Kulkyne Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18573,314863,"AUS","Victorian SOP",2013,"Not Reported",28,"Murray - Kulkyne Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18574,63165,"AUS","Victorian SOP",2005,"Not Reported",28,"Murray - Sunset National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18575,63165,"AUS","Victorian SOP",2010,"Not Reported",28,"Murray - Sunset National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18576,63165,"AUS","Victorian SOP",2013,"Not Reported",28,"Murray - Sunset National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18577,555576785,"AUS","NSW SOP",2013,"Not Reported",28,"Murray Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18578,555576786,"AUS","NSW SOP",2013,"Not Reported",28,"Murray Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18579,314792,"AUS","Victorian SOP",2005,"Not Reported",28,"Murrindal F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18580,555576790,"AUS","NSW SOP",2013,"Not Reported",28,"Yanga","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18581,555576787,"AUS","NSW SOP",2013,"Not Reported",28,"Murrumbidgee Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18583,555576788,"AUS","NSW SOP",2013,"Not Reported",28,"Yanga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18585,555576789,"AUS","NSW SOP",2013,"Not Reported",28,"Murrumbidgee Valley","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18587,555543517,"AUS","NSW SOP",2010,"Not Reported",28,"Murrurundi Pass","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18588,555543517,"AUS","NSW SOP",2013,"Not Reported",28,"Murrurundi Pass","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18589,305375,"AUS","Victorian SOP",2010,"Not Reported",28,"Mushroom Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18590,305375,"AUS","Victorian SOP",2005,"Not Reported",28,"Mushroom Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18591,305375,"AUS","Victorian SOP",2013,"Not Reported",28,"Mushroom Reef","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18592,310150,"AUS","NSW SOP",2005,"Not Reported",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18593,310150,"AUS","NSW SOP",2007,"Not Reported",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18594,310150,"AUS","NSW SOP",2010,"Not Reported",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18595,310150,"AUS","NSW SOP",2013,"Not Reported",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18596,313679,"AUS","NSW SOP",2005,"Not Reported",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18597,313679,"AUS","NSW SOP",2007,"Not Reported",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18598,313679,"AUS","NSW SOP",2010,"Not Reported",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18599,313679,"AUS","NSW SOP",2013,"Not Reported",28,"Mutawintji","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18600,310150,"AUS","NSW SOP",2004,"Not Reported",28,"Mutawintji","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18601,313681,"AUS","NSW SOP",2004,"Not Reported",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18602,23588,"AUS","NSW SOP",2005,"Not Reported",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18603,23588,"AUS","NSW SOP",2007,"Not Reported",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18604,23588,"AUS","NSW SOP",2010,"Not Reported",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18605,23588,"AUS","NSW SOP",2013,"Not Reported",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18606,23588,"AUS","NSW SOP",2004,"Not Reported",28,"Muttonbird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18607,363,"AUS","NSW SOP",2005,"Not Reported",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18608,363,"AUS","NSW SOP",2007,"Not Reported",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18609,363,"AUS","NSW SOP",2010,"Not Reported",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18610,363,"AUS","NSW SOP",2013,"Not Reported",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18611,363,"AUS","NSW SOP",2004,"Not Reported",28,"Myall Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18612,310151,"AUS","NSW SOP",2005,"Not Reported",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18613,310151,"AUS","NSW SOP",2007,"Not Reported",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18614,310151,"AUS","NSW SOP",2010,"Not Reported",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18615,310151,"AUS","NSW SOP",2013,"Not Reported",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18616,310151,"AUS","NSW SOP",2004,"Not Reported",28,"Myalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18617,1132,"AUS","NSW SOP",2005,"Not Reported",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18618,1132,"AUS","NSW SOP",2007,"Not Reported",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18619,1132,"AUS","NSW SOP",2010,"Not Reported",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18620,1132,"AUS","NSW SOP",2013,"Not Reported",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18621,1132,"AUS","NSW SOP",2004,"Not Reported",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18622,1132,"AUS","Birdlife IBA",2008,"Not Reported",28,"Nadgee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18623,356886,"AUS","NSW SOP",2005,"Not Reported",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18624,356886,"AUS","NSW SOP",2007,"Not Reported",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18625,356886,"AUS","NSW SOP",2010,"Not Reported",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18626,356886,"AUS","NSW SOP",2013,"Not Reported",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18627,356886,"AUS","NSW SOP",2004,"Not Reported",28,"Nadgigomar","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18628,356888,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18629,356888,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18630,356889,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Nairana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18631,356889,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Nairana","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18632,10594,"AUS","NSW SOP",2005,"Not Reported",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18633,10594,"AUS","NSW SOP",2007,"Not Reported",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18634,10594,"AUS","NSW SOP",2010,"Not Reported",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18635,10594,"AUS","NSW SOP",2013,"Not Reported",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18636,10594,"AUS","NSW SOP",2004,"Not Reported",28,"Nangar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18637,357722,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Nangur","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18638,357722,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Nangur","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18639,555548776,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Naree Budjong Djara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18640,555577221,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18641,555548744,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18642,555548744,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18643,555548804,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Narkoola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18644,555548804,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Narkoola","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18645,315024,"AUS","NSW SOP",2010,"Not Reported",28,"Narrabeen","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18646,23591,"AUS","NSW SOP",2005,"Not Reported",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18647,23591,"AUS","NSW SOP",2007,"Not Reported",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18648,23591,"AUS","NSW SOP",2010,"Not Reported",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18649,23591,"AUS","NSW SOP",2013,"Not Reported",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18650,23591,"AUS","NSW SOP",2004,"Not Reported",28,"Narran Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18651,23592,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18652,23592,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18653,23592,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18654,23592,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18655,555576796,"AUS","NSW SOP",2013,"Not Reported",28,"Narrangarril","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18656,23590,"AUS","NSW SOP",2005,"Not Reported",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18657,23590,"AUS","NSW SOP",2007,"Not Reported",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18658,23590,"AUS","NSW SOP",2010,"Not Reported",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18659,23590,"AUS","NSW SOP",2013,"Not Reported",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18660,23590,"AUS","NSW SOP",2004,"Not Reported",28,"Narrawallee Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18661,126709,"AUS","Victorian SOP",2010,"Not Reported",28,"Narrawong F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18662,126709,"AUS","Victorian SOP",2005,"Not Reported",28,"Narrawong F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18663,126709,"AUS","Victorian SOP",2013,"Not Reported",28,"Narrawong F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18664,64383,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Narrien Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18665,64383,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Narrien Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18666,126711,"AUS","NSW SOP",2005,"Not Reported",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18667,126711,"AUS","NSW SOP",2007,"Not Reported",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18668,126711,"AUS","NSW SOP",2010,"Not Reported",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18669,126711,"AUS","NSW SOP",2013,"Not Reported",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18670,356896,"AUS","NSW SOP",2005,"Not Reported",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18671,356896,"AUS","NSW SOP",2007,"Not Reported",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18672,356896,"AUS","NSW SOP",2010,"Not Reported",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18673,356896,"AUS","NSW SOP",2013,"Not Reported",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18674,126711,"AUS","NSW SOP",2004,"Not Reported",28,"Nattai","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18675,356896,"AUS","NSW SOP",2004,"Not Reported",28,"Nattai","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18676,1142,"AUS","NSW SOP",2005,"Not Reported",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18677,1142,"AUS","NSW SOP",2007,"Not Reported",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18678,1142,"AUS","NSW SOP",2010,"Not Reported",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18679,1142,"AUS","NSW SOP",2013,"Not Reported",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18680,1142,"AUS","NSW SOP",2004,"Not Reported",28,"Nearie Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18681,356904,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18682,356904,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18683,314658,"AUS","Victorian SOP",2005,"Not Reported",28,"Nerrin Nerrin Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18684,310153,"AUS","NSW SOP",2005,"Not Reported",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18685,310153,"AUS","NSW SOP",2007,"Not Reported",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18686,310153,"AUS","NSW SOP",2010,"Not Reported",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18687,310153,"AUS","NSW SOP",2013,"Not Reported",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18688,310153,"AUS","NSW SOP",2004,"Not Reported",28,"Nest Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18689,362,"AUS","Birdlife IBA",2008,"Not Reported",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18690,362,"AUS","NSW SOP",2005,"Not Reported",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18691,362,"AUS","NSW SOP",2007,"Not Reported",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18692,362,"AUS","NSW SOP",2010,"Not Reported",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18693,362,"AUS","NSW SOP",2013,"Not Reported",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18694,362,"AUS","NSW SOP",2004,"Not Reported",28,"New England","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18695,310154,"AUS","NSW SOP",2005,"Not Reported",28,"Newington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18696,310154,"AUS","NSW SOP",2007,"Not Reported",28,"Newington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18697,310154,"AUS","NSW SOP",2013,"Not Reported",28,"Newington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18698,310154,"AUS","NSW SOP",2004,"Not Reported",28,"Newington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18699,9480,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Newry Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18700,9480,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Newry Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18701,310155,"AUS","NSW SOP",2005,"Not Reported",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18702,310155,"AUS","NSW SOP",2007,"Not Reported",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18703,310155,"AUS","NSW SOP",2010,"Not Reported",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18704,310155,"AUS","NSW SOP",2013,"Not Reported",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18705,310155,"AUS","NSW SOP",2004,"Not Reported",28,"Ngadang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18706,555577231,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Ngalba Bulal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18707,310156,"AUS","NSW SOP",2005,"Not Reported",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18708,310156,"AUS","NSW SOP",2007,"Not Reported",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18709,310156,"AUS","NSW SOP",2010,"Not Reported",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18710,310156,"AUS","NSW SOP",2013,"Not Reported",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18711,310156,"AUS","NSW SOP",2004,"Not Reported",28,"Ngambaa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18712,310157,"AUS","NSW SOP",2005,"Not Reported",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18713,310157,"AUS","NSW SOP",2007,"Not Reported",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18714,310157,"AUS","NSW SOP",2010,"Not Reported",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18715,310157,"AUS","NSW SOP",2013,"Not Reported",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18716,310157,"AUS","NSW SOP",2004,"Not Reported",28,"Ngulin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18717,24062,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Nicoll Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18718,24062,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Nicoll Scrub","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18719,10595,"AUS","NSW SOP",2005,"Not Reported",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18720,10595,"AUS","NSW SOP",2007,"Not Reported",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18721,10595,"AUS","NSW SOP",2010,"Not Reported",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18722,10595,"AUS","NSW SOP",2013,"Not Reported",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18723,10595,"AUS","NSW SOP",2004,"Not Reported",28,"Nightcap","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18724,310158,"AUS","NSW SOP",2005,"Not Reported",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18725,310158,"AUS","NSW SOP",2007,"Not Reported",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18726,310158,"AUS","NSW SOP",2010,"Not Reported",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18727,310158,"AUS","NSW SOP",2013,"Not Reported",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18728,310158,"AUS","NSW SOP",2004,"Not Reported",28,"Nimmo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18729,305444,"AUS","Victorian SOP",2010,"Not Reported",28,"Ninety Mile Beach","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18730,305444,"AUS","Victorian SOP",2005,"Not Reported",28,"Ninety Mile Beach","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18731,305444,"AUS","Victorian SOP",2013,"Not Reported",28,"Ninety Mile Beach","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18732,555542338,"AUS","WH Outlook Report",2014,"Not Reported",28,"Ningaloo Coast","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18733,313845,"AUS","NTMEE",2013,"Not Reported",28,"Nitmiluk","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18734,2615,"AUS","NSW SOP",2005,"Not Reported",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18735,2615,"AUS","NSW SOP",2007,"Not Reported",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18736,2615,"AUS","NSW SOP",2010,"Not Reported",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18737,2615,"AUS","NSW SOP",2013,"Not Reported",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18738,2615,"AUS","NSW SOP",2004,"Not Reported",28,"Nocoleche","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18739,23596,"AUS","NSW SOP",2005,"Not Reported",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18740,23596,"AUS","NSW SOP",2007,"Not Reported",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18741,23596,"AUS","NSW SOP",2010,"Not Reported",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18742,23596,"AUS","NSW SOP",2013,"Not Reported",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18743,555543552,"AUS","NSW SOP",2005,"Not Reported",28,"Nombinnie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18744,555543552,"AUS","NSW SOP",2007,"Not Reported",28,"Nombinnie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18745,555543552,"AUS","NSW SOP",2010,"Not Reported",28,"Nombinnie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18746,555543552,"AUS","NSW SOP",2013,"Not Reported",28,"Nombinnie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18747,23596,"AUS","NSW SOP",2004,"Not Reported",28,"Nombinnie","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18748,2688,"AUS","Victorian SOP",2010,"Not Reported",28,"Nooramunga Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18749,2688,"AUS","Victorian SOP",2005,"Not Reported",28,"Nooramunga Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18750,2688,"AUS","Victorian SOP",2013,"Not Reported",28,"Nooramunga Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18751,24160,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Noosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18752,24160,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Noosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18753,12962,"AUS","NSW SOP",2010,"Not Reported",28,"North Sydney Harbour","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18754,310160,"AUS","NSW SOP",2005,"Not Reported",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18755,310160,"AUS","NSW SOP",2007,"Not Reported",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18756,310160,"AUS","NSW SOP",2010,"Not Reported",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18757,310160,"AUS","NSW SOP",2013,"Not Reported",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18758,310160,"AUS","NSW SOP",2004,"Not Reported",28,"North Obelisk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18759,23599,"AUS","NSW SOP",2005,"Not Reported",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18760,23599,"AUS","NSW SOP",2007,"Not Reported",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18761,23599,"AUS","NSW SOP",2010,"Not Reported",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18762,23599,"AUS","NSW SOP",2004,"Not Reported",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18763,23599,"AUS","NSW SOP",2013,"Not Reported",28,"North Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18764,23600,"AUS","NSW SOP",2005,"Not Reported",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18765,23600,"AUS","NSW SOP",2007,"Not Reported",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18766,23600,"AUS","NSW SOP",2010,"Not Reported",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18767,23600,"AUS","NSW SOP",2013,"Not Reported",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18768,23600,"AUS","NSW SOP",2004,"Not Reported",28,"North Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18769,308845,"AUS","Victorian SOP",2010,"Not Reported",28,"North Western Port N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18770,308845,"AUS","Victorian SOP",2005,"Not Reported",28,"North Western Port N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18771,308845,"AUS","Victorian SOP",2013,"Not Reported",28,"North Western Port N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18772,314659,"AUS","Victorian SOP",2005,"Not Reported",28,"North, Centre and other Lakes W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18773,126746,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Northumberland Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18774,126746,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Northumberland Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18775,310159,"AUS","NSW SOP",2005,"Not Reported",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18776,310159,"AUS","NSW SOP",2007,"Not Reported",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18777,310159,"AUS","NSW SOP",2010,"Not Reported",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18778,310159,"AUS","NSW SOP",2004,"Not Reported",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18779,310159,"AUS","NSW SOP",2013,"Not Reported",28,"North-West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18780,555548775,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Nour Nour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18781,555548775,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Nour Nour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18782,313680,"AUS","NSW SOP",2005,"Not Reported",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18783,313680,"AUS","NSW SOP",2007,"Not Reported",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18784,313680,"AUS","NSW SOP",2010,"Not Reported",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18785,313680,"AUS","NSW SOP",2013,"Not Reported",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18786,313680,"AUS","NSW SOP",2004,"Not Reported",28,"Nowendoc","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18787,126747,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Nuga Nuga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18788,126747,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Nuga Nuga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18789,555576803,"AUS","NSW SOP",2013,"Not Reported",28,"Nuggetty","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18790,555543563,"AUS","NSW SOP",2010,"Not Reported",28,"Nullamanna","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18791,555543563,"AUS","NSW SOP",2013,"Not Reported",28,"Nullamanna","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18792,310161,"AUS","NSW SOP",2005,"Not Reported",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18793,310161,"AUS","NSW SOP",2007,"Not Reported",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18794,310161,"AUS","NSW SOP",2010,"Not Reported",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18795,310161,"AUS","NSW SOP",2013,"Not Reported",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18796,310161,"AUS","NSW SOP",2004,"Not Reported",28,"Numeralla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18797,11135,"AUS","NSW SOP",2005,"Not Reported",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18798,11135,"AUS","NSW SOP",2007,"Not Reported",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18799,11135,"AUS","NSW SOP",2010,"Not Reported",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18800,11135,"AUS","NSW SOP",2013,"Not Reported",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18801,11135,"AUS","NSW SOP",2004,"Not Reported",28,"Numinbah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18802,126754,"AUS","Victorian SOP",2005,"Not Reported",28,"Nunniong Plain N.F.S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18803,555548712,"AUS","Victorian SOP",2010,"Not Reported",28,"Nyah-Vinifera Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18804,555548712,"AUS","Victorian SOP",2013,"Not Reported",28,"Nyah-Vinifera Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18805,305358,"AUS","Victorian SOP",2010,"Not Reported",28,"Nyerimilang Park G.L.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18806,305358,"AUS","Victorian SOP",2013,"Not Reported",28,"Nyerimilang Park G.L.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18807,356941,"AUS","NSW SOP",2005,"Not Reported",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18808,356941,"AUS","NSW SOP",2007,"Not Reported",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18809,356941,"AUS","NSW SOP",2010,"Not Reported",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18810,356941,"AUS","NSW SOP",2013,"Not Reported",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18811,356941,"AUS","NSW SOP",2004,"Not Reported",28,"Nymboi-Binderay","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18812,310162,"AUS","NSW SOP",2005,"Not Reported",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18813,310162,"AUS","NSW SOP",2007,"Not Reported",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18814,310162,"AUS","NSW SOP",2010,"Not Reported",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18815,310162,"AUS","NSW SOP",2013,"Not Reported",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18816,310059,"AUS","NSW SOP",2004,"Not Reported",28,"Dooragan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18817,9467,"AUS","NSW SOP",2005,"Not Reported",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18818,9467,"AUS","NSW SOP",2007,"Not Reported",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18819,9467,"AUS","NSW SOP",2010,"Not Reported",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18821,9467,"AUS","NSW SOP",2013,"Not Reported",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18823,356942,"AUS","NSW SOP",2005,"Not Reported",28,"Nymboida","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18824,356942,"AUS","NSW SOP",2007,"Not Reported",28,"Nymboida","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18825,9467,"AUS","NSW SOP",2004,"Not Reported",28,"Nymboida","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18827,311951,"AUS","NSW SOP",2005,"Not Reported",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18828,311951,"AUS","NSW SOP",2007,"Not Reported",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18829,311951,"AUS","NSW SOP",2010,"Not Reported",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18830,311951,"AUS","NSW SOP",2013,"Not Reported",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18831,311951,"AUS","NSW SOP",2004,"Not Reported",28,"Oak Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18832,555576805,"AUS","NSW SOP",2013,"Not Reported",28,"Oakdale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18833,356944,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Oakview","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18834,356944,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Oakview","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18835,356946,"AUS","Victorian SOP",2005,"Not Reported",28,"Olangolah Creek","Reference Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18836,126763,"AUS","NSW SOP",2005,"Not Reported",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18837,126763,"AUS","NSW SOP",2007,"Not Reported",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18838,126763,"AUS","NSW SOP",2010,"Not Reported",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18839,126763,"AUS","NSW SOP",2013,"Not Reported",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18840,126763,"AUS","NSW SOP",2004,"Not Reported",28,"One Tree Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18841,356955,"AUS","NSW SOP",2004,"Not Reported",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18842,356955,"AUS","NSW SOP",2005,"Not Reported",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18843,356955,"AUS","NSW SOP",2007,"Not Reported",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18844,356955,"AUS","NSW SOP",2010,"Not Reported",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18845,356955,"AUS","NSW SOP",2013,"Not Reported",28,"Oolambeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18846,24787,"AUS","Victorian SOP",2010,"Not Reported",28,"Organ Pipes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18847,24787,"AUS","Victorian SOP",2005,"Not Reported",28,"Organ Pipes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18848,24787,"AUS","Victorian SOP",2013,"Not Reported",28,"Organ Pipes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18849,456,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Orpheus Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18850,456,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Orpheus Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18851,354835,"AUS","Birdlife IBA",2008,"Not Reported",28,"Great Otway National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18852,23606,"AUS","NSW SOP",2005,"Not Reported",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18853,23606,"AUS","NSW SOP",2007,"Not Reported",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18854,23606,"AUS","NSW SOP",2010,"Not Reported",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18855,23606,"AUS","NSW SOP",2013,"Not Reported",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18856,356967,"AUS","NSW SOP",2005,"Not Reported",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18857,356967,"AUS","NSW SOP",2007,"Not Reported",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18858,356967,"AUS","NSW SOP",2010,"Not Reported",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18859,356967,"AUS","NSW SOP",2013,"Not Reported",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18860,23606,"AUS","NSW SOP",2004,"Not Reported",28,"Oxley Wild Rivers","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18861,356967,"AUS","NSW SOP",2004,"Not Reported",28,"Oxley Wild Rivers","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18862,555577244,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Oyala Thumotang (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18863,555576809,"AUS","NSW SOP",2013,"Not Reported",28,"Paddington","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18864,64015,"AUS","Victorian SOP",2010,"Not Reported",28,"Paddys Ranges","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18865,64015,"AUS","Victorian SOP",2005,"Not Reported",28,"Paddys Ranges","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18866,64015,"AUS","Victorian SOP",2013,"Not Reported",28,"Paddys Ranges","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18867,555543549,"AUS","NSW SOP",2007,"Not Reported",28,"Palm Grove","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18868,555543549,"AUS","NSW SOP",2010,"Not Reported",28,"Palm Grove","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18869,555543549,"AUS","NSW SOP",2013,"Not Reported",28,"Palm Grove","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18870,24175,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Palmerston Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18871,24175,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Palmerston Rocks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18872,1162,"AUS","Birdlife IBA",2008,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18873,1162,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18874,1162,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18875,309943,"AUS","Birdlife IBA",2008,"Not Reported",28,"Paluma Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18876,309943,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Paluma Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18877,309943,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Paluma Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18878,310167,"AUS","NSW SOP",2005,"Not Reported",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18879,310167,"AUS","NSW SOP",2007,"Not Reported",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18880,310167,"AUS","NSW SOP",2010,"Not Reported",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18881,310167,"AUS","NSW SOP",2013,"Not Reported",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18882,310167,"AUS","NSW SOP",2004,"Not Reported",28,"Pambalong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18883,313699,"AUS","NSW SOP",2005,"Not Reported",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18884,313699,"AUS","NSW SOP",2007,"Not Reported",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18885,313699,"AUS","NSW SOP",2010,"Not Reported",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18886,313699,"AUS","NSW SOP",2013,"Not Reported",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18887,313699,"AUS","NSW SOP",2004,"Not Reported",28,"Parma Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18888,356985,"AUS","NSW SOP",2005,"Not Reported",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18889,356985,"AUS","NSW SOP",2007,"Not Reported",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18890,356985,"AUS","NSW SOP",2010,"Not Reported",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18891,356985,"AUS","NSW SOP",2013,"Not Reported",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18892,356986,"AUS","NSW SOP",2005,"Not Reported",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18893,356986,"AUS","NSW SOP",2007,"Not Reported",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18894,356986,"AUS","NSW SOP",2010,"Not Reported",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18895,356986,"AUS","NSW SOP",2013,"Not Reported",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18896,356985,"AUS","NSW SOP",2004,"Not Reported",28,"Paroo-Darling","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18897,356986,"AUS","NSW SOP",2004,"Not Reported",28,"Paroo-Darling","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18898,356987,"AUS","NSW SOP",2005,"Not Reported",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18899,356987,"AUS","NSW SOP",2007,"Not Reported",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18900,356987,"AUS","NSW SOP",2010,"Not Reported",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18901,356987,"AUS","NSW SOP",2013,"Not Reported",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18902,356987,"AUS","NSW SOP",2004,"Not Reported",28,"Parr","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18903,356988,"AUS","NSW SOP",2005,"Not Reported",28,"Parramatta River","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18904,356988,"AUS","NSW SOP",2007,"Not Reported",28,"Parramatta River","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18905,356988,"AUS","NSW SOP",2010,"Not Reported",28,"Parramatta River","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18906,356988,"AUS","NSW SOP",2013,"Not Reported",28,"Parramatta River","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18907,313700,"AUS","NSW SOP",2005,"Not Reported",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18908,313700,"AUS","NSW SOP",2007,"Not Reported",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18909,313700,"AUS","NSW SOP",2010,"Not Reported",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18910,313700,"AUS","NSW SOP",2013,"Not Reported",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18911,313700,"AUS","NSW SOP",2004,"Not Reported",28,"Paupong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18912,24179,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Peak Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18913,24179,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Peak Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18914,311946,"AUS","NSW SOP",2005,"Not Reported",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18915,311946,"AUS","NSW SOP",2007,"Not Reported",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18916,311946,"AUS","NSW SOP",2010,"Not Reported",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18917,311946,"AUS","NSW SOP",2004,"Not Reported",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18918,311946,"AUS","NSW SOP",2013,"Not Reported",28,"Pee Dee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18919,498,"AUS","Birdlife IBA",2008,"Not Reported",28,"Peebinga","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18920,29784,"AUS","NSW SOP",2005,"Not Reported",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18921,29784,"AUS","NSW SOP",2007,"Not Reported",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18922,29784,"AUS","NSW SOP",2010,"Not Reported",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18923,29784,"AUS","NSW SOP",2013,"Not Reported",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18924,29784,"AUS","NSW SOP",2004,"Not Reported",28,"Pelican Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18925,309944,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Percy Isles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18926,309944,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Percy Isles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18927,555548599,"AUS","Birdlife IBA",2008,"Not Reported",28,"Norfolk Island (Phillip Island)","National Park (Commonwealth)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18928,357014,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Pidna","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18929,357014,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Pidna","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18930,1130,"AUS","NSW SOP",2005,"Not Reported",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18931,1130,"AUS","NSW SOP",2007,"Not Reported",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18932,1130,"AUS","NSW SOP",2010,"Not Reported",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18933,1130,"AUS","NSW SOP",2013,"Not Reported",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18934,1130,"AUS","NSW SOP",2004,"Not Reported",28,"Pilliga","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18935,555543571,"AUS","NSW SOP",2010,"Not Reported",28,"Pilliga","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18936,555543571,"AUS","NSW SOP",2013,"Not Reported",28,"Pilliga","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18937,555543572,"AUS","NSW SOP",2010,"Not Reported",28,"Pilliga","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18938,555543572,"AUS","NSW SOP",2013,"Not Reported",28,"Pilliga","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18939,555543573,"AUS","NSW SOP",2010,"Not Reported",28,"Pilliga East","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18941,555543573,"AUS","NSW SOP",2013,"Not Reported",28,"Pilliga East","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18942,555543574,"AUS","NSW SOP",2010,"Not Reported",28,"Pilliga West","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18943,555543574,"AUS","NSW SOP",2013,"Not Reported",28,"Pilliga West","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18944,555543575,"AUS","NSW SOP",2010,"Not Reported",28,"Pilliga West","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18945,555543575,"AUS","NSW SOP",2013,"Not Reported",28,"Pilliga West","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18946,555548700,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Pinnacles","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18947,126817,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Pioneer Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18948,126817,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Pioneer Peaks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18949,24189,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Pipeclay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18950,24189,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Pipeclay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18951,64022,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Piper Islands (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18952,64022,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Piper Islands (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18953,23612,"AUS","NSW SOP",2005,"Not Reported",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18954,23612,"AUS","NSW SOP",2007,"Not Reported",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18955,23612,"AUS","NSW SOP",2010,"Not Reported",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18956,23612,"AUS","NSW SOP",2013,"Not Reported",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18957,23612,"AUS","NSW SOP",2004,"Not Reported",28,"Pitt Town","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18958,310168,"AUS","NSW SOP",2005,"Not Reported",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18959,310168,"AUS","NSW SOP",2007,"Not Reported",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18960,310168,"AUS","NSW SOP",2010,"Not Reported",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18961,310168,"AUS","NSW SOP",2013,"Not Reported",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18962,310168,"AUS","NSW SOP",2004,"Not Reported",28,"Planchonella","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18963,126820,"AUS","Victorian SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18964,305439,"AUS","Victorian SOP",2010,"Not Reported",28,"Point Addis","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18965,305439,"AUS","Victorian SOP",2005,"Not Reported",28,"Point Addis","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18966,305439,"AUS","Victorian SOP",2013,"Not Reported",28,"Point Addis","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18967,305374,"AUS","Victorian SOP",2010,"Not Reported",28,"Point Cooke","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18968,305374,"AUS","Victorian SOP",2005,"Not Reported",28,"Point Cooke","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18969,305374,"AUS","Victorian SOP",2013,"Not Reported",28,"Point Cooke","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18970,305372,"AUS","Victorian SOP",2010,"Not Reported",28,"Point Danger","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18971,305372,"AUS","Victorian SOP",2005,"Not Reported",28,"Point Danger","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18972,305372,"AUS","Victorian SOP",2013,"Not Reported",28,"Point Danger","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18973,305438,"AUS","Victorian SOP",2010,"Not Reported",28,"Point Hicks","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18974,305438,"AUS","Victorian SOP",2005,"Not Reported",28,"Point Hicks","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18975,305438,"AUS","Victorian SOP",2013,"Not Reported",28,"Point Hicks","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18976,357026,"AUS","Victorian SOP",2010,"Not Reported",28,"Point Nepean National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18977,357026,"AUS","Victorian SOP",2013,"Not Reported",28,"Point Nepean National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18978,555576818,"AUS","NSW SOP",2013,"Not Reported",28,"Pomaderris","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18979,126826,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Poona","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18980,126826,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Poona","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18981,102556,"AUS","NSW SOP",2005,"Not Reported",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18982,102556,"AUS","NSW SOP",2007,"Not Reported",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18983,102556,"AUS","NSW SOP",2010,"Not Reported",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18984,102556,"AUS","NSW SOP",2013,"Not Reported",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18985,102556,"AUS","NSW SOP",2004,"Not Reported",28,"Popran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18986,441,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Porcupine Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18987,441,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Porcupine Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18988,2403,"AUS","Victorian SOP",2005,"Not Reported",28,"Port Campbell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18989,2403,"AUS","Victorian SOP",2010,"Not Reported",28,"Port Campbell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18990,2403,"AUS","Victorian SOP",2013,"Not Reported",28,"Port Campbell National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18991,305993,"AUS","Victorian SOP",2010,"Not Reported",28,"Port Phillip Heads","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18992,305993,"AUS","Victorian SOP",2005,"Not Reported",28,"Port Phillip Heads","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18993,305993,"AUS","Victorian SOP",2013,"Not Reported",28,"Port Phillip Heads","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18994,555548201,"AUS","NSW SOP",2010,"Not Reported",28,"Port Stephens - Great Lakes","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18995,465,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Possession Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18996,465,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Possession Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18997,314665,"AUS","Victorian SOP",2005,"Not Reported",28,"Pot Brook W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18998,64028,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Precipice","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +18999,64028,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Precipice","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19000,314898,"AUS","Birdlife IBA",2008,"Not Reported",28,"Prince Regent","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19001,314666,"AUS","Victorian SOP",2010,"Not Reported",28,"Princetown W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19002,314666,"AUS","Victorian SOP",2005,"Not Reported",28,"Princetown W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19004,314666,"AUS","Victorian SOP",2013,"Not Reported",28,"Princetown W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19006,555543528,"AUS","NSW SOP",2007,"Not Reported",28,"Prospect","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19007,555543528,"AUS","NSW SOP",2010,"Not Reported",28,"Prospect","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19008,555543528,"AUS","NSW SOP",2013,"Not Reported",28,"Prospect","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19009,314756,"AUS","Victorian SOP",2010,"Not Reported",28,"Providence Ponds F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19010,314756,"AUS","Victorian SOP",2005,"Not Reported",28,"Providence Ponds F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19011,314756,"AUS","Victorian SOP",2013,"Not Reported",28,"Providence Ponds F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19012,23614,"AUS","NSW SOP",2004,"Not Reported",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19013,23614,"AUS","NSW SOP",2005,"Not Reported",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19014,23614,"AUS","NSW SOP",2007,"Not Reported",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19015,23614,"AUS","NSW SOP",2010,"Not Reported",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19016,23614,"AUS","NSW SOP",2013,"Not Reported",28,"Pucawan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19017,23615,"AUS","NSW SOP",2005,"Not Reported",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19018,23615,"AUS","NSW SOP",2007,"Not Reported",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19019,23615,"AUS","NSW SOP",2010,"Not Reported",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19020,23615,"AUS","NSW SOP",2013,"Not Reported",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19021,23615,"AUS","NSW SOP",2004,"Not Reported",28,"Pulbah Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19022,23616,"AUS","NSW SOP",2005,"Not Reported",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19023,23616,"AUS","NSW SOP",2007,"Not Reported",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19024,23616,"AUS","NSW SOP",2010,"Not Reported",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19025,23616,"AUS","NSW SOP",2013,"Not Reported",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19026,23616,"AUS","NSW SOP",2004,"Not Reported",28,"Pulletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19027,555548588,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Pumicestone","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19028,900878,"AUS","WH Outlook Report",2014,"Not Reported",28,"Purnululu National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19029,23618,"AUS","NSW SOP",2005,"Not Reported",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19030,23618,"AUS","NSW SOP",2007,"Not Reported",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19031,23618,"AUS","NSW SOP",2010,"Not Reported",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19032,23618,"AUS","NSW SOP",2013,"Not Reported",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19033,23618,"AUS","NSW SOP",2004,"Not Reported",28,"Quanda","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19034,64031,"AUS","NSW SOP",2005,"Not Reported",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19035,64031,"AUS","NSW SOP",2007,"Not Reported",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19036,64031,"AUS","NSW SOP",2010,"Not Reported",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19037,64031,"AUS","NSW SOP",2013,"Not Reported",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19038,64031,"AUS","NSW SOP",2004,"Not Reported",28,"Queanbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19039,310169,"AUS","NSW SOP",2005,"Not Reported",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19040,310169,"AUS","NSW SOP",2007,"Not Reported",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19041,310169,"AUS","NSW SOP",2010,"Not Reported",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19042,310169,"AUS","NSW SOP",2013,"Not Reported",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19043,357053,"AUS","NSW SOP",2005,"Not Reported",28,"Queens Lake","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19044,357053,"AUS","NSW SOP",2007,"Not Reported",28,"Queens Lake","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19045,357053,"AUS","NSW SOP",2010,"Not Reported",28,"Queens Lake","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19046,357053,"AUS","NSW SOP",2013,"Not Reported",28,"Queens Lake","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19047,310169,"AUS","NSW SOP",2004,"Not Reported",28,"Queens Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19048,313701,"AUS","NSW SOP",2005,"Not Reported",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19049,313701,"AUS","NSW SOP",2007,"Not Reported",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19050,313701,"AUS","NSW SOP",2010,"Not Reported",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19051,313701,"AUS","NSW SOP",2013,"Not Reported",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19052,313701,"AUS","NSW SOP",2004,"Not Reported",28,"Quidong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19053,64032,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19054,555548463,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19055,555548463,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19056,310172,"AUS","NSW SOP",2005,"Not Reported",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19057,310172,"AUS","NSW SOP",2007,"Not Reported",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19058,310172,"AUS","NSW SOP",2010,"Not Reported",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19059,310172,"AUS","NSW SOP",2013,"Not Reported",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19060,310172,"AUS","NSW SOP",2004,"Not Reported",28,"Ramornie","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19061,24196,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Ravensbourne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19062,24196,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Ravensbourne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19063,310173,"AUS","NSW SOP",2005,"Not Reported",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19064,310173,"AUS","NSW SOP",2007,"Not Reported",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19065,310173,"AUS","NSW SOP",2010,"Not Reported",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19066,310173,"AUS","NSW SOP",2013,"Not Reported",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19067,310173,"AUS","NSW SOP",2004,"Not Reported",28,"Rawdon Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19068,23620,"AUS","NSW SOP",2005,"Not Reported",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19069,23620,"AUS","NSW SOP",2007,"Not Reported",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19070,23620,"AUS","NSW SOP",2010,"Not Reported",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19071,23620,"AUS","NSW SOP",2013,"Not Reported",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19072,23620,"AUS","NSW SOP",2004,"Not Reported",28,"Razorback","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19073,314899,"AUS","Birdlife IBA",2008,"Not Reported",28,"Recherche Archipelago","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19074,314757,"AUS","Victorian SOP",2010,"Not Reported",28,"Red Bluff F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19075,314757,"AUS","Victorian SOP",2013,"Not Reported",28,"Red Bluff F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19076,357095,"AUS","Victorian SOP",2010,"Not Reported",28,"Reedy Lake, Nagambie W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19077,357095,"AUS","Victorian SOP",2005,"Not Reported",28,"Reedy Lake, Nagambie W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19078,357095,"AUS","Victorian SOP",2013,"Not Reported",28,"Reedy Lake, Nagambie W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19079,24813,"AUS","Victorian SOP",2005,"Not Reported",28,"Reef Hills","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19080,24813,"AUS","Victorian SOP",2010,"Not Reported",28,"Reef Hills","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19081,24813,"AUS","Victorian SOP",2013,"Not Reported",28,"Reef Hills","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19082,308912,"AUS","Victorian SOP",2010,"Not Reported",28,"Reef Island and Bass River Mouth N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19083,308912,"AUS","Victorian SOP",2005,"Not Reported",28,"Reef Island and Bass River Mouth N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19084,308912,"AUS","Victorian SOP",2013,"Not Reported",28,"Reef Island and Bass River Mouth N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19085,23623,"AUS","NSW SOP",2005,"Not Reported",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19086,23623,"AUS","NSW SOP",2007,"Not Reported",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19087,23623,"AUS","NSW SOP",2010,"Not Reported",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19088,23623,"AUS","NSW SOP",2013,"Not Reported",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19089,23623,"AUS","NSW SOP",2004,"Not Reported",28,"Regatta Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19090,24197,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Reliance Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19091,24197,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Reliance Creek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19092,309945,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Repulse Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19093,309945,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Repulse Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19094,64038,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19095,310174,"AUS","NSW SOP",2005,"Not Reported",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19096,310174,"AUS","NSW SOP",2007,"Not Reported",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19097,310174,"AUS","NSW SOP",2010,"Not Reported",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19098,310174,"AUS","NSW SOP",2013,"Not Reported",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19099,310162,"AUS","NSW SOP",2004,"Not Reported",28,"Nymboi-Binderay","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19100,23624,"AUS","NSW SOP",2005,"Not Reported",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19101,23624,"AUS","NSW SOP",2007,"Not Reported",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19102,23624,"AUS","NSW SOP",2010,"Not Reported",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19103,23624,"AUS","NSW SOP",2013,"Not Reported",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19104,23624,"AUS","NSW SOP",2004,"Not Reported",28,"Richmond River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19105,305353,"AUS","Victorian SOP",2010,"Not Reported",28,"Ricketts Point","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19106,305353,"AUS","Victorian SOP",2005,"Not Reported",28,"Ricketts Point","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19107,305353,"AUS","Victorian SOP",2013,"Not Reported",28,"Ricketts Point","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19108,308916,"AUS","Victorian SOP",2010,"Not Reported",28,"Rigby Island G.L.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19109,64039,"AUS","NSW SOP",2005,"Not Reported",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19110,64039,"AUS","NSW SOP",2007,"Not Reported",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19111,64039,"AUS","NSW SOP",2010,"Not Reported",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19112,64039,"AUS","NSW SOP",2013,"Not Reported",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19113,64039,"AUS","NSW SOP",2004,"Not Reported",28,"Rileys Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19114,398,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19115,308919,"AUS","Victorian SOP",2005,"Not Reported",28,"River Murray Reserve","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19116,2024,"AUS","GOBI Survey",2006,"Not Reported",28,"Riverland","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19117,310175,"AUS","NSW SOP",2005,"Not Reported",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19118,310175,"AUS","NSW SOP",2007,"Not Reported",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19119,310175,"AUS","NSW SOP",2010,"Not Reported",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19120,310175,"AUS","NSW SOP",2013,"Not Reported",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19121,310175,"AUS","NSW SOP",2004,"Not Reported",28,"Robertson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19122,555576822,"AUS","NSW SOP",2013,"Not Reported",28,"Rocky Glen","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19123,23628,"AUS","NSW SOP",2005,"Not Reported",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19124,23628,"AUS","NSW SOP",2007,"Not Reported",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19125,23628,"AUS","NSW SOP",2010,"Not Reported",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19126,23628,"AUS","NSW SOP",2013,"Not Reported",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19127,23628,"AUS","NSW SOP",2004,"Not Reported",28,"Rodway","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19128,146693,"AUS","NSW SOP",2005,"Not Reported",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19129,146693,"AUS","NSW SOP",2007,"Not Reported",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19130,146693,"AUS","NSW SOP",2010,"Not Reported",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19131,146693,"AUS","NSW SOP",2013,"Not Reported",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19132,146693,"AUS","NSW SOP",2004,"Not Reported",28,"Round Hill","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19133,357137,"AUS","NSW SOP",2005,"Not Reported",28,"Rouse Hill","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19134,357137,"AUS","NSW SOP",2007,"Not Reported",28,"Rouse Hill","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19135,357137,"AUS","NSW SOP",2010,"Not Reported",28,"Rouse Hill","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19136,357137,"AUS","NSW SOP",2013,"Not Reported",28,"Rouse Hill","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19137,314671,"AUS","Victorian SOP",2010,"Not Reported",28,"Rowan Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19138,314671,"AUS","Victorian SOP",2005,"Not Reported",28,"Rowan Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19139,368,"AUS","NSW SOP",2005,"Not Reported",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19140,368,"AUS","NSW SOP",2007,"Not Reported",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19141,368,"AUS","NSW SOP",2010,"Not Reported",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19142,368,"AUS","NSW SOP",2013,"Not Reported",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19143,368,"AUS","NSW SOP",2004,"Not Reported",28,"Royal","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19144,126906,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Rundle Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19145,126906,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Rundle Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19146,555543597,"AUS","NSW SOP",2005,"Not Reported",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19147,555543597,"AUS","NSW SOP",2007,"Not Reported",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19148,555543597,"AUS","NSW SOP",2010,"Not Reported",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19149,555543597,"AUS","NSW SOP",2013,"Not Reported",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19150,555543597,"AUS","NSW SOP",2004,"Not Reported",28,"Running Creek","Nature Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19151,454,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Russell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19152,454,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Russell River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19153,314844,"AUS","Victorian SOP",2010,"Not Reported",28,"Sale Common N.C.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19154,314844,"AUS","Victorian SOP",2005,"Not Reported",28,"Sale Common N.C.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19155,314844,"AUS","Victorian SOP",2013,"Not Reported",28,"Sale Common N.C.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19156,357150,"AUS","NSW SOP",2005,"Not Reported",28,"Saltwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19157,357150,"AUS","NSW SOP",2007,"Not Reported",28,"Saltwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19158,357150,"AUS","NSW SOP",2010,"Not Reported",28,"Saltwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19159,357150,"AUS","NSW SOP",2013,"Not Reported",28,"Saltwater","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19160,310178,"AUS","NSW SOP",2005,"Not Reported",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19161,310178,"AUS","NSW SOP",2007,"Not Reported",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19162,310178,"AUS","NSW SOP",2010,"Not Reported",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19163,310178,"AUS","NSW SOP",2013,"Not Reported",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19164,310178,"AUS","NSW SOP",2004,"Not Reported",28,"Saltwater Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19165,64046,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Sandbanks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19166,64046,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Sandbanks","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19167,126842,"AUS","Birdlife IBA",2008,"Not Reported",28,"Quagering","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19168,555576825,"AUS","NSW SOP",2013,"Not Reported",28,"Sappa Bulga","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19169,24214,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Sarabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19170,24214,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Sarabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19171,555543603,"AUS","NSW SOP",2007,"Not Reported",28,"Saratoga Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19172,555543603,"AUS","NSW SOP",2010,"Not Reported",28,"Saratoga Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19173,555543603,"AUS","NSW SOP",2013,"Not Reported",28,"Saratoga Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19174,308933,"AUS","Victorian SOP",2005,"Not Reported",28,"Sassafras Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19175,308933,"AUS","Victorian SOP",2010,"Not Reported",28,"Sassafras Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19176,308933,"AUS","Victorian SOP",2013,"Not Reported",28,"Sassafras Creek N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19177,126921,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Saunders Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19178,126921,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Saunders Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19179,10591,"AUS","NSW SOP",2005,"Not Reported",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19180,10591,"AUS","NSW SOP",2007,"Not Reported",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19181,10591,"AUS","NSW SOP",2010,"Not Reported",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19182,10591,"AUS","NSW SOP",2013,"Not Reported",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19183,10591,"AUS","NSW SOP",2004,"Not Reported",28,"Scabby Range","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19184,310179,"AUS","NSW SOP",2005,"Not Reported",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19185,310179,"AUS","NSW SOP",2007,"Not Reported",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19186,310179,"AUS","NSW SOP",2010,"Not Reported",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19187,310179,"AUS","NSW SOP",2013,"Not Reported",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19189,555543605,"AUS","NSW SOP",2007,"Not Reported",28,"Scone Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19190,555543605,"AUS","NSW SOP",2010,"Not Reported",28,"Scone Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19191,555543605,"AUS","NSW SOP",2013,"Not Reported",28,"Scone Mountain","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19192,24450,"AUS","NSW SOP",2005,"Not Reported",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19193,24450,"AUS","NSW SOP",2007,"Not Reported",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19194,24450,"AUS","NSW SOP",2010,"Not Reported",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19195,24450,"AUS","NSW SOP",2013,"Not Reported",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19196,24450,"AUS","NSW SOP",2004,"Not Reported",28,"Scott","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19197,23635,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19198,23635,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19199,23635,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19200,555576830,"AUS","NSW SOP",2013,"Not Reported",28,"Sea Acres","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19201,23635,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19202,23636,"AUS","NSW SOP",2005,"Not Reported",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19203,23636,"AUS","NSW SOP",2007,"Not Reported",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19204,23636,"AUS","NSW SOP",2010,"Not Reported",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19205,23636,"AUS","NSW SOP",2013,"Not Reported",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19206,23636,"AUS","NSW SOP",2004,"Not Reported",28,"Seaham Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19207,23637,"AUS","NSW SOP",2005,"Not Reported",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19208,23637,"AUS","NSW SOP",2007,"Not Reported",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19209,23637,"AUS","NSW SOP",2004,"Not Reported",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19210,23637,"AUS","NSW SOP",2010,"Not Reported",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19211,23637,"AUS","NSW SOP",2013,"Not Reported",28,"Seal Rocks","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19212,23640,"AUS","NSW SOP",2005,"Not Reported",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19213,23640,"AUS","NSW SOP",2007,"Not Reported",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19214,23640,"AUS","NSW SOP",2010,"Not Reported",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19215,23640,"AUS","NSW SOP",2013,"Not Reported",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19216,23640,"AUS","NSW SOP",2004,"Not Reported",28,"Serpentine","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19217,555576832,"AUS","NSW SOP",2013,"Not Reported",28,"Serpentine Ridge","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19218,314848,"AUS","Victorian SOP",2010,"Not Reported",28,"Seven Creeks W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19219,314848,"AUS","Victorian SOP",2005,"Not Reported",28,"Seven Creeks W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19220,314848,"AUS","Victorian SOP",2013,"Not Reported",28,"Seven Creeks W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19221,9468,"AUS","NSW SOP",2005,"Not Reported",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19222,9468,"AUS","NSW SOP",2007,"Not Reported",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19223,9468,"AUS","NSW SOP",2010,"Not Reported",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19224,9468,"AUS","NSW SOP",2013,"Not Reported",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19225,9468,"AUS","NSW SOP",2004,"Not Reported",28,"Seven Mile Beach","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19226,1154,"AUS","NSW SOP",2005,"Not Reported",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19227,1154,"AUS","NSW SOP",2007,"Not Reported",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19228,1154,"AUS","NSW SOP",2010,"Not Reported",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19229,1154,"AUS","NSW SOP",2013,"Not Reported",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19230,1154,"AUS","NSW SOP",2004,"Not Reported",28,"Severn River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19231,24829,"AUS","Birdlife IBA",2008,"Not Reported",28,"Shallow Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19232,24829,"AUS","Victorian SOP",2010,"Not Reported",28,"Shallow Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19233,24829,"AUS","Victorian SOP",2005,"Not Reported",28,"Shallow Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19234,24829,"AUS","Victorian SOP",2013,"Not Reported",28,"Shallow Inlet Marine and Coastal Park","National Parks Act Schedule 4 park or reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19235,67724,"AUS","WH Outlook Report",2014,"Not Reported",28,"Shark Bay, Western Australia","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19236,555543606,"AUS","NSW SOP",2010,"Not Reported",28,"Shark Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19237,555543606,"AUS","NSW SOP",2013,"Not Reported",28,"Shark Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19238,1148,"AUS","NSW SOP",2005,"Not Reported",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19239,1148,"AUS","NSW SOP",2007,"Not Reported",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19240,1148,"AUS","NSW SOP",2010,"Not Reported",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19241,1148,"AUS","NSW SOP",2013,"Not Reported",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19242,1148,"AUS","NSW SOP",2004,"Not Reported",28,"Sherwood","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19243,12963,"AUS","NSW SOP",2010,"Not Reported",28,"Shiprock","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19244,311889,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19245,310182,"AUS","NSW SOP",2005,"Not Reported",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19246,310182,"AUS","NSW SOP",2007,"Not Reported",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19247,310182,"AUS","NSW SOP",2010,"Not Reported",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19248,310182,"AUS","NSW SOP",2013,"Not Reported",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19249,310182,"AUS","NSW SOP",2004,"Not Reported",28,"Single","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19250,64055,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Sir Charles Hardy Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19251,64055,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Sir Charles Hardy Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19252,310181,"AUS","NSW SOP",2005,"Not Reported",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19253,310181,"AUS","NSW SOP",2007,"Not Reported",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19254,310181,"AUS","NSW SOP",2010,"Not Reported",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19255,310181,"AUS","NSW SOP",2013,"Not Reported",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19256,310181,"AUS","NSW SOP",2004,"Not Reported",28,"Skillion","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19257,24226,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Smith Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19258,24226,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Smith Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19259,555543594,"AUS","NSW SOP",2010,"Not Reported",28,"Smiths Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19260,555543594,"AUS","NSW SOP",2013,"Not Reported",28,"Smiths Lake","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19261,459,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Snake Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19262,459,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Snake Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19263,23644,"AUS","NSW SOP",2005,"Not Reported",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19264,23644,"AUS","NSW SOP",2007,"Not Reported",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19265,23644,"AUS","NSW SOP",2010,"Not Reported",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19266,23644,"AUS","NSW SOP",2013,"Not Reported",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19267,23644,"AUS","NSW SOP",2004,"Not Reported",28,"Snapper Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19268,64184,"AUS","NSW SOP",2005,"Not Reported",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19269,64184,"AUS","NSW SOP",2007,"Not Reported",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19270,64184,"AUS","NSW SOP",2010,"Not Reported",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19271,64184,"AUS","NSW SOP",2004,"Not Reported",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19272,64184,"AUS","NSW SOP",2013,"Not Reported",28,"Snows Gully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19273,314100,"AUS","Victorian SOP",2010,"Not Reported",28,"Snowy River National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19274,314100,"AUS","Victorian SOP",2005,"Not Reported",28,"Snowy River National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19275,314100,"AUS","Victorian SOP",2013,"Not Reported",28,"Snowy River National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19276,64056,"AUS","NSW SOP",2010,"Not Reported",28,"Solitary Islands","Marine Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19277,555543596,"AUS","NSW SOP",2010,"Not Reported",28,"Somerton","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19278,555543596,"AUS","NSW SOP",2013,"Not Reported",28,"Somerton","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19279,126973,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"South Cumberland Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19280,126973,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"South Cumberland Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19281,310183,"AUS","NSW SOP",2005,"Not Reported",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19282,310183,"AUS","NSW SOP",2007,"Not Reported",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19283,310183,"AUS","NSW SOP",2010,"Not Reported",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19284,310183,"AUS","NSW SOP",2013,"Not Reported",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19285,310174,"AUS","NSW SOP",2004,"Not Reported",28,"Richmond Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19286,12859,"AUS","NSW SOP",2005,"Not Reported",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19287,12859,"AUS","NSW SOP",2007,"Not Reported",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19288,12859,"AUS","NSW SOP",2010,"Not Reported",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19289,12859,"AUS","NSW SOP",2013,"Not Reported",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19290,12859,"AUS","NSW SOP",2004,"Not Reported",28,"South West Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19291,555576834,"AUS","NSW SOP",2013,"Not Reported",28,"South West Woodland","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19294,309952,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Southern Moreton Bay Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19295,309952,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Southern Moreton Bay Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19296,126987,"AUS","Tasmanian WHA",2004,"Not Reported",28,"Southwest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19297,426,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Southwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19298,426,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Southwood","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19299,23645,"AUS","NSW SOP",2005,"Not Reported",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19300,23645,"AUS","NSW SOP",2007,"Not Reported",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19301,23645,"AUS","NSW SOP",2010,"Not Reported",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19302,23645,"AUS","NSW SOP",2013,"Not Reported",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19303,23645,"AUS","NSW SOP",2004,"Not Reported",28,"Spectacle Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19304,23646,"AUS","NSW SOP",2005,"Not Reported",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19305,23646,"AUS","NSW SOP",2007,"Not Reported",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19306,23646,"AUS","NSW SOP",2010,"Not Reported",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19307,23646,"AUS","NSW SOP",2013,"Not Reported",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19308,23646,"AUS","NSW SOP",2004,"Not Reported",28,"Split Solitary Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19309,126991,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Springbrook","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19310,126991,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Springbrook","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19311,357233,"AUS","Victorian SOP",2010,"Not Reported",28,"Kara Kara National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19312,357233,"AUS","Victorian SOP",2005,"Not Reported",28,"Kara Kara National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19313,357233,"AUS","Victorian SOP",2013,"Not Reported",28,"Kara Kara National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19314,24229,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"St Helena Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19315,24229,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"St Helena Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19316,400,"AUS","Birdlife IBA",2008,"Not Reported",28,"Staaten River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19317,400,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Staaten River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19318,400,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Staaten River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19319,424,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19320,424,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19321,356817,"AUS","Victorian SOP",2005,"Not Reported",28,"Mount Steiglitz S.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19322,562,"AUS","Birdlife IBA",2008,"Not Reported",28,"Stirling Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19323,357248,"AUS","Victorian SOP",2005,"Not Reported",28,"Stokes River (3) SS.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19324,310184,"AUS","NSW SOP",2005,"Not Reported",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19325,310184,"AUS","NSW SOP",2007,"Not Reported",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19326,310184,"AUS","NSW SOP",2010,"Not Reported",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19327,310184,"AUS","NSW SOP",2013,"Not Reported",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19328,310184,"AUS","NSW SOP",2004,"Not Reported",28,"Stony Batter Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19329,127010,"AUS","NSW SOP",2005,"Not Reported",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19330,127010,"AUS","NSW SOP",2007,"Not Reported",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19331,127010,"AUS","NSW SOP",2010,"Not Reported",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19332,127010,"AUS","NSW SOP",2013,"Not Reported",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19333,127010,"AUS","NSW SOP",2004,"Not Reported",28,"Stony Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19334,23650,"AUS","NSW SOP",2005,"Not Reported",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19335,23650,"AUS","NSW SOP",2007,"Not Reported",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19336,23650,"AUS","NSW SOP",2013,"Not Reported",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19337,23650,"AUS","NSW SOP",2010,"Not Reported",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19338,23650,"AUS","NSW SOP",2004,"Not Reported",28,"Stormpetrel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19339,23651,"AUS","NSW SOP",2005,"Not Reported",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19340,23651,"AUS","NSW SOP",2007,"Not Reported",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19341,23651,"AUS","NSW SOP",2010,"Not Reported",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19342,23651,"AUS","NSW SOP",2013,"Not Reported",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19343,23651,"AUS","NSW SOP",2004,"Not Reported",28,"Stotts Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19344,314760,"AUS","Victorian SOP",2005,"Not Reported",28,"Stradbroke F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19345,313782,"AUS","NSW SOP",2005,"Not Reported",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19346,313782,"AUS","NSW SOP",2007,"Not Reported",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19347,313782,"AUS","NSW SOP",2010,"Not Reported",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19348,313782,"AUS","NSW SOP",2013,"Not Reported",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19349,313782,"AUS","NSW SOP",2004,"Not Reported",28,"Strike-a-Light","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19350,354,"AUS","NSW SOP",2005,"Not Reported",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19351,354,"AUS","NSW SOP",2007,"Not Reported",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19352,354,"AUS","NSW SOP",2010,"Not Reported",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19353,354,"AUS","NSW SOP",2013,"Not Reported",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19354,354,"AUS","NSW SOP",2004,"Not Reported",28,"Sturt","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19355,555543620,"AUS","NSW SOP",2010,"Not Reported",28,"Sugarloaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19356,555543620,"AUS","NSW SOP",2013,"Not Reported",28,"Sugarloaf","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19357,311892,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Sundown","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19358,311892,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Sundown","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19359,23654,"AUS","NSW SOP",2005,"Not Reported",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19360,23654,"AUS","NSW SOP",2007,"Not Reported",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19361,23654,"AUS","NSW SOP",2010,"Not Reported",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19362,23654,"AUS","NSW SOP",2004,"Not Reported",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19363,23654,"AUS","NSW SOP",2013,"Not Reported",28,"Susan Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19364,357275,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Swain Reefs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19365,357275,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Swain Reefs","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19366,308968,"AUS","Victorian SOP",2005,"Not Reported",28,"Swan Bay - Edwards Point W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19367,308968,"AUS","Victorian SOP",2010,"Not Reported",28,"Swan Bay - Edwards Point W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19368,308968,"AUS","Victorian SOP",2013,"Not Reported",28,"Swan Bay - Edwards Point W.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19369,9469,"AUS","NSW SOP",2004,"Not Reported",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19370,9469,"AUS","NSW SOP",2005,"Not Reported",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19371,9469,"AUS","NSW SOP",2007,"Not Reported",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19374,9469,"AUS","NSW SOP",2013,"Not Reported",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19375,9469,"AUS","NSW SOP",2010,"Not Reported",28,"Sydney Harbour","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19377,310185,"AUS","NSW SOP",2005,"Not Reported",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19378,310185,"AUS","NSW SOP",2007,"Not Reported",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19379,310185,"AUS","NSW SOP",2010,"Not Reported",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19380,310185,"AUS","NSW SOP",2013,"Not Reported",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19381,310185,"AUS","NSW SOP",2004,"Not Reported",28,"Tabbimoble Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19382,357285,"AUS","Victorian SOP",2005,"Not Reported",28,"Tabilk Lagoon W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19383,23655,"AUS","NSW SOP",2005,"Not Reported",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19384,23655,"AUS","NSW SOP",2007,"Not Reported",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19385,23655,"AUS","NSW SOP",2010,"Not Reported",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19386,23655,"AUS","NSW SOP",2004,"Not Reported",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19387,23655,"AUS","NSW SOP",2013,"Not Reported",28,"Tabletop","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19388,310186,"AUS","NSW SOP",2005,"Not Reported",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19389,310186,"AUS","NSW SOP",2007,"Not Reported",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19390,310186,"AUS","NSW SOP",2010,"Not Reported",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19392,310186,"AUS","NSW SOP",2013,"Not Reported",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19394,357286,"AUS","NSW SOP",2005,"Not Reported",28,"Talawahl","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19395,357286,"AUS","NSW SOP",2007,"Not Reported",28,"Talawahl","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19396,310186,"AUS","NSW SOP",2004,"Not Reported",28,"Talawahl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19397,357286,"AUS","NSW SOP",2004,"Not Reported",28,"Talawahl","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19398,310187,"AUS","NSW SOP",2005,"Not Reported",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19399,310187,"AUS","NSW SOP",2007,"Not Reported",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19400,310187,"AUS","NSW SOP",2010,"Not Reported",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19401,310187,"AUS","NSW SOP",2013,"Not Reported",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19402,357289,"AUS","NSW SOP",2005,"Not Reported",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19403,357289,"AUS","NSW SOP",2007,"Not Reported",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19404,357289,"AUS","NSW SOP",2010,"Not Reported",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19405,357289,"AUS","NSW SOP",2013,"Not Reported",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19406,310187,"AUS","NSW SOP",2004,"Not Reported",28,"Tallaganda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19407,357289,"AUS","NSW SOP",2004,"Not Reported",28,"Tallaganda","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19408,310189,"AUS","NSW SOP",2005,"Not Reported",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19409,310189,"AUS","NSW SOP",2007,"Not Reported",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19410,310189,"AUS","NSW SOP",2010,"Not Reported",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19411,310189,"AUS","NSW SOP",2004,"Not Reported",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19412,310189,"AUS","NSW SOP",2013,"Not Reported",28,"Tallawudjah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19413,311868,"AUS","Birdlife IBA",2008,"Not Reported",28,"Tamar","Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19414,64065,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Tamborine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19415,64065,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Tamborine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19416,314681,"AUS","Victorian SOP",2005,"Not Reported",28,"Tang Tang Swamp W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19417,310188,"AUS","NSW SOP",2005,"Not Reported",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19418,310188,"AUS","NSW SOP",2007,"Not Reported",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19419,310188,"AUS","NSW SOP",2010,"Not Reported",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19420,310188,"AUS","NSW SOP",2013,"Not Reported",28,"Tapin Tops","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19421,310052,"AUS","NSW SOP",2004,"Not Reported",28,"Cunnawarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19422,310190,"AUS","NSW SOP",2005,"Not Reported",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19423,310190,"AUS","NSW SOP",2007,"Not Reported",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19424,310190,"AUS","NSW SOP",2010,"Not Reported",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19425,310190,"AUS","NSW SOP",2013,"Not Reported",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19426,310190,"AUS","NSW SOP",2004,"Not Reported",28,"Tapitallee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19427,310191,"AUS","NSW SOP",2005,"Not Reported",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19428,310191,"AUS","NSW SOP",2007,"Not Reported",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19429,310191,"AUS","NSW SOP",2010,"Not Reported",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19430,310191,"AUS","NSW SOP",2013,"Not Reported",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19431,310191,"AUS","NSW SOP",2004,"Not Reported",28,"Tarawi","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19432,555543583,"AUS","NSW SOP",2007,"Not Reported",28,"Taringa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19433,555543583,"AUS","NSW SOP",2010,"Not Reported",28,"Taringa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19434,555543583,"AUS","NSW SOP",2013,"Not Reported",28,"Taringa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19435,555543583,"AUS","NSW SOP",2004,"Not Reported",28,"Taringa","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19436,9470,"AUS","NSW SOP",2005,"Not Reported",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19437,9470,"AUS","NSW SOP",2007,"Not Reported",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19438,9470,"AUS","NSW SOP",2010,"Not Reported",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19439,9470,"AUS","NSW SOP",2013,"Not Reported",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19440,9470,"AUS","NSW SOP",2004,"Not Reported",28,"Tarlo River","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19441,309955,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Tarong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19442,309955,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Tarong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19443,24845,"AUS","Victorian SOP",2005,"Not Reported",28,"Tarra-Bulga National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19444,24845,"AUS","Victorian SOP",2010,"Not Reported",28,"Tarra-Bulga National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19445,24845,"AUS","Victorian SOP",2013,"Not Reported",28,"Tarra-Bulga National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19446,5000,"AUS","WH Outlook Report",2014,"Not Reported",28,"Tasmanian Wilderness","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19447,127039,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19448,127039,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19449,555548649,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19450,555548649,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19451,311828,"AUS","Victorian SOP",2005,"Not Reported",28,"Terrick Terrick National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19452,311828,"AUS","Victorian SOP",2010,"Not Reported",28,"Terrick Terrick National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19453,311828,"AUS","Victorian SOP",2013,"Not Reported",28,"Terrick Terrick National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19454,555548808,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19455,555548676,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19456,555548706,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Tewantin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19457,555576844,"AUS","NSW SOP",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19458,305369,"AUS","Victorian SOP",2010,"Not Reported",28,"The Arches","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19459,305369,"AUS","Victorian SOP",2005,"Not Reported",28,"The Arches","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19460,305369,"AUS","Victorian SOP",2013,"Not Reported",28,"The Arches","Marine Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19461,1150,"AUS","NSW SOP",2005,"Not Reported",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19462,1150,"AUS","NSW SOP",2007,"Not Reported",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19463,1150,"AUS","NSW SOP",2010,"Not Reported",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19464,1150,"AUS","NSW SOP",2013,"Not Reported",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19465,1150,"AUS","NSW SOP",2004,"Not Reported",28,"The Basin","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19466,310192,"AUS","NSW SOP",2005,"Not Reported",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19467,310192,"AUS","NSW SOP",2007,"Not Reported",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19468,310192,"AUS","NSW SOP",2010,"Not Reported",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19469,310192,"AUS","NSW SOP",2013,"Not Reported",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19470,310192,"AUS","NSW SOP",2004,"Not Reported",28,"The Castles","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19471,357332,"AUS","NSW SOP",2005,"Not Reported",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19472,357332,"AUS","NSW SOP",2007,"Not Reported",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19473,357332,"AUS","NSW SOP",2010,"Not Reported",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19474,357332,"AUS","NSW SOP",2013,"Not Reported",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19475,357332,"AUS","NSW SOP",2004,"Not Reported",28,"The Cells","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19476,23659,"AUS","NSW SOP",2005,"Not Reported",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19477,23659,"AUS","NSW SOP",2007,"Not Reported",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19478,23659,"AUS","NSW SOP",2010,"Not Reported",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19479,23659,"AUS","NSW SOP",2013,"Not Reported",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19480,23659,"AUS","NSW SOP",2004,"Not Reported",28,"The Charcoal Tank","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19481,311950,"AUS","NSW SOP",2005,"Not Reported",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19482,311950,"AUS","NSW SOP",2007,"Not Reported",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19483,311950,"AUS","NSW SOP",2010,"Not Reported",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19484,311950,"AUS","NSW SOP",2013,"Not Reported",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19485,311950,"AUS","NSW SOP",2004,"Not Reported",28,"The Glen","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19486,549,"AUS","Victorian SOP",2010,"Not Reported",28,"The Lakes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19487,549,"AUS","Victorian SOP",2005,"Not Reported",28,"The Lakes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19488,549,"AUS","Victorian SOP",2013,"Not Reported",28,"The Lakes National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19489,24247,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"The Palms","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19490,24247,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"The Palms","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19491,357341,"AUS","Victorian SOP",2010,"Not Reported",28,"The Pines F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19492,357341,"AUS","Victorian SOP",2013,"Not Reported",28,"The Pines F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19493,23660,"AUS","NSW SOP",2005,"Not Reported",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19494,23660,"AUS","NSW SOP",2007,"Not Reported",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19495,23660,"AUS","NSW SOP",2010,"Not Reported",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19496,23660,"AUS","NSW SOP",2013,"Not Reported",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19497,23660,"AUS","NSW SOP",2004,"Not Reported",28,"The Rock","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19498,314852,"AUS","Victorian SOP",2005,"Not Reported",28,"The Spit W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19499,314852,"AUS","Victorian SOP",2010,"Not Reported",28,"The Spit W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19500,314852,"AUS","Victorian SOP",2013,"Not Reported",28,"The Spit W.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19501,9471,"AUS","NSW SOP",2005,"Not Reported",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19502,9471,"AUS","NSW SOP",2007,"Not Reported",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19503,9471,"AUS","NSW SOP",2010,"Not Reported",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19504,9471,"AUS","NSW SOP",2013,"Not Reported",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19505,9471,"AUS","NSW SOP",2004,"Not Reported",28,"Thirlmere Lakes","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19506,309956,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Three Islands Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19507,309956,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Three Islands Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19508,64070,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Thrushton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19509,64070,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Thrushton","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19510,555543590,"AUS","NSW SOP",2010,"Not Reported",28,"Tilligerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19511,555543590,"AUS","NSW SOP",2013,"Not Reported",28,"Tilligerry","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19512,555543591,"AUS","NSW SOP",2013,"Not Reported",28,"Tilligerry","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19513,310193,"AUS","NSW SOP",2004,"Not Reported",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19514,555543591,"AUS","NSW SOP",2010,"Not Reported",28,"Tilligerry","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19515,310193,"AUS","NSW SOP",2005,"Not Reported",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19516,310193,"AUS","NSW SOP",2007,"Not Reported",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19517,310193,"AUS","NSW SOP",2010,"Not Reported",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19518,310193,"AUS","NSW SOP",2013,"Not Reported",28,"Tilligerry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19519,555543592,"AUS","NSW SOP",2010,"Not Reported",28,"Timmallallie","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19520,555543592,"AUS","NSW SOP",2013,"Not Reported",28,"Timmallallie","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19521,357359,"AUS","NSW SOP",2005,"Not Reported",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19522,357359,"AUS","NSW SOP",2007,"Not Reported",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19523,357359,"AUS","NSW SOP",2010,"Not Reported",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19524,357359,"AUS","NSW SOP",2004,"Not Reported",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19525,357359,"AUS","NSW SOP",2013,"Not Reported",28,"Timbarra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19526,314762,"AUS","Victorian SOP",2013,"Not Reported",28,"Timberoo F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19527,310194,"AUS","NSW SOP",2005,"Not Reported",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19528,310194,"AUS","NSW SOP",2007,"Not Reported",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19529,310194,"AUS","NSW SOP",2010,"Not Reported",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19530,310194,"AUS","NSW SOP",2013,"Not Reported",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19531,310194,"AUS","NSW SOP",2004,"Not Reported",28,"Tinderry","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19532,555576850,"AUS","NSW SOP",2013,"Not Reported",28,"Tingha Plateau","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19533,64185,"AUS","NSW SOP",2005,"Not Reported",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19534,64185,"AUS","NSW SOP",2007,"Not Reported",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19535,64185,"AUS","NSW SOP",2010,"Not Reported",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19536,64185,"AUS","NSW SOP",2013,"Not Reported",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19537,64185,"AUS","NSW SOP",2004,"Not Reported",28,"Tingira Heights","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19538,555543593,"AUS","NSW SOP",2010,"Not Reported",28,"Tinkrameanah","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19539,555543593,"AUS","NSW SOP",2013,"Not Reported",28,"Tinkrameanah","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19540,23665,"AUS","NSW SOP",2005,"Not Reported",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19541,23665,"AUS","NSW SOP",2007,"Not Reported",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19542,23665,"AUS","NSW SOP",2010,"Not Reported",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19543,23665,"AUS","NSW SOP",2013,"Not Reported",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19544,23665,"AUS","NSW SOP",2004,"Not Reported",28,"Tollgate Islands","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19545,23666,"AUS","NSW SOP",2005,"Not Reported",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19546,23666,"AUS","NSW SOP",2007,"Not Reported",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19547,23666,"AUS","NSW SOP",2010,"Not Reported",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19548,23666,"AUS","NSW SOP",2013,"Not Reported",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19549,23666,"AUS","NSW SOP",2004,"Not Reported",28,"Tollingo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19550,357369,"AUS","Victorian SOP",2005,"Not Reported",28,"Tomahawk Creek","Reference Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19551,310195,"AUS","NSW SOP",2005,"Not Reported",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19552,310195,"AUS","NSW SOP",2007,"Not Reported",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19553,310195,"AUS","NSW SOP",2010,"Not Reported",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19554,310195,"AUS","NSW SOP",2013,"Not Reported",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19555,310195,"AUS","NSW SOP",2004,"Not Reported",28,"Tomalla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19556,23667,"AUS","NSW SOP",2005,"Not Reported",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19557,23667,"AUS","NSW SOP",2007,"Not Reported",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19558,23667,"AUS","NSW SOP",2010,"Not Reported",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19559,23667,"AUS","NSW SOP",2013,"Not Reported",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19560,23667,"AUS","NSW SOP",2004,"Not Reported",28,"Tomaree","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19561,102558,"AUS","NSW SOP",2005,"Not Reported",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19562,102558,"AUS","NSW SOP",2007,"Not Reported",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19563,102558,"AUS","NSW SOP",2010,"Not Reported",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19564,102558,"AUS","NSW SOP",2013,"Not Reported",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19565,102558,"AUS","NSW SOP",2004,"Not Reported",28,"Tooloom","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19566,127091,"AUS","Victorian SOP",2005,"Not Reported",28,"Tooloy F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19567,309033,"AUS","Victorian SOP",2010,"Not Reported",28,"Tooloy-Lake Mundi W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19568,309033,"AUS","Victorian SOP",2005,"Not Reported",28,"Tooloy-Lake Mundi W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19569,309033,"AUS","Victorian SOP",2013,"Not Reported",28,"Tooloy-Lake Mundi W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19570,127094,"AUS","NSW SOP",2005,"Not Reported",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19571,127094,"AUS","NSW SOP",2007,"Not Reported",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19572,127094,"AUS","NSW SOP",2010,"Not Reported",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19574,127094,"AUS","NSW SOP",2013,"Not Reported",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19575,357382,"AUS","NSW SOP",2005,"Not Reported",28,"Toonumbar","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19576,357382,"AUS","NSW SOP",2007,"Not Reported",28,"Toonumbar","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19577,127094,"AUS","NSW SOP",2004,"Not Reported",28,"Toonumbar","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19578,357382,"AUS","NSW SOP",2004,"Not Reported",28,"Toonumbar","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19580,555576851,"AUS","NSW SOP",2010,"Not Reported",28,"Toorale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19581,555576851,"AUS","NSW SOP",2013,"Not Reported",28,"Toorale","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19582,555576852,"AUS","NSW SOP",2013,"Not Reported",28,"Toorale","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19583,24257,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Topaz Road","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19584,24257,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Topaz Road","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19585,357386,"AUS","NSW SOP",2005,"Not Reported",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19586,357386,"AUS","NSW SOP",2007,"Not Reported",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19587,357386,"AUS","NSW SOP",2010,"Not Reported",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19588,357386,"AUS","NSW SOP",2013,"Not Reported",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19589,357386,"AUS","NSW SOP",2004,"Not Reported",28,"Torrington","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19590,313681,"AUS","NSW SOP",2005,"Not Reported",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19591,313681,"AUS","NSW SOP",2007,"Not Reported",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19592,313681,"AUS","NSW SOP",2010,"Not Reported",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19593,313681,"AUS","NSW SOP",2013,"Not Reported",28,"Towarri","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19594,310183,"AUS","NSW SOP",2004,"Not Reported",28,"South East Forest","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19595,314685,"AUS","Victorian SOP",2005,"Not Reported",28,"Tower Hill W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19596,314685,"AUS","Victorian SOP",2010,"Not Reported",28,"Tower Hill W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19597,314685,"AUS","Victorian SOP",2013,"Not Reported",28,"Tower Hill W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19598,310196,"AUS","NSW SOP",2005,"Not Reported",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19599,310196,"AUS","NSW SOP",2007,"Not Reported",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19600,310196,"AUS","NSW SOP",2010,"Not Reported",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19601,310196,"AUS","NSW SOP",2013,"Not Reported",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19602,310196,"AUS","NSW SOP",2004,"Not Reported",28,"Towibakh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19603,12965,"AUS","NSW SOP",2005,"Not Reported",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19604,12965,"AUS","NSW SOP",2007,"Not Reported",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19605,12965,"AUS","NSW SOP",2010,"Not Reported",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19606,12965,"AUS","NSW SOP",2013,"Not Reported",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19607,23670,"AUS","NSW SOP",2010,"Not Reported",28,"Towra Point","Aquatic Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19608,12965,"AUS","NSW SOP",2004,"Not Reported",28,"Towra Point","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19609,314855,"AUS","Victorian SOP",2005,"Not Reported",28,"Tragowel Swamp N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19610,127108,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Tregole","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19611,127108,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Tregole","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19612,555543623,"AUS","NSW SOP",2010,"Not Reported",28,"Trinkey","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19613,555543623,"AUS","NSW SOP",2013,"Not Reported",28,"Trinkey","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19614,310197,"AUS","NSW SOP",2005,"Not Reported",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19615,310197,"AUS","NSW SOP",2007,"Not Reported",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19616,310197,"AUS","NSW SOP",2010,"Not Reported",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19617,310197,"AUS","NSW SOP",2013,"Not Reported",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19618,310197,"AUS","NSW SOP",2004,"Not Reported",28,"Triplarina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19619,127111,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Triunia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19620,127111,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Triunia","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19621,555548638,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Tuchekoi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19622,555548638,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Tuchekoi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19623,23671,"AUS","NSW SOP",2005,"Not Reported",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19624,23671,"AUS","NSW SOP",2007,"Not Reported",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19625,23671,"AUS","NSW SOP",2010,"Not Reported",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19626,23671,"AUS","NSW SOP",2004,"Not Reported",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19627,23671,"AUS","NSW SOP",2013,"Not Reported",28,"Tuckean","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19628,23672,"AUS","NSW SOP",2005,"Not Reported",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19629,23672,"AUS","NSW SOP",2007,"Not Reported",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19630,23672,"AUS","NSW SOP",2010,"Not Reported",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19631,23672,"AUS","NSW SOP",2013,"Not Reported",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19632,23672,"AUS","NSW SOP",2004,"Not Reported",28,"Tucki Tucki","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19633,555543624,"AUS","NSW SOP",2007,"Not Reported",28,"Tuggerah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19634,555543624,"AUS","NSW SOP",2010,"Not Reported",28,"Tuggerah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19635,555543624,"AUS","NSW SOP",2013,"Not Reported",28,"Tuggerah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19636,555543625,"AUS","NSW SOP",2010,"Not Reported",28,"Tuggerah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19637,555543625,"AUS","NSW SOP",2013,"Not Reported",28,"Tuggerah","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19638,310198,"AUS","NSW SOP",2005,"Not Reported",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19639,310198,"AUS","NSW SOP",2007,"Not Reported",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19640,310198,"AUS","NSW SOP",2010,"Not Reported",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19641,310198,"AUS","NSW SOP",2013,"Not Reported",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19642,310198,"AUS","NSW SOP",2004,"Not Reported",28,"Tuggolo Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19643,357401,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19644,357401,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19645,357402,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Tully Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19646,357402,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Tully Falls","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19647,9482,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Tully Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19648,9482,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Tully Gorge","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19650,555548639,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19651,555543627,"AUS","NSW SOP",2005,"Not Reported",28,"Tumblong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19652,555543627,"AUS","NSW SOP",2007,"Not Reported",28,"Tumblong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19653,555543627,"AUS","NSW SOP",2010,"Not Reported",28,"Tumblong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19654,555543627,"AUS","NSW SOP",2013,"Not Reported",28,"Tumblong","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19655,357408,"AUS","NSW SOP",2005,"Not Reported",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19656,357408,"AUS","NSW SOP",2007,"Not Reported",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19657,357408,"AUS","NSW SOP",2010,"Not Reported",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19658,357408,"AUS","NSW SOP",2013,"Not Reported",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19659,357408,"AUS","NSW SOP",2004,"Not Reported",28,"Turallo","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19660,357410,"AUS","NSW SOP",2005,"Not Reported",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19661,357410,"AUS","NSW SOP",2007,"Not Reported",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19662,357410,"AUS","NSW SOP",2010,"Not Reported",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19663,357410,"AUS","NSW SOP",2013,"Not Reported",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19664,357410,"AUS","NSW SOP",2004,"Not Reported",28,"Turon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19665,24261,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Turtle Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19666,24261,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Turtle Group","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19667,356546,"AUS","Victorian SOP",2010,"Not Reported",28,"Tutchewop W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19668,356546,"AUS","Victorian SOP",2013,"Not Reported",28,"Tutchewop W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19669,311949,"AUS","NSW SOP",2005,"Not Reported",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19670,311949,"AUS","NSW SOP",2007,"Not Reported",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19671,311949,"AUS","NSW SOP",2010,"Not Reported",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19672,311949,"AUS","NSW SOP",2013,"Not Reported",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19673,311949,"AUS","NSW SOP",2004,"Not Reported",28,"Tweed Estuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19674,305351,"AUS","Victorian SOP",2010,"Not Reported",28,"Twelve Apostles","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19675,305351,"AUS","Victorian SOP",2005,"Not Reported",28,"Twelve Apostles","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19676,305351,"AUS","Victorian SOP",2013,"Not Reported",28,"Twelve Apostles","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19677,23676,"AUS","NSW SOP",2005,"Not Reported",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19678,23676,"AUS","NSW SOP",2007,"Not Reported",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19679,23676,"AUS","NSW SOP",2010,"Not Reported",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19680,23676,"AUS","NSW SOP",2013,"Not Reported",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19681,23676,"AUS","NSW SOP",2004,"Not Reported",28,"Tyagarah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19682,309061,"AUS","Victorian SOP",2010,"Not Reported",28,"Tyers Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19683,309061,"AUS","Victorian SOP",2005,"Not Reported",28,"Tyers Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19684,309061,"AUS","Victorian SOP",2013,"Not Reported",28,"Tyers Park","Conservation Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19685,127129,"AUS","Victorian SOP",2005,"Not Reported",28,"Tyrendarra F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19686,23677,"AUS","NSW SOP",2005,"Not Reported",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19687,23677,"AUS","NSW SOP",2007,"Not Reported",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19688,23677,"AUS","NSW SOP",2010,"Not Reported",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19689,23677,"AUS","NSW SOP",2013,"Not Reported",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19690,555576854,"AUS","NSW SOP",2013,"Not Reported",28,"Ukerbarley","NRS Addition - Gazettal in Progress","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19691,23677,"AUS","NSW SOP",2004,"Not Reported",28,"Ukerebagh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19692,310199,"AUS","NSW SOP",2005,"Not Reported",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19693,310199,"AUS","NSW SOP",2007,"Not Reported",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19694,310199,"AUS","NSW SOP",2010,"Not Reported",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19695,310199,"AUS","NSW SOP",2013,"Not Reported",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19696,310199,"AUS","NSW SOP",2004,"Not Reported",28,"Ulandra","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19702,900010,"AUS","WH Outlook Report",2014,"Not Reported",28,"Uluru-Kata Tjuta National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19703,64080,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Undara Volcanic","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19704,64080,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Undara Volcanic","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19705,310121,"AUS","NSW SOP",2005,"Not Reported",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19706,310121,"AUS","NSW SOP",2007,"Not Reported",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19707,310121,"AUS","NSW SOP",2010,"Not Reported",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19708,310121,"AUS","NSW SOP",2013,"Not Reported",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19709,310121,"AUS","NSW SOP",2004,"Not Reported",28,"Wooyung","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19710,555543653,"AUS","NSW SOP",2010,"Not Reported",28,"Upper Nepean","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19711,555543653,"AUS","NSW SOP",2013,"Not Reported",28,"Upper Nepean","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19712,23678,"AUS","NSW SOP",2005,"Not Reported",28,"Uralba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19713,23678,"AUS","NSW SOP",2007,"Not Reported",28,"Uralba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19714,23678,"AUS","NSW SOP",2013,"Not Reported",28,"Uralba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19715,23678,"AUS","NSW SOP",2004,"Not Reported",28,"Uralba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19716,310202,"AUS","NSW SOP",2005,"Not Reported",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19717,310202,"AUS","NSW SOP",2007,"Not Reported",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19718,310202,"AUS","NSW SOP",2010,"Not Reported",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19719,310202,"AUS","NSW SOP",2013,"Not Reported",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19720,310202,"AUS","NSW SOP",2004,"Not Reported",28,"Valla","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19721,127581,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Venman Bushland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19722,127581,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Venman Bushland","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19723,23679,"AUS","NSW SOP",2005,"Not Reported",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19724,23679,"AUS","NSW SOP",2007,"Not Reported",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19725,23679,"AUS","NSW SOP",2010,"Not Reported",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19726,23679,"AUS","NSW SOP",2013,"Not Reported",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19727,23679,"AUS","NSW SOP",2004,"Not Reported",28,"Victoria Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19728,357523,"AUS","Victorian SOP",2010,"Not Reported",28,"Waanyarra N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19729,357523,"AUS","Victorian SOP",2005,"Not Reported",28,"Waanyarra N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19730,64100,"AUS","Victorian SOP",2010,"Not Reported",28,"Wabba","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19731,64100,"AUS","Victorian SOP",2005,"Not Reported",28,"Wabba","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19732,64100,"AUS","Victorian SOP",2013,"Not Reported",28,"Wabba","Wilderness Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19733,2607,"AUS","NSW SOP",2005,"Not Reported",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19734,2607,"AUS","NSW SOP",2007,"Not Reported",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19735,2607,"AUS","NSW SOP",2010,"Not Reported",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19736,2607,"AUS","NSW SOP",2013,"Not Reported",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19737,2607,"AUS","NSW SOP",2004,"Not Reported",28,"Wadbilliga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19738,310203,"AUS","NSW SOP",2005,"Not Reported",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19739,310203,"AUS","NSW SOP",2007,"Not Reported",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19740,310203,"AUS","NSW SOP",2010,"Not Reported",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19741,310203,"AUS","NSW SOP",2004,"Not Reported",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19742,310203,"AUS","NSW SOP",2013,"Not Reported",28,"Wadjan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19743,1161,"AUS","NSW SOP",2005,"Not Reported",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19744,1161,"AUS","NSW SOP",2007,"Not Reported",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19745,1161,"AUS","NSW SOP",2010,"Not Reported",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19746,1161,"AUS","NSW SOP",2004,"Not Reported",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19747,1161,"AUS","NSW SOP",2013,"Not Reported",28,"Wallabadah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19748,555576898,"AUS","NSW SOP",2013,"Not Reported",28,"Wallabadah","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19749,310204,"AUS","NSW SOP",2005,"Not Reported",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19750,310204,"AUS","NSW SOP",2007,"Not Reported",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19751,310204,"AUS","NSW SOP",2010,"Not Reported",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19752,310204,"AUS","NSW SOP",2013,"Not Reported",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19753,310204,"AUS","NSW SOP",2004,"Not Reported",28,"Wallamba","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19754,357530,"AUS","NSW SOP",2005,"Not Reported",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19755,357530,"AUS","NSW SOP",2007,"Not Reported",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19756,357530,"AUS","NSW SOP",2010,"Not Reported",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19757,357530,"AUS","NSW SOP",2013,"Not Reported",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19758,357530,"AUS","NSW SOP",2004,"Not Reported",28,"Wallarah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19759,555543634,"AUS","NSW SOP",2010,"Not Reported",28,"Wallaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19760,555543634,"AUS","NSW SOP",2013,"Not Reported",28,"Wallaroo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19761,555548655,"AUS","NSW SOP",2005,"Not Reported",28,"Wallaroo","Flora Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19762,555548655,"AUS","NSW SOP",2007,"Not Reported",28,"Wallaroo","Flora Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19763,555548655,"AUS","NSW SOP",2004,"Not Reported",28,"Wallaroo","Flora Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19764,310206,"AUS","NSW SOP",2005,"Not Reported",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19765,310206,"AUS","NSW SOP",2007,"Not Reported",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19766,310206,"AUS","NSW SOP",2010,"Not Reported",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19767,310206,"AUS","NSW SOP",2013,"Not Reported",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19768,310206,"AUS","NSW SOP",2004,"Not Reported",28,"Wallingat","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19769,23682,"AUS","NSW SOP",2005,"Not Reported",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19770,23682,"AUS","NSW SOP",2007,"Not Reported",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19771,23682,"AUS","NSW SOP",2010,"Not Reported",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19772,23682,"AUS","NSW SOP",2013,"Not Reported",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19773,23682,"AUS","NSW SOP",2004,"Not Reported",28,"Wallis Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19774,309715,"AUS","Tasmanian WHA",2004,"Not Reported",28,"Walls of Jerusalem","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19775,64087,"AUS","NSW SOP",2005,"Not Reported",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19776,64087,"AUS","NSW SOP",2007,"Not Reported",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19777,64087,"AUS","NSW SOP",2010,"Not Reported",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19778,64087,"AUS","NSW SOP",2013,"Not Reported",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19779,64087,"AUS","NSW SOP",2004,"Not Reported",28,"Wallumatta","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19780,23683,"AUS","NSW SOP",2005,"Not Reported",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19781,23683,"AUS","NSW SOP",2007,"Not Reported",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19782,23683,"AUS","NSW SOP",2010,"Not Reported",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19783,23683,"AUS","NSW SOP",2013,"Not Reported",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19784,23683,"AUS","NSW SOP",2004,"Not Reported",28,"Wamberal Lagoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19785,310207,"AUS","NSW SOP",2005,"Not Reported",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19786,310207,"AUS","NSW SOP",2007,"Not Reported",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19787,310207,"AUS","NSW SOP",2010,"Not Reported",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19788,310207,"AUS","NSW SOP",2013,"Not Reported",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19789,310207,"AUS","NSW SOP",2004,"Not Reported",28,"Wambina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19790,23684,"AUS","NSW SOP",2005,"Not Reported",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19791,23684,"AUS","NSW SOP",2007,"Not Reported",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19792,23684,"AUS","NSW SOP",2010,"Not Reported",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19793,23684,"AUS","NSW SOP",2013,"Not Reported",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19794,23684,"AUS","NSW SOP",2004,"Not Reported",28,"Wambool","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19795,310208,"AUS","NSW SOP",2005,"Not Reported",28,"Wanna Wanna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19796,310208,"AUS","NSW SOP",2007,"Not Reported",28,"Wanna Wanna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19797,310208,"AUS","NSW SOP",2010,"Not Reported",28,"Wanna Wanna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19798,310208,"AUS","NSW SOP",2013,"Not Reported",28,"Wanna Wanna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19800,310209,"AUS","NSW SOP",2005,"Not Reported",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19801,310209,"AUS","NSW SOP",2007,"Not Reported",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19802,310209,"AUS","NSW SOP",2010,"Not Reported",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19803,310209,"AUS","NSW SOP",2013,"Not Reported",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19804,310209,"AUS","NSW SOP",2004,"Not Reported",28,"Warragai Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19805,357549,"AUS","Victorian SOP",2005,"Not Reported",28,"Warby Range","Reference Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19806,555548807,"AUS","Victorian SOP",2010,"Not Reported",28,"Warby-Ovens National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19807,555548807,"AUS","Victorian SOP",2013,"Not Reported",28,"Warby-Ovens National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19808,555543638,"AUS","NSW SOP",2010,"Not Reported",28,"Warialda","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19809,555543638,"AUS","NSW SOP",2013,"Not Reported",28,"Warialda","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19810,555543639,"AUS","NSW SOP",2010,"Not Reported",28,"Warialda","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19811,555543639,"AUS","NSW SOP",2013,"Not Reported",28,"Warialda","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19812,310210,"AUS","NSW SOP",2005,"Not Reported",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19813,310210,"AUS","NSW SOP",2007,"Not Reported",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19814,310210,"AUS","NSW SOP",2010,"Not Reported",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19815,310210,"AUS","NSW SOP",2013,"Not Reported",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19816,310210,"AUS","NSW SOP",2004,"Not Reported",28,"Warra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19817,23685,"AUS","NSW SOP",2005,"Not Reported",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19818,23685,"AUS","NSW SOP",2007,"Not Reported",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19819,23685,"AUS","NSW SOP",2010,"Not Reported",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19820,23685,"AUS","NSW SOP",2013,"Not Reported",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19821,23685,"AUS","NSW SOP",2004,"Not Reported",28,"Warrabah","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19822,314709,"AUS","Victorian SOP",2005,"Not Reported",28,"Warramate Hills N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19823,24871,"AUS","Victorian SOP",2005,"Not Reported",28,"Warrandyte","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19824,24871,"AUS","Victorian SOP",2010,"Not Reported",28,"Warrandyte","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19825,24871,"AUS","Victorian SOP",2013,"Not Reported",28,"Warrandyte","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19826,308976,"AUS","Victorian SOP",2010,"Not Reported",28,"Warrandyte - Kinglake N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19827,308976,"AUS","Victorian SOP",2013,"Not Reported",28,"Warrandyte - Kinglake N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19828,357742,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Warro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19829,357742,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Warro","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19830,365,"AUS","NSW SOP",2005,"Not Reported",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19831,365,"AUS","NSW SOP",2007,"Not Reported",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19832,365,"AUS","NSW SOP",2010,"Not Reported",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19833,365,"AUS","NSW SOP",2013,"Not Reported",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19834,365,"AUS","NSW SOP",2004,"Not Reported",28,"Warrumbungle","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19835,10596,"AUS","NSW SOP",2005,"Not Reported",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19836,10596,"AUS","NSW SOP",2007,"Not Reported",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19837,10596,"AUS","NSW SOP",2010,"Not Reported",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19838,10596,"AUS","NSW SOP",2013,"Not Reported",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19839,357557,"AUS","NSW SOP",2005,"Not Reported",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19840,357557,"AUS","NSW SOP",2007,"Not Reported",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19841,357557,"AUS","NSW SOP",2010,"Not Reported",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19842,357557,"AUS","NSW SOP",2013,"Not Reported",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19843,10596,"AUS","NSW SOP",2004,"Not Reported",28,"Washpool","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19844,357557,"AUS","NSW SOP",2004,"Not Reported",28,"Washpool","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19845,310211,"AUS","NSW SOP",2005,"Not Reported",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19846,310211,"AUS","NSW SOP",2007,"Not Reported",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19847,310211,"AUS","NSW SOP",2010,"Not Reported",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19848,310211,"AUS","NSW SOP",2013,"Not Reported",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19849,310211,"AUS","NSW SOP",2004,"Not Reported",28,"Watagans","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19850,313841,"AUS","NTMEE",2013,"Not Reported",28,"Watarrka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19851,555543642,"AUS","NSW SOP",2007,"Not Reported",28,"Watchimbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19852,555543642,"AUS","NSW SOP",2010,"Not Reported",28,"Watchimbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19853,555543642,"AUS","NSW SOP",2013,"Not Reported",28,"Watchimbark","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19854,314770,"AUS","Victorian SOP",2005,"Not Reported",28,"Wathe F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19855,314770,"AUS","Victorian SOP",2013,"Not Reported",28,"Wathe F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19856,9458,"AUS","NSW SOP",2005,"Not Reported",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19857,9458,"AUS","NSW SOP",2007,"Not Reported",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19858,9458,"AUS","NSW SOP",2010,"Not Reported",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19859,9458,"AUS","NSW SOP",2013,"Not Reported",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19860,555543644,"AUS","NSW SOP",2007,"Not Reported",28,"Watsons Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19861,555543644,"AUS","NSW SOP",2010,"Not Reported",28,"Watsons Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19862,9458,"AUS","NSW SOP",2004,"Not Reported",28,"Watsons Creek","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19863,555543644,"AUS","NSW SOP",2013,"Not Reported",28,"Watsons Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19864,555576908,"AUS","NSW SOP",2013,"Not Reported",28,"Watsons Creek","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19865,374,"AUS","NSW SOP",2005,"Not Reported",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19866,374,"AUS","NSW SOP",2007,"Not Reported",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19867,374,"AUS","NSW SOP",2010,"Not Reported",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19868,374,"AUS","NSW SOP",2013,"Not Reported",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19869,374,"AUS","NSW SOP",2004,"Not Reported",28,"Weddin Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19870,23690,"AUS","NSW SOP",2005,"Not Reported",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19871,23690,"AUS","NSW SOP",2007,"Not Reported",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19872,23690,"AUS","NSW SOP",2010,"Not Reported",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19873,23690,"AUS","NSW SOP",2013,"Not Reported",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19874,23690,"AUS","NSW SOP",2004,"Not Reported",28,"Wee Jasper","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19875,23691,"AUS","NSW SOP",2005,"Not Reported",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19876,23691,"AUS","NSW SOP",2007,"Not Reported",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19877,23691,"AUS","NSW SOP",2010,"Not Reported",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19878,23691,"AUS","NSW SOP",2013,"Not Reported",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19879,23691,"AUS","NSW SOP",2004,"Not Reported",28,"Weelah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19880,23692,"AUS","NSW SOP",2005,"Not Reported",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19881,23692,"AUS","NSW SOP",2007,"Not Reported",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19882,23692,"AUS","NSW SOP",2010,"Not Reported",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19883,23692,"AUS","NSW SOP",2013,"Not Reported",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19884,23692,"AUS","NSW SOP",2004,"Not Reported",28,"Weetalibah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19885,127667,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Welford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19886,127667,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Welford","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19887,310113,"AUS","NSW SOP",2005,"Not Reported",28,"Werakata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19888,310113,"AUS","NSW SOP",2007,"Not Reported",28,"Werakata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19889,310113,"AUS","NSW SOP",2010,"Not Reported",28,"Werakata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19890,310113,"AUS","NSW SOP",2013,"Not Reported",28,"Werakata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19891,555543649,"AUS","NSW SOP",2010,"Not Reported",28,"Werakata","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19892,555543649,"AUS","NSW SOP",2013,"Not Reported",28,"Werakata","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19893,310070,"AUS","NSW SOP",2004,"Not Reported",28,"Ghin-Doo-Ee","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19894,357572,"AUS","NSW SOP",2005,"Not Reported",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19895,357572,"AUS","NSW SOP",2007,"Not Reported",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19896,357572,"AUS","NSW SOP",2010,"Not Reported",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19897,357572,"AUS","NSW SOP",2013,"Not Reported",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19898,357572,"AUS","NSW SOP",2004,"Not Reported",28,"Wereboldera","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19899,24874,"AUS","Victorian SOP",2005,"Not Reported",28,"Werribee Gorge","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19900,24874,"AUS","Victorian SOP",2010,"Not Reported",28,"Werribee Gorge","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19901,24874,"AUS","Victorian SOP",2013,"Not Reported",28,"Werribee Gorge","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19902,370,"AUS","Birdlife IBA",2008,"Not Reported",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19903,370,"AUS","NSW SOP",2005,"Not Reported",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19904,370,"AUS","NSW SOP",2007,"Not Reported",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19905,370,"AUS","NSW SOP",2010,"Not Reported",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19906,370,"AUS","NSW SOP",2013,"Not Reported",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19907,555543650,"AUS","NSW SOP",2007,"Not Reported",28,"Werrikimbe","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19908,555543650,"AUS","NSW SOP",2010,"Not Reported",28,"Werrikimbe","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19909,370,"AUS","NSW SOP",2004,"Not Reported",28,"Werrikimbe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19910,555543650,"AUS","NSW SOP",2013,"Not Reported",28,"Werrikimbe","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19911,24271,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"West Hill","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19912,24271,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"West Hill","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19913,314772,"AUS","Victorian SOP",2013,"Not Reported",28,"West Wail F.F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19914,17757,"AUS","WH Outlook Report",2014,"Not Reported",28,"Wet Tropics of Queensland","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19915,357580,"AUS","NSW SOP",2005,"Not Reported",28,"Whian Whian","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19916,357580,"AUS","NSW SOP",2007,"Not Reported",28,"Whian Whian","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19917,357580,"AUS","NSW SOP",2010,"Not Reported",28,"Whian Whian","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19918,357580,"AUS","NSW SOP",2013,"Not Reported",28,"Whian Whian","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19919,314696,"AUS","Victorian SOP",2005,"Not Reported",28,"White Lake, Douglas W.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19920,311895,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"White Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19921,311895,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"White Mountains","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19922,406,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Whitsunday Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19923,406,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Whitsunday Islands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19924,357592,"AUS","Victorian SOP",2005,"Not Reported",28,"Whroo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19925,555543657,"AUS","NSW SOP",2010,"Not Reported",28,"Wianamatta","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19926,555543657,"AUS","NSW SOP",2013,"Not Reported",28,"Wianamatta","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19928,555548735,"AUS","NSW SOP",2013,"Not Reported",28,"Wiarborough","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19929,555548571,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Wickham","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19930,555548571,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Wickham","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19931,313783,"AUS","NSW SOP",2005,"Not Reported",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19932,313783,"AUS","NSW SOP",2007,"Not Reported",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19933,313783,"AUS","NSW SOP",2010,"Not Reported",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19934,313783,"AUS","NSW SOP",2013,"Not Reported",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19935,313783,"AUS","NSW SOP",2004,"Not Reported",28,"Wiesners Swamp","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19936,357596,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Wietalaba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19937,357596,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Wietalaba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19938,64388,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Wild Cattle Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19939,64388,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Wild Cattle Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19940,24876,"AUS","Victorian SOP",2005,"Not Reported",28,"Wilkin F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19941,24876,"AUS","Victorian SOP",2010,"Not Reported",28,"Wilkin F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19942,24876,"AUS","Victorian SOP",2013,"Not Reported",28,"Wilkin F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19943,146695,"AUS","NSW SOP",2005,"Not Reported",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19944,146695,"AUS","NSW SOP",2007,"Not Reported",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19945,146695,"AUS","NSW SOP",2010,"Not Reported",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19946,146695,"AUS","NSW SOP",2013,"Not Reported",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19947,146695,"AUS","NSW SOP",2004,"Not Reported",28,"Willandra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19948,2573,"AUS","WH Outlook Report",2014,"Not Reported",28,"Willandra Lakes Region","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19949,310114,"AUS","NSW SOP",2005,"Not Reported",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19950,310114,"AUS","NSW SOP",2007,"Not Reported",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19951,310114,"AUS","NSW SOP",2010,"Not Reported",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19952,310114,"AUS","NSW SOP",2013,"Not Reported",28,"Willi Willi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19953,310179,"AUS","NSW SOP",2004,"Not Reported",28,"Scheyville","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19954,23696,"AUS","NSW SOP",2005,"Not Reported",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19955,23696,"AUS","NSW SOP",2007,"Not Reported",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19956,23696,"AUS","NSW SOP",2010,"Not Reported",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19957,23696,"AUS","NSW SOP",2013,"Not Reported",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19958,23696,"AUS","NSW SOP",2004,"Not Reported",28,"Willi Willi Caves","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19959,357607,"AUS","NSW SOP",2005,"Not Reported",28,"William Howe","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19960,357607,"AUS","NSW SOP",2007,"Not Reported",28,"William Howe","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19961,357607,"AUS","NSW SOP",2010,"Not Reported",28,"William Howe","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19962,357607,"AUS","NSW SOP",2013,"Not Reported",28,"William Howe","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19963,127696,"AUS","Victorian SOP",2005,"Not Reported",28,"William Hunter F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19964,127703,"AUS","NSW SOP",2005,"Not Reported",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19965,127703,"AUS","NSW SOP",2007,"Not Reported",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19966,127703,"AUS","NSW SOP",2010,"Not Reported",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19967,127703,"AUS","NSW SOP",2013,"Not Reported",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19968,127703,"AUS","NSW SOP",2004,"Not Reported",28,"Wilson","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19969,314101,"AUS","Victorian SOP",2005,"Not Reported",28,"Wilsons Promontory National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19970,314101,"AUS","Victorian SOP",2010,"Not Reported",28,"Wilsons Promontory National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19971,314101,"AUS","Victorian SOP",2013,"Not Reported",28,"Wilsons Promontory National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19972,357613,"AUS","Birdlife IBA",2008,"Not Reported",28,"Wilsons Promontory Islands","Remote and Natural Area - Schedule 6, National Parks Act","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19973,305425,"AUS","Victorian SOP",2010,"Not Reported",28,"Wilsons Promontory","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19974,305425,"AUS","Victorian SOP",2005,"Not Reported",28,"Wilsons Promontory","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19975,305425,"AUS","Victorian SOP",2013,"Not Reported",28,"Wilsons Promontory","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19982,1136,"AUS","NSW SOP",2005,"Not Reported",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19983,1136,"AUS","NSW SOP",2007,"Not Reported",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19984,1136,"AUS","NSW SOP",2010,"Not Reported",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19985,1136,"AUS","NSW SOP",2013,"Not Reported",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19986,1136,"AUS","NSW SOP",2004,"Not Reported",28,"Winburndale","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19987,64103,"AUS","NSW SOP",2005,"Not Reported",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19988,64103,"AUS","NSW SOP",2007,"Not Reported",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19989,64103,"AUS","NSW SOP",2010,"Not Reported",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19990,64103,"AUS","NSW SOP",2013,"Not Reported",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19991,64103,"AUS","NSW SOP",2004,"Not Reported",28,"Windsor Downs","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19992,555576916,"AUS","NSW SOP",2013,"Not Reported",28,"Wingadee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19993,9462,"AUS","NSW SOP",2005,"Not Reported",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19994,9462,"AUS","NSW SOP",2007,"Not Reported",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19995,9462,"AUS","NSW SOP",2010,"Not Reported",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19996,9462,"AUS","NSW SOP",2013,"Not Reported",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19997,9462,"AUS","NSW SOP",2004,"Not Reported",28,"Wingen Maid","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19998,313784,"AUS","NSW SOP",2005,"Not Reported",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +19999,313784,"AUS","NSW SOP",2007,"Not Reported",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20000,313784,"AUS","NSW SOP",2010,"Not Reported",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20001,313784,"AUS","NSW SOP",2013,"Not Reported",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20002,313784,"AUS","NSW SOP",2004,"Not Reported",28,"Wingham Brush","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20003,313785,"AUS","NSW SOP",2005,"Not Reported",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20004,313785,"AUS","NSW SOP",2007,"Not Reported",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20005,313785,"AUS","NSW SOP",2010,"Not Reported",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20006,313785,"AUS","NSW SOP",2013,"Not Reported",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20007,313785,"AUS","NSW SOP",2004,"Not Reported",28,"Wogamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20008,1141,"AUS","NSW SOP",2005,"Not Reported",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20009,1141,"AUS","NSW SOP",2007,"Not Reported",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20010,1141,"AUS","NSW SOP",2010,"Not Reported",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20011,1141,"AUS","NSW SOP",2013,"Not Reported",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20012,1141,"AUS","NSW SOP",2004,"Not Reported",28,"Woggoon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20013,9472,"AUS","NSW SOP",2005,"Not Reported",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20014,9472,"AUS","NSW SOP",2007,"Not Reported",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20015,9472,"AUS","NSW SOP",2010,"Not Reported",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20016,9472,"AUS","NSW SOP",2013,"Not Reported",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20017,9472,"AUS","NSW SOP",2004,"Not Reported",28,"Woko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20018,127721,"AUS","NSW SOP",2005,"Not Reported",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20019,127721,"AUS","NSW SOP",2007,"Not Reported",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20020,127721,"AUS","NSW SOP",2010,"Not Reported",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20021,127721,"AUS","NSW SOP",2013,"Not Reported",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20022,127721,"AUS","NSW SOP",2004,"Not Reported",28,"Wollemi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20023,357625,"AUS","NSW SOP",2005,"Not Reported",28,"Wolli Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20024,357625,"AUS","NSW SOP",2007,"Not Reported",28,"Wolli Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20025,357625,"AUS","NSW SOP",2010,"Not Reported",28,"Wolli Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20026,357625,"AUS","NSW SOP",2013,"Not Reported",28,"Wolli Creek","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20027,310116,"AUS","NSW SOP",2005,"Not Reported",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20028,310116,"AUS","NSW SOP",2007,"Not Reported",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20029,310116,"AUS","NSW SOP",2010,"Not Reported",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20030,310116,"AUS","NSW SOP",2013,"Not Reported",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20031,310116,"AUS","NSW SOP",2004,"Not Reported",28,"Wollondilly River","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20032,357627,"AUS","NSW SOP",2005,"Not Reported",28,"Wollumbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20033,357627,"AUS","NSW SOP",2007,"Not Reported",28,"Wollumbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20034,357627,"AUS","NSW SOP",2010,"Not Reported",28,"Wollumbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20035,357627,"AUS","NSW SOP",2013,"Not Reported",28,"Wollumbin","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20036,357631,"AUS","NSW SOP",2005,"Not Reported",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20037,357631,"AUS","NSW SOP",2007,"Not Reported",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20038,357631,"AUS","NSW SOP",2010,"Not Reported",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20039,357631,"AUS","NSW SOP",2013,"Not Reported",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20044,357631,"AUS","NSW SOP",2004,"Not Reported",28,"Wombat Creek","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20045,555543660,"AUS","NSW SOP",2010,"Not Reported",28,"Wombeyan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20046,555543660,"AUS","NSW SOP",2013,"Not Reported",28,"Wombeyan","Karst Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20047,555543662,"AUS","NSW SOP",2010,"Not Reported",28,"Wondoba","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20048,555543662,"AUS","NSW SOP",2013,"Not Reported",28,"Wondoba","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20049,64395,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Wondul Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20050,64395,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Wondul Range","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20051,23702,"AUS","NSW SOP",2005,"Not Reported",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20052,23702,"AUS","NSW SOP",2007,"Not Reported",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20053,23702,"AUS","NSW SOP",2010,"Not Reported",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20054,23702,"AUS","NSW SOP",2013,"Not Reported",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20055,23702,"AUS","NSW SOP",2004,"Not Reported",28,"Wongarbon","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20056,357637,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Wongi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20057,357637,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Wongi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20058,309223,"AUS","Victorian SOP",2005,"Not Reported",28,"Wonthaggi Heathlands N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20059,309223,"AUS","Victorian SOP",2010,"Not Reported",28,"Wonthaggi Heathlands N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20060,309223,"AUS","Victorian SOP",2013,"Not Reported",28,"Wonthaggi Heathlands N.C.R","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20061,357641,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Woocoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20062,357641,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Woocoo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20063,357642,"AUS","Victorian SOP",2005,"Not Reported",28,"Wood Point F.R","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20064,310118,"AUS","NSW SOP",2005,"Not Reported",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20065,310118,"AUS","NSW SOP",2007,"Not Reported",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20066,310118,"AUS","NSW SOP",2010,"Not Reported",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20067,310118,"AUS","NSW SOP",2013,"Not Reported",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20068,310118,"AUS","NSW SOP",2004,"Not Reported",28,"Woodford Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20069,555548185,"AUS","Victorian SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20070,309236,"AUS","Victorian SOP",2005,"Not Reported",28,"Woodnaggerak B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20071,555576920,"AUS","NSW SOP",2013,"Not Reported",28,"Woodsreef","CCA Zone 3 State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20072,313786,"AUS","NSW SOP",2005,"Not Reported",28,"Woollamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20073,313786,"AUS","NSW SOP",2007,"Not Reported",28,"Woollamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20074,313786,"AUS","NSW SOP",2010,"Not Reported",28,"Woollamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20075,313786,"AUS","NSW SOP",2013,"Not Reported",28,"Woollamia","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20077,314699,"AUS","Victorian SOP",2005,"Not Reported",28,"Woolshed Swamp W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20078,309244,"AUS","NSW SOP",2005,"Not Reported",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20079,309244,"AUS","NSW SOP",2007,"Not Reported",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20080,309244,"AUS","NSW SOP",2010,"Not Reported",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20081,309244,"AUS","NSW SOP",2013,"Not Reported",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20082,555548787,"AUS","NSW SOP",2010,"Not Reported",28,"Woomargama","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20083,555548787,"AUS","NSW SOP",2013,"Not Reported",28,"Woomargama","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20084,309244,"AUS","NSW SOP",2004,"Not Reported",28,"Woomargama","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20085,555548769,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Woondum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20086,555548769,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Woondum","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20087,357660,"AUS","Victorian SOP",2010,"Not Reported",28,"Wooroonook Lakes (Middle and East) W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20088,357660,"AUS","Victorian SOP",2005,"Not Reported",28,"Wooroonook Lakes (Middle and East) W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20089,357660,"AUS","Victorian SOP",2013,"Not Reported",28,"Wooroonook Lakes (Middle and East) W.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20090,127739,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Wooroonooran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20092,127739,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Wooroonooran","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20094,357668,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Woowoonga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20095,357668,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Woowoonga","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20102,555543665,"AUS","NSW SOP",2007,"Not Reported",28,"Woregore","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20103,555543665,"AUS","NSW SOP",2010,"Not Reported",28,"Woregore","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20104,555543665,"AUS","NSW SOP",2013,"Not Reported",28,"Woregore","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20105,555543666,"AUS","NSW SOP",2010,"Not Reported",28,"Worimi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20106,555543666,"AUS","NSW SOP",2013,"Not Reported",28,"Worimi","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20107,555543667,"AUS","NSW SOP",2010,"Not Reported",28,"Worimi","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20108,555543667,"AUS","NSW SOP",2013,"Not Reported",28,"Worimi","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20109,555543668,"AUS","NSW SOP",2010,"Not Reported",28,"Worimi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20110,555543668,"AUS","NSW SOP",2013,"Not Reported",28,"Worimi","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20111,357671,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Woroon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20112,357671,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Woroon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20114,313788,"AUS","NSW SOP",2005,"Not Reported",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20115,313788,"AUS","NSW SOP",2007,"Not Reported",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20116,313788,"AUS","NSW SOP",2010,"Not Reported",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20117,313788,"AUS","NSW SOP",2013,"Not Reported",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20118,313788,"AUS","NSW SOP",2004,"Not Reported",28,"Worrigee","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20119,555548810,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Wrattens","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20120,555548810,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Wrattens","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20122,313789,"AUS","NSW SOP",2005,"Not Reported",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20123,313789,"AUS","NSW SOP",2007,"Not Reported",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20124,313789,"AUS","NSW SOP",2010,"Not Reported",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20125,313789,"AUS","NSW SOP",2013,"Not Reported",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20126,313789,"AUS","NSW SOP",2004,"Not Reported",28,"Wullwye","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20127,357674,"AUS","Victorian SOP",2005,"Not Reported",28,"Wurdi Youyang B.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20128,555577371,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Wuthara Island (Cape York Peninsula Aboriginal Land)","National Park Aboriginal","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20130,314774,"AUS","Victorian SOP",2010,"Not Reported",28,"Wychitella N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20131,314774,"AUS","Victorian SOP",2005,"Not Reported",28,"Wychitella N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20132,314774,"AUS","Victorian SOP",2013,"Not Reported",28,"Wychitella N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20133,529,"AUS","Victorian SOP",2005,"Not Reported",28,"Wyperfeld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20134,529,"AUS","Victorian SOP",2010,"Not Reported",28,"Wyperfeld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20135,529,"AUS","Victorian SOP",2013,"Not Reported",28,"Wyperfeld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20136,353,"AUS","NSW SOP",2005,"Not Reported",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20137,353,"AUS","NSW SOP",2007,"Not Reported",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20138,353,"AUS","NSW SOP",2010,"Not Reported",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20139,353,"AUS","NSW SOP",2013,"Not Reported",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20140,353,"AUS","NSW SOP",2004,"Not Reported",28,"Wyrrabalong","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20141,310125,"AUS","NSW SOP",2005,"Not Reported",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20142,310125,"AUS","NSW SOP",2007,"Not Reported",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20143,310125,"AUS","NSW SOP",2010,"Not Reported",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20144,310125,"AUS","NSW SOP",2013,"Not Reported",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20145,310125,"AUS","NSW SOP",2004,"Not Reported",28,"Yabbra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20146,357688,"AUS","NSW SOP",2005,"Not Reported",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20147,357688,"AUS","NSW SOP",2007,"Not Reported",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20148,357688,"AUS","NSW SOP",2010,"Not Reported",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20149,357688,"AUS","NSW SOP",2013,"Not Reported",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20150,357688,"AUS","NSW SOP",2004,"Not Reported",28,"Yaegl","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20151,23704,"AUS","NSW SOP",2005,"Not Reported",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20152,23704,"AUS","NSW SOP",2007,"Not Reported",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20153,23704,"AUS","NSW SOP",2010,"Not Reported",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20154,23704,"AUS","NSW SOP",2004,"Not Reported",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20155,23704,"AUS","NSW SOP",2013,"Not Reported",28,"Yahoo Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20156,24878,"AUS","Victorian SOP",2005,"Not Reported",28,"Yambuk F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20157,1155,"AUS","NSW SOP",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20158,1155,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20159,1155,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20160,555543672,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20161,555543672,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20162,555543673,"AUS","NSW SOP",2007,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20163,555543673,"AUS","NSW SOP",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20164,1155,"AUS","NSW SOP",2004,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20165,313682,"AUS","NSW SOP",2005,"Not Reported",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20166,313682,"AUS","NSW SOP",2007,"Not Reported",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20167,313682,"AUS","NSW SOP",2010,"Not Reported",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20168,313682,"AUS","NSW SOP",2013,"Not Reported",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20169,313790,"AUS","NSW SOP",2005,"Not Reported",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20170,313790,"AUS","NSW SOP",2007,"Not Reported",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20171,313790,"AUS","NSW SOP",2010,"Not Reported",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20173,313790,"AUS","NSW SOP",2013,"Not Reported",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20175,357695,"AUS","NSW SOP",2005,"Not Reported",28,"Yanununbeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20176,357695,"AUS","NSW SOP",2007,"Not Reported",28,"Yanununbeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20177,313682,"AUS","NSW SOP",2004,"Not Reported",28,"Yanununbeyan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20178,313790,"AUS","NSW SOP",2004,"Not Reported",28,"Yanununbeyan","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20179,357695,"AUS","NSW SOP",2004,"Not Reported",28,"Yanununbeyan","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20180,313791,"AUS","NSW SOP",2005,"Not Reported",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20181,313791,"AUS","NSW SOP",2007,"Not Reported",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20182,313791,"AUS","NSW SOP",2010,"Not Reported",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20183,313791,"AUS","NSW SOP",2013,"Not Reported",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20184,313791,"AUS","NSW SOP",2004,"Not Reported",28,"Yaouk","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20185,305418,"AUS","Victorian SOP",2010,"Not Reported",28,"Yaringa","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20186,305418,"AUS","Victorian SOP",2005,"Not Reported",28,"Yaringa","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20187,305418,"AUS","Victorian SOP",2013,"Not Reported",28,"Yaringa","Marine National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20188,102573,"AUS","Victorian SOP",2005,"Not Reported",28,"Yarra Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20189,102573,"AUS","Victorian SOP",2010,"Not Reported",28,"Yarra Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20190,102573,"AUS","Victorian SOP",2013,"Not Reported",28,"Yarra Ranges National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20191,555543675,"AUS","NSW SOP",2010,"Not Reported",28,"Yarrigan","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20192,555543675,"AUS","NSW SOP",2013,"Not Reported",28,"Yarrigan","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20193,555543676,"AUS","NSW SOP",2007,"Not Reported",28,"Yarrahapinni Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20194,555543676,"AUS","NSW SOP",2010,"Not Reported",28,"Yarrahapinni Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20195,555543676,"AUS","NSW SOP",2013,"Not Reported",28,"Yarrahapinni Wetlands","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20196,24882,"AUS","Victorian SOP",2010,"Not Reported",28,"Yarrara F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20197,24882,"AUS","Victorian SOP",2013,"Not Reported",28,"Yarrara F.F.R.","Nature Conservation Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20198,23706,"AUS","NSW SOP",2005,"Not Reported",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20199,23706,"AUS","NSW SOP",2007,"Not Reported",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20200,23706,"AUS","NSW SOP",2010,"Not Reported",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20201,23706,"AUS","NSW SOP",2013,"Not Reported",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20202,23706,"AUS","NSW SOP",2004,"Not Reported",28,"Yarravel","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20203,357702,"AUS","NSW SOP",2005,"Not Reported",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20204,357702,"AUS","NSW SOP",2007,"Not Reported",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20205,357702,"AUS","NSW SOP",2010,"Not Reported",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20206,357702,"AUS","NSW SOP",2013,"Not Reported",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20207,357702,"AUS","NSW SOP",2004,"Not Reported",28,"Yarriabini","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20208,357703,"AUS","NSW SOP",2005,"Not Reported",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20209,357703,"AUS","NSW SOP",2007,"Not Reported",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20210,357703,"AUS","NSW SOP",2010,"Not Reported",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20211,357703,"AUS","NSW SOP",2013,"Not Reported",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20212,357704,"AUS","NSW SOP",2005,"Not Reported",28,"Yarringully","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20213,357704,"AUS","NSW SOP",2007,"Not Reported",28,"Yarringully","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20214,357704,"AUS","NSW SOP",2010,"Not Reported",28,"Yarringully","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20215,357704,"AUS","NSW SOP",2013,"Not Reported",28,"Yarringully","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20216,357703,"AUS","NSW SOP",2004,"Not Reported",28,"Yarringully","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20217,555543679,"AUS","NSW SOP",2010,"Not Reported",28,"Yarrobil","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20218,555543679,"AUS","NSW SOP",2013,"Not Reported",28,"Yarrobil","CCA Zone 1 National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20219,2030,"AUS","GOBI Survey",2006,"Not Reported",28,"Yathong Nature Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20220,1129,"AUS","NSW SOP",2005,"Not Reported",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20221,1129,"AUS","NSW SOP",2007,"Not Reported",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20222,1129,"AUS","NSW SOP",2010,"Not Reported",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20223,1129,"AUS","NSW SOP",2013,"Not Reported",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20224,1129,"AUS","NSW SOP",2004,"Not Reported",28,"Yathong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20225,310128,"AUS","NSW SOP",2005,"Not Reported",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20226,310128,"AUS","NSW SOP",2007,"Not Reported",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20227,310128,"AUS","NSW SOP",2010,"Not Reported",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20228,310128,"AUS","NSW SOP",2013,"Not Reported",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20229,310128,"AUS","NSW SOP",2004,"Not Reported",28,"Yatteyattah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20230,24886,"AUS","Victorian SOP",2010,"Not Reported",28,"Yellingbo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20231,24886,"AUS","Victorian SOP",2005,"Not Reported",28,"Yellingbo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20232,24886,"AUS","Victorian SOP",2013,"Not Reported",28,"Yellingbo N.C.R.","Natural Features Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20233,357709,"AUS","NSW SOP",2005,"Not Reported",28,"Yellomundee","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20234,357709,"AUS","NSW SOP",2007,"Not Reported",28,"Yellomundee","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20235,357709,"AUS","NSW SOP",2010,"Not Reported",28,"Yellomundee","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20236,357709,"AUS","NSW SOP",2013,"Not Reported",28,"Yellomundee","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20237,23708,"AUS","NSW SOP",2005,"Not Reported",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20238,23708,"AUS","NSW SOP",2007,"Not Reported",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20239,23708,"AUS","NSW SOP",2010,"Not Reported",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20240,23708,"AUS","NSW SOP",2013,"Not Reported",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20241,23708,"AUS","NSW SOP",2004,"Not Reported",28,"Yengo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20242,555576927,"AUS","NSW SOP",2013,"Not Reported",28,"Yerranderie","Regional Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20243,357711,"AUS","NSW SOP",2004,"Not Reported",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20244,357711,"AUS","NSW SOP",2005,"Not Reported",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20245,357711,"AUS","NSW SOP",2007,"Not Reported",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20246,357711,"AUS","NSW SOP",2010,"Not Reported",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20247,357711,"AUS","NSW SOP",2013,"Not Reported",28,"Yerranderie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20248,310129,"AUS","NSW SOP",2005,"Not Reported",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20249,310129,"AUS","NSW SOP",2007,"Not Reported",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20250,310129,"AUS","NSW SOP",2010,"Not Reported",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20251,310129,"AUS","NSW SOP",2013,"Not Reported",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20252,310129,"AUS","NSW SOP",2004,"Not Reported",28,"Yessabah","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20253,310130,"AUS","NSW SOP",2005,"Not Reported",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20254,310130,"AUS","NSW SOP",2007,"Not Reported",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20255,310130,"AUS","NSW SOP",2010,"Not Reported",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20256,310130,"AUS","NSW SOP",2013,"Not Reported",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20257,310130,"AUS","NSW SOP",2004,"Not Reported",28,"Yina","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20258,555576928,"AUS","NSW SOP",2013,"Not Reported",28,"Young","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20259,24281,"AUS","Qld Rapid Assessment",2010,"Not Reported",28,"Yungaburra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20260,24281,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Yungaburra","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20262,357716,"AUS","NSW SOP",2004,"Not Reported",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20263,2395,"AUS","NSW SOP",2005,"Not Reported",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20264,2395,"AUS","NSW SOP",2007,"Not Reported",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20265,2395,"AUS","NSW SOP",2010,"Not Reported",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20266,2395,"AUS","NSW SOP",2013,"Not Reported",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20267,357717,"AUS","NSW SOP",2005,"Not Reported",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20268,357717,"AUS","NSW SOP",2007,"Not Reported",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20269,357717,"AUS","NSW SOP",2010,"Not Reported",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20270,357717,"AUS","NSW SOP",2013,"Not Reported",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20271,2395,"AUS","NSW SOP",2004,"Not Reported",28,"Yuraygir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20272,357717,"AUS","NSW SOP",2004,"Not Reported",28,"Yuraygir","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20273,357716,"AUS","NSW SOP",2005,"Not Reported",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20274,357716,"AUS","NSW SOP",2007,"Not Reported",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20275,357716,"AUS","NSW SOP",2010,"Not Reported",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20276,357716,"AUS","NSW SOP",2013,"Not Reported",28,"Yurammie","State Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20277,555548445,"AUS","Qld Rapid Assessment",2012,"Not Reported",28,"Yuwi Paree Toolkoon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20595,11752,"MMR","Asean MEE",2012,"Not Reported",28,"Alaungdaw Kathapa","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20596,312901,"MMR","Asean MEE",2012,"Not Reported",28,"Indawgyi Lake","Wildlife Sanctuary and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20597,11813,"MMR","Asean MEE",2012,"Not Reported",28,"Inlay Lake ","Bird Sanctuary and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20598,71350,"MMR","Asean MEE",2012,"Not Reported",28,"Khakaborazi","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20599,8035,"MMR","Asean MEE",2012,"Not Reported",28,"Lampi Island","National Park and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20600,8033,"MMR","Asean MEE",2012,"Not Reported",28,"Mainmahla Kyun","Wildlife Sanctuary and ASEAN Heritage Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20601,8024,"MMR","Birdlife IBA",2003,"Not Reported",28,"Moyingyi Wetland","Bird Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20602,902413,"MMR","Birdlife IBA",2003,"Not Reported",28,"Moyingyi Wetland Wildlife Sanctuary","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20603,17266,"KWT","Birdlife IBA",1994,"Not Reported",28,"Sabah Al-Ahmad Natural Reserve","Natural Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20604,94072,"LTU","METT",2007,"Not Reported",28,"Cepkeliai","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20605,555543199,"LTU","METT",2006,"Not Reported",28,"Curonian Spit National Park","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20606,555541969,"LTU","Birdlife IBA",2013,"Not Reported",28,"Grybaulios žuvininkystės tvenkiniai","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20607,326015,"LTU","Birdlife IBA",2013,"Not Reported",28,"Kalviu atkuriamasis sklypas","Recuperational plot","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20608,555541919,"LTU","Birdlife IBA",2013,"Not Reported",28,"Kalvių karjeras","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20609,94073,"LTU","METT",2006,"Not Reported",28,"Kamanos","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20610,62282,"LTU","METT",2006,"Not Reported",28,"Labanoro regioninis parkas","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20611,62290,"LTU","METT",2006,"Not Reported",28,"Pajurio regioninis parkas","State Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20612,31550,"LTU","METT",2006,"Not Reported",28,"Viesviles valstybinis gamtinis rezervatas","State Strict Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20613,555547588,"LTU","METT",2006,"Not Reported",28,"Zuvintas","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20614,4205,"PNG","RAPPAM",2004,"Not Reported",28,"Bagiai (I)","Marine Managed Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20615,3146,"PNG","RAPPAM",2004,"Not Reported",28,"Baiyer River","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20616,4204,"PNG","RAPPAM",2004,"Not Reported",28,"Balek Wildlife Sanctuary","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20617,4201,"PNG","RAPPAM",2004,"Not Reported",28,"Baniara Island","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20618,3145,"PNG","RAPPAM",2004,"Not Reported",28,"Cape Wom Memorial Park","Protected Seascape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20619,106683,"PNG","RAPPAM",2004,"Not Reported",28,"Crater Mountain","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20620,15789,"PNG","RAPPAM",2004,"Not Reported",28,"Crown Island (III)","Marine Managed Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20621,36172,"PNG","RAPPAM",2004,"Not Reported",28,"Garu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20622,316895,"PNG","RAPPAM",2004,"Not Reported",28,"Hombareta","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20623,377712,"PNG","RAPPAM",2004,"Not Reported",28,"Hunstein Range","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20624,15782,"PNG","RAPPAM",2004,"Not Reported",28,"Iomare","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20625,15797,"PNG","RAPPAM",2004,"Not Reported",28,"Jimi Valley","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20626,220242,"PNG","RAPPAM",2004,"Not Reported",28,"Kamiali","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20627,377717,"PNG","RAPPAM",2004,"Not Reported",28,"Kavakuna Caves","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20628,377713,"PNG","RAPPAM",2004,"Not Reported",28,"Klampun","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20629,377710,"PNG","RAPPAM",2004,"Not Reported",28,"Kokoda Historical Track Reserve","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20630,61533,"PNG","METT",2005,"Not Reported",28,"Lake Kutubu","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20631,61533,"PNG","RAPPAM",2004,"Not Reported",28,"Lake Kutubu","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20632,9718,"PNG","RAPPAM",2004,"Not Reported",28,"Lake Lavu","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20633,316938,"PNG","RAPPAM",2004,"Not Reported",28,"Laugum","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20634,15894,"PNG","RAPPAM",2004,"Not Reported",28,"Lihir Island","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20635,61530,"PNG","RAPPAM",2004,"Not Reported",28,"Loroko","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20636,4202,"PNG","RAPPAM",2004,"Not Reported",28,"Maza (I)","Marine Managed Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20637,838,"PNG","RAPPAM",2004,"Not Reported",28,"Mc Adams","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20638,17823,"PNG","RAPPAM",2004,"Not Reported",28,"Moitaka Wildlife Sanctuary","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20639,9720,"PNG","RAPPAM",2004,"Not Reported",28,"Mojirau","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20640,9714,"PNG","RAPPAM",2004,"Not Reported",28,"Mt Gahavisuka","Provincial Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20641,316937,"PNG","RAPPAM",2004,"Not Reported",28,"Mt Kaindi","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20642,4197,"PNG","RAPPAM",2004,"Not Reported",28,"Mt Susu","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20643,71364,"PNG","RAPPAM",2004,"Not Reported",28,"Mt Wilhelm National Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20644,4199,"PNG","RAPPAM",2004,"Not Reported",28,"Namanatabu","Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20645,3148,"PNG","RAPPAM",2004,"Not Reported",28,"Nanuk Island District Park","Provincial Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20646,15781,"PNG","RAPPAM",2004,"Not Reported",28,"Ndrolowa (I)","Marine Managed Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20647,15783,"PNG","RAPPAM",2004,"Not Reported",28,"Neiru (Aird Hills)","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20648,377715,"PNG","RAPPAM",2004,"Not Reported",28,"Nusareng","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20649,15787,"PNG","RAPPAM",2004,"Not Reported",28,"Oi Mada Wara","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20650,19716,"PNG","RAPPAM",2004,"Not Reported",28,"Paga Hill National Park Scenic Reserve","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20651,15788,"PNG","RAPPAM",2004,"Not Reported",28,"Pirung","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20652,4123,"PNG","RAPPAM",2004,"Not Reported",28,"Pokili","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20653,12888,"PNG","RAPPAM",2004,"Not Reported",28,"Ranba Wildlife Sanctuary","Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20654,9719,"PNG","RAPPAM",2004,"Not Reported",28,"Sawataitai","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20655,220246,"PNG","RAPPAM",2004,"Not Reported",28,"Sinub","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20656,9721,"PNG","RAPPAM",2004,"Not Reported",28,"Siwi-Utame","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20657,316932,"PNG","RAPPAM",2004,"Not Reported",28,"Laugum","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20658,316933,"PNG","RAPPAM",2004,"Not Reported",28,"Tabad","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20659,20057,"PNG","RAPPAM",2004,"Not Reported",28,"Talele Island","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20660,377716,"PNG","RAPPAM",2004,"Not Reported",28,"Tavalo","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20661,4200,"PNG","RAPPAM",2004,"Not Reported",28,"Tonda","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20662,839,"PNG","RAPPAM",2004,"Not Reported",28,"Variarata","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20663,377711,"PNG","RAPPAM",2004,"Not Reported",28,"Wewak Peace Memorial Park","Protected Seascape","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20664,9717,"PNG","RAPPAM",2004,"Not Reported",28,"Zo-oimaga","Wildlife Management Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20665,555512000,"LKA","WH Outlook Report",2014,"Not Reported",28,"Central Highlands of Sri Lanka","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20666,16791,"LKA","WH Outlook Report",2014,"Not Reported",28,"Sinharaja Forest Reserve","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +20667,5190,"LKA","GOBI Survey",2006,"Not Reported",28,"Parc national des Volcans","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21107,875,"ZAF","METT",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21108,875,"ZAF","METT",2005,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21109,875,"ZAF","METT",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21110,875,"ZAF","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21111,301881,"ZAF","METT",2004,"Not Reported",28,"Agulhas National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21112,301881,"ZAF","METT",2008,"Not Reported",28,"Agulhas National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21113,301881,"ZAF","METT",2010,"Not Reported",28,"Agulhas National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21116,21158,"ZAF","METT",2011,"Not Reported",28,"Alice Glöckner Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21117,21158,"ZAF","METT",2012,"Not Reported",28,"Alice Glöckner Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21118,21158,"ZAF","METT",2013,"Not Reported",28,"Alice Glöckner Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21119,39745,"ZAF","METT",2010,"Not Reported",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21120,39745,"ZAF","METT",2011,"Not Reported",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21121,39745,"ZAF","METT",2012,"Not Reported",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21122,39745,"ZAF","METT",2013,"Not Reported",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21123,39745,"ZAF","RAPPAM",2001,"Not Reported",28,"Amatikulu Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21125,32825,"ZAF","METT",2010,"Not Reported",28,"Anysberg Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21126,555563501,"ZAF","METT",2011,"Not Reported",28,"Anysberg Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21127,555563501,"ZAF","METT",2012,"Not Reported",28,"Anysberg Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21128,555563501,"ZAF","METT",2013,"Not Reported",28,"Anysberg Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21129,32825,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Anysberg Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21130,32883,"ZAF","METT",2010,"Not Reported",28,"Atherstone Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21131,555579295,"ZAF","METT",2011,"Not Reported",28,"Atherstone Protected Natural Environment","Protected Environment","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21132,555579295,"ZAF","METT",2012,"Not Reported",28,"Atherstone Protected Natural Environment","Protected Environment","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21133,555579295,"ZAF","METT",2013,"Not Reported",28,"Atherstone Protected Natural Environment","Protected Environment","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21134,878,"ZAF","METT",2010,"Not Reported",28,"Augrabies Falls National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21135,878,"ZAF","METT",2012,"Not Reported",28,"Augrabies Falls National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21136,878,"ZAF","METT",2013,"Not Reported",28,"Augrabies Falls National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21137,7383,"ZAF","METT",2010,"Not Reported",28,"Barberspan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21138,7383,"ZAF","METT",2012,"Not Reported",28,"Barberspan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21139,7383,"ZAF","METT",2013,"Not Reported",28,"Barberspan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21140,351107,"ZAF","METT",2010,"Not Reported",28,"Mountainlands","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21141,351107,"ZAF","METT",2011,"Not Reported",28,"Mountainlands","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21142,351107,"ZAF","METT",2012,"Not Reported",28,"Mountainlands","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21143,351107,"ZAF","METT",2013,"Not Reported",28,"Mountainlands","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21148,62368,"ZAF","METT",2005,"Not Reported",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21149,62368,"ZAF","METT",2007,"Not Reported",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21150,62368,"ZAF","METT",2010,"Not Reported",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21152,62368,"ZAF","METT",2011,"Not Reported",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21153,62368,"ZAF","METT",2012,"Not Reported",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21154,62368,"ZAF","METT",2013,"Not Reported",28,"Baviaanskloof","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21155,351149,"ZAF","METT",2010,"Not Reported",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21156,351149,"ZAF","METT",2011,"Not Reported",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21157,351149,"ZAF","METT",2012,"Not Reported",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21158,351149,"ZAF","METT",2013,"Not Reported",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21159,351149,"ZAF","RAPPAM",2001,"Not Reported",28,"Beachwood Mangroves Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21160,555563589,"ZAF","METT",2010,"Not Reported",28,"Bewerwyk Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21161,555563589,"ZAF","METT",2011,"Not Reported",28,"Bewerwyk Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21162,555563589,"ZAF","METT",2012,"Not Reported",28,"Bewerwyk Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21163,555563589,"ZAF","METT",2013,"Not Reported",28,"Bewerwyk Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21164,555563846,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21165,306180,"ZAF","METT",2010,"Not Reported",28,"Bird Island Group Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21166,9130,"ZAF","METT",2010,"Not Reported",28,"Blouberg Protea Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21167,9130,"ZAF","METT",2011,"Not Reported",28,"Blouberg Protea Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21168,9130,"ZAF","METT",2012,"Not Reported",28,"Blouberg Protea Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21169,9130,"ZAF","METT",2013,"Not Reported",28,"Blouberg Protea Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21170,4938,"ZAF","METT",2010,"Not Reported",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21171,4938,"ZAF","METT",2011,"Not Reported",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21172,4938,"ZAF","METT",2012,"Not Reported",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21173,4938,"ZAF","METT",2013,"Not Reported",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21174,4938,"ZAF","RAPPAM",2001,"Not Reported",28,"Bluff Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21175,1356,"ZAF","METT",2011,"Not Reported",28,"Blyderivierspoort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21176,1356,"ZAF","METT",2012,"Not Reported",28,"Blyderivierspoort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21177,1356,"ZAF","METT",2013,"Not Reported",28,"Blyderivierspoort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21178,1356,"ZAF","METT",2010,"Not Reported",28,"Blyderivierspoort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21179,882,"ZAF","METT",2010,"Not Reported",28,"Bontebok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21180,882,"ZAF","METT",2012,"Not Reported",28,"Bontebok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21181,882,"ZAF","METT",2013,"Not Reported",28,"Bontebok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21182,300420,"ZAF","METT",2010,"Not Reported",28,"Borakalalo National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21183,300420,"ZAF","METT",2012,"Not Reported",28,"Borakalalo National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21184,300420,"ZAF","METT",2013,"Not Reported",28,"Borakalalo National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21185,555563761,"ZAF","METT",2010,"Not Reported",28,"Boschkop Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21186,555563761,"ZAF","METT",2012,"Not Reported",28,"Boschkop Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21187,555563761,"ZAF","METT",2013,"Not Reported",28,"Boschkop Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21188,351174,"ZAF","METT",2010,"Not Reported",28,"Bracken Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21189,555563455,"ZAF","METT",2009,"Not Reported",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21190,555563455,"ZAF","METT",2010,"Not Reported",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21191,555563455,"ZAF","METT",2011,"Not Reported",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21192,555563455,"ZAF","METT",2012,"Not Reported",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21193,555563455,"ZAF","METT",2013,"Not Reported",28,"Brenton Blue Butterfly Nature Reserve","Special Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21194,116337,"ZAF","METT",2010,"Not Reported",28,"Bosbokrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21195,32878,"ZAF","METT",2010,"Not Reported",28,"Caledon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21196,32878,"ZAF","METT",2011,"Not Reported",28,"Caledon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21197,32878,"ZAF","METT",2012,"Not Reported",28,"Caledon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21198,32878,"ZAF","METT",2013,"Not Reported",28,"Caledon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21199,4035,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Camdeboo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21200,555563860,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Karoo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21201,4035,"ZAF","METT",2010,"Not Reported",28,"Camdeboo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21202,4035,"ZAF","METT",2013,"Not Reported",28,"Camdeboo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21203,4035,"ZAF","METT",2012,"Not Reported",28,"Camdeboo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21204,902347,"ZAF","WH Outlook Report",2014,"Not Reported",28,"Cape Floral Region Protected Areas","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21205,220267,"ZAF","GOBI Survey",2006,"Not Reported",28,"Cape West Coast Biosphere Reserve","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21206,9107,"ZAF","METT",2010,"Not Reported",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21207,9107,"ZAF","METT",2011,"Not Reported",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21208,9107,"ZAF","METT",2012,"Not Reported",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21209,9107,"ZAF","METT",2013,"Not Reported",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21210,9107,"ZAF","RAPPAM",2001,"Not Reported",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21211,9107,"ZAF","Birdlife IBA",2007,"Not Reported",28,"Chelmsford Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21212,555563641,"ZAF","RAPPAM",2001,"Not Reported",28,"Coastal Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21213,9109,"ZAF","METT",2010,"Not Reported",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21214,9109,"ZAF","METT",2011,"Not Reported",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21215,9109,"ZAF","METT",2012,"Not Reported",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21216,9109,"ZAF","METT",2013,"Not Reported",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21217,9109,"ZAF","RAPPAM",2001,"Not Reported",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21218,555563657,"ZAF","METT",2010,"Not Reported",28,"Dassen Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21219,555563657,"ZAF","METT",2011,"Not Reported",28,"Dassen Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21220,555563657,"ZAF","METT",2012,"Not Reported",28,"Dassen Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21221,555563657,"ZAF","METT",2013,"Not Reported",28,"Dassen Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21222,4029,"ZAF","METT",2004,"Not Reported",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21223,4029,"ZAF","METT",2008,"Not Reported",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21224,4029,"ZAF","METT",2010,"Not Reported",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21225,4029,"ZAF","METT",2011,"Not Reported",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21226,4029,"ZAF","METT",2012,"Not Reported",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21227,4029,"ZAF","METT",2013,"Not Reported",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21228,4029,"ZAF","Birdlife IBA",1998,"Not Reported",28,"De Hoop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21229,555563510,"ZAF","METT",2004,"Not Reported",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21230,555563510,"ZAF","METT",2008,"Not Reported",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21231,555563510,"ZAF","METT",2010,"Not Reported",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21232,555563510,"ZAF","METT",2011,"Not Reported",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21233,555563510,"ZAF","METT",2012,"Not Reported",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21234,555563510,"ZAF","METT",2013,"Not Reported",28,"De Mond Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21235,351215,"ZAF","METT",2010,"Not Reported",28,"Hlinza Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21236,351215,"ZAF","RAPPAM",2001,"Not Reported",28,"Hlinza Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21237,555579267,"ZAF","METT",2010,"Not Reported",28,"Doornkloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21238,555579267,"ZAF","METT",2011,"Not Reported",28,"Doornkloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21239,555579267,"ZAF","METT",2012,"Not Reported",28,"Doornkloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21240,555579267,"ZAF","METT",2013,"Not Reported",28,"Doornkloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21241,4944,"ZAF","METT",2010,"Not Reported",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21242,4944,"ZAF","METT",2011,"Not Reported",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21243,4944,"ZAF","METT",2012,"Not Reported",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21244,4944,"ZAF","METT",2013,"Not Reported",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21245,4944,"ZAF","RAPPAM",2001,"Not Reported",28,"Doreen Clark Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21246,308688,"ZAF","METT",2010,"Not Reported",28,"Driftsands Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21247,308688,"ZAF","METT",2011,"Not Reported",28,"Driftsands Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21248,308688,"ZAF","METT",2012,"Not Reported",28,"Driftsands Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21249,308688,"ZAF","METT",2013,"Not Reported",28,"Driftsands Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21250,9081,"ZAF","METT",2011,"Not Reported",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21251,9081,"ZAF","METT",2012,"Not Reported",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21252,9081,"ZAF","METT",2013,"Not Reported",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21254,9081,"ZAF","Birdlife IBA",2007,"Not Reported",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21255,9081,"ZAF","METT",2004,"Not Reported",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21256,9081,"ZAF","METT",2005,"Not Reported",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21258,9081,"ZAF","METT",2010,"Not Reported",28,"Dwesa-Cwebe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21259,555563684,"ZAF","METT",2010,"Not Reported",28,"Dyer Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21260,555563684,"ZAF","METT",2011,"Not Reported",28,"Dyer Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21261,555563684,"ZAF","METT",2012,"Not Reported",28,"Dyer Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21262,555563684,"ZAF","METT",2013,"Not Reported",28,"Dyer Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21263,555563692,"ZAF","METT",2010,"Not Reported",28,"Emakhosini Heritage Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21264,26029,"ZAF","METT",2010,"Not Reported",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21265,26029,"ZAF","METT",2011,"Not Reported",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21266,26029,"ZAF","METT",2012,"Not Reported",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21267,26029,"ZAF","METT",2013,"Not Reported",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21268,26029,"ZAF","RAPPAM",2001,"Not Reported",28,"Enseleni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21270,4934,"ZAF","METT",2011,"Not Reported",28,"Entumeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21271,4934,"ZAF","METT",2012,"Not Reported",28,"Entumeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21272,4934,"ZAF","METT",2013,"Not Reported",28,"Entumeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21273,4934,"ZAF","RAPPAM",2001,"Not Reported",28,"Entumeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21274,555563696,"ZAF","METT",2010,"Not Reported",28,"Erfenis Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21275,555563696,"ZAF","METT",2011,"Not Reported",28,"Erfenis Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21276,555563696,"ZAF","METT",2012,"Not Reported",28,"Erfenis Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21277,555563696,"ZAF","METT",2013,"Not Reported",28,"Erfenis Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21278,555563700,"ZAF","RAPPAM",2001,"Not Reported",28,"False Bay Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21279,555563706,"ZAF","METT",2010,"Not Reported",28,"Formosa 203 JT","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21280,555563706,"ZAF","METT",2011,"Not Reported",28,"Formosa 203 JT","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21281,555563706,"ZAF","METT",2012,"Not Reported",28,"Formosa 203 JT","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21282,555563706,"ZAF","METT",2013,"Not Reported",28,"Formosa 203 JT","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21283,4027,"ZAF","METT",2007,"Not Reported",28,"Gamka Mountain Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21284,4027,"ZAF","METT",2009,"Not Reported",28,"Gamka Mountain Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21285,4027,"ZAF","METT",2010,"Not Reported",28,"Gamka Mountain Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21286,881,"ZAF","METT",2010,"Not Reported",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21287,881,"ZAF","METT",0,"Not Reported",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21288,881,"ZAF","METT",2012,"Not Reported",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21289,881,"ZAF","METT",2013,"Not Reported",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21290,351303,"ZAF","METT",2010,"Not Reported",28,"Gariep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21291,351303,"ZAF","METT",2011,"Not Reported",28,"Gariep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21292,351303,"ZAF","METT",2012,"Not Reported",28,"Gariep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21293,351303,"ZAF","METT",2013,"Not Reported",28,"Gariep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21294,351263,"ZAF","METT",2010,"Not Reported",28,"Geelkrans Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21295,555563513,"ZAF","METT",2011,"Not Reported",28,"Geelkrans Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21296,555563513,"ZAF","METT",2012,"Not Reported",28,"Geelkrans Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21297,555563513,"ZAF","METT",2013,"Not Reported",28,"Geelkrans Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21298,555563720,"ZAF","RAPPAM",2001,"Not Reported",28,"Giant's Castle Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21299,879,"ZAF","METT",2010,"Not Reported",28,"Golden Gate Highlands National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21300,879,"ZAF","METT",2012,"Not Reported",28,"Golden Gate Highlands National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21301,879,"ZAF","METT",2013,"Not Reported",28,"Golden Gate Highlands National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21302,879,"ZAF","Birdlife IBA",2006,"Not Reported",28,"Golden Gate Highlands National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21303,4026,"ZAF","METT",2007,"Not Reported",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21304,4026,"ZAF","METT",2009,"Not Reported",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21305,4026,"ZAF","METT",2010,"Not Reported",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21306,4026,"ZAF","METT",2011,"Not Reported",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21307,4026,"ZAF","METT",2012,"Not Reported",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21308,4026,"ZAF","METT",2013,"Not Reported",28,"Goukamma Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21309,351273,"ZAF","METT",2010,"Not Reported",28,"Great Fish River Mouth Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21310,351273,"ZAF","METT",2011,"Not Reported",28,"Great Fish River Mouth Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21311,351273,"ZAF","METT",2012,"Not Reported",28,"Great Fish River Mouth Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21312,351273,"ZAF","METT",2013,"Not Reported",28,"Great Fish River Mouth Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21313,9109,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Coleford Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21314,116275,"ZAF","Enhancing Our Heritage",2003,"Not Reported",28,"St. Lucia Game Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21315,555563491,"ZAF","METT",2010,"Not Reported",28,"Groendal Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21316,555563491,"ZAF","METT",2011,"Not Reported",28,"Groendal Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21317,555563491,"ZAF","METT",2012,"Not Reported",28,"Groendal Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21318,555563491,"ZAF","METT",2013,"Not Reported",28,"Groendal Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21319,555563492,"ZAF","METT",2007,"Not Reported",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21320,555563492,"ZAF","METT",2010,"Not Reported",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21321,555563514,"ZAF","METT",2010,"Not Reported",28,"Grootbosch Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21322,555563514,"ZAF","METT",2011,"Not Reported",28,"Grootbosch Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21323,555563514,"ZAF","METT",2012,"Not Reported",28,"Grootbosch Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21324,555563514,"ZAF","METT",2013,"Not Reported",28,"Grootbosch Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21326,555563492,"ZAF","METT",2011,"Not Reported",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21327,555563492,"ZAF","METT",2012,"Not Reported",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21328,555563492,"ZAF","METT",2013,"Not Reported",28,"Groot-Winterhoek Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21329,4764,"ZAF","METT",2010,"Not Reported",28,"Hans Merensky Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21330,4764,"ZAF","METT",2011,"Not Reported",28,"Hans Merensky Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21331,4764,"ZAF","METT",2012,"Not Reported",28,"Hans Merensky Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21332,4764,"ZAF","METT",2013,"Not Reported",28,"Hans Merensky Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21333,4766,"ZAF","METT",2013,"Not Reported",28,"Happy Rest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21334,351296,"ZAF","METT",2010,"Not Reported",28,"Harmony Flats Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21335,4943,"ZAF","METT",2010,"Not Reported",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21336,4943,"ZAF","METT",2011,"Not Reported",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21337,4943,"ZAF","METT",2012,"Not Reported",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21338,4943,"ZAF","METT",2013,"Not Reported",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21339,4943,"ZAF","RAPPAM",2001,"Not Reported",28,"Harold Johnson Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21340,26035,"ZAF","METT",2010,"Not Reported",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21341,26035,"ZAF","METT",2011,"Not Reported",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21342,26035,"ZAF","METT",2012,"Not Reported",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21343,26035,"ZAF","METT",2013,"Not Reported",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21344,26035,"ZAF","RAPPAM",2001,"Not Reported",28,"Himeville Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21345,39746,"ZAF","METT",2010,"Not Reported",28,"Hlatikulu","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21346,555563517,"ZAF","METT",2011,"Not Reported",28,"Hlathikulu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21347,555563517,"ZAF","METT",2012,"Not Reported",28,"Hlathikulu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21348,555563517,"ZAF","METT",2013,"Not Reported",28,"Hlathikulu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21349,39746,"ZAF","RAPPAM",2001,"Not Reported",28,"Hlatikulu","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21350,116189,"ZAF","RAPPAM",2001,"Not Reported",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21351,116189,"ZAF","METT",2011,"Not Reported",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21352,116189,"ZAF","METT",2012,"Not Reported",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21353,116189,"ZAF","METT",2013,"Not Reported",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21354,116189,"ZAF","METT",2010,"Not Reported",28,"Hluhluwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21355,116251,"ZAF","METT",2005,"Not Reported",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21356,116251,"ZAF","METT",2010,"Not Reported",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21357,116251,"ZAF","METT",2012,"Not Reported",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21358,116251,"ZAF","METT",2011,"Not Reported",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21360,116251,"ZAF","METT",2013,"Not Reported",28,"Hluleka Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21361,32829,"ZAF","METT",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21362,32829,"ZAF","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21363,32829,"ZAF","METT",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21364,32829,"ZAF","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21365,351323,"ZAF","METT",2010,"Not Reported",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21366,351323,"ZAF","METT",2011,"Not Reported",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21367,351323,"ZAF","METT",2012,"Not Reported",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21368,351323,"ZAF","METT",2013,"Not Reported",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21369,351323,"ZAF","RAPPAM",2001,"Not Reported",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21370,351323,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Impendle Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21371,198302,"ZAF","METT",2009,"Not Reported",28,"iSimangaliso Wetland Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21372,198302,"ZAF","METT",2010,"Not Reported",28,"iSimangaliso Wetland Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21373,198302,"ZAF","WH Outlook Report",2014,"Not Reported",28,"iSimangaliso Wetland Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21374,1350,"ZAF","RAPPAM",2001,"Not Reported",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21375,1350,"ZAF","METT",2010,"Not Reported",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21376,1350,"ZAF","METT",2011,"Not Reported",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21377,1350,"ZAF","METT",2012,"Not Reported",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21378,1350,"ZAF","METT",2013,"Not Reported",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21379,1350,"ZAF","Birdlife IBA",2006,"Not Reported",28,"Itala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21381,7508,"BWA","METT",2010,"Not Reported",28,"Gemsbok","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21382,874,"ZAF","METT",2012,"Not Reported",28,"Kalahari Gemsbok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21383,874,"ZAF","METT",2013,"Not Reported",28,"Kalahari Gemsbok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21384,874,"ZAF","Birdlife IBA",2008,"Not Reported",28,"Kalahari Gemsbok National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21385,21149,"ZAF","METT",2010,"Not Reported",28,"Kalkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21386,21149,"ZAF","METT",2011,"Not Reported",28,"Kalkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21387,21149,"ZAF","METT",2012,"Not Reported",28,"Kalkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21388,21149,"ZAF","METT",2013,"Not Reported",28,"Kalkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21389,555563742,"ZAF","RAPPAM",2001,"Not Reported",28,"Kamberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21390,62389,"ZAF","METT",2009,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21391,62389,"ZAF","METT",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21392,62389,"ZAF","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21393,62389,"ZAF","METT",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21394,62389,"ZAF","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21395,4936,"ZAF","METT",2010,"Not Reported",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21396,4936,"ZAF","METT",2011,"Not Reported",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21397,4936,"ZAF","METT",2012,"Not Reported",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21398,4936,"ZAF","METT",2013,"Not Reported",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21399,4936,"ZAF","RAPPAM",2001,"Not Reported",28,"Karkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21400,876,"ZAF","METT",2010,"Not Reported",28,"Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21401,876,"ZAF","METT",2012,"Not Reported",28,"Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21402,876,"ZAF","Birdlife IBA",2007,"Not Reported",28,"Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21403,876,"ZAF","METT",2013,"Not Reported",28,"Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21404,4940,"ZAF","METT",2010,"Not Reported",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21405,4940,"ZAF","METT",2011,"Not Reported",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21406,4940,"ZAF","METT",2012,"Not Reported",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21407,4940,"ZAF","METT",2013,"Not Reported",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21408,4940,"ZAF","RAPPAM",2001,"Not Reported",28,"Kenneth Stainbank Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21409,32830,"ZAF","METT",2010,"Not Reported",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21410,32830,"ZAF","METT",2011,"Not Reported",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21411,32830,"ZAF","METT",2012,"Not Reported",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21412,32830,"ZAF","METT",2013,"Not Reported",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21413,32830,"ZAF","METT",2007,"Not Reported",28,"Keurbooms River Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21415,168204,"ZAF","GOBI Survey",2006,"Not Reported",28,"Kogelberg Biosphere Reserve","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21416,7378,"ZAF","METT",2006,"Not Reported",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21417,7378,"ZAF","METT",2007,"Not Reported",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21418,7378,"ZAF","METT",2009,"Not Reported",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21419,7378,"ZAF","METT",2010,"Not Reported",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21420,7378,"ZAF","METT",2011,"Not Reported",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21421,7378,"ZAF","METT",2012,"Not Reported",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21422,7378,"ZAF","METT",2013,"Not Reported",28,"Kogelberg","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21424,555563835,"ZAF","METT",2010,"Not Reported",28,"Koppies Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21425,555563835,"ZAF","METT",2011,"Not Reported",28,"Koppies Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21426,555563835,"ZAF","METT",2012,"Not Reported",28,"Koppies Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21427,555563835,"ZAF","METT",2013,"Not Reported",28,"Koppies Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21428,26031,"ZAF","METT",2010,"Not Reported",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21429,26031,"ZAF","METT",2011,"Not Reported",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21430,26031,"ZAF","METT",2012,"Not Reported",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21431,26031,"ZAF","METT",2013,"Not Reported",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21432,26031,"ZAF","RAPPAM",2001,"Not Reported",28,"Krantzkloof Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21433,873,"ZAF","METT",2010,"Not Reported",28,"Kruger National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21434,873,"ZAF","METT",2012,"Not Reported",28,"Kruger National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21435,873,"ZAF","METT",2013,"Not Reported",28,"Kruger National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21436,900553,"ZAF","GOBI Survey",2006,"Not Reported",28,"Kruger to Canyons","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21437,555563839,"ZAF","METT",2010,"Not Reported",28,"Kruis River Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21438,555563839,"ZAF","METT",2011,"Not Reported",28,"Kruis River Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21439,555563839,"ZAF","METT",2012,"Not Reported",28,"Kruis River Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21440,555563839,"ZAF","METT",2013,"Not Reported",28,"Kruis River Wetland Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21441,26044,"ZAF","METT",2010,"Not Reported",28,"Lake Eteza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21442,26044,"ZAF","METT",2011,"Not Reported",28,"Lake Eteza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21443,26044,"ZAF","METT",2012,"Not Reported",28,"Lake Eteza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21444,26044,"ZAF","METT",2013,"Not Reported",28,"Lake Eteza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21445,68174,"ZAF","Birdlife IBA",1998,"Not Reported",28,"Lake Sibaya","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21446,555579296,"ZAF","Birdlife IBA",1998,"Not Reported",28,"Lake Sibayi Fresh Water Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21447,68168,"ZAF","Birdlife IBA",2013,"Not Reported",28,"St. Lucia System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21448,555563846,"ZAF","METT",2005,"Not Reported",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21449,555563846,"ZAF","METT",2011,"Not Reported",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21450,555563846,"ZAF","METT",2012,"Not Reported",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21451,555563846,"ZAF","METT",2013,"Not Reported",28,"Lambert's Bay Penguin Island Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21452,4767,"ZAF","METT",2010,"Not Reported",28,"Langjan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21453,4767,"ZAF","METT",2011,"Not Reported",28,"Langjan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21454,4767,"ZAF","METT",2012,"Not Reported",28,"Langjan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21455,4767,"ZAF","METT",2013,"Not Reported",28,"Langjan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21456,555563852,"ZAF","METT",2010,"Not Reported",28,"Leeuwfontein Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21457,555563852,"ZAF","METT",2012,"Not Reported",28,"Leeuwfontein Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21458,555563852,"ZAF","METT",2011,"Not Reported",28,"Leeuwfontein Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21459,555563852,"ZAF","METT",2013,"Not Reported",28,"Leeuwfontein Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21460,116363,"ZAF","METT",2010,"Not Reported",28,"Nature Reserve: Co-operation and Development","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21461,555563891,"ZAF","METT",2010,"Not Reported",28,"Letaba Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21462,555563891,"ZAF","METT",2011,"Not Reported",28,"Letaba Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21463,555563891,"ZAF","METT",2012,"Not Reported",28,"Letaba Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21464,555563891,"ZAF","METT",2013,"Not Reported",28,"Letaba Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21465,4763,"ZAF","METT",2011,"Not Reported",28,"Loskop Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21466,4763,"ZAF","METT",2012,"Not Reported",28,"Loskop Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21467,4763,"ZAF","METT",2013,"Not Reported",28,"Loskop Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21468,4763,"ZAF","METT",2010,"Not Reported",28,"Loskop Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21469,555563898,"ZAF","RAPPAM",2001,"Not Reported",28,"Loteni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21470,351099,"ZAF","METT",2010,"Not Reported",28,"Mabusa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21471,351099,"ZAF","METT",2011,"Not Reported",28,"Mabusa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21472,351099,"ZAF","METT",2012,"Not Reported",28,"Mabusa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21473,351099,"ZAF","METT",2013,"Not Reported",28,"Mabusa Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21474,39832,"ZAF","METT",2010,"Not Reported",28,"Madikwe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21475,39832,"ZAF","METT",2012,"Not Reported",28,"Madikwe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21476,39832,"ZAF","METT",2013,"Not Reported",28,"Madikwe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21477,351100,"ZAF","METT",2011,"Not Reported",28,"Mahushe Shongwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21478,351100,"ZAF","METT",2012,"Not Reported",28,"Mahushe Shongwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21479,351100,"ZAF","METT",2013,"Not Reported",28,"Mahushe Shongwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21480,351100,"ZAF","METT",2010,"Not Reported",28,"Mahushe Shongwe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21481,26822,"ZAF","RAPPAM",2001,"Not Reported",28,"Makasa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21483,351426,"ZAF","METT",2010,"Not Reported",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21484,351426,"ZAF","METT",2011,"Not Reported",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21485,351426,"ZAF","METT",2012,"Not Reported",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21486,351426,"ZAF","METT",2013,"Not Reported",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21487,351426,"ZAF","RAPPAM",2001,"Not Reported",28,"Manguzi Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21488,555563911,"ZAF","METT",2010,"Not Reported",28,"Mantrombi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21489,555563911,"ZAF","METT",2011,"Not Reported",28,"Mantrombi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21490,555563911,"ZAF","METT",2012,"Not Reported",28,"Mantrombi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21491,555563911,"ZAF","METT",2013,"Not Reported",28,"Mantrombi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21492,9072,"ZAF","METT",2011,"Not Reported",28,"Manyeleti Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21493,9072,"ZAF","METT",2012,"Not Reported",28,"Manyeleti Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21494,9072,"ZAF","METT",2013,"Not Reported",28,"Manyeleti Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21495,9072,"ZAF","METT",2010,"Not Reported",28,"Manyeleti Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21496,555563526,"ZAF","RAPPAM",2001,"Not Reported",28,"Maphelane Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21497,308687,"ZAF","METT",2010,"Not Reported",28,"Mapungupwe National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21498,308687,"ZAF","METT",2012,"Not Reported",28,"Mapungupwe National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21499,308687,"ZAF","METT",2013,"Not Reported",28,"Mapungupwe National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21500,116257,"ZAF","METT",2010,"Not Reported",28,"Marakele National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21501,116257,"ZAF","METT",2012,"Not Reported",28,"Marakele National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21502,116257,"ZAF","METT",2013,"Not Reported",28,"Marakele National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21503,555563913,"ZAF","METT",2010,"Not Reported",28,"Maria Moroka National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21504,555563913,"ZAF","METT",2011,"Not Reported",28,"Maria Moroka National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21505,555563913,"ZAF","METT",2012,"Not Reported",28,"Maria Moroka National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21506,555563913,"ZAF","METT",2013,"Not Reported",28,"Maria Moroka National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21507,21161,"ZAF","METT",2011,"Not Reported",28,"Marievale Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21508,21161,"ZAF","METT",2012,"Not Reported",28,"Marievale Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21509,21161,"ZAF","METT",2013,"Not Reported",28,"Marievale Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21510,555563527,"ZAF","METT",2010,"Not Reported",28,"Marloth Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21511,555563527,"ZAF","METT",2011,"Not Reported",28,"Marloth Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21512,555563527,"ZAF","METT",2012,"Not Reported",28,"Marloth Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21513,555563527,"ZAF","METT",2013,"Not Reported",28,"Marloth Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21514,300345,"ZAF","METT",2005,"Not Reported",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21515,300345,"ZAF","METT",2007,"Not Reported",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21516,300345,"ZAF","METT",2010,"Not Reported",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21518,300345,"ZAF","METT",2011,"Not Reported",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21519,300345,"ZAF","METT",2012,"Not Reported",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21520,300345,"ZAF","METT",2013,"Not Reported",28,"Matjies Rivier Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21521,62407,"ZAF","RAPPAM",2001,"Not Reported",28,"Matshitsholo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21522,300529,"ZAF","METT",2010,"Not Reported",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21523,300529,"ZAF","METT",2011,"Not Reported",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21524,300529,"ZAF","METT",2012,"Not Reported",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21525,300529,"ZAF","METT",2013,"Not Reported",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21526,300529,"ZAF","RAPPAM",2001,"Not Reported",28,"Mbumbazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21527,351102,"ZAF","METT",2010,"Not Reported",28,"Mdala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21528,351102,"ZAF","METT",2011,"Not Reported",28,"Mdala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21529,351102,"ZAF","METT",2012,"Not Reported",28,"Mdala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21530,351102,"ZAF","METT",2013,"Not Reported",28,"Mdala Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21531,9103,"ZAF","METT",2010,"Not Reported",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21532,9103,"ZAF","METT",2011,"Not Reported",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21533,9103,"ZAF","METT",2012,"Not Reported",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21534,9103,"ZAF","METT",2013,"Not Reported",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21535,9103,"ZAF","RAPPAM",2001,"Not Reported",28,"Midmar Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21536,306181,"ZAF","METT",2010,"Not Reported",28,"Pondoland Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21537,555563494,"ZAF","RAPPAM",2001,"Not Reported",28,"Mkhomazi Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21538,351104,"ZAF","METT",2010,"Not Reported",28,"Mkhombo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21539,351104,"ZAF","METT",2011,"Not Reported",28,"Mkhombo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21540,351104,"ZAF","METT",2012,"Not Reported",28,"Mkhombo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21541,351104,"ZAF","METT",2013,"Not Reported",28,"Mkhombo Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21542,555563944,"ZAF","RAPPAM",2001,"Not Reported",28,"Mkuzi Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21543,555563944,"ZAF","Birdlife IBA",2006,"Not Reported",28,"Mkuzi Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21544,32919,"ZAF","METT",2010,"Not Reported",28,"Modjadji Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21545,32919,"ZAF","METT",2011,"Not Reported",28,"Modjadji Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21546,32919,"ZAF","METT",2012,"Not Reported",28,"Modjadji Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21547,32919,"ZAF","METT",2013,"Not Reported",28,"Modjadji Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21548,555563463,"ZAF","METT",2010,"Not Reported",28,"Mokala National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21549,555563463,"ZAF","METT",2012,"Not Reported",28,"Mokala National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21550,555563463,"ZAF","METT",2013,"Not Reported",28,"Mokala National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21551,555563945,"ZAF","METT",2010,"Not Reported",28,"Moletzie Bird Sanctuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21552,555563945,"ZAF","METT",2011,"Not Reported",28,"Moletzie Bird Sanctuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21553,555563945,"ZAF","METT",2012,"Not Reported",28,"Moletzie Bird Sanctuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21554,555563945,"ZAF","METT",2013,"Not Reported",28,"Moletzie Bird Sanctuary","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21555,32834,"ZAF","METT",2010,"Not Reported",28,"Molopo Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21556,32834,"ZAF","METT",2012,"Not Reported",28,"Molopo Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21557,32834,"ZAF","METT",2013,"Not Reported",28,"Molopo Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21558,21154,"ZAF","METT",2010,"Not Reported",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21559,21154,"ZAF","RAPPAM",2001,"Not Reported",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21560,877,"ZAF","METT",2010,"Not Reported",28,"Mountain Zebra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21561,877,"ZAF","METT",2012,"Not Reported",28,"Mountain Zebra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21562,877,"ZAF","METT",2013,"Not Reported",28,"Mountain Zebra National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21563,21154,"ZAF","METT",2011,"Not Reported",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21564,21154,"ZAF","METT",2012,"Not Reported",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21565,21154,"ZAF","METT",2013,"Not Reported",28,"Mount Currie Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21566,351103,"ZAF","METT",2011,"Not Reported",28,"Mthethomusha Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21567,351103,"ZAF","METT",2012,"Not Reported",28,"Mthethomusha Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21568,351103,"ZAF","METT",2013,"Not Reported",28,"Mthethomusha Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21569,351103,"ZAF","METT",2010,"Not Reported",28,"Mthethomusha Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21570,555563951,"ZAF","METT",2010,"Not Reported",28,"Nababiep Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21571,308685,"ZAF","METT",2010,"Not Reported",28,"Namaqua National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21572,308685,"ZAF","METT",2012,"Not Reported",28,"Namaqua National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21573,308685,"ZAF","METT",2013,"Not Reported",28,"Namaqua National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21574,351458,"ZAF","METT",2010,"Not Reported",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21575,351458,"ZAF","METT",2011,"Not Reported",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21576,351458,"ZAF","METT",2012,"Not Reported",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21577,351458,"ZAF","METT",2013,"Not Reported",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21578,351458,"ZAF","RAPPAM",2001,"Not Reported",28,"Ncandu Nature Reserve","Forest Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21579,555563966,"ZAF","METT",2011,"Not Reported",28,"Nduli Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21580,555563966,"ZAF","METT",2012,"Not Reported",28,"Nduli Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21581,555563966,"ZAF","METT",2013,"Not Reported",28,"Nduli Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21582,555563966,"ZAF","METT",2010,"Not Reported",28,"Nduli Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21583,116329,"ZAF","METT",2010,"Not Reported",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21584,116329,"ZAF","METT",2011,"Not Reported",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21585,116329,"ZAF","METT",2012,"Not Reported",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21586,116329,"ZAF","METT",2013,"Not Reported",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21587,116329,"ZAF","Birdlife IBA",1998,"Not Reported",28,"Ndumu Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21588,145553,"ZAF","Birdlife IBA",1998,"Not Reported",28,"Ndumo Game Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21589,145553,"ZAF","RAPPAM",2001,"Not Reported",28,"Ndumo Game Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21590,555563973,"ZAF","METT",2003,"Not Reported",28,"Ngoya Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21591,555563973,"ZAF","METT",2010,"Not Reported",28,"Ngoya Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21592,555563973,"ZAF","RAPPAM",2001,"Not Reported",28,"Ngoya Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21593,39753,"ZAF","METT",2010,"Not Reported",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21594,39753,"ZAF","METT",2011,"Not Reported",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21595,39753,"ZAF","METT",2012,"Not Reported",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21596,39753,"ZAF","METT",2013,"Not Reported",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21597,39753,"ZAF","RAPPAM",2001,"Not Reported",28,"Nkandla Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21598,9126,"ZAF","METT",2010,"Not Reported",28,"Nooitgedacht Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21599,9126,"ZAF","METT",2011,"Not Reported",28,"Nooitgedacht Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21600,9126,"ZAF","METT",2012,"Not Reported",28,"Nooitgedacht Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21601,9126,"ZAF","METT",2013,"Not Reported",28,"Nooitgedacht Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21602,26040,"ZAF","METT",2010,"Not Reported",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21603,26040,"ZAF","METT",2011,"Not Reported",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21604,26040,"ZAF","METT",2012,"Not Reported",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21605,26040,"ZAF","METT",2013,"Not Reported",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21606,26040,"ZAF","RAPPAM",2001,"Not Reported",28,"North Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21607,351498,"ZAF","METT",2010,"Not Reported",28,"Nsikeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21608,351498,"ZAF","METT",2011,"Not Reported",28,"Nsikeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21609,351498,"ZAF","METT",2012,"Not Reported",28,"Nsikeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21610,351498,"ZAF","METT",2013,"Not Reported",28,"Nsikeni Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21611,9115,"ZAF","METT",2010,"Not Reported",28,"Nwanedi National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21612,9115,"ZAF","METT",2011,"Not Reported",28,"Nwanedi National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21613,9115,"ZAF","METT",2012,"Not Reported",28,"Nwanedi National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21614,9115,"ZAF","METT",2013,"Not Reported",28,"Nwanedi National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21615,7384,"ZAF","METT",2010,"Not Reported",28,"Nylsvley Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21616,7384,"ZAF","METT",2011,"Not Reported",28,"Nylsvley Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21617,7384,"ZAF","METT",2012,"Not Reported",28,"Nylsvley Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21618,7384,"ZAF","METT",2013,"Not Reported",28,"Nylsvley Private Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21619,7386,"ZAF","METT",2010,"Not Reported",28,"Ohrigstad Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21620,7386,"ZAF","METT",2011,"Not Reported",28,"Ohrigstad Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21621,7386,"ZAF","METT",2012,"Not Reported",28,"Ohrigstad Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21622,7386,"ZAF","METT",2013,"Not Reported",28,"Ohrigstad Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21623,351423,"ZAF","METT",2010,"Not Reported",28,"Malekgalonyane Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21624,555563973,"ZAF","Birdlife IBA",2009,"Not Reported",28,"Ngoya Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21625,32835,"ZAF","METT",2007,"Not Reported",28,"Oorlogskloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21626,32835,"ZAF","METT",2010,"Not Reported",28,"Oorlogskloof Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21628,116330,"ZAF","METT",2010,"Not Reported",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21629,116330,"ZAF","METT",2011,"Not Reported",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21630,116330,"ZAF","METT",2012,"Not Reported",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21631,116330,"ZAF","METT",2013,"Not Reported",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21632,116330,"ZAF","RAPPAM",2001,"Not Reported",28,"Ophathe Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21633,4759,"ZAF","RAPPAM",2001,"Not Reported",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21634,4759,"ZAF","METT",2010,"Not Reported",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21635,4759,"ZAF","METT",2011,"Not Reported",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21636,4759,"ZAF","METT",2012,"Not Reported",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21637,4759,"ZAF","METT",2013,"Not Reported",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21638,4759,"ZAF","Birdlife IBA",2007,"Not Reported",28,"Oribi Gorge Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21639,4034,"ZAF","METT",2010,"Not Reported",28,"Oviston Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21640,4034,"ZAF","METT",2011,"Not Reported",28,"Oviston Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21641,4034,"ZAF","METT",2012,"Not Reported",28,"Oviston Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21642,4034,"ZAF","METT",2013,"Not Reported",28,"Oviston Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21643,7385,"ZAF","METT",2010,"Not Reported",28,"Percy Fyfe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21644,7385,"ZAF","METT",2011,"Not Reported",28,"Percy Fyfe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21645,7385,"ZAF","METT",2012,"Not Reported",28,"Percy Fyfe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21646,7385,"ZAF","METT",2013,"Not Reported",28,"Percy Fyfe Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21647,351522,"ZAF","METT",2010,"Not Reported",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21648,9129,"ZAF","METT",2010,"Not Reported",28,"Pilanesberg National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21649,9129,"ZAF","METT",2012,"Not Reported",28,"Pilanesberg National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21650,9129,"ZAF","METT",2013,"Not Reported",28,"Pilanesberg National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21651,9129,"ZAF","Birdlife IBA",2008,"Not Reported",28,"Pilanesberg National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21652,351531,"ZAF","RAPPAM",2001,"Not Reported",28,"Poccolan Robinson's Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21653,300440,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Pietersburg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21654,306181,"ZAF","METT",2005,"Not Reported",28,"Pondoland Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21655,306181,"ZAF","METT",2012,"Not Reported",28,"Pondoland Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21656,351522,"ZAF","METT",2011,"Not Reported",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21657,351522,"ZAF","METT",2012,"Not Reported",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21658,351522,"ZAF","METT",2013,"Not Reported",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21659,351522,"ZAF","RAPPAM",2001,"Not Reported",28,"Pongola Bush Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21661,555564003,"ZAF","METT",2010,"Not Reported",28,"Potlake Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21662,555564003,"ZAF","METT",2011,"Not Reported",28,"Potlake Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21663,555564003,"ZAF","METT",2012,"Not Reported",28,"Potlake Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21664,555564003,"ZAF","METT",2013,"Not Reported",28,"Potlake Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21665,39755,"ZAF","METT",2010,"Not Reported",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21666,39755,"ZAF","RAPPAM",2001,"Not Reported",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21667,39755,"ZAF","METT",2011,"Not Reported",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21668,39755,"ZAF","METT",2012,"Not Reported",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21669,39755,"ZAF","METT",2013,"Not Reported",28,"Qudeni Forest Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21670,26036,"ZAF","METT",2010,"Not Reported",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21671,26036,"ZAF","METT",2011,"Not Reported",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21672,26036,"ZAF","METT",2012,"Not Reported",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21673,26036,"ZAF","METT",2013,"Not Reported",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21674,26036,"ZAF","RAPPAM",2001,"Not Reported",28,"Queen Elizabeth Park Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21675,13307,"ZAF","METT",2010,"Not Reported",28,"Richards Bay Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21676,13307,"ZAF","METT",2011,"Not Reported",28,"Richards Bay Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21677,13307,"ZAF","METT",2012,"Not Reported",28,"Richards Bay Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21678,13307,"ZAF","METT",2013,"Not Reported",28,"Richards Bay Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21679,30851,"ZAF","METT",2010,"Not Reported",28,"Richtersveld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21680,30851,"ZAF","METT",2005,"Not Reported",28,"Richtersveld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21681,30851,"ZAF","METT",2012,"Not Reported",28,"Richtersveld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21682,30851,"ZAF","METT",2013,"Not Reported",28,"Richtersveld National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21683,555564015,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Rietvlei Nature Area","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21684,32961,"ZAF","METT",2010,"Not Reported",28,"Riverlands Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21685,32961,"ZAF","METT",2011,"Not Reported",28,"Riverlands Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21686,32961,"ZAF","METT",2012,"Not Reported",28,"Riverlands Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21687,32961,"ZAF","METT",2013,"Not Reported",28,"Riverlands Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21688,32839,"ZAF","METT",2007,"Not Reported",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21689,32839,"ZAF","METT",2010,"Not Reported",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21690,32839,"ZAF","METT",0,"Not Reported",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21691,32839,"ZAF","METT",2011,"Not Reported",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21692,32839,"ZAF","METT",2012,"Not Reported",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21693,32839,"ZAF","METT",2013,"Not Reported",28,"Robberg Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21694,32840,"ZAF","METT",2005,"Not Reported",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21695,32840,"ZAF","METT",2007,"Not Reported",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21696,32840,"ZAF","METT",2010,"Not Reported",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21698,32840,"ZAF","METT",2011,"Not Reported",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21699,32840,"ZAF","METT",2012,"Not Reported",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21700,32840,"ZAF","METT",2013,"Not Reported",28,"Rocher Pan Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21701,4028,"ZAF","METT",2010,"Not Reported",28,"Rolfontein Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21702,7387,"ZAF","METT",2010,"Not Reported",28,"Roodeplaat Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21703,7387,"ZAF","METT",2011,"Not Reported",28,"Roodeplaat Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21704,7387,"ZAF","METT",2012,"Not Reported",28,"Roodeplaat Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21705,7387,"ZAF","METT",2013,"Not Reported",28,"Roodeplaat Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21706,555563964,"ZAF","RAPPAM",2001,"Not Reported",28,"Natal National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21707,555564026,"ZAF","RAPPAM",2001,"Not Reported",28,"Rugged Glen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21708,21151,"ZAF","METT",2010,"Not Reported",28,"Rustfontein Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21709,21151,"ZAF","METT",2011,"Not Reported",28,"Rustfontein Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21710,21151,"ZAF","METT",2012,"Not Reported",28,"Rustfontein Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21711,21151,"ZAF","METT",2013,"Not Reported",28,"Rustfontein Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21712,145122,"ZAF","METT",2012,"Not Reported",28,"S. A. Lombard Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21713,145122,"ZAF","METT",2013,"Not Reported",28,"S. A. Lombard Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21714,32841,"ZAF","METT",2010,"Not Reported",28,"Salmonsdam Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21715,32841,"ZAF","METT",2011,"Not Reported",28,"Salmonsdam Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21716,32841,"ZAF","METT",2012,"Not Reported",28,"Salmonsdam Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21717,32841,"ZAF","METT",2013,"Not Reported",28,"Salmonsdam Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21718,9084,"ZAF","METT",2010,"Not Reported",28,"Sandveld Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21719,9084,"ZAF","METT",2011,"Not Reported",28,"Sandveld Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21720,9084,"ZAF","METT",2012,"Not Reported",28,"Sandveld Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21721,9084,"ZAF","METT",2013,"Not Reported",28,"Sandveld Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21722,300451,"ZAF","METT",2010,"Not Reported",28,"Schuinsdraai Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21723,300451,"ZAF","METT",2011,"Not Reported",28,"Schuinsdraai Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21724,300451,"ZAF","METT",2012,"Not Reported",28,"Schuinsdraai Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21725,300451,"ZAF","METT",2013,"Not Reported",28,"Schuinsdraai Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21726,145554,"ZAF","METT",2010,"Not Reported",28,"Seekoeivlei Nature Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21727,555564037,"ZAF","METT",2011,"Not Reported",28,"Seekoeivlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21728,555564037,"ZAF","METT",2012,"Not Reported",28,"Seekoeivlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21729,555564037,"ZAF","METT",2013,"Not Reported",28,"Seekoeivlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21730,116333,"ZAF","METT",2010,"Not Reported",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21731,116333,"ZAF","METT",2011,"Not Reported",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21732,116333,"ZAF","METT",2012,"Not Reported",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21733,116333,"ZAF","METT",2013,"Not Reported",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21734,116333,"ZAF","RAPPAM",2001,"Not Reported",28,"Sileza Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21735,351583,"ZAF","METT",2010,"Not Reported",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21736,351583,"ZAF","METT",2011,"Not Reported",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21737,351583,"ZAF","METT",2012,"Not Reported",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21738,351583,"ZAF","METT",2013,"Not Reported",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21739,351583,"ZAF","RAPPAM",2001,"Not Reported",28,"Soada Forest Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21740,555564045,"ZAF","RAPPAM",2001,"Not Reported",28,"Sodwana Bay National Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21741,9089,"ZAF","METT",2010,"Not Reported",28,"Soetdoring Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21742,9089,"ZAF","METT",2011,"Not Reported",28,"Soetdoring Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21743,9089,"ZAF","METT",2012,"Not Reported",28,"Soetdoring Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21744,9089,"ZAF","METT",2013,"Not Reported",28,"Soetdoring Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21745,39744,"ZAF","METT",2010,"Not Reported",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21746,39744,"ZAF","METT",2011,"Not Reported",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21747,39744,"ZAF","METT",2012,"Not Reported",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21748,39744,"ZAF","METT",2013,"Not Reported",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21749,39744,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Songimvelo Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21750,881,"ZAF","METT",2005,"Not Reported",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21751,881,"ZAF","METT",2007,"Not Reported",28,"Garden Route National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21752,300393,"ZAF","METT",2010,"Not Reported",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21753,300393,"ZAF","METT",2011,"Not Reported",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21754,300393,"ZAF","METT",2012,"Not Reported",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21755,300393,"ZAF","METT",2013,"Not Reported",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21756,300393,"ZAF","RAPPAM",2001,"Not Reported",28,"Spioenkop Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21757,351117,"ZAF","METT",2010,"Not Reported",28,"S.S. Skosana Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21758,68168,"ZAF","RAPPAM",2001,"Not Reported",28,"St. Lucia System","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21759,315490,"ZAF","RAPPAM",2001,"Not Reported",28,"St Lucia Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21760,32879,"ZAF","METT",2010,"Not Reported",28,"Sterkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21761,32879,"ZAF","METT",2011,"Not Reported",28,"Sterkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21762,32879,"ZAF","METT",2012,"Not Reported",28,"Sterkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21763,32879,"ZAF","METT",2013,"Not Reported",28,"Sterkfontein Dam Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21764,9127,"ZAF","METT",2010,"Not Reported",28,"Sterkspruit Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21765,9127,"ZAF","METT",2011,"Not Reported",28,"Sterkspruit Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21766,9127,"ZAF","METT",2012,"Not Reported",28,"Sterkspruit Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21767,9127,"ZAF","METT",2013,"Not Reported",28,"Sterkspruit Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21768,1357,"ZAF","METT",2010,"Not Reported",28,"Suikerbosrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21769,1357,"ZAF","METT",2011,"Not Reported",28,"Suikerbosrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21770,1357,"ZAF","METT",2012,"Not Reported",28,"Suikerbosrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21771,1357,"ZAF","METT",2013,"Not Reported",28,"Suikerbosrand Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21772,62385,"ZAF","METT",2009,"Not Reported",28,"Groot Swartberg Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21773,351604,"ZAF","METT",2007,"Not Reported",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21774,351604,"ZAF","METT",2010,"Not Reported",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21775,351604,"ZAF","METT",2011,"Not Reported",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21776,351604,"ZAF","METT",2012,"Not Reported",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21777,351604,"ZAF","METT",2013,"Not Reported",28,"Swartberg-Oos Mountain Catchment Area","Mountain Catchment Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21778,300408,"ZAF","METT",2010,"Not Reported",28,"Table Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21779,300408,"ZAF","METT",2012,"Not Reported",28,"Table Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21780,300408,"ZAF","METT",2013,"Not Reported",28,"Table Mountain National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21781,32816,"ZAF","METT",2010,"Not Reported",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21783,32816,"ZAF","METT",2012,"Not Reported",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21784,32816,"ZAF","METT",2013,"Not Reported",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21785,32816,"ZAF","METT",2005,"Not Reported",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21786,32816,"ZAF","METT",2007,"Not Reported",28,"Tankwa-Karoo National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21787,39758,"ZAF","METT",2010,"Not Reported",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21788,39758,"ZAF","METT",2011,"Not Reported",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21789,39758,"ZAF","METT",2012,"Not Reported",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21790,39758,"ZAF","METT",2013,"Not Reported",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21791,39758,"ZAF","RAPPAM",2001,"Not Reported",28,"Tembe Elephant Park","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21792,33108,"ZAF","METT",2010,"Not Reported",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21793,33108,"ZAF","METT",2011,"Not Reported",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21794,33108,"ZAF","METT",2012,"Not Reported",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21795,33108,"ZAF","METT",2013,"Not Reported",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21796,33108,"ZAF","RAPPAM",2001,"Not Reported",28,"The Swamp Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21797,9101,"ZAF","METT",2011,"Not Reported",28,"Thomas Baines Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21798,9101,"ZAF","METT",2012,"Not Reported",28,"Thomas Baines Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21799,9101,"ZAF","METT",2013,"Not Reported",28,"Thomas Baines Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21800,9101,"ZAF","METT",2010,"Not Reported",28,"Thomas Baines Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21802,9112,"ZAF","METT",2011,"Not Reported",28,"Tsolwana Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21803,9112,"ZAF","METT",2012,"Not Reported",28,"Tsolwana Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21804,9112,"ZAF","METT",2013,"Not Reported",28,"Tsolwana Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21805,9112,"ZAF","METT",2010,"Not Reported",28,"Tsolwana Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21806,351625,"ZAF","METT",2010,"Not Reported",28,"Tugela Drift Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21807,351625,"ZAF","METT",2011,"Not Reported",28,"Tugela Drift Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21808,351625,"ZAF","METT",2012,"Not Reported",28,"Tugela Drift Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21809,351625,"ZAF","METT",2013,"Not Reported",28,"Tugela Drift Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21810,1354,"ZAF","METT",2011,"Not Reported",28,"Tussen-die-Riviere Game Farm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21811,1354,"ZAF","METT",2012,"Not Reported",28,"Tussen-die-Riviere Game Farm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21812,1354,"ZAF","METT",2013,"Not Reported",28,"Tussen-die-Riviere Game Farm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21813,1354,"ZAF","METT",2010,"Not Reported",28,"Tussen-die-Riviere Game Farm","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21814,351628,"ZAF","METT",2011,"Not Reported",28,"Ubombo Mountain Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21815,351628,"ZAF","METT",2012,"Not Reported",28,"Ubombo Mountain Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21816,351628,"ZAF","METT",2013,"Not Reported",28,"Ubombo Mountain Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21817,351628,"ZAF","RAPPAM",2001,"Not Reported",28,"Ubombo Mountain Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21818,351631,"ZAF","METT",2010,"Not Reported",28,"Ukhahlamba Drakensberg Park","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21819,555579297,"ZAF","RAPPAM",2001,"Not Reported",28,"Umfolozi Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21820,145120,"ZAF","METT",2013,"Not Reported",28,"Umgeni Vlei","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21821,145120,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Umgeni Vlei","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21822,555558453,"ZAF","Birdlife IBA",2013,"Not Reported",28,"Umgeni Vlei Nature Reserve","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21823,145120,"ZAF","RAPPAM",2001,"Not Reported",28,"Umgeni Vlei","Provincial Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21824,351634,"ZAF","METT",2010,"Not Reported",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21825,351634,"ZAF","METT",2011,"Not Reported",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21826,351634,"ZAF","METT",2012,"Not Reported",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21827,351634,"ZAF","METT",2013,"Not Reported",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21828,351634,"ZAF","RAPPAM",2001,"Not Reported",28,"Umhlanga Lagoon Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21829,26030,"ZAF","METT",2010,"Not Reported",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21830,26030,"ZAF","METT",2011,"Not Reported",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21831,26030,"ZAF","METT",2012,"Not Reported",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21832,26030,"ZAF","METT",2013,"Not Reported",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21833,26030,"ZAF","RAPPAM",2001,"Not Reported",28,"Umlalazi Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21834,1353,"ZAF","METT",2010,"Not Reported",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21835,1353,"ZAF","METT",2011,"Not Reported",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21836,1353,"ZAF","METT",2012,"Not Reported",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21837,1353,"ZAF","METT",2013,"Not Reported",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21838,1353,"ZAF","Birdlife IBA",2007,"Not Reported",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21839,1353,"ZAF","RAPPAM",2001,"Not Reported",28,"Umtamvuna Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21840,26043,"ZAF","METT",2010,"Not Reported",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21841,26043,"ZAF","METT",2011,"Not Reported",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21842,26043,"ZAF","METT",2012,"Not Reported",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21843,26043,"ZAF","METT",2013,"Not Reported",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21844,26043,"ZAF","RAPPAM",2001,"Not Reported",28,"Umvoti Vlei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21845,555564106,"ZAF","RAPPAM",2001,"Not Reported",28,"Vergelegen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21846,9139,"ZAF","METT",2010,"Not Reported",28,"Verloren Vallei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21847,9139,"ZAF","METT",2011,"Not Reported",28,"Verloren Vallei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21848,9139,"ZAF","METT",2012,"Not Reported",28,"Verloren Vallei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21849,9139,"ZAF","METT",2013,"Not Reported",28,"Verloren Vallei Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21850,68171,"ZAF","METT",2005,"Not Reported",28,"Verlorenvlei","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21851,68171,"ZAF","METT",2007,"Not Reported",28,"Verlorenvlei","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21852,68171,"ZAF","METT",2010,"Not Reported",28,"Verlorenvlei","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21854,9134,"ZAF","METT",2010,"Not Reported",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21855,9134,"ZAF","METT",2011,"Not Reported",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21856,9134,"ZAF","METT",2012,"Not Reported",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21857,9134,"ZAF","METT",2013,"Not Reported",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21858,9134,"ZAF","RAPPAM",2001,"Not Reported",28,"Vernon Crookes Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21859,902483,"ZAF","WH Outlook Report",2014,"Not Reported",28,"Vredefort Dome","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21860,4031,"ZAF","METT",2010,"Not Reported",28,"Vrolijkheid Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21861,4031,"ZAF","METT",2011,"Not Reported",28,"Vrolijkheid Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21862,4031,"ZAF","METT",2012,"Not Reported",28,"Vrolijkheid Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21863,4031,"ZAF","METT",2013,"Not Reported",28,"Vrolijkheid Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21868,26042,"ZAF","METT",2010,"Not Reported",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21869,26042,"ZAF","METT",2011,"Not Reported",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21870,26042,"ZAF","METT",2012,"Not Reported",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21871,26042,"ZAF","METT",2013,"Not Reported",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21872,26042,"ZAF","RAPPAM",2001,"Not Reported",28,"Wagendrift Public Resort Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21873,555563467,"ZAF","METT",2004,"Not Reported",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21875,555563467,"ZAF","METT",2008,"Not Reported",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21877,555563467,"ZAF","METT",2010,"Not Reported",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21878,555563467,"ZAF","METT",2011,"Not Reported",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21879,555563467,"ZAF","METT",2012,"Not Reported",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21880,555563467,"ZAF","METT",2013,"Not Reported",28,"Walker Bay Whale Sanctuary Marine Protected Area","Marine Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21881,900554,"ZAF","GOBI Survey",2006,"Not Reported",28,"Waterberg Biosphere Reserve","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21882,300367,"ZAF","METT",2010,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21883,300367,"ZAF","METT",2011,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21884,300367,"ZAF","METT",2012,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21885,300367,"ZAF","METT",2013,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21886,9106,"ZAF","METT",2010,"Not Reported",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21887,9106,"ZAF","METT",2011,"Not Reported",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21888,9106,"ZAF","METT",2012,"Not Reported",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21889,9106,"ZAF","METT",2013,"Not Reported",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21890,9106,"ZAF","RAPPAM",2001,"Not Reported",28,"Weenen Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21891,17368,"ZAF","METT",2010,"Not Reported",28,"West Coast National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21892,17368,"ZAF","METT",2012,"Not Reported",28,"West Coast National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21893,17368,"ZAF","METT",2013,"Not Reported",28,"West Coast National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21894,32817,"ZAF","METT",2005,"Not Reported",28,"Wilderness National Lakes Area","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21895,32817,"ZAF","METT",2007,"Not Reported",28,"Wilderness National Lakes Area","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21896,1355,"ZAF","METT",2010,"Not Reported",28,"Willem Pretorius Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21897,1355,"ZAF","METT",2011,"Not Reported",28,"Willem Pretorius Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21898,1355,"ZAF","METT",2012,"Not Reported",28,"Willem Pretorius Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21899,1355,"ZAF","METT",2013,"Not Reported",28,"Willem Pretorius Game Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21900,116356,"ZAF","METT",2010,"Not Reported",28,"Witsand Provincial Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21901,555563500,"ZAF","METT",2010,"Not Reported",28,"Wolkberg Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21903,555563500,"ZAF","METT",2011,"Not Reported",28,"Wolkberg Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21904,555563500,"ZAF","METT",2012,"Not Reported",28,"Wolkberg Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21905,555563500,"ZAF","METT",2013,"Not Reported",28,"Wolkberg Wilderness Area","Forest Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21909,62304,"ZAF","METT",2010,"Not Reported",28,"Wonderkop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21910,62304,"ZAF","METT",2011,"Not Reported",28,"Wonderkop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21911,62304,"ZAF","METT",2012,"Not Reported",28,"Wonderkop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21912,62304,"ZAF","METT",2013,"Not Reported",28,"Wonderkop Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21913,615,"CAN","Parks Canada",2008,"Not Reported",28,"Banff National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21914,12801,"CAN","Parks Canada",2004,"Not Reported",28,"Bruce Peninsula National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21915,26689,"CAN","WH Outlook Report",2014,"Not Reported",28,"Canadian Rocky Mountain Parks","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21916,18922,"CAN","GOBI Survey",2006,"Not Reported",28,"R�serve de la biosph�re de Charlevoix","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21917,2004,"CAN","WH Outlook Report",2014,"Not Reported",28,"Dinosaur Provincial Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21918,555516419,"CAN","Parks Canada",2003,"Not Reported",28,"Fathom Five National Marine Park of Canada","National Marine Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21919,18534,"CAN","Parks Canada",2006,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21920,66090,"CAN","Parks Canada",2004,"Not Reported",28,"Georgian Bay Islands National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21921,622,"CAN","Parks Canada",2008,"Not Reported",28,"Glacier National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21922,555516420,"CAN","Parks Canada",2007,"Not Reported",28,"Grasslands National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21923,619,"CAN","Parks Canada",2005,"Not Reported",28,"Gros Morne National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21924,17759,"CAN","WH Outlook Report",2014,"Not Reported",28,"Gros Morne National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21925,327024,"CAN","Parks Canada",2007,"Not Reported",28,"Uhtjärve hoiuala","Limited-conservation area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21926,614,"CAN","Parks Canada",2008,"Not Reported",28,"Jasper National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21927,903133,"CAN","WH Outlook Report",2014,"Not Reported",28,"Joggins Fossil Cliffs","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21928,612,"CAN","Parks Canada",2008,"Not Reported",28,"Kluane National Park Reserve of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21930,621,"CAN","Parks Canada",2008,"Not Reported",28,"Kootenay National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21931,11587,"CAN","GOBI Survey",2006,"Not Reported",28,"Long Point Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21932,198294,"CAN","WH Outlook Report",2014,"Not Reported",28,"Miguasha National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21933,220257,"CAN","GOBI Survey",2006,"Not Reported",28,"Mount Arrowsmith","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21934,630,"CAN","Parks Canada",2008,"Not Reported",28,"Mount Revelstoke National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21935,2005,"CAN","WH Outlook Report",2014,"Not Reported",28,"Nahanni National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21936,170353,"CAN","Parks Canada",2006,"Not Reported",28,"Ohepalu LKA, Udriku skv.","Wilderness conservation zone of nature reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21937,617,"CAN","Parks Canada",2005,"Not Reported",28,"Prince Albert National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21938,198338,"CAN","GOBI Survey",2006,"Not Reported",28,"Redberry Lake","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21939,11586,"CAN","GOBI Survey",2006,"Not Reported",28,"Riding Mountain Biosphere Reserve","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21940,66628,"CAN","MPA MEE",2003,"Not Reported",28,"Not Reported","Not Reported","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21941,900664,"CAN","GOBI Survey",2006,"Not Reported",28,"South West Nova","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21942,638,"CAN","Parks Canada",2004,"Not Reported",28,"St. Lawrence Islands National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21943,900714,"CAN","GOBI Survey",2006,"Not Reported",28,"Thousands Islands Frontenac Arch","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21944,2057,"CAN","GOBI Survey",2006,"Not Reported",28,"Waterton Lakes National Park","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21946,626,"CAN","Parks Canada",2008,"Not Reported",28,"Waterton Lakes National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21947,10902,"CAN","WH Outlook Report",2014,"Not Reported",28,"Wood Buffalo National Park","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21948,623,"CAN","Parks Canada",2008,"Not Reported",28,"Yoho National Park of Canada","National Park of Canada","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21995,195092,"FIN","Birdlife IBA",2010,"Not Reported",28,"Ahmasjärven luonnonsuojelualue","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21996,555539129,"FIN","Birdlife IBA",2010,"Not Reported",28,"Ahmasjärvi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21997,61523,"FIN","PANPARKS",2007,"Not Reported",28,"Archipelago Sea Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21998,61523,"FIN","GOBI Survey",2006,"Not Reported",28,"Archipelago Sea Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +21999,61523,"FIN","Stockholm BR Survey",2008,"Not Reported",28,"Archipelago Sea Area","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22000,555543216,"FIN","RAPPAM",2004,"Not Reported",28,"Itäisen Suomenlahden saaristo ja vedet/ Eastern Gulf of Finland Archipelago and waters","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22001,40929,"FIN","RAPPAM",2004,"Not Reported",28,"Tammisaaren saariston kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22002,149666,"FIN","Birdlife IBA",2010,"Not Reported",28,"Elimyssalon luonnonsuojelualue (Ystävyyden puisto)","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22003,555539139,"FIN","Birdlife IBA",2010,"Not Reported",28,"Elimyssalon alue","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22004,555580286,"FIN","Birdlife IBA",2010,"Not Reported",28,"Elimyssalon alue","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22005,7480,"FIN","RAPPAM",2004,"Not Reported",28,"Häädetkeitaan luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22006,64507,"FIN","RAPPAM",2004,"Not Reported",28,"Hammastunturin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22007,7497,"FIN","RAPPAM",2004,"Not Reported",28,"Helvetinjärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22008,7491,"FIN","RAPPAM",2004,"Not Reported",28,"Hiidenportin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22009,555525396,"FIN","RAPPAM",2004,"Not Reported",28,"Hossa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22010,7499,"FIN","RAPPAM",2004,"Not Reported",28,"Isojärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22011,555538865,"FIN","Birdlife IBA",2010,"Not Reported",28,"Itäisen Suomenlahden saaristo ja vedet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22012,555543216,"FIN","Birdlife IBA",2010,"Not Reported",28,"Itäisen Suomenlahden saaristo ja vedet/ Eastern Gulf of Finland Archipelago and waters","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22013,555580090,"FIN","Birdlife IBA",2010,"Not Reported",28,"Itäisen Suomenlahden saaristo ja vedet","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22014,64540,"FIN","Birdlife IBA",2010,"Not Reported",28,"Joutsenaavan-Kaita-aavan soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22015,555539181,"FIN","Birdlife IBA",2010,"Not Reported",28,"Joutsenaapa - Kaita-aapa","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22016,555580005,"FIN","Birdlife IBA",2010,"Not Reported",28,"Joutsenaapa - Kaita-aapa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22017,102007,"FIN","Birdlife IBA",2010,"Not Reported",28,"Juortanansalon-Lapinsuon soidensuojelualue (Ystävyyden p.)","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22018,555539138,"FIN","Birdlife IBA",2010,"Not Reported",28,"Juortanansalon alue","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22019,555580285,"FIN","Birdlife IBA",2010,"Not Reported",28,"Juortanansalon alue","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22020,64508,"FIN","Birdlife IBA",2010,"Not Reported",28,"Käsivarren erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22021,555539151,"FIN","Birdlife IBA",2010,"Not Reported",28,"KÄSIVARREN ERÄMAA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22022,555579975,"FIN","Birdlife IBA",2010,"Not Reported",28,"Käsivarren Erämaa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22023,64509,"FIN","RAPPAM",2004,"Not Reported",28,"Kaldoaivin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22024,7482,"FIN","RAPPAM",2004,"Not Reported",28,"Karkalin luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22025,555539198,"FIN","Birdlife IBA",2010,"Not Reported",28,"Karunginjärvi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22026,64508,"FIN","RAPPAM",2004,"Not Reported",28,"Käsivarren erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22027,7495,"FIN","RAPPAM",2004,"Not Reported",28,"Kauhanevan-Pohjankankaan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22028,64500,"FIN","RAPPAM",2004,"Not Reported",28,"Kemihaaran erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22029,1517,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kevon luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22030,555539199,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kevo","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22031,555580021,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kevo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22032,1517,"FIN","RAPPAM",2004,"Not Reported",28,"Kevon luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22033,102005,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kilsiaavan-Ristivuoman soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22034,555539194,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kilsiaapa-Ristivuoma","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22035,555580015,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kilsiaapa-Ristivuoma","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22036,555524234,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kirkkonummen saaristo (SCI)","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22037,555538770,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kirkkonummen saaristo (SPA)","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22038,555543228,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kirkkonummen saaristo/ Kirkkonummi Archipelago","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22039,329868,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kirkon-Vilkkilänturan luonnonsuojelualue","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22040,902767,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kirkon-Vilkkiläntura Bay","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22041,555538884,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kirkon-Vilkkiläntura","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22042,555539078,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kitka","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22043,555580242,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kitka","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22044,555538819,"FIN","Birdlife IBA",2010,"Not Reported",28,"Koijärvi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22045,555580025,"FIN","Birdlife IBA",2010,"Not Reported",28,"Koijärvi","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22046,7489,"FIN","RAPPAM",2004,"Not Reported",28,"Koivusuon luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22047,40927,"FIN","RAPPAM",2004,"Not Reported",28,"Koloveden kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22048,67917,"FIN","Birdlife IBA",2010,"Not Reported",28,"Krunnit Islands","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22049,150220,"FIN","Birdlife IBA",2010,"Not Reported",28,"Krunnien luonnonsuojelualue","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22050,555539156,"FIN","Birdlife IBA",2010,"Not Reported",28,"Perämeren saaret","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22051,555579982,"FIN","Birdlife IBA",2010,"Not Reported",28,"Perämeren saaret","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22052,175210,"FIN","RAPPAM",2004,"Not Reported",28,"Kurjenrahkan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22053,64531,"FIN","Birdlife IBA",2010,"Not Reported",28,"Lämsänaavan-Sakkala-aavan soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22054,64542,"FIN","Birdlife IBA",2010,"Not Reported",28,"Lätäsenon-Hietajoen soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22055,902775,"FIN","Birdlife IBA",2010,"Not Reported",28,"Lätäseno-Hietajoki Mires","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22056,7496,"FIN","RAPPAM",2004,"Not Reported",28,"Lauhanvuoren kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22057,175212,"FIN","RAPPAM",2004,"Not Reported",28,"Leivonmäen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22058,654,"FIN","RAPPAM",2004,"Not Reported",28,"Lemmenjoen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22059,654,"FIN","Birdlife IBA",2010,"Not Reported",28,"Lemmenjoen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22060,902776,"FIN","Birdlife IBA",2010,"Not Reported",28,"Lemmenjoki National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22061,555539153,"FIN","Birdlife IBA",2010,"Not Reported",28,"LEMMENJOEN KANSALLISPUISTO","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22062,555579978,"FIN","Birdlife IBA",2010,"Not Reported",28,"Lemmenjoen Kansallispuisto","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22063,7477,"FIN","RAPPAM",2004,"Not Reported",28,"Liesjärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22064,555524689,"FIN","Birdlife IBA",2010,"Not Reported",28,"Linnansaari","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22065,176188,"FIN","RAPPAM",2004,"Not Reported",28,"Linnansaari","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22066,102003,"FIN","Birdlife IBA",2010,"Not Reported",28,"Lapiosuon-Ison Äijönsuon soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22067,555539112,"FIN","Birdlife IBA",2010,"Not Reported",28,"Litokaira","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22068,555580263,"FIN","Birdlife IBA",2010,"Not Reported",28,"Litokaira","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22069,657,"FIN","Birdlife IBA",2010,"Not Reported",28,"Pyhä-Luoston kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22070,555525497,"FIN","Birdlife IBA",2010,"Not Reported",28,"Luosto","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22071,555539171,"FIN","Birdlife IBA",2010,"Not Reported",28,"Pyhä-Luosto","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22072,1519,"FIN","RAPPAM",2004,"Not Reported",28,"Maltion luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22073,67921,"FIN","Birdlife IBA",2010,"Not Reported",28,"Martimoaapa - Lumiaapa - Penikat Mires","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22074,102004,"FIN","Birdlife IBA",2010,"Not Reported",28,"Martimoaavan-Lumiaavan-Penikoiden soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22075,555539183,"FIN","Birdlife IBA",2010,"Not Reported",28,"MARTIMOAAPA-LUMIAAPA-PENIKAT","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22076,555580009,"FIN","Birdlife IBA",2010,"Not Reported",28,"Martimoaapa-Lumiaapa-Penikat","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22077,64505,"FIN","RAPPAM",2004,"Not Reported",28,"Muotkatunturin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22078,67739,"FIN","GOBI Survey",2006,"Not Reported",28,"North Karelian","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22079,101965,"FIN","Birdlife IBA",2010,"Not Reported",28,"Nuuksion kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22080,555538756,"FIN","Birdlife IBA",2010,"Not Reported",28,"Nuuksio","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22081,555580035,"FIN","Birdlife IBA",2010,"Not Reported",28,"Nuuksio","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22082,101965,"FIN","RAPPAM",2004,"Not Reported",28,"Nuuksion kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22083,7487,"FIN","RAPPAM",2004,"Not Reported",28,"Olvassuon luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22084,656,"FIN","METT",2003,"Not Reported",28,"Oulangan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22085,902780,"FIN","PANPARKS",2002,"Not Reported",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22086,902780,"FIN","PANPARKS",2003,"Not Reported",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22087,902780,"FIN","PANPARKS",2004,"Not Reported",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22088,902780,"FIN","PANPARKS",2005,"Not Reported",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22089,902780,"FIN","PANPARKS",2006,"Not Reported",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22090,902780,"FIN","PANPARKS",2007,"Not Reported",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22091,902780,"FIN","RAPPAM",2004,"Not Reported",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22092,656,"FIN","Birdlife IBA",2010,"Not Reported",28,"Oulangan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22093,902780,"FIN","Birdlife IBA",2010,"Not Reported",28,"Oulanka National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22094,555539089,"FIN","Birdlife IBA",2010,"Not Reported",28,"Oulanka","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22095,555580244,"FIN","Birdlife IBA",2010,"Not Reported",28,"Oulanka","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22096,64532,"FIN","Birdlife IBA",2010,"Not Reported",28,"Pöyrisvuoman soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22097,101966,"FIN","RAPPAM",2004,"Not Reported",28,"Päijänteen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22098,64506,"FIN","RAPPAM",2004,"Not Reported",28,"Paistunturin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22099,7479,"FIN","RAPPAM",2004,"Not Reported",28,"Paljakan luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22100,655,"FIN","RAPPAM",2004,"Not Reported",28,"Pallas-Yllästunturin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22101,555539149,"FIN","Birdlife IBA",2010,"Not Reported",28,"Pallas-Ounastunturi","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22102,555579976,"FIN","Birdlife IBA",2010,"Not Reported",28,"Pallas-Ounastunturi","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22103,7493,"FIN","RAPPAM",2004,"Not Reported",28,"Patvinsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22104,7493,"FIN","Birdlife IBA",2010,"Not Reported",28,"Patvinsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22105,67920,"FIN","Birdlife IBA",2010,"Not Reported",28,"Patvinsuo National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22106,555524874,"FIN","Birdlife IBA",2010,"Not Reported",28,"Patvinsuo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22107,7488,"FIN","RAPPAM",2004,"Not Reported",28,"Pelson luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22108,40928,"FIN","RAPPAM",2004,"Not Reported",28,"Perämeren kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22109,7475,"FIN","RAPPAM",2004,"Not Reported",28,"Petkeljärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22110,1521,"FIN","RAPPAM",2004,"Not Reported",28,"Pisavaaran luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22111,64503,"FIN","RAPPAM",2004,"Not Reported",28,"Pöyrisjärven erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22112,64501,"FIN","RAPPAM",2004,"Not Reported",28,"Puljun erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22113,101964,"FIN","Birdlife IBA",2010,"Not Reported",28,"Puurijärven ja Isonsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22114,555524293,"FIN","Birdlife IBA",2010,"Not Reported",28,"Puurijärvi-Isosuo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22115,555538810,"FIN","Birdlife IBA",2010,"Not Reported",28,"Puurijärvi - Isosuo","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22116,101964,"FIN","RAPPAM",2004,"Not Reported",28,"Puurijärven ja Isonsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22117,658,"FIN","RAPPAM",2004,"Not Reported",28,"Pyhä-Häkin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22118,657,"FIN","RAPPAM",2004,"Not Reported",28,"Pyhä-Luoston kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22119,175211,"FIN","RAPPAM",2004,"Not Reported",28,"Repoveden kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22120,7490,"FIN","Birdlife IBA",2010,"Not Reported",28,"Riisitunturin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22121,902783,"FIN","Birdlife IBA",2010,"Not Reported",28,"Riisitunturi National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22122,555525460,"FIN","Birdlife IBA",2010,"Not Reported",28,"Riisitunturin Kansallispuisto","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22123,7490,"FIN","RAPPAM",2004,"Not Reported",28,"Riisitunturin kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22124,7476,"FIN","RAPPAM",2004,"Not Reported",28,"Rokuan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22125,102013,"FIN","Birdlife IBA",2010,"Not Reported",28,"Rumalan-Kuvajan-Oudonrimpien soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22126,555539145,"FIN","Birdlife IBA",2010,"Not Reported",28,"Rumala - Kuvaja - Oudonrimmet","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22127,555579972,"FIN","Birdlife IBA",2010,"Not Reported",28,"Rumala - Kuvaja - Oudonrimmet","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22128,397426,"FIN","Birdlife IBA",2010,"Not Reported",28,"Kokkolan saaristo ja Harrinniemi","Private Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22129,555539040,"FIN","Birdlife IBA",2010,"Not Reported",28,"Rummelön-Harrbådan","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22130,555580210,"FIN","Birdlife IBA",2010,"Not Reported",28,"Rummelön-Harrbådan","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22131,1520,"FIN","RAPPAM",2004,"Not Reported",28,"Runkauksen luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22132,101968,"FIN","Birdlife IBA",2010,"Not Reported",28,"Ruunaan luonnonsuojelualue","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22133,555538959,"FIN","Birdlife IBA",2010,"Not Reported",28,"Ruunaa","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22134,555580138,"FIN","Birdlife IBA",2010,"Not Reported",28,"Ruunaa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22135,101968,"FIN","RAPPAM",2004,"Not Reported",28,"Ruunaan luonnonsuojelualue","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22136,2561,"FIN","Birdlife IBA",2010,"Not Reported",28,"Urho Kekkosen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22137,555539188,"FIN","Birdlife IBA",2010,"Not Reported",28,"UK-PUISTO-SOMPIO-KEMIHAARA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22138,555580012,"FIN","Birdlife IBA",2010,"Not Reported",28,"Uk-Puisto-Sompio-Kemihaara","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22139,7494,"FIN","RAPPAM",2004,"Not Reported",28,"Salamajärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22140,1524,"FIN","RAPPAM",2004,"Not Reported",28,"Salamanperän luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22141,64544,"FIN","Birdlife IBA",2010,"Not Reported",28,"Sammuttijängän-Vaijoenjängän soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22142,902786,"FIN","Birdlife IBA",2010,"Not Reported",28,"Sammuttijänkä - Vaijoenjänkä Mires","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22143,7498,"FIN","European Diploma",1996,"Not Reported",28,"Seitsemisen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22144,555524452,"FIN","RAPPAM",2004,"Not Reported",28,"Seitseminen","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22145,555524645,"FIN","Birdlife IBA",2010,"Not Reported",28,"Siikalahti","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22146,7483,"FIN","RAPPAM",2004,"Not Reported",28,"Sinivuoren luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22147,1518,"FIN","RAPPAM",2004,"Not Reported",28,"Sompion luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22148,7486,"FIN","RAPPAM",2004,"Not Reported",28,"Sukerijärven luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22149,175225,"FIN","RAPPAM",2004,"Not Reported",28,"Syötteen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22150,127828,"FIN","Birdlife IBA",2010,"Not Reported",28,"Talaskankaan luonnonsuojelualue","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22151,555539147,"FIN","Birdlife IBA",2010,"Not Reported",28,"Talaskankaan alue","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22152,555579974,"FIN","Birdlife IBA",2010,"Not Reported",28,"Talaskankaan alue","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22153,64502,"FIN","RAPPAM",2004,"Not Reported",28,"Tarvantovaaran erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22154,7492,"FIN","RAPPAM",2004,"Not Reported",28,"Tiilikkajärven kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22155,555539197,"FIN","Birdlife IBA",2010,"Not Reported",28,"Pajukari-Uksei-Alkunkarinlahti","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22156,555580017,"FIN","Birdlife IBA",2010,"Not Reported",28,"Pajukari-Uksei-Alkunkarinlahti","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22157,40930,"FIN","RAPPAM",2004,"Not Reported",28,"Torronsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22158,40930,"FIN","Birdlife IBA",2010,"Not Reported",28,"Torronsuon kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22159,902791,"FIN","Birdlife IBA",2010,"Not Reported",28,"Torronsuo National Park","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22160,555538843,"FIN","Birdlife IBA",2010,"Not Reported",28,"Torronsuo","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22161,555580083,"FIN","Birdlife IBA",2010,"Not Reported",28,"Torronsuo","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22162,64497,"FIN","RAPPAM",2004,"Not Reported",28,"Tsarmitunturin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22163,64499,"FIN","RAPPAM",2004,"Not Reported",28,"Tuntsan erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22164,2561,"FIN","RAPPAM",2004,"Not Reported",28,"Urho Kekkosen kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22165,1523,"FIN","RAPPAM",2004,"Not Reported",28,"Ulvinsalon luonnonpuisto (Ystävyyden puisto)","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22166,64499,"FIN","Birdlife IBA",2010,"Not Reported",28,"Tuntsan erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22167,555525478,"FIN","Birdlife IBA",2010,"Not Reported",28,"Tuntsan erämaa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22168,101951,"FIN","RAPPAM",2004,"Not Reported",28,"Valkmusan kansallispuisto","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22169,101976,"FIN","Birdlife IBA",2010,"Not Reported",28,"Valtavaaran ja Pyhävaaran luonnonsuojelualue","State Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22170,555539074,"FIN","Birdlife IBA",2010,"Not Reported",28,"Valtavaara - Pyhävaara","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22171,555580235,"FIN","Birdlife IBA",2010,"Not Reported",28,"Valtavaara - Pyhävaara","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22172,7485,"FIN","RAPPAM",2004,"Not Reported",28,"Värriön luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22173,7478,"FIN","RAPPAM",2004,"Not Reported",28,"Vaskijärven luonnonpuisto","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22174,64504,"FIN","RAPPAM",2004,"Not Reported",28,"Vätsärin erämaa","Wilderness Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22175,102016,"FIN","Birdlife IBA",2010,"Not Reported",28,"Veittiaavan soidensuojelualue","Protected Mire","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22176,555539184,"FIN","Birdlife IBA",2010,"Not Reported",28,"VEITTIAAPA","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22177,555580008,"FIN","Birdlife IBA",2010,"Not Reported",28,"Veittiaapa","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22178,1395,"SWE","European Diploma",1988,"Not Reported",28,"Bullerö","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22179,182768,"SWE","PANPARKS",2002,"Not Reported",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22180,182768,"SWE","PANPARKS",2003,"Not Reported",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22181,182768,"SWE","PANPARKS",2004,"Not Reported",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22182,182768,"SWE","PANPARKS",2005,"Not Reported",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22183,182768,"SWE","PANPARKS",2006,"Not Reported",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22184,182768,"SWE","PANPARKS",2007,"Not Reported",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22185,182768,"SWE","METT",2005,"Not Reported",28,"Fulufjället","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22186,478642,"SWE","WH Outlook Report",2014,"Not Reported",28,"High Coast / Kvarken Archipelago","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22187,10440,"SWE","Birdlife IBA",2007,"Not Reported",28,"Holmöarna","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22188,555541528,"SWE","Birdlife IBA",2007,"Not Reported",28,"Holmöarna","Special Protection Area (Birds Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22189,555543185,"SWE","Birdlife IBA",2007,"Not Reported",28,"Holmö Islands","Baltic Sea Protected Area (HELCOM)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22190,555579805,"SWE","Birdlife IBA",2007,"Not Reported",28,"Holmöarna","Site of Community Importance (Habitats Directive)","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22191,902525,"SWE","GOBI Survey",2006,"Not Reported",28,"Kristianstad Vattenrike","UNESCO-MAB Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22192,124388,"SWE","WH Outlook Report",2014,"Not Reported",28,"Laponian Area","World Heritage Site","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22193,95339,"LVA","European Diploma",1967,"Not Reported",28,"Lake Engure","Ramsar Site, Wetland of International Importance","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22194,905,"SWE","European Diploma",1967,"Not Reported",28,"Padjelanta","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22195,906,"SWE","European Diploma",1967,"Not Reported",28,"Sarek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +22196,3995,"SWE","European Diploma",1988,"Not Reported",28,"Store Mosse","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28037,15,"ARG","METT",2003,"Not Reported",28,"Iguazú","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28038,300069,"ARG","METT",2003,"Not Reported",28,"Los Morrillos","Wildlife Refuge","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28039,166725,"ARG","METT",2003,"Not Reported",28,"Urugua-í","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28040,555577540,"ARG","METT",2003,"Not Reported",28,"El Nogalar de Los Toldos","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28041,555593969,"BIH","METT",2008,"Not Reported",28,"Kozara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28042,555593970,"BIH","METT",2008,"Not Reported",28,"Sutjeska","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28043,7996,"BTN","METT",2003,"Not Reported",28,"Royal Manas","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28044,20445,"BTN","METT",2003,"Not Reported",28,"Phrumsengla ","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28045,317281,"CAF","METT",2007,"Not Reported",28,"Mba�r�-Bodingu�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28046,29067,"GIN","METT",2003,"Not Reported",28,"Mount Nimba","Strict Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28047,308624,"CMR","METT",2007,"Not Reported",28,"Boumba Bek","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28049,555512069,"COD","METT",2010,"Not Reported",28,"Parc Marin des Mangroves","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28051,555543713,"CRI","METT",2006,"Not Reported",28,"Corcovado","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28052,164,"CRI","METT",2006,"Not Reported",28,"Corcovado","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28053,167,"CRI","METT",2006,"Not Reported",28,"Tortuguero","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28054,165,"CRI","METT",2006,"Not Reported",28,"Braulio Carrillo","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28055,2235,"CRI","METT",2006,"Not Reported",28,"Cahuita","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28056,157,"CRI","METT",2006,"Not Reported",28,"Carara","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28057,163,"CRI","METT",2006,"Not Reported",28,"Chirripó","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28058,2250,"CRI","METT",2006,"Not Reported",28,"Manuel Antonio","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28059,4646,"CRI","METT",2006,"Not Reported",28,"Palo Verde","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28060,102367,"CRI","METT",2006,"Not Reported",28,"Piedras Blancas","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28061,168,"CRI","METT",2006,"Not Reported",28,"Rincón De La Vieja","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28062,171,"CRI","METT",2006,"Not Reported",28,"Volcán Irazú","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28063,169,"CRI","METT",2006,"Not Reported",28,"Volcán Poás","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28064,102334,"CRI","METT",2006,"Not Reported",28,"Volcán Tenorio","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28065,166,"CRI","METT",2006,"Not Reported",28,"Santa Rosa","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28066,303875,"GAB","METT",2010,"Not Reported",28,"Lop�","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28067,313361,"GNQ","METT",0,"Not Reported",28,"Rio Campo","Natural Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28068,8673,"IDN","METT",2003,"Not Reported",28,"Betung Kerihun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28069,8673,"IDN","METT",2006,"Not Reported",28,"Betung Kerihun","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28070,1899,"IDN","METT",2003,"Not Reported",28,"Kayan Mentarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28071,1899,"IDN","METT",2006,"Not Reported",28,"Kayan Mentarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28072,317262,"IDN","METT",2006,"Not Reported",28,"Sebangau","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28073,317197,"IDN","METT",2006,"Not Reported",28,"Tesso Nilo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28074,2349,"IDN","METT",2003,"Not Reported",28,"Ujung Kulon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28075,2349,"IDN","METT",2006,"Not Reported",28,"Ujung Kulon","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28076,1500,"IDN","METT",2003,"Not Reported",28,"Lorentz","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28077,1500,"IDN","METT",2006,"Not Reported",28,"Lorentz","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28078,1252,"IDN","METT",2003,"Not Reported",28,"Bukit Barisan Selatan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28079,1252,"IDN","METT",2006,"Not Reported",28,"Bukit Barisan Selatan","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28080,62609,"IDN","METT",2000,"Not Reported",28,"Karakelang","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28081,62609,"IDN","METT",2006,"Not Reported",28,"Karakelang","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28082,62609,"IDN","METT",2007,"Not Reported",28,"Karakelang","Wildlife Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28083,1968,"IDN","METT",2000,"Not Reported",28,"Komodo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28084,317197,"IDN","METT",2009,"Not Reported",28,"Tesso Nilo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28085,691,"IND","METT",2003,"Not Reported",28,"Dudhwa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28086,1808,"IND","METT",2003,"Not Reported",28,"Ranthambhore","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28087,687,"IND","METT",2003,"Not Reported",28,"Gir","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28088,694,"IND","METT",2001,"Not Reported",28,"Pench","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28089,694,"IND","METT",2002,"Not Reported",28,"Pench","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28090,694,"IND","METT",2003,"Not Reported",28,"Pench","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28091,694,"IND","METT",2004,"Not Reported",28,"Pench","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28092,166969,"MEX","METT",2008,"Not Reported",28,"La Sepultura","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28094,5394,"MEX","METT",2006,"Not Reported",28,"Cumbres de Monterrey","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28095,166969,"MEX","METT",2006,"Not Reported",28,"La Sepultura","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28097,18062,"MEX","METT",2006,"Not Reported",28,"El Triunfo","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28099,196501,"MKD","METT",2007,"Not Reported",28,"Pelister","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28100,4652,"MOZ","METT",2006,"Not Reported",28,"Maputo","Special Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28101,799,"MOZ","METT",2004,"Not Reported",28,"Banhine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28102,799,"MOZ","METT",2006,"Not Reported",28,"Banhine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28103,799,"MOZ","METT",1999,"Not Reported",28,"Banhine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28104,799,"MOZ","METT",2002,"Not Reported",28,"Banhine","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28105,9816,"MYS","METT",0,"Not Reported",28,"Loagan Bunut","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28106,303317,"PER","METT",2003,"Not Reported",28,"Amarakaeri","Reservas Comunales","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28107,127825,"PER","METT",2003,"Not Reported",28,"Bahuaja Sonene","Parques Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28108,20178,"PER","METT",2003,"Not Reported",28,"Tabaconas Namballe","Santuarios Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28109,127825,"PER","METT",0,"Not Reported",28,"Bahuaja Sonene","Parques Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28110,3370,"PER","METT",2005,"Not Reported",28,"Tambopata","Reservas Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28111,12215,"PER","METT",2005,"Not Reported",28,"Los Manglares de Tumbes","Santuarios Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28112,1709,"RUS","METT",2003,"Not Reported",28,"Bashkirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28113,1709,"RUS","METT",2005,"Not Reported",28,"Bashkirsky","Zapovednik","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28114,941,"TUN","METT",2013,"Not Reported",28,"Ichkeul","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28115,555624063,"TZA","METT",2005,"Not Reported",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28116,555624097,"TZA","METT",2005,"Not Reported",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28117,555624100,"TZA","METT",2005,"Not Reported",28,"Chome","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28118,7561,"KEN","METT",2005,"Not Reported",28,"Gonja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28119,36591,"TZA","METT",2005,"Not Reported",28,"Duma","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28120,40001,"TZA","METT",2005,"Not Reported",28,"Mpanga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28121,478265,"TZA","METT",2005,"Not Reported",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28122,478264,"TZA","METT",2005,"Not Reported",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28123,478263,"TZA","METT",2005,"Not Reported",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28124,303507,"TZA","METT",2005,"Not Reported",28,"Mamboto","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28125,303560,"TZA","METT",2005,"Not Reported",28,"Ruvu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28126,555556084,"TZA","METT",2005,"Not Reported",28,"Sali","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28129,555623855,"TZA","METT",2005,"Not Reported",28,"Mafwomero","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28140,555624063,"TZA","METT",0,"Not Reported",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28157,303041,"VNM","METT",2005,"Not Reported",28,"Nui Chua","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28159,313683,"ZAF","METT",2011,"Not Reported",28,"Bird Island","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28160,2347,"ZMB","METT",2006,"Not Reported",28,"Mosi-Oa-Tunya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28161,2347,"ZMB","METT",2009,"Not Reported",28,"Mosi-Oa-Tunya","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28162,1094,"ZMB","METT",2009,"Not Reported",28,"Lavushi Manda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28163,555624075,"TZA","METT",2011,"Not Reported",28,"Kikale","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28164,555624074,"TZA","METT",2011,"Not Reported",28,"Kikoka","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28165,555624063,"TZA","METT",2011,"Not Reported",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28166,301484,"TZA","METT",2011,"Not Reported",28,"Manga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28167,555623860,"TZA","METT",2011,"Not Reported",28,"Mchungu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28169,555623854,"TZA","METT",2011,"Not Reported",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28170,555623841,"TZA","METT",2011,"Not Reported",28,"Pugu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28171,555624097,"TZA","METT",2011,"Not Reported",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28172,555623837,"TZA","METT",2011,"Not Reported",28,"Ruvu South","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28173,555623830,"TZA","METT",2011,"Not Reported",28,"Vikindu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28174,555624064,"TZA","METT",2012,"Not Reported",28,"Lionja","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28175,303059,"VNM","METT",2013,"Not Reported",28,"Pu Luong","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28176,1251,"IDN","METT",2013,"Not Reported",28,"Gunung Leuser","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28177,5061,"BTN","METT",2013,"Not Reported",28,"Jigme Dorji ","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28178,303039,"VNM","METT",2013,"Not Reported",28,"Phong Dien","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28179,303066,"VNM","METT",2007,"Not Reported",28,"Song Thanh","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28180,1899,"IDN","METT",2010,"Not Reported",28,"Kayan Mentarang","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28181,303888,"SUR","METT",2010,"Not Reported",28,"Central Suriname","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28182,281,"SUR","METT",2010,"Not Reported",28,"Coppename Monding","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28183,5224,"SUR","METT",2010,"Not Reported",28,"Hertenrits","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28184,1059,"MNE","METT",2009,"Not Reported",28,"Biogradska Gora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28185,16385,"MNE","METT",2009,"Not Reported",28,"Skadarsko jezero","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28186,61506,"RUS","METT",2011,"Not Reported",28,"Yugyd Va","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28187,166,"CRI","METT",2010,"Not Reported",28,"Santa Rosa","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28188,164,"CRI","METT",2010,"Not Reported",28,"Corcovado","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28189,2235,"CRI","METT",2010,"Not Reported",28,"Cahuita","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28190,11849,"CRI","METT",2010,"Not Reported",28,"Isla Del Caño","Reserva Biológica","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28191,170,"CRI","METT",2011,"Not Reported",28,"Isla Del Coco","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28193,313494,"COG","METT",2009,"Not Reported",28,"Lac Télé","Community Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28194,28556,"BFA","METT",2010,"Not Reported",28,"Sissili","classified forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28196,33157,"MWI","METT",2012,"Not Reported",28,"Mangochi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28197,33230,"MWI","METT",2012,"Not Reported",28,"Neno Eastern Escarpment","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28198,33160,"MWI","METT",2012,"Not Reported",28,"Tsamba","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28199,861,"ROU","METT",2009,"Not Reported",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28200,30028,"VEN","METT",0,"Not Reported",28,"Delta del Orinoco","Biosphere Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28201,555593969,"BIH","METT",2010,"Not Reported",28,"Kozara","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28202,1059,"MNE","METT",2012,"Not Reported",28,"Biogradska Gora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28203,861,"ROU","METT",2012,"Not Reported",28,"Retezat","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28204,81224,"ROU","METT",2012,"Not Reported",28,"Semenic - Cheile Carasului","National park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28205,16399,"SRB","METT",2009,"Not Reported",28,"Sicevacka klisura","Nature Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28206,1407,"THA","METT",2009,"Not Reported",28,"Huai Kha Khaeng","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28207,303575,"TZA","METT",2009,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28208,555624063,"TZA","METT",2009,"Not Reported",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28209,555623854,"TZA","METT",2008,"Not Reported",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28210,555624097,"TZA","METT",2009,"Not Reported",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28211,126,"COL","METT",2010,"Not Reported",28,"Los Flamencos","Fauna and Flora Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28212,303552,"COL","METT",2010,"Not Reported",28,"Malpelo","Fauna and Flora Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28213,555592943,"ECU","METT",2009,"Not Reported",28,"Arenillas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28214,189,"ECU","METT",2009,"Not Reported",28,"Machalilla","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28215,555624063,"TZA","METT",2014,"Not Reported",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28216,555623854,"TZA","METT",2014,"Not Reported",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28217,20679,"ARM","METT",2014,"Not Reported",28,"Shikahogh","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28218,759,"KEN","METT",2013,"Not Reported",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28219,2417,"KEN","METT",2014,"Not Reported",28,"Boni","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28220,2591,"KEN","METT",2014,"Not Reported",28,"Dodori","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28221,759,"KEN","METT",2014,"Not Reported",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28222,350016,"TZA","METT",2015,"Not Reported",28,"Derema","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28223,301615,"TZA","METT",2015,"Not Reported",28,"Katundu","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28224,301484,"TZA","METT",2015,"Not Reported",28,"Manga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28225,301656,"TZA","METT",2015,"Not Reported",28,"Masagati","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28226,351705,"TZA","METT",2015,"Not Reported",28,"Mlinga","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28227,301469,"TZA","METT",2015,"Not Reported",28,"Mtai","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28228,303529,"TZA","METT",2015,"Not Reported",28,"Rupiage","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28229,303575,"TZA","METT",2015,"Not Reported",28,"Chitoa","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28230,555624063,"TZA","METT",2015,"Not Reported",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28231,301685,"TZA","METT",2015,"Not Reported",28,"Malehi","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28232,303387,"TZA","METT",2015,"Not Reported",28,"Mitundumbea","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28233,555623854,"TZA","METT",2015,"Not Reported",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28234,301676,"TZA","METT",2015,"Not Reported",28,"Pindiro","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28235,301673,"TZA","METT",2015,"Not Reported",28,"Rungo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28236,6675,"DOM","METT",2013,"Not Reported",28,"Sierra de Bahoruco","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28238,478128,"DOM","METT",2012,"Not Reported",28,"Montaña La Humeadora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28239,478128,"DOM","METT",2014,"Not Reported",28,"Montaña La Humeadora","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28244,184,"ECU","METT",2013,"Not Reported",28,"Cotacachi Cayapas","Ecological Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28245,20679,"ARM","METT",2009,"Not Reported",28,"Shikahogh","State Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28246,220101,"JAM","METT",2015,"Not Reported",28,"Portland Bight","Protected Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28247,127825,"PER","METT",2012,"Not Reported",28,"Bahuaja Sonene","Parques Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28248,10110,"VNM","METT",2012,"Not Reported",28,"Bach Ma","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28249,7877,"VNM","METT",2012,"Not Reported",28,"Cat Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28250,302848,"VNM","METT",2012,"Not Reported",28,"Na Hang","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28251,759,"KEN","METT",2007,"Not Reported",28,"Shimba Hills","National Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28252,555624097,"TZA","METT",2007,"Not Reported",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28253,555624063,"TZA","METT",2007,"Not Reported",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28254,555624063,"TZA","METT",2006,"Not Reported",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28255,555624097,"TZA","METT",2006,"Not Reported",28,"Rondo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28256,555624063,"TZA","METT",2013,"Not Reported",28,"Litipo","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28257,555623854,"TZA","METT",2013,"Not Reported",28,"Ngarama North","Forest Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28258,259,"PER","METT",2013,"Not Reported",28,"Cerros de Amotape","Parques Nacionales","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28259,20187,"PER","METT",2013,"Not Reported",28,"Laquipampa","Refugio de Vida Sivestre","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28260,555555622,"PER","METT",2013,"Not Reported",28,"Vilacota Maure","Regional Conservation Area","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28261,7877,"VNM","METT",2011,"Not Reported",28,"Cat Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28262,1099,"ZMB","METT",2013,"Not Reported",28,"Kasanka","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28263,1094,"ZMB","METT",2013,"Not Reported",28,"Lavushi Manda","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28264,34314,"BLZ","METT",2013,"Not Reported",28,"Laughing Bird Caye National Park","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28265,12241,"BLZ","METT",2013,"Not Reported",28,"Bladden Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28266,61943,"KHM","METT",2012,"Not Reported",28,"Kulen Promtep","Wildlife Sanctuary","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28267,165,"CRI","METT",2011,"Not Reported",28,"Braulio Carrillo","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28268,2235,"CRI","METT",2011,"Not Reported",28,"Cahuita","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28269,157,"CRI","METT",2011,"Not Reported",28,"Carara","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28270,163,"CRI","METT",2011,"Not Reported",28,"Chirripó","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28271,164,"CRI","METT",2011,"Not Reported",28,"Corcovado","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28272,156,"CRI","METT",2011,"Not Reported",28,"Hitoy Cerere","Reserva Biológica","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28273,171,"CRI","METT",2011,"Not Reported",28,"Volcán Irazú","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28274,2250,"CRI","METT",2011,"Not Reported",28,"Manuel Antonio","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28275,4646,"CRI","METT",2011,"Not Reported",28,"Palo Verde","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28276,102367,"CRI","METT",2011,"Not Reported",28,"Piedras Blancas","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28277,169,"CRI","METT",2011,"Not Reported",28,"Volcán Poás","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28278,168,"CRI","METT",2011,"Not Reported",28,"Rincón De La Vieja","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28279,166,"CRI","METT",2011,"Not Reported",28,"Santa Rosa","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28280,102334,"CRI","METT",2011,"Not Reported",28,"Volcán Tenorio","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28281,19384,"CRI","METT",2011,"Not Reported",28,"Tivives","Zona Protectora","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28282,167,"CRI","METT",2011,"Not Reported",28,"Tortuguero","Parque Nacional","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28283,303873,"GAB","METT",2013,"Not Reported",28,"Ivindo","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28284,72324,"GAB","METT",2013,"Not Reported",28,"Minkebe","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28285,303878,"GAB","METT",2013,"Not Reported",28,"Mwagne","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28286,97566,"MDA","METT",2013,"Not Reported",28,"Codru","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28287,97570,"MDA","METT",2013,"Not Reported",28,"Plaiul fagului","Scientific Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28288,68348,"RUS","METT",2012,"Not Reported",28,"Kurshskaya Kosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28289,11577,"RUS","METT",2012,"Not Reported",28,"Sochinsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28290,313443,"KHM","METT",2012,"Not Reported",28,"Preah Vihear","Protected Forest","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28291,12241,"BLZ","METT",2010,"Not Reported",28,"Bladden Nature Reserve","Nature Reserve","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28292,61588,"GEO","METT",2010,"Not Reported",28,"Borjomi-Kharagauli","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28293,11577,"RUS","METT",2008,"Not Reported",28,"Sochinsky","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28294,555594121,"VNM","METT",2008,"Not Reported",28,"Bai Tu Long","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28295,7877,"VNM","METT",2008,"Not Reported",28,"Cat Ba","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +28296,68348,"RUS","METT",2008,"Not Reported",28,"Kurshskaya Kosa","National Park","GD-PAME, version pre-2017","Not Reported",2018,"English","FALSE","FALSE",, +15127,29681,"BLZ","Belize MEE",2006,"Not Reported",29,"Actun Tunichil Muknal","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15128,29681,"BLZ","METT",2010,"Not Reported",29,"Actun Tunichil Muknal","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15129,29681,"BLZ","METT",2013,"Not Reported",29,"Actun Tunichil Muknal","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15130,301992,"BLZ","Belize MEE",2006,"Not Reported",29,"Aguacaliente Wildlife Sancutary ","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15131,301992,"BLZ","Belize MEE",2009,"Not Reported",29,"Aguacaliente Wildlife Sancutary ","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15132,342385,"BLZ","Belize MEE",2009,"Not Reported",29,"Aguacaliente Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15133,61957,"BLZ","Belize MEE",2006,"Not Reported",29,"Aguas Turbias National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15134,61957,"BLZ","Belize MEE",2009,"Not Reported",29,"Aguas Turbias National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15135,301985,"BLZ","Belize MEE",2006,"Not Reported",29,"Bacalar Chico National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15136,99651,"BLZ","Belize MEE",2009,"Not Reported",29,"Bacalar Chico Marine Reserve","Bacalar Chico Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15137,301985,"BLZ","Belize MEE",2009,"Not Reported",29,"Bacalar Chico National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15138,301985,"BLZ","METT",2013,"Not Reported",29,"Bacalar Chico National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15139,301985,"BLZ","METT",2010,"Not Reported",29,"Bacalar Chico National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15140,124383,"BLZ","WH Outlook Report",2014,"Not Reported",29,"Belize Barrier Reef Reserve System (World Heritage Site)","World Heritage Site","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15141,301930,"BLZ","Belize MEE",2006,"Not Reported",29,"Billy Barquedier National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15142,301930,"BLZ","Belize MEE",2009,"Not Reported",29,"Billy Barquedier National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15143,12241,"BLZ","Belize MEE",2006,"Not Reported",29,"Bladden Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15144,12241,"BLZ","Belize MEE",2009,"Not Reported",29,"Bladden Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15145,12241,"BLZ","METT",2011,"Not Reported",29,"Bladden Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15146,342396,"BLZ","METT",2005,"Not Reported",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15147,342396,"BLZ","METT",2009,"Not Reported",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15148,342396,"BLZ","METT",2011,"Not Reported",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15149,342396,"BLZ","Belize MEE",2009,"Not Reported",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15150,301906,"BLZ","Belize MEE",2006,"Not Reported",29,"Blue Hole Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15151,301906,"BLZ","Belize MEE",2009,"Not Reported",29,"Blue Hole Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15152,301906,"BLZ","METT",2010,"Not Reported",29,"Blue Hole Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15153,301906,"BLZ","METT",2013,"Not Reported",29,"Blue Hole Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15155,37253,"BLZ","Belize MEE",2006,"Not Reported",29,"Burdon Canal Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15156,37253,"BLZ","Belize MEE",2009,"Not Reported",29,"Burdon Canal Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15157,313424,"BLZ","Belize MEE",2006,"Not Reported",29,"Caye Caulker Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15158,313424,"BLZ","Belize MEE",2009,"Not Reported",29,"Caye Caulker Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15160,301908,"BLZ","METT",2013,"Not Reported",29,"Caye Caulker Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15161,301908,"BLZ","METT",2010,"Not Reported",29,"Caye Caulker Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15162,12243,"BLZ","Belize MEE",2009,"Not Reported",29,"Hol Chan Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15163,3306,"BLZ","Belize MEE",2006,"Not Reported",29,"Chiquibul Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15164,20230,"BLZ","Belize MEE",2006,"Not Reported",29,"Chiquibul National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15165,3306,"BLZ","Belize MEE",2009,"Not Reported",29,"Chiquibul Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15166,20230,"BLZ","Belize MEE",2009,"Not Reported",29,"Chiquibul National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15167,10579,"BLZ","Belize MEE",2006,"Not Reported",29,"Cockscomb Basin Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15168,10579,"BLZ","Belize MEE",2009,"Not Reported",29,"Cockscomb Basin Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15169,10579,"BLZ","METT",2010,"Not Reported",29,"Cockscomb Basin Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15170,10579,"BLZ","METT",2013,"Not Reported",29,"Cockscomb Basin Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15171,3314,"BLZ","METT",2010,"Not Reported",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15172,3314,"BLZ","METT",2013,"Not Reported",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15173,3314,"BLZ","Belize MEE",2006,"Not Reported",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15174,3314,"BLZ","Belize MEE",2009,"Not Reported",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15175,3314,"BLZ","METT",2009,"Not Reported",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15176,3314,"BLZ","METT",2005,"Not Reported",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15177,3314,"BLZ","METT",2011,"Not Reported",29,"Colombia River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15178,19553,"BLZ","METT",2010,"Not Reported",29,"Bermudian Landing Community Baboon Sanctuary Private Reserve ","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15179,19553,"BLZ","METT",2013,"Not Reported",29,"Bermudian Landing Community Baboon Sanctuary Private Reserve ","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15180,301909,"BLZ","Belize MEE",2006,"Not Reported",29,"Corozal Bay Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15181,301909,"BLZ","Belize MEE",2009,"Not Reported",29,"Corozal Bay Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15182,166863,"BLZ","Belize MEE",2006,"Not Reported",29,"Crooked Tree Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15183,166863,"BLZ","Belize MEE",2009,"Not Reported",29,"Crooked Tree Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15184,166863,"BLZ","METT",2010,"Not Reported",29,"Crooked Tree Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15185,166863,"BLZ","METT",2013,"Not Reported",29,"Crooked Tree Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15186,3311,"BLZ","Belize MEE",2006,"Not Reported",29,"Deep River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15187,3311,"BLZ","Belize MEE",2009,"Not Reported",29,"Deep River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15188,34313,"BLZ","Belize MEE",2006,"Not Reported",29,"Five Blues Lake National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15189,34313,"BLZ","Belize MEE",2009,"Not Reported",29,"Five Blues Lake National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15190,12225,"BLZ","Belize MEE",2006,"Not Reported",29,"Freshwater Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15191,12225,"BLZ","Belize MEE",2009,"Not Reported",29,"Freshwater Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15192,301911,"BLZ","Belize MEE",2006,"Not Reported",29,"Gales Point Wildlife Sanctuary ","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15193,301911,"BLZ","Belize MEE",2009,"Not Reported",29,"Gales Point Wildlife Sanctuary ","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15194,220039,"BLZ","Belize MEE",2009,"Not Reported",29,"Gladden Spit and Silk Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15195,220039,"BLZ","METT",2013,"Not Reported",29,"Gladden Spit and Silk Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15196,220039,"BLZ","METT",2010,"Not Reported",29,"Gladden Spit and Silk Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15197,99653,"BLZ","Belize MEE",2009,"Not Reported",29,"Glover's Reef Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15198,301941,"BLZ","Belize MEE",2009,"Not Reported",29,"Gloden Stream Corridor Presever,Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15199,301941,"BLZ","METT",2005,"Not Reported",29,"Gloden Stream Corridor Presever,Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15200,301941,"BLZ","METT",2009,"Not Reported",29,"Gloden Stream Corridor Presever,Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15201,301941,"BLZ","METT",2011,"Not Reported",29,"Gloden Stream Corridor Presever,Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15202,313426,"BLZ","Belize MEE",2006,"Not Reported",29,"Gra Gra Lagoon National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15203,313426,"BLZ","Belize MEE",2009,"Not Reported",29,"Gra Gra Lagoon National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15204,3308,"BLZ","Belize MEE",2006,"Not Reported",29,"Grants Work Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15205,3308,"BLZ","Belize MEE",2009,"Not Reported",29,"Grants Work Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15206,2212,"BLZ","Belize MEE",2006,"Not Reported",29,"Guanacaste National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15207,2212,"BLZ","Belize MEE",2009,"Not Reported",29,"Guanacaste National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15208,2212,"BLZ","METT",2010,"Not Reported",29,"Guanacaste National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15209,2212,"BLZ","METT",2013,"Not Reported",29,"Guanacaste National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15210,2213,"BLZ","Belize MEE",2009,"Not Reported",29,"Halfmoon Caye","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15211,2213,"BLZ","METT",2010,"Not Reported",29,"Halfmoon Caye","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15212,2213,"BLZ","METT",2013,"Not Reported",29,"Halfmoon Caye","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15213,2213,"BLZ","Belize MEE",2006,"Not Reported",29,"Halfmoon Caye","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15214,12243,"BLZ","METT",2013,"Not Reported",29,"Hol Chan Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15215,12243,"BLZ","MPA MEE",2003,"Not Reported",29,"Hol Chan Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15216,12243,"BLZ","METT",2010,"Not Reported",29,"Hol Chan Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15217,301912,"BLZ","Belize MEE",2006,"Not Reported",29,"Honey Camp National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15218,301912,"BLZ","Belize MEE",2009,"Not Reported",29,"Honey Camp National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15219,34314,"BLZ","Belize MEE",2006,"Not Reported",29,"Laughing Bird Caye National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15220,34314,"BLZ","Belize MEE",2009,"Not Reported",29,"Laughing Bird Caye National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15221,99651,"BLZ","METT",2013,"Not Reported",29,"Bacalar Chico Marine Reserve","Bacalar Chico Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15222,34314,"BLZ","METT",2010,"Not Reported",29,"Laughing Bird Caye National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15223,3313,"BLZ","Belize MEE",2006,"Not Reported",29,"Machaca Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15224,3313,"BLZ","Belize MEE",2009,"Not Reported",29,"Machaca Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15225,3313,"BLZ","METT",2010,"Not Reported",29,"Machaca Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15226,3313,"BLZ","METT",2013,"Not Reported",29,"Machaca Creek Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15227,12226,"BLZ","Belize MEE",2006,"Not Reported",29,"Manatee Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15228,12226,"BLZ","Belize MEE",2009,"Not Reported",29,"Manatee Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15229,12227,"BLZ","Belize MEE",2006,"Not Reported",29,"Mango Creek 1 Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15230,12227,"BLZ","Belize MEE",2009,"Not Reported",29,"Mango Creek 1 Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15233,28850,"BLZ","Belize MEE",2006,"Not Reported",29,"Maya Mountian Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15234,28850,"BLZ","Belize MEE",2009,"Not Reported",29,"Maya Mountian Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15235,301934,"BLZ","Belize MEE",2006,"Not Reported",29,"MayflowerBocawina National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15236,301934,"BLZ","Belize MEE",2009,"Not Reported",29,"MayflowerBocawina National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15237,301914,"BLZ","Belize MEE",2006,"Not Reported",29,"Monkey Bay Naitonal Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15238,301914,"BLZ","Belize MEE",2009,"Not Reported",29,"Monkey Bay Naitonal Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15240,301915,"BLZ","Belize MEE",2006,"Not Reported",29,"Monkey Caye Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15241,301915,"BLZ","Belize MEE",2009,"Not Reported",29,"Monkey Caye Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15242,3305,"BLZ","Belize MEE",2006,"Not Reported",29,"Mountain Pine Ridge Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15243,3305,"BLZ","Belize MEE",2009,"Not Reported",29,"Mountain Pine Ridge Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15244,3305,"BLZ","METT",2010,"Not Reported",29,"Mountain Pine Ridge Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15245,3305,"BLZ","METT",2013,"Not Reported",29,"Mountain Pine Ridge Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15246,301932,"BLZ","Belize MEE",2006,"Not Reported",29,"Nojkaaxmeen Eligio Panti","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15247,301932,"BLZ","Belize MEE",2009,"Not Reported",29,"Nojkaaxmeen Eligio Panti","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15248,61958,"BLZ","Belize MEE",2006,"Not Reported",29,"Paynes Creek National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15249,61958,"BLZ","Belize MEE",2009,"Not Reported",29,"Paynes Creek National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15250,61958,"BLZ","METT",2010,"Not Reported",29,"Paynes Creek National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15251,61958,"BLZ","METT",2013,"Not Reported",29,"Paynes Creek National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15252,342393,"BLZ","Belize MEE",2009,"Not Reported",29,"Peccary Hills National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15253,220100,"BLZ","METT",2010,"Not Reported",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15254,220100,"BLZ","METT",2013,"Not Reported",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15255,220100,"BLZ","Belize MEE",2009,"Not Reported",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15256,220100,"BLZ","METT",2005,"Not Reported",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15257,220100,"BLZ","METT",2009,"Not Reported",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15258,220100,"BLZ","METT",2011,"Not Reported",29,"Port Honduras Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15259,61959,"BLZ","Belize MEE",2006,"Not Reported",29,"Rio Blanco National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15260,61959,"BLZ","Belize MEE",2009,"Not Reported",29,"Rio Blanco National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15261,20224,"BLZ","Belize MEE",2009,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15262,20224,"BLZ","METT",2010,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15263,20224,"BLZ","METT",2013,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15264,20224,"BLZ","PIP Site Consolidation",1993,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15265,20224,"BLZ","PIP Site Consolidation",1996,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15266,20224,"BLZ","PIP Site Consolidation",1997,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15267,20224,"BLZ","PIP Site Consolidation",1998,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15268,20224,"BLZ","PIP Site Consolidation",1999,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15269,20224,"BLZ","PIP Site Consolidation",2001,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15270,20224,"BLZ","PIP Site Consolidation",2000,"Not Reported",29,"Rio Bravo Conservation & Management","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15271,342394,"BLZ","Belize MEE",2009,"Not Reported",29,"Runaway Creek Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15272,99656,"BLZ","Belize MEE",2009,"Not Reported",29,"Sapodilla Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15273,99656,"BLZ","METT",2013,"Not Reported",29,"Sapodilla Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15274,99656,"BLZ","METT",2010,"Not Reported",29,"Sapodilla Cayes Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15275,61956,"BLZ","Belize MEE",2009,"Not Reported",29,"Sarstoon-Temash National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15276,902744,"BLZ","METT",2010,"Not Reported",29,"Sarstoon-Temash National Park","Ramsar Site, Wetland of International Importance","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15277,902744,"BLZ","METT",2013,"Not Reported",29,"Sarstoon-Temash National Park","Ramsar Site, Wetland of International Importance","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15278,61956,"BLZ","Belize MEE",2006,"Not Reported",29,"Sarstoon-Temash National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15279,20226,"BLZ","Belize MEE",2009,"Not Reported",29,"Shipstern Nature Reserve Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15280,20226,"BLZ","METT",2013,"Not Reported",29,"Shipstern Nature Reserve Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15281,20226,"BLZ","METT",0,"Not Reported",29,"Shipstern Nature Reserve Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15282,3307,"BLZ","Belize MEE",2006,"Not Reported",29,"Sibun Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15283,3307,"BLZ","Belize MEE",2009,"Not Reported",29,"Sibun Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15284,12229,"BLZ","Belize MEE",2006,"Not Reported",29,"Sittee River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15285,12229,"BLZ","Belize MEE",2009,"Not Reported",29,"Sittee River Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15286,99652,"BLZ","Belize MEE",2009,"Not Reported",29,"South Water Caye Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15287,99652,"BLZ","METT",2013,"Not Reported",29,"South Water Caye Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15288,99652,"BLZ","METT",2010,"Not Reported",29,"South Water Caye Marine Reserve","Marine Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15289,313429,"BLZ","Belize MEE",2006,"Not Reported",29,"Spanish Creek Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15290,313429,"BLZ","Belize MEE",2009,"Not Reported",29,"Spanish Creek Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15291,20225,"BLZ","Belize MEE",2006,"Not Reported",29,"St. Herman's Blue National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15292,20225,"BLZ","Belize MEE",2009,"Not Reported",29,"St. Herman's Blue National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15293,20225,"BLZ","METT",2010,"Not Reported",29,"St. Herman's Blue National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15294,20225,"BLZ","METT",2013,"Not Reported",29,"St. Herman's Blue National Park","National Park","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15295,313431,"BLZ","Belize MEE",2006,"Not Reported",29,"Swallow Caye Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15296,313431,"BLZ","Belize MEE",2009,"Not Reported",29,"Swallow Caye Wildlife Sanctuary","Wildlife Sanctuary","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15297,3312,"BLZ","Belize MEE",2006,"Not Reported",29,"Swasey-Balden Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15298,3312,"BLZ","Belize MEE",2009,"Not Reported",29,"Swasey-Balden Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15299,301916,"BLZ","Belize MEE",2006,"Not Reported",29,"Tapir Mountian Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15300,301916,"BLZ","Belize MEE",2009,"Not Reported",29,"Tapir Mountian Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15301,301916,"BLZ","METT",2010,"Not Reported",29,"Tapir Mountian Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15302,301916,"BLZ","METT",2013,"Not Reported",29,"Tapir Mountian Nature Reserve","Nature Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15303,313433,"BLZ","Belize MEE",2006,"Not Reported",29,"Thousand Foot Falls Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15304,313433,"BLZ","Belize MEE",2009,"Not Reported",29,"Thousand Foot Falls Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15305,342396,"BLZ","METT",2010,"Not Reported",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15306,342396,"BLZ","METT",2013,"Not Reported",29,"Tide Private Reserve","Private Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15307,116297,"BLZ","Belize MEE",2006,"Not Reported",29,"Vaca Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15308,116297,"BLZ","Belize MEE",2009,"Not Reported",29,"Vaca Forest Reserve","Forest Reserve","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15309,301918,"BLZ","Belize MEE",2006,"Not Reported",29,"Victoria Peak Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15310,301918,"BLZ","Belize MEE",2009,"Not Reported",29,"Victoria Peak Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15311,301918,"BLZ","METT",2010,"Not Reported",29,"Victoria Peak Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +15312,301918,"BLZ","METT",2013,"Not Reported",29,"Victoria Peak Natural Monument","Natural Monument","Belize Management Effectiveness Evaluation","Forest Department",2018,"English","FALSE","FALSE",, +20279,690,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Corbett","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20280,690,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Corbett","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20281,690,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Corbett","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20282,691,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Dudhwa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20283,691,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Dudhwa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20284,691,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Dudhwa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20285,19701,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Melghat","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20286,19701,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Melghat","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20287,19701,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Melghat","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20288,1829,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Darrah","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20289,694,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Pench","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20290,694,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Pench","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20291,694,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Pench","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20292,1808,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Ranthambhore","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20293,1808,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Ranthambhore","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20294,1808,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Ranthambhore","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20297,10255,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Sariska","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20298,10255,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Sariska","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20299,10255,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Sariska","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20300,698,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Tadoba","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20301,698,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Tadoba","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20302,698,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Tadoba","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20303,699,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Bandhavgarh","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20304,699,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Bandhavgarh","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20305,699,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Bandhavgarh","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20306,686,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Kanha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20307,686,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Kanha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20308,686,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Kanha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20309,10244,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Panna","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20310,10244,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Panna","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20311,10244,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Panna","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20312,1805,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Pench","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20313,1805,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Pench","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20314,1805,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Pench","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20315,9290,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Sanjay Dubri","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20316,9290,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Sanjay Dubri","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20317,9291,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Satpura","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20318,9291,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Satpura","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20319,1800,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Achanakmar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20320,1800,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Achanakmar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20321,9292,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Indravati","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20322,9292,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Indravati","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20323,9292,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Indravati","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20324,1788,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Kawal","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20325,1777,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Rajiv Gandhi (Nagarjunasagar-Srisailam)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20326,1777,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Rajiv Gandhi (Nagarjunasagar-Srisailam)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20327,1777,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Rajiv Gandhi (Nagarjunasagar-Srisailam)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20328,1835,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Palamau","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20329,1835,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Palamau","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20330,1835,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Palamau","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20331,1793,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Satkosia Gorge","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20332,1793,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Satkosia Gorge","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20333,1778,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Simlipal","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20334,1778,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Simlipal","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20335,1778,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Simlipal","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20336,10251,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Udanti Wild Buffalo","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20337,10251,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Udanti Wild Buffalo","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20338,26186,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Valmiki","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20339,26186,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Valmiki","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20340,26186,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Valmiki","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20341,19707,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Indira Gandhi (Annamalai)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20342,19707,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Indira Gandhi (Annamalai)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20343,4127,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Bandipur","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20344,4127,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Bandipur","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20345,4127,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Bandipur","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20346,4126,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Bhadra","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20347,4126,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Bhadra","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20348,4126,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Bhadra","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20349,4600,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Biligiri Rangaswami Temple","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20350,1779,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Dandeli","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20351,1779,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Dandeli","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20352,1826,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Kalakad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20353,1826,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Kalakad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20354,1826,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Kalakad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20355,26383,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Mudumalai","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20356,26383,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Mudumalai","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20357,4128,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Rajiv Gandhi (Nagarhole)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20358,4128,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Rajiv Gandhi (Nagarhole)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20359,4128,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Rajiv Gandhi (Nagarhole)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20360,1817,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Parambikulam","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20361,1817,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Parambikulam","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20362,19715,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Periyar","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20363,19715,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Periyar","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20364,19715,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Periyar","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20366,62663,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Buxa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20367,62663,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Buxa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20368,62663,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Buxa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20369,1804,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Dampa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20370,1804,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Dampa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20371,1804,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Dampa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20372,692,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Kaziranga","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20373,692,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Kaziranga","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20374,26164,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Manas","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20375,26164,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Manas","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20376,26164,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Manas","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20377,4527,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Namdapha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20378,4527,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Namdapha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20379,4527,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Namdapha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20380,308536,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Nameri","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20381,308536,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Nameri","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20382,308536,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Nameri","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20383,4530,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Pakke (Pakhui)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20384,4530,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Pakke (Pakhui)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20385,4530,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Pakke (Pakhui)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20386,9960,"IND","First Cycle of MEE Tiger Reserve",2006,"Not Reported",30,"Sundarban","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20387,9960,"IND","Second Cycle of MEE Tiger Reserve",2010,"Not Reported",30,"Sundarban","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20388,9960,"IND","Third Cycle of MEE Tiger Reserve",2014,"Not Reported",30,"Sundarban","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20389,26405,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Govind","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20390,26415,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Sohelwa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20391,4559,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Kishtwar","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20392,9211,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Great Himalayan","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20393,17547,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Sultanpur","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20394,1796,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"National Chambal","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20395,1779,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Dandeli","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20396,1774,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Papikonda","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20397,308530,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Marine (Tamil Nadu)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20398,26383,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Mudumalai","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20399,1812,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Wayanad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20400,10092,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Mahatma Gandhi Marine","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20401,4633,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Mahananda","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20402,1847,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Jaldapara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20403,4537,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Mahuadanr","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20404,10251,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Udanti Wild Buffalo","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20405,9959,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Sunabeda","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20406,1834,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Bhitarkanika","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20407,10241,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Sanjay Gandhi (Borivili)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20408,1838,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Nagzira","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20409,9249,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Palpur","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20410,694,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Pench","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20411,9234,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Barda","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20412,1862,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Keoladeo Ghana","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20413,9208,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Pabitora","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20414,62670,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Sessa Orchid","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20415,4609,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Keibul-Lamjao","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20416,689,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Khangchendzonga","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20417,14176,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Sepahijala","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20418,9220,"IND","MEE of National Parks and Wildlife Sanctuaries",2007,"Not Reported",30,"Nongkhyllem","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20419,12813,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Rajaji","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20420,17545,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Kalesar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20422,12137,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Changthang","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20423,62848,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Gundla Brahmeswaram","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20424,13220,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Interview Island","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20425,308533,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Mukurthi","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20426,308570,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Mollem","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20427,4129,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Mookambika","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20428,700,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Eravikulam","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20430,1806,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Semarsot","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20431,4538,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Dalma","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20432,4544,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Kaimur","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20433,14180,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Singalila","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20434,308541,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Gorumara","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20435,4553,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Gulf of Kutch","Marine National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20436,17386,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Desert","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20437,1801,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Ratapani","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20438,1802,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Kumbhalgarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20439,1857,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Wild Ass","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20440,19699,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Bhimashankar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20441,143000,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Barsey Rhododendron","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20442,26341,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Murlen","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20443,26343,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Intanki","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20444,308535,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Orang (Rajiv Gandhi)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20445,19710,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Gumti","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20446,62666,"IND","MEE of National Parks and Wildlife Sanctuaries",2009,"Not Reported",30,"Eagle Nest","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20447,4618,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Abohar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20448,13969,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Balphakram","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20449,1821,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Barnawapara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20450,4600,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Biligiri Rangaswami Temple","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20451,1861,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Chandaka Dampara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20452,19700,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Chandoli","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20453,19717,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Chaprala","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20455,308537,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Dibru-Saikhowa","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20456,1810,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Sanjay","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20457,1832,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Hazaribagh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20458,4558,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Hemis","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20460,308575,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Kanwarjheel","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20461,308553,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Kibber","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20462,1813,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Nanda Devi","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20463,9230,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Neora Valley","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20465,26338,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Ngengpui","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20466,1784,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Noradehi","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20468,12420,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Pin Valley","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20470,13662,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Shendurney","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20471,9241,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Shoolpaneswar (Dhumkhal)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20472,4623,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Sitamata","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20473,26128,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Sri Venkateswara","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20474,14175,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Trishna","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20475,702,"IND","MEE of National Parks and Wildlife Sanctuaries",2010,"Not Reported",30,"Velavadar (Blackbuck)","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20476,4556,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Dachigam","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20478,9244,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Rupi Bhaba","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20479,1785,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Kedarnath","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20480,17430,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Bhindawas","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20481,1846,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Mount Abu","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20482,12414,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Sohagibarwa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20483,28385,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Gangotri","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20484,19693,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Kudremukh","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20485,9216,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Silent Valley","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20486,1781,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Coringa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20487,1773,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Kolleru","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20488,10239,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Peppara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20489,1859,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Point Calimere","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20490,19708,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Srivilliputhur Grizzled Squirrel","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20492,4632,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Chapramari","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20493,9252,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Hadgarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20494,1787,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Chilka (Nalaban)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20495,19678,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Nakti Dam","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20496,142995,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Vikramshila Gangetic Dolphin","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20497,4547,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Koderma","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20498,10258,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Fambong Lho","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20499,4607,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Great Indian Bustard","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20500,4604,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Karnala","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20501,9239,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Purna","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20502,4550,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Bondla","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20503,308570,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Mollem","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20504,9246,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Karera","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20505,687,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Gir","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20506,10242,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Kanger Valley","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20507,12412,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Mouling","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20508,14174,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Nokrek","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20509,26339,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Phawngpui Blue Mountain","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20512,4528,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"D' Ering Memorial (Lali)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20513,308560,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Hollongapar Gibbon","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20514,10252,"IND","MEE of National Parks and Wildlife Sanctuaries",2013,"Not Reported",30,"Fakim","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20516,19687,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Chhilchila","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20517,4586,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Manali","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20518,12134,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Gulmarg","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20519,9962,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Harike Lake","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20520,308592,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Okhla","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20521,308596,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Sur Sarovar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20522,19712,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Binsar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20523,9260,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Mount Harriett","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20524,308542,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Rani Jhansi","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20525,1830,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Manjira Crocodile","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20526,1849,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Cotigaon","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20527,4592,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Bannerghatta","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20528,62665,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Gudavi Bird","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20529,4602,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Idukki","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20530,9255,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Pulicat Lake Bird","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20531,4539,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Gautam Budha","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20532,1848,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Badalkhol","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20533,1843,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Tamor Pingla","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20535,19704,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Lakhari Valley","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20536,9253,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Kothagarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20537,4628,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Lothian Island","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20538,9231,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Ramnabagan","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20540,4552,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Bansda","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20541,9235,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Khijadia","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20542,1868,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Nal Sarovar","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20543,10249,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Phen","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20544,9248,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Ken Gharial","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20545,19724,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Phansad","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20546,1864,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Radhanagari","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20547,62669,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Kane","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20548,19675,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Deepor Beel","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20550,19702,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Yangoupokpi-Lokchao","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20551,4610,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Siju","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20553,19706,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Maenam","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20554,19711,"IND","MEE of National Parks and Wildlife Sanctuaries",2016,"Not Reported",30,"Roa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20556,12416,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Pong Dam Lake","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20557,4579,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Shimla Water Catchment","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20558,12136,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Karakoram (Nubra Shyok)","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20560,1852,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Chandraprabha","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20561,12257,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Hastinapur","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20562,12256,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Askot Musk Deer","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20563,10093,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Lohabarrack","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20564,308538,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Mahaveer Harina Vanastha","National Park","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20565,1791,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Pakhal","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20566,308563,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Sri Penusila Narasimha","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20568,19694,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Cauvery","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20574,308551,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Palkot","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20576,1866,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Debrigarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20578,4635,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Ballavpur","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20581,33549,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Balaram Ambaji","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20582,9247,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Ghatigaon","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20583,1803,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Bagdara","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20585,1827,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Tansa","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20586,9225,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Bhensrodgarh","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20587,62668,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Kamlang","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20588,26179,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Barail","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20590,4535,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Sonai-Rupai","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20593,4612,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Puliebadze","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20594,13971,"IND","MEE of National Parks and Wildlife Sanctuaries",2017,"Not Reported",30,"Kyongnosla Alpine","Sanctuary","MEE of India's protected areas","Wildlife Institute of India, Ministry of Environment Forest and Climate Change",2018,"English","FALSE","FALSE",, +20668,4247,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngerukewid Islands","Wildlife Preserve","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20669,18256,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngerumekoal","Spawning Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20670,220005,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngeruangel","Reserve","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20671,313499,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngardok","Nature Reserve","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20672,220009,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ebiil","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20673,555583370,"PLW","National PAME Assessment",2014,"Not Reported",31,"Teluleu","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20674,555585897,"PLW","National PAME Assessment",2014,"Not Reported",31,"Helen Reef","Reserve","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20675,555583339,"PLW","National PAME Assessment",2014,"Not Reported",31,"Mesekelat","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20676,555583346,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngelukes","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20677,555583348,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngerchelchuus","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20678,555583347,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngemai","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20679,555583156,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngermeskang","Bird Sanctuary","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20680,555583351,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngerkal Lake","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20681,555583375,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ungelell","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20682,555583335,"PLW","National PAME Assessment",2014,"Not Reported",31,"Lleyakl Beluu/Omolei","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20683,220010,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngermasech","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20684,555584356,"PLW","National PAME Assessment",2014,"Not Reported",31,"Ngaraard Mangrove","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20685,555583317,"PLW","National PAME Assessment",2014,"Not Reported",31,"Diong Fra Ngerchokl","Conservation Area","Palau Management Effectiveness Evaluation","Palau Protected Areas Network Office, Ministry of Natural Resources, Environment and Tourism",2018,"English","FALSE","FALSE",, +20686,1975,"SVK","CCPAMET",2017,"Not Reported",32,"Tatransky","National Park"," third level of protection"," third level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20687,173009,"SVK","CCPAMET",2017,"Not Reported",32,"Tatransky-OP","Buffer Zone of the National Park"," second level/grade of protection"," second level/grade of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20688,4375,"SVK","CCPAMET",2017,"Not Reported",32,"Mala Fatra","National Park"," third level of protection"," third level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20689,173002,"SVK","CCPAMET",2017,"Not Reported",32,"Mala Fatra-OP","Buffer Zone of the National Park"," second level/grade of protection"," second level/grade of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20690,4376,"SVK","CCPAMET",2017,"Not Reported",32,"Slovensky Kras","National Park"," third level of protection"," third level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20691,173007,"SVK","CCPAMET",2017,"Not Reported",32,"Slovensky Kras-OP","Buffer Zone of the National Park"," second level/grade of protection"," second level/grade of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20692,4377,"SVK","CCPAMET",0,"Not Reported",32,"Slovensky raj","National Park"," third level of protection"," third level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20693,173008,"SVK","CCPAMET",0,"Not Reported",32,"Slovensky Raj-OP","Buffer Zone of the National Park"," second level/grade of protection"," second level/grade of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20694,4378,"SVK","CCPAMET",2017,"Not Reported",32,"Velka Fatra","National Park"," third level of protection"," third level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20695,173010,"SVK","CCPAMET",2017,"Not Reported",32,"Velka Fatra-OP","Buffer Zone of the National Park"," second level/grade of protection"," second level/grade of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20696,4379,"SVK","CCPAMET",2017,"Not Reported",32,"Vihorlat","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20697,11811,"SVK","CCPAMET",2017,"Not Reported",32,"Ponitrie","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20698,11812,"SVK","CCPAMET",2017,"Not Reported",32,"Kysuce","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20699,12152,"SVK","CCPAMET",2017,"Not Reported",32,"Nizke Tatry","National Park"," third level of protection"," third level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20700,173004,"SVK","CCPAMET",2017,"Not Reported",32,"Nizke Tatry-OP","Buffer Zone of the National Park"," second level/grade of protection"," second level/grade of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20701,12155,"SVK","CCPAMET",2017,"Not Reported",32,"Male Karpaty","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20702,12156,"SVK","CCPAMET",2017,"Not Reported",32,"Muranska planina","National Park"," third level of protection"," third level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20703,173003,"SVK","CCPAMET",2017,"Not Reported",32,"Muranska Planina-OP","Buffer Zone of the National Park"," second level/grade of protection"," second level/grade of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20704,12157,"SVK","CCPAMET",2017,"Not Reported",32,"Vychodne Karpaty","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20705,12158,"SVK","CCPAMET",2017,"Not Reported",32,"Stiavnicke vrchy","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20706,12159,"SVK","CCPAMET",2017,"Not Reported",32,"Biele Karpaty","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20707,12160,"SVK","CCPAMET",2017,"Not Reported",32,"Horna Orava","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20708,12161,"SVK","CCPAMET",2017,"Not Reported",32,"Polana","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20709,14146,"SVK","CCPAMET",2017,"Not Reported",32,"Cerova vrchovina","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20710,19034,"SVK","CCPAMET",0,"Not Reported",32,"Zahorie","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20711,30723,"SVK","CCPAMET",2017,"Not Reported",32,"Latorica","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20712,93298,"SVK","CCPAMET",2017,"Not Reported",32,"Strazovske vrchy","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20713,148026,"SVK","CCPAMET",2017,"Not Reported",32,"Poloniny","National Park"," third level of protection"," third level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20714,173006,"SVK","CCPAMET",2017,"Not Reported",32,"Poloniny-OP","Buffer Zone of the National Park"," second level/grade of protection"," second level/grade of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20715,172823,"SVK","CCPAMET",2011,"Not Reported",32,"Dunajske luhy","Protected Landscape Area"," second level of protection"," second level of protection","Slovakia Management Effectiveness Evaluation",0,2018,"FALSE","FALSE", +20716,1850,"MEX","RAPPAM",2005,"Not Reported",33,"Sian Ka'an","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20717,1850,"MEX","How is your MPA doing?",2016,"Not Reported",33,"Sian Ka'an","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20718,306808,"MEX","How is your MPA doing?",2014,"Not Reported",33,"Isla San Pedro Mártir","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20719,306808,"MEX","Ecological Evaluation Score Cards",2007,"Not Reported",33,"Isla San Pedro Mártir","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20720,306808,"MEX","Ecological Evaluation Score Cards",2010,"Not Reported",33,"Isla San Pedro Mártir","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20721,108125,"MEX","How is your MPA doing?",2008,"Not Reported",33,"Zona marina del Archipiélago de Espíritu Santo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20722,108125,"MEX","Ecological Evaluation Score Cards",2010,"Not Reported",33,"Zona marina del Archipiélago de Espíritu Santo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20723,108125,"MEX","Ecological Evaluation Score Cards",2014,"Not Reported",33,"Zona marina del Archipiélago de Espíritu Santo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20724,68918,"MEX","Ecological Evaluation Score Cards",2008,"Not Reported",33,"Whale Sanctuary of El Vizcaino","World Heritage Site","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20725,68918,"MEX","Ecological Evaluation Score Cards",2012,"Not Reported",33,"Whale Sanctuary of El Vizcaino","World Heritage Site","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20726,68918,"MEX","How is your MPA doing?",2016,"Not Reported",33,"Whale Sanctuary of El Vizcaino","World Heritage Site","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20727,342345,"MEX","Ecological Evaluation Score Cards",2008,"Not Reported",33,"Isla Guadalupe","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20728,342345,"MEX","Ecological Evaluation Score Cards",2012,"Not Reported",33,"Isla Guadalupe","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20729,101409,"MEX","Ecological Evaluation Score Cards",2008,"Not Reported",33,"Alto Golfo de California y Delta del Río Colorado","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20730,101409,"MEX","Ecological Evaluation Score Cards",2013,"Not Reported",33,"Alto Golfo de California y Delta del Río Colorado","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20731,306779,"MEX","Ecological Evaluation Score Cards",2008,"Not Reported",33,"Cabo Pulmo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20732,306779,"MEX","Ecological Evaluation Score Cards",2014,"Not Reported",33,"Cabo Pulmo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20733,306779,"MEX","How is your MPA doing?",2016,"Not Reported",33,"Cabo Pulmo","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20734,306777,"MEX","Ecological Evaluation Score Cards",2012,"Not Reported",33,"Bahía de Loreto","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20735,2583,"MEX","Ecological Evaluation Score Cards",2012,"Not Reported",33,"Isla Isabel","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20736,2583,"MEX","METT",2017,"Not Reported",33,"Isla Isabel","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20737,107706,"MEX","Ecological Evaluation Score Cards",2012,"Not Reported",33,"Islas Marietas","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20738,107706,"MEX","METT",2017,"Not Reported",33,"Islas Marietas","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20739,107537,"MEX","Ecological Evaluation Score Cards",2012,"Not Reported",33,"Zona marina Bahía de los Ángeles, canales de Ballenas y de Salsipuedes","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20740,107537,"MEX","How is your MPA doing?",2016,"Not Reported",33,"Zona marina Bahía de los Ángeles, canales de Ballenas y de Salsipuedes","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20741,555587174,"MEX","Ecological Evaluation Score Cards",2012,"Not Reported",33,"Marismas Nacionales Nayarit","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20742,555587174,"MEX","How is your MPA doing?",2016,"Not Reported",33,"Marismas Nacionales Nayarit","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20743,555587174,"MEX","METT",2017,"Not Reported",33,"Marismas Nacionales Nayarit","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20744,103168,"MEX","RAPPAM",2013,"Not Reported",33,"Yum Balam","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20745,103168,"MEX","METT",2014,"Not Reported",33,"Yum Balam","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20746,555587171,"MEX","Ecological Evaluation Score Cards",2014,"Not Reported",33,"Balandra","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20747,101457,"MEX","METT",2014,"Not Reported",33,"Cañón de Santa Elena","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20748,306810,"MEX","Ecological Evaluation Score Cards",2014,"Not Reported",33,"Islas del Golfo de California","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20749,101431,"MEX","METT",2014,"Not Reported",33,"Maderas del Carmen","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20750,306850,"MEX","METT",2014,"Not Reported",33,"Sistema Arrecifal Veracruzano","National Park","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20751,107806,"MEX","METT",2014,"Not Reported",33,"Ocampo","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20752,167051,"MEX","METT",2014,"Not Reported",33,"Los Tuxtlas","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20753,108073,"MEX","METT",2014,"Not Reported",33,"Sistema Arrecifal Lobos-Tuxpan","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20754,107621,"MEX","METT",2014,"Not Reported",33,"C.A.D.N.R. 004 Don Martín","Natural Resources Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20755,306787,"MEX","METT",2014,"Not Reported",33,"Z.P.F.V. la Cuenca Hidrográfica del Río Necaxa","Natural Resources Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20756,101416,"MEX","METT",2014,"Not Reported",33,"Sierra del Abra Tanchipa","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20757,103166,"MEX","METT",2014,"Not Reported",33,"Sierra Gorda","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20758,306820,"MEX","Ecological Evaluation Score Cards",2015,"Not Reported",33,"Meseta de Cacaxtla","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20759,306820,"MEX","How is your MPA doing?",2016,"Not Reported",33,"Meseta de Cacaxtla","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20760,306820,"MEX","METT",2017,"Not Reported",33,"Meseta de Cacaxtla","Flora and Fauna Protection Area","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20761,61401,"MEX","How is your MPA doing?",2016,"Not Reported",33,"Región de Calakmul","UNESCO-MAB Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20762,306809,"MEX","METT",2017,"Not Reported",33,"Islas Marías","Biosphere Reserve","Mexico Management Effectiveness Evaluation","Comision Nacional de Areas Naturales Protegidas",2018,"English","FALSE","FALSE",, +20763,352239,"MDG","SAPM",2016,"Not Reported",34,"Ambatotsirongorongo","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20764,5037,"MDG","IEG",2011,"Not Reported",34,"Ambatovaky","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20765,555548868,"MDG","SMART",2016,"Not Reported",34,"Ambodivahibe","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20766,5031,"MDG","SAPM",2015,"Not Reported",34,"Bemarivo","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20767,6932,"MDG","IEG",2016,"Not Reported",34,"Ambohitantely","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20768,352252,"MDG","SAPM",2016,"Not Reported",34,"Montagne des Français","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20769,352253,"MDG","SMART",2016,"Not Reported",34,"Onilahy","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20770,352240,"MDG","METT",2016,"Not Reported",34,"Analalava","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20771,5021,"MDG","IEG",2016,"Not Reported",34,"Analamazoatra","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20772,5022,"MDG","IEG",2003,"Not Reported",34,"Analamerana","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20773,2303,"MDG","IEG",2003,"Not Reported",34,"Andohahela","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20774,5040,"MDG","IEG",2003,"Not Reported",34,"Andranomena","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20775,352241,"MDG","SAPM",2016,"Not Reported",34,"Andreba","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20776,2308,"MDG","IEG",2003,"Not Reported",34,"Andringitra","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20778,5023,"MDG","IEG",2016,"Not Reported",34,"Anjanaharibe-Sud","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20779,1299,"MDG","IEG",2016,"Not Reported",34,"Ankarafantsika","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20780,5024,"MDG","IEG",2003,"Not Reported",34,"Ankarana","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20781,555548848,"MDG","SAPM",2016,"Not Reported",34,"Ankarea","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20782,352243,"MDG","PAMETT",2016,"Not Reported",34,"Ankodida","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20783,303698,"MDG","IEG",2011,"Not Reported",34,"Baie de Baly","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20784,555549451,"MDG","SAPM",2015,"Not Reported",34,"Behara-Tranomaro","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20785,555549153,"MDG","IEG",2016,"Not Reported",34,"Belo-sur-mer","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20786,555624680,"MDG","METT",2016,"Not Reported",34,"Complexe des Zones Humides de Bemanevika","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20787,2302,"MDG","IEG",2016,"Not Reported",34,"Tsingy de Bemaraha","Strict Nature Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20788,26653,"MDG","IEG",2016,"Not Reported",34,"Tsingy de Bemaraha Strict Nature Reserve","World Heritage Site","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20790,2310,"MDG","IEG",2016,"Not Reported",34,"Betampona","Strict Nature Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20791,10634,"MDG","IEG",2003,"Not Reported",34,"Bezaha Mahafaly","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20792,5032,"MDG","SAPM",2015,"Not Reported",34,"Bora","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20793,5041,"MDG","IEG",2003,"Not Reported",34,"Cap Sainte-Marie","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20794,352242,"MDG","SAPM",2015,"Not Reported",34,"Anjozorobe","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20795,555549464,"MDG","METT",2016,"Not Reported",34,"Corridor Marojejy Tsaratanana","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20796,555571013,"MDG","IEG",2016,"Not Reported",34,"Complexe des lacs Ambondro et Sirave (CLAS)","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20797,13968,"MDG","SAPM",2016,"Not Reported",34,"Tsimembo","Forest Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20798,352248,"MDG","METT",2016,"Not Reported",34,"Mahavavy Kinkony","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20799,352256,"MDG","SGBD/SMART",2016,"Not Reported",34,"Zahamena Ankeniheny","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20800,352246,"MDG","SGBD/SMART",2016,"Not Reported",34,"Fandrina Vondrozo","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20801,352244,"MDG","SAPM",2015,"Not Reported",34,"Bongolava","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20802,2312,"MDG","IEG",2016,"Not Reported",34,"Isalo","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20803,5027,"MDG","IEG",2016,"Not Reported",34,"Kalambatritra","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20804,5029,"MDG","IEG",2016,"Not Reported",34,"Pic d'Ivohibe","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20805,5033,"MDG","SAPM",2015,"Not Reported",34,"Kasijy","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20806,303700,"MDG","IEG",2016,"Not Reported",34,"Kirindy Mitea","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20807,901296,"MDG","SAPM",2016,"Not Reported",34,"Le Lac Alaotra: les zones humides et basin","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20808,2311,"MDG","IEG",2003,"Not Reported",34,"Lokobe","Strict Nature Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20809,352259,"MDG","SAPM",2016,"Not Reported",34,"Médio Rio Negro I","Indigenous Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20810,20017,"MDG","IEG",2006,"Not Reported",34,"Mananara Nord","UNESCO-MAB Biosphere Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20811,352250,"MDG","SAPM",2016,"Not Reported",34,"Mandena","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20812,555547961,"MDG","SAPM",2016,"Not Reported",34,"Zone Humide de Mandrozo","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20813,5038,"MDG","IEG",2016,"Not Reported",34,"Mangerivola","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20814,5034,"MDG","SAPM",2016,"Not Reported",34,"Maningoza","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20815,5028,"MDG","IEG",2005,"Not Reported",34,"Manombo","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20816,5026,"MDG","IEG",2003,"Not Reported",34,"Manongarivo","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20817,26070,"MDG","IEG",2016,"Not Reported",34,"Mantadia","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20818,2305,"MDG","IEG",2016,"Not Reported",34,"Marojejy","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20819,5035,"MDG","IEG",2016,"Not Reported",34,"Marotandrano","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20820,303695,"MDG","IEG",2011,"Not Reported",34,"Masoala","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20821,352251,"MDG","METT",2016,"Not Reported",34,"Menabe","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20822,354012,"MDG","IEG",2005,"Not Reported",34,"Mikea","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20823,2314,"MDG","IEG",2016,"Not Reported",34,"Montagne d'Ambre","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20824,5039,"MDG","IEG",2016,"Not Reported",34,"Nosy Mangabe","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20825,555624672,"MDG","IEG",2016,"Not Reported",34,"Barrière de Corail Nosy Ve Androka","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20827,555549460,"MDG","SAPM",2016,"Not Reported",34,"Ranobe PK 32","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20828,20287,"MDG","IEG",2011,"Not Reported",34,"Ranomafana","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20829,354011,"MDG","SAPM",2016,"Not Reported",34,"Tampolo","Forest Station","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20830,555542728,"MDG","SAPM",2016,"Not Reported",34,"Rivière Nosivolo et affluents","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20831,900667,"MDG","IEG",2008,"Not Reported",34,"Sahamalaza - Iles Radama","UNESCO-MAB Biosphere Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20832,352254,"MDG","IEG",2005,"Not Reported",34,"Sahamalaza","Not Reported","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20833,900667,"MDG","IEG",2016,"Not Reported",34,"Sahamalaza - Iles Radama","UNESCO-MAB Biosphere Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20834,555624666,"MDG","SAPM",2016,"Not Reported",34,"Site Bioculturel d'Antrema","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20835,555548845,"MDG","SAPM",2016,"Not Reported",34,"Soariake","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20836,555549452,"MDG","PAMETT",2016,"Not Reported",34,"Sud-Ouest Ifotaky","Proposed Protected Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20837,5036,"MDG","SAPM",2016,"Not Reported",34,"Tampoketsa Analamaitso","Special Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20838,902404,"MDG","SAPM",2016,"Not Reported",34,"Marais de Torotorofotsy avec leurs bassins versants","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20839,2306,"MDG","IEG",2003,"Not Reported",34,"Tsaratanana","Strict Nature Reserve","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20840,2307,"MDG","IEG",2003,"Not Reported",34,"Tsimanampetsotsa","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20841,166881,"MDG","IEG",2001,"Not Reported",34,"Parc national Tsimanampesotse","Ramsar Site, Wetland of International Importance","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20842,2309,"MDG","IEG",2016,"Not Reported",34,"Tsingy de Namoroka","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20843,555512161,"MDG","SAPM",2015,"Not Reported",34,"Velondriake","Locally Managed Marine Area","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20844,2304,"MDG","IEG",2011,"Not Reported",34,"Zahamena","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20845,20273,"MDG","IEG",2003,"Not Reported",34,"Zombitse-Vohibasia","National Park","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20846,903062,"MDG","WH Outlook Report",2014,"Not Reported",34,"Rainforests of the Atsinanana","World Heritage Site","Madagascar Management Effectiveness Evaluation","Direction du Systeme des Aires Protégées",2018,"French","FALSE","FALSE",, +20847,17994,"IDN","METT",2015,"Not Reported",35,"Pulau Sangiang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20848,555571187,"IDN","METT",2015,"Not Reported",35,"Air Alas","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20849,555571195,"IDN","METT",2015,"Not Reported",35,"Air Seblat","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20850,8604,"IDN","METT",2015,"Not Reported",35,"Vak 55 Bantarbolang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20851,555571207,"IDN","METT",2015,"Not Reported",35,"Batang Pangean II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20852,1910,"IDN","METT",2015,"Not Reported",35,"Batukahu I-II-III","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20853,8610,"IDN","METT",2015,"Not Reported",35,"Bekutuk","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20854,555571208,"IDN","METT",2015,"Not Reported",35,"Bukit Bungkuk","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20855,555571256,"IDN","METT",2015,"Not Reported",35,"Cabak I/II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20856,8530,"IDN","METT",2015,"Not Reported",35,"Cigenteng Cipanji","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20857,8633,"IDN","METT",2015,"Not Reported",35,"Curah Manis Sempolan I - VIII","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20858,8992,"IDN","METT",2015,"Not Reported",35,"Danau Dusun Besar","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20859,10314,"IDN","METT",2015,"Not Reported",35,"Dolok Sibual-buali","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20860,10312,"IDN","METT",2015,"Not Reported",35,"Dolok Sipirok","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20861,8914,"IDN","METT",2015,"Not Reported",35,"Tinggi Raja","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20862,555571301,"IDN","METT",2015,"Not Reported",35,"Durian Luncuk I, II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20864,8849,"IDN","METT",2015,"Not Reported",35,"Pegunungan Faruhumpenai","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20865,8623,"IDN","METT",2015,"Not Reported",35,"Gua Nglirip","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20866,8590,"IDN","METT",2015,"Not Reported",35,"Guci","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20867,1491,"IDN","METT",2016,"Not Reported",35,"Gunung Ambang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20868,10300,"IDN","METT",2015,"Not Reported",35,"Batu Gamping","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20869,8550,"IDN","METT",2015,"Not Reported",35,"Gunung Burangrang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20870,8607,"IDN","METT",2015,"Not Reported",35,"Gunung Butak","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20871,1276,"IDN","METT",2015,"Not Reported",35,"Gunung Celering","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20872,555571285,"IDN","METT",2015,"Not Reported",35,"Gunung Dako","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20873,8694,"IDN","METT",2015,"Not Reported",35,"Gunung Kentawan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20874,8532,"IDN","METT",2015,"Not Reported",35,"Papandayan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20875,8624,"IDN","METT",2015,"Not Reported",35,"Picis","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20876,1913,"IDN","METT",2015,"Not Reported",35,"Gunung Raya Passi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20877,8841,"IDN","METT",2015,"Not Reported",35,"Gunung Sojol","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20878,555571219,"IDN","METT",2015,"Not Reported",35,"Gunung Tangkuban Parahu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20879,1906,"IDN","METT",2015,"Not Reported",35,"Gunung Tilu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20880,555571286,"IDN","METT",2015,"Not Reported",35,"Tinombala","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20881,555587209,"IDN","METT",2015,"Not Reported",35,"Maubesi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20882,8970,"IDN","METT",2015,"Not Reported",35,"Hutan Bakau Pantai Timur","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20883,555571223,"IDN","METT",2015,"Not Reported",35,"Imogiri","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20884,8602,"IDN","METT",2015,"Not Reported",35,"Sub Vak 18c 19b Jatinegara","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20885,555571220,"IDN","METT",2015,"Not Reported",35,"Junghun","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20886,555511999,"IDN","METT",2015,"Not Reported",35,"Ponda-Ponda","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20887,1272,"IDN","METT",2015,"Not Reported",35,"Kawah Ijen","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20888,8596,"IDN","METT",2015,"Not Reported",35,"Kecubung Ulolanang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20889,17885,"IDN","METT",2015,"Not Reported",35,"Kakenauwe","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20890,8598,"IDN","METT",2015,"Not Reported",35,"Keling II/III","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20891,555571239,"IDN","METT",2015,"Not Reported",35,"Kembang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20892,8926,"IDN","METT",2015,"Not Reported",35,"Lembah Anai","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20893,101407,"IDN","METT",2015,"Not Reported",35,"Lembah Harau","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20894,10303,"IDN","METT",2015,"Not Reported",35,"Lo Pat Fun Pi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20895,10286,"IDN","METT",2015,"Not Reported",35,"Malabar","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20896,8627,"IDN","METT",2015,"Not Reported",35,"Manggis Gadungan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20897,555571199,"IDN","METT",2015,"Not Reported",35,"Martelu Purba","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20898,10290,"IDN","METT",2015,"Not Reported",35,"Moga","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20899,1969,"IDN","METT",2015,"Not Reported",35,"Morowali","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20900,1917,"IDN","METT",2015,"Not Reported",35,"Muara Kaman Sedulang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20901,8669,"IDN","METT",2015,"Not Reported",35,"Muara Kendawangan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20902,8536,"IDN","METT",2015,"Not Reported",35,"Nusa Gede Panjalu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20903,8648,"IDN","METT",2015,"Not Reported",35,"Nusakambangan Timur","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20904,101584,"IDN","METT",2015,"Not Reported",35,"Nusakambangan Barat","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20905,62495,"IDN","METT",2015,"Not Reported",35,"Gunung Nyiut Penrissen","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20906,1916,"IDN","METT",2015,"Not Reported",35,"Padang Luwai","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20907,17915,"IDN","METT",2015,"Not Reported",35,"Pagar Gunung I/II/III","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20909,8597,"IDN","METT",2015,"Not Reported",35,"Pagerwunung Darupono","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20910,555571275,"IDN","METT",2015,"Not Reported",35,"Pamona","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20911,8631,"IDN","METT",2015,"Not Reported",35,"Pancur Ijen I/II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20912,8537,"IDN","METT",2015,"Not Reported",35,"Pananjung Pangandaran","Marine Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20913,11942,"IDN","METT",2015,"Not Reported",35,"Pangi Binangga","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20914,555571258,"IDN","METT",2015,"Not Reported",35,"Pantodomas","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20915,1914,"IDN","METT",2015,"Not Reported",35,"Pararawen I-II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20916,555571196,"IDN","METT",2015,"Not Reported",35,"Pasar Ngalam Reg 92","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20917,555571197,"IDN","METT",2015,"Not Reported",35,"Pasar Talo Reg 94","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20918,1921,"IDN","METT",2015,"Not Reported",35,"Pegunungan Cyclops","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20919,20931,"IDN","METT",2015,"Not Reported",35,"Hutan Pinus/ Janthoi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20921,17834,"IDN","METT",2015,"Not Reported",35,"P. Bawean","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20922,8943,"IDN","METT",2015,"Not Reported",35,"Pulau Berkeh","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20923,4720,"IDN","METT",2015,"Not Reported",35,"Pulau Bokor","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20924,101486,"IDN","METT",2015,"Not Reported",35,"Pulau Anak Krakatau","Marine Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20925,17867,"IDN","METT",2015,"Not Reported",35,"Mas Popaya Raja","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20926,1908,"IDN","METT",2015,"Not Reported",35,"Pulau Nusa Barung","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20927,8629,"IDN","METT",2015,"Not Reported",35,"Pulau Sempu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20928,20971,"IDN","METT",2015,"Not Reported",35,"Rimbo Panti","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20929,317275,"IDN","METT",2015,"Not Reported",35,"Riung","Marine Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20930,10316,"IDN","METT",2015,"Not Reported",35,"Raflessia I/II Serbojadi","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20931,8913,"IDN","METT",2015,"Not Reported",35,"Sibolangit","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20932,17916,"IDN","METT",2015,"Not Reported",35,"Taba Penanjung","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20933,555571304,"IDN","METT",2015,"Not Reported",35,"Talang Ulu I, II","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20934,17868,"IDN","METT",2016,"Not Reported",35,"Gn. Duasaudara","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20935,11945,"IDN","METT",2015,"Not Reported",35,"Tangkuban Prahu Pel. Ratu","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20936,555571296,"IDN","METT",2015,"Not Reported",35,"Tanjung Wiay","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20937,11890,"IDN","METT",2015,"Not Reported",35,"Telaga Patengan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20938,8521,"IDN","METT",2015,"Not Reported",35,"Telaga Warna","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20939,8594,"IDN","METT",2015,"Not Reported",35,"Telogo Dringo","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20940,8654,"IDN","METT",2015,"Not Reported",35,"Teluk Adang","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20941,20419,"IDN","METT",2015,"Not Reported",35,"Wai Wuul","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20942,10295,"IDN","METT",2015,"Not Reported",35,"Watangan Puger","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20943,555571249,"IDN","METT",2015,"Not Reported",35,"Watu Ata","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20944,8588,"IDN","METT",2015,"Not Reported",35,"Wijaya Kusuma","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20945,555571244,"IDN","METT",2015,"Not Reported",35,"Wolo Tadho","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20946,8846,"IDN","METT",2015,"Not Reported",35,"Bangkiriang","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20947,555571211,"IDN","METT",2015,"Not Reported",35,"Balai Raja","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20948,34163,"IDN","METT",2015,"Not Reported",35,"Barumun","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20949,8978,"IDN","METT",2015,"Not Reported",35,"Bentayan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20950,8959,"IDN","METT",2015,"Not Reported",35,"Bukit Batu","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20951,8950,"IDN","METT",2015,"Not Reported",35,"Bukit Rimbang Bukit Baling","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20952,17976,"IDN","METT",2015,"Not Reported",35,"Danau Pulau Besar-Danau Pulau Bawah","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20953,8980,"IDN","METT",2015,"Not Reported",35,"Dangku","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20954,1929,"IDN","METT",2015,"Not Reported",35,"Dataran Tinggi Yang","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20955,1923,"IDN","METT",2015,"Not Reported",35,"Dolok Surungan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20956,8953,"IDN","METT",2015,"Not Reported",35,"Giam Siak Kecil","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20957,1924,"IDN","METT",2015,"Not Reported",35,"Gumai Tebing Tinggi","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20958,1926,"IDN","METT",2015,"Not Reported",35,"Gunung Raya","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20959,62552,"IDN","METT",2015,"Not Reported",35,"Harlu","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20960,1925,"IDN","METT",2015,"Not Reported",35,"Isau Isau","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20961,1259,"IDN","METT",2015,"Not Reported",35,"Kerumutan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20962,317257,"IDN","METT",2015,"Not Reported",35,"Komara","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20963,555511951,"IDN","METT",2015,"Not Reported",35,"Kuala Lupak","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20964,317260,"IDN","METT",2015,"Not Reported",35,"Lamandau","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20965,8883,"IDN","METT",2015,"Not Reported",35,"Lambusango","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20966,8552,"IDN","METT",2015,"Not Reported",35,"Muara Angke","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20967,62632,"IDN","METT",2016,"Not Reported",35,"Nantu","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20968,10320,"IDN","METT",2015,"Not Reported",35,"Padang Sugihan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20969,555571224,"IDN","METT",2015,"Not Reported",35,"Paliyan","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20970,8838,"IDN","METT",2015,"Not Reported",35,"Pinjan/Tanjung Matop","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20971,1971,"IDN","METT",2015,"Not Reported",35,"P. Bawean","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20972,8839,"IDN","METT",2015,"Not Reported",35,"Dolangan","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20973,1898,"IDN","METT",2015,"Not Reported",35,"Pulau Kaget","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20974,4721,"IDN","METT",2015,"Not Reported",35,"Pulau Rambut","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20975,17962,"IDN","METT",2015,"Not Reported",35,"Rawa Singkil","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20976,555571225,"IDN","METT",2015,"Not Reported",35,"Sermo","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20977,11879,"IDN","METT",2015,"Not Reported",35,"Sidei Wibain","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20978,34130,"IDN","METT",2015,"Not Reported",35,"Siranggas","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20979,555571278,"IDN","METT",2015,"Not Reported",35,"Tanjung Batikolo","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20980,4727,"IDN","METT",2015,"Not Reported",35,"Tanjung Peropa","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20981,555571287,"IDN","METT",2015,"Not Reported",35,"Tanjung Santigi","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20982,8961,"IDN","METT",2015,"Not Reported",35,"Tasik Besar-Tasik Metas","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20983,30005,"IDN","METT",2015,"Not Reported",35,"Tasik Serkap-Tasik Sarang Burung","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20984,8960,"IDN","METT",2015,"Not Reported",35,"Tasik Tanjung Padang","Wildlife Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20985,8867,"IDN","METT",2015,"Not Reported",35,"Komara","Game Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20986,317256,"IDN","METT",2015,"Not Reported",35,"Landusa Tomata","Game Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20987,8897,"IDN","METT",2015,"Not Reported",35,"Lingga Isaq","Game Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20988,101798,"IDN","METT",2015,"Not Reported",35,"Pulau Moyo","Marine Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20989,101410,"IDN","METT",2015,"Not Reported",35,"Pulau Rempang","Game Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20990,17832,"IDN","METT",2015,"Not Reported",35,"Dr. Muhammad Hatta","Grand Forest Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20991,555571260,"IDN","METT",2015,"Not Reported",35,"KGPAA Mangkunegoro I","Grand Forest Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20992,34633,"IDN","METT",2015,"Not Reported",35,"Murhum","Grand Forest Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20993,101824,"IDN","METT",2015,"Not Reported",35,"Ngurah Rai","Grand Forest Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20994,1928,"IDN","METT",2015,"Not Reported",35,"Alas Purwo","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20995,1268,"IDN","METT",2015,"Not Reported",35,"Bali Barat","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20996,1967,"IDN","METT",2015,"Not Reported",35,"Baluran","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20997,317221,"IDN","METT",2015,"Not Reported",35,"Lam Nam Nan Phang Kha","Wildlife Sanctuary","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20998,34161,"IDN","METT",2015,"Not Reported",35,"Batang Gadis","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +20999,1254,"IDN","METT",2015,"Not Reported",35,"Berbak","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21000,8673,"IDN","METT",2015,"Not Reported",35,"Betung Kerihun","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21001,62621,"IDN","METT",2016,"Not Reported",35,"Bogani Nani Wartabone","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21002,1269,"IDN","METT",2015,"Not Reported",35,"Bromo Tengger Semeru","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21003,62496,"IDN","METT",2015,"Not Reported",35,"Bukit Baka - Bukit Raya","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21004,1252,"IDN","METT",2015,"Not Reported",35,"Bukit Barisan Selatan","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21005,317205,"IDN","METT",2015,"Not Reported",35,"Bukit Dua Belas","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21006,124434,"IDN","METT",2015,"Not Reported",35,"Bukit Tiga Puluh","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21007,317259,"IDN","METT",2015,"Not Reported",35,"Danau Sentarum","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21008,8559,"IDN","METT",2015,"Not Reported",35,"Gunung Ciremai","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21009,2350,"IDN","METT",2015,"Not Reported",35,"Gunung Gede - Pangrango","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21010,1496,"IDN","METT",2015,"Not Reported",35,"Gunung Halimun - Salak","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21011,4994,"IDN","METT",2015,"Not Reported",35,"Kerinci Seblat","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21012,1251,"IDN","METT",2015,"Not Reported",35,"Gunung Leuser","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21013,555571227,"IDN","METT",2015,"Not Reported",35,"Gunung Merapi","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21014,317251,"IDN","METT",2015,"Not Reported",35,"Gunung Merbabu","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21015,20378,"IDN","METT",2015,"Not Reported",35,"Gunung Palung","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21016,1930,"IDN","METT",2015,"Not Reported",35,"Gunung Rinjani","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21017,1899,"IDN","METT",2015,"Not Reported",35,"Kayan Mentarang","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21018,62567,"IDN","METT",2015,"Not Reported",35,"Kelimutu","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21019,1968,"IDN","METT",2015,"Not Reported",35,"Komodo","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21020,1256,"IDN","METT",2015,"Not Reported",35,"Kutai","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21021,555571253,"IDN","METT",2015,"Not Reported",35,"Laiwangi Wanggameti","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21022,3237,"IDN","METT",2015,"Not Reported",35,"Lore Lindu","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21023,1500,"IDN","METT",2015,"Not Reported",35,"Lorentz","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21024,8662,"IDN","METT",2015,"Not Reported",35,"Manupeu Tanadaru","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21025,1499,"IDN","METT",2015,"Not Reported",35,"Manusela","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21026,1495,"IDN","METT",2015,"Not Reported",35,"Meru Betiri","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21027,30013,"IDN","METT",2015,"Not Reported",35,"Rawa Aopa Watumohai","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21028,317262,"IDN","METT",2015,"Not Reported",35,"Sebangau","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21029,30000,"IDN","METT",2015,"Not Reported",35,"Sembilang","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21030,17972,"IDN","METT",2015,"Not Reported",35,"Siberut","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21031,1490,"IDN","METT",2015,"Not Reported",35,"Tanjung Puting","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21032,317197,"IDN","METT",2015,"Not Reported",35,"Tesso Nilo","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21033,2349,"IDN","METT",2015,"Not Reported",35,"Ujung Kulon","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21034,29966,"IDN","METT",2015,"Not Reported",35,"Wasur","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21035,17923,"IDN","METT",2015,"Not Reported",35,"Way Kambas","National Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21036,555571191,"IDN","METT",2015,"Not Reported",35,"Air Rami I","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21037,555571243,"IDN","METT",2015,"Not Reported",35,"Angke Kapuk","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21038,555587211,"IDN","METT",2015,"Not Reported",35,"Gunung Asuansang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21039,62584,"IDN","METT",2015,"Not Reported",35,"Bangko-bangko","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21040,62500,"IDN","METT",2015,"Not Reported",35,"Baning","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21041,11882,"IDN","METT",2015,"Not Reported",35,"Beriat","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21042,17982,"IDN","METT",2015,"Not Reported",35,"Bukit Kaba","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21043,62637,"IDN","METT",2015,"Not Reported",35,"Cani Sirenreng","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21044,8542,"IDN","METT",2015,"Not Reported",35,"Cimanggu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21045,17922,"IDN","METT",2015,"Not Reported",35,"Danau Buyan - Danau Tamblingan","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21046,555511953,"IDN","METT",2015,"Not Reported",35,"Danau Mahalona","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21047,8850,"IDN","METT",2015,"Not Reported",35,"Danau Matano","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21048,555571234,"IDN","METT",2015,"Not Reported",35,"Danau Rawa Taliwang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21049,8851,"IDN","METT",2015,"Not Reported",35,"Danau Towuti","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21050,555587212,"IDN","METT",2015,"Not Reported",35,"Gunung Dungan/ Gunung Batu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21051,8721,"IDN","METT",2015,"Not Reported",35,"KH Egon Ilewekoh Lewotobi","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21052,8605,"IDN","METT",2015,"Not Reported",35,"Grojogan Sewu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21053,555571228,"IDN","METT",2015,"Not Reported",35,"Gunung Batur Bukit Payang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21054,8630,"IDN","METT",2015,"Not Reported",35,"Gunung Baung","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21055,11914,"IDN","METT",2015,"Not Reported",35,"Gunung Guntur","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21056,8069,"IDN","METT",2015,"Not Reported",35,"Gunung Meja","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21057,8674,"IDN","METT",2015,"Not Reported",35,"Gunung Melintang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21058,62486,"IDN","METT",2015,"Not Reported",35,"Gunung Pancar","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21059,8609,"IDN","METT",2015,"Not Reported",35,"Gunung Selok","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21060,555571300,"IDN","METT",2015,"Not Reported",35,"Gunung Tunak","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21061,1905,"IDN","METT",2015,"Not Reported",35,"Gunung Tangkuban Parahu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21062,10302,"IDN","METT",2015,"Not Reported",35,"Kawah Ijen","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21063,8549,"IDN","METT",2015,"Not Reported",35,"Kawah Kamojang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21064,198424,"IDN","METT",2015,"Not Reported",35,"Kepulauan Banyak","Marine Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21065,62585,"IDN","METT",2015,"Not Reported",35,"Kerandangan","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21066,8122,"IDN","METT",2015,"Not Reported",35,"Klamono","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21067,317255,"IDN","METT",2015,"Not Reported",35,"Lejja","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21068,8930,"IDN","METT",2015,"Not Reported",35,"Lembah Harau","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21069,8539,"IDN","METT",2015,"Not Reported",35,"Linggarjati","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21070,555571201,"IDN","METT",2015,"Not Reported",35,"Lubuk Tapi Kayu Ajaran","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21071,317253,"IDN","METT",2015,"Not Reported",35,"Mangolo","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21072,8928,"IDN","METT",2015,"Not Reported",35,"Mega Mendung","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21073,317200,"IDN","METT",2015,"Not Reported",35,"Muka Kuning","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21074,62488,"IDN","METT",2015,"Not Reported",35,"Pananjung Pangandaran","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21075,8757,"IDN","METT",2015,"Not Reported",35,"Panelokan","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21076,555571198,"IDN","METT",2015,"Not Reported",35,"Pantai Panjang dan P. Baai","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21077,8533,"IDN","METT",2015,"Not Reported",35,"Papandayan","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21078,62502,"IDN","METT",2015,"Not Reported",35,"Pleihari Tanah Laut","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21079,555571202,"IDN","METT",2015,"Not Reported",35,"Bukit Serelo","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21080,1900,"IDN","METT",2015,"Not Reported",35,"Pulau Kembang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21081,555571273,"IDN","METT",2015,"Not Reported",35,"Pulau Pasoso","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21082,354070,"IDN","METT",2015,"Not Reported",35,"Pulau Satonda","Marine Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21083,8907,"IDN","METT",2015,"Not Reported",35,"Pulau Weh","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21084,62659,"IDN","METT",2015,"Not Reported",35,"Punti Kayu","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21085,10321,"IDN","METT",2015,"Not Reported",35,"Rimbo Panti","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21086,64446,"IDN","METT",2015,"Not Reported",35,"Ruteng","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21087,62491,"IDN","METT",2015,"Not Reported",35,"Sangeh","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21089,62660,"IDN","METT",2015,"Not Reported",35,"D. Sicikeh-cikeh","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21090,64445,"IDN","METT",2015,"Not Reported",35,"Sidrap","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21091,8066,"IDN","METT",2015,"Not Reported",35,"Sorong","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21092,62492,"IDN","METT",2015,"Not Reported",35,"Sukawayana","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21093,555571212,"IDN","METT",2015,"Not Reported",35,"Sungai Dumai","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21094,555571271,"IDN","METT",2015,"Not Reported",35,"Sungai Liku","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21095,8700,"IDN","METT",2015,"Not Reported",35,"Suranadi","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21096,8535,"IDN","METT",2015,"Not Reported",35,"Talaga Bodas","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21097,555571272,"IDN","METT",2015,"Not Reported",35,"Tanjung Belimbing","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21098,17842,"IDN","METT",2015,"Not Reported",35,"Tanjung Keluang-Teluk Keluang","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21099,555571299,"IDN","METT",2015,"Not Reported",35,"Tanjung Tampa","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21100,11900,"IDN","METT",2015,"Not Reported",35,"Telaga Warna","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21101,8591,"IDN","METT",2015,"Not Reported",35,"Telogo Warno Pengilon","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21102,8072,"IDN","METT",2015,"Not Reported",35,"Teluk Youtefa","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21103,8876,"IDN","METT",2015,"Not Reported",35,"Tirta Rimba Air Jatuh","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21104,8635,"IDN","METT",2015,"Not Reported",35,"Tretes","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21105,62636,"IDN","METT",2015,"Not Reported",35,"Wera","Nature Recreation Park","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21106,8117,"IDN","METT",2015,"Not Reported",35,"Yapen Tengah","Nature Reserve","METT data of Indonesia PA","Not Available",2018,"Bahasa Indonesian","FALSE","FALSE",, +21949,615,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Banff National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21950,634,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Elk Island National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21951,614,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Jasper National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21952,626,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Waterton Lakes National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21953,621,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Kootenay National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21954,622,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Glacier National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21955,623,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Yoho National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21956,630,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Mount Revelstoke National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21957,16379,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Gwaii Haanas National Park Reserve of Canada and Haida Heritage Site","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21958,628,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Pacific Rim National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21959,305157,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Gulf Islands National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21960,618,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Riding Mountain National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21961,101586,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Wapusk National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21962,619,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Gros Morne National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21963,633,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Fundy National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21964,18668,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Terra Nova National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21965,632,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Kouchibouguac National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21966,555516421,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Torngat Mountains National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21968,612,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Kluane National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21969,624,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Cape Breton Highlands National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21970,629,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Kejimkujik National Park and National Historic Site of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21971,635,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Prince Edward Island National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21972,100673,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Vuntut National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21973,613,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Auyuittuq National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21974,13396,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Quttinirpaaq National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21975,555566941,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Sable Island National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21976,555621660,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Qausuittuq National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21977,100660,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Kejimkujik National Park and National Historic Site of Canada (Seaside Adjunct)","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21978,100672,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Ivvavik National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21979,300103,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Sirmilik National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21980,555516422,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Ukkusiksalik National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21981,620,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Pukaskwa National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21982,636,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Point Pelee National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21983,12801,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Bruce Peninsula National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21984,66090,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Georgian Bay Islands National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21985,617,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Prince Albert National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21986,555516420,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Grasslands National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21987,616,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Nahanni National Park Reserve of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21988,101590,"CAN","Ecological Integrity Monitoring",2016,"Not Reported",36,"Tuktut Nogait National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21990,100676,"CAN","Ecological Integrity Monitoring",2017,"Not Reported",36,"Aulavik National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21991,638,"CAN","Ecological Integrity Monitoring",2018,"Not Reported",36,"St. Lawrence Islands National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +21992,611,"CAN","Ecological Integrity Monitoring",2009,"Not Reported",36,"Wood Buffalo National Park of Canada","National Park of Canada","Canada Management Effectiveness Evaluation","Natural Resource Conservation Branch - Parks Canada",2018,"English","FALSE","FALSE",, +22197,915,"CHE","Annual Report",2017,"Not Reported",37,"Schweizerischer Nationalpark","Swiss National Park","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22198,31029,"CHE","Annual Report",2017,"Not Reported",37,"Augstmatthorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22199,31030,"CHE","Annual Report",2017,"Not Reported",37,"Combe-Grède","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22200,31031,"CHE","Annual Report",2017,"Not Reported",37,"Kiental","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22201,31032,"CHE","Annual Report",2017,"Not Reported",37,"Schwarzhorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22202,31033,"CHE","Annual Report",2017,"Not Reported",37,"Tannhorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22203,31034,"CHE","Annual Report",2017,"Not Reported",37,"Urirotstock","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22204,31035,"CHE","Annual Report",2017,"Not Reported",37,"Fellital","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22205,31036,"CHE","Annual Report",2017,"Not Reported",37,"Mythen","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22206,31037,"CHE","Annual Report",2017,"Not Reported",37,"Silbern-Jägern-Bödmerenwald","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22207,31038,"CHE","Annual Report",2017,"Not Reported",37,"Hahnen","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22208,31039,"CHE","Annual Report",2017,"Not Reported",37,"Hutstock","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22209,31040,"CHE","Annual Report",2017,"Not Reported",37,"K�rpf","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22210,31041,"CHE","Annual Report",2017,"Not Reported",37,"Schilt","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22211,31042,"CHE","Annual Report",2017,"Not Reported",37,"Rauti-Tros","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22212,31043,"CHE","Annual Report",2017,"Not Reported",37,"Graue Hörner","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22213,31044,"CHE","Annual Report",2017,"Not Reported",37,"Säntis","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22214,31045,"CHE","Annual Report",2017,"Not Reported",37,"Bernina-Albris","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22215,31046,"CHE","Annual Report",2017,"Not Reported",37,"Beverin","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22216,31047,"CHE","Annual Report",2017,"Not Reported",37,"Campasc","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22217,31048,"CHE","Annual Report",2017,"Not Reported",37,"Piz Ela","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22218,31049,"CHE","Annual Report",2017,"Not Reported",37,"Trescolmen","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22219,31050,"CHE","Annual Report",2017,"Not Reported",37,"Pez Vial/Greina","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22220,31051,"CHE","Annual Report",2017,"Not Reported",37,"Campo Tencia","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22221,31052,"CHE","Annual Report",2017,"Not Reported",37,"Greina","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22222,31053,"CHE","Annual Report",2017,"Not Reported",37,"Dent de Lys","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22223,31054,"CHE","Annual Report",2017,"Not Reported",37,"Hochmatt-Motélon","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22224,31055,"CHE","Annual Report",2017,"Not Reported",37,"Creux-du-Van","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22225,31056,"CHE","Annual Report",2017,"Not Reported",37,"Grand Muveran","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22226,31057,"CHE","Annual Report",2017,"Not Reported",37,"Les Bimis-Ciernes Picat","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22227,31058,"CHE","Annual Report",2017,"Not Reported",37,"Le Noirmont","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22228,31059,"CHE","Annual Report",2017,"Not Reported",37,"Pierreuse-Gummfluh","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22229,31060,"CHE","Annual Report",2017,"Not Reported",37,"Aletschwald","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22230,31061,"CHE","Annual Report",2017,"Not Reported",37,"Alpjuhorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22231,31062,"CHE","Annual Report",2017,"Not Reported",37,"Wilerhorn","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22232,31064,"CHE","Annual Report",2017,"Not Reported",37,"Mauvoisin","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22233,31065,"CHE","Annual Report",2017,"Not Reported",37,"Val Ferret / Combe de l'A","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22234,31066,"CHE","Annual Report",2017,"Not Reported",37,"Haut de Cry/Derborence","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22235,31067,"CHE","Annual Report",2017,"Not Reported",37,"Leukerbad","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22236,31068,"CHE","Annual Report",2017,"Not Reported",37,"Turtmanntal","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22237,31069,"CHE","Annual Report",2017,"Not Reported",37,"Dixence","Federal Hunting Reserves","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22238,62667,"CHE","Annual Report",2015,"Not Reported",37,"Rade et Rhône genevois","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22239,62673,"CHE","Annual Report",2015,"Not Reported",37,"Grandson jusqu'à Champ Pittet","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22240,62675,"CHE","Annual Report",2015,"Not Reported",37,"Yvonand jusqu'à Cheyres","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22241,62676,"CHE","Annual Report",2015,"Not Reported",37,"Fanel - Chablais de Cudrefin, Pointe de Marin","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22242,81074,"CHE","Annual Report",2015,"Not Reported",37,"Ermatinger Becken","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22243,81075,"CHE","Annual Report",2015,"Not Reported",37,"Stein am Rhein","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22244,81076,"CHE","Annual Report",2015,"Not Reported",37,"Klingnauerstausee","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22245,81077,"CHE","Annual Report",2015,"Not Reported",37,"Chevroux jusqu'à Portalban","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22246,81078,"CHE","Annual Report",2015,"Not Reported",37,"Col de Bretolet","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22247,81079,"CHE","Annual Report",2015,"Not Reported",37,"Witi","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22248,146766,"CHE","Annual Report",2015,"Not Reported",37,"Les Grangettes","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22249,178706,"CHE","Annual Report",2015,"Not Reported",37,"Zürich-Obersee: Guntliweid bis Bätzimatt","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22250,178707,"CHE","Annual Report",2015,"Not Reported",37,"Bolle di Magadino","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22251,178708,"CHE","Annual Report",2015,"Not Reported",37,"Versoix jusqu'à Genf","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22252,178709,"CHE","Annual Report",2015,"Not Reported",37,"Rorschacher Bucht / Arbon","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22253,178710,"CHE","Annual Report",2015,"Not Reported",37,"Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22254,178711,"CHE","Annual Report",2015,"Not Reported",37,"Kanderdelta bis Hilterfingen","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22255,178712,"CHE","Annual Report",2015,"Not Reported",37,"Wohlensee (Halenbrücke bis Wohleibrücke)","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22256,178713,"CHE","Annual Report",2015,"Not Reported",37,"Stausee Niederried","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22257,178714,"CHE","Annual Report",2015,"Not Reported",37,"Port Noir jusqu'à Hermance","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22258,178715,"CHE","Annual Report",2015,"Not Reported",37,"Häftli bei Büren","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22259,178716,"CHE","Annual Report",2015,"Not Reported",37,"Aare bei Solothurn und Naturschutzreservat Aare Flumenthal","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22260,178717,"CHE","Annual Report",2015,"Not Reported",37,"Plaine de l'Orbe: Chavornay jusqu'à Bochuz","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22261,178718,"CHE","Annual Report",2015,"Not Reported",37,"Salavaux","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22262,178719,"CHE","Annual Report",2015,"Not Reported",37,"Alter Rhein: Rheineck","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22263,178721,"CHE","Annual Report",2015,"Not Reported",37,"Pointe de Promenthoux","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22264,179001,"CHE","Annual Report",2015,"Not Reported",37,"Hagneckdelta und St. Petersinsel","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22265,555513630,"CHE","Annual Report",2015,"Not Reported",37,"Pfäffikersee","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22266,555513631,"CHE","Annual Report",2015,"Not Reported",37,"Greifensee","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22267,555513632,"CHE","Annual Report",2015,"Not Reported",37,"Neeracher Ried","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22268,555513633,"CHE","Annual Report",2015,"Not Reported",37,"Wauwilermoos","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22269,555513634,"CHE","Annual Report",2015,"Not Reported",37,"Lac de Pérolles","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22270,555513635,"CHE","Annual Report",2015,"Not Reported",37,"Lac de la Gruyère à Broc","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22271,555513636,"CHE","Annual Report",2015,"Not Reported",37,"Chablais (Lac de Morat)","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22272,555513637,"CHE","Annual Report",2015,"Not Reported",37,"Kaltbrunner Riet","Federal Inventory of Reserves for Waterbirds and Migratory Birds of International and National Imp.","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22273,148580,"CHE","National Inventory",2011,"Not Reported",37,"Seldenhalde","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22274,148581,"CHE","National Inventory",2011,"Not Reported",37,"Koblenzer Rhein und Laufen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22275,148582,"CHE","National Inventory",2011,"Not Reported",37,"Auenreste Klingnauer Stausee","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22276,148583,"CHE","National Inventory",2011,"Not Reported",37,"Eggrank - Thurspitz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22277,148584,"CHE","National Inventory",2011,"Not Reported",37,"Rossgarten","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22278,148585,"CHE","National Inventory",2011,"Not Reported",37,"Schäffäuli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22279,148586,"CHE","National Inventory",2011,"Not Reported",37,"Wyden bei Pfyn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22280,148587,"CHE","National Inventory",2011,"Not Reported",37,"Haumättli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22281,148588,"CHE","National Inventory",2011,"Not Reported",37,"Hau - Äuli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22282,148589,"CHE","National Inventory",2011,"Not Reported",37,"Wuer","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22283,148590,"CHE","National Inventory",2011,"Not Reported",37,"Wasserschloss Brugg - Stilli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22284,148591,"CHE","National Inventory",2011,"Not Reported",37,"Altenrhein","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22285,148592,"CHE","National Inventory",2011,"Not Reported",37,"Unteres Ghögg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22286,148593,"CHE","National Inventory",2011,"Not Reported",37,"Ghöggerhütte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22287,148594,"CHE","National Inventory",2011,"Not Reported",37,"Umiker Schachen - Stierenhölzli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22288,148595,"CHE","National Inventory",2011,"Not Reported",37,"Gillhof - Glattbrugg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22289,148596,"CHE","National Inventory",2011,"Not Reported",37,"Thurauen Wil-Weieren","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22290,148597,"CHE","National Inventory",2011,"Not Reported",37,"Glatt nordwestlich Flawil","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22291,148598,"CHE","National Inventory",2011,"Not Reported",37,"Rüsshalden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22292,148599,"CHE","National Inventory",2011,"Not Reported",37,"Reussinsel Risi","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22293,148600,"CHE","National Inventory",2011,"Not Reported",37,"Thur und Necker bei Lütisburg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22294,148601,"CHE","National Inventory",2011,"Not Reported",37,"Tote Reuss - Alte Reuss","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22295,148603,"CHE","National Inventory",2011,"Not Reported",37,"La Lomenne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22296,148604,"CHE","National Inventory",2011,"Not Reported",37,"Rottenschwiler Moos","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22297,148605,"CHE","National Inventory",2011,"Not Reported",37,"La Réchesse","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22298,148606,"CHE","National Inventory",2011,"Not Reported",37,"Still Rüss - Rickenbach","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22299,148607,"CHE","National Inventory",2011,"Not Reported",37,"Ober Schachen - Rüssspitz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22300,148608,"CHE","National Inventory",2011,"Not Reported",37,"Emmenschachen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22301,148609,"CHE","National Inventory",2011,"Not Reported",37,"Frauental","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22302,148610,"CHE","National Inventory",2011,"Not Reported",37,"Aahorn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22303,148611,"CHE","National Inventory",2011,"Not Reported",37,"Aare bei Altreu","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22304,148612,"CHE","National Inventory",2011,"Not Reported",37,"Altwässer der Aare und der Zihl","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22305,148613,"CHE","National Inventory",2011,"Not Reported",37,"Biber im Ägeriried","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22306,148614,"CHE","National Inventory",2011,"Not Reported",37,"Alte Aare: Lyss - Dotzigen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22307,148615,"CHE","National Inventory",2011,"Not Reported",37,"Utzenstorfer Schachen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22308,148616,"CHE","National Inventory",2011,"Not Reported",37,"Alte Aare: Aarberg - Lyss","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22309,148617,"CHE","National Inventory",2011,"Not Reported",37,"Heidenweg / St. Petersinsel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22310,148618,"CHE","National Inventory",2011,"Not Reported",37,"Hagneckdelta","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22311,148619,"CHE","National Inventory",2011,"Not Reported",37,"Oberburger Schachen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22312,148620,"CHE","National Inventory",2011,"Not Reported",37,"Ämmenmatt","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22313,148621,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Klöntal","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22314,148622,"CHE","National Inventory",2011,"Not Reported",37,"Seewald - Fanel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22315,148623,"CHE","National Inventory",2011,"Not Reported",37,"Niederried - Oltigenmatt","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22316,148624,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves du Chablais de Cudrefin","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22317,148625,"CHE","National Inventory",2011,"Not Reported",37,"Tristel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22318,148626,"CHE","National Inventory",2011,"Not Reported",37,"Chrauchbach: Haris","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22319,148627,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves de Portalban - Cudrefin","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22320,148628,"CHE","National Inventory",2011,"Not Reported",37,"Städerried","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22321,148629,"CHE","National Inventory",2011,"Not Reported",37,"Laupenau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22322,148630,"CHE","National Inventory",2011,"Not Reported",37,"Schlierenrüti","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22323,148631,"CHE","National Inventory",2011,"Not Reported",37,"Belper Giessen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22324,148632,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves de Chevroux - Portalban","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22325,148633,"CHE","National Inventory",2011,"Not Reported",37,"Reussdelta","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22326,148634,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves d'Estavayer-le-Lac - Chevroux","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22327,148635,"CHE","National Inventory",2011,"Not Reported",37,"Senseauen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22328,148636,"CHE","National Inventory",2011,"Not Reported",37,"Strada","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22329,148637,"CHE","National Inventory",2011,"Not Reported",37,"Steinibach","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22330,148638,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves de Concise","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22331,148639,"CHE","National Inventory",2011,"Not Reported",37,"Teuffengraben - Sackau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22332,148640,"CHE","National Inventory",2011,"Not Reported",37,"Plan-Sot","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22333,148641,"CHE","National Inventory",2011,"Not Reported",37,"Laui","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22334,148643,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves de Cheyres - Font","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22335,148644,"CHE","National Inventory",2011,"Not Reported",37,"Panas-ch-Resgia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22336,148645,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves de Grandson - Bonvillars - Onnens","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22337,148646,"CHE","National Inventory",2011,"Not Reported",37,"Rhäzünser Rheinauen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22338,148647,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves d'Yvonand - Cheyres","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22339,148648,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves d'Yverdon - Yvonand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22340,148649,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves d'Yverdon - des Tuileries","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22341,148650,"CHE","National Inventory",2011,"Not Reported",37,"Lischana - Suronnas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22342,148652,"CHE","National Inventory",2011,"Not Reported",37,"Cauma","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22343,148653,"CHE","National Inventory",2011,"Not Reported",37,"Bois du Dévin","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22344,148654,"CHE","National Inventory",2011,"Not Reported",37,"Stössi","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22345,148655,"CHE","National Inventory",2011,"Not Reported",37,"Plaun da Foppas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22346,148656,"CHE","National Inventory",2011,"Not Reported",37,"Ogna da Pardiala","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22347,148657,"CHE","National Inventory",2011,"Not Reported",37,"La Sarine: Rossens - Fribourg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22348,148658,"CHE","National Inventory",2011,"Not Reported",37,"Ärgera: Plasselb - Marly","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22349,148659,"CHE","National Inventory",2011,"Not Reported",37,"Sotruinas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22350,148660,"CHE","National Inventory",2011,"Not Reported",37,"Blaisch dal Piz dal Ras","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22351,148661,"CHE","National Inventory",2011,"Not Reported",37,"Les Iles de Villeneuve","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22352,148662,"CHE","National Inventory",2011,"Not Reported",37,"Sytenwald","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22353,148663,"CHE","National Inventory",2011,"Not Reported",37,"Jägglisglunte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22354,148664,"CHE","National Inventory",2011,"Not Reported",37,"La Neirigue et la Glâne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22355,148665,"CHE","National Inventory",2011,"Not Reported",37,"Cahuons","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22356,148666,"CHE","National Inventory",2011,"Not Reported",37,"Chandergrien","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22357,148667,"CHE","National Inventory",2011,"Not Reported",37,"Disla - Pardomat","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22358,148668,"CHE","National Inventory",2011,"Not Reported",37,"Cumparduns","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22359,148669,"CHE","National Inventory",2011,"Not Reported",37,"Augand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22360,148670,"CHE","National Inventory",2011,"Not Reported",37,"Fontanivas - Sonduritg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22361,148671,"CHE","National Inventory",2011,"Not Reported",37,"Sandey","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22362,148672,"CHE","National Inventory",2011,"Not Reported",37,"Gravas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22363,148673,"CHE","National Inventory",2011,"Not Reported",37,"Weissenau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22364,148674,"CHE","National Inventory",2011,"Not Reported",37,"Brünnlisau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22365,148675,"CHE","National Inventory",2011,"Not Reported",37,"Wilerau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22366,148676,"CHE","National Inventory",2011,"Not Reported",37,"Niedermettlisau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22367,148677,"CHE","National Inventory",2011,"Not Reported",37,"Heustrich","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22368,148678,"CHE","National Inventory",2011,"Not Reported",37,"Chappelistutz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22369,148680,"CHE","National Inventory",2011,"Not Reported",37,"Bois de Vaux","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22370,148681,"CHE","National Inventory",2011,"Not Reported",37,"In Erlen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22371,148682,"CHE","National Inventory",2011,"Not Reported",37,"Il Rom Valchava - Graveras (Müstair)","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22372,148683,"CHE","National Inventory",2011,"Not Reported",37,"Widen bei Realp","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22373,148684,"CHE","National Inventory",2011,"Not Reported",37,"La Roujarde","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22374,148685,"CHE","National Inventory",2011,"Not Reported",37,"San Batrumieu","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22375,148686,"CHE","National Inventory",2011,"Not Reported",37,"Les Auges d'Estavannens","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22376,148687,"CHE","National Inventory",2011,"Not Reported",37,"Les Monod","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22377,148688,"CHE","National Inventory",2011,"Not Reported",37,"Engstlige: bim Stei - Oybedly","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22378,148689,"CHE","National Inventory",2011,"Not Reported",37,"Isla Glischa - Arvins - Seglias","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22379,148691,"CHE","National Inventory",2011,"Not Reported",37,"Sagnes de la Burtignière","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22380,148692,"CHE","National Inventory",2011,"Not Reported",37,"Les Iles de Bussigny","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22381,148693,"CHE","National Inventory",2011,"Not Reported",37,"Sand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22382,148694,"CHE","National Inventory",2011,"Not Reported",37,"Les Auges de Neirivue","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22383,148695,"CHE","National Inventory",2011,"Not Reported",37,"Flaz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22384,148696,"CHE","National Inventory",2011,"Not Reported",37,"Brenno di Blenio","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22385,148697,"CHE","National Inventory",2011,"Not Reported",37,"Campall","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22386,148698,"CHE","National Inventory",2011,"Not Reported",37,"Albinasca","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22387,148699,"CHE","National Inventory",2011,"Not Reported",37,"Geròra","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22388,148700,"CHE","National Inventory",2011,"Not Reported",37,"Soria","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22389,148701,"CHE","National Inventory",2011,"Not Reported",37,"Bosco dei Valloni","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22390,148702,"CHE","National Inventory",2011,"Not Reported",37,"La Sarine près Château-d'Oex","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22391,148703,"CHE","National Inventory",2011,"Not Reported",37,"Embouchure de l'Aubonne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22392,148704,"CHE","National Inventory",2011,"Not Reported",37,"Gastereholz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22393,148706,"CHE","National Inventory",2011,"Not Reported",37,"Matte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22394,148707,"CHE","National Inventory",2011,"Not Reported",37,"Zeiterbode","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22395,148709,"CHE","National Inventory",2011,"Not Reported",37,"La Torneresse à l'Etivaz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22396,148710,"CHE","National Inventory",2011,"Not Reported",37,"Chiemadmatte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22397,148711,"CHE","National Inventory",2011,"Not Reported",37,"Tännmattu","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22398,148712,"CHE","National Inventory",2011,"Not Reported",37,"Rohr - Oey","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22399,148713,"CHE","National Inventory",2011,"Not Reported",37,"Sonlèrt - Sabbione","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22400,148714,"CHE","National Inventory",2011,"Not Reported",37,"Les Grangettes","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22401,148715,"CHE","National Inventory",2011,"Not Reported",37,"Bolla di Loderio","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22402,148716,"CHE","National Inventory",2011,"Not Reported",37,"Somprei - Lovalt","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22403,148717,"CHE","National Inventory",2011,"Not Reported",37,"Canton","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22404,148718,"CHE","National Inventory",2011,"Not Reported",37,"Pian di Alne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22405,148719,"CHE","National Inventory",2011,"Not Reported",37,"Bilderne","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22406,148720,"CHE","National Inventory",2011,"Not Reported",37,"Pomareda","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22407,148721,"CHE","National Inventory",2011,"Not Reported",37,"Grand Bataillard","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22408,148722,"CHE","National Inventory",2011,"Not Reported",37,"Iles des Clous","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22409,148723,"CHE","National Inventory",2011,"Not Reported",37,"Maggia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22410,148724,"CHE","National Inventory",2011,"Not Reported",37,"Pfynwald","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22411,148725,"CHE","National Inventory",2011,"Not Reported",37,"Rosera","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22412,148726,"CHE","National Inventory",2011,"Not Reported",37,"Grund","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22413,148727,"CHE","National Inventory",2011,"Not Reported",37,"Derborence","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22414,148728,"CHE","National Inventory",2011,"Not Reported",37,"Les Gravines","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22415,148729,"CHE","National Inventory",2011,"Not Reported",37,"Pascoletto","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22416,148730,"CHE","National Inventory",2011,"Not Reported",37,"Isola","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22417,148731,"CHE","National Inventory",2011,"Not Reported",37,"Ai Fornas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22418,148732,"CHE","National Inventory",2011,"Not Reported",37,"Saleggio","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22419,148733,"CHE","National Inventory",2011,"Not Reported",37,"Bassa","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22420,148734,"CHE","National Inventory",2011,"Not Reported",37,"Vallon de l'Allondon","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22421,148735,"CHE","National Inventory",2011,"Not Reported",37,"Moulin de Vert","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22422,148736,"CHE","National Inventory",2011,"Not Reported",37,"Boschetti","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22423,148737,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di Magadino","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22424,148738,"CHE","National Inventory",2011,"Not Reported",37,"Ciossa Antognini","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22425,148739,"CHE","National Inventory",2011,"Not Reported",37,"Foce della Maggia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22426,148740,"CHE","National Inventory",2011,"Not Reported",37,"Vallon de la Laire","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22427,148741,"CHE","National Inventory",2011,"Not Reported",37,"Vers Vaux","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22428,148742,"CHE","National Inventory",2011,"Not Reported",37,"Lotrey","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22429,148743,"CHE","National Inventory",2011,"Not Reported",37,"Salay","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22430,148744,"CHE","National Inventory",2011,"Not Reported",37,"Ferpècle","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22431,148745,"CHE","National Inventory",2011,"Not Reported",37,"Pramousse - Satarma","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22432,148746,"CHE","National Inventory",2011,"Not Reported",37,"Source du Trient","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22433,148747,"CHE","National Inventory",2011,"Not Reported",37,"La Borgne en amont d'Arolla","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22434,148748,"CHE","National Inventory",2011,"Not Reported",37,"Madonna del Piano","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22435,148750,"CHE","National Inventory",2011,"Not Reported",37,"Chatzensee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22436,148751,"CHE","National Inventory",2011,"Not Reported",37,"Taumoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22437,148752,"CHE","National Inventory",2011,"Not Reported",37,"Moos Schoenenhof bei Wallisellen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22438,148753,"CHE","National Inventory",2011,"Not Reported",37,"Wildert","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22439,148754,"CHE","National Inventory",2011,"Not Reported",37,"Rotmoos 4","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22440,148755,"CHE","National Inventory",2011,"Not Reported",37,"Suruggen/Chellersegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22441,148756,"CHE","National Inventory",2011,"Not Reported",37,"Hofguetmoor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22442,148757,"CHE","National Inventory",2011,"Not Reported",37,"Weid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22443,148758,"CHE","National Inventory",2011,"Not Reported",37,"Torfriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22444,148759,"CHE","National Inventory",2011,"Not Reported",37,"Fischbacher Moos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22445,148760,"CHE","National Inventory",2011,"Not Reported",37,"Forenmoos/Schachenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22446,148761,"CHE","National Inventory",2011,"Not Reported",37,"Robenhauserriet/Pfaeffikersee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22447,148762,"CHE","National Inventory",2011,"Not Reported",37,"Hirschberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22448,148763,"CHE","National Inventory",2011,"Not Reported",37,"Nisplismoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22449,148764,"CHE","National Inventory",2011,"Not Reported",37,"Moor suedoestlich Beldschwendi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22450,148765,"CHE","National Inventory",2011,"Not Reported",37,"Gontenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22451,148767,"CHE","National Inventory",2011,"Not Reported",37,"Barchetsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22452,148768,"CHE","National Inventory",2011,"Not Reported",37,"Raeubrichseen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22453,148769,"CHE","National Inventory",2011,"Not Reported",37,"Gurisee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22454,148770,"CHE","National Inventory",2011,"Not Reported",37,"Hudelmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22455,148771,"CHE","National Inventory",2011,"Not Reported",37,"Mettmenhasler See","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22456,148772,"CHE","National Inventory",2011,"Not Reported",37,"Bergwis","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22457,148773,"CHE","National Inventory",2011,"Not Reported",37,"Chraeenriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22458,148774,"CHE","National Inventory",2011,"Not Reported",37,"Huetten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22459,148775,"CHE","National Inventory",2011,"Not Reported",37,"Moor nordwestlich Gisleren/Schoenauwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22460,148776,"CHE","National Inventory",2011,"Not Reported",37,"Helchen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22461,148777,"CHE","National Inventory",2011,"Not Reported",37,"Loechli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22462,148778,"CHE","National Inventory",2011,"Not Reported",37,"Ambitzgi/Boehnlerriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22463,148779,"CHE","National Inventory",2011,"Not Reported",37,"Breitmoos 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22464,148780,"CHE","National Inventory",2011,"Not Reported",37,"Moor auf dem Schwarzenberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22465,148781,"CHE","National Inventory",2011,"Not Reported",37,"Stillert","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22466,148782,"CHE","National Inventory",2011,"Not Reported",37,"Untere Fischeren","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22467,148783,"CHE","National Inventory",2011,"Not Reported",37,"Hiwiler Riet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22468,148784,"CHE","National Inventory",2011,"Not Reported",37,"Oberhoefler Riet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22469,148785,"CHE","National Inventory",2011,"Not Reported",37,"Vordere Wartegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22470,148786,"CHE","National Inventory",2011,"Not Reported",37,"Forenmoesli/Burketwald/Paradisli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22471,148787,"CHE","National Inventory",2011,"Not Reported",37,"Guggenhalden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22472,148788,"CHE","National Inventory",2011,"Not Reported",37,"Bruggerenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22473,148789,"CHE","National Inventory",2011,"Not Reported",37,"Moore noerdlich Guggeien","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22474,148790,"CHE","National Inventory",2011,"Not Reported",37,"La Tourbiere des Enfers","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22475,148791,"CHE","National Inventory",2011,"Not Reported",37,"Ober Bad","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22476,148792,"CHE","National Inventory",2011,"Not Reported",37,"Moore zwischen Alp Stoeck und Gschwend","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22477,148793,"CHE","National Inventory",2011,"Not Reported",37,"Moor zwischen Telleren und Chli Langboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22478,148794,"CHE","National Inventory",2011,"Not Reported",37,"Plain de Saigne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22479,148795,"CHE","National Inventory",2011,"Not Reported",37,"Moor Rinderweiderhau/Hinter Bisliken","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22480,148796,"CHE","National Inventory",2011,"Not Reported",37,"Salomonstempel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22481,148797,"CHE","National Inventory",2011,"Not Reported",37,"Potersalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22482,148798,"CHE","National Inventory",2011,"Not Reported",37,"Chellen/Allmeindswald/Bendelried","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22483,148799,"CHE","National Inventory",2011,"Not Reported",37,"La Couaye","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22484,148800,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere a l'est des Neufs Pres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22485,148801,"CHE","National Inventory",2011,"Not Reported",37,"Unterloch/Grundlosen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22486,148802,"CHE","National Inventory",2011,"Not Reported",37,"Derriere les Embreux","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22487,148803,"CHE","National Inventory",2011,"Not Reported",37,"Foret du Peche","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22488,148804,"CHE","National Inventory",2011,"Not Reported",37,"Moore auf dem Rickenpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22489,148805,"CHE","National Inventory",2011,"Not Reported",37,"Cholwald Schwaegalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22490,148806,"CHE","National Inventory",2011,"Not Reported",37,"Les Embreux","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22491,148807,"CHE","National Inventory",2011,"Not Reported",37,"Chlosterwald-Moore/Ampferenboedeli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22492,148808,"CHE","National Inventory",2011,"Not Reported",37,"Moore bei Steig und Schartegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22493,148809,"CHE","National Inventory",2011,"Not Reported",37,"Unter Huettenbueel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22494,148810,"CHE","National Inventory",2011,"Not Reported",37,"Egelsee 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22495,148811,"CHE","National Inventory",2011,"Not Reported",37,"Moore im Traemelloch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22496,148812,"CHE","National Inventory",2011,"Not Reported",37,"La Saigne a l'est des Rouges-Terres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22497,148813,"CHE","National Inventory",2011,"Not Reported",37,"Schoenbuehl","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22498,148814,"CHE","National Inventory",2011,"Not Reported",37,"Seeweidsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22499,148815,"CHE","National Inventory",2011,"Not Reported",37,"La Sagne et les Tourbieres de Bellelay","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22500,148816,"CHE","National Inventory",2011,"Not Reported",37,"Moore auf dem Chraezerenpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22501,148817,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere a l'ouest de Predame","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22502,148818,"CHE","National Inventory",2011,"Not Reported",37,"Eggweid auf dem Ricken","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22503,148819,"CHE","National Inventory",2011,"Not Reported",37,"Moor zwischen Turn und Laub","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22504,148820,"CHE","National Inventory",2011,"Not Reported",37,"Ruetiwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22505,148821,"CHE","National Inventory",2011,"Not Reported",37,"Les Royes","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22506,148822,"CHE","National Inventory",2011,"Not Reported",37,"Bilchenriet/Unterwald/Schiltmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22507,148823,"CHE","National Inventory",2011,"Not Reported",37,"Unterrifferswilermoos/Chrutzelen/Oberrifferswilermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22508,148824,"CHE","National Inventory",2011,"Not Reported",37,"La Tourbiere au sud des Veaux","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22509,148825,"CHE","National Inventory",2011,"Not Reported",37,"Etang de la Gruere","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22510,148826,"CHE","National Inventory",2011,"Not Reported",37,"Gruen/Neuhuettli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22511,148827,"CHE","National Inventory",2011,"Not Reported",37,"La Tourbiere/Ronde Sagne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22512,148828,"CHE","National Inventory",2011,"Not Reported",37,"Aegelsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22513,148829,"CHE","National Inventory",2011,"Not Reported",37,"Grindelmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22514,148830,"CHE","National Inventory",2011,"Not Reported",37,"Hochmoor bei Etzelwil","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22515,148831,"CHE","National Inventory",2011,"Not Reported",37,"Hinterschluchen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22516,148832,"CHE","National Inventory",2011,"Not Reported",37,"Hagenholz/Hagenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22517,148833,"CHE","National Inventory",2011,"Not Reported",37,"Rorholz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22518,148834,"CHE","National Inventory",2011,"Not Reported",37,"Paturage du Droit","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22519,148835,"CHE","National Inventory",2011,"Not Reported",37,"Friessen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22520,148836,"CHE","National Inventory",2011,"Not Reported",37,"Moore auf der Wolzenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22521,148837,"CHE","National Inventory",2011,"Not Reported",37,"La Tourbiere de la Chaux-des-Breuleux","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22522,148838,"CHE","National Inventory",2011,"Not Reported",37,"Gubelspitz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22523,148839,"CHE","National Inventory",2011,"Not Reported",37,"Chrutzelenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22524,148840,"CHE","National Inventory",2011,"Not Reported",37,"Feldmoos/Moore auf dem Feldmooshubel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22525,148841,"CHE","National Inventory",2011,"Not Reported",37,"Luetisalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22526,148842,"CHE","National Inventory",2011,"Not Reported",37,"Ballmoos Lieli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22527,148843,"CHE","National Inventory",2011,"Not Reported",37,"Haeglimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22528,148844,"CHE","National Inventory",2011,"Not Reported",37,"Dreihuetten/Gampluet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22529,148845,"CHE","National Inventory",2011,"Not Reported",37,"Tourbieres de Chanteraine","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22530,148846,"CHE","National Inventory",2011,"Not Reported",37,"Spitzenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22531,148847,"CHE","National Inventory",2011,"Not Reported",37,"Schoenenboden/Sommerigchopf","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22532,148848,"CHE","National Inventory",2011,"Not Reported",37,"Creux de l'Epral","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22533,148849,"CHE","National Inventory",2011,"Not Reported",37,"Moor noerdlich Heeg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22534,148850,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Engi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22535,148851,"CHE","National Inventory",2011,"Not Reported",37,"Munzenriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22536,148852,"CHE","National Inventory",2011,"Not Reported",37,"Moor zwischen Bueel uns Blattwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22537,148853,"CHE","National Inventory",2011,"Not Reported",37,"Hinterbergried","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22538,148854,"CHE","National Inventory",2011,"Not Reported",37,"Vorderwaengi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22539,148855,"CHE","National Inventory",2011,"Not Reported",37,"Au/Hinterlaad","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22540,148856,"CHE","National Inventory",2011,"Not Reported",37,"Gubelmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22541,148857,"CHE","National Inventory",2011,"Not Reported",37,"Vermoorungen um das Sagenhoelzli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22542,148858,"CHE","National Inventory",2011,"Not Reported",37,"Goldach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22543,148859,"CHE","National Inventory",2011,"Not Reported",37,"Chaelenmoor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22544,148860,"CHE","National Inventory",2011,"Not Reported",37,"Schwendiseen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22545,148861,"CHE","National Inventory",2011,"Not Reported",37,"Aelpli/Eggenriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22546,148862,"CHE","National Inventory",2011,"Not Reported",37,"Egelsee 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22547,148863,"CHE","National Inventory",2011,"Not Reported",37,"Hirzenbaeder/Sommerweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22548,148864,"CHE","National Inventory",2011,"Not Reported",37,"Taennlimoos/Hintercher-Moos/Muserholz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22549,148865,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Hoehi/Boenisriet/Stoecklerriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22550,148866,"CHE","National Inventory",2011,"Not Reported",37,"Schaersboden-Moor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22551,148867,"CHE","National Inventory",2011,"Not Reported",37,"Tourbieres de la Chaux d'Abel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22552,148868,"CHE","National Inventory",2011,"Not Reported",37,"Gamperfin/Turbenriet/Tischenriet/Gapels","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22553,148869,"CHE","National Inventory",2011,"Not Reported",37,"Westlich Etzel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22554,148870,"CHE","National Inventory",2011,"Not Reported",37,"Altstofel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22555,148871,"CHE","National Inventory",2011,"Not Reported",37,"Schoenboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22556,148872,"CHE","National Inventory",2011,"Not Reported",37,"Chlepfimoos/Burgmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22557,148873,"CHE","National Inventory",2011,"Not Reported",37,"Moor noerdlich Schwandegg/Twaerfallen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22558,148874,"CHE","National Inventory",2011,"Not Reported",37,"Neugrundmoor/Wuerzgarten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22559,148875,"CHE","National Inventory",2011,"Not Reported",37,"Schwantenau","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22560,148876,"CHE","National Inventory",2011,"Not Reported",37,"Champ Meusel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22561,148877,"CHE","National Inventory",2011,"Not Reported",37,"Altschenchopf","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22562,148878,"CHE","National Inventory",2011,"Not Reported",37,"Witi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22563,148879,"CHE","National Inventory",2011,"Not Reported",37,"Roblosen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22564,148880,"CHE","National Inventory",2011,"Not Reported",37,"Schindellegi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22565,148881,"CHE","National Inventory",2011,"Not Reported",37,"Moore beim Chlausechappeli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22566,148882,"CHE","National Inventory",2011,"Not Reported",37,"Breitried 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22567,148883,"CHE","National Inventory",2011,"Not Reported",37,"Altmatt-Biberbrugg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22568,148884,"CHE","National Inventory",2011,"Not Reported",37,"Zigermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22569,148885,"CHE","National Inventory",2011,"Not Reported",37,"Vorderer Geissboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22570,148886,"CHE","National Inventory",2011,"Not Reported",37,"Grossriet/Arvenbueel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22571,148887,"CHE","National Inventory",2011,"Not Reported",37,"Hessenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22572,148888,"CHE","National Inventory",2011,"Not Reported",37,"Braemenegg/Furen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22573,148889,"CHE","National Inventory",2011,"Not Reported",37,"Tubenloch/Huenggi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22574,148890,"CHE","National Inventory",2011,"Not Reported",37,"Les Pontins","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22575,148891,"CHE","National Inventory",2011,"Not Reported",37,"Eigenried/Birchried/Kellersforen/Frueebueelmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22576,148892,"CHE","National Inventory",2011,"Not Reported",37,"Le Marais de la Joux du Plane","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22577,148893,"CHE","National Inventory",2011,"Not Reported",37,"Gross Moos im Schwendital","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22578,148894,"CHE","National Inventory",2011,"Not Reported",37,"Chaesgaden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22579,148895,"CHE","National Inventory",2011,"Not Reported",37,"Im Fang","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22580,148896,"CHE","National Inventory",2011,"Not Reported",37,"Blimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22581,148897,"CHE","National Inventory",2011,"Not Reported",37,"Moore / Huerital","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22582,148898,"CHE","National Inventory",2011,"Not Reported",37,"Boggenberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22583,148899,"CHE","National Inventory",2011,"Not Reported",37,"Chnoden/Heumoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22584,148900,"CHE","National Inventory",2011,"Not Reported",37,"Marais de Pouillerel/Marais Jean Colard","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22585,148901,"CHE","National Inventory",2011,"Not Reported",37,"Nuechenstoeck","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22586,148902,"CHE","National Inventory",2011,"Not Reported",37,"Les Saignolis","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22587,148903,"CHE","National Inventory",2011,"Not Reported",37,"Madils","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22588,148904,"CHE","National Inventory",2011,"Not Reported",37,"Tobelwald/Guetental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22589,148905,"CHE","National Inventory",2011,"Not Reported",37,"Les Eplatures-Temple","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22590,148906,"CHE","National Inventory",2011,"Not Reported",37,"Breitried 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22591,148908,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22592,148909,"CHE","National Inventory",2011,"Not Reported",37,"Naserina","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22593,148910,"CHE","National Inventory",2011,"Not Reported",37,"Prodriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22594,148911,"CHE","National Inventory",2011,"Not Reported",37,"Ausfluss des Rotsees","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22595,148912,"CHE","National Inventory",2011,"Not Reported",37,"Tuetenseeli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22596,148913,"CHE","National Inventory",2011,"Not Reported",37,"Platten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22597,148914,"CHE","National Inventory",2011,"Not Reported",37,"Muertschen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22598,148915,"CHE","National Inventory",2011,"Not Reported",37,"Maerzental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22599,148916,"CHE","National Inventory",2011,"Not Reported",37,"Meienmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22600,148917,"CHE","National Inventory",2011,"Not Reported",37,"Heidmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22601,148918,"CHE","National Inventory",2011,"Not Reported",37,"Tierfaederen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22602,148919,"CHE","National Inventory",2011,"Not Reported",37,"Chapfensee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22603,148920,"CHE","National Inventory",2011,"Not Reported",37,"Forenmoos im Sigiger Wald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22604,148921,"CHE","National Inventory",2011,"Not Reported",37,"Rietlichopf im Murgtal","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22605,148922,"CHE","National Inventory",2011,"Not Reported",37,"Unter Murgsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22606,148923,"CHE","National Inventory",2011,"Not Reported",37,"Furenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22607,148924,"CHE","National Inventory",2011,"Not Reported",37,"Gross Underbaech","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22608,148925,"CHE","National Inventory",2011,"Not Reported",37,"Chli Underbaech","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22609,148926,"CHE","National Inventory",2011,"Not Reported",37,"Hobacher","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22610,148927,"CHE","National Inventory",2011,"Not Reported",37,"Tubenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22611,148928,"CHE","National Inventory",2011,"Not Reported",37,"Inner und Usser Schnabel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22612,148929,"CHE","National Inventory",2011,"Not Reported",37,"Les Chauchets","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22613,148930,"CHE","National Inventory",2011,"Not Reported",37,"Moos nordwestlich Gibelegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22614,148931,"CHE","National Inventory",2011,"Not Reported",37,"Furenmoos bei der Krienseregg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22615,148932,"CHE","National Inventory",2011,"Not Reported",37,"Gibelegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22616,148933,"CHE","National Inventory",2011,"Not Reported",37,"Tourbieres du Cachot","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22617,148934,"CHE","National Inventory",2011,"Not Reported",37,"Forrenmoos/Meienstossmoos im Eigental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22618,148935,"CHE","National Inventory",2011,"Not Reported",37,"Follenwald im Krienser Hohwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22619,148936,"CHE","National Inventory",2011,"Not Reported",37,"Vallee des Ponts-de-Martel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22620,148937,"CHE","National Inventory",2011,"Not Reported",37,"Vers le Maix Rochat","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22621,148938,"CHE","National Inventory",2011,"Not Reported",37,"Obersaess","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22622,148939,"CHE","National Inventory",2011,"Not Reported",37,"Arven unter Fraekmuent","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22623,148941,"CHE","National Inventory",2011,"Not Reported",37,"Marais de la Chatagne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22624,148942,"CHE","National Inventory",2011,"Not Reported",37,"Buesselimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22625,148943,"CHE","National Inventory",2011,"Not Reported",37,"Mettilimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22626,148944,"CHE","National Inventory",2011,"Not Reported",37,"Loermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22627,148945,"CHE","National Inventory",2011,"Not Reported",37,"Rond Buisson","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22628,148946,"CHE","National Inventory",2011,"Not Reported",37,"Bruendlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22629,148947,"CHE","National Inventory",2011,"Not Reported",37,"Grossriet/Gnappiriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22630,148948,"CHE","National Inventory",2011,"Not Reported",37,"Teufboeni","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22631,148949,"CHE","National Inventory",2011,"Not Reported",37,"Ehemaliger Pilatussee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22632,148950,"CHE","National Inventory",2011,"Not Reported",37,"Fuchserenmoos/Geugelhusenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22633,148951,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere pres de la Cornee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22634,148952,"CHE","National Inventory",2011,"Not Reported",37,"Fuchseren","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22635,148953,"CHE","National Inventory",2011,"Not Reported",37,"Fulried am Stelserberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22636,148954,"CHE","National Inventory",2011,"Not Reported",37,"Balmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22637,148955,"CHE","National Inventory",2011,"Not Reported",37,"Bemont/Chez Petoud","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22638,148956,"CHE","National Inventory",2011,"Not Reported",37,"Muellerenmoesli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22639,148957,"CHE","National Inventory",2011,"Not Reported",37,"Garichti","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22640,148958,"CHE","National Inventory",2011,"Not Reported",37,"Moor noerdlich First","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22641,148959,"CHE","National Inventory",2011,"Not Reported",37,"Staechtenmoesli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22642,148960,"CHE","National Inventory",2011,"Not Reported",37,"Les Sagnes-Rouges","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22643,148961,"CHE","National Inventory",2011,"Not Reported",37,"Rongg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22644,148962,"CHE","National Inventory",2011,"Not Reported",37,"Riedzoepf","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22645,148963,"CHE","National Inventory",2011,"Not Reported",37,"Grotzenbueel (Braunwald)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22646,148964,"CHE","National Inventory",2011,"Not Reported",37,"Le Brouillet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22647,148965,"CHE","National Inventory",2011,"Not Reported",37,"Matt oberhalb Stausee Garichti","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22648,148966,"CHE","National Inventory",2011,"Not Reported",37,"Riedboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22649,148967,"CHE","National Inventory",2011,"Not Reported",37,"Etzelhuesli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22650,148968,"CHE","National Inventory",2011,"Not Reported",37,"Juchmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22651,148969,"CHE","National Inventory",2011,"Not Reported",37,"Rischigenmatt - Rotibach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22652,148970,"CHE","National Inventory",2011,"Not Reported",37,"Laengenfeldmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22653,148971,"CHE","National Inventory",2011,"Not Reported",37,"Horn bei Tratza","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22654,148972,"CHE","National Inventory",2011,"Not Reported",37,"Ober Lauenberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22655,148973,"CHE","National Inventory",2011,"Not Reported",37,"Seeliboden im Choltal","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22656,148974,"CHE","National Inventory",2011,"Not Reported",37,"Les Sagnettes sur Boveresse","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22657,148975,"CHE","National Inventory",2011,"Not Reported",37,"Taellenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22658,148976,"CHE","National Inventory",2011,"Not Reported",37,"Scheidegg im Choltal","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22659,148977,"CHE","National Inventory",2011,"Not Reported",37,"Aebnistetten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22660,148978,"CHE","National Inventory",2011,"Not Reported",37,"Meiengraben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22661,148979,"CHE","National Inventory",2011,"Not Reported",37,"Zwischen Horweli und Rossweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22662,148980,"CHE","National Inventory",2011,"Not Reported",37,"Zwischen Horweli und der Grossen Schliere","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22663,148981,"CHE","National Inventory",2011,"Not Reported",37,"Gerzensee im Kernwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22664,148982,"CHE","National Inventory",2011,"Not Reported",37,"Teilenboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22665,148983,"CHE","National Inventory",2011,"Not Reported",37,"Le Marais/Les Bochats","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22666,148984,"CHE","National Inventory",2011,"Not Reported",37,"Rosswaengenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22667,148985,"CHE","National Inventory",2011,"Not Reported",37,"Unteres Schlierental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22668,148986,"CHE","National Inventory",2011,"Not Reported",37,"Oestlich Brandchnubel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22669,148987,"CHE","National Inventory",2011,"Not Reported",37,"Zwischen Schwand und Guermschbach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22670,148988,"CHE","National Inventory",2011,"Not Reported",37,"Guermschwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22671,148989,"CHE","National Inventory",2011,"Not Reported",37,"Wengli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22672,148990,"CHE","National Inventory",2011,"Not Reported",37,"Seeliwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22673,148991,"CHE","National Inventory",2011,"Not Reported",37,"Unter Wasserfallen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22674,148992,"CHE","National Inventory",2011,"Not Reported",37,"Hueenerguetsch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22675,148993,"CHE","National Inventory",2011,"Not Reported",37,"Obere Schluecht/Untere Schluecht","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22676,148994,"CHE","National Inventory",2011,"Not Reported",37,"La Sagnette/Les Tourbieres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22677,148995,"CHE","National Inventory",2011,"Not Reported",37,"Schwendi Kaltbad","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22678,148996,"CHE","National Inventory",2011,"Not Reported",37,"Marchmettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22679,148997,"CHE","National Inventory",2011,"Not Reported",37,"Haesiseggboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22680,148998,"CHE","National Inventory",2011,"Not Reported",37,"Gerenstock","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22681,148999,"CHE","National Inventory",2011,"Not Reported",37,"Duerrenboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22682,149000,"CHE","National Inventory",2011,"Not Reported",37,"Talhubel/Siterenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22683,149001,"CHE","National Inventory",2011,"Not Reported",37,"Urnerboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22684,149002,"CHE","National Inventory",2011,"Not Reported",37,"Zwischen Glaubenberg und Rossalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22685,149003,"CHE","National Inventory",2011,"Not Reported",37,"Obermattboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22686,149004,"CHE","National Inventory",2011,"Not Reported",37,"Gross Lucht","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22687,149005,"CHE","National Inventory",2011,"Not Reported",37,"Suedlich Groen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22688,149006,"CHE","National Inventory",2011,"Not Reported",37,"Ober Sewen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22689,149007,"CHE","National Inventory",2011,"Not Reported",37,"Trogenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22690,149008,"CHE","National Inventory",2011,"Not Reported",37,"Muenchenboden/Grund/Ochsenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22691,149009,"CHE","National Inventory",2011,"Not Reported",37,"Fangboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22692,149010,"CHE","National Inventory",2011,"Not Reported",37,"Zwischen Guggenen und Unter Aenggenlauenen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22693,149011,"CHE","National Inventory",2011,"Not Reported",37,"Unter Sewen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22694,149012,"CHE","National Inventory",2011,"Not Reported",37,"Gross Trogen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22695,149013,"CHE","National Inventory",2011,"Not Reported",37,"Schwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22696,149014,"CHE","National Inventory",2011,"Not Reported",37,"Ruechiwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22697,149015,"CHE","National Inventory",2011,"Not Reported",37,"Chli Trogen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22698,149016,"CHE","National Inventory",2011,"Not Reported",37,"Zwischen Fuersteinwald und Blattli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22699,149017,"CHE","National Inventory",2011,"Not Reported",37,"Nollen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22700,149018,"CHE","National Inventory",2011,"Not Reported",37,"Riedboden bei Zischlig","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22701,149019,"CHE","National Inventory",2011,"Not Reported",37,"Taellenmoos im Hilferental","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22702,149020,"CHE","National Inventory",2011,"Not Reported",37,"Doersmatt","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22703,149021,"CHE","National Inventory",2011,"Not Reported",37,"Riedmattschwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22704,149022,"CHE","National Inventory",2011,"Not Reported",37,"Daelenboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22705,149023,"CHE","National Inventory",2011,"Not Reported",37,"Hagleren","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22706,149024,"CHE","National Inventory",2011,"Not Reported",37,"Duedingermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22707,149025,"CHE","National Inventory",2011,"Not Reported",37,"Mouille de la Vraconne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22708,149026,"CHE","National Inventory",2011,"Not Reported",37,"Grossweid bei Laret","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22709,149027,"CHE","National Inventory",2011,"Not Reported",37,"Siehenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22710,149028,"CHE","National Inventory",2011,"Not Reported",37,"Staechelegg/Ghack","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22711,149029,"CHE","National Inventory",2011,"Not Reported",37,"Oberer Rorwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22712,149030,"CHE","National Inventory",2011,"Not Reported",37,"Cheiserschwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22713,149031,"CHE","National Inventory",2011,"Not Reported",37,"Rormettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22714,149032,"CHE","National Inventory",2011,"Not Reported",37,"Rorwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22715,149033,"CHE","National Inventory",2011,"Not Reported",37,"Pfaffenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22716,149034,"CHE","National Inventory",2011,"Not Reported",37,"Gaensenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22717,149035,"CHE","National Inventory",2011,"Not Reported",37,"Mouille au Sayet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22718,149036,"CHE","National Inventory",2011,"Not Reported",37,"Zwischen Schlund und Aenzihuetten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22719,149037,"CHE","National Inventory",2011,"Not Reported",37,"Merliwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22720,149038,"CHE","National Inventory",2011,"Not Reported",37,"Les Mouilles","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22721,149039,"CHE","National Inventory",2011,"Not Reported",37,"Rischli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22722,149040,"CHE","National Inventory",2011,"Not Reported",37,"Wachseldornmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22723,149041,"CHE","National Inventory",2011,"Not Reported",37,"Zwischen Wagliseichnubel und Ghack","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22724,149042,"CHE","National Inventory",2011,"Not Reported",37,"Flueegfaeael/Steinmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22725,149043,"CHE","National Inventory",2011,"Not Reported",37,"Wagliseichnubel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22726,149044,"CHE","National Inventory",2011,"Not Reported",37,"Moos bei Wachseldorn/Untermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22727,149045,"CHE","National Inventory",2011,"Not Reported",37,"Husegg-Hurnischwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22728,149046,"CHE","National Inventory",2011,"Not Reported",37,"Husegg-Ochsenweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22729,149047,"CHE","National Inventory",2011,"Not Reported",37,"Suedlich Ober Saffertberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22730,149048,"CHE","National Inventory",2011,"Not Reported",37,"Totmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22731,149049,"CHE","National Inventory",2011,"Not Reported",37,"Zopf/Salwiden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22732,149050,"CHE","National Inventory",2011,"Not Reported",37,"Les Araignys","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22733,149051,"CHE","National Inventory",2011,"Not Reported",37,"Guntlishuetten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22734,149052,"CHE","National Inventory",2011,"Not Reported",37,"Gross Gfael","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22735,149053,"CHE","National Inventory",2011,"Not Reported",37,"Salwidili","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22736,149054,"CHE","National Inventory",2011,"Not Reported",37,"Mouille de la Sagne","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22737,149055,"CHE","National Inventory",2011,"Not Reported",37,"Husegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22738,149056,"CHE","National Inventory",2011,"Not Reported",37,"Rossweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22739,149057,"CHE","National Inventory",2011,"Not Reported",37,"Wagliseiboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22740,149058,"CHE","National Inventory",2011,"Not Reported",37,"Laubersmadghack","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22741,149059,"CHE","National Inventory",2011,"Not Reported",37,"Gerschni","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22742,149060,"CHE","National Inventory",2011,"Not Reported",37,"Feldmoos (Gerschni)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22743,149061,"CHE","National Inventory",2011,"Not Reported",37,"Ried unter dem Raemisboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22744,149062,"CHE","National Inventory",2011,"Not Reported",37,"Tuernliwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22745,149063,"CHE","National Inventory",2011,"Not Reported",37,"Vorderes Steinetli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22746,149064,"CHE","National Inventory",2011,"Not Reported",37,"Mittlerschwarzenegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22747,149065,"CHE","National Inventory",2011,"Not Reported",37,"Fulensee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22748,149066,"CHE","National Inventory",2011,"Not Reported",37,"Fischbachmoos/Obermoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22749,149067,"CHE","National Inventory",2011,"Not Reported",37,"Rotmoos 3","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22750,149068,"CHE","National Inventory",2011,"Not Reported",37,"Baersel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22751,149069,"CHE","National Inventory",2011,"Not Reported",37,"Haengstmoor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22752,149070,"CHE","National Inventory",2011,"Not Reported",37,"Schwandholz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22753,149071,"CHE","National Inventory",2011,"Not Reported",37,"Vorderes Rotmoesli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22754,149072,"CHE","National Inventory",2011,"Not Reported",37,"Usserberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22755,149073,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzsee bei Arosa","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22756,149074,"CHE","National Inventory",2011,"Not Reported",37,"Moore im Steiniwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22757,149075,"CHE","National Inventory",2011,"Not Reported",37,"Moore oestlich Aellgaeuli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22758,149076,"CHE","National Inventory",2011,"Not Reported",37,"Moore zwischen Mirrenegg und Aellgaeuli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22759,149077,"CHE","National Inventory",2011,"Not Reported",37,"Lai Nair","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22760,149078,"CHE","National Inventory",2011,"Not Reported",37,"Clavadeler Berg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22761,149079,"CHE","National Inventory",2011,"Not Reported",37,"Esleren/Gummenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22762,149080,"CHE","National Inventory",2011,"Not Reported",37,"Horneggwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22763,149081,"CHE","National Inventory",2011,"Not Reported",37,"Rotmoos 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22764,149082,"CHE","National Inventory",2011,"Not Reported",37,"Rueti am Arnisee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22765,149083,"CHE","National Inventory",2011,"Not Reported",37,"Stouffe","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22766,149084,"CHE","National Inventory",2011,"Not Reported",37,"Gmeine Schoeriz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22767,149085,"CHE","National Inventory",2011,"Not Reported",37,"Trogenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22768,149086,"CHE","National Inventory",2011,"Not Reported",37,"Moore noerdlich Gruenenbergpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22769,149087,"CHE","National Inventory",2011,"Not Reported",37,"Entenmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22770,149088,"CHE","National Inventory",2011,"Not Reported",37,"Moor westlich Steinige Schoeriz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22771,149089,"CHE","National Inventory",2011,"Not Reported",37,"Moor oestlich Unteres Hoernli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22772,149090,"CHE","National Inventory",2011,"Not Reported",37,"Moeser oestlich Widegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22773,149091,"CHE","National Inventory",2011,"Not Reported",37,"Moor suedwestlich Steinige Schoeriz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22774,149092,"CHE","National Inventory",2011,"Not Reported",37,"Hoehenschwandmoor","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22775,149093,"CHE","National Inventory",2011,"Not Reported",37,"Moore suedwestlich Gruenenbergpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22776,149094,"CHE","National Inventory",2011,"Not Reported",37,"Moor nordoestlich Oberes Hoernli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22777,149095,"CHE","National Inventory",2011,"Not Reported",37,"Schluchhole","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22778,149096,"CHE","National Inventory",2011,"Not Reported",37,"Moor suedlich Moeser","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22779,149097,"CHE","National Inventory",2011,"Not Reported",37,"Moore hinder der Egg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22780,149098,"CHE","National Inventory",2011,"Not Reported",37,"Moor nordoestlich Faerrich am Bol","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22781,149099,"CHE","National Inventory",2011,"Not Reported",37,"Moor noerdlich Oberes Hoernli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22782,149100,"CHE","National Inventory",2011,"Not Reported",37,"Moor zw. Lombachalp und Teufengraben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22783,149101,"CHE","National Inventory",2011,"Not Reported",37,"Affeier/Pifal","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22784,149102,"CHE","National Inventory",2011,"Not Reported",37,"Moor oestlich Wissenbach/Gurnigel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22785,149103,"CHE","National Inventory",2011,"Not Reported",37,"Moore suedoestlich Faerrich am Bol","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22786,149104,"CHE","National Inventory",2011,"Not Reported",37,"Moor westlich Wissenbach/Gurnigel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22787,149105,"CHE","National Inventory",2011,"Not Reported",37,"Moor bei Lombachalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22788,149106,"CHE","National Inventory",2011,"Not Reported",37,"Zettenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22789,149107,"CHE","National Inventory",2011,"Not Reported",37,"Seelein bei der Maegisalp/Seemad","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22790,149108,"CHE","National Inventory",2011,"Not Reported",37,"Moor oberhalb Cholischwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22791,149109,"CHE","National Inventory",2011,"Not Reported",37,"Schalenberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22792,149110,"CHE","National Inventory",2011,"Not Reported",37,"Moore im Schoepfewald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22793,149111,"CHE","National Inventory",2011,"Not Reported",37,"Lischboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22794,149112,"CHE","National Inventory",2011,"Not Reported",37,"Rotmoos 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22795,149113,"CHE","National Inventory",2011,"Not Reported",37,"Heidsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22796,149114,"CHE","National Inventory",2011,"Not Reported",37,"Selenen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22797,149115,"CHE","National Inventory",2011,"Not Reported",37,"Feldmoos 2","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22798,149116,"CHE","National Inventory",2011,"Not Reported",37,"Sortel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22799,149117,"CHE","National Inventory",2011,"Not Reported",37,"Grossfischbaechen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22800,149118,"CHE","National Inventory",2011,"Not Reported",37,"Riederen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22801,149119,"CHE","National Inventory",2011,"Not Reported",37,"Moorwald Hinters Laeger","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22802,149120,"CHE","National Inventory",2011,"Not Reported",37,"In Miseren","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22803,149121,"CHE","National Inventory",2011,"Not Reported",37,"Schwaendlibachgraben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22804,149122,"CHE","National Inventory",2011,"Not Reported",37,"Hinters Laeger","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22805,149123,"CHE","National Inventory",2011,"Not Reported",37,"Moore oestlich Gemmenalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22806,149124,"CHE","National Inventory",2011,"Not Reported",37,"Tgiern Grond","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22807,149125,"CHE","National Inventory",2011,"Not Reported",37,"Duerrentaennli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22808,149126,"CHE","National Inventory",2011,"Not Reported",37,"Luegiboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22809,149127,"CHE","National Inventory",2011,"Not Reported",37,"Sporz Davains","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22810,149128,"CHE","National Inventory",2011,"Not Reported",37,"Muschenegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22811,149129,"CHE","National Inventory",2011,"Not Reported",37,"Turen/Chaltenbrunnen/Staeckliwaeldli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22812,149130,"CHE","National Inventory",2011,"Not Reported",37,"Moor oberhalb Burgfeldfluee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22813,149131,"CHE","National Inventory",2011,"Not Reported",37,"Alp Nadels","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22814,149132,"CHE","National Inventory",2011,"Not Reported",37,"Moor zwischen Floesch und Haelibach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22815,149133,"CHE","National Inventory",2011,"Not Reported",37,"Sewelimoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22816,149134,"CHE","National Inventory",2011,"Not Reported",37,"Caischavedra","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22817,149135,"CHE","National Inventory",2011,"Not Reported",37,"Ladengrat","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22818,149136,"CHE","National Inventory",2011,"Not Reported",37,"Rigeli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22819,149137,"CHE","National Inventory",2011,"Not Reported",37,"Moor im Unterholz/Waldegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22820,149139,"CHE","National Inventory",2011,"Not Reported",37,"Moore am Schwyberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22821,149140,"CHE","National Inventory",2011,"Not Reported",37,"Palius (Val Mutschnengia)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22822,149141,"CHE","National Inventory",2011,"Not Reported",37,"La Spielmannda/Untertierliberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22823,149142,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere a l'ouest de la Joux d'Alliere","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22824,149143,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere au Paquier dessus","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22825,149145,"CHE","National Inventory",2011,"Not Reported",37,"Pre Colard","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22826,149146,"CHE","National Inventory",2011,"Not Reported",37,"La Sagne du Sechey","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22827,149147,"CHE","National Inventory",2011,"Not Reported",37,"Les Gurles/Les Communs de Maules","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22828,149148,"CHE","National Inventory",2011,"Not Reported",37,"Tourbieres dans la Foret du Frachy","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22829,149149,"CHE","National Inventory",2011,"Not Reported",37,"Berg beim Goescheneralpsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22830,149150,"CHE","National Inventory",2011,"Not Reported",37,"Aegelsee-Moor auf dem Diemtigbergli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22831,149151,"CHE","National Inventory",2011,"Not Reported",37,"La Tourbiere d'Echarlens","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22832,149152,"CHE","National Inventory",2011,"Not Reported",37,"La Sagne au sud-ouest du Lieu","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22833,149153,"CHE","National Inventory",2011,"Not Reported",37,"Traejen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22834,149154,"CHE","National Inventory",2011,"Not Reported",37,"Les Mosses - Rosez","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22835,149155,"CHE","National Inventory",2011,"Not Reported",37,"Pontet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22836,149156,"CHE","National Inventory",2011,"Not Reported",37,"Moor nordoestlich Mettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22837,149157,"CHE","National Inventory",2011,"Not Reported",37,"Les Grands Marais","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22838,149158,"CHE","National Inventory",2011,"Not Reported",37,"Feldmoos 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22839,149159,"CHE","National Inventory",2011,"Not Reported",37,"Breitmoos 1","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22840,149160,"CHE","National Inventory",2011,"Not Reported",37,"Moor nordoestlich Hochraejen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22841,149161,"CHE","National Inventory",2011,"Not Reported",37,"Petit Sauvage","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22842,149162,"CHE","National Inventory",2011,"Not Reported",37,"La Mosse d'en Bas","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22843,149163,"CHE","National Inventory",2011,"Not Reported",37,"Les Sagnes du Sentier","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22844,149164,"CHE","National Inventory",2011,"Not Reported",37,"Les Bouleyres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22845,149165,"CHE","National Inventory",2011,"Not Reported",37,"Derriere la Cote, sud-est","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22846,149166,"CHE","National Inventory",2011,"Not Reported",37,"Moore und Seen bei Brustplaetz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22847,149167,"CHE","National Inventory",2011,"Not Reported",37,"Chuchifang","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22848,149168,"CHE","National Inventory",2011,"Not Reported",37,"Ufem Sand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22849,149169,"CHE","National Inventory",2011,"Not Reported",37,"Derriere la Cote, sud-ouest","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22850,149170,"CHE","National Inventory",2011,"Not Reported",37,"Les Tourbieres","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22851,149171,"CHE","National Inventory",2011,"Not Reported",37,"La Sagne du Campe","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22852,149172,"CHE","National Inventory",2011,"Not Reported",37,"Moor bei Aelbi Flue","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22853,149173,"CHE","National Inventory",2011,"Not Reported",37,"Moor beim Fysteren Graben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22854,149174,"CHE","National Inventory",2011,"Not Reported",37,"La Thomassette","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22855,149175,"CHE","National Inventory",2011,"Not Reported",37,"Bruchsee auf dem Jaunpass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22856,149176,"CHE","National Inventory",2011,"Not Reported",37,"Moor noerdlich Toffelsweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22857,149177,"CHE","National Inventory",2011,"Not Reported",37,"Station Wengernalp","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22858,149178,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere des Alpettes","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22859,149179,"CHE","National Inventory",2011,"Not Reported",37,"La Bursine","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22860,149180,"CHE","National Inventory",2011,"Not Reported",37,"Chaenelegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22861,149181,"CHE","National Inventory",2011,"Not Reported",37,"Sagne de Pre Rodet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22862,149182,"CHE","National Inventory",2011,"Not Reported",37,"Sagnes de la Burtigniere","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22863,149183,"CHE","National Inventory",2011,"Not Reported",37,"Niremont, Arete nord","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22864,149184,"CHE","National Inventory",2011,"Not Reported",37,"Sparemoos/Tots Maedli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22865,149185,"CHE","National Inventory",2011,"Not Reported",37,"Gros Mont","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22866,149186,"CHE","National Inventory",2011,"Not Reported",37,"Moore suedwestlich Tolmoos","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22867,149187,"CHE","National Inventory",2011,"Not Reported",37,"Bois du Carre","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22868,149188,"CHE","National Inventory",2011,"Not Reported",37,"Niremont, Arete ouest","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22869,149189,"CHE","National Inventory",2011,"Not Reported",37,"Cadagno di fuori","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22870,149190,"CHE","National Inventory",2011,"Not Reported",37,"Daelmoos Achseten","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22871,149191,"CHE","National Inventory",2011,"Not Reported",37,"Lac de Lussy","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22872,149192,"CHE","National Inventory",2011,"Not Reported",37,"Baerfel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22873,149193,"CHE","National Inventory",2011,"Not Reported",37,"Bois du Marchairuz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22874,149194,"CHE","National Inventory",2011,"Not Reported",37,"Petits Plats","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22875,149195,"CHE","National Inventory",2011,"Not Reported",37,"Lai Neir","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22876,149196,"CHE","National Inventory",2011,"Not Reported",37,"Bois des Cent Toises","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22877,149197,"CHE","National Inventory",2011,"Not Reported",37,"Pian Segno","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22878,149198,"CHE","National Inventory",2011,"Not Reported",37,"Pian Secco","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22879,149199,"CHE","National Inventory",2011,"Not Reported",37,"Paleis","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22880,149200,"CHE","National Inventory",2011,"Not Reported",37,"Frodalera","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22881,149201,"CHE","National Inventory",2011,"Not Reported",37,"Alp Flix","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22882,149202,"CHE","National Inventory",2011,"Not Reported",37,"Pe d'Munt/Prade","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22883,149203,"CHE","National Inventory",2011,"Not Reported",37,"Devin des Dailles","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22884,149204,"CHE","National Inventory",2011,"Not Reported",37,"Vall' Ambrosa","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22885,149205,"CHE","National Inventory",2011,"Not Reported",37,"Campra di la","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22886,149206,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere au sud-est de Fruence","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22887,149207,"CHE","National Inventory",2011,"Not Reported",37,"Understeinberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22888,149208,"CHE","National Inventory",2011,"Not Reported",37,"Saanenmoeser/Daelweid","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22889,149209,"CHE","National Inventory",2011,"Not Reported",37,"Choma Suot - Palued Chape","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22890,149210,"CHE","National Inventory",2011,"Not Reported",37,"Stazer Wald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22891,149211,"CHE","National Inventory",2011,"Not Reported",37,"Piano della Bolla","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22892,149212,"CHE","National Inventory",2011,"Not Reported",37,"Mottone di Garzonera","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22893,149213,"CHE","National Inventory",2011,"Not Reported",37,"Choma Sur","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22894,149214,"CHE","National Inventory",2011,"Not Reported",37,"Lej da Staz","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22895,149215,"CHE","National Inventory",2011,"Not Reported",37,"Creux du Croue","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22896,149216,"CHE","National Inventory",2011,"Not Reported",37,"Plaun da las Mujas","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22897,149217,"CHE","National Inventory",2011,"Not Reported",37,"Mauntschas","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22898,149218,"CHE","National Inventory",2011,"Not Reported",37,"Sass de la Golp (Lucomagno)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22899,149219,"CHE","National Inventory",2011,"Not Reported",37,"Bedrina","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22900,149220,"CHE","National Inventory",2011,"Not Reported",37,"Filfalle","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22901,149221,"CHE","National Inventory",2011,"Not Reported",37,"Marais Rouge","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22902,149222,"CHE","National Inventory",2011,"Not Reported",37,"Ruewlispass","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22903,149223,"CHE","National Inventory",2011,"Not Reported",37,"God Surlej","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22904,149224,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di Piana Selva","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22905,149225,"CHE","National Inventory",2011,"Not Reported",37,"Pian Casuleta","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22906,149226,"CHE","National Inventory",2011,"Not Reported",37,"Bosch de San Remo","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22907,149227,"CHE","National Inventory",2011,"Not Reported",37,"Riere la Givrine","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22908,149228,"CHE","National Inventory",2011,"Not Reported",37,"Vel (Gribbio)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22909,149229,"CHE","National Inventory",2011,"Not Reported",37,"Moor oberhalb Geilsbueel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22910,149230,"CHE","National Inventory",2011,"Not Reported",37,"Lagh Doss","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22911,149231,"CHE","National Inventory",2011,"Not Reported",37,"La Trelasse","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22912,149232,"CHE","National Inventory",2011,"Not Reported",37,"Suossa","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22913,149233,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere sous les Plans","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22914,149234,"CHE","National Inventory",2011,"Not Reported",37,"Moore suedoestlich Haslerberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22915,149235,"CHE","National Inventory",2011,"Not Reported",37,"Moore auf Betelberg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22916,149236,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere a l'est de la Lecherette","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22917,149237,"CHE","National Inventory",2011,"Not Reported",37,"Communs des Mosses, ouest","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22918,149238,"CHE","National Inventory",2011,"Not Reported",37,"Communs des Mosses, est","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22919,149239,"CHE","National Inventory",2011,"Not Reported",37,"Tourbiere de Pra Cornet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22920,149240,"CHE","National Inventory",2011,"Not Reported",37,"Passo del Maloja/Aira da la Palza","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22921,149241,"CHE","National Inventory",2011,"Not Reported",37,"Zwischen Malojapass und Val da Pila","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22922,149242,"CHE","National Inventory",2011,"Not Reported",37,"Col des Mosses","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22923,149243,"CHE","National Inventory",2011,"Not Reported",37,"Lauenensee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22924,149245,"CHE","National Inventory",2011,"Not Reported",37,"Plansena (Val da Camp)","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22925,149246,"CHE","National Inventory",2011,"Not Reported",37,"Aletschwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22926,149247,"CHE","National Inventory",2011,"Not Reported",37,"Bosch da la Furcela","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22927,149248,"CHE","National Inventory",2011,"Not Reported",37,"Flesch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22928,149249,"CHE","National Inventory",2011,"Not Reported",37,"Alpe di Sceng","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22929,149250,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di Pianazzora","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22930,149251,"CHE","National Inventory",2011,"Not Reported",37,"Piano sopra Visletto","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22931,149252,"CHE","National Inventory",2011,"Not Reported",37,"Pian di Scignan","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22932,149253,"CHE","National Inventory",2011,"Not Reported",37,"Simplonpass/Hopschusee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22933,149254,"CHE","National Inventory",2011,"Not Reported",37,"Boniger See","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22934,149255,"CHE","National Inventory",2011,"Not Reported",37,"Pian Segna","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22935,149256,"CHE","National Inventory",2011,"Not Reported",37,"La Maraiche de Plex","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22936,149257,"CHE","National Inventory",2011,"Not Reported",37,"Gola di Lago","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22937,149258,"CHE","National Inventory",2011,"Not Reported",37,"Gouille Verte","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22938,149259,"CHE","National Inventory",2011,"Not Reported",37,"Lac de Champex","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22939,149260,"CHE","National Inventory",2011,"Not Reported",37,"Erbagni","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22940,149261,"CHE","National Inventory",2011,"Not Reported",37,"Les Mosses de la Rogivue","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22941,149262,"CHE","National Inventory",2011,"Not Reported",37,"Les Tenasses","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22942,149263,"CHE","National Inventory",2011,"Not Reported",37,"Plattner Berga","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22943,149264,"CHE","National Inventory",2011,"Not Reported",37,"Rüwlisepass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22944,149265,"CHE","National Inventory",2011,"Not Reported",37,"Alp Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22945,149266,"CHE","National Inventory",2011,"Not Reported",37,"Filfalle","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22946,149267,"CHE","National Inventory",2011,"Not Reported",37,"Marais de Bercher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22947,149268,"CHE","National Inventory",2011,"Not Reported",37,"Cua Boussan","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22948,149269,"CHE","National Inventory",2011,"Not Reported",37,"Gletti / Hubelboda","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22949,149270,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di Piana Selva","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22950,149271,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di Paltano","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22951,149272,"CHE","National Inventory",2011,"Not Reported",37,"Fäng / Hinder der Egg / Göüch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22952,149273,"CHE","National Inventory",2011,"Not Reported",37,"Barscheinz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22953,149274,"CHE","National Inventory",2011,"Not Reported",37,"Addi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22954,149275,"CHE","National Inventory",2011,"Not Reported",37,"Carà-Foppa","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22955,149276,"CHE","National Inventory",2011,"Not Reported",37,"Vél (Gribbio)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22956,149277,"CHE","National Inventory",2011,"Not Reported",37,"Moore oberhalb Geilsbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22957,149278,"CHE","National Inventory",2011,"Not Reported",37,"Cò","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22958,149279,"CHE","National Inventory",2011,"Not Reported",37,"Büelberg / Würtnere","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22959,149280,"CHE","National Inventory",2011,"Not Reported",37,"Bosch de San Remo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22960,149281,"CHE","National Inventory",2011,"Not Reported",37,"Alpe Zaria","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22961,149282,"CHE","National Inventory",2011,"Not Reported",37,"Tgavretga","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22962,149283,"CHE","National Inventory",2011,"Not Reported",37,"Cuolmens","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22963,149284,"CHE","National Inventory",2011,"Not Reported",37,"Cheerweid / Ufem Lähe","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22964,149285,"CHE","National Inventory",2011,"Not Reported",37,"Lagh Doss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22965,149286,"CHE","National Inventory",2011,"Not Reported",37,"Chlusi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22966,149287,"CHE","National Inventory",2011,"Not Reported",37,"Spittelmatte","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22967,149288,"CHE","National Inventory",2011,"Not Reported",37,"Lochberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22968,149289,"CHE","National Inventory",2011,"Not Reported",37,"Mot Scalotta","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22969,149290,"CHE","National Inventory",2011,"Not Reported",37,"Jufer Alpa","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22970,149291,"CHE","National Inventory",2011,"Not Reported",37,"Tourbière sous les Plans - Les Tésailles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22971,149292,"CHE","National Inventory",2011,"Not Reported",37,"Am Eva dal Sett","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22972,149293,"CHE","National Inventory",2011,"Not Reported",37,"Moore westlich Hubel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22973,149294,"CHE","National Inventory",2011,"Not Reported",37,"Klöpflisberg Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22974,149295,"CHE","National Inventory",2011,"Not Reported",37,"Monts Chevreuils","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22975,149296,"CHE","National Inventory",2011,"Not Reported",37,"Verengo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22976,149297,"CHE","National Inventory",2011,"Not Reported",37,"Garti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22977,149298,"CHE","National Inventory",2011,"Not Reported",37,"Moore auf Betelberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22978,149299,"CHE","National Inventory",2011,"Not Reported",37,"Chalcheras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22979,149300,"CHE","National Inventory",2011,"Not Reported",37,"Moore südöstlich Haslerberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22980,149301,"CHE","National Inventory",2011,"Not Reported",37,"Alp Tgavretga","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22981,149302,"CHE","National Inventory",2011,"Not Reported",37,"Portweid Golderne","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22982,149303,"CHE","National Inventory",2011,"Not Reported",37,"Grydmeder, Chaslepalgg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22983,149304,"CHE","National Inventory",2011,"Not Reported",37,"Moor östlich Trütlisbergpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22984,149305,"CHE","National Inventory",2011,"Not Reported",37,"Communs des Mosses, est de la route","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22985,149306,"CHE","National Inventory",2011,"Not Reported",37,"Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22986,149307,"CHE","National Inventory",2011,"Not Reported",37,"Moore südwestlich Haslerberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22987,149308,"CHE","National Inventory",2011,"Not Reported",37,"Tourbière à l'ouest de la Lécherette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22988,149309,"CHE","National Inventory",2011,"Not Reported",37,"La Mossette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22989,149310,"CHE","National Inventory",2011,"Not Reported",37,"Sattel / Brüchi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22990,149311,"CHE","National Inventory",2011,"Not Reported",37,"Corne du Soere","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22991,149312,"CHE","National Inventory",2011,"Not Reported",37,"Col des Mosses","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22992,149313,"CHE","National Inventory",2011,"Not Reported",37,"Pöriswaldmedli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22993,149314,"CHE","National Inventory",2011,"Not Reported",37,"Trüthartsweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22994,149315,"CHE","National Inventory",2011,"Not Reported",37,"Rohr","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22995,149316,"CHE","National Inventory",2011,"Not Reported",37,"Muotta da Güvè / Chantunatsch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22996,149317,"CHE","National Inventory",2011,"Not Reported",37,"Uf de Schibene","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22997,149318,"CHE","National Inventory",2011,"Not Reported",37,"Anteinettes d'en Haut","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22998,149319,"CHE","National Inventory",2011,"Not Reported",37,"Güvè / Crasta","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +22999,149320,"CHE","National Inventory",2011,"Not Reported",37,"Ustigwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23000,149321,"CHE","National Inventory",2011,"Not Reported",37,"Chatzberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23001,149322,"CHE","National Inventory",2011,"Not Reported",37,"Schmidsfang / Satteleggbärgli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23002,149323,"CHE","National Inventory",2011,"Not Reported",37,"Rysch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23003,149324,"CHE","National Inventory",2011,"Not Reported",37,"Val Madris, Preda","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23004,149325,"CHE","National Inventory",2011,"Not Reported",37,"Val Fedoz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23005,149326,"CHE","National Inventory",2011,"Not Reported",37,"Tourbière de Pra Cornet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23006,149327,"CHE","National Inventory",2011,"Not Reported",37,"Stigelbergmad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23007,149328,"CHE","National Inventory",2011,"Not Reported",37,"Pâquier Mottier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23008,149329,"CHE","National Inventory",2011,"Not Reported",37,"Passo del Maloja / Aira da la Palza","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23009,149330,"CHE","National Inventory",2011,"Not Reported",37,"Pöris","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23010,149331,"CHE","National Inventory",2011,"Not Reported",37,"Fonds de l'Hongrin","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23011,149332,"CHE","National Inventory",2011,"Not Reported",37,"Grandes Charbonnières","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23012,149333,"CHE","National Inventory",2011,"Not Reported",37,"Falksmatte / Sodersegg / Dürri","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23013,149334,"CHE","National Inventory",2011,"Not Reported",37,"Sonna","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23014,149335,"CHE","National Inventory",2011,"Not Reported",37,"am ussere Saligrabe","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23015,149336,"CHE","National Inventory",2011,"Not Reported",37,"Tschärzis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23016,149337,"CHE","National Inventory",2011,"Not Reported",37,"Lauenensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23017,149338,"CHE","National Inventory",2011,"Not Reported",37,"La Muraz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23018,149339,"CHE","National Inventory",2011,"Not Reported",37,"Stieretungel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23019,149340,"CHE","National Inventory",2011,"Not Reported",37,"Gros Brasset","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23020,149341,"CHE","National Inventory",2011,"Not Reported",37,"Färrich","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23021,149342,"CHE","National Inventory",2011,"Not Reported",37,"Le Bucley","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23022,149343,"CHE","National Inventory",2011,"Not Reported",37,"Les Saviez","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23023,149344,"CHE","National Inventory",2011,"Not Reported",37,"Val Fex, Alp Suot","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23024,149345,"CHE","National Inventory",2011,"Not Reported",37,"Clos Montet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23025,149346,"CHE","National Inventory",2011,"Not Reported",37,"Plansena","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23026,149347,"CHE","National Inventory",2011,"Not Reported",37,"L'Aulagniez","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23027,149348,"CHE","National Inventory",2011,"Not Reported",37,"Rohr Gsteig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23028,149349,"CHE","National Inventory",2011,"Not Reported",37,"Munt da San Franzesch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23029,149350,"CHE","National Inventory",2011,"Not Reported",37,"Oxefeld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23030,149351,"CHE","National Inventory",2011,"Not Reported",37,"Zubenweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23031,149352,"CHE","National Inventory",2011,"Not Reported",37,"Planzalard","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23032,149353,"CHE","National Inventory",2011,"Not Reported",37,"Reusch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23033,149354,"CHE","National Inventory",2011,"Not Reported",37,"Les Moilles (VD)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23034,149355,"CHE","National Inventory",2011,"Not Reported",37,"Retaud","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23035,149356,"CHE","National Inventory",2011,"Not Reported",37,"Les Rouvenes","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23036,149357,"CHE","National Inventory",2011,"Not Reported",37,"Alpe di Sceng","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23037,149358,"CHE","National Inventory",2011,"Not Reported",37,"Larasèd","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23038,149359,"CHE","National Inventory",2011,"Not Reported",37,"Les Nicolets","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23039,149360,"CHE","National Inventory",2011,"Not Reported",37,"Les Preises","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23040,149361,"CHE","National Inventory",2011,"Not Reported",37,"Grand Bataillard","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23041,149362,"CHE","National Inventory",2011,"Not Reported",37,"Lanche di Iragna nord","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23042,149363,"CHE","National Inventory",2011,"Not Reported",37,"Lanche di Iragna sud","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23043,149364,"CHE","National Inventory",2011,"Not Reported",37,"Marais d'Ensex","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23044,149365,"CHE","National Inventory",2011,"Not Reported",37,"Alpe Corte Nuovo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23045,149366,"CHE","National Inventory",2011,"Not Reported",37,"Les Rigoles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23046,149367,"CHE","National Inventory",2011,"Not Reported",37,"Mutt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23047,149368,"CHE","National Inventory",2011,"Not Reported",37,"Palü Granda","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23048,149369,"CHE","National Inventory",2011,"Not Reported",37,"Les Verneys","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23049,149370,"CHE","National Inventory",2011,"Not Reported",37,"Ninda","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23050,149371,"CHE","National Inventory",2011,"Not Reported",37,"Boniger See","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23051,149372,"CHE","National Inventory",2011,"Not Reported",37,"Prés de Villette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23052,149373,"CHE","National Inventory",2011,"Not Reported",37,"Bieltini","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23053,149374,"CHE","National Inventory",2011,"Not Reported",37,"Poutafontana","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23054,149375,"CHE","National Inventory",2011,"Not Reported",37,"Lac de Morgins","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23055,149376,"CHE","National Inventory",2011,"Not Reported",37,"Vers le Marais","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23056,149377,"CHE","National Inventory",2011,"Not Reported",37,"Les Moilles (VS)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23057,149378,"CHE","National Inventory",2011,"Not Reported",37,"Bochasse","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23058,149379,"CHE","National Inventory",2011,"Not Reported",37,"Champoussin","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23059,149380,"CHE","National Inventory",2011,"Not Reported",37,"Ar du Tsan","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23060,149381,"CHE","National Inventory",2011,"Not Reported",37,"Marais d'Ardon et de Chamoson","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23061,149382,"CHE","National Inventory",2011,"Not Reported",37,"Pian Segna","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23062,149383,"CHE","National Inventory",2011,"Not Reported",37,"L'Echereuse","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23063,149384,"CHE","National Inventory",2011,"Not Reported",37,"Lanca Sant'Antonio","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23064,149385,"CHE","National Inventory",2011,"Not Reported",37,"Malcantone","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23065,149386,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Piano di Arbigo 2","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23066,149387,"CHE","National Inventory",2011,"Not Reported",37,"Piano di Arbigo 5","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23067,149388,"CHE","National Inventory",2011,"Not Reported",37,"Vigna Lunga-Trebbione","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23068,149389,"CHE","National Inventory",2011,"Not Reported",37,"Isoletta","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23069,149390,"CHE","National Inventory",2011,"Not Reported",37,"Barbescio","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23070,149391,"CHE","National Inventory",2011,"Not Reported",37,"Bograsso / Bolette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23071,149392,"CHE","National Inventory",2011,"Not Reported",37,"Lanche al Pizzante","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23072,149393,"CHE","National Inventory",2011,"Not Reported",37,"Canale Demanio","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23073,149394,"CHE","National Inventory",2011,"Not Reported",37,"Ciossa Antognini","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23074,149395,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Cugnoli Curti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23075,149396,"CHE","National Inventory",2011,"Not Reported",37,"Piattone-Lischedo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23076,149397,"CHE","National Inventory",2011,"Not Reported",37,"Delta della Maggia","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23077,149398,"CHE","National Inventory",2011,"Not Reported",37,"Monti di Medeglia est","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23078,149399,"CHE","National Inventory",2011,"Not Reported",37,"Monti di Medeglia ovest","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23079,149400,"CHE","National Inventory",2011,"Not Reported",37,"Vouasson","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23080,149401,"CHE","National Inventory",2011,"Not Reported",37,"Les Esserts","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23081,149402,"CHE","National Inventory",2011,"Not Reported",37,"Gola di Lago","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23082,149403,"CHE","National Inventory",2011,"Not Reported",37,"Chevillard","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23083,149404,"CHE","National Inventory",2011,"Not Reported",37,"Villette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23084,149405,"CHE","National Inventory",2011,"Not Reported",37,"Lac de Champex","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23085,149406,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di S. Martino","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23086,149407,"CHE","National Inventory",2011,"Not Reported",37,"Pian Casoro","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23087,149408,"CHE","National Inventory",2011,"Not Reported",37,"Pre Murin","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23088,149409,"CHE","National Inventory",2011,"Not Reported",37,"Molino","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23089,149410,"CHE","National Inventory",2011,"Not Reported",37,"Colombera","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23090,149411,"CHE","National Inventory",2011,"Not Reported",37,"Pra Coltello","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23091,149412,"CHE","National Inventory",2011,"Not Reported",37,"Lischetto Fossèe Seseglio","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23092,166445,"CHE","National Inventory",2011,"Not Reported",37,"Frodalera","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23093,166446,"CHE","National Inventory",2011,"Not Reported",37,"Alteweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23094,166447,"CHE","National Inventory",2011,"Not Reported",37,"Weierwisen / Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23095,166448,"CHE","National Inventory",2011,"Not Reported",37,"Ramser Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23096,166449,"CHE","National Inventory",2011,"Not Reported",37,"Schaarenwis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23097,166450,"CHE","National Inventory",2011,"Not Reported",37,"Espen Riet / Ermatinger Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23098,166451,"CHE","National Inventory",2011,"Not Reported",37,"Espi / Hölzli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23099,166452,"CHE","National Inventory",2011,"Not Reported",37,"Espen Riet bei Ziegelhof","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23100,166453,"CHE","National Inventory",2011,"Not Reported",37,"Etzwiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23101,166454,"CHE","National Inventory",2011,"Not Reported",37,"Eschenzer Horn","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23102,166455,"CHE","National Inventory",2011,"Not Reported",37,"Truttikerried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23103,166456,"CHE","National Inventory",2011,"Not Reported",37,"Neuweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23104,166457,"CHE","National Inventory",2011,"Not Reported",37,"Husemersee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23105,166458,"CHE","National Inventory",2011,"Not Reported",37,"Oerlinger Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23106,166459,"CHE","National Inventory",2011,"Not Reported",37,"Dachsenhuser Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23107,166460,"CHE","National Inventory",2011,"Not Reported",37,"Barchetsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23108,166461,"CHE","National Inventory",2011,"Not Reported",37,"Bommer Weier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23109,166462,"CHE","National Inventory",2011,"Not Reported",37,"Gippinger Grien","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23110,166463,"CHE","National Inventory",2011,"Not Reported",37,"Verlandung im Klingnauer Stausee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23111,166464,"CHE","National Inventory",2011,"Not Reported",37,"Gurisee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23112,166465,"CHE","National Inventory",2011,"Not Reported",37,"Luxburger Bucht","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23113,166466,"CHE","National Inventory",2011,"Not Reported",37,"Dürrenbiel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23114,166467,"CHE","National Inventory",2011,"Not Reported",37,"Baldisriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23115,166468,"CHE","National Inventory",2011,"Not Reported",37,"Weinmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23116,166469,"CHE","National Inventory",2011,"Not Reported",37,"Friltschener Riet / Märwiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23117,166470,"CHE","National Inventory",2011,"Not Reported",37,"Mettlen Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23118,166471,"CHE","National Inventory",2011,"Not Reported",37,"Hudelmoos (SG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23119,166472,"CHE","National Inventory",2011,"Not Reported",37,"Überg Mas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23120,166473,"CHE","National Inventory",2011,"Not Reported",37,"Neerer See","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23121,166474,"CHE","National Inventory",2011,"Not Reported",37,"Neeracher Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23122,166475,"CHE","National Inventory",2011,"Not Reported",37,"Warpeltal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23123,166476,"CHE","National Inventory",2011,"Not Reported",37,"Altenrhein","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23124,166477,"CHE","National Inventory",2011,"Not Reported",37,"Wilener Moos / Hauptwiler Weiher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23125,166478,"CHE","National Inventory",2011,"Not Reported",37,"Gärtensberg / Oberholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23126,166479,"CHE","National Inventory",2011,"Not Reported",37,"Steinmaurer Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23127,166480,"CHE","National Inventory",2011,"Not Reported",37,"Winkler Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23128,166481,"CHE","National Inventory",2011,"Not Reported",37,"Buriet / Buechsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23129,166482,"CHE","National Inventory",2011,"Not Reported",37,"Huebermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23130,166483,"CHE","National Inventory",2011,"Not Reported",37,"Mettmenhasler See","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23131,166484,"CHE","National Inventory",2011,"Not Reported",37,"Zuzwiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23132,166485,"CHE","National Inventory",2011,"Not Reported",37,"Klotener Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23133,166486,"CHE","National Inventory",2011,"Not Reported",37,"Goldenes Tor / Rüti Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23134,166487,"CHE","National Inventory",2011,"Not Reported",37,"Schlosswinkel / Peterli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23135,166488,"CHE","National Inventory",2011,"Not Reported",37,"Erztal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23136,166489,"CHE","National Inventory",2011,"Not Reported",37,"Neuf Etang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23137,166490,"CHE","National Inventory",2011,"Not Reported",37,"Boppelser Weid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23138,166491,"CHE","National Inventory",2011,"Not Reported",37,"Lenggenwiler Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23139,166492,"CHE","National Inventory",2011,"Not Reported",37,"Gstöck / Ifang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23140,166493,"CHE","National Inventory",2011,"Not Reported",37,"Hagelriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23141,166494,"CHE","National Inventory",2011,"Not Reported",37,"Eigental-Riede","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23142,166495,"CHE","National Inventory",2011,"Not Reported",37,"Schlossweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23143,166496,"CHE","National Inventory",2011,"Not Reported",37,"Bichelsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23144,166497,"CHE","National Inventory",2011,"Not Reported",37,"Ägelsee (TG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23145,166498,"CHE","National Inventory",2011,"Not Reported",37,"Mooswangen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23146,166499,"CHE","National Inventory",2011,"Not Reported",37,"Andwiler Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23147,166500,"CHE","National Inventory",2011,"Not Reported",37,"Rüeggetschwiler Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23148,166501,"CHE","National Inventory",2011,"Not Reported",37,"Awiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23149,166502,"CHE","National Inventory",2011,"Not Reported",37,"Chatzensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23150,166503,"CHE","National Inventory",2011,"Not Reported",37,"Chräenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23151,166504,"CHE","National Inventory",2011,"Not Reported",37,"Allmend beim Chatzensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23152,166505,"CHE","National Inventory",2011,"Not Reported",37,"Rod","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23153,166506,"CHE","National Inventory",2011,"Not Reported",37,"Hänsiried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23154,166507,"CHE","National Inventory",2011,"Not Reported",37,"Langenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23155,166508,"CHE","National Inventory",2011,"Not Reported",37,"Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23156,166509,"CHE","National Inventory",2011,"Not Reported",37,"Moos Schönenhof","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23157,166510,"CHE","National Inventory",2011,"Not Reported",37,"Örmis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23158,166511,"CHE","National Inventory",2011,"Not Reported",37,"Madetswiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23159,166512,"CHE","National Inventory",2011,"Not Reported",37,"Schnäggenwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23160,166513,"CHE","National Inventory",2011,"Not Reported",37,"Wollwisli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23161,166514,"CHE","National Inventory",2011,"Not Reported",37,"Nördli Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23162,166516,"CHE","National Inventory",2011,"Not Reported",37,"Höchstern","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23163,166517,"CHE","National Inventory",2011,"Not Reported",37,"Ried Reinisbachtal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23164,166518,"CHE","National Inventory",2011,"Not Reported",37,"Girenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23165,166519,"CHE","National Inventory",2011,"Not Reported",37,"Egelsee / Seematten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23166,166520,"CHE","National Inventory",2011,"Not Reported",37,"Wildert","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23167,166521,"CHE","National Inventory",2011,"Not Reported",37,"Moosanger","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23168,166522,"CHE","National Inventory",2011,"Not Reported",37,"Russiker Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23169,166523,"CHE","National Inventory",2011,"Not Reported",37,"Chrutzelried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23170,166524,"CHE","National Inventory",2011,"Not Reported",37,"Vordersenis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23171,166525,"CHE","National Inventory",2011,"Not Reported",37,"Böschen / Suelen / Stritgfänn","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23172,166526,"CHE","National Inventory",2011,"Not Reported",37,"Hofguetmoor","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23173,166527,"CHE","National Inventory",2011,"Not Reported",37,"Tote Reuss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23174,166528,"CHE","National Inventory",2011,"Not Reported",37,"Riet bei Ganterschwil","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23175,166529,"CHE","National Inventory",2011,"Not Reported",37,"Rütermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23176,166530,"CHE","National Inventory",2011,"Not Reported",37,"Hinterbitzi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23177,166531,"CHE","National Inventory",2011,"Not Reported",37,"Hoperen / Hirzerenweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23178,166532,"CHE","National Inventory",2011,"Not Reported",37,"Hueb","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23179,166533,"CHE","National Inventory",2011,"Not Reported",37,"Giwitzenried / Bächliried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23180,166534,"CHE","National Inventory",2011,"Not Reported",37,"Glattenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23181,166535,"CHE","National Inventory",2011,"Not Reported",37,"Storen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23182,166536,"CHE","National Inventory",2011,"Not Reported",37,"Fischbacher Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23183,166537,"CHE","National Inventory",2011,"Not Reported",37,"Robenhauserriet / Pfäffikersee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23184,166538,"CHE","National Inventory",2011,"Not Reported",37,"Bannriet Nordost","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23185,166539,"CHE","National Inventory",2011,"Not Reported",37,"Langmoos / Foren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23186,166540,"CHE","National Inventory",2011,"Not Reported",37,"Bannriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23187,166541,"CHE","National Inventory",2011,"Not Reported",37,"Gross Moos / Rietlerwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23188,166542,"CHE","National Inventory",2011,"Not Reported",37,"Hofschür","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23189,166543,"CHE","National Inventory",2011,"Not Reported",37,"Zisetsriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23190,166544,"CHE","National Inventory",2011,"Not Reported",37,"Grabenriet / Grossriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23191,166545,"CHE","National Inventory",2011,"Not Reported",37,"Pfaffenbrunnen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23192,166546,"CHE","National Inventory",2011,"Not Reported",37,"Spitzmäder","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23193,166547,"CHE","National Inventory",2011,"Not Reported",37,"Hofhalden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23194,166548,"CHE","National Inventory",2011,"Not Reported",37,"Höch Hirschberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23195,166549,"CHE","National Inventory",2011,"Not Reported",37,"Hüttenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23196,166550,"CHE","National Inventory",2011,"Not Reported",37,"Näppenacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23197,166551,"CHE","National Inventory",2011,"Not Reported",37,"Sackriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23198,166552,"CHE","National Inventory",2011,"Not Reported",37,"Seewisen / Hostig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23199,166553,"CHE","National Inventory",2011,"Not Reported",37,"Bergholzriet / Ankenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23200,166554,"CHE","National Inventory",2011,"Not Reported",37,"Beerimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23201,166555,"CHE","National Inventory",2011,"Not Reported",37,"Gontenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23202,166556,"CHE","National Inventory",2011,"Not Reported",37,"Rottenschwilermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23203,166557,"CHE","National Inventory",2011,"Not Reported",37,"Seewadel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23204,166558,"CHE","National Inventory",2011,"Not Reported",37,"Fronwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23205,166559,"CHE","National Inventory",2011,"Not Reported",37,"Fischenthaler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23206,166560,"CHE","National Inventory",2011,"Not Reported",37,"Wappenswiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23207,166561,"CHE","National Inventory",2011,"Not Reported",37,"Hüttenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23208,166562,"CHE","National Inventory",2011,"Not Reported",37,"Boniswiler-Seenger Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23209,166563,"CHE","National Inventory",2011,"Not Reported",37,"Seelisberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23210,166564,"CHE","National Inventory",2011,"Not Reported",37,"Stille Reuss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23211,166565,"CHE","National Inventory",2011,"Not Reported",37,"Schnäggenmatten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23212,166566,"CHE","National Inventory",2011,"Not Reported",37,"Hütten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23213,166567,"CHE","National Inventory",2011,"Not Reported",37,"Östl. Haumösli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23214,166568,"CHE","National Inventory",2011,"Not Reported",37,"Rottenschwiler Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23215,166569,"CHE","National Inventory",2011,"Not Reported",37,"Schachen Oberlunkhofen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23216,166570,"CHE","National Inventory",2011,"Not Reported",37,"Gschwend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23217,166571,"CHE","National Inventory",2011,"Not Reported",37,"Moor nordwestlich Gisleren / Schönauwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23218,166572,"CHE","National Inventory",2011,"Not Reported",37,"Wetziker Riet / Oberhöfler Riet / Schwändi / Hiwiler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23219,166573,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Guldenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23220,166574,"CHE","National Inventory",2011,"Not Reported",37,"Egg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23221,166575,"CHE","National Inventory",2011,"Not Reported",37,"Ambitzgi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23222,166576,"CHE","National Inventory",2011,"Not Reported",37,"Löchli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23223,166577,"CHE","National Inventory",2011,"Not Reported",37,"Obersee Althäusern","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23224,166578,"CHE","National Inventory",2011,"Not Reported",37,"Breitmoos (BE)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23225,166579,"CHE","National Inventory",2011,"Not Reported",37,"Unter-Schlatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23226,166580,"CHE","National Inventory",2011,"Not Reported",37,"Stillert","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23227,166581,"CHE","National Inventory",2011,"Not Reported",37,"Untere Fischeren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23228,166582,"CHE","National Inventory",2011,"Not Reported",37,"Waldriede am Pfannenstiel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23229,166583,"CHE","National Inventory",2011,"Not Reported",37,"Aristauer Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23230,166584,"CHE","National Inventory",2011,"Not Reported",37,"Vordere Wartegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23231,166585,"CHE","National Inventory",2011,"Not Reported",37,"Forenmösli / Burketwald / Paradisli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23232,166586,"CHE","National Inventory",2011,"Not Reported",37,"Freecht","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23233,166587,"CHE","National Inventory",2011,"Not Reported",37,"Rüssmatten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23234,166588,"CHE","National Inventory",2011,"Not Reported",37,"Rossweid (AI)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23235,166589,"CHE","National Inventory",2011,"Not Reported",37,"Bleiken","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23236,166590,"CHE","National Inventory",2011,"Not Reported",37,"Burket Wald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23237,166591,"CHE","National Inventory",2011,"Not Reported",37,"Salomonstempel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23238,166592,"CHE","National Inventory",2011,"Not Reported",37,"Seematten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23239,166593,"CHE","National Inventory",2011,"Not Reported",37,"Dos le Cras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23240,166594,"CHE","National Inventory",2011,"Not Reported",37,"Ober Bad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23241,166595,"CHE","National Inventory",2011,"Not Reported",37,"La Tourbière des Enfers","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23242,166596,"CHE","National Inventory",2011,"Not Reported",37,"Burenholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23243,166597,"CHE","National Inventory",2011,"Not Reported",37,"Langnauer Berg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23244,166598,"CHE","National Inventory",2011,"Not Reported",37,"Bislikerhau-Riede","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23245,166599,"CHE","National Inventory",2011,"Not Reported",37,"Moore zwischen Alp Stöck und Gschwend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23246,166600,"CHE","National Inventory",2011,"Not Reported",37,"Gattikerweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23247,166601,"CHE","National Inventory",2011,"Not Reported",37,"Bergmeilen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23248,166602,"CHE","National Inventory",2011,"Not Reported",37,"Gmeimatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23249,166603,"CHE","National Inventory",2011,"Not Reported",37,"Plain de Saigne","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23250,166604,"CHE","National Inventory",2011,"Not Reported",37,"Potersalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23251,166605,"CHE","National Inventory",2011,"Not Reported",37,"Bibelaas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23252,166606,"CHE","National Inventory",2011,"Not Reported",37,"Itziker Riet / Reitbacher Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23253,166607,"CHE","National Inventory",2011,"Not Reported",37,"Chellen / Allmeindswald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23254,166608,"CHE","National Inventory",2011,"Not Reported",37,"Ottenbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23255,166609,"CHE","National Inventory",2011,"Not Reported",37,"Sibeneichen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23256,166610,"CHE","National Inventory",2011,"Not Reported",37,"Bodenwis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23257,166611,"CHE","National Inventory",2011,"Not Reported",37,"Laufenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23258,166612,"CHE","National Inventory",2011,"Not Reported",37,"Rickenbacher Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23259,166613,"CHE","National Inventory",2011,"Not Reported",37,"Südlich Seehüsli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23260,166614,"CHE","National Inventory",2011,"Not Reported",37,"südöstlich Niderlaad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23261,166615,"CHE","National Inventory",2011,"Not Reported",37,"Langmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23262,166616,"CHE","National Inventory",2011,"Not Reported",37,"Bergli-Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23263,166617,"CHE","National Inventory",2011,"Not Reported",37,"Adletshuser Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23264,166618,"CHE","National Inventory",2011,"Not Reported",37,"Hell","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23265,166619,"CHE","National Inventory",2011,"Not Reported",37,"Unterloch / Grundlosen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23266,166620,"CHE","National Inventory",2011,"Not Reported",37,"Ruchweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23267,166621,"CHE","National Inventory",2011,"Not Reported",37,"Cholwald Schwägalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23268,166622,"CHE","National Inventory",2011,"Not Reported",37,"Lunnergrien","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23269,166623,"CHE","National Inventory",2011,"Not Reported",37,"Schorengrindel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23270,166624,"CHE","National Inventory",2011,"Not Reported",37,"Stumpenhölzlimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23271,166625,"CHE","National Inventory",2011,"Not Reported",37,"nordöstlich Reisenbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23272,166626,"CHE","National Inventory",2011,"Not Reported",37,"Lutiker Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23273,166627,"CHE","National Inventory",2011,"Not Reported",37,"Riede im Jonental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23274,166628,"CHE","National Inventory",2011,"Not Reported",37,"Moore auf dem Rickenpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23275,166629,"CHE","National Inventory",2011,"Not Reported",37,"Sennweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23276,166630,"CHE","National Inventory",2011,"Not Reported",37,"Hexengraben","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23277,166631,"CHE","National Inventory",2011,"Not Reported",37,"Hüsliriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23278,166632,"CHE","National Inventory",2011,"Not Reported",37,"Les Embreux","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23279,166633,"CHE","National Inventory",2011,"Not Reported",37,"Moore bei Steig und Schartegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23280,166634,"CHE","National Inventory",2011,"Not Reported",37,"Gmeindrüti-Ried / Moosried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23281,166635,"CHE","National Inventory",2011,"Not Reported",37,"Unter Hüttenbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23282,166636,"CHE","National Inventory",2011,"Not Reported",37,"Kämmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23283,166637,"CHE","National Inventory",2011,"Not Reported",37,"Schnabellücke","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23284,166638,"CHE","National Inventory",2011,"Not Reported",37,"Chlosterwald-Moore / Ampferenbödeli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23285,166639,"CHE","National Inventory",2011,"Not Reported",37,"Moore im Trämelloch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23286,166640,"CHE","National Inventory",2011,"Not Reported",37,"Mattliriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23287,166641,"CHE","National Inventory",2011,"Not Reported",37,"östlich Hinter Schümberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23288,166642,"CHE","National Inventory",2011,"Not Reported",37,"Ütziker Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23289,166643,"CHE","National Inventory",2011,"Not Reported",37,"Le Droit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23290,166644,"CHE","National Inventory",2011,"Not Reported",37,"Egelsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23291,166645,"CHE","National Inventory",2011,"Not Reported",37,"Hüttenbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23292,166646,"CHE","National Inventory",2011,"Not Reported",37,"Grossweier","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23293,166647,"CHE","National Inventory",2011,"Not Reported",37,"Auen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23294,166648,"CHE","National Inventory",2011,"Not Reported",37,"Seeweidsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23295,166649,"CHE","National Inventory",2011,"Not Reported",37,"Eggweid auf dem Ricken","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23296,166650,"CHE","National Inventory",2011,"Not Reported",37,"Mösli / Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23297,166651,"CHE","National Inventory",2011,"Not Reported",37,"Lunnerallmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23298,166653,"CHE","National Inventory",2011,"Not Reported",37,"Turbenried im Rütiwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23299,166654,"CHE","National Inventory",2011,"Not Reported",37,"Müslen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23300,166655,"CHE","National Inventory",2011,"Not Reported",37,"Grosswisli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23301,166656,"CHE","National Inventory",2011,"Not Reported",37,"Les Royes","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23302,166657,"CHE","National Inventory",2011,"Not Reported",37,"Altmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23303,166658,"CHE","National Inventory",2011,"Not Reported",37,"Am Ausee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23304,166659,"CHE","National Inventory",2011,"Not Reported",37,"Tüfmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23305,166660,"CHE","National Inventory",2011,"Not Reported",37,"Chrutzelen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23306,166661,"CHE","National Inventory",2011,"Not Reported",37,"Chamm","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23307,166662,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Au","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23308,166663,"CHE","National Inventory",2011,"Not Reported",37,"Hagnauer Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23309,166664,"CHE","National Inventory",2011,"Not Reported",37,"Gros Bois Derrière","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23310,166665,"CHE","National Inventory",2011,"Not Reported",37,"Saignes des Fondrais","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23311,166666,"CHE","National Inventory",2011,"Not Reported",37,"Galgenmad / Schribersmad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23312,166667,"CHE","National Inventory",2011,"Not Reported",37,"Meilacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23313,166668,"CHE","National Inventory",2011,"Not Reported",37,"Rüss-Spitz / Wannhüseren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23314,166669,"CHE","National Inventory",2011,"Not Reported",37,"Usser Wald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23315,166670,"CHE","National Inventory",2011,"Not Reported",37,"Etang de la Gruère","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23316,166671,"CHE","National Inventory",2011,"Not Reported",37,"Schattenhalbriet / Zilmüslen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23317,166672,"CHE","National Inventory",2011,"Not Reported",37,"Grindel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23318,166673,"CHE","National Inventory",2011,"Not Reported",37,"Gruen / Neuhüttli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23319,166674,"CHE","National Inventory",2011,"Not Reported",37,"Tüfiried / Katzentobel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23320,166675,"CHE","National Inventory",2011,"Not Reported",37,"Ägelsee (ZH)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23321,166676,"CHE","National Inventory",2011,"Not Reported",37,"Hinterschluchen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23322,166677,"CHE","National Inventory",2011,"Not Reported",37,"Grindelmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23323,166678,"CHE","National Inventory",2011,"Not Reported",37,"Feldbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23324,166679,"CHE","National Inventory",2011,"Not Reported",37,"Schoren Schachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23325,166680,"CHE","National Inventory",2011,"Not Reported",37,"Brüggen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23326,166681,"CHE","National Inventory",2011,"Not Reported",37,"Joner Wald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23327,166682,"CHE","National Inventory",2011,"Not Reported",37,"Johannisberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23328,166683,"CHE","National Inventory",2011,"Not Reported",37,"Rorholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23329,166684,"CHE","National Inventory",2011,"Not Reported",37,"Hagenholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23330,166685,"CHE","National Inventory",2011,"Not Reported",37,"Schwellbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23331,166686,"CHE","National Inventory",2011,"Not Reported",37,"Friessen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23332,166687,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage du Droit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23333,166688,"CHE","National Inventory",2011,"Not Reported",37,"nordöstlich Chüeboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23334,166689,"CHE","National Inventory",2011,"Not Reported",37,"Arbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23335,166690,"CHE","National Inventory",2011,"Not Reported",37,"südlich Rüeggenschlee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23336,166691,"CHE","National Inventory",2011,"Not Reported",37,"Feldmoos (BE)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23337,166692,"CHE","National Inventory",2011,"Not Reported",37,"Chlosterwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23338,166693,"CHE","National Inventory",2011,"Not Reported",37,"Chrutzelenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23339,166694,"CHE","National Inventory",2011,"Not Reported",37,"Erlen (SZ)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23340,166695,"CHE","National Inventory",2011,"Not Reported",37,"Streuweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23341,166696,"CHE","National Inventory",2011,"Not Reported",37,"Joner Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23342,166697,"CHE","National Inventory",2011,"Not Reported",37,"Östlich Ändenholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23343,166698,"CHE","National Inventory",2011,"Not Reported",37,"Risipass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23344,166699,"CHE","National Inventory",2011,"Not Reported",37,"Geeristegried / Spitzenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23345,166700,"CHE","National Inventory",2011,"Not Reported",37,"Busskircher Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23346,166701,"CHE","National Inventory",2011,"Not Reported",37,"Schmerikoner Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23347,166702,"CHE","National Inventory",2011,"Not Reported",37,"Moos südlich Grünholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23348,166703,"CHE","National Inventory",2011,"Not Reported",37,"Sennhus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23349,166704,"CHE","National Inventory",2011,"Not Reported",37,"Wurmsbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23350,166705,"CHE","National Inventory",2011,"Not Reported",37,"Benkner-, Burger- und Kaltbrunner Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23351,166706,"CHE","National Inventory",2011,"Not Reported",37,"Schneit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23352,166707,"CHE","National Inventory",2011,"Not Reported",37,"Ägertenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23353,166708,"CHE","National Inventory",2011,"Not Reported",37,"Frauenwinkel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23354,166709,"CHE","National Inventory",2011,"Not Reported",37,"Häglimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23355,166710,"CHE","National Inventory",2011,"Not Reported",37,"Seezopf / Seematt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23356,166711,"CHE","National Inventory",2011,"Not Reported",37,"Oberhag / Müselen / Langriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23357,166712,"CHE","National Inventory",2011,"Not Reported",37,"Tanzboden-Guetental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23358,166713,"CHE","National Inventory",2011,"Not Reported",37,"Dreihütten / Gamplüt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23359,166714,"CHE","National Inventory",2011,"Not Reported",37,"Bätzimatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23360,166715,"CHE","National Inventory",2011,"Not Reported",37,"Tourbières de Chanteraine","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23361,166716,"CHE","National Inventory",2011,"Not Reported",37,"Gräppelen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23362,166717,"CHE","National Inventory",2011,"Not Reported",37,"Ijental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23363,166718,"CHE","National Inventory",2011,"Not Reported",37,"Frauental III","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23364,166719,"CHE","National Inventory",2011,"Not Reported",37,"Rüschenzopf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23365,166720,"CHE","National Inventory",2011,"Not Reported",37,"Rechbergmoosbachriede","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23366,168281,"CHE","National Inventory",2011,"Not Reported",37,"Chaltenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23367,168282,"CHE","National Inventory",2011,"Not Reported",37,"Nuoler Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23368,168283,"CHE","National Inventory",2011,"Not Reported",37,"Uffikoner Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23369,168284,"CHE","National Inventory",2011,"Not Reported",37,"Moor westlich Unterdorf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23370,168285,"CHE","National Inventory",2011,"Not Reported",37,"Wisenfurt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23371,168286,"CHE","National Inventory",2011,"Not Reported",37,"Langacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23372,168287,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Benkner Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23373,168288,"CHE","National Inventory",2011,"Not Reported",37,"Hinterbergried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23374,168289,"CHE","National Inventory",2011,"Not Reported",37,"Zimbel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23375,168290,"CHE","National Inventory",2011,"Not Reported",37,"Bodmen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23376,168291,"CHE","National Inventory",2011,"Not Reported",37,"Sarbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23377,168292,"CHE","National Inventory",2011,"Not Reported",37,"Munzenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23378,168293,"CHE","National Inventory",2011,"Not Reported",37,"Heiligchrüz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23379,168294,"CHE","National Inventory",2011,"Not Reported",37,"Gubelried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23380,168295,"CHE","National Inventory",2011,"Not Reported",37,"Au / Hinterlaad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23381,168296,"CHE","National Inventory",2011,"Not Reported",37,"Oberschwelli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23382,168297,"CHE","National Inventory",2011,"Not Reported",37,"Sagenhölzliriede","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23383,168298,"CHE","National Inventory",2011,"Not Reported",37,"Espel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23384,168299,"CHE","National Inventory",2011,"Not Reported",37,"Goldach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23385,168300,"CHE","National Inventory",2011,"Not Reported",37,"Loch (SG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23386,168301,"CHE","National Inventory",2011,"Not Reported",37,"Weberzopf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23387,168302,"CHE","National Inventory",2011,"Not Reported",37,"Mülibachried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23388,168303,"CHE","National Inventory",2011,"Not Reported",37,"Salegg / Chaltenbach / Rohr","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23389,168304,"CHE","National Inventory",2011,"Not Reported",37,"Chälenhof","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23390,168305,"CHE","National Inventory",2011,"Not Reported",37,"Schwendiseen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23391,168306,"CHE","National Inventory",2011,"Not Reported",37,"Itlimoosweiher / Schöni","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23392,168307,"CHE","National Inventory",2011,"Not Reported",37,"Älpli / Eggenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23393,168308,"CHE","National Inventory",2011,"Not Reported",37,"Muserholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23394,168309,"CHE","National Inventory",2011,"Not Reported",37,"Hüttner Seeli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23395,168310,"CHE","National Inventory",2011,"Not Reported",37,"Choller / Sumpf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23396,168311,"CHE","National Inventory",2011,"Not Reported",37,"Hirzenbäder / Sommerweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23397,168312,"CHE","National Inventory",2011,"Not Reported",37,"Teuffenrohr / Stocklerriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23398,168313,"CHE","National Inventory",2011,"Not Reported",37,"Etzelweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23399,168314,"CHE","National Inventory",2011,"Not Reported",37,"Schärsboden-Moor","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23400,168315,"CHE","National Inventory",2011,"Not Reported",37,"Altstofel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23401,168316,"CHE","National Inventory",2011,"Not Reported",37,"Muserholz / Tännlimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23402,168317,"CHE","National Inventory",2011,"Not Reported",37,"Ronfeld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23403,168318,"CHE","National Inventory",2011,"Not Reported",37,"Tourbières de la Chaux d'Abel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23404,168319,"CHE","National Inventory",2011,"Not Reported",37,"Moor westlich Etzel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23405,168320,"CHE","National Inventory",2011,"Not Reported",37,"Schönenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23406,168321,"CHE","National Inventory",2011,"Not Reported",37,"Wauwilermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23407,168322,"CHE","National Inventory",2011,"Not Reported",37,"Altschenchopf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23408,168323,"CHE","National Inventory",2011,"Not Reported",37,"Hagimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23409,168324,"CHE","National Inventory",2011,"Not Reported",37,"Twerfallen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23410,168325,"CHE","National Inventory",2011,"Not Reported",37,"Zällmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23411,168326,"CHE","National Inventory",2011,"Not Reported",37,"Gastermatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23412,168327,"CHE","National Inventory",2011,"Not Reported",37,"Niderriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23413,168328,"CHE","National Inventory",2011,"Not Reported",37,"Dersbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23414,168329,"CHE","National Inventory",2011,"Not Reported",37,"Neugrundmoor","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23415,168330,"CHE","National Inventory",2011,"Not Reported",37,"Obermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23416,168331,"CHE","National Inventory",2011,"Not Reported",37,"Risiwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23417,168332,"CHE","National Inventory",2011,"Not Reported",37,"Schwantenau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23418,168333,"CHE","National Inventory",2011,"Not Reported",37,"Roblosen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23419,168334,"CHE","National Inventory",2011,"Not Reported",37,"Juchmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23420,168335,"CHE","National Inventory",2011,"Not Reported",37,"Schindellegi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23421,168336,"CHE","National Inventory",2011,"Not Reported",37,"Witi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23422,168337,"CHE","National Inventory",2011,"Not Reported",37,"Ängiried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23423,168338,"CHE","National Inventory",2011,"Not Reported",37,"Chlausenchappeli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23424,168339,"CHE","National Inventory",2011,"Not Reported",37,"Schlänggli-Biberbrugg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23425,168340,"CHE","National Inventory",2011,"Not Reported",37,"Höll","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23426,168341,"CHE","National Inventory",2011,"Not Reported",37,"Breitried (ZG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23427,168342,"CHE","National Inventory",2011,"Not Reported",37,"Nöchen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23428,168343,"CHE","National Inventory",2011,"Not Reported",37,"Zigermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23429,168344,"CHE","National Inventory",2011,"Not Reported",37,"Wissenbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23430,168345,"CHE","National Inventory",2011,"Not Reported",37,"Sulzel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23431,168346,"CHE","National Inventory",2011,"Not Reported",37,"Golperen / Girenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23432,168347,"CHE","National Inventory",2011,"Not Reported",37,"Hessenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23433,168348,"CHE","National Inventory",2011,"Not Reported",37,"Giregg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23434,168349,"CHE","National Inventory",2011,"Not Reported",37,"Hunntal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23435,168350,"CHE","National Inventory",2011,"Not Reported",37,"Chrottenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23436,168351,"CHE","National Inventory",2011,"Not Reported",37,"Lachen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23437,168352,"CHE","National Inventory",2011,"Not Reported",37,"Altmatt / Ägeriried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23438,168353,"CHE","National Inventory",2011,"Not Reported",37,"Alte Zihl","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23439,168354,"CHE","National Inventory",2011,"Not Reported",37,"Brunnen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23440,168355,"CHE","National Inventory",2011,"Not Reported",37,"Brämenegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23441,168356,"CHE","National Inventory",2011,"Not Reported",37,"Zigerhüttli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23442,168357,"CHE","National Inventory",2011,"Not Reported",37,"Chnodenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23443,168358,"CHE","National Inventory",2011,"Not Reported",37,"Engenriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23444,168359,"CHE","National Inventory",2011,"Not Reported",37,"Tubenloch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23445,168360,"CHE","National Inventory",2011,"Not Reported",37,"Beim Bannholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23446,168361,"CHE","National Inventory",2011,"Not Reported",37,"Schorenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23447,168362,"CHE","National Inventory",2011,"Not Reported",37,"Gnossenweid / Mutzenwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23448,168363,"CHE","National Inventory",2011,"Not Reported",37,"Rossweid (SZ)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23449,168364,"CHE","National Inventory",2011,"Not Reported",37,"Blossen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23450,168365,"CHE","National Inventory",2011,"Not Reported",37,"Les Pontins","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23451,168366,"CHE","National Inventory",2011,"Not Reported",37,"Riederen I","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23452,168367,"CHE","National Inventory",2011,"Not Reported",37,"Erlen (SG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23453,168368,"CHE","National Inventory",2011,"Not Reported",37,"Eigenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23454,168369,"CHE","National Inventory",2011,"Not Reported",37,"Sattelegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23455,168370,"CHE","National Inventory",2011,"Not Reported",37,"Birchriedli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23456,168371,"CHE","National Inventory",2011,"Not Reported",37,"Eigen / Elsisried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23457,168372,"CHE","National Inventory",2011,"Not Reported",37,"Giritz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23458,168373,"CHE","National Inventory",2011,"Not Reported",37,"Riederen II","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23459,168374,"CHE","National Inventory",2011,"Not Reported",37,"Rainli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23460,168375,"CHE","National Inventory",2011,"Not Reported",37,"Sprädenegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23461,168376,"CHE","National Inventory",2011,"Not Reported",37,"Hirzegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23462,168377,"CHE","National Inventory",2011,"Not Reported",37,"Erlen/Hinterwis","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23463,168378,"CHE","National Inventory",2011,"Not Reported",37,"Geissmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23464,168379,"CHE","National Inventory",2011,"Not Reported",37,"Langriet / Schneeloch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23465,168380,"CHE","National Inventory",2011,"Not Reported",37,"Unterallmend Perlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23466,168381,"CHE","National Inventory",2011,"Not Reported",37,"Mettlenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23467,168382,"CHE","National Inventory",2011,"Not Reported",37,"Grossriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23468,168383,"CHE","National Inventory",2011,"Not Reported",37,"Grossblätz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23469,168384,"CHE","National Inventory",2011,"Not Reported",37,"Ostergau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23470,168385,"CHE","National Inventory",2011,"Not Reported",37,"Erlenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23471,168386,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzeneggehöchi / Hinter Gwürz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23472,168387,"CHE","National Inventory",2011,"Not Reported",37,"Ried bei Grossbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23473,168388,"CHE","National Inventory",2011,"Not Reported",37,"Walchwiler Oberallmig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23474,168389,"CHE","National Inventory",2011,"Not Reported",37,"Scheidegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23475,168390,"CHE","National Inventory",2011,"Not Reported",37,"Vorderes Hürital","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23476,168391,"CHE","National Inventory",2011,"Not Reported",37,"Gross Moos im Schwendital","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23477,168392,"CHE","National Inventory",2011,"Not Reported",37,"Steinacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23478,168393,"CHE","National Inventory",2011,"Not Reported",37,"Malunriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23479,168394,"CHE","National Inventory",2011,"Not Reported",37,"Meur bei Britteren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23480,168395,"CHE","National Inventory",2011,"Not Reported",37,"Trachslauer Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23481,168396,"CHE","National Inventory",2011,"Not Reported",37,"Rieter / Sagen / Neselen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23482,168397,"CHE","National Inventory",2011,"Not Reported",37,"Brüschegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23483,168398,"CHE","National Inventory",2011,"Not Reported",37,"Blimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23484,168399,"CHE","National Inventory",2011,"Not Reported",37,"Cholau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23485,168400,"CHE","National Inventory",2011,"Not Reported",37,"Sabrens","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23486,168401,"CHE","National Inventory",2011,"Not Reported",37,"Boggenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23487,168402,"CHE","National Inventory",2011,"Not Reported",37,"nördlich Eggstofel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23488,168403,"CHE","National Inventory",2011,"Not Reported",37,"Langmösli / Feldriedli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23489,168404,"CHE","National Inventory",2011,"Not Reported",37,"Im Fang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23490,168405,"CHE","National Inventory",2011,"Not Reported",37,"Palfris","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23491,168406,"CHE","National Inventory",2011,"Not Reported",37,"Chnoden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23492,168407,"CHE","National Inventory",2011,"Not Reported",37,"Salzläcki","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23493,168408,"CHE","National Inventory",2011,"Not Reported",37,"Heumoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23494,168409,"CHE","National Inventory",2011,"Not Reported",37,"Euthal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23495,168410,"CHE","National Inventory",2011,"Not Reported",37,"Türliboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23496,168411,"CHE","National Inventory",2011,"Not Reported",37,"Nätsch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23497,168412,"CHE","National Inventory",2011,"Not Reported",37,"Wengi Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23498,168413,"CHE","National Inventory",2011,"Not Reported",37,"Nüchenstöck","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23499,168414,"CHE","National Inventory",2011,"Not Reported",37,"Eigenrieter","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23500,168415,"CHE","National Inventory",2011,"Not Reported",37,"Rütiwijer","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23501,168416,"CHE","National Inventory",2011,"Not Reported",37,"Madils","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23502,168417,"CHE","National Inventory",2011,"Not Reported",37,"Hintere Wisstannenweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23503,168418,"CHE","National Inventory",2011,"Not Reported",37,"Stäubrig / Schrä","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23504,168419,"CHE","National Inventory",2011,"Not Reported",37,"Breitried (SZ)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23505,168420,"CHE","National Inventory",2011,"Not Reported",37,"Am See","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23506,168421,"CHE","National Inventory",2011,"Not Reported",37,"Tobelwald / Guetental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23507,168422,"CHE","National Inventory",2011,"Not Reported",37,"Prodriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23508,168423,"CHE","National Inventory",2011,"Not Reported",37,"Chlösterliweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23509,168424,"CHE","National Inventory",2011,"Not Reported",37,"Les Eplatures-Temple","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23510,168425,"CHE","National Inventory",2011,"Not Reported",37,"Chessiloch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23511,168426,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23512,168427,"CHE","National Inventory",2011,"Not Reported",37,"Naserina","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23513,168428,"CHE","National Inventory",2011,"Not Reported",37,"Vord. Mäderen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23514,168429,"CHE","National Inventory",2011,"Not Reported",37,"Moosweiher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23515,168430,"CHE","National Inventory",2011,"Not Reported",37,"Rotseeried Abfluss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23516,168431,"CHE","National Inventory",2011,"Not Reported",37,"Heitlenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23517,168432,"CHE","National Inventory",2011,"Not Reported",37,"Sennenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23518,168433,"CHE","National Inventory",2011,"Not Reported",37,"Hunds-Chotten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23519,168434,"CHE","National Inventory",2011,"Not Reported",37,"Schlittenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23520,168435,"CHE","National Inventory",2011,"Not Reported",37,"Weiherried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23521,168436,"CHE","National Inventory",2011,"Not Reported",37,"Platten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23522,168437,"CHE","National Inventory",2011,"Not Reported",37,"Tuetenseeli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23523,168438,"CHE","National Inventory",2011,"Not Reported",37,"Regenegg / Lang Gschwänd","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23524,168439,"CHE","National Inventory",2011,"Not Reported",37,"Unteriberg / Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23525,168440,"CHE","National Inventory",2011,"Not Reported",37,"Padüra","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23526,168441,"CHE","National Inventory",2011,"Not Reported",37,"Schmalzlad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23527,168442,"CHE","National Inventory",2011,"Not Reported",37,"Täuffeler Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23528,168443,"CHE","National Inventory",2011,"Not Reported",37,"Bannegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23529,168444,"CHE","National Inventory",2011,"Not Reported",37,"Mürtschen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23530,168445,"CHE","National Inventory",2011,"Not Reported",37,"Heidenweg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23531,168446,"CHE","National Inventory",2011,"Not Reported",37,"Stöckweid / Wyer","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23532,168447,"CHE","National Inventory",2011,"Not Reported",37,"Forenmoos / Langenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23533,168448,"CHE","National Inventory",2011,"Not Reported",37,"westlich Hobisbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23534,168449,"CHE","National Inventory",2011,"Not Reported",37,"Panüöler-Spigen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23535,168450,"CHE","National Inventory",2011,"Not Reported",37,"nordöstlich Schlund","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23536,168451,"CHE","National Inventory",2011,"Not Reported",37,"Les Goudebas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23537,168452,"CHE","National Inventory",2011,"Not Reported",37,"Stockrietli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23538,168453,"CHE","National Inventory",2011,"Not Reported",37,"Ober Mürtschen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23539,168454,"CHE","National Inventory",2011,"Not Reported",37,"Brüschrain","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23540,168455,"CHE","National Inventory",2011,"Not Reported",37,"Gleitboden / Streuneren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23541,168456,"CHE","National Inventory",2011,"Not Reported",37,"Chli Seebli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23542,168457,"CHE","National Inventory",2011,"Not Reported",37,"Tierfäderen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23543,168458,"CHE","National Inventory",2011,"Not Reported",37,"Fulriet / Mädems","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23544,168459,"CHE","National Inventory",2011,"Not Reported",37,"Lünzelblätz / Cholhüttli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23545,168460,"CHE","National Inventory",2011,"Not Reported",37,"Gross Seebli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23546,168461,"CHE","National Inventory",2011,"Not Reported",37,"Ober Heikentobel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23547,168462,"CHE","National Inventory",2011,"Not Reported",37,"Langeggried / Unter Heikentobel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23548,168463,"CHE","National Inventory",2011,"Not Reported",37,"Langried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23549,168464,"CHE","National Inventory",2011,"Not Reported",37,"Sägel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23550,168465,"CHE","National Inventory",2011,"Not Reported",37,"Chapfensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23551,168466,"CHE","National Inventory",2011,"Not Reported",37,"Widen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23552,168467,"CHE","National Inventory",2011,"Not Reported",37,"Furenwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23553,168468,"CHE","National Inventory",2011,"Not Reported",37,"Rund Blätz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23554,168469,"CHE","National Inventory",2011,"Not Reported",37,"Palus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23555,168470,"CHE","National Inventory",2011,"Not Reported",37,"Chaspersboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23556,168471,"CHE","National Inventory",2011,"Not Reported",37,"Tamons","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23557,168472,"CHE","National Inventory",2011,"Not Reported",37,"Murgsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23558,168473,"CHE","National Inventory",2011,"Not Reported",37,"Auw","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23559,168474,"CHE","National Inventory",2011,"Not Reported",37,"Hintersäss","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23560,168475,"CHE","National Inventory",2011,"Not Reported",37,"Schornen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23561,168476,"CHE","National Inventory",2011,"Not Reported",37,"Gross Underbäch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23562,168477,"CHE","National Inventory",2011,"Not Reported",37,"Wüest Wald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23563,168478,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Cavell","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23564,168479,"CHE","National Inventory",2011,"Not Reported",37,"Cani","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23565,168480,"CHE","National Inventory",2011,"Not Reported",37,"Seiler / Zwäcken","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23566,168481,"CHE","National Inventory",2011,"Not Reported",37,"Rotenflue Allmig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23567,168482,"CHE","National Inventory",2011,"Not Reported",37,"Rieter südl. Schwarzenstock","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23568,168483,"CHE","National Inventory",2011,"Not Reported",37,"Hobacher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23569,168484,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Cavell","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23570,168485,"CHE","National Inventory",2011,"Not Reported",37,"Tubenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23571,168486,"CHE","National Inventory",2011,"Not Reported",37,"Bueffen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23572,168487,"CHE","National Inventory",2011,"Not Reported",37,"Alpnova","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23573,168488,"CHE","National Inventory",2011,"Not Reported",37,"Nördlich Obersäss (Alp Ortasee)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23574,168489,"CHE","National Inventory",2011,"Not Reported",37,"Langerli / Riedhütte / Rohrboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23575,168490,"CHE","National Inventory",2011,"Not Reported",37,"Inner und Usser Schnabel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23576,168491,"CHE","National Inventory",2011,"Not Reported",37,"Gersauer Alp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23577,168492,"CHE","National Inventory",2011,"Not Reported",37,"Ibergeregg-West","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23578,168493,"CHE","National Inventory",2011,"Not Reported",37,"Oberer Fischerenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23579,168494,"CHE","National Inventory",2011,"Not Reported",37,"Chrüzböden (Alp Ortasee)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23580,168495,"CHE","National Inventory",2011,"Not Reported",37,"Obersäss (Alp Ortasee)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23581,168496,"CHE","National Inventory",2011,"Not Reported",37,"Leitiboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23582,168497,"CHE","National Inventory",2011,"Not Reported",37,"Sadrein","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23583,168498,"CHE","National Inventory",2011,"Not Reported",37,"Seebli / Fuederegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23584,168499,"CHE","National Inventory",2011,"Not Reported",37,"Grüebli / Hintergrüebli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23585,168500,"CHE","National Inventory",2011,"Not Reported",37,"Steinibachried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23586,168501,"CHE","National Inventory",2011,"Not Reported",37,"Furenmoos / Dorschnei","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23587,168502,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Rohren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23588,168503,"CHE","National Inventory",2011,"Not Reported",37,"Strit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23589,168504,"CHE","National Inventory",2011,"Not Reported",37,"Chaisten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23590,168505,"CHE","National Inventory",2011,"Not Reported",37,"Hinterschild","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23591,168506,"CHE","National Inventory",2011,"Not Reported",37,"Röhrli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23592,168507,"CHE","National Inventory",2011,"Not Reported",37,"Forrenmoos / Meienstossmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23593,168508,"CHE","National Inventory",2011,"Not Reported",37,"Le Fanel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23594,168509,"CHE","National Inventory",2011,"Not Reported",37,"Pragel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23595,168510,"CHE","National Inventory",2011,"Not Reported",37,"Brestenburg / Rieter","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23596,168511,"CHE","National Inventory",2011,"Not Reported",37,"Mülimäs","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23597,168512,"CHE","National Inventory",2011,"Not Reported",37,"Wilermoos / Fräschelsweiher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23598,168513,"CHE","National Inventory",2011,"Not Reported",37,"Vilterser - Alp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23599,168514,"CHE","National Inventory",2011,"Not Reported",37,"Breitried / Cholhütten / Hohrüti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23600,168515,"CHE","National Inventory",2011,"Not Reported",37,"Hopfräben","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23601,168516,"CHE","National Inventory",2011,"Not Reported",37,"Ingenbohl","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23602,168517,"CHE","National Inventory",2011,"Not Reported",37,"Vers le Maix Rochat","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23603,168518,"CHE","National Inventory",2011,"Not Reported",37,"Guetentalboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23604,168519,"CHE","National Inventory",2011,"Not Reported",37,"Wal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23605,168520,"CHE","National Inventory",2011,"Not Reported",37,"Seewli / Riedboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23606,168521,"CHE","National Inventory",2011,"Not Reported",37,"Spinnegg / Neuenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23607,168522,"CHE","National Inventory",2011,"Not Reported",37,"Gnappetriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23608,168523,"CHE","National Inventory",2011,"Not Reported",37,"Le Bied des Ponts-de-Martel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23609,168524,"CHE","National Inventory",2011,"Not Reported",37,"Riede um Boneren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23610,168525,"CHE","National Inventory",2011,"Not Reported",37,"Schofberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23611,168526,"CHE","National Inventory",2011,"Not Reported",37,"Rotstock / Unter Honegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23612,168527,"CHE","National Inventory",2011,"Not Reported",37,"Ärtig / Feldimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23613,168528,"CHE","National Inventory",2011,"Not Reported",37,"Solcs","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23614,168529,"CHE","National Inventory",2011,"Not Reported",37,"Alp Bella","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23615,168530,"CHE","National Inventory",2011,"Not Reported",37,"Oltigenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23616,168531,"CHE","National Inventory",2011,"Not Reported",37,"Alp Trida","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23617,168532,"CHE","National Inventory",2011,"Not Reported",37,"Mettilimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23618,168533,"CHE","National Inventory",2011,"Not Reported",37,"Riet (Fadära)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23619,168534,"CHE","National Inventory",2011,"Not Reported",37,"Rossweid (GL)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23620,168535,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23621,168536,"CHE","National Inventory",2011,"Not Reported",37,"Längriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23622,168537,"CHE","National Inventory",2011,"Not Reported",37,"Teufböni","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23623,168538,"CHE","National Inventory",2011,"Not Reported",37,"Nesslenbrunnenboden / Geugelhusenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23624,168539,"CHE","National Inventory",2011,"Not Reported",37,"Grossriet / Gnappiriet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23625,168540,"CHE","National Inventory",2011,"Not Reported",37,"Fuchserenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23626,168541,"CHE","National Inventory",2011,"Not Reported",37,"Salaaser Wisen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23627,168542,"CHE","National Inventory",2011,"Not Reported",37,"Capelgin / Leng Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23628,168543,"CHE","National Inventory",2011,"Not Reported",37,"Schulried / Uertiried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23629,168544,"CHE","National Inventory",2011,"Not Reported",37,"Stelsersee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23630,168545,"CHE","National Inventory",2011,"Not Reported",37,"Fulried am Stelserberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23631,168546,"CHE","National Inventory",2011,"Not Reported",37,"Gfellen / Rossweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23632,168547,"CHE","National Inventory",2011,"Not Reported",37,"Garichti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23633,168548,"CHE","National Inventory",2011,"Not Reported",37,"Blätz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23634,168549,"CHE","National Inventory",2011,"Not Reported",37,"Steinstössi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23635,168550,"CHE","National Inventory",2011,"Not Reported",37,"Grèves du lac de Morat","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23636,168551,"CHE","National Inventory",2011,"Not Reported",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23637,168552,"CHE","National Inventory",2011,"Not Reported",37,"Hindersandboden / Stächtenmösli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23638,168553,"CHE","National Inventory",2011,"Not Reported",37,"Stächtenmösli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23639,168554,"CHE","National Inventory",2011,"Not Reported",37,"Städerried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23640,168555,"CHE","National Inventory",2011,"Not Reported",37,"Chablais-Nord","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23641,168556,"CHE","National Inventory",2011,"Not Reported",37,"Riedboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23642,168557,"CHE","National Inventory",2011,"Not Reported",37,"Gschwänt / Längenschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23643,168558,"CHE","National Inventory",2011,"Not Reported",37,"Schwandmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23644,168559,"CHE","National Inventory",2011,"Not Reported",37,"Rongg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23645,168560,"CHE","National Inventory",2011,"Not Reported",37,"Rischigenmatt / Chrüzliegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23646,168561,"CHE","National Inventory",2011,"Not Reported",37,"Matt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23647,168562,"CHE","National Inventory",2011,"Not Reported",37,"Luchterlimoos / Schluck","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23648,168563,"CHE","National Inventory",2011,"Not Reported",37,"Goldplangg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23649,168564,"CHE","National Inventory",2011,"Not Reported",37,"Ober-Längenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23650,168565,"CHE","National Inventory",2011,"Not Reported",37,"Fäng / Rinderbüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23651,168566,"CHE","National Inventory",2011,"Not Reported",37,"Juchmoos / Angstboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23652,168567,"CHE","National Inventory",2011,"Not Reported",37,"Etzelhüsli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23653,168568,"CHE","National Inventory",2011,"Not Reported",37,"Chrüzgütsch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23654,168569,"CHE","National Inventory",2011,"Not Reported",37,"Rischigenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23655,168570,"CHE","National Inventory",2011,"Not Reported",37,"Längenfeldmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23656,168571,"CHE","National Inventory",2011,"Not Reported",37,"Chastenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23657,168572,"CHE","National Inventory",2011,"Not Reported",37,"Rotibachried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23658,168573,"CHE","National Inventory",2011,"Not Reported",37,"Werbenrüsli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23659,168574,"CHE","National Inventory",2011,"Not Reported",37,"Schimbrig / Hirsboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23660,168575,"CHE","National Inventory",2011,"Not Reported",37,"Promisaun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23661,168576,"CHE","National Inventory",2011,"Not Reported",37,"Ober Lauenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23662,168577,"CHE","National Inventory",2011,"Not Reported",37,"Güferlitzi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23663,168578,"CHE","National Inventory",2011,"Not Reported",37,"Loch (GR)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23664,168579,"CHE","National Inventory",2011,"Not Reported",37,"Hohberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23665,168580,"CHE","National Inventory",2011,"Not Reported",37,"Geisswis / Gaschneida / Plustorna","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23666,168581,"CHE","National Inventory",2011,"Not Reported",37,"Seeliboden im Choltal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23667,168582,"CHE","National Inventory",2011,"Not Reported",37,"Meien","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23668,168583,"CHE","National Inventory",2011,"Not Reported",37,"Isital","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23669,168584,"CHE","National Inventory",2011,"Not Reported",37,"Riedzöpf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23670,168585,"CHE","National Inventory",2011,"Not Reported",37,"Tällenmoos Eschholzmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23671,168586,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Rotbach / Grundmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23672,168587,"CHE","National Inventory",2011,"Not Reported",37,"Mättli / Schoni","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23673,168588,"CHE","National Inventory",2011,"Not Reported",37,"Mittler Risch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23674,168589,"CHE","National Inventory",2011,"Not Reported",37,"Scheidegg im Choltal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23675,168590,"CHE","National Inventory",2011,"Not Reported",37,"Charetalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23676,168591,"CHE","National Inventory",2011,"Not Reported",37,"Rossweid (OW)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23677,168592,"CHE","National Inventory",2011,"Not Reported",37,"Riede von Herrenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23678,168593,"CHE","National Inventory",2011,"Not Reported",37,"Äbnistetten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23679,168594,"CHE","National Inventory",2011,"Not Reported",37,"Lochalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23680,168595,"CHE","National Inventory",2011,"Not Reported",37,"Gürmschmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23681,168596,"CHE","National Inventory",2011,"Not Reported",37,"Änggenlauenen / Grünholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23682,168597,"CHE","National Inventory",2011,"Not Reported",37,"Val Fenga West","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23683,168598,"CHE","National Inventory",2011,"Not Reported",37,"Glattalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23684,168599,"CHE","National Inventory",2011,"Not Reported",37,"Riedboden / Galtenäbnet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23685,168600,"CHE","National Inventory",2011,"Not Reported",37,"Teilenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23686,168601,"CHE","National Inventory",2011,"Not Reported",37,"Unteres Schlierental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23687,168602,"CHE","National Inventory",2011,"Not Reported",37,"Val Fenga Ost","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23688,168603,"CHE","National Inventory",2011,"Not Reported",37,"Litzli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23689,168604,"CHE","National Inventory",2011,"Not Reported",37,"Gugel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23690,168605,"CHE","National Inventory",2011,"Not Reported",37,"Au bei Märchligen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23691,168606,"CHE","National Inventory",2011,"Not Reported",37,"Bärenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23692,168607,"CHE","National Inventory",2011,"Not Reported",37,"östlich Brandchnubel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23693,168608,"CHE","National Inventory",2011,"Not Reported",37,"Nüwenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23694,168609,"CHE","National Inventory",2011,"Not Reported",37,"Lengenschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23695,168610,"CHE","National Inventory",2011,"Not Reported",37,"Wengli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23696,168611,"CHE","National Inventory",2011,"Not Reported",37,"Rischi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23697,168612,"CHE","National Inventory",2011,"Not Reported",37,"Brandmöser","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23698,168613,"CHE","National Inventory",2011,"Not Reported",37,"Gürmschwald / Gugelwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23699,168614,"CHE","National Inventory",2011,"Not Reported",37,"Eggwaldried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23700,168615,"CHE","National Inventory",2011,"Not Reported",37,"Bi den Hüscheren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23701,168616,"CHE","National Inventory",2011,"Not Reported",37,"Gerenstock","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23702,168617,"CHE","National Inventory",2011,"Not Reported",37,"Selez","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23703,168618,"CHE","National Inventory",2011,"Not Reported",37,"Unter Wasserfallen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23704,168619,"CHE","National Inventory",2011,"Not Reported",37,"Schwendi Kaltbad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23705,168620,"CHE","National Inventory",2011,"Not Reported",37,"La Sagnette / Les Tourbières","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23706,168621,"CHE","National Inventory",2011,"Not Reported",37,"Marchmettlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23707,168622,"CHE","National Inventory",2011,"Not Reported",37,"Argseeli Urnerboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23708,168623,"CHE","National Inventory",2011,"Not Reported",37,"Häsiseggboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23709,168624,"CHE","National Inventory",2011,"Not Reported",37,"Chneuwis / Gitschenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23710,168625,"CHE","National Inventory",2011,"Not Reported",37,"Wasserfallenegg / Grön","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23711,168626,"CHE","National Inventory",2011,"Not Reported",37,"Au bei Kleinhöchstetten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23712,168627,"CHE","National Inventory",2011,"Not Reported",37,"Gross Lucht","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23713,168628,"CHE","National Inventory",2011,"Not Reported",37,"Glaubenberg / Hinter Rotbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23714,168629,"CHE","National Inventory",2011,"Not Reported",37,"Obermattboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23715,168630,"CHE","National Inventory",2011,"Not Reported",37,"Eggberge","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23716,168631,"CHE","National Inventory",2011,"Not Reported",37,"Flüeler Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23717,168632,"CHE","National Inventory",2011,"Not Reported",37,"Vorderegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23718,168633,"CHE","National Inventory",2011,"Not Reported",37,"Unter Jetz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23719,168634,"CHE","National Inventory",2011,"Not Reported",37,"Ober Sewen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23720,168635,"CHE","National Inventory",2011,"Not Reported",37,"Mättenwang Urnerboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23721,168636,"CHE","National Inventory",2011,"Not Reported",37,"Trogenwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23722,168637,"CHE","National Inventory",2011,"Not Reported",37,"Heustettli / Bösen-Ritzenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23723,168638,"CHE","National Inventory",2011,"Not Reported",37,"Guggenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23724,168639,"CHE","National Inventory",2011,"Not Reported",37,"Seedorfer Ried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23725,168640,"CHE","National Inventory",2011,"Not Reported",37,"Uf den Riederen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23726,168641,"CHE","National Inventory",2011,"Not Reported",37,"Glatt-Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23727,168642,"CHE","National Inventory",2011,"Not Reported",37,"Münchenboden / Ochsenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23728,168643,"CHE","National Inventory",2011,"Not Reported",37,"Unter Sewen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23729,168644,"CHE","National Inventory",2011,"Not Reported",37,"Rieter bei Oberrickenbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23730,168645,"CHE","National Inventory",2011,"Not Reported",37,"Portenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23731,168646,"CHE","National Inventory",2011,"Not Reported",37,"Schaftelenmoos / Stäldili / Sattelpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23732,168647,"CHE","National Inventory",2011,"Not Reported",37,"Ahornenweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23733,168648,"CHE","National Inventory",2011,"Not Reported",37,"Tanail","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23734,168649,"CHE","National Inventory",2011,"Not Reported",37,"Sewen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23735,168650,"CHE","National Inventory",2011,"Not Reported",37,"Birchenbüelen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23736,168651,"CHE","National Inventory",2011,"Not Reported",37,"Hilferenpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23737,168652,"CHE","National Inventory",2011,"Not Reported",37,"Ried bei Altzellen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23738,168653,"CHE","National Inventory",2011,"Not Reported",37,"Schwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23739,168654,"CHE","National Inventory",2011,"Not Reported",37,"Plaun Segnas Sut","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23740,168655,"CHE","National Inventory",2011,"Not Reported",37,"Chli Trogen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23741,168656,"CHE","National Inventory",2011,"Not Reported",37,"Fideriser Heuberge","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23742,168657,"CHE","National Inventory",2011,"Not Reported",37,"Plan Nai / Marangun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23743,168658,"CHE","National Inventory",2011,"Not Reported",37,"Egghütten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23744,168659,"CHE","National Inventory",2011,"Not Reported",37,"Miesenegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23745,168660,"CHE","National Inventory",2011,"Not Reported",37,"Tällenmoos im Hilferental","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23746,168661,"CHE","National Inventory",2011,"Not Reported",37,"Dörsmatt / Miesen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23747,168662,"CHE","National Inventory",2011,"Not Reported",37,"Mettlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23748,168663,"CHE","National Inventory",2011,"Not Reported",37,"Riedboden bei Zischlig","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23749,168664,"CHE","National Inventory",2011,"Not Reported",37,"Toregg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23750,168665,"CHE","National Inventory",2011,"Not Reported",37,"Riedböden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23751,168666,"CHE","National Inventory",2011,"Not Reported",37,"Faniner Galtihütte","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23752,168667,"CHE","National Inventory",2011,"Not Reported",37,"Riedmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23753,168668,"CHE","National Inventory",2011,"Not Reported",37,"Niemerstafel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23754,168669,"CHE","National Inventory",2011,"Not Reported",37,"Bleikenboden / Schüfilimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23755,168670,"CHE","National Inventory",2011,"Not Reported",37,"Chesselsmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23756,168671,"CHE","National Inventory",2011,"Not Reported",37,"Clun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23757,168672,"CHE","National Inventory",2011,"Not Reported",37,"Hefti / Salzboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23758,168673,"CHE","National Inventory",2011,"Not Reported",37,"Ried Faninpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23759,168674,"CHE","National Inventory",2011,"Not Reported",37,"Gauderböden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23760,168675,"CHE","National Inventory",2011,"Not Reported",37,"Teilenmäder / Seebüelen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23761,168676,"CHE","National Inventory",2011,"Not Reported",37,"Triemel / Cunggel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23762,168677,"CHE","National Inventory",2011,"Not Reported",37,"Gloggenmatt","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23763,168678,"CHE","National Inventory",2011,"Not Reported",37,"Rossboden / Looegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23764,168679,"CHE","National Inventory",2011,"Not Reported",37,"La Grève","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23765,168680,"CHE","National Inventory",2011,"Not Reported",37,"Hagleren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23766,168681,"CHE","National Inventory",2011,"Not Reported",37,"Dörsmattgraben","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23767,168682,"CHE","National Inventory",2011,"Not Reported",37,"Dälenboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23768,168683,"CHE","National Inventory",2011,"Not Reported",37,"Müseren","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23769,168684,"CHE","National Inventory",2011,"Not Reported",37,"Zwirchi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23770,168685,"CHE","National Inventory",2011,"Not Reported",37,"Eggen Rieter","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23771,168686,"CHE","National Inventory",2011,"Not Reported",37,"Usser Allmend","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23772,168687,"CHE","National Inventory",2011,"Not Reported",37,"Bargaboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23773,168688,"CHE","National Inventory",2011,"Not Reported",37,"Palü Lunga","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23774,168689,"CHE","National Inventory",2011,"Not Reported",37,"Rormettlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23775,168690,"CHE","National Inventory",2011,"Not Reported",37,"Fondei","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23776,168691,"CHE","National Inventory",2011,"Not Reported",37,"Junkholz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23777,168692,"CHE","National Inventory",2011,"Not Reported",37,"Hanenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23778,168693,"CHE","National Inventory",2011,"Not Reported",37,"Düdingermoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23779,168694,"CHE","National Inventory",2011,"Not Reported",37,"Mouille de la Vraconnaz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23780,168695,"CHE","National Inventory",2011,"Not Reported",37,"Siechenried","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23781,168696,"CHE","National Inventory",2011,"Not Reported",37,"Girsch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23782,168697,"CHE","National Inventory",2011,"Not Reported",37,"Prau Grass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23783,168698,"CHE","National Inventory",2011,"Not Reported",37,"Gustiweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23784,168699,"CHE","National Inventory",2011,"Not Reported",37,"Stächelegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23785,168700,"CHE","National Inventory",2011,"Not Reported",37,"Fragnière-Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23786,168701,"CHE","National Inventory",2011,"Not Reported",37,"Pfaffenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23787,168702,"CHE","National Inventory",2011,"Not Reported",37,"Marbachegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23788,168703,"CHE","National Inventory",2011,"Not Reported",37,"Chadhus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23789,168704,"CHE","National Inventory",2011,"Not Reported",37,"Palü Marscha","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23790,168705,"CHE","National Inventory",2011,"Not Reported",37,"Salwiden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23791,168706,"CHE","National Inventory",2011,"Not Reported",37,"Tegia Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23792,168707,"CHE","National Inventory",2011,"Not Reported",37,"Habchegg (LU)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23793,168708,"CHE","National Inventory",2011,"Not Reported",37,"Wachseldornmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23794,168709,"CHE","National Inventory",2011,"Not Reported",37,"Sapüner Mäder","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23795,168710,"CHE","National Inventory",2011,"Not Reported",37,"Totmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23796,168711,"CHE","National Inventory",2011,"Not Reported",37,"Paliu Marscha","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23797,168712,"CHE","National Inventory",2011,"Not Reported",37,"Wagliseichnubel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23798,168713,"CHE","National Inventory",2011,"Not Reported",37,"Ochsenweid / Schwand / Gwün","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23799,168714,"CHE","National Inventory",2011,"Not Reported",37,"Tschessas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23800,168715,"CHE","National Inventory",2011,"Not Reported",37,"Prada da Tuoi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23801,168716,"CHE","National Inventory",2011,"Not Reported",37,"Südlich Ober Saffertberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23802,168717,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzenegg / Steinetli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23803,168718,"CHE","National Inventory",2011,"Not Reported",37,"Naluns","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23804,168719,"CHE","National Inventory",2011,"Not Reported",37,"Mouille des Creux","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23805,168720,"CHE","National Inventory",2011,"Not Reported",37,"Cavarschons","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23806,168721,"CHE","National Inventory",2011,"Not Reported",37,"Alpoglen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23807,168722,"CHE","National Inventory",2011,"Not Reported",37,"Alp da Schnaus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23808,168723,"CHE","National Inventory",2011,"Not Reported",37,"Feldmoos (OW)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23809,168724,"CHE","National Inventory",2011,"Not Reported",37,"Emmen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23810,168725,"CHE","National Inventory",2011,"Not Reported",37,"Schwandweid / Büelmeschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23811,168726,"CHE","National Inventory",2011,"Not Reported",37,"Laubersmadghack / Bärsel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23812,168727,"CHE","National Inventory",2011,"Not Reported",37,"Gustiweidli / Obere Mastweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23813,168728,"CHE","National Inventory",2011,"Not Reported",37,"Weihermühle","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23814,168729,"CHE","National Inventory",2011,"Not Reported",37,"Lag digl Oberst","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23815,168730,"CHE","National Inventory",2011,"Not Reported",37,"Val Frisal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23816,168731,"CHE","National Inventory",2011,"Not Reported",37,"Oberes Roseggli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23817,168732,"CHE","National Inventory",2011,"Not Reported",37,"Alp Dado Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23818,168733,"CHE","National Inventory",2011,"Not Reported",37,"Furmièrs","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23819,168734,"CHE","National Inventory",2011,"Not Reported",37,"Riede südlich Joch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23820,168735,"CHE","National Inventory",2011,"Not Reported",37,"Unter Prätschsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23821,168736,"CHE","National Inventory",2011,"Not Reported",37,"Wimmisalp / Innerer Windbruch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23822,168737,"CHE","National Inventory",2011,"Not Reported",37,"Fulensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23823,168738,"CHE","National Inventory",2011,"Not Reported",37,"Riede westlich Schwarzwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23824,168739,"CHE","National Inventory",2011,"Not Reported",37,"Rotmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23825,168740,"CHE","National Inventory",2011,"Not Reported",37,"Schöniseischwand / Spierweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23826,168741,"CHE","National Inventory",2011,"Not Reported",37,"Alp dil Plaun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23827,168742,"CHE","National Inventory",2011,"Not Reported",37,"Lac de Seedorf","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23828,168743,"CHE","National Inventory",2011,"Not Reported",37,"Schönisei / Harzisboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23829,168744,"CHE","National Inventory",2011,"Not Reported",37,"Schärpfenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23830,168745,"CHE","National Inventory",2011,"Not Reported",37,"Sachsler Seefeld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23831,168746,"CHE","National Inventory",2011,"Not Reported",37,"Arnibergli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23832,168747,"CHE","National Inventory",2011,"Not Reported",37,"Vorderes Rotmösli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23833,168748,"CHE","National Inventory",2011,"Not Reported",37,"Moor östlich Ober Breitwang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23834,168749,"CHE","National Inventory",2011,"Not Reported",37,"Quadras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23835,168750,"CHE","National Inventory",2011,"Not Reported",37,"Prümarans","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23836,168751,"CHE","National Inventory",2011,"Not Reported",37,"Usserberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23837,168752,"CHE","National Inventory",2011,"Not Reported",37,"Schwändli / Hungerschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23838,168753,"CHE","National Inventory",2011,"Not Reported",37,"Moor zwischen Mirrenegg und Ällgäu","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23839,168754,"CHE","National Inventory",2011,"Not Reported",37,"Moos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23840,168755,"CHE","National Inventory",2011,"Not Reported",37,"Tannen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23841,168756,"CHE","National Inventory",2011,"Not Reported",37,"Habchegg (BE)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23842,168757,"CHE","National Inventory",2011,"Not Reported",37,"Isla Sut","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23843,168758,"CHE","National Inventory",2011,"Not Reported",37,"Grundmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23844,168759,"CHE","National Inventory",2011,"Not Reported",37,"Moore östlich Pfidertschegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23845,168760,"CHE","National Inventory",2011,"Not Reported",37,"Cuolms da Breil","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23846,168761,"CHE","National Inventory",2011,"Not Reported",37,"Trogen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23847,168762,"CHE","National Inventory",2011,"Not Reported",37,"Fuchser","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23848,168763,"CHE","National Inventory",2011,"Not Reported",37,"Lai Nair","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23849,168764,"CHE","National Inventory",2011,"Not Reported",37,"Ällgäu","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23850,168765,"CHE","National Inventory",2011,"Not Reported",37,"Hintere und Vordere Nollen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23851,168766,"CHE","National Inventory",2011,"Not Reported",37,"Moore nordöstlich Ober Sol","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23852,168767,"CHE","National Inventory",2011,"Not Reported",37,"Distelboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23853,168768,"CHE","National Inventory",2011,"Not Reported",37,"Clavadeler Berg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23854,168769,"CHE","National Inventory",2011,"Not Reported",37,"Horneggwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23855,168770,"CHE","National Inventory",2011,"Not Reported",37,"Schöriz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23856,168771,"CHE","National Inventory",2011,"Not Reported",37,"Moore nördl. Grünenbergpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23857,168772,"CHE","National Inventory",2011,"Not Reported",37,"Moor zwischen Lombachalp und Teufen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23858,168773,"CHE","National Inventory",2011,"Not Reported",37,"Trogenmoos Nord","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23859,168774,"CHE","National Inventory",2011,"Not Reported",37,"Cuolm Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23860,168775,"CHE","National Inventory",2011,"Not Reported",37,"Melchsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23861,168776,"CHE","National Inventory",2011,"Not Reported",37,"In Erlen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23862,168777,"CHE","National Inventory",2011,"Not Reported",37,"Bolsitenallmi / Chuelibrunnen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23863,168778,"CHE","National Inventory",2011,"Not Reported",37,"Trogenmoos Süd","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23864,168779,"CHE","National Inventory",2011,"Not Reported",37,"Hornmettlen / Ruer","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23865,168780,"CHE","National Inventory",2011,"Not Reported",37,"Moor östlich Unteres Hörnli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23866,168781,"CHE","National Inventory",2011,"Not Reported",37,"Höhenschwandmoor","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23867,168782,"CHE","National Inventory",2011,"Not Reported",37,"Ruuschi / Magerbad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23868,168783,"CHE","National Inventory",2011,"Not Reported",37,"Schleifgraben","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23869,168784,"CHE","National Inventory",2011,"Not Reported",37,"Moore hinder der Egg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23870,168785,"CHE","National Inventory",2011,"Not Reported",37,"Schluchhole","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23871,168786,"CHE","National Inventory",2011,"Not Reported",37,"Moor bei Lombachalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23872,168787,"CHE","National Inventory",2011,"Not Reported",37,"Wagenmoos / Mittleres Seefeld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23873,168788,"CHE","National Inventory",2011,"Not Reported",37,"Moore südwestlich Grünenbergpass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23874,168789,"CHE","National Inventory",2011,"Not Reported",37,"Bosch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23875,168790,"CHE","National Inventory",2011,"Not Reported",37,"Dittligsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23876,168791,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzenbühl / Fettbeder","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23877,168792,"CHE","National Inventory",2011,"Not Reported",37,"Hubelhörnli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23878,168793,"CHE","National Inventory",2011,"Not Reported",37,"Paliu Marscha","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23879,168794,"CHE","National Inventory",2011,"Not Reported",37,"Untere und Obere Mäscher","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23880,168795,"CHE","National Inventory",2011,"Not Reported",37,"Horbüelallmid / Schwantenbüelallmid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23881,168796,"CHE","National Inventory",2011,"Not Reported",37,"Affeier / Pifal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23882,168797,"CHE","National Inventory",2011,"Not Reported",37,"Moor westl. Wissenbach / Gurnigel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23883,168798,"CHE","National Inventory",2011,"Not Reported",37,"Sytenvorsess","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23884,168799,"CHE","National Inventory",2011,"Not Reported",37,"Dünzenegg / Tönimoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23885,168800,"CHE","National Inventory",2011,"Not Reported",37,"Prau Mitgiert","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23886,168801,"CHE","National Inventory",2011,"Not Reported",37,"Moore nordwestlich Plitsches","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23887,168802,"CHE","National Inventory",2011,"Not Reported",37,"Ligneida","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23888,168803,"CHE","National Inventory",2011,"Not Reported",37,"Zettenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23889,168804,"CHE","National Inventory",2011,"Not Reported",37,"Cuolm Sura","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23890,168805,"CHE","National Inventory",2011,"Not Reported",37,"Teuftal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23891,168806,"CHE","National Inventory",2011,"Not Reported",37,"Moore westlich Rotenschwand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23892,168807,"CHE","National Inventory",2011,"Not Reported",37,"Ruschneras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23893,168808,"CHE","National Inventory",2011,"Not Reported",37,"Selital","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23894,168809,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzwasser / Bärgli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23895,168810,"CHE","National Inventory",2011,"Not Reported",37,"Seemad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23896,168811,"CHE","National Inventory",2011,"Not Reported",37,"Schalenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23897,168812,"CHE","National Inventory",2011,"Not Reported",37,"Sältenüeb","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23898,168813,"CHE","National Inventory",2011,"Not Reported",37,"Lerchmatt / Schmittmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23899,168814,"CHE","National Inventory",2011,"Not Reported",37,"Obere Zettenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23900,168815,"CHE","National Inventory",2011,"Not Reported",37,"Mad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23901,168816,"CHE","National Inventory",2011,"Not Reported",37,"Schwendli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23902,168817,"CHE","National Inventory",2011,"Not Reported",37,"Im Rüeggers","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23903,168818,"CHE","National Inventory",2011,"Not Reported",37,"Wallengaden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23904,168819,"CHE","National Inventory",2011,"Not Reported",37,"Nordufer Heidsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23905,168820,"CHE","National Inventory",2011,"Not Reported",37,"Schwendallmi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23906,168821,"CHE","National Inventory",2011,"Not Reported",37,"Heidsee, Pedra Grossa","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23907,168822,"CHE","National Inventory",2011,"Not Reported",37,"Bodmi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23908,168823,"CHE","National Inventory",2011,"Not Reported",37,"Feldmoos (SG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23909,168824,"CHE","National Inventory",2011,"Not Reported",37,"Kartitscha","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23910,168825,"CHE","National Inventory",2011,"Not Reported",37,"Sortel / Althuser","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23911,168826,"CHE","National Inventory",2011,"Not Reported",37,"Übeschisee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23912,168827,"CHE","National Inventory",2011,"Not Reported",37,"Fischbächen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23913,168828,"CHE","National Inventory",2011,"Not Reported",37,"Allmi westlich Läger","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23914,168829,"CHE","National Inventory",2011,"Not Reported",37,"Riederen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23915,168830,"CHE","National Inventory",2011,"Not Reported",37,"Lenzerheide","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23916,168831,"CHE","National Inventory",2011,"Not Reported",37,"Stierenberg / Alp Brändli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23917,168832,"CHE","National Inventory",2011,"Not Reported",37,"Bannwald","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23918,168833,"CHE","National Inventory",2011,"Not Reported",37,"Widmoos / Endorfallmi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23919,168834,"CHE","National Inventory",2011,"Not Reported",37,"Moore westlich Bröndlisegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23920,168835,"CHE","National Inventory",2011,"Not Reported",37,"Bröndlisegg / Hinters Läger","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23921,168836,"CHE","National Inventory",2011,"Not Reported",37,"nordöstlich Lavadinas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23922,168837,"CHE","National Inventory",2011,"Not Reported",37,"Wuost","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23923,168838,"CHE","National Inventory",2011,"Not Reported",37,"Moore südlich Ottenleuebad","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23924,168839,"CHE","National Inventory",2011,"Not Reported",37,"Chueberg / Schwändli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23925,168840,"CHE","National Inventory",2011,"Not Reported",37,"Selibüel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23926,168841,"CHE","National Inventory",2011,"Not Reported",37,"Moor östlich Gemmenalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23927,168842,"CHE","National Inventory",2011,"Not Reported",37,"Büelbach","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23928,168843,"CHE","National Inventory",2011,"Not Reported",37,"Salignas / Combras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23929,168844,"CHE","National Inventory",2011,"Not Reported",37,"Pré Bernard","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23930,168845,"CHE","National Inventory",2011,"Not Reported",37,"Gwattlischenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23931,168846,"CHE","National Inventory",2011,"Not Reported",37,"Walenhütten / Lauchboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23932,168847,"CHE","National Inventory",2011,"Not Reported",37,"Chüematte","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23933,168848,"CHE","National Inventory",2011,"Not Reported",37,"Dürrentännli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23934,168849,"CHE","National Inventory",2011,"Not Reported",37,"Tschafanna","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23935,168850,"CHE","National Inventory",2011,"Not Reported",37,"Luegiboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23936,168851,"CHE","National Inventory",2011,"Not Reported",37,"Rossbodensee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23937,168852,"CHE","National Inventory",2011,"Not Reported",37,"Stierenmoos / Im lätzen Hengst","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23938,168853,"CHE","National Inventory",2011,"Not Reported",37,"Waldeggallmi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23939,168854,"CHE","National Inventory",2011,"Not Reported",37,"Murtes","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23940,168855,"CHE","National Inventory",2011,"Not Reported",37,"Tgiern Grond","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23941,168856,"CHE","National Inventory",2011,"Not Reported",37,"Turen / Chaltenbrunnen / Stäckewäld","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23942,168857,"CHE","National Inventory",2011,"Not Reported",37,"Schärpfi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23943,168858,"CHE","National Inventory",2011,"Not Reported",37,"Ladengrat / Stäckhüttenberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23944,168859,"CHE","National Inventory",2011,"Not Reported",37,"Alp Nadels","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23945,168860,"CHE","National Inventory",2011,"Not Reported",37,"Alp Nova","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23946,168861,"CHE","National Inventory",2011,"Not Reported",37,"Torry d'Arau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23947,168862,"CHE","National Inventory",2011,"Not Reported",37,"Moore am Schwyberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23948,168863,"CHE","National Inventory",2011,"Not Reported",37,"Tamangur","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23949,168864,"CHE","National Inventory",2011,"Not Reported",37,"Rohrmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23950,168865,"CHE","National Inventory",2011,"Not Reported",37,"nordöstlich Oberläger","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23951,168866,"CHE","National Inventory",2011,"Not Reported",37,"Glaspass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23952,168867,"CHE","National Inventory",2011,"Not Reported",37,"Weissenau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23953,168868,"CHE","National Inventory",2011,"Not Reported",37,"Lac Brenet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23954,168869,"CHE","National Inventory",2011,"Not Reported",37,"Liets","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23955,168870,"CHE","National Inventory",2011,"Not Reported",37,"La Spielmannda / Untertierliberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23956,168871,"CHE","National Inventory",2011,"Not Reported",37,"Val Val","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23957,168872,"CHE","National Inventory",2011,"Not Reported",37,"Palius","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23958,168873,"CHE","National Inventory",2011,"Not Reported",37,"In Schroteggen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23959,168874,"CHE","National Inventory",2011,"Not Reported",37,"Alte Stand / Wischbääch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23960,168875,"CHE","National Inventory",2011,"Not Reported",37,"Breitenmoostor / Alpiglen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23961,168876,"CHE","National Inventory",2011,"Not Reported",37,"Grattavache","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23962,168877,"CHE","National Inventory",2011,"Not Reported",37,"Oberalppass","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23963,168878,"CHE","National Inventory",2011,"Not Reported",37,"Les Cruilles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23964,168879,"CHE","National Inventory",2011,"Not Reported",37,"L'Ochère","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23965,168880,"CHE","National Inventory",2011,"Not Reported",37,"Hambiel / Rossboden","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23966,168881,"CHE","National Inventory",2011,"Not Reported",37,"La Sagne du Séchey","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23967,168882,"CHE","National Inventory",2011,"Not Reported",37,"Zu den Staflen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23968,168883,"CHE","National Inventory",2011,"Not Reported",37,"Les Gurles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23969,168884,"CHE","National Inventory",2011,"Not Reported",37,"Lac Ter","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23970,168885,"CHE","National Inventory",2011,"Not Reported",37,"Berg beim Göscheneralpsee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23971,168886,"CHE","National Inventory",2011,"Not Reported",37,"Stavels Veders","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23972,168887,"CHE","National Inventory",2011,"Not Reported",37,"Uf Brandsbort / Schopfweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23973,168888,"CHE","National Inventory",2011,"Not Reported",37,"La Tourbière d'Echarlens","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23974,168889,"CHE","National Inventory",2011,"Not Reported",37,"Plaun Pardatsch / Crest Darvun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23975,168890,"CHE","National Inventory",2011,"Not Reported",37,"Tgatlems","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23976,168891,"CHE","National Inventory",2011,"Not Reported",37,"Schatschas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23977,168892,"CHE","National Inventory",2011,"Not Reported",37,"Plidutscha / Trutg Nurschalas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23978,168893,"CHE","National Inventory",2011,"Not Reported",37,"Pontet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23979,168894,"CHE","National Inventory",2011,"Not Reported",37,"Alp Stierva, Sigliots","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23980,168895,"CHE","National Inventory",2011,"Not Reported",37,"Fulwasser","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23981,168896,"CHE","National Inventory",2011,"Not Reported",37,"Buffalora","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23982,168897,"CHE","National Inventory",2011,"Not Reported",37,"Träjen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23983,168898,"CHE","National Inventory",2011,"Not Reported",37,"Alp Tuma","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23984,168899,"CHE","National Inventory",2011,"Not Reported",37,"Feldmoos (BE)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23985,168900,"CHE","National Inventory",2011,"Not Reported",37,"Jufplaun","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23986,168901,"CHE","National Inventory",2011,"Not Reported",37,"Alp Anarosa I","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23987,168902,"CHE","National Inventory",2011,"Not Reported",37,"Plan Palé","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23988,168903,"CHE","National Inventory",2011,"Not Reported",37,"Chez le Poisson","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23989,168904,"CHE","National Inventory",2011,"Not Reported",37,"Alp Anarosa II","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23990,168905,"CHE","National Inventory",2011,"Not Reported",37,"Breitmoos (AR)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23991,168906,"CHE","National Inventory",2011,"Not Reported",37,"Stavel da Maighels","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23992,168907,"CHE","National Inventory",2011,"Not Reported",37,"Champ-Buet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23993,168908,"CHE","National Inventory",2011,"Not Reported",37,"Riedboden (GR)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23994,168909,"CHE","National Inventory",2011,"Not Reported",37,"Sattelegg / Am undren Brand","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23995,168910,"CHE","National Inventory",2011,"Not Reported",37,"Crap la Crusch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23996,168911,"CHE","National Inventory",2011,"Not Reported",37,"Alp Neaza","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23997,168912,"CHE","National Inventory",2011,"Not Reported",37,"La Mosse d'en Bas","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23998,168913,"CHE","National Inventory",2011,"Not Reported",37,"Tourbière de Derrière la Côte, sud-est","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +23999,168914,"CHE","National Inventory",2011,"Not Reported",37,"Chuchifang","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24000,168915,"CHE","National Inventory",2011,"Not Reported",37,"Le Brassus","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24001,168916,"CHE","National Inventory",2011,"Not Reported",37,"Engi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24002,168917,"CHE","National Inventory",2011,"Not Reported",37,"Les Tourbières","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24003,168918,"CHE","National Inventory",2011,"Not Reported",37,"Tourbière de Derrière la Côte, sud-ouest","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24004,168919,"CHE","National Inventory",2011,"Not Reported",37,"Sunnsbiel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24005,168920,"CHE","National Inventory",2011,"Not Reported",37,"La Thomassette","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24006,168921,"CHE","National Inventory",2011,"Not Reported",37,"Seeberg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24007,168922,"CHE","National Inventory",2011,"Not Reported",37,"Auf den Lägern","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24008,168923,"CHE","National Inventory",2011,"Not Reported",37,"Wengernalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24009,168924,"CHE","National Inventory",2011,"Not Reported",37,"Moore nördlich Toffelsweid","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24010,168925,"CHE","National Inventory",2011,"Not Reported",37,"Chessibidmer","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24011,168926,"CHE","National Inventory",2011,"Not Reported",37,"Lambegn","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24012,168927,"CHE","National Inventory",2011,"Not Reported",37,"Alp Tobel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24013,168928,"CHE","National Inventory",2011,"Not Reported",37,"Im Roten Herd","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24014,168929,"CHE","National Inventory",2011,"Not Reported",37,"Station Wengernalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24015,168930,"CHE","National Inventory",2011,"Not Reported",37,"Les Alpettes","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24016,168931,"CHE","National Inventory",2011,"Not Reported",37,"Le Penny","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24017,168932,"CHE","National Inventory",2011,"Not Reported",37,"Chänelegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24018,168933,"CHE","National Inventory",2011,"Not Reported",37,"La Burtignière","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24019,168934,"CHE","National Inventory",2011,"Not Reported",37,"Les Mosses de la Rogivue","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24020,168935,"CHE","National Inventory",2011,"Not Reported",37,"Farreras / Scargneras","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24021,168936,"CHE","National Inventory",2011,"Not Reported",37,"Mederlouwenen","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24022,168937,"CHE","National Inventory",2011,"Not Reported",37,"La Léchire","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24023,168938,"CHE","National Inventory",2011,"Not Reported",37,"Sparemoos / Tots Mädli","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24024,168939,"CHE","National Inventory",2011,"Not Reported",37,"Oberste Gurbs","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24025,168940,"CHE","National Inventory",2011,"Not Reported",37,"Sparemoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24026,168941,"CHE","National Inventory",2011,"Not Reported",37,"Gammerschal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24027,168942,"CHE","National Inventory",2011,"Not Reported",37,"Gros Mont","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24028,168943,"CHE","National Inventory",2011,"Not Reported",37,"Uf em Hubel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24029,168944,"CHE","National Inventory",2011,"Not Reported",37,"Passo dell'Uomo","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24030,168945,"CHE","National Inventory",2011,"Not Reported",37,"Niremont, arête nord","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24031,168946,"CHE","National Inventory",2011,"Not Reported",37,"Cadagno di dentro","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24032,168947,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzesee","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24033,168948,"CHE","National Inventory",2011,"Not Reported",37,"Gros Niremont","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24034,168949,"CHE","National Inventory",2011,"Not Reported",37,"Sèche de Gimel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24035,168950,"CHE","National Inventory",2011,"Not Reported",37,"Dälmoos Achseten","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24036,168951,"CHE","National Inventory",2011,"Not Reported",37,"Cadagno di fuori","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24037,168952,"CHE","National Inventory",2011,"Not Reported",37,"Triest","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24038,168953,"CHE","National Inventory",2011,"Not Reported",37,"Alpe Gana","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24039,168954,"CHE","National Inventory",2011,"Not Reported",37,"Bärfel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24040,168955,"CHE","National Inventory",2011,"Not Reported",37,"Lac de Lussy","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24041,168956,"CHE","National Inventory",2011,"Not Reported",37,"Rüti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24042,168957,"CHE","National Inventory",2011,"Not Reported",37,"Le Paudex","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24043,168959,"CHE","National Inventory",2011,"Not Reported",37,"Campo Solario","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24044,168960,"CHE","National Inventory",2011,"Not Reported",37,"Fessu Derrière","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24045,168961,"CHE","National Inventory",2011,"Not Reported",37,"Cassinal","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24046,168962,"CHE","National Inventory",2011,"Not Reported",37,"Chilchalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24047,168963,"CHE","National Inventory",2011,"Not Reported",37,"Les Chapelles","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24048,168964,"CHE","National Inventory",2011,"Not Reported",37,"Lai Neir","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24049,168965,"CHE","National Inventory",2011,"Not Reported",37,"Zwisched Bäch","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24050,168966,"CHE","National Inventory",2011,"Not Reported",37,"Pinett (Ritom)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24051,168967,"CHE","National Inventory",2011,"Not Reported",37,"Moor südlich Vorderi Schneit","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24052,168968,"CHE","National Inventory",2011,"Not Reported",37,"Pian Segno","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24053,168969,"CHE","National Inventory",2011,"Not Reported",37,"Les Roseys","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24054,168970,"CHE","National Inventory",2011,"Not Reported",37,"Obers - Plani","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24055,168971,"CHE","National Inventory",2011,"Not Reported",37,"Fidertschi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24056,168972,"CHE","National Inventory",2011,"Not Reported",37,"Alp Flix","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24057,168973,"CHE","National Inventory",2011,"Not Reported",37,"Tga d'Meir","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24058,168974,"CHE","National Inventory",2011,"Not Reported",37,"Pè d'Munt / Pradè","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24059,168975,"CHE","National Inventory",2011,"Not Reported",37,"Rietboden (Tamboalp)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24060,168976,"CHE","National Inventory",2011,"Not Reported",37,"Glawis Fäng","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24061,168977,"CHE","National Inventory",2011,"Not Reported",37,"Füürbüel, Raafgarte","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24062,168978,"CHE","National Inventory",2011,"Not Reported",37,"Son Roc","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24063,168979,"CHE","National Inventory",2011,"Not Reported",37,"Lischigi Weid / Vierschröti","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24064,168980,"CHE","National Inventory",2011,"Not Reported",37,"Vall'Ambròsa ovest","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24065,168981,"CHE","National Inventory",2011,"Not Reported",37,"Campra di là","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24066,168982,"CHE","National Inventory",2011,"Not Reported",37,"Vers Champ","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24067,168983,"CHE","National Inventory",2011,"Not Reported",37,"Vall'Ambròsa est","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24068,168984,"CHE","National Inventory",2011,"Not Reported",37,"Blasestafel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24069,168985,"CHE","National Inventory",2011,"Not Reported",37,"Val Savriez","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24070,168986,"CHE","National Inventory",2011,"Not Reported",37,"Les Cases","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24071,168987,"CHE","National Inventory",2011,"Not Reported",37,"Val Scura (Alpe di Chièra)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24072,168988,"CHE","National Inventory",2011,"Not Reported",37,"Rossweidli / Horefäng","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24073,168989,"CHE","National Inventory",2011,"Not Reported",37,"Muttariet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24074,168990,"CHE","National Inventory",2011,"Not Reported",37,"La Manche","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24075,168991,"CHE","National Inventory",2011,"Not Reported",37,"Choma Suot - Palüd Chapè","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24076,168992,"CHE","National Inventory",2011,"Not Reported",37,"Albristmeder","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24077,168993,"CHE","National Inventory",2011,"Not Reported",37,"Ciernes Picat","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24078,168994,"CHE","National Inventory",2011,"Not Reported",37,"Alpe di Vignone","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24079,168995,"CHE","National Inventory",2011,"Not Reported",37,"Ransung","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24080,168996,"CHE","National Inventory",2011,"Not Reported",37,"God da Staz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24081,168997,"CHE","National Inventory",2011,"Not Reported",37,"Alp Ses","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24082,168998,"CHE","National Inventory",2011,"Not Reported",37,"Val da Natons","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24083,168999,"CHE","National Inventory",2011,"Not Reported",37,"Creux du Croue","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24084,169000,"CHE","National Inventory",2011,"Not Reported",37,"Lej da Staz","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24085,169001,"CHE","National Inventory",2011,"Not Reported",37,"Am vordere Parwenge","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24086,169002,"CHE","National Inventory",2011,"Not Reported",37,"Les Tenasses","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24087,169003,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di Cassina di Lago","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24088,347255,"CHE","National Inventory",2011,"Not Reported",37,"Thuner Allmend","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24089,347256,"CHE","National Inventory",2011,"Not Reported",37,"Wyssensee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24090,347257,"CHE","National Inventory",2011,"Not Reported",37,"Im See","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24091,347258,"CHE","National Inventory",2011,"Not Reported",37,"Wissenbachschlucht","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24092,347259,"CHE","National Inventory",2011,"Not Reported",37,"Büeltigen-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24093,347260,"CHE","National Inventory",2011,"Not Reported",37,"Schallenberg Tümpel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24094,347261,"CHE","National Inventory",2011,"Not Reported",37,"Seeli-Egg, Lochsiten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24095,347262,"CHE","National Inventory",2011,"Not Reported",37,"Bärenmoosweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24096,347263,"CHE","National Inventory",2011,"Not Reported",37,"Gwattmösli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24097,347264,"CHE","National Inventory",2011,"Not Reported",37,"Ägelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24098,347265,"CHE","National Inventory",2011,"Not Reported",37,"Buechholz Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24099,347266,"CHE","National Inventory",2011,"Not Reported",37,"Colas Grube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24100,347267,"CHE","National Inventory",2011,"Not Reported",37,"Erlimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24101,347268,"CHE","National Inventory",2011,"Not Reported",37,"Heideweg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24102,347269,"CHE","National Inventory",2011,"Not Reported",37,"Muttli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24103,347270,"CHE","National Inventory",2011,"Not Reported",37,"Cornez de la Mairie","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24104,347271,"CHE","National Inventory",2011,"Not Reported",37,"Schintere Lerchenfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24105,347272,"CHE","National Inventory",2011,"Not Reported",37,"Rottenschwiler Moos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24106,347273,"CHE","National Inventory",2011,"Not Reported",37,"Töniweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24107,347274,"CHE","National Inventory",2011,"Not Reported",37,"Franzosenweiher und Altes Bad","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24108,347275,"CHE","National Inventory",2011,"Not Reported",37,"Kaltacker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24109,347276,"CHE","National Inventory",2011,"Not Reported",37,"Wildenau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24110,347277,"CHE","National Inventory",2011,"Not Reported",37,"Ramoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24111,347278,"CHE","National Inventory",2011,"Not Reported",37,"Ziegelmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24112,347279,"CHE","National Inventory",2011,"Not Reported",37,"Moos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24113,347280,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24114,347281,"CHE","National Inventory",2011,"Not Reported",37,"Schnydere ob Eichholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24115,347282,"CHE","National Inventory",2011,"Not Reported",37,"Breitmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24116,347283,"CHE","National Inventory",2011,"Not Reported",37,"Umiker Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24117,347284,"CHE","National Inventory",2011,"Not Reported",37,"Windischer Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24118,347285,"CHE","National Inventory",2011,"Not Reported",37,"Fröschegräbe","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24119,347286,"CHE","National Inventory",2011,"Not Reported",37,"Ägelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24120,347287,"CHE","National Inventory",2011,"Not Reported",37,"Lochmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24121,347288,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzrain","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24122,347289,"CHE","National Inventory",2011,"Not Reported",37,"Kanderauen bei Mülenen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24123,347290,"CHE","National Inventory",2011,"Not Reported",37,"Etang de Sagne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24124,347291,"CHE","National Inventory",2011,"Not Reported",37,"Lätti Gals","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24125,347292,"CHE","National Inventory",2011,"Not Reported",37,"Nordteil Fanel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24126,347293,"CHE","National Inventory",2011,"Not Reported",37,"Leuschelzmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24127,347294,"CHE","National Inventory",2011,"Not Reported",37,"Inser-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24128,347295,"CHE","National Inventory",2011,"Not Reported",37,"Hahnenmoosbergli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24129,347296,"CHE","National Inventory",2011,"Not Reported",37,"Vieille Birse","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24130,347297,"CHE","National Inventory",2011,"Not Reported",37,"Spittelmatte","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24131,347298,"CHE","National Inventory",2011,"Not Reported",37,"Le Bain, Oversat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24132,347299,"CHE","National Inventory",2011,"Not Reported",37,"Chratzera","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24133,347300,"CHE","National Inventory",2011,"Not Reported",37,"Tümpel östl. Underläger","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24134,347301,"CHE","National Inventory",2011,"Not Reported",37,"Grosse Scheidegg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24135,347302,"CHE","National Inventory",2011,"Not Reported",37,"Mumenthaler Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24136,347303,"CHE","National Inventory",2011,"Not Reported",37,"Vogelraupfi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24137,347304,"CHE","National Inventory",2011,"Not Reported",37,"Friedgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24138,347305,"CHE","National Inventory",2011,"Not Reported",37,"Stirple","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24139,347306,"CHE","National Inventory",2011,"Not Reported",37,"Waldgrube Tannholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24140,347307,"CHE","National Inventory",2011,"Not Reported",37,"Heftihof","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24141,347308,"CHE","National Inventory",2011,"Not Reported",37,"Wehrliau Muribadparkplatz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24142,347309,"CHE","National Inventory",2011,"Not Reported",37,"Mettlenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24143,347310,"CHE","National Inventory",2011,"Not Reported",37,"Leubachbucht, Wohlensee-Nordufer","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24144,347311,"CHE","National Inventory",2011,"Not Reported",37,"Lörmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24145,347312,"CHE","National Inventory",2011,"Not Reported",37,"Mettmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24146,347313,"CHE","National Inventory",2011,"Not Reported",37,"La Marnière","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24147,347314,"CHE","National Inventory",2011,"Not Reported",37,"Widi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24148,347315,"CHE","National Inventory",2011,"Not Reported",37,"Tourbière de la Chaux d'Abel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24149,347316,"CHE","National Inventory",2011,"Not Reported",37,"Tümpel b. Schulhaus","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24150,347317,"CHE","National Inventory",2011,"Not Reported",37,"Tümpel bei Alter Aare Meienried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24151,347318,"CHE","National Inventory",2011,"Not Reported",37,"Wengimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24152,347319,"CHE","National Inventory",2011,"Not Reported",37,"Bermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24153,347320,"CHE","National Inventory",2011,"Not Reported",37,"Grube Hardern","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24154,347321,"CHE","National Inventory",2011,"Not Reported",37,"Sessenais","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24155,347322,"CHE","National Inventory",2011,"Not Reported",37,"Biaufond","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24156,347323,"CHE","National Inventory",2011,"Not Reported",37,"Kieswerk Schopsberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24157,347324,"CHE","National Inventory",2011,"Not Reported",37,"Tägerhau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24158,347325,"CHE","National Inventory",2011,"Not Reported",37,"Weihermatthau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24159,347326,"CHE","National Inventory",2011,"Not Reported",37,"Rüssmatten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24160,347327,"CHE","National Inventory",2011,"Not Reported",37,"Zurlindeninsel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24161,347328,"CHE","National Inventory",2011,"Not Reported",37,"Birristrott","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24162,347329,"CHE","National Inventory",2011,"Not Reported",37,"Ebni","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24163,347330,"CHE","National Inventory",2011,"Not Reported",37,"Ankematt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24164,347331,"CHE","National Inventory",2011,"Not Reported",37,"Ägerten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24165,347332,"CHE","National Inventory",2011,"Not Reported",37,"Chalofe","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24166,347333,"CHE","National Inventory",2011,"Not Reported",37,"Kohlschwärzi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24167,347334,"CHE","National Inventory",2011,"Not Reported",37,"Giriz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24168,347335,"CHE","National Inventory",2011,"Not Reported",37,"Sondermülldeponie","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24169,347336,"CHE","National Inventory",2011,"Not Reported",37,"Grossmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24170,347337,"CHE","National Inventory",2011,"Not Reported",37,"Walisgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24171,347338,"CHE","National Inventory",2011,"Not Reported",37,"Zopfmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24172,347339,"CHE","National Inventory",2011,"Not Reported",37,"Langenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24173,347340,"CHE","National Inventory",2011,"Not Reported",37,"Heuberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24174,347341,"CHE","National Inventory",2011,"Not Reported",37,"Mättenfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24175,347342,"CHE","National Inventory",2011,"Not Reported",37,"Neugüeter","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24176,347343,"CHE","National Inventory",2011,"Not Reported",37,"Unterzelg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24177,347344,"CHE","National Inventory",2011,"Not Reported",37,"Zelgli/Höll","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24178,347345,"CHE","National Inventory",2011,"Not Reported",37,"Fischbacher Moos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24179,347346,"CHE","National Inventory",2011,"Not Reported",37,"Tote Reuss","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24180,347347,"CHE","National Inventory",2011,"Not Reported",37,"Letzi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24181,347348,"CHE","National Inventory",2011,"Not Reported",37,"Graströchni Hard","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24182,347349,"CHE","National Inventory",2011,"Not Reported",37,"Zollester","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24183,347350,"CHE","National Inventory",2011,"Not Reported",37,"Schümel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24184,347351,"CHE","National Inventory",2011,"Not Reported",37,"Dorfrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24185,347352,"CHE","National Inventory",2011,"Not Reported",37,"Forenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24186,347353,"CHE","National Inventory",2011,"Not Reported",37,"Wolfshüsli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24187,347354,"CHE","National Inventory",2011,"Not Reported",37,"Binsenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24188,347355,"CHE","National Inventory",2011,"Not Reported",37,"Steinrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24189,347356,"CHE","National Inventory",2011,"Not Reported",37,"Maiholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24190,347357,"CHE","National Inventory",2011,"Not Reported",37,"Buechhübel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24191,347358,"CHE","National Inventory",2011,"Not Reported",37,"Seematten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24192,347359,"CHE","National Inventory",2011,"Not Reported",37,"Tannenchopf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24193,347360,"CHE","National Inventory",2011,"Not Reported",37,"Chlosteräcker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24194,347361,"CHE","National Inventory",2011,"Not Reported",37,"Hard","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24195,347362,"CHE","National Inventory",2011,"Not Reported",37,"Krähhübel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24196,347363,"CHE","National Inventory",2011,"Not Reported",37,"Breiti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24197,347364,"CHE","National Inventory",2011,"Not Reported",37,"Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24198,347365,"CHE","National Inventory",2011,"Not Reported",37,"Looweiher/Heidenloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24199,347366,"CHE","National Inventory",2011,"Not Reported",37,"Alte Reuss","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24200,347367,"CHE","National Inventory",2011,"Not Reported",37,"Steppberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24201,347368,"CHE","National Inventory",2011,"Not Reported",37,"Egelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24202,347369,"CHE","National Inventory",2011,"Not Reported",37,"Chli Rhy","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24203,347370,"CHE","National Inventory",2011,"Not Reported",37,"Eiholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24204,347371,"CHE","National Inventory",2011,"Not Reported",37,"Stockmösli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24205,347372,"CHE","National Inventory",2011,"Not Reported",37,"Giriz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24206,347373,"CHE","National Inventory",2011,"Not Reported",37,"Schnäggenmatten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24207,347374,"CHE","National Inventory",2011,"Not Reported",37,"Wengernalp Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24208,347376,"CHE","National Inventory",2011,"Not Reported",37,"Schorengrindel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24209,347377,"CHE","National Inventory",2011,"Not Reported",37,"Gippinger Grien","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24210,347378,"CHE","National Inventory",2011,"Not Reported",37,"Sagenmülitäli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24211,347379,"CHE","National Inventory",2011,"Not Reported",37,"Talweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24212,347380,"CHE","National Inventory",2011,"Not Reported",37,"Äbereich","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24213,347381,"CHE","National Inventory",2011,"Not Reported",37,"Burgergrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24214,347382,"CHE","National Inventory",2011,"Not Reported",37,"Schmulzenchopf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24215,347383,"CHE","National Inventory",2011,"Not Reported",37,"Löliweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24216,347384,"CHE","National Inventory",2011,"Not Reported",37,"Birri-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24217,347385,"CHE","National Inventory",2011,"Not Reported",37,"Rütermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24218,347386,"CHE","National Inventory",2011,"Not Reported",37,"Unterrütiweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24219,347387,"CHE","National Inventory",2011,"Not Reported",37,"Sibeneichen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24220,347388,"CHE","National Inventory",2011,"Not Reported",37,"Breitsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24221,347389,"CHE","National Inventory",2011,"Not Reported",37,"Haumättli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24222,347390,"CHE","National Inventory",2011,"Not Reported",37,"Schoren Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24223,347391,"CHE","National Inventory",2011,"Not Reported",37,"Torfmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24224,347392,"CHE","National Inventory",2011,"Not Reported",37,"Stille Reuss","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24225,347393,"CHE","National Inventory",2011,"Not Reported",37,"Oberschachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24226,347394,"CHE","National Inventory",2011,"Not Reported",37,"Walenberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24227,347395,"CHE","National Inventory",2011,"Not Reported",37,"Bleienbacher Torfsee und Sängeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24228,347396,"CHE","National Inventory",2011,"Not Reported",37,"Réserve de Laconnex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24229,347397,"CHE","National Inventory",2011,"Not Reported",37,"Marais des Crêts","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24230,347399,"CHE","National Inventory",2011,"Not Reported",37,"Teppes de Verbois","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24231,347400,"CHE","National Inventory",2011,"Not Reported",37,"Bois des Douves","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24232,347401,"CHE","National Inventory",2011,"Not Reported",37,"Prés de Villette","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24233,347402,"CHE","National Inventory",2011,"Not Reported",37,"Marais du Château","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24234,347403,"CHE","National Inventory",2011,"Not Reported",37,"L'Allondon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24235,347404,"CHE","National Inventory",2011,"Not Reported",37,"Talsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24236,347405,"CHE","National Inventory",2011,"Not Reported",37,"Niederriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24237,347406,"CHE","National Inventory",2011,"Not Reported",37,"Klöntalersee Nordostufer","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24238,347407,"CHE","National Inventory",2011,"Not Reported",37,"Oberblegisee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24239,347408,"CHE","National Inventory",2011,"Not Reported",37,"Feldbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24240,347409,"CHE","National Inventory",2011,"Not Reported",37,"Klöntalersee Vorauen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24241,347410,"CHE","National Inventory",2011,"Not Reported",37,"Vieux Bois","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24242,347411,"CHE","National Inventory",2011,"Not Reported",37,"Le Mouret","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24243,347412,"CHE","National Inventory",2011,"Not Reported",37,"Vuibroye","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24244,347413,"CHE","National Inventory",2011,"Not Reported",37,"Poutes Paluds","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24245,347414,"CHE","National Inventory",2011,"Not Reported",37,"Le Liti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24246,347415,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves, Gletterens - Portalban","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24247,347416,"CHE","National Inventory",2011,"Not Reported",37,"Gros Chadoua","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24248,347417,"CHE","National Inventory",2011,"Not Reported",37,"Le Mongeron","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24249,347419,"CHE","National Inventory",2011,"Not Reported",37,"Le Taconnet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24250,347420,"CHE","National Inventory",2011,"Not Reported",37,"Duigls","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24251,347421,"CHE","National Inventory",2011,"Not Reported",37,"La Tuilerie","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24252,347422,"CHE","National Inventory",2011,"Not Reported",37,"Bois des Mouilles","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24253,347423,"CHE","National Inventory",2011,"Not Reported",37,"La Petite Grave","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24254,347424,"CHE","National Inventory",2011,"Not Reported",37,"Moulin de Vert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24255,347425,"CHE","National Inventory",2011,"Not Reported",37,"Raclerets","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24256,347426,"CHE","National Inventory",2011,"Not Reported",37,"Pointe à la Bise","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24257,347427,"CHE","National Inventory",2011,"Not Reported",37,"Le Lity","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24258,347428,"CHE","National Inventory",2011,"Not Reported",37,"Pro Niev","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24259,347429,"CHE","National Inventory",2011,"Not Reported",37,"Isla","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24260,347430,"CHE","National Inventory",2011,"Not Reported",37,"Ellwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24261,347431,"CHE","National Inventory",2011,"Not Reported",37,"Zizerser Gumpen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24262,347432,"CHE","National Inventory",2011,"Not Reported",37,"Girsch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24263,347433,"CHE","National Inventory",2011,"Not Reported",37,"Bregl","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24264,347434,"CHE","National Inventory",2011,"Not Reported",37,"Länder","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24265,347435,"CHE","National Inventory",2011,"Not Reported",37,"Lais da Pesch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24266,347436,"CHE","National Inventory",2011,"Not Reported",37,"Alp da Razen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24267,347437,"CHE","National Inventory",2011,"Not Reported",37,"Liger Alp Falätscha","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24268,347438,"CHE","National Inventory",2011,"Not Reported",37,"Sayser See","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24269,347439,"CHE","National Inventory",2011,"Not Reported",37,"Punt Planet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24270,347440,"CHE","National Inventory",2011,"Not Reported",37,"Flin","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24271,347441,"CHE","National Inventory",2011,"Not Reported",37,"Lag Miert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24272,347442,"CHE","National Inventory",2011,"Not Reported",37,"Tola","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24273,347443,"CHE","National Inventory",2011,"Not Reported",37,"Fröschaboda Val Madris","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24274,347444,"CHE","National Inventory",2011,"Not Reported",37,"Palüds - Agnas","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24275,347445,"CHE","National Inventory",2011,"Not Reported",37,"Rutisc Tonghi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24276,347446,"CHE","National Inventory",2011,"Not Reported",37,"Pra-les-Bous","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24277,347447,"CHE","National Inventory",2011,"Not Reported",37,"Plan da Chomps","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24278,347448,"CHE","National Inventory",2011,"Not Reported",37,"Craistas","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24279,347449,"CHE","National Inventory",2011,"Not Reported",37,"Ischlas da Strada","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24280,347450,"CHE","National Inventory",2011,"Not Reported",37,"Lai da Juata","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24281,347451,"CHE","National Inventory",2011,"Not Reported",37,"Lai da Valpaschun","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24282,347452,"CHE","National Inventory",2011,"Not Reported",37,"Siechenstuden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24283,347453,"CHE","National Inventory",2011,"Not Reported",37,"Schler da Podestà","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24284,347454,"CHE","National Inventory",2011,"Not Reported",37,"Malixer Alp","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24285,347455,"CHE","National Inventory",2011,"Not Reported",37,"Crest'Ota","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24286,347456,"CHE","National Inventory",2011,"Not Reported",37,"Pian di Alne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24287,347457,"CHE","National Inventory",2011,"Not Reported",37,"Ils Lags Alp Ramosa","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24288,347458,"CHE","National Inventory",2011,"Not Reported",37,"Ogna da Pardiala","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24289,347459,"CHE","National Inventory",2011,"Not Reported",37,"Plaun da Foppas","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24290,347460,"CHE","National Inventory",2011,"Not Reported",37,"Lag digl Oberst","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24291,347461,"CHE","National Inventory",2011,"Not Reported",37,"Lai da Tarasp","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24292,347462,"CHE","National Inventory",2011,"Not Reported",37,"Plaun Schumpeder","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24293,347463,"CHE","National Inventory",2011,"Not Reported",37,"Juchli Käserstatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24294,347464,"CHE","National Inventory",2011,"Not Reported",37,"Römerareal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24295,347465,"CHE","National Inventory",2011,"Not Reported",37,"Reservat Gryfeberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24296,347466,"CHE","National Inventory",2011,"Not Reported",37,"Elfenaureservat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24297,347467,"CHE","National Inventory",2011,"Not Reported",37,"Waldgrube Scheuren, Orpundinsel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24298,347468,"CHE","National Inventory",2011,"Not Reported",37,"Grien nordwestl. Dotzigen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24299,347469,"CHE","National Inventory",2011,"Not Reported",37,"Ägelsee-Moor","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24300,347470,"CHE","National Inventory",2011,"Not Reported",37,"Weiher ob Ottenleuebad","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24301,347471,"CHE","National Inventory",2011,"Not Reported",37,"Au-Gand Kander","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24302,347472,"CHE","National Inventory",2011,"Not Reported",37,"Les Chaufours","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24303,347473,"CHE","National Inventory",2011,"Not Reported",37,"Weiher am Fuss der Gryde","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24304,347474,"CHE","National Inventory",2011,"Not Reported",37,"Weiher am Rüschbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24305,347475,"CHE","National Inventory",2011,"Not Reported",37,"Riedgebiet Saligrabe","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24306,347476,"CHE","National Inventory",2011,"Not Reported",37,"Lauenensee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24307,347477,"CHE","National Inventory",2011,"Not Reported",37,"Weiher Obere Brüesche","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24308,347478,"CHE","National Inventory",2011,"Not Reported",37,"Petite Sarine","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24309,347479,"CHE","National Inventory",2011,"Not Reported",37,"Flachmoor Oberste Gurbs","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24310,347480,"CHE","National Inventory",2011,"Not Reported",37,"Oltigenmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24311,347481,"CHE","National Inventory",2011,"Not Reported",37,"Weissenau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24312,347482,"CHE","National Inventory",2011,"Not Reported",37,"Neuenzälgau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24313,347483,"CHE","National Inventory",2011,"Not Reported",37,"Märchligenau-Flühli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24314,347484,"CHE","National Inventory",2011,"Not Reported",37,"Schmittenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24315,347485,"CHE","National Inventory",2011,"Not Reported",37,"Kleinhöchstettenau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24316,347486,"CHE","National Inventory",2011,"Not Reported",37,"Feuerweiher Houti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24317,347487,"CHE","National Inventory",2011,"Not Reported",37,"Grube uf der Hole","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24318,347488,"CHE","National Inventory",2011,"Not Reported",37,"Alte Kiesgrube Schwarzhäusern","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24319,347489,"CHE","National Inventory",2011,"Not Reported",37,"Le Châtelet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24320,347490,"CHE","National Inventory",2011,"Not Reported",37,"Röselisee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24321,347491,"CHE","National Inventory",2011,"Not Reported",37,"Mont Girod 1","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24322,347492,"CHE","National Inventory",2011,"Not Reported",37,"Lac Vert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24323,347493,"CHE","National Inventory",2011,"Not Reported",37,"Chlyrot Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24324,347494,"CHE","National Inventory",2011,"Not Reported",37,"Mont Girod 2","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24325,347495,"CHE","National Inventory",2011,"Not Reported",37,"La Noz, tourbière de La Sagne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24326,347496,"CHE","National Inventory",2011,"Not Reported",37,"Fischbächen Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24327,347497,"CHE","National Inventory",2011,"Not Reported",37,"Rüfenachtmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24328,347498,"CHE","National Inventory",2011,"Not Reported",37,"Lac des Joncs","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24329,347499,"CHE","National Inventory",2011,"Not Reported",37,"Auried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24330,347500,"CHE","National Inventory",2011,"Not Reported",37,"Ehemalige Kiesgrube Reben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24331,347501,"CHE","National Inventory",2011,"Not Reported",37,"Saaneboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24332,347502,"CHE","National Inventory",2011,"Not Reported",37,"Stöckholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24333,347503,"CHE","National Inventory",2011,"Not Reported",37,"Düdingermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24334,347504,"CHE","National Inventory",2011,"Not Reported",37,"Rohrmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24335,347505,"CHE","National Inventory",2011,"Not Reported",37,"Tümpel Hornberg Läger","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24336,347506,"CHE","National Inventory",2011,"Not Reported",37,"Entenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24337,347507,"CHE","National Inventory",2011,"Not Reported",37,"Les Nex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24338,347508,"CHE","National Inventory",2011,"Not Reported",37,"La Grève, la Grande Gouille","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24339,347509,"CHE","National Inventory",2011,"Not Reported",37,"La Grève, Autavaux - Forel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24340,347510,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves, Cheyres sud","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24341,347511,"CHE","National Inventory",2011,"Not Reported",37,"Les Grèves, Cheyres - Font","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24342,347512,"CHE","National Inventory",2011,"Not Reported",37,"Ancienne carrière Les Saus","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24343,347513,"CHE","National Inventory",2011,"Not Reported",37,"Eggimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24344,347514,"CHE","National Inventory",2011,"Not Reported",37,"Nümatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24345,347515,"CHE","National Inventory",2011,"Not Reported",37,"Uf Sal Tonwarenfabrik","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24346,347516,"CHE","National Inventory",2011,"Not Reported",37,"Waldgass-Grube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24347,347517,"CHE","National Inventory",2011,"Not Reported",37,"Aareaue bei Jägerheim","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24348,347518,"CHE","National Inventory",2011,"Not Reported",37,"Belpau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24349,347519,"CHE","National Inventory",2011,"Not Reported",37,"Fischzuchtteich Gurnigelbad","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24350,347520,"CHE","National Inventory",2011,"Not Reported",37,"Talweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24351,347521,"CHE","National Inventory",2011,"Not Reported",37,"Bammertsgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24352,347522,"CHE","National Inventory",2011,"Not Reported",37,"Sur Plian, Les Cases","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24353,347523,"CHE","National Inventory",2011,"Not Reported",37,"Ziegelei Oberwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24354,347524,"CHE","National Inventory",2011,"Not Reported",37,"Les Dailles","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24355,347525,"CHE","National Inventory",2011,"Not Reported",37,"Steinbruch Andil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24356,347526,"CHE","National Inventory",2011,"Not Reported",37,"Steingrube Bohlberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24357,347527,"CHE","National Inventory",2011,"Not Reported",37,"Buechloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24358,347528,"CHE","National Inventory",2011,"Not Reported",37,"Mooswasen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24359,347529,"CHE","National Inventory",2011,"Not Reported",37,"Autal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24360,347530,"CHE","National Inventory",2011,"Not Reported",37,"Eisweiher und Wiesenmatten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24361,347531,"CHE","National Inventory",2011,"Not Reported",37,"Overesses","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24362,347532,"CHE","National Inventory",2011,"Not Reported",37,"Herzogenmatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24363,347533,"CHE","National Inventory",2011,"Not Reported",37,"Glacier de Zinal","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24364,347534,"CHE","National Inventory",2011,"Not Reported",37,"Vadret da Fenga """"Süd""""","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24365,347535,"CHE","National Inventory",2011,"Not Reported",37,"Ova dal Fuorn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24366,347536,"CHE","National Inventory",2011,"Not Reported",37,"Glatscher da Gavirolas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24367,347537,"CHE","National Inventory",2011,"Not Reported",37,"Hüfifirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24368,347538,"CHE","National Inventory",2011,"Not Reported",37,"Brunnifirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24369,347539,"CHE","National Inventory",2011,"Not Reported",37,"Vadret Vallorgia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24370,347540,"CHE","National Inventory",2011,"Not Reported",37,"Isola / Plan Grand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24371,347541,"CHE","National Inventory",2011,"Not Reported",37,"Silvrettagletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24372,347542,"CHE","National Inventory",2011,"Not Reported",37,"Alp Val Tenigia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24373,347543,"CHE","National Inventory",2011,"Not Reported",37,"Vadrec da la Bondasca","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24374,347544,"CHE","National Inventory",2011,"Not Reported",37,"Vadrec del Forno","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24375,347545,"CHE","National Inventory",2011,"Not Reported",37,"Tambogletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24376,347546,"CHE","National Inventory",2011,"Not Reported",37,"Paradiesgletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24377,347547,"CHE","National Inventory",2011,"Not Reported",37,"Canal Gletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24378,347548,"CHE","National Inventory",2011,"Not Reported",37,"Fanellgletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24379,347549,"CHE","National Inventory",2011,"Not Reported",37,"Vadret da Grialetsch","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24380,347550,"CHE","National Inventory",2011,"Not Reported",37,"Vezio - Aranno","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24381,347551,"CHE","National Inventory",2011,"Not Reported",37,"Chiggiogna - Lavorgo","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24382,347552,"CHE","National Inventory",2011,"Not Reported",37,"Biaschina - Giornico","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24383,347553,"CHE","National Inventory",2011,"Not Reported",37,"Fontane","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24384,347554,"CHE","National Inventory",2011,"Not Reported",37,"Madra","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24385,347555,"CHE","National Inventory",2011,"Not Reported",37,"Calnegia","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24386,347556,"CHE","National Inventory",2011,"Not Reported",37,"Mött di Tirman","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24387,347557,"CHE","National Inventory",2011,"Not Reported",37,"Ova da Roseg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24388,347558,"CHE","National Inventory",2011,"Not Reported",37,"Ruscada","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24389,347559,"CHE","National Inventory",2011,"Not Reported",37,"Langgletscher / Jegigletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24390,347560,"CHE","National Inventory",2011,"Not Reported",37,"Caslano","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24391,347561,"CHE","National Inventory",2011,"Not Reported",37,"Goldachtobel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24392,347562,"CHE","National Inventory",2011,"Not Reported",37,"Ampferenboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24393,347563,"CHE","National Inventory",2011,"Not Reported",37,"Schilstal / Sand","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24394,347564,"CHE","National Inventory",2011,"Not Reported",37,"Rheinau / Cholau","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24395,347565,"CHE","National Inventory",2011,"Not Reported",37,"Sarelli - Rosenbergli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24396,347566,"CHE","National Inventory",2011,"Not Reported",37,"Sonogno - Brione","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24397,347567,"CHE","National Inventory",2011,"Not Reported",37,"Vadrec da Fedoz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24398,347568,"CHE","National Inventory",2011,"Not Reported",37,"Diechtergletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24399,347569,"CHE","National Inventory",2011,"Not Reported",37,"Rhonegletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24400,347570,"CHE","National Inventory",2011,"Not Reported",37,"Rosenlauigletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24401,347571,"CHE","National Inventory",2011,"Not Reported",37,"Tiefengletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24402,347572,"CHE","National Inventory",2011,"Not Reported",37,"Dammagletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24403,347573,"CHE","National Inventory",2011,"Not Reported",37,"Chelengletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24404,347574,"CHE","National Inventory",2011,"Not Reported",37,"Ghiacciaio del Basòdino W","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24405,347575,"CHE","National Inventory",2011,"Not Reported",37,"Wallenburnfirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24406,347576,"CHE","National Inventory",2011,"Not Reported",37,"Glacier de Cheilon","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24407,347577,"CHE","National Inventory",2011,"Not Reported",37,"Vadret da Roseg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24408,347578,"CHE","National Inventory",2011,"Not Reported",37,"Vadret da Morteratsch","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24409,347579,"CHE","National Inventory",2011,"Not Reported",37,"Glatscher da Plattas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24410,347580,"CHE","National Inventory",2011,"Not Reported",37,"Glatscher da Lavaz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24411,347581,"CHE","National Inventory",2011,"Not Reported",37,"Vadret da Porchabella","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24412,347582,"CHE","National Inventory",2011,"Not Reported",37,"Bösimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24413,347583,"CHE","National Inventory",2011,"Not Reported",37,"Kartigelfirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24414,347584,"CHE","National Inventory",2011,"Not Reported",37,"Feegletscher N","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24415,347585,"CHE","National Inventory",2011,"Not Reported",37,"Stäuberboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24416,347586,"CHE","National Inventory",2011,"Not Reported",37,"Üssre Baltschiedergletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24417,347587,"CHE","National Inventory",2011,"Not Reported",37,"Kanderfirn","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24418,347588,"CHE","National Inventory",2011,"Not Reported",37,"Wildstrubelgletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24419,347589,"CHE","National Inventory",2011,"Not Reported",37,"Rezligletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24420,347590,"CHE","National Inventory",2011,"Not Reported",37,"Geltengletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24421,347591,"CHE","National Inventory",2011,"Not Reported",37,"Gauligletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24422,347592,"CHE","National Inventory",2011,"Not Reported",37,"Hohlichtgletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24423,347593,"CHE","National Inventory",2011,"Not Reported",37,"Grand Désert","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24424,347594,"CHE","National Inventory",2011,"Not Reported",37,"Abberggletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24425,347595,"CHE","National Inventory",2011,"Not Reported",37,"Glacier de Valsorey","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24426,347596,"CHE","National Inventory",2011,"Not Reported",37,"Glacier d'Otemma","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24427,347597,"CHE","National Inventory",2011,"Not Reported",37,"Glacier du Brenay","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24428,347598,"CHE","National Inventory",2011,"Not Reported",37,"Glacier du Petit Combin","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24429,347599,"CHE","National Inventory",2011,"Not Reported",37,"Glacier de Corbassière","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24430,347600,"CHE","National Inventory",2011,"Not Reported",37,"Ofental Gletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24431,347601,"CHE","National Inventory",2011,"Not Reported",37,"Triftgletscher VS","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24432,347602,"CHE","National Inventory",2011,"Not Reported",37,"Loomettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24433,347603,"CHE","National Inventory",2011,"Not Reported",37,"Muotta da Güvè","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24434,347604,"CHE","National Inventory",2011,"Not Reported",37,"Son Roc","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24435,347605,"CHE","National Inventory",2011,"Not Reported",37,"Nursera","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24436,347606,"CHE","National Inventory",2011,"Not Reported",37,"Caritsch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24437,347607,"CHE","National Inventory",2011,"Not Reported",37,"Pascuminer See / Bischolsee","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24438,347608,"CHE","National Inventory",2011,"Not Reported",37,"Kristalloch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24439,347609,"CHE","National Inventory",2011,"Not Reported",37,"Unter dem Heidberistöckli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24440,347610,"CHE","National Inventory",2011,"Not Reported",37,"Zopf","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24441,347611,"CHE","National Inventory",2011,"Not Reported",37,"Längriet","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24442,347612,"CHE","National Inventory",2011,"Not Reported",37,"Nassboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24443,347613,"CHE","National Inventory",2011,"Not Reported",37,"Lengenschwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24444,347614,"CHE","National Inventory",2011,"Not Reported",37,"Bärmettlen","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24445,347615,"CHE","National Inventory",2011,"Not Reported",37,"Witi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24446,347616,"CHE","National Inventory",2011,"Not Reported",37,"Hüenergütsch","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24447,347617,"CHE","National Inventory",2011,"Not Reported",37,"Ghirone","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24448,347618,"CHE","National Inventory",2011,"Not Reported",37,"Buholzer Schwändi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24449,347619,"CHE","National Inventory",2011,"Not Reported",37,"Harzisboden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24450,347620,"CHE","National Inventory",2011,"Not Reported",37,"Wissenbach","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24451,347621,"CHE","National Inventory",2011,"Not Reported",37,"Clairbief","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24452,347622,"CHE","National Inventory",2011,"Not Reported",37,"Le Chablais","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24453,347623,"CHE","National Inventory",2011,"Not Reported",37,"Embouchure du Chandon","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24454,347624,"CHE","National Inventory",2011,"Not Reported",37,"Embouchure de la Broye","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24455,347625,"CHE","National Inventory",2011,"Not Reported",37,"Solalex","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24456,347626,"CHE","National Inventory",2011,"Not Reported",37,"Plustorna","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24457,347627,"CHE","National Inventory",2011,"Not Reported",37,"Moore bei Unter Hungerschwand","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24458,347628,"CHE","National Inventory",2011,"Not Reported",37,"Alp de Mem - Bosch Mosghé","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24459,347629,"CHE","National Inventory",2011,"Not Reported",37,"Grüöbiwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24460,347630,"CHE","National Inventory",2011,"Not Reported",37,"Moore westlich Bütlerschwandgraben","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24461,347631,"CHE","National Inventory",2011,"Not Reported",37,"Witiwald/Dälenwald","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24462,347632,"CHE","National Inventory",2011,"Not Reported",37,"Wusta","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24463,347633,"CHE","National Inventory",2011,"Not Reported",37,"Pré aux Oies","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24464,347634,"CHE","National Inventory",2011,"Not Reported",37,"Marais au nord du Petit Niremont","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24465,347635,"CHE","National Inventory",2011,"Not Reported",37,"Aelggäu","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24466,347636,"CHE","National Inventory",2011,"Not Reported",37,"Iles de Bogis","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24467,347637,"CHE","National Inventory",2011,"Not Reported",37,"Oberglatt","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24468,347638,"CHE","National Inventory",2011,"Not Reported",37,"Möriken - Wildegg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24469,347639,"CHE","National Inventory",2011,"Not Reported",37,"Unterer Schiltwald","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24470,347640,"CHE","National Inventory",2011,"Not Reported",37,"Badhus - Graben","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24471,347641,"CHE","National Inventory",2011,"Not Reported",37,"Entlental","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24472,347642,"CHE","National Inventory",2011,"Not Reported",37,"Flühli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24473,347643,"CHE","National Inventory",2011,"Not Reported",37,"Bibermüli","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24474,347644,"CHE","National Inventory",2011,"Not Reported",37,"Nördlich Haldimattstock","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24475,347645,"CHE","National Inventory",2011,"Not Reported",37,"Dättlikon - Freienstein","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24476,347646,"CHE","National Inventory",2011,"Not Reported",37,"Gastere bei Selden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24477,347647,"CHE","National Inventory",2011,"Not Reported",37,"Grosstal","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24478,347648,"CHE","National Inventory",2011,"Not Reported",37,"Unterschächen - Spiringen","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24479,347649,"CHE","National Inventory",2011,"Not Reported",37,"Alpenrösli - Herrenrüti","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24480,347650,"CHE","National Inventory",2011,"Not Reported",37,"Altboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24481,347651,"CHE","National Inventory",2011,"Not Reported",37,"Gorneren","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24482,347652,"CHE","National Inventory",2011,"Not Reported",37,"Glatschiu dil Segnas","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24483,347653,"CHE","National Inventory",2011,"Not Reported",37,"Freienstein - Tössegg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24484,347654,"CHE","National Inventory",2011,"Not Reported",37,"Kalte Sense","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24485,347655,"CHE","National Inventory",2011,"Not Reported",37,"Westlich Längenegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24486,347656,"CHE","National Inventory",2011,"Not Reported",37,"Hinter den Weiden","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24487,347657,"CHE","National Inventory",2011,"Not Reported",37,"Fuederegg","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24488,347658,"CHE","National Inventory",2011,"Not Reported",37,"Piei Bachei","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24489,347659,"CHE","National Inventory",2011,"Not Reported",37,"Unter Wängi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24490,347660,"CHE","National Inventory",2011,"Not Reported",37,"Sèche de Gimel","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24491,347661,"CHE","National Inventory",2011,"Not Reported",37,"Ganzenlouwina","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24492,347662,"CHE","National Inventory",2011,"Not Reported",37,"Lac de Montsalvens","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24493,347663,"CHE","National Inventory",2011,"Not Reported",37,"Tschingel","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24494,347664,"CHE","National Inventory",2011,"Not Reported",37,"Ober Gründli","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24495,347665,"CHE","National Inventory",2011,"Not Reported",37,"Emmeschlucht","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24496,347666,"CHE","National Inventory",2011,"Not Reported",37,"Harzisboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24497,347667,"CHE","National Inventory",2011,"Not Reported",37,"Rezliberg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24498,347668,"CHE","National Inventory",2011,"Not Reported",37,"Hornbrügg","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24499,347669,"CHE","National Inventory",2011,"Not Reported",37,"Lochweid","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24500,347670,"CHE","National Inventory",2011,"Not Reported",37,"Unteralp","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24501,347671,"CHE","National Inventory",2011,"Not Reported",37,"Barme","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24502,347673,"CHE","National Inventory",2011,"Not Reported",37,"Vadret da Palü","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24503,347706,"CHE","National Inventory",2011,"Not Reported",37,"Weiher im Tal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24504,347707,"CHE","National Inventory",2011,"Not Reported",37,"Hegnau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24505,347708,"CHE","National Inventory",2011,"Not Reported",37,"Schwand","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24506,347709,"CHE","National Inventory",2011,"Not Reported",37,"Haldengutweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24507,347710,"CHE","National Inventory",2011,"Not Reported",37,"Auschachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24508,347711,"CHE","National Inventory",2011,"Not Reported",37,"Lostorf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24509,347712,"CHE","National Inventory",2011,"Not Reported",37,"Burger Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24510,347714,"CHE","National Inventory",2011,"Not Reported",37,"Mattenplätz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24511,347715,"CHE","National Inventory",2011,"Not Reported",37,"Feldenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24512,347716,"CHE","National Inventory",2011,"Not Reported",37,"Halbmond","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24513,347717,"CHE","National Inventory",2011,"Not Reported",37,"Butzenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24514,347718,"CHE","National Inventory",2011,"Not Reported",37,"Bremengrien","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24515,347719,"CHE","National Inventory",2011,"Not Reported",37,"Folenweid","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24516,347720,"CHE","National Inventory",2011,"Not Reported",37,"Lindimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24517,347721,"CHE","National Inventory",2011,"Not Reported",37,"Dickhölzli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24518,347722,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Egg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24519,347730,"CHE","National Inventory",2011,"Not Reported",37,"Fischergrien","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24520,347732,"CHE","National Inventory",2011,"Not Reported",37,"Niedermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24521,347737,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Im Türli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24522,347741,"CHE","National Inventory",2011,"Not Reported",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24523,347742,"CHE","National Inventory",2011,"Not Reported",37,"Gontenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24524,347743,"CHE","National Inventory",2011,"Not Reported",37,"Gontenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24525,347744,"CHE","National Inventory",2011,"Not Reported",37,"Gontenmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24526,347745,"CHE","National Inventory",2011,"Not Reported",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24527,347746,"CHE","National Inventory",2011,"Not Reported",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24528,347747,"CHE","National Inventory",2011,"Not Reported",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24529,347748,"CHE","National Inventory",2011,"Not Reported",37,"Seewadel","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24530,347749,"CHE","National Inventory",2011,"Not Reported",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24531,347750,"CHE","National Inventory",2011,"Not Reported",37,"Glatscher Davos la Buora","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24532,347751,"CHE","National Inventory",2011,"Not Reported",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24533,347752,"CHE","National Inventory",2011,"Not Reported",37,"Hudelmoos (TG)","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24534,347753,"CHE","National Inventory",2011,"Not Reported",37,"Moore südlich Habchegg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24535,347754,"CHE","National Inventory",2011,"Not Reported",37,"Potersalp","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24536,347755,"CHE","National Inventory",2011,"Not Reported",37,"Rongg","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24537,347757,"CHE","National Inventory",2011,"Not Reported",37,"Grèves du lac","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24538,347758,"CHE","National Inventory",2011,"Not Reported",37,"Bergalga","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24539,347759,"CHE","National Inventory",2011,"Not Reported",37,"Val Frisal","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24540,347760,"CHE","National Inventory",2011,"Not Reported",37,"Oberstafelbach","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24541,347761,"CHE","National Inventory",2011,"Not Reported",37,"Rabiusa Engi","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24542,347762,"CHE","National Inventory",2011,"Not Reported",37,"Pradatsch, Val Plavna","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24543,347763,"CHE","National Inventory",2011,"Not Reported",37,"Plaun Segnas Sut","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24544,347764,"CHE","National Inventory",2011,"Not Reported",37,"Plaun la Greina","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24545,347765,"CHE","National Inventory",2011,"Not Reported",37,"Rischi","Federal Inventory of Raised and Transitional Mires of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24546,347766,"CHE","National Inventory",2011,"Not Reported",37,"Bächlisboden","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24547,347767,"CHE","National Inventory",2011,"Not Reported",37,"Broc","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24548,347768,"CHE","National Inventory",2011,"Not Reported",37,"Ragn d'Err","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24549,347769,"CHE","National Inventory",2011,"Not Reported",37,"Plaun Vadret, Val Fex","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24550,347770,"CHE","National Inventory",2011,"Not Reported",37,"Engstligenalp","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24551,347771,"CHE","National Inventory",2011,"Not Reported",37,"Spittelmatte","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24552,347772,"CHE","National Inventory",2011,"Not Reported",37,"Gamchigletscher","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24553,347773,"CHE","National Inventory",2011,"Not Reported",37,"Aua da Fedoz","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24554,347775,"CHE","National Inventory",2011,"Not Reported",37,"Lampertschalp","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24555,347783,"CHE","National Inventory",2011,"Not Reported",37,"Turpenriet / Torf-Riet","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24556,347791,"CHE","National Inventory",2011,"Not Reported",37,"Rotenbach","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24557,347811,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Rhinauer Feld und Oberboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24558,347813,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Härdli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24559,347814,"CHE","National Inventory",2011,"Not Reported",37,"Raffoltersee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24560,347815,"CHE","National Inventory",2011,"Not Reported",37,"Laichgebiet Lorzespitz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24561,347816,"CHE","National Inventory",2011,"Not Reported",37,"Weiher bei Hermatswil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24562,347817,"CHE","National Inventory",2011,"Not Reported",37,"Feuerweiher am Homberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24563,347818,"CHE","National Inventory",2011,"Not Reported",37,"Biotop bei NOK Breite","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24564,347819,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube SW Runsberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24565,347820,"CHE","National Inventory",2011,"Not Reported",37,"Schützenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24566,347821,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Ebnet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24567,347822,"CHE","National Inventory",2011,"Not Reported",37,"Russiker Ried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24568,347823,"CHE","National Inventory",2011,"Not Reported",37,"Gruben Hard und Gubel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24569,347824,"CHE","National Inventory",2011,"Not Reported",37,"Weiher Gütighausen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24570,347825,"CHE","National Inventory",2011,"Not Reported",37,"Truttiker Ried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24571,347826,"CHE","National Inventory",2011,"Not Reported",37,"Seewädeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24572,347827,"CHE","National Inventory",2011,"Not Reported",37,"Chatzensee, Chräenriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24573,347828,"CHE","National Inventory",2011,"Not Reported",37,"Waldried Homberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24574,347829,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Hasel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24575,347830,"CHE","National Inventory",2011,"Not Reported",37,"Írmis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24576,347831,"CHE","National Inventory",2011,"Not Reported",37,"Ried Schlimberg/Vogelholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24577,347832,"CHE","National Inventory",2011,"Not Reported",37,"Laichgebiet Bogen-Mesikon-Brand","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24578,347833,"CHE","National Inventory",2011,"Not Reported",37,"Ried südl. Uerzlikon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24579,347834,"CHE","National Inventory",2011,"Not Reported",37,"Alter Torfstich im Hagenholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24580,347835,"CHE","National Inventory",2011,"Not Reported",37,"Glattaltlaufgebiet Schlosswinkel-Peterli-Solachten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24581,347836,"CHE","National Inventory",2011,"Not Reported",37,"Enteler-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24582,347837,"CHE","National Inventory",2011,"Not Reported",37,"Hoperenried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24583,347838,"CHE","National Inventory",2011,"Not Reported",37,"Lehmgrube beim Gwerfihölzli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24584,347839,"CHE","National Inventory",2011,"Not Reported",37,"Mülichrammweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24585,347840,"CHE","National Inventory",2011,"Not Reported",37,"Elliker Auen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24586,347841,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Grischei","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24587,347842,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Hinterfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24588,347843,"CHE","National Inventory",2011,"Not Reported",37,"Biotop Süessplätz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24589,347844,"CHE","National Inventory",2011,"Not Reported",37,"Mördersee und Pfaffensee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24590,347846,"CHE","National Inventory",2011,"Not Reported",37,"Wolfsgrueb","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24591,347848,"CHE","National Inventory",2011,"Not Reported",37,"Grube Gündelhart","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24592,347850,"CHE","National Inventory",2011,"Not Reported",37,"Räubrichseen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24593,347852,"CHE","National Inventory",2011,"Not Reported",37,"Torfstiche im Seewadel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24594,347854,"CHE","National Inventory",2011,"Not Reported",37,"Espen Riet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24595,347855,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Buchbrunnen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24596,347857,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Büelhüsli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24597,347858,"CHE","National Inventory",2011,"Not Reported",37,"Wolfhöhli/Chüelespitz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24598,347860,"CHE","National Inventory",2011,"Not Reported",37,"Schlossried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24599,347861,"CHE","National Inventory",2011,"Not Reported",37,"Weierwies","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24600,347862,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Rosengarten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24601,347863,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Ebertswil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24602,347864,"CHE","National Inventory",2011,"Not Reported",37,"Grube Seefeld und Stopperweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24603,347865,"CHE","National Inventory",2011,"Not Reported",37,"Grabenriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24604,347866,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Kindhausen (Blutzwies)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24605,347867,"CHE","National Inventory",2011,"Not Reported",37,"Wollwisli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24606,347868,"CHE","National Inventory",2011,"Not Reported",37,"Weiher Lochrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24607,347869,"CHE","National Inventory",2011,"Not Reported",37,"Seerhein Chuehorn - Paradies","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24608,347870,"CHE","National Inventory",2011,"Not Reported",37,"Ambitzgi-/Bönlerried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24609,347877,"CHE","National Inventory",2011,"Not Reported",37,"Schaarenwies/Schaarenwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24610,347878,"CHE","National Inventory",2011,"Not Reported",37,"Werriker-/Glattenried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24611,347879,"CHE","National Inventory",2011,"Not Reported",37,"Robenhauserried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24612,347880,"CHE","National Inventory",2011,"Not Reported",37,"Pfyn West","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24613,347881,"CHE","National Inventory",2011,"Not Reported",37,"Bendes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24614,347882,"CHE","National Inventory",2011,"Not Reported",37,"Les Echelettes, La Léchère","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24615,347883,"CHE","National Inventory",2011,"Not Reported",37,"Grand Marais","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24616,347884,"CHE","National Inventory",2011,"Not Reported",37,"Les Mossières","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24617,347885,"CHE","National Inventory",2011,"Not Reported",37,"Borire, Corjon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24618,347886,"CHE","National Inventory",2011,"Not Reported",37,"Lac Coffy, Bois Ramel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24619,347887,"CHE","National Inventory",2011,"Not Reported",37,"Le Malévoz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24620,347888,"CHE","National Inventory",2011,"Not Reported",37,"Montagne de l'Au","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24621,347889,"CHE","National Inventory",2011,"Not Reported",37,"Prés de Rosex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24622,347890,"CHE","National Inventory",2011,"Not Reported",37,"Lac de Mont d'Orge","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24623,347891,"CHE","National Inventory",2011,"Not Reported",37,"Pfyn Ost, Rosensee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24624,347892,"CHE","National Inventory",2011,"Not Reported",37,"Bonigersee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24625,347893,"CHE","National Inventory",2011,"Not Reported",37,"Bettmeralp","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24626,347894,"CHE","National Inventory",2011,"Not Reported",37,"Chiebodenstafel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24627,347895,"CHE","National Inventory",2011,"Not Reported",37,"Erlenhofweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24628,347896,"CHE","National Inventory",2011,"Not Reported",37,"Lac de Tanay","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24629,347897,"CHE","National Inventory",2011,"Not Reported",37,"Grand Bataillard, Marais de la Versoix","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24630,347898,"CHE","National Inventory",2011,"Not Reported",37,"Reussdelta","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24631,347899,"CHE","National Inventory",2011,"Not Reported",37,"Etang de Vigny","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24632,347900,"CHE","National Inventory",2011,"Not Reported",37,"Etang du Sépey","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24633,347901,"CHE","National Inventory",2011,"Not Reported",37,"Etang du Buron, les Bioles","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24634,347902,"CHE","National Inventory",2011,"Not Reported",37,"Etang de la Scie","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24635,347903,"CHE","National Inventory",2011,"Not Reported",37,"La Combaz, L'Abbaye","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24636,347904,"CHE","National Inventory",2011,"Not Reported",37,"Ancienne Broye","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24637,347905,"CHE","National Inventory",2011,"Not Reported",37,"Les Bidonnes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24638,347906,"CHE","National Inventory",2011,"Not Reported",37,"Vernez-de-Chaux, la Coula","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24639,347907,"CHE","National Inventory",2011,"Not Reported",37,"Palude San Giorgio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24640,347908,"CHE","National Inventory",2011,"Not Reported",37,"Bioute, Etang d'Arnex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24641,347909,"CHE","National Inventory",2011,"Not Reported",37,"Entremur","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24642,347910,"CHE","National Inventory",2011,"Not Reported",37,"Pré Bernard, Creux-de-Terre","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24643,347911,"CHE","National Inventory",2011,"Not Reported",37,"Planches de Sergey, Chassagne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24644,347912,"CHE","National Inventory",2011,"Not Reported",37,"Tourbière des Mosses","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24645,347913,"CHE","National Inventory",2011,"Not Reported",37,"Canal de Ceinture","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24646,347914,"CHE","National Inventory",2011,"Not Reported",37,"Arborex","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24647,347915,"CHE","National Inventory",2011,"Not Reported",37,"Altwässer Thurspitz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24648,347916,"CHE","National Inventory",2011,"Not Reported",37,"Tüfi-Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24649,347917,"CHE","National Inventory",2011,"Not Reported",37,"Waldweiher im Oberholz / Iffertsmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24650,347918,"CHE","National Inventory",2011,"Not Reported",37,"Gurisee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24651,347919,"CHE","National Inventory",2011,"Not Reported",37,"Türlersee NW-Ufer","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24652,347920,"CHE","National Inventory",2011,"Not Reported",37,"Längerenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24653,347921,"CHE","National Inventory",2011,"Not Reported",37,"Ried beim Scheibenstand","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24654,347922,"CHE","National Inventory",2011,"Not Reported",37,"Lüsga","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24655,347923,"CHE","National Inventory",2011,"Not Reported",37,"Hungerseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24656,347924,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Goldbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24657,347925,"CHE","National Inventory",2011,"Not Reported",37,"Präuselen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24658,347926,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgruben Ebnet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24659,347927,"CHE","National Inventory",2011,"Not Reported",37,"Seewadel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24660,347928,"CHE","National Inventory",2011,"Not Reported",37,"Isert Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24661,347929,"CHE","National Inventory",2011,"Not Reported",37,"Hätteliweiher Oberholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24662,347930,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Rüteren","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24663,347931,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Garwid","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24664,347932,"CHE","National Inventory",2011,"Not Reported",37,"Weiher Häsental","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24665,347933,"CHE","National Inventory",2011,"Not Reported",37,"Poutafontana","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24666,347934,"CHE","National Inventory",2011,"Not Reported",37,"Le Rosel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24667,347935,"CHE","National Inventory",2011,"Not Reported",37,"Rüss-Spitz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24668,347936,"CHE","National Inventory",2011,"Not Reported",37,"Binzmüli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24669,347937,"CHE","National Inventory",2011,"Not Reported",37,"Steinhauser Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24670,347938,"CHE","National Inventory",2011,"Not Reported",37,"Eselacherried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24671,347939,"CHE","National Inventory",2011,"Not Reported",37,"Amphibienbiotope Allmend III","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24672,347940,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Egghau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24673,347941,"CHE","National Inventory",2011,"Not Reported",37,"Sandlochgrube Chomberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24674,347942,"CHE","National Inventory",2011,"Not Reported",37,"Weiertal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24675,347943,"CHE","National Inventory",2011,"Not Reported",37,"Lehmgrube Dättnau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24676,347944,"CHE","National Inventory",2011,"Not Reported",37,"Hänsiried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24677,347945,"CHE","National Inventory",2011,"Not Reported",37,"Mülliweiher, Weiher am Rossweg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24678,347946,"CHE","National Inventory",2011,"Not Reported",37,"Weiher und Grube bei Ribacher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24679,347947,"CHE","National Inventory",2011,"Not Reported",37,"Weiher Stigenhof","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24680,347948,"CHE","National Inventory",2011,"Not Reported",37,"Weiher Fromoos (Gerhauweiher)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24681,347949,"CHE","National Inventory",2011,"Not Reported",37,"Totentäli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24682,347950,"CHE","National Inventory",2011,"Not Reported",37,"Alpe di Quarnéi","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24683,347952,"CHE","National Inventory",2011,"Not Reported",37,"Saint-Victor","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24684,347954,"CHE","National Inventory",2011,"Not Reported",37,"Santa Maria","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24685,347955,"CHE","National Inventory",2011,"Not Reported",37,"Belladrum","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24686,347958,"CHE","National Inventory",2011,"Not Reported",37,"Lago d'Origlio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24687,347959,"CHE","National Inventory",2011,"Not Reported",37,"Miolan","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24688,347960,"CHE","National Inventory",2011,"Not Reported",37,"Pian Segno II","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24689,347961,"CHE","National Inventory",2011,"Not Reported",37,"Petit Niremont","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24690,347962,"CHE","National Inventory",2011,"Not Reported",37,"Waldeggmoos","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24691,347963,"CHE","National Inventory",2011,"Not Reported",37,"Les Saignolis I","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24692,347964,"CHE","National Inventory",2011,"Not Reported",37,"Les Saignolis II","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24693,347968,"CHE","National Inventory",2011,"Not Reported",37,"Jänzimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24694,347969,"CHE","National Inventory",2011,"Not Reported",37,"Weiher Hinter Richisalp","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24695,347971,"CHE","National Inventory",2011,"Not Reported",37,"Sumpf unterh. Station Heustrich","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24696,347973,"CHE","National Inventory",2011,"Not Reported",37,"Campi Grandi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24697,347975,"CHE","National Inventory",2011,"Not Reported",37,"Combes Chappuis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24698,347977,"CHE","National Inventory",2011,"Not Reported",37,"Haute Seymaz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24699,347982,"CHE","National Inventory",2011,"Not Reported",37,"Dolliets","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24700,347985,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Mülibach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24701,347988,"CHE","National Inventory",2011,"Not Reported",37,"Ried Gmeimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24702,347991,"CHE","National Inventory",2011,"Not Reported",37,"Bunau","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24703,347993,"CHE","National Inventory",2011,"Not Reported",37,"Muscherensense","Federal Inventory of Alluvial Zones of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24704,347994,"CHE","National Inventory",2011,"Not Reported",37,"Schlaufe","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24705,347996,"CHE","National Inventory",2011,"Not Reported",37,"Ca del Boscat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24706,347997,"CHE","National Inventory",2011,"Not Reported",37,"Stagni San Giorgio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24707,347998,"CHE","National Inventory",2011,"Not Reported",37,"Scairolo Vecchio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24708,348000,"CHE","National Inventory",2011,"Not Reported",37,"Pré-Béroux","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24709,348003,"CHE","National Inventory",2011,"Not Reported",37,"En Pratchie","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24710,348010,"CHE","National Inventory",2011,"Not Reported",37,"Cavloc","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24711,348014,"CHE","National Inventory",2011,"Not Reported",37,"Bois de Chênes, Lac Vert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24712,348017,"CHE","National Inventory",2011,"Not Reported",37,"Les Coeudres","Federal Inventory of Fenlands of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24713,348019,"CHE","National Inventory",2011,"Not Reported",37,"La Coeuvatte","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24714,348022,"CHE","National Inventory",2011,"Not Reported",37,"Eigental, Pantliried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24715,348024,"CHE","National Inventory",2011,"Not Reported",37,"Bichelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24716,348028,"CHE","National Inventory",2011,"Not Reported",37,"Canton del Marcio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24717,348033,"CHE","National Inventory",2011,"Not Reported",37,"Ägelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24718,348036,"CHE","National Inventory",2011,"Not Reported",37,"Canal de la Tuilière","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24719,348037,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Buech","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24720,348039,"CHE","National Inventory",2011,"Not Reported",37,"Musital","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24721,348041,"CHE","National Inventory",2011,"Not Reported",37,"Mittelfeld-Kiesgrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24722,348044,"CHE","National Inventory",2011,"Not Reported",37,"Grütriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24723,348046,"CHE","National Inventory",2011,"Not Reported",37,"Arales","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24724,348050,"CHE","National Inventory",2011,"Not Reported",37,"Bistoquette et Paradis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24725,348053,"CHE","National Inventory",2011,"Not Reported",37,"Langstuden Befang","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24726,348057,"CHE","National Inventory",2011,"Not Reported",37,"Ritzenmattseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24727,348061,"CHE","National Inventory",2011,"Not Reported",37,"Feret","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24728,348063,"CHE","National Inventory",2011,"Not Reported",37,"Obermatteggweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24729,348064,"CHE","National Inventory",2011,"Not Reported",37,"Usser Allmend","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24730,348066,"CHE","National Inventory",2011,"Not Reported",37,"Glaubenbielen Ribihütte","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24731,348069,"CHE","National Inventory",2011,"Not Reported",37,"Bois de Porte, les Dailles","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24732,348071,"CHE","National Inventory",2011,"Not Reported",37,"Buech/Steiacher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24733,348074,"CHE","National Inventory",2011,"Not Reported",37,"Chrutzelried, Heidenried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24734,348081,"CHE","National Inventory",2011,"Not Reported",37,"Foort","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24735,348084,"CHE","National Inventory",2011,"Not Reported",37,"Alte Oelerdeponie/Munimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24736,348086,"CHE","National Inventory",2011,"Not Reported",37,"Bärmatten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24737,348089,"CHE","National Inventory",2011,"Not Reported",37,"Sachsler Seefeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24738,348090,"CHE","National Inventory",2011,"Not Reported",37,"Schlossweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24739,348091,"CHE","National Inventory",2011,"Not Reported",37,"Le Foulet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24740,348092,"CHE","National Inventory",2011,"Not Reported",37,"Gnappiried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24741,348093,"CHE","National Inventory",2011,"Not Reported",37,"Vierwaldstättersee Hüttenort","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24742,348094,"CHE","National Inventory",2011,"Not Reported",37,"Stansstader Ried/Rotzloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24743,348095,"CHE","National Inventory",2011,"Not Reported",37,"Chrotteseeli Obbürgen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24744,348096,"CHE","National Inventory",2011,"Not Reported",37,"Le Loclat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24745,348097,"CHE","National Inventory",2011,"Not Reported",37,"Hanenriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24746,348098,"CHE","National Inventory",2011,"Not Reported",37,"La Marnière d'Hauterive","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24747,348099,"CHE","National Inventory",2011,"Not Reported",37,"Sewenseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24748,348100,"CHE","National Inventory",2011,"Not Reported",37,"Melbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24749,348101,"CHE","National Inventory",2011,"Not Reported",37,"Mörlisee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24750,348102,"CHE","National Inventory",2011,"Not Reported",37,"Gerzensee, Blindseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24751,348103,"CHE","National Inventory",2011,"Not Reported",37,"Bisen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24752,348104,"CHE","National Inventory",2011,"Not Reported",37,"Eselschwanz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24753,348105,"CHE","National Inventory",2011,"Not Reported",37,"Schlierenrüti, Reservat Sarna","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24754,348106,"CHE","National Inventory",2011,"Not Reported",37,"Marnière du Plan du Bois","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24755,348107,"CHE","National Inventory",2011,"Not Reported",37,"Forenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24756,348108,"CHE","National Inventory",2011,"Not Reported",37,"Moosweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24757,348109,"CHE","National Inventory",2011,"Not Reported",37,"Chänzeli / Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24758,348110,"CHE","National Inventory",2011,"Not Reported",37,"Risch, Rotseeried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24759,348111,"CHE","National Inventory",2011,"Not Reported",37,"Ottigenbüel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24760,348112,"CHE","National Inventory",2011,"Not Reported",37,"Wannenholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24761,348113,"CHE","National Inventory",2011,"Not Reported",37,"La Paulière","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24762,348114,"CHE","National Inventory",2011,"Not Reported",37,"Riffigweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24763,348115,"CHE","National Inventory",2011,"Not Reported",37,"Banriet / Burst","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24764,348116,"CHE","National Inventory",2011,"Not Reported",37,"Les Goudebas","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24765,348117,"CHE","National Inventory",2011,"Not Reported",37,"La Fabrique","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24766,348118,"CHE","National Inventory",2011,"Not Reported",37,"Pointe du Grain","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24767,348119,"CHE","National Inventory",2011,"Not Reported",37,"Les Eplatures","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24768,348120,"CHE","National Inventory",2011,"Not Reported",37,"La Galandrure","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24769,348121,"CHE","National Inventory",2011,"Not Reported",37,"La Gare","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24770,348122,"CHE","National Inventory",2011,"Not Reported",37,"Lättloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24771,348123,"CHE","National Inventory",2011,"Not Reported",37,"Glatttal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24772,348124,"CHE","National Inventory",2011,"Not Reported",37,"St. Sebastian","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24773,348125,"CHE","National Inventory",2011,"Not Reported",37,"Siessenweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24774,348126,"CHE","National Inventory",2011,"Not Reported",37,"Briggisweiher N Auenhof","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24775,348127,"CHE","National Inventory",2011,"Not Reported",37,"Joner Allmeind","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24776,348128,"CHE","National Inventory",2011,"Not Reported",37,"Allmeind","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24777,348129,"CHE","National Inventory",2011,"Not Reported",37,"Ballastière","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24778,348130,"CHE","National Inventory",2011,"Not Reported",37,"Bodenseeriet Altenrhein","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24779,348131,"CHE","National Inventory",2011,"Not Reported",37,"Bi den Seelenen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24780,348132,"CHE","National Inventory",2011,"Not Reported",37,"Baggerseen im Staffelriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24781,348133,"CHE","National Inventory",2011,"Not Reported",37,"Bettenauerweier","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24782,348134,"CHE","National Inventory",2011,"Not Reported",37,"Gill-Henau Reservat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24783,348135,"CHE","National Inventory",2011,"Not Reported",37,"Hasenlooweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24784,348136,"CHE","National Inventory",2011,"Not Reported",37,"Huserfelsen, Himmelbleichi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24785,348137,"CHE","National Inventory",2011,"Not Reported",37,"Ehemalige Kiesgrube Au","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24786,348138,"CHE","National Inventory",2011,"Not Reported",37,"Riet Zuzwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24787,348139,"CHE","National Inventory",2011,"Not Reported",37,"Turpenriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24788,348140,"CHE","National Inventory",2011,"Not Reported",37,"Burstried, Galgenmad","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24789,348141,"CHE","National Inventory",2011,"Not Reported",37,"Schlossweiher Altishofen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24790,348142,"CHE","National Inventory",2011,"Not Reported",37,"Alte Lehmgrube Hilpert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24791,348143,"CHE","National Inventory",2011,"Not Reported",37,"Wichenstein","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24792,348144,"CHE","National Inventory",2011,"Not Reported",37,"Spitzmäder","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24793,348145,"CHE","National Inventory",2011,"Not Reported",37,"Wenigerweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24794,348146,"CHE","National Inventory",2011,"Not Reported",37,"Wiesenfurt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24795,348147,"CHE","National Inventory",2011,"Not Reported",37,"Kaltbrunnerriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24796,348148,"CHE","National Inventory",2011,"Not Reported",37,"Ochsenweid","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24797,348149,"CHE","National Inventory",2011,"Not Reported",37,"Mösli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24798,348150,"CHE","National Inventory",2011,"Not Reported",37,"Egelsee bei Bad Forstegg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24799,348151,"CHE","National Inventory",2011,"Not Reported",37,"Ziegelei Bruggwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24800,348152,"CHE","National Inventory",2011,"Not Reported",37,"Huebermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24801,348153,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Schuppis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24802,348154,"CHE","National Inventory",2011,"Not Reported",37,"Kiessammler Vilters","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24803,348155,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Feerbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24804,348156,"CHE","National Inventory",2011,"Not Reported",37,"Fuchsloch - Buriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24805,348157,"CHE","National Inventory",2011,"Not Reported",37,"Retentionsbecken Ceres Rhein-Au","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24806,348158,"CHE","National Inventory",2011,"Not Reported",37,"En Cortio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24807,348159,"CHE","National Inventory",2011,"Not Reported",37,"La Gruère","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24808,348160,"CHE","National Inventory",2011,"Not Reported",37,"Les Royes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24809,348161,"CHE","National Inventory",2011,"Not Reported",37,"Côte dOye","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24810,348162,"CHE","National Inventory",2011,"Not Reported",37,"Etangs de Vendlincourt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24811,348163,"CHE","National Inventory",2011,"Not Reported",37,"Lorette","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24812,348164,"CHE","National Inventory",2011,"Not Reported",37,"Bellefontaine","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24813,348165,"CHE","National Inventory",2011,"Not Reported",37,"Hasliweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24814,348166,"CHE","National Inventory",2011,"Not Reported",37,"Sous Bâme","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24815,348167,"CHE","National Inventory",2011,"Not Reported",37,"La Bouège - La Goule","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24816,348168,"CHE","National Inventory",2011,"Not Reported",37,"Etangs Rougeat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24817,348169,"CHE","National Inventory",2011,"Not Reported",37,"Etangs de Bonfol","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24818,348170,"CHE","National Inventory",2011,"Not Reported",37,"Les Queues de Chats","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24819,348171,"CHE","National Inventory",2011,"Not Reported",37,"Le Martinet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24820,348172,"CHE","National Inventory",2011,"Not Reported",37,"Les Coeudres","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24821,348173,"CHE","National Inventory",2011,"Not Reported",37,"Grube Stoos Hüswil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24822,348174,"CHE","National Inventory",2011,"Not Reported",37,"Etang Corbat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24823,348175,"CHE","National Inventory",2011,"Not Reported",37,"Le Refrain - La Bouège","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24824,348176,"CHE","National Inventory",2011,"Not Reported",37,"Bois de Chaux","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24825,348177,"CHE","National Inventory",2011,"Not Reported",37,"Combe Tabeillon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24826,348178,"CHE","National Inventory",2011,"Not Reported",37,"Combe du Bez","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24827,348179,"CHE","National Inventory",2011,"Not Reported",37,"Foradrai","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24828,348180,"CHE","National Inventory",2011,"Not Reported",37,"Les Charbonnières","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24829,348181,"CHE","National Inventory",2011,"Not Reported",37,"Moulin de Bavelier","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24830,348182,"CHE","National Inventory",2011,"Not Reported",37,"Les Pommerats","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24831,348183,"CHE","National Inventory",2011,"Not Reported",37,"La Réselle","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24832,348184,"CHE","National Inventory",2011,"Not Reported",37,"Bois Banal - Moulin Jeannotat","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24833,348185,"CHE","National Inventory",2011,"Not Reported",37,"Les Saignes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24834,348186,"CHE","National Inventory",2011,"Not Reported",37,"La Sagne à Droz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24835,348187,"CHE","National Inventory",2011,"Not Reported",37,"La Vauchotte - Bois Banal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24836,348188,"CHE","National Inventory",2011,"Not Reported",37,"Dos le Cras","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24837,348189,"CHE","National Inventory",2011,"Not Reported",37,"Plaine de Saigne","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24838,348190,"CHE","National Inventory",2011,"Not Reported",37,"La Goule - Le Theusseret","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24839,348191,"CHE","National Inventory",2011,"Not Reported",37,"Fuchseren","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24840,348192,"CHE","National Inventory",2011,"Not Reported",37,"Les Esserts","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24841,348193,"CHE","National Inventory",2011,"Not Reported",37,"Wauwilermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24842,348194,"CHE","National Inventory",2011,"Not Reported",37,"Moosschürweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24843,348195,"CHE","National Inventory",2011,"Not Reported",37,"Chüsenrainwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24844,348196,"CHE","National Inventory",2011,"Not Reported",37,"Hetzligermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24845,348197,"CHE","National Inventory",2011,"Not Reported",37,"Mühleweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24846,348198,"CHE","National Inventory",2011,"Not Reported",37,"Staudenschachen Südarm","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24847,348199,"CHE","National Inventory",2011,"Not Reported",37,"Unterallmend","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24848,348200,"CHE","National Inventory",2011,"Not Reported",37,"Le Colliard","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24849,348201,"CHE","National Inventory",2011,"Not Reported",37,"Steinibüelweier","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24850,348202,"CHE","National Inventory",2011,"Not Reported",37,"Uffikonermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24851,348203,"CHE","National Inventory",2011,"Not Reported",37,"NE Hirsboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24852,348204,"CHE","National Inventory",2011,"Not Reported",37,"Chalchloch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24853,348205,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Roren","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24854,348206,"CHE","National Inventory",2011,"Not Reported",37,"Grueb Grossfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24855,348207,"CHE","National Inventory",2011,"Not Reported",37,"Wagenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24856,348208,"CHE","National Inventory",2011,"Not Reported",37,"Magdenau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24857,348209,"CHE","National Inventory",2011,"Not Reported",37,"Turbemoos (Forenwäldli)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24858,348210,"CHE","National Inventory",2011,"Not Reported",37,"Turbiweiher - Ronfeldweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24859,348211,"CHE","National Inventory",2011,"Not Reported",37,"Gürmschmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24860,348212,"CHE","National Inventory",2011,"Not Reported",37,"Moos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24861,348213,"CHE","National Inventory",2011,"Not Reported",37,"Mettlenmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24862,348214,"CHE","National Inventory",2011,"Not Reported",37,"Gütschweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24863,348215,"CHE","National Inventory",2011,"Not Reported",37,"Naturlehrgebiet Buechwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24864,348216,"CHE","National Inventory",2011,"Not Reported",37,"Unter Chlotisberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24865,348217,"CHE","National Inventory",2011,"Not Reported",37,"Vogelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24866,348218,"CHE","National Inventory",2011,"Not Reported",37,"Schützenfeld - Moospünten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24867,348219,"CHE","National Inventory",2011,"Not Reported",37,"Tuetenseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24868,348220,"CHE","National Inventory",2011,"Not Reported",37,"Gütsch - Feldhof","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24869,348221,"CHE","National Inventory",2011,"Not Reported",37,"Steinibachried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24870,348222,"CHE","National Inventory",2011,"Not Reported",37,"Burgschachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24871,348223,"CHE","National Inventory",2011,"Not Reported",37,"Wolermoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24872,348224,"CHE","National Inventory",2011,"Not Reported",37,"Hagimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24873,348225,"CHE","National Inventory",2011,"Not Reported",37,"Stadelmoosweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24874,348226,"CHE","National Inventory",2011,"Not Reported",37,"Ostergau","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24875,348227,"CHE","National Inventory",2011,"Not Reported",37,"Unterbüel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24876,348228,"CHE","National Inventory",2011,"Not Reported",37,"Gola di Lago","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24877,348229,"CHE","National Inventory",2011,"Not Reported",37,"Hauptwiler Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24878,348230,"CHE","National Inventory",2011,"Not Reported",37,"Isola Sgraver","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24879,348231,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di Mondrigo","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24880,348232,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Paron","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24881,348233,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Motto della Costa","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24882,348234,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Figino-Cásoro","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24883,348235,"CHE","National Inventory",2011,"Not Reported",37,"Barbescio - Bolletina Lunga","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24884,348236,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Agra","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24885,348237,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di Magadino","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24886,348238,"CHE","National Inventory",2011,"Not Reported",37,"Laghetto d'Orbello","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24887,348239,"CHE","National Inventory",2011,"Not Reported",37,"Laghetto","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24888,348240,"CHE","National Inventory",2011,"Not Reported",37,"Lago di Lugano a Cantonetto","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24889,348241,"CHE","National Inventory",2011,"Not Reported",37,"Cava Gere Croglio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24890,348242,"CHE","National Inventory",2011,"Not Reported",37,"Ressiga","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24891,348243,"CHE","National Inventory",2011,"Not Reported",37,"Canale Demanio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24892,348244,"CHE","National Inventory",2011,"Not Reported",37,"Cava Rivaccia","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24893,348245,"CHE","National Inventory",2011,"Not Reported",37,"Bächli - Gishalde","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24894,348246,"CHE","National Inventory",2011,"Not Reported",37,"Pflanzgarten Tätsch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24895,348247,"CHE","National Inventory",2011,"Not Reported",37,"Güttingersrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24896,348248,"CHE","National Inventory",2011,"Not Reported",37,"Aue N Aachmündung","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24897,348249,"CHE","National Inventory",2011,"Not Reported",37,"Stockrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24898,348250,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Freudenberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24899,348251,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Atzenholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24900,348252,"CHE","National Inventory",2011,"Not Reported",37,"Piano di Arbigo","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24901,348253,"CHE","National Inventory",2011,"Not Reported",37,"Arniger Witi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24902,348254,"CHE","National Inventory",2011,"Not Reported",37,"Bolle di S. Martino","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24903,348255,"CHE","National Inventory",2011,"Not Reported",37,"Zuckenmattweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24904,348256,"CHE","National Inventory",2011,"Not Reported",37,"Riet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24905,348257,"CHE","National Inventory",2011,"Not Reported",37,"Stagno di Progero","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24906,348258,"CHE","National Inventory",2011,"Not Reported",37,"Cassina di Lago","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24907,348259,"CHE","National Inventory",2011,"Not Reported",37,"Malcantone","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24908,348260,"CHE","National Inventory",2011,"Not Reported",37,"Pescicoltura Golino","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24909,348261,"CHE","National Inventory",2011,"Not Reported",37,"Wiimoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24910,348262,"CHE","National Inventory",2011,"Not Reported",37,"Delta della Maggia","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24911,348263,"CHE","National Inventory",2011,"Not Reported",37,"Cava Motto Grande","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24912,348264,"CHE","National Inventory",2011,"Not Reported",37,"Valle della Motta","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24913,348265,"CHE","National Inventory",2011,"Not Reported",37,"Basciocca (ovest)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24914,348266,"CHE","National Inventory",2011,"Not Reported",37,"Bolla di Loderio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24915,348267,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Guana","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24916,348268,"CHE","National Inventory",2011,"Not Reported",37,"Pre Murin","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24917,348269,"CHE","National Inventory",2011,"Not Reported",37,"Bosco Agnuzzo","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24918,348270,"CHE","National Inventory",2011,"Not Reported",37,"Rompiga","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24919,348271,"CHE","National Inventory",2011,"Not Reported",37,"Pian Gallina","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24920,348272,"CHE","National Inventory",2011,"Not Reported",37,"Vigna","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24921,348273,"CHE","National Inventory",2011,"Not Reported",37,"Torrazza - Pra Signora","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24922,348274,"CHE","National Inventory",2011,"Not Reported",37,"Dosso dell'Ora - Dosso Bello","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24923,348275,"CHE","National Inventory",2011,"Not Reported",37,"Ciossa Antognini","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24924,348276,"CHE","National Inventory",2011,"Not Reported",37,"Vigna lunga - Trebbione","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24925,348277,"CHE","National Inventory",2011,"Not Reported",37,"Alpler See","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24926,348278,"CHE","National Inventory",2011,"Not Reported",37,"Valle della Motta/Ai Prati","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24927,348279,"CHE","National Inventory",2011,"Not Reported",37,"Pra Coltello","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24928,348280,"CHE","National Inventory",2011,"Not Reported",37,"Sürch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24929,348281,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Avra","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24930,348282,"CHE","National Inventory",2011,"Not Reported",37,"Pozza Bosco Penz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24931,348283,"CHE","National Inventory",2011,"Not Reported",37,"Stagni Campagna Seseglio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24932,348284,"CHE","National Inventory",2011,"Not Reported",37,"Pozza Moreggi Pedrinate","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24933,348285,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Pra Vicc","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24934,348286,"CHE","National Inventory",2011,"Not Reported",37,"Pozza Monzell","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24935,348287,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Roggio","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24936,348288,"CHE","National Inventory",2011,"Not Reported",37,"Lanca Saligin","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24937,348289,"CHE","National Inventory",2011,"Not Reported",37,"Meandri del Laveggio e Colombera","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24938,348290,"CHE","National Inventory",2011,"Not Reported",37,"Cava Boschi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24939,348291,"CHE","National Inventory",2011,"Not Reported",37,"Lanche di Iragna","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24940,348292,"CHE","National Inventory",2011,"Not Reported",37,"Stagno Campi Grandi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24941,348293,"CHE","National Inventory",2011,"Not Reported",37,"Laghetto Pianca","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24942,348294,"CHE","National Inventory",2011,"Not Reported",37,"Laghetto di Masnee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24943,348295,"CHE","National Inventory",2011,"Not Reported",37,"Pozza a est di Motto","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24944,348296,"CHE","National Inventory",2011,"Not Reported",37,"Prato Grande","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24945,348297,"CHE","National Inventory",2011,"Not Reported",37,"Breitried - Schützenried","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24946,348298,"CHE","National Inventory",2011,"Not Reported",37,"Klosterried Ingenbohl","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24947,348299,"CHE","National Inventory",2011,"Not Reported",37,"Tümpel Stierenberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24948,348300,"CHE","National Inventory",2011,"Not Reported",37,"Tümpel untere Erli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24949,348301,"CHE","National Inventory",2011,"Not Reported",37,"Obergösger Schachen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24950,348302,"CHE","National Inventory",2011,"Not Reported",37,"Erlenmoos, Haag","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24951,348303,"CHE","National Inventory",2011,"Not Reported",37,"Biedermannsgrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24952,348304,"CHE","National Inventory",2011,"Not Reported",37,"Trachslauerweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24953,348305,"CHE","National Inventory",2011,"Not Reported",37,"Weiher Lochgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24954,348306,"CHE","National Inventory",2011,"Not Reported",37,"Bätzimatt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24955,348307,"CHE","National Inventory",2011,"Not Reported",37,"Lehmlöcher Dicki","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24956,348308,"CHE","National Inventory",2011,"Not Reported",37,"Oberer Sihlsee Euthal","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24957,348309,"CHE","National Inventory",2011,"Not Reported",37,"Dreiwässern","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24958,348310,"CHE","National Inventory",2011,"Not Reported",37,"Sihlsee S Schönbächli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24959,348312,"CHE","National Inventory",2011,"Not Reported",37,"Reumeren","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24960,348313,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Schürliwiesen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24961,348314,"CHE","National Inventory",2011,"Not Reported",37,"Klosterweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24962,348315,"CHE","National Inventory",2011,"Not Reported",37,"Aazopf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24963,348316,"CHE","National Inventory",2011,"Not Reported",37,"Bohnerzgruben Chäferhölzli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24964,348317,"CHE","National Inventory",2011,"Not Reported",37,"Espel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24965,348318,"CHE","National Inventory",2011,"Not Reported",37,"Waffenplatz Breitfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24966,348319,"CHE","National Inventory",2011,"Not Reported",37,"Weiher NE Hohfirst","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24967,348320,"CHE","National Inventory",2011,"Not Reported",37,"Bildweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24968,348321,"CHE","National Inventory",2011,"Not Reported",37,"Moosanger","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24969,348322,"CHE","National Inventory",2011,"Not Reported",37,"Bachtelli/Seeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24970,348323,"CHE","National Inventory",2011,"Not Reported",37,"Rohrenbüeli-Stritholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24971,348324,"CHE","National Inventory",2011,"Not Reported",37,"Chli Aarli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24972,348325,"CHE","National Inventory",2011,"Not Reported",37,"Bohnerzgruben Färberwiesli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24973,348326,"CHE","National Inventory",2011,"Not Reported",37,"Sägel, Schutt, Lauerzersee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24974,348327,"CHE","National Inventory",2011,"Not Reported",37,"Moos-Buck Herblingen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24975,348328,"CHE","National Inventory",2011,"Not Reported",37,"Feuchtgebiet Widen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24976,348329,"CHE","National Inventory",2011,"Not Reported",37,"Eschheimer Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24977,348330,"CHE","National Inventory",2011,"Not Reported",37,"Alte Biberschleife","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24978,348331,"CHE","National Inventory",2011,"Not Reported",37,"Ried/Lehmgrueb Hofenacker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24979,348332,"CHE","National Inventory",2011,"Not Reported",37,"Egelsee Degerfeld Wagenhausen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24980,348333,"CHE","National Inventory",2011,"Not Reported",37,"Lehmlöcher Rüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24981,348334,"CHE","National Inventory",2011,"Not Reported",37,"Morgetshofsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24982,348335,"CHE","National Inventory",2011,"Not Reported",37,"Hüttwiler Seen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24983,348336,"CHE","National Inventory",2011,"Not Reported",37,"Sihlsee Steinbach (Lukasrank)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24984,348337,"CHE","National Inventory",2011,"Not Reported",37,"Kiesweiher Weidacker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24985,348338,"CHE","National Inventory",2011,"Not Reported",37,"Googlete","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24986,348339,"CHE","National Inventory",2011,"Not Reported",37,"Bommer Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24987,348340,"CHE","National Inventory",2011,"Not Reported",37,"Lengwiler Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24988,348341,"CHE","National Inventory",2011,"Not Reported",37,"Seeburg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24989,348342,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Wolfsbüel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24990,348343,"CHE","National Inventory",2011,"Not Reported",37,"Lommiser Riet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24991,348344,"CHE","National Inventory",2011,"Not Reported",37,"Biessenhofer Weiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24992,348345,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgruben Neuhus - Bälisteig","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24993,348346,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Bärg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24994,348347,"CHE","National Inventory",2011,"Not Reported",37,"Grube Trubeschloo","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24995,348348,"CHE","National Inventory",2011,"Not Reported",37,"Barchetsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24996,348349,"CHE","National Inventory",2011,"Not Reported",37,"Hudelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24997,348350,"CHE","National Inventory",2011,"Not Reported",37,"Schoren Riet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24998,348351,"CHE","National Inventory",2011,"Not Reported",37,"Ägelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +24999,348352,"CHE","National Inventory",2011,"Not Reported",37,"Waldriet Grosswis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25000,348353,"CHE","National Inventory",2011,"Not Reported",37,"Heeristobel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25001,348354,"CHE","National Inventory",2011,"Not Reported",37,"Etzwilerriet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25002,348355,"CHE","National Inventory",2011,"Not Reported",37,"Reservat Schule Kaltenbach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25003,348356,"CHE","National Inventory",2011,"Not Reported",37,"Grube Moos N Weerswilen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25004,348357,"CHE","National Inventory",2011,"Not Reported",37,"Sangen - Mülifang","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25005,348358,"CHE","National Inventory",2011,"Not Reported",37,"Lehmgrube Opfershofen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25006,348359,"CHE","National Inventory",2011,"Not Reported",37,"Bächler","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25007,348360,"CHE","National Inventory",2011,"Not Reported",37,"Luggeseeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25008,348361,"CHE","National Inventory",2011,"Not Reported",37,"Müliweier","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25009,348362,"CHE","National Inventory",2011,"Not Reported",37,"Mösliweiher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25010,348363,"CHE","National Inventory",2011,"Not Reported",37,"Ägelsee","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25011,348364,"CHE","National Inventory",2011,"Not Reported",37,"Baggersee Chasperäcker","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25012,348365,"CHE","National Inventory",2011,"Not Reported",37,"Allmend","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25013,348366,"CHE","National Inventory",2011,"Not Reported",37,"Grüt - Bietenhart - Wolfsbüel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25014,387604,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgruben Steig","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25015,387605,"CHE","National Inventory",2011,"Not Reported",37,"Les Baumes","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25016,387606,"CHE","National Inventory",2011,"Not Reported",37,"Le Villaret","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25017,387607,"CHE","National Inventory",2011,"Not Reported",37,"Vurzy","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25018,387608,"CHE","National Inventory",2011,"Not Reported",37,"Peney","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25019,387609,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Balmgüeter","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25020,387610,"CHE","National Inventory",2011,"Not Reported",37,"Grube Gugleracher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25021,387611,"CHE","National Inventory",2011,"Not Reported",37,"Oberfeld - Oberholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25022,387612,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Mattehölzli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25023,387613,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Sticherlöchli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25024,387614,"CHE","National Inventory",2011,"Not Reported",37,"Ziegelei Roggwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25025,387615,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Solenberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25026,387616,"CHE","National Inventory",2011,"Not Reported",37,"ESR interna","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25027,387617,"CHE","National Inventory",2011,"Not Reported",37,"Zil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25028,387618,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube HEVA Dietenboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25029,387619,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Lätten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25030,387620,"CHE","National Inventory",2011,"Not Reported",37,"Tongrube Paradies","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25031,387621,"CHE","National Inventory",2011,"Not Reported",37,"Lehmgrube Bergerwilen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25032,387622,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Mayer Grossfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25033,387623,"CHE","National Inventory",2011,"Not Reported",37,"Tongrube Ziegelei","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25034,387624,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Zelgli und Flachweiher im Hardwald","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25035,387625,"CHE","National Inventory",2011,"Not Reported",37,"Unterschönenbuch","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25036,387626,"CHE","National Inventory",2011,"Not Reported",37,"Ziegelei Rafz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25037,387627,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Hübeli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25038,387628,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Bannen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25039,387629,"CHE","National Inventory",2011,"Not Reported",37,"Lehmgrube Häuli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25040,387630,"CHE","National Inventory",2011,"Not Reported",37,"Grube Utigen","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25041,387631,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Wisgraben","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25042,387632,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube NW Büel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25043,387633,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube List","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25044,387634,"CHE","National Inventory",2011,"Not Reported",37,"Lehmgrube Pfaffwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25045,387635,"CHE","National Inventory",2011,"Not Reported",37,"Côte à Bourgeois","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25046,387636,"CHE","National Inventory",2011,"Not Reported",37,"Unter Balliswil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25047,387637,"CHE","National Inventory",2011,"Not Reported",37,"Steinbruch Guber","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25048,387638,"CHE","National Inventory",2011,"Not Reported",37,"Grube Briseck","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25049,387639,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Eichrüteli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25050,387640,"CHE","National Inventory",2011,"Not Reported",37,"Chrüzstross","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25051,387641,"CHE","National Inventory",2011,"Not Reported",37,"Steinbruch Mellikon","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25052,387642,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Honert","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25053,387643,"CHE","National Inventory",2011,"Not Reported",37,"Lättgrueb","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25054,387644,"CHE","National Inventory",2011,"Not Reported",37,"Ziegeleigrube Oberburg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25055,387645,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgruben Mittlerboden","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25056,387646,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgruben Burgauerfeld","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25057,387647,"CHE","National Inventory",2011,"Not Reported",37,"Steinbruch Jakobsberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25058,387648,"CHE","National Inventory",2011,"Not Reported",37,"La Delèse","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25059,387649,"CHE","National Inventory",2011,"Not Reported",37,"Laichgebiet Tambrig-Oberholz","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25060,387650,"CHE","National Inventory",2011,"Not Reported",37,"Gruben Pfannenstil/Morgenhalden/ Höchi","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25061,387651,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Härdacher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25062,387652,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Hochfurenzelg (Tobelacker)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25063,387653,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Hombrig","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25064,387654,"CHE","National Inventory",2011,"Not Reported",37,"Lehmgrube Ober Huwil","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25065,387655,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Langfuhr","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25066,387656,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Schürli","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25067,387657,"CHE","National Inventory",2011,"Not Reported",37,"Tongrube Eriwis","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25068,387658,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Riedt","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25069,387659,"CHE","National Inventory",2011,"Not Reported",37,"Le Tayment","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25070,387660,"CHE","National Inventory",2011,"Not Reported",37,"Monteynan","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25071,387661,"CHE","National Inventory",2011,"Not Reported",37,"Lehmgrube Tonwarenfabrik","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25072,387662,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrubenbiotope Zimiker Eichli-Breiti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25073,387663,"CHE","National Inventory",2011,"Not Reported",37,"Kieswerk Sieber Agersten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25074,387664,"CHE","National Inventory",2011,"Not Reported",37,"Hochrüti/Vogelmoos","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25075,387665,"CHE","National Inventory",2011,"Not Reported",37,"Äbisholzgrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25076,387666,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Eschenbach (Rüchlig)","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25077,387747,"CHE","National Inventory",2011,"Not Reported",37,"Kies- und Betonwerk Bangerter","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25078,387748,"CHE","National Inventory",2011,"Not Reported",37,"Le Chaney","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25079,387749,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Moortel","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25080,387750,"CHE","National Inventory",2011,"Not Reported",37,"Lugibach","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25081,387751,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Ägerten/ Steinächer","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25082,387752,"CHE","National Inventory",2011,"Not Reported",37,"Steinbruch Gabenchopf","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25083,387753,"CHE","National Inventory",2011,"Not Reported",37,"Champs Grillet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25084,387754,"CHE","National Inventory",2011,"Not Reported",37,"Chrüzegg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25085,387755,"CHE","National Inventory",2011,"Not Reported",37,"Ennerberg","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25086,387756,"CHE","National Inventory",2011,"Not Reported",37,"Kiesgrube Sarbach/Hintertann","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25087,387757,"CHE","National Inventory",2011,"Not Reported",37,"Stolten","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25088,387758,"CHE","National Inventory",2011,"Not Reported",37,"Grube Hohrüti","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25089,387759,"CHE","National Inventory",2011,"Not Reported",37,"Allmend-Forenban","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25090,387760,"CHE","National Inventory",2011,"Not Reported",37,"Ägertengrube","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25091,387761,"CHE","National Inventory",2011,"Not Reported",37,"Booler","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25092,387762,"CHE","National Inventory",2011,"Not Reported",37,"Steinbruch Oberacher","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25093,387763,"CHE","National Inventory",2011,"Not Reported",37,"Tongrube Böttstein","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25094,387764,"CHE","National Inventory",2011,"Not Reported",37,"Galmet","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25095,387765,"CHE","National Inventory",2011,"Not Reported",37,"Am Schöftler","Federal Inventory of Amphibian Spawning Areas of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25096,398199,"CHE","National Inventory",2011,"Not Reported",37,"Nänzligenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25097,398200,"CHE","National Inventory",2011,"Not Reported",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25098,398201,"CHE","National Inventory",2011,"Not Reported",37,"Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25099,398202,"CHE","National Inventory",2011,"Not Reported",37,"Sugiez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25100,398203,"CHE","National Inventory",2011,"Not Reported",37,"Hell","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25101,398204,"CHE","National Inventory",2011,"Not Reported",37,"Ober Axen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25102,398205,"CHE","National Inventory",2011,"Not Reported",37,"Ober Bärchi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25103,398206,"CHE","National Inventory",2011,"Not Reported",37,"Sulz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25104,398207,"CHE","National Inventory",2011,"Not Reported",37,"Rophaien","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25105,398208,"CHE","National Inventory",2011,"Not Reported",37,"Nant-Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25106,398209,"CHE","National Inventory",2011,"Not Reported",37,"Tannegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25107,398210,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Wissenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25108,398211,"CHE","National Inventory",2011,"Not Reported",37,"Windgällen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25109,398212,"CHE","National Inventory",2011,"Not Reported",37,"Unter Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25110,398213,"CHE","National Inventory",2011,"Not Reported",37,"Unter Gisleralp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25111,398214,"CHE","National Inventory",2011,"Not Reported",37,"Champ Ribaud","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25112,398215,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Wissenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25113,398216,"CHE","National Inventory",2011,"Not Reported",37,"Hüenderegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25114,398217,"CHE","National Inventory",2011,"Not Reported",37,"Chäserberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25115,398218,"CHE","National Inventory",2011,"Not Reported",37,"Fruttwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25116,398219,"CHE","National Inventory",2011,"Not Reported",37,"Schartihöreli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25117,398220,"CHE","National Inventory",2011,"Not Reported",37,"Obflüeweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25118,398221,"CHE","National Inventory",2011,"Not Reported",37,"Sidenplangg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25119,398222,"CHE","National Inventory",2011,"Not Reported",37,"Maison de Commune","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25120,398223,"CHE","National Inventory",2011,"Not Reported",37,"Gorplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25121,398224,"CHE","National Inventory",2011,"Not Reported",37,"Sassi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25122,398225,"CHE","National Inventory",2011,"Not Reported",37,"Les Neigles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25123,398226,"CHE","National Inventory",2011,"Not Reported",37,"Butzlichöpf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25124,398227,"CHE","National Inventory",2011,"Not Reported",37,"Trudelingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25125,398228,"CHE","National Inventory",2011,"Not Reported",37,"Montivert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25126,398229,"CHE","National Inventory",2011,"Not Reported",37,"Wilischwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25127,398230,"CHE","National Inventory",2011,"Not Reported",37,"Sassigrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25128,398231,"CHE","National Inventory",2011,"Not Reported",37,"Neirvaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25129,398232,"CHE","National Inventory",2011,"Not Reported",37,"Platti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25130,398233,"CHE","National Inventory",2011,"Not Reported",37,"Biwaldalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25131,398234,"CHE","National Inventory",2011,"Not Reported",37,"Fayaule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25132,398235,"CHE","National Inventory",2011,"Not Reported",37,"Schilt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25133,398236,"CHE","National Inventory",2011,"Not Reported",37,"Äschrüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25134,398237,"CHE","National Inventory",2011,"Not Reported",37,"Vieux Châtel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25135,398238,"CHE","National Inventory",2011,"Not Reported",37,"Spälten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25136,398239,"CHE","National Inventory",2011,"Not Reported",37,"Wettmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25137,398240,"CHE","National Inventory",2011,"Not Reported",37,"Ribi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25138,398241,"CHE","National Inventory",2011,"Not Reported",37,"Gross Pfaffen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25139,398242,"CHE","National Inventory",2011,"Not Reported",37,"Corbières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25140,398243,"CHE","National Inventory",2011,"Not Reported",37,"Rossboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25141,398244,"CHE","National Inventory",2011,"Not Reported",37,"Gampelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25142,398245,"CHE","National Inventory",2011,"Not Reported",37,"La Guille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25143,398246,"CHE","National Inventory",2011,"Not Reported",37,"Usser Siten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25144,398247,"CHE","National Inventory",2011,"Not Reported",37,"Hol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25145,398248,"CHE","National Inventory",2011,"Not Reported",37,"Hinteren Bänder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25146,398249,"CHE","National Inventory",2011,"Not Reported",37,"Rüteli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25147,398250,"CHE","National Inventory",2011,"Not Reported",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25148,398251,"CHE","National Inventory",2011,"Not Reported",37,"Hinteren Bänder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25149,398252,"CHE","National Inventory",2011,"Not Reported",37,"Frutt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25150,398253,"CHE","National Inventory",2011,"Not Reported",37,"La Savoleire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25151,398254,"CHE","National Inventory",2011,"Not Reported",37,"Tritt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25152,398255,"CHE","National Inventory",2011,"Not Reported",37,"Höch Flue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25153,398256,"CHE","National Inventory",2011,"Not Reported",37,"Joulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25154,398257,"CHE","National Inventory",2011,"Not Reported",37,"Waldegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25155,398258,"CHE","National Inventory",2011,"Not Reported",37,"Gross Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25156,398259,"CHE","National Inventory",2011,"Not Reported",37,"Venettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25157,398260,"CHE","National Inventory",2011,"Not Reported",37,"Seechälen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25158,398261,"CHE","National Inventory",2011,"Not Reported",37,"Fryetal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25159,398262,"CHE","National Inventory",2011,"Not Reported",37,"Les Utsets","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25160,398263,"CHE","National Inventory",2011,"Not Reported",37,"Les Esserts Uldry","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25161,398264,"CHE","National Inventory",2011,"Not Reported",37,"Chüenossen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25162,398265,"CHE","National Inventory",2011,"Not Reported",37,"Rieter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25163,398266,"CHE","National Inventory",2011,"Not Reported",37,"Langsimatten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25164,398267,"CHE","National Inventory",2011,"Not Reported",37,"Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25165,398268,"CHE","National Inventory",2011,"Not Reported",37,"Geren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25166,398269,"CHE","National Inventory",2011,"Not Reported",37,"Börtli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25167,398270,"CHE","National Inventory",2011,"Not Reported",37,"Oberer Nätschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25168,398271,"CHE","National Inventory",2011,"Not Reported",37,"Unterer Nätschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25169,398272,"CHE","National Inventory",2011,"Not Reported",37,"Mettlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25170,398273,"CHE","National Inventory",2011,"Not Reported",37,"Gspender","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25171,398274,"CHE","National Inventory",2011,"Not Reported",37,"Laui","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25172,398275,"CHE","National Inventory",2011,"Not Reported",37,"Joggenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25173,398276,"CHE","National Inventory",2011,"Not Reported",37,"Börtli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25174,398277,"CHE","National Inventory",2011,"Not Reported",37,"Haltenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25175,398278,"CHE","National Inventory",2011,"Not Reported",37,"Bol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25176,398279,"CHE","National Inventory",2011,"Not Reported",37,"Ciernedon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25177,398280,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Bergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25178,398281,"CHE","National Inventory",2011,"Not Reported",37,"Gartli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25179,398282,"CHE","National Inventory",2011,"Not Reported",37,"Baberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25180,398283,"CHE","National Inventory",2011,"Not Reported",37,"La Côte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25181,398284,"CHE","National Inventory",2011,"Not Reported",37,"Bärchi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25182,398285,"CHE","National Inventory",2011,"Not Reported",37,"Zur Gand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25183,398286,"CHE","National Inventory",2011,"Not Reported",37,"Gletti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25184,398287,"CHE","National Inventory",2011,"Not Reported",37,"Maumochy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25185,398288,"CHE","National Inventory",2011,"Not Reported",37,"Oberen Hütten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25186,398289,"CHE","National Inventory",2011,"Not Reported",37,"Geissegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25187,398290,"CHE","National Inventory",2011,"Not Reported",37,"Chalberegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25188,398291,"CHE","National Inventory",2011,"Not Reported",37,"Eggbergen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25189,398292,"CHE","National Inventory",2011,"Not Reported",37,"Löli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25190,398293,"CHE","National Inventory",2011,"Not Reported",37,"Plan de Tissiniva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25191,398294,"CHE","National Inventory",2011,"Not Reported",37,"Wandelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25192,398295,"CHE","National Inventory",2011,"Not Reported",37,"Hinteren Hütten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25193,398296,"CHE","National Inventory",2011,"Not Reported",37,"Grande Oudèche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25194,398297,"CHE","National Inventory",2011,"Not Reported",37,"Ligmanig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25195,398298,"CHE","National Inventory",2011,"Not Reported",37,"Hüenderegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25196,398299,"CHE","National Inventory",2011,"Not Reported",37,"Horlachen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25197,398300,"CHE","National Inventory",2011,"Not Reported",37,"Petit Croset","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25198,398301,"CHE","National Inventory",2011,"Not Reported",37,"Chessel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25199,398302,"CHE","National Inventory",2011,"Not Reported",37,"Les Rontins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25200,398303,"CHE","National Inventory",2011,"Not Reported",37,"Uf den Oberschwänden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25201,398304,"CHE","National Inventory",2011,"Not Reported",37,"Äbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25202,398305,"CHE","National Inventory",2011,"Not Reported",37,"Äbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25203,398306,"CHE","National Inventory",2011,"Not Reported",37,"La Case","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25204,398307,"CHE","National Inventory",2011,"Not Reported",37,"Schmidigberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25205,398308,"CHE","National Inventory",2011,"Not Reported",37,"Razismatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25206,398309,"CHE","National Inventory",2011,"Not Reported",37,"Graggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25207,398310,"CHE","National Inventory",2011,"Not Reported",37,"Eierschwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25208,398311,"CHE","National Inventory",2011,"Not Reported",37,"Gorplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25209,398312,"CHE","National Inventory",2011,"Not Reported",37,"Belles Raies","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25210,398313,"CHE","National Inventory",2011,"Not Reported",37,"Rüteli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25211,398314,"CHE","National Inventory",2011,"Not Reported",37,"Ob den Hegen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25212,398315,"CHE","National Inventory",2011,"Not Reported",37,"Platten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25213,398316,"CHE","National Inventory",2011,"Not Reported",37,"Friteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25214,398317,"CHE","National Inventory",2011,"Not Reported",37,"Windeggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25215,398318,"CHE","National Inventory",2011,"Not Reported",37,"Gitschenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25216,398319,"CHE","National Inventory",2011,"Not Reported",37,"Ahöri","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25217,398320,"CHE","National Inventory",2011,"Not Reported",37,"Honegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25218,398321,"CHE","National Inventory",2011,"Not Reported",37,"Vorderen Bänder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25219,398322,"CHE","National Inventory",2011,"Not Reported",37,"Rimiberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25220,398323,"CHE","National Inventory",2011,"Not Reported",37,"Sagerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25221,398324,"CHE","National Inventory",2011,"Not Reported",37,"Plan Carré","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25222,398325,"CHE","National Inventory",2011,"Not Reported",37,"Uf der Lauwi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25223,398326,"CHE","National Inventory",2011,"Not Reported",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25224,398327,"CHE","National Inventory",2011,"Not Reported",37,"Wischflüe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25225,398328,"CHE","National Inventory",2011,"Not Reported",37,"Schützen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25226,398329,"CHE","National Inventory",2011,"Not Reported",37,"Buechholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25227,398330,"CHE","National Inventory",2011,"Not Reported",37,"Oberchäseren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25228,398331,"CHE","National Inventory",2011,"Not Reported",37,"Hanenspil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25229,398332,"CHE","National Inventory",2011,"Not Reported",37,"Les Dovalles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25230,398333,"CHE","National Inventory",2011,"Not Reported",37,"Trätter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25231,398334,"CHE","National Inventory",2011,"Not Reported",37,"Les Cressets","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25232,398335,"CHE","National Inventory",2011,"Not Reported",37,"Halten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25233,398336,"CHE","National Inventory",2011,"Not Reported",37,"Städeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25234,398337,"CHE","National Inventory",2011,"Not Reported",37,"Balmen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25235,398338,"CHE","National Inventory",2011,"Not Reported",37,"Holderen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25236,398339,"CHE","National Inventory",2011,"Not Reported",37,"Altchilch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25237,398340,"CHE","National Inventory",2011,"Not Reported",37,"Haut Letron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25238,398341,"CHE","National Inventory",2011,"Not Reported",37,"Rotboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25239,398342,"CHE","National Inventory",2011,"Not Reported",37,"Tristlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25240,398343,"CHE","National Inventory",2011,"Not Reported",37,"Ober Frimseli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25241,398344,"CHE","National Inventory",2011,"Not Reported",37,"Ober Axen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25242,398345,"CHE","National Inventory",2011,"Not Reported",37,"Wasserplatten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25243,398346,"CHE","National Inventory",2011,"Not Reported",37,"Bodmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25244,398347,"CHE","National Inventory",2011,"Not Reported",37,"Chilcherbergen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25245,398348,"CHE","National Inventory",2011,"Not Reported",37,"Chabloz Derrey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25246,398349,"CHE","National Inventory",2011,"Not Reported",37,"L'Ombriau d'en Bas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25247,398350,"CHE","National Inventory",2011,"Not Reported",37,"Vanil Blanc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25248,398351,"CHE","National Inventory",2011,"Not Reported",37,"Fürholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25249,398352,"CHE","National Inventory",2011,"Not Reported",37,"Wösch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25250,398353,"CHE","National Inventory",2011,"Not Reported",37,"Sex d'Amont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25251,398354,"CHE","National Inventory",2011,"Not Reported",37,"Les Tannes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25252,398355,"CHE","National Inventory",2011,"Not Reported",37,"Prés d'Albeuve","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25253,398356,"CHE","National Inventory",2011,"Not Reported",37,"Chenalette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25254,398357,"CHE","National Inventory",2011,"Not Reported",37,"Montbovon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25255,398358,"CHE","National Inventory",2011,"Not Reported",37,"Grosse Orgevalette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25256,398359,"CHE","National Inventory",2011,"Not Reported",37,"Hard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25257,398360,"CHE","National Inventory",2011,"Not Reported",37,"Vorderer Brandberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25258,398361,"CHE","National Inventory",2011,"Not Reported",37,"Matzendörfer Stierenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25259,398362,"CHE","National Inventory",2011,"Not Reported",37,"Oberdörfer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25260,398363,"CHE","National Inventory",2011,"Not Reported",37,"Balmflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25261,398364,"CHE","National Inventory",2011,"Not Reported",37,"Holzflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25262,398365,"CHE","National Inventory",2011,"Not Reported",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25263,398366,"CHE","National Inventory",2011,"Not Reported",37,"Stierenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25264,398367,"CHE","National Inventory",2011,"Not Reported",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25265,398368,"CHE","National Inventory",2011,"Not Reported",37,"Untere Tannmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25266,398369,"CHE","National Inventory",2011,"Not Reported",37,"Ober Solterschwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25267,398370,"CHE","National Inventory",2011,"Not Reported",37,"Oberbeinwil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25268,398371,"CHE","National Inventory",2011,"Not Reported",37,"Burgweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25269,398372,"CHE","National Inventory",2011,"Not Reported",37,"Rebenfeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25270,398373,"CHE","National Inventory",2011,"Not Reported",37,"Bützen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25271,398374,"CHE","National Inventory",2011,"Not Reported",37,"Rinderweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25272,398375,"CHE","National Inventory",2011,"Not Reported",37,"Chellenchöpfli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25273,398376,"CHE","National Inventory",2011,"Not Reported",37,"Nasenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25274,398377,"CHE","National Inventory",2011,"Not Reported",37,"Unteres Brüggli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25275,398378,"CHE","National Inventory",2011,"Not Reported",37,"Mausteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25276,398379,"CHE","National Inventory",2011,"Not Reported",37,"Gwidem","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25277,398380,"CHE","National Inventory",2011,"Not Reported",37,"Binzberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25278,398381,"CHE","National Inventory",2011,"Not Reported",37,"Oberbergweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25279,398382,"CHE","National Inventory",2011,"Not Reported",37,"Alte Gipsgrube","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25280,398383,"CHE","National Inventory",2011,"Not Reported",37,"Wirtshof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25281,398384,"CHE","National Inventory",2011,"Not Reported",37,"Chüematt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25282,398385,"CHE","National Inventory",2011,"Not Reported",37,"Niederwiler Stierenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25283,398386,"CHE","National Inventory",2011,"Not Reported",37,"Hasenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25284,398387,"CHE","National Inventory",2011,"Not Reported",37,"Hintere Schmidematt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25285,398388,"CHE","National Inventory",2011,"Not Reported",37,"Nieder Äbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25286,398389,"CHE","National Inventory",2011,"Not Reported",37,"Orgevaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25287,398390,"CHE","National Inventory",2011,"Not Reported",37,"Holden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25288,398391,"CHE","National Inventory",2011,"Not Reported",37,"Ravellen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25289,398392,"CHE","National Inventory",2011,"Not Reported",37,"Walenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25290,398393,"CHE","National Inventory",2011,"Not Reported",37,"Buschle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25291,398394,"CHE","National Inventory",2011,"Not Reported",37,"Sunnenhalb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25292,398395,"CHE","National Inventory",2011,"Not Reported",37,"Oberer Sennhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25293,398396,"CHE","National Inventory",2011,"Not Reported",37,"Motélon d'Avau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25294,398397,"CHE","National Inventory",2011,"Not Reported",37,"Hagliweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25295,398398,"CHE","National Inventory",2011,"Not Reported",37,"Rumpel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25296,398399,"CHE","National Inventory",2011,"Not Reported",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25297,398400,"CHE","National Inventory",2011,"Not Reported",37,"Sonnenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25298,398401,"CHE","National Inventory",2011,"Not Reported",37,"Dummeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25299,398402,"CHE","National Inventory",2011,"Not Reported",37,"Waldenstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25300,398403,"CHE","National Inventory",2011,"Not Reported",37,"Schlegel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25301,398404,"CHE","National Inventory",2011,"Not Reported",37,"Moretchopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25302,398405,"CHE","National Inventory",2011,"Not Reported",37,"Unter Möschbach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25303,398406,"CHE","National Inventory",2011,"Not Reported",37,"Niederwiler Stierenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25304,398407,"CHE","National Inventory",2011,"Not Reported",37,"Müren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25305,398408,"CHE","National Inventory",2011,"Not Reported",37,"Hasenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25306,398409,"CHE","National Inventory",2011,"Not Reported",37,"Untere Säge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25307,398410,"CHE","National Inventory",2011,"Not Reported",37,"Latschgetweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25308,398411,"CHE","National Inventory",2011,"Not Reported",37,"Obere Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25309,398412,"CHE","National Inventory",2011,"Not Reported",37,"Meltingerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25310,398413,"CHE","National Inventory",2011,"Not Reported",37,"Oberbergmatten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25311,398414,"CHE","National Inventory",2011,"Not Reported",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25312,398415,"CHE","National Inventory",2011,"Not Reported",37,"Sunnenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25313,398416,"CHE","National Inventory",2011,"Not Reported",37,"Lammet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25314,398417,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Geissberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25315,398418,"CHE","National Inventory",2011,"Not Reported",37,"Mittl. Rotmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25316,398419,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Hofbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25317,398420,"CHE","National Inventory",2011,"Not Reported",37,"Hollenrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25318,398421,"CHE","National Inventory",2011,"Not Reported",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25319,398422,"CHE","National Inventory",2011,"Not Reported",37,"Combe d'Allières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25320,398423,"CHE","National Inventory",2011,"Not Reported",37,"Schauenburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25321,398424,"CHE","National Inventory",2011,"Not Reported",37,"Kanalbord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25322,398425,"CHE","National Inventory",2011,"Not Reported",37,"Hübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25323,398426,"CHE","National Inventory",2011,"Not Reported",37,"Chlosterweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25324,398427,"CHE","National Inventory",2011,"Not Reported",37,"Wisigweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25325,398428,"CHE","National Inventory",2011,"Not Reported",37,"Wisshubel-Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25326,398429,"CHE","National Inventory",2011,"Not Reported",37,"Attisholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25327,398430,"CHE","National Inventory",2011,"Not Reported",37,"Plan Châtel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25328,398431,"CHE","National Inventory",2011,"Not Reported",37,"Mahren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25329,398432,"CHE","National Inventory",2011,"Not Reported",37,"Wartenfels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25330,398433,"CHE","National Inventory",2011,"Not Reported",37,"Rämpis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25331,398434,"CHE","National Inventory",2011,"Not Reported",37,"Summerhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25332,398435,"CHE","National Inventory",2011,"Not Reported",37,"Rutigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25333,398436,"CHE","National Inventory",2011,"Not Reported",37,"Gitziberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25334,398437,"CHE","National Inventory",2011,"Not Reported",37,"Mahren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25335,398438,"CHE","National Inventory",2011,"Not Reported",37,"Winzligen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25336,398439,"CHE","National Inventory",2011,"Not Reported",37,"Bechburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25337,398440,"CHE","National Inventory",2011,"Not Reported",37,"Rintel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25338,398441,"CHE","National Inventory",2011,"Not Reported",37,"Holzbünten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25339,398442,"CHE","National Inventory",2011,"Not Reported",37,"Schwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25340,398443,"CHE","National Inventory",2011,"Not Reported",37,"Mettlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25341,398444,"CHE","National Inventory",2011,"Not Reported",37,"Sous Mussillens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25342,398445,"CHE","National Inventory",2011,"Not Reported",37,"Mahren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25343,398446,"CHE","National Inventory",2011,"Not Reported",37,"Rebenfeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25344,398447,"CHE","National Inventory",2011,"Not Reported",37,"Rintel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25345,398448,"CHE","National Inventory",2011,"Not Reported",37,"Goldloch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25346,398449,"CHE","National Inventory",2011,"Not Reported",37,"Moosmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25347,398450,"CHE","National Inventory",2011,"Not Reported",37,"Le La","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25348,398451,"CHE","National Inventory",2011,"Not Reported",37,"Rotenrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25349,398452,"CHE","National Inventory",2011,"Not Reported",37,"Wiler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25350,398453,"CHE","National Inventory",2011,"Not Reported",37,"Stollenbord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25351,398454,"CHE","National Inventory",2011,"Not Reported",37,"Röselen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25352,398455,"CHE","National Inventory",2011,"Not Reported",37,"Wilweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25353,398456,"CHE","National Inventory",2011,"Not Reported",37,"Hard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25354,398457,"CHE","National Inventory",2011,"Not Reported",37,"Chatzenstigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25355,398458,"CHE","National Inventory",2011,"Not Reported",37,"Charmont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25356,398459,"CHE","National Inventory",2011,"Not Reported",37,"Engelberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25357,398460,"CHE","National Inventory",2011,"Not Reported",37,"Burst","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25358,398461,"CHE","National Inventory",2011,"Not Reported",37,"Hohe Winde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25359,398462,"CHE","National Inventory",2011,"Not Reported",37,"Hasel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25360,398463,"CHE","National Inventory",2011,"Not Reported",37,"Ring","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25361,398464,"CHE","National Inventory",2011,"Not Reported",37,"Hohe Winde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25362,398465,"CHE","National Inventory",2011,"Not Reported",37,"Hohe Winde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25363,398466,"CHE","National Inventory",2011,"Not Reported",37,"Roti Flue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25364,398467,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Erzberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25365,398468,"CHE","National Inventory",2011,"Not Reported",37,"Luterbrunnen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25366,398469,"CHE","National Inventory",2011,"Not Reported",37,"Büren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25367,398470,"CHE","National Inventory",2011,"Not Reported",37,"Le Devin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25368,398471,"CHE","National Inventory",2011,"Not Reported",37,"Cerniat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25369,398472,"CHE","National Inventory",2011,"Not Reported",37,"Clos Richoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25370,398473,"CHE","National Inventory",2011,"Not Reported",37,"Les Lésins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25371,398474,"CHE","National Inventory",2011,"Not Reported",37,"Brenleire Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25372,398475,"CHE","National Inventory",2011,"Not Reported",37,"Gros Moléson","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25373,398476,"CHE","National Inventory",2011,"Not Reported",37,"La Challa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25374,398477,"CHE","National Inventory",2011,"Not Reported",37,"Teysachaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25375,398478,"CHE","National Inventory",2011,"Not Reported",37,"Le Roc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25376,398479,"CHE","National Inventory",2011,"Not Reported",37,"Le Coula","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25377,398480,"CHE","National Inventory",2011,"Not Reported",37,"Unterm Stein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25378,398481,"CHE","National Inventory",2011,"Not Reported",37,"Im Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25379,398482,"CHE","National Inventory",2011,"Not Reported",37,"Stellitobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25380,398483,"CHE","National Inventory",2011,"Not Reported",37,"Listboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25381,398484,"CHE","National Inventory",2011,"Not Reported",37,"Inneren Bleisa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25382,398485,"CHE","National Inventory",2011,"Not Reported",37,"Flies","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25383,398486,"CHE","National Inventory",2011,"Not Reported",37,"Meierhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25384,398487,"CHE","National Inventory",2011,"Not Reported",37,"Zianos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25385,398488,"CHE","National Inventory",2011,"Not Reported",37,"Ober Pirigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25386,398489,"CHE","National Inventory",2011,"Not Reported",37,"Pirigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25387,398490,"CHE","National Inventory",2011,"Not Reported",37,"Cuvigné","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25388,398491,"CHE","National Inventory",2011,"Not Reported",37,"Maladers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25389,398492,"CHE","National Inventory",2011,"Not Reported",37,"Seewer Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25390,398493,"CHE","National Inventory",2011,"Not Reported",37,"Tewald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25391,398494,"CHE","National Inventory",2011,"Not Reported",37,"Servan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25392,398495,"CHE","National Inventory",2011,"Not Reported",37,"Büschalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25393,398496,"CHE","National Inventory",2011,"Not Reported",37,"Runcalier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25394,398497,"CHE","National Inventory",2011,"Not Reported",37,"Dent de Lys","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25395,398498,"CHE","National Inventory",2011,"Not Reported",37,"Strelaberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25396,398499,"CHE","National Inventory",2011,"Not Reported",37,"Chämpfenwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25397,398500,"CHE","National Inventory",2011,"Not Reported",37,"Mederger Witi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25398,398501,"CHE","National Inventory",2011,"Not Reported",37,"Valtschamela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25399,398502,"CHE","National Inventory",2011,"Not Reported",37,"Petit Malessert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25400,398503,"CHE","National Inventory",2011,"Not Reported",37,"Haupt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25401,398504,"CHE","National Inventory",2011,"Not Reported",37,"Ufem Joch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25402,398505,"CHE","National Inventory",2011,"Not Reported",37,"Ufem Joch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25403,398506,"CHE","National Inventory",2011,"Not Reported",37,"Am Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25404,398507,"CHE","National Inventory",2011,"Not Reported",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25405,398508,"CHE","National Inventory",2011,"Not Reported",37,"Brüggigerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25406,398509,"CHE","National Inventory",2011,"Not Reported",37,"Meni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25407,398510,"CHE","National Inventory",2011,"Not Reported",37,"Schäratannen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25408,398511,"CHE","National Inventory",2011,"Not Reported",37,"Chaudzerya","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25409,398512,"CHE","National Inventory",2011,"Not Reported",37,"Mättjen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25410,398513,"CHE","National Inventory",2011,"Not Reported",37,"Innerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25411,398514,"CHE","National Inventory",2011,"Not Reported",37,"Gämpimeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25412,398515,"CHE","National Inventory",2011,"Not Reported",37,"Witibergmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25413,398516,"CHE","National Inventory",2011,"Not Reported",37,"Sältenüeb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25414,398517,"CHE","National Inventory",2011,"Not Reported",37,"Tällimeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25415,398518,"CHE","National Inventory",2011,"Not Reported",37,"Glaris","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25416,398519,"CHE","National Inventory",2011,"Not Reported",37,"Rieberalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25417,398520,"CHE","National Inventory",2011,"Not Reported",37,"Barietta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25418,398521,"CHE","National Inventory",2011,"Not Reported",37,"Plaun Maria","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25419,398522,"CHE","National Inventory",2011,"Not Reported",37,"Weng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25420,398523,"CHE","National Inventory",2011,"Not Reported",37,"Munt da la Bescha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25421,398524,"CHE","National Inventory",2011,"Not Reported",37,"Plaun da l'Aua","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25422,398525,"CHE","National Inventory",2011,"Not Reported",37,"Lü Daint","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25423,398526,"CHE","National Inventory",2011,"Not Reported",37,"Döss dal Schübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25424,398527,"CHE","National Inventory",2011,"Not Reported",37,"La Crusch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25425,398528,"CHE","National Inventory",2011,"Not Reported",37,"Plaunpaschun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25426,398529,"CHE","National Inventory",2011,"Not Reported",37,"Alp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25427,398530,"CHE","National Inventory",2011,"Not Reported",37,"Platte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25428,398531,"CHE","National Inventory",2011,"Not Reported",37,"Parsenn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25429,398532,"CHE","National Inventory",2011,"Not Reported",37,"Bleisstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25430,398533,"CHE","National Inventory",2011,"Not Reported",37,"Chenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25431,398534,"CHE","National Inventory",2011,"Not Reported",37,"Falgginis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25432,398535,"CHE","National Inventory",2011,"Not Reported",37,"Fondei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25433,398536,"CHE","National Inventory",2011,"Not Reported",37,"Fondei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25434,398537,"CHE","National Inventory",2011,"Not Reported",37,"Bargs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25435,398538,"CHE","National Inventory",2011,"Not Reported",37,"Liggboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25436,398539,"CHE","National Inventory",2011,"Not Reported",37,"Pardäls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25437,398540,"CHE","National Inventory",2011,"Not Reported",37,"Vascrestis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25438,398541,"CHE","National Inventory",2011,"Not Reported",37,"Alat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25439,398542,"CHE","National Inventory",2011,"Not Reported",37,"Sapün","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25440,398543,"CHE","National Inventory",2011,"Not Reported",37,"Alpwisli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25441,398544,"CHE","National Inventory",2011,"Not Reported",37,"In den Stöcken","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25442,398545,"CHE","National Inventory",2011,"Not Reported",37,"Palüda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25443,398546,"CHE","National Inventory",2011,"Not Reported",37,"Pfaffenbarga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25444,398547,"CHE","National Inventory",2011,"Not Reported",37,"Balveins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25445,398548,"CHE","National Inventory",2011,"Not Reported",37,"Leibachmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25446,398549,"CHE","National Inventory",2011,"Not Reported",37,"Linaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25447,398550,"CHE","National Inventory",2011,"Not Reported",37,"Saloms","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25448,398551,"CHE","National Inventory",2011,"Not Reported",37,"Breit Zug","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25449,398552,"CHE","National Inventory",2011,"Not Reported",37,"Linaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25450,398553,"CHE","National Inventory",2011,"Not Reported",37,"Sogn Murezi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25451,398554,"CHE","National Inventory",2011,"Not Reported",37,"Serenera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25452,398555,"CHE","National Inventory",2011,"Not Reported",37,"Plaun Chamonas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25453,398556,"CHE","National Inventory",2011,"Not Reported",37,"Chasuras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25454,398557,"CHE","National Inventory",2011,"Not Reported",37,"Aveneyre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25455,398558,"CHE","National Inventory",2011,"Not Reported",37,"Terza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25456,398559,"CHE","National Inventory",2011,"Not Reported",37,"Costas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25457,398560,"CHE","National Inventory",2011,"Not Reported",37,"Costeras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25458,398561,"CHE","National Inventory",2011,"Not Reported",37,"Ob den Bender","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25459,398562,"CHE","National Inventory",2011,"Not Reported",37,"Bonaudon du Milieu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25460,398563,"CHE","National Inventory",2011,"Not Reported",37,"Wang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25461,398564,"CHE","National Inventory",2011,"Not Reported",37,"Holz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25462,398565,"CHE","National Inventory",2011,"Not Reported",37,"Cha Noschas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25463,398566,"CHE","National Inventory",2011,"Not Reported",37,"Pra Vegl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25464,398567,"CHE","National Inventory",2011,"Not Reported",37,"Funtauna Naira","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25465,398568,"CHE","National Inventory",2011,"Not Reported",37,"Reinacherheide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25466,398569,"CHE","National Inventory",2011,"Not Reported",37,"Grand Chalet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25467,398570,"CHE","National Inventory",2011,"Not Reported",37,"Euschels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25468,398571,"CHE","National Inventory",2011,"Not Reported",37,"Spitzflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25469,398572,"CHE","National Inventory",2011,"Not Reported",37,"Pointe de Balachaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25470,398573,"CHE","National Inventory",2011,"Not Reported",37,"Fochsen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25471,398574,"CHE","National Inventory",2011,"Not Reported",37,"Mittler Chüeboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25472,398575,"CHE","National Inventory",2011,"Not Reported",37,"Mittler Chüeboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25473,398576,"CHE","National Inventory",2011,"Not Reported",37,"Balachaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25474,398577,"CHE","National Inventory",2011,"Not Reported",37,"Ritzlialp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25475,398578,"CHE","National Inventory",2011,"Not Reported",37,"Pletscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25476,398579,"CHE","National Inventory",2011,"Not Reported",37,"Chörbli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25477,398580,"CHE","National Inventory",2011,"Not Reported",37,"Gerstera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25478,398581,"CHE","National Inventory",2011,"Not Reported",37,"Ob. Jansegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25479,398582,"CHE","National Inventory",2011,"Not Reported",37,"Chaux de Férédetse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25480,398583,"CHE","National Inventory",2011,"Not Reported",37,"La Jaquetta Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25481,398584,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Maischüpfen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25482,398585,"CHE","National Inventory",2011,"Not Reported",37,"Schoresberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25483,398586,"CHE","National Inventory",2011,"Not Reported",37,"Les Raveires","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25484,398587,"CHE","National Inventory",2011,"Not Reported",37,"Dürry","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25485,398588,"CHE","National Inventory",2011,"Not Reported",37,"Perlersweide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25486,398589,"CHE","National Inventory",2011,"Not Reported",37,"Stützli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25487,398590,"CHE","National Inventory",2011,"Not Reported",37,"Gross Rüggli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25488,398591,"CHE","National Inventory",2011,"Not Reported",37,"Litemard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25489,398592,"CHE","National Inventory",2011,"Not Reported",37,"Goldauer Bergsturz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25490,398593,"CHE","National Inventory",2011,"Not Reported",37,"Steinhüttli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25491,398594,"CHE","National Inventory",2011,"Not Reported",37,"Stöckplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25492,398595,"CHE","National Inventory",2011,"Not Reported",37,"Mittler-Brunniberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25493,398596,"CHE","National Inventory",2011,"Not Reported",37,"Stapfenplangg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25494,398597,"CHE","National Inventory",2011,"Not Reported",37,"Fönenbergen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25495,398598,"CHE","National Inventory",2011,"Not Reported",37,"Fron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25496,398599,"CHE","National Inventory",2011,"Not Reported",37,"Nollen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25497,398600,"CHE","National Inventory",2011,"Not Reported",37,"Martschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25498,398601,"CHE","National Inventory",2011,"Not Reported",37,"Grands Feniveis d'Amont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25499,398602,"CHE","National Inventory",2011,"Not Reported",37,"Dossen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25500,398603,"CHE","National Inventory",2011,"Not Reported",37,"Roggenstock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25501,398604,"CHE","National Inventory",2011,"Not Reported",37,"Charenstöckli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25502,398605,"CHE","National Inventory",2011,"Not Reported",37,"Furggeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25503,398606,"CHE","National Inventory",2011,"Not Reported",37,"Heubrigsflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25504,398607,"CHE","National Inventory",2011,"Not Reported",37,"Chaux du Lapé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25505,398608,"CHE","National Inventory",2011,"Not Reported",37,"Mittler-Urmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25506,398609,"CHE","National Inventory",2011,"Not Reported",37,"Acherberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25507,398610,"CHE","National Inventory",2011,"Not Reported",37,"Steinhüttli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25508,398611,"CHE","National Inventory",2011,"Not Reported",37,"Timpel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25509,398612,"CHE","National Inventory",2011,"Not Reported",37,"Rübi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25510,398613,"CHE","National Inventory",2011,"Not Reported",37,"Masholdern","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25511,398614,"CHE","National Inventory",2011,"Not Reported",37,"Badegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25512,398615,"CHE","National Inventory",2011,"Not Reported",37,"Ratzli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25513,398616,"CHE","National Inventory",2011,"Not Reported",37,"Husen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25514,398617,"CHE","National Inventory",2011,"Not Reported",37,"Chalberweidli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25515,398618,"CHE","National Inventory",2011,"Not Reported",37,"Eggenwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25516,398619,"CHE","National Inventory",2011,"Not Reported",37,"Le Liti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25517,398620,"CHE","National Inventory",2011,"Not Reported",37,"Härzig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25518,398621,"CHE","National Inventory",2011,"Not Reported",37,"Struss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25519,398622,"CHE","National Inventory",2011,"Not Reported",37,"Hochmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25520,398623,"CHE","National Inventory",2011,"Not Reported",37,"Sperlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25521,398624,"CHE","National Inventory",2011,"Not Reported",37,"Märis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25522,398625,"CHE","National Inventory",2011,"Not Reported",37,"Le Rosy d'Amont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25523,398626,"CHE","National Inventory",2011,"Not Reported",37,"Les Râpes Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25524,398627,"CHE","National Inventory",2011,"Not Reported",37,"Le Rosy d'Avau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25525,398628,"CHE","National Inventory",2011,"Not Reported",37,"Vacheresse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25526,398629,"CHE","National Inventory",2011,"Not Reported",37,"Les Râpes Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25527,398630,"CHE","National Inventory",2011,"Not Reported",37,"Le Moléson","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25528,398631,"CHE","National Inventory",2011,"Not Reported",37,"Tsuatsaux d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25529,398632,"CHE","National Inventory",2011,"Not Reported",37,"Bounavaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25530,398633,"CHE","National Inventory",2011,"Not Reported",37,"Petsernetse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25531,398634,"CHE","National Inventory",2011,"Not Reported",37,"Petsernetse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25532,398635,"CHE","National Inventory",2011,"Not Reported",37,"Tsavas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25533,398636,"CHE","National Inventory",2011,"Not Reported",37,"Joux Verte Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25534,398637,"CHE","National Inventory",2011,"Not Reported",37,"Les Ontanettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25535,398638,"CHE","National Inventory",2011,"Not Reported",37,"Col de Lys","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25536,398639,"CHE","National Inventory",2011,"Not Reported",37,"Pierra Derrey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25537,398640,"CHE","National Inventory",2011,"Not Reported",37,"Ulmet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25538,398641,"CHE","National Inventory",2011,"Not Reported",37,"Mittlere Romaiweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25539,398642,"CHE","National Inventory",2011,"Not Reported",37,"Chliweidli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25540,398643,"CHE","National Inventory",2011,"Not Reported",37,"Brügglingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25541,398644,"CHE","National Inventory",2011,"Not Reported",37,"Rumpel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25542,398645,"CHE","National Inventory",2011,"Not Reported",37,"Blauenweide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25543,398646,"CHE","National Inventory",2011,"Not Reported",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25544,398647,"CHE","National Inventory",2011,"Not Reported",37,"Lionza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25545,398648,"CHE","National Inventory",2011,"Not Reported",37,"Bolla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25546,398649,"CHE","National Inventory",2011,"Not Reported",37,"Preda di Ganosa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25547,398650,"CHE","National Inventory",2011,"Not Reported",37,"Fornéi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25548,398651,"CHE","National Inventory",2011,"Not Reported",37,"Ronchetto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25549,398652,"CHE","National Inventory",2011,"Not Reported",37,"Camperio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25550,398653,"CHE","National Inventory",2011,"Not Reported",37,"Soz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25551,398654,"CHE","National Inventory",2011,"Not Reported",37,"Orello","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25552,398655,"CHE","National Inventory",2011,"Not Reported",37,"Bidré","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25553,398656,"CHE","National Inventory",2011,"Not Reported",37,"Ticiall","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25554,398657,"CHE","National Inventory",2011,"Not Reported",37,"Tortengo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25555,398658,"CHE","National Inventory",2011,"Not Reported",37,"Ponto Valentino","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25556,398659,"CHE","National Inventory",2011,"Not Reported",37,"S. Carlo di Negrentino","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25557,398660,"CHE","National Inventory",2011,"Not Reported",37,"Campiroi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25558,398661,"CHE","National Inventory",2011,"Not Reported",37,"Doro","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25559,398662,"CHE","National Inventory",2011,"Not Reported",37,"Bedrin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25560,398663,"CHE","National Inventory",2011,"Not Reported",37,"Brione","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25561,398664,"CHE","National Inventory",2011,"Not Reported",37,"Monte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25562,398665,"CHE","National Inventory",2011,"Not Reported",37,"Canscei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25563,398666,"CHE","National Inventory",2011,"Not Reported",37,"Colla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25564,398667,"CHE","National Inventory",2011,"Not Reported",37,"Rovadé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25565,398668,"CHE","National Inventory",2011,"Not Reported",37,"Pinca Zuccone","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25566,398669,"CHE","National Inventory",2011,"Not Reported",37,"Berretta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25567,398670,"CHE","National Inventory",2011,"Not Reported",37,"Lunghi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25568,398671,"CHE","National Inventory",2011,"Not Reported",37,"Orsàira di Fuori","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25569,398672,"CHE","National Inventory",2011,"Not Reported",37,"Töira","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25570,398673,"CHE","National Inventory",2011,"Not Reported",37,"Campra di Qua","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25571,398674,"CHE","National Inventory",2011,"Not Reported",37,"Fontana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25572,398675,"CHE","National Inventory",2011,"Not Reported",37,"Soria Sopra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25573,398676,"CHE","National Inventory",2011,"Not Reported",37,"Nostengo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25574,398677,"CHE","National Inventory",2011,"Not Reported",37,"Holingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25575,398678,"CHE","National Inventory",2011,"Not Reported",37,"Rossinengo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25576,398679,"CHE","National Inventory",2011,"Not Reported",37,"Gorda di Sotto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25577,398680,"CHE","National Inventory",2011,"Not Reported",37,"Gorda di Sopra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25578,398681,"CHE","National Inventory",2011,"Not Reported",37,"Premesti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25579,398682,"CHE","National Inventory",2011,"Not Reported",37,"Trascis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25580,398683,"CHE","National Inventory",2011,"Not Reported",37,"San Lorenzo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25581,398684,"CHE","National Inventory",2011,"Not Reported",37,"Suréi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25582,398685,"CHE","National Inventory",2011,"Not Reported",37,"Horn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25583,398686,"CHE","National Inventory",2011,"Not Reported",37,"Ciossera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25584,398687,"CHE","National Inventory",2011,"Not Reported",37,"Ca del Cucco","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25585,398688,"CHE","National Inventory",2011,"Not Reported",37,"Tros","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25586,398689,"CHE","National Inventory",2011,"Not Reported",37,"Pianzei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25587,398690,"CHE","National Inventory",2011,"Not Reported",37,"Tasbèi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25588,398691,"CHE","National Inventory",2011,"Not Reported",37,"Grotti di Loderio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25589,398692,"CHE","National Inventory",2011,"Not Reported",37,"Iragna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25590,398693,"CHE","National Inventory",2011,"Not Reported",37,"Aurigeno","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25591,398694,"CHE","National Inventory",2011,"Not Reported",37,"Torbeccio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25592,398695,"CHE","National Inventory",2011,"Not Reported",37,"Prou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25593,398696,"CHE","National Inventory",2011,"Not Reported",37,"Cortone","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25594,398697,"CHE","National Inventory",2011,"Not Reported",37,"Monte di Comino","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25595,398698,"CHE","National Inventory",2011,"Not Reported",37,"Leimet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25596,398699,"CHE","National Inventory",2011,"Not Reported",37,"Monte di Comino","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25597,398700,"CHE","National Inventory",2011,"Not Reported",37,"Castra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25598,398701,"CHE","National Inventory",2011,"Not Reported",37,"A. Vicania","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25599,398702,"CHE","National Inventory",2011,"Not Reported",37,"Guasto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25600,398703,"CHE","National Inventory",2011,"Not Reported",37,"Acquacalda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25601,398704,"CHE","National Inventory",2011,"Not Reported",37,"Cassin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25602,398705,"CHE","National Inventory",2011,"Not Reported",37,"Denti della Vecchia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25603,398706,"CHE","National Inventory",2011,"Not Reported",37,"Monte Caslano","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25604,398707,"CHE","National Inventory",2011,"Not Reported",37,"Monte Generoso","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25605,398708,"CHE","National Inventory",2011,"Not Reported",37,"Corengiole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25606,398709,"CHE","National Inventory",2011,"Not Reported",37,"Dübach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25607,398710,"CHE","National Inventory",2011,"Not Reported",37,"Scudellate","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25608,398711,"CHE","National Inventory",2011,"Not Reported",37,"Segoletto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25609,398712,"CHE","National Inventory",2011,"Not Reported",37,"Roncapiano","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25610,398713,"CHE","National Inventory",2011,"Not Reported",37,"Piancabella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25611,398714,"CHE","National Inventory",2011,"Not Reported",37,"Dosso d'Arla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25612,398715,"CHE","National Inventory",2011,"Not Reported",37,"Monte San Giorgio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25613,398716,"CHE","National Inventory",2011,"Not Reported",37,"Fridhag","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25614,398717,"CHE","National Inventory",2011,"Not Reported",37,"Croce","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25615,398718,"CHE","National Inventory",2011,"Not Reported",37,"Sassi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25616,398719,"CHE","National Inventory",2011,"Not Reported",37,"Poncione d'Arzo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25617,398720,"CHE","National Inventory",2011,"Not Reported",37,"Loasa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25618,398721,"CHE","National Inventory",2011,"Not Reported",37,"Perfetta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25619,398722,"CHE","National Inventory",2011,"Not Reported",37,"Caviano","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25620,398723,"CHE","National Inventory",2011,"Not Reported",37,"Roncaccio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25621,398724,"CHE","National Inventory",2011,"Not Reported",37,"Peregai","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25622,398725,"CHE","National Inventory",2011,"Not Reported",37,"Pianspessa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25623,398726,"CHE","National Inventory",2011,"Not Reported",37,"Pree","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25624,398727,"CHE","National Inventory",2011,"Not Reported",37,"Meride","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25625,398728,"CHE","National Inventory",2011,"Not Reported",37,"Roncaia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25626,398729,"CHE","National Inventory",2011,"Not Reported",37,"Grotto del Lauro","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25627,398730,"CHE","National Inventory",2011,"Not Reported",37,"Pianche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25628,398731,"CHE","National Inventory",2011,"Not Reported",37,"Coleta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25629,398732,"CHE","National Inventory",2011,"Not Reported",37,"Liràn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25630,398733,"CHE","National Inventory",2011,"Not Reported",37,"S. Giorgio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25631,398734,"CHE","National Inventory",2011,"Not Reported",37,"Margonègia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25632,398735,"CHE","National Inventory",2011,"Not Reported",37,"Selna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25633,398736,"CHE","National Inventory",2011,"Not Reported",37,"Prato di Ce","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25634,398737,"CHE","National Inventory",2011,"Not Reported",37,"Busnengo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25635,398738,"CHE","National Inventory",2011,"Not Reported",37,"Deggio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25636,398739,"CHE","National Inventory",2011,"Not Reported",37,"Pradóir","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25637,398740,"CHE","National Inventory",2011,"Not Reported",37,"Monte di Cima","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25638,398741,"CHE","National Inventory",2011,"Not Reported",37,"Gerre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25639,398742,"CHE","National Inventory",2011,"Not Reported",37,"Andirö","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25640,398743,"CHE","National Inventory",2011,"Not Reported",37,"Sasso Guidà","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25641,398744,"CHE","National Inventory",2011,"Not Reported",37,"Travorno Maggiore","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25642,398745,"CHE","National Inventory",2011,"Not Reported",37,"Biscia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25643,398746,"CHE","National Inventory",2011,"Not Reported",37,"Trivelli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25644,398747,"CHE","National Inventory",2011,"Not Reported",37,"San Salvatore","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25645,398748,"CHE","National Inventory",2011,"Not Reported",37,"Erhollen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25646,398749,"CHE","National Inventory",2011,"Not Reported",37,"Redonda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25647,398750,"CHE","National Inventory",2011,"Not Reported",37,"Galbis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25648,398751,"CHE","National Inventory",2011,"Not Reported",37,"Cima di Fojorina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25649,398752,"CHE","National Inventory",2011,"Not Reported",37,"Posép","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25650,398753,"CHE","National Inventory",2011,"Not Reported",37,"Croce Portera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25651,398754,"CHE","National Inventory",2011,"Not Reported",37,"Marzanéi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25652,398755,"CHE","National Inventory",2011,"Not Reported",37,"Anvéuda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25653,398756,"CHE","National Inventory",2011,"Not Reported",37,"M. Tamaro","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25654,398757,"CHE","National Inventory",2011,"Not Reported",37,"Camoghè","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25655,398758,"CHE","National Inventory",2011,"Not Reported",37,"Casone","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25656,398759,"CHE","National Inventory",2011,"Not Reported",37,"Pizzo Leone","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25657,398760,"CHE","National Inventory",2011,"Not Reported",37,"Gaggio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25658,398761,"CHE","National Inventory",2011,"Not Reported",37,"Giger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25659,398762,"CHE","National Inventory",2011,"Not Reported",37,"Nusshalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25660,398763,"CHE","National Inventory",2011,"Not Reported",37,"Hell","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25661,398764,"CHE","National Inventory",2011,"Not Reported",37,"Albach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25662,398765,"CHE","National Inventory",2011,"Not Reported",37,"Hoher Kasten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25663,398766,"CHE","National Inventory",2011,"Not Reported",37,"Alp Sigel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25664,398767,"CHE","National Inventory",2011,"Not Reported",37,"Hüslers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25665,398768,"CHE","National Inventory",2011,"Not Reported",37,"Halten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25666,398769,"CHE","National Inventory",2011,"Not Reported",37,"Oltme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25667,398770,"CHE","National Inventory",2011,"Not Reported",37,"Linthkanal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25668,398771,"CHE","National Inventory",2011,"Not Reported",37,"Tierweg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25669,398772,"CHE","National Inventory",2011,"Not Reported",37,"Bergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25670,398773,"CHE","National Inventory",2011,"Not Reported",37,"Chammteil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25671,398774,"CHE","National Inventory",2011,"Not Reported",37,"Stäfeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25672,398775,"CHE","National Inventory",2011,"Not Reported",37,"Fachtegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25673,398776,"CHE","National Inventory",2011,"Not Reported",37,"Schafplänggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25674,398777,"CHE","National Inventory",2011,"Not Reported",37,"Liesbergweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25675,398778,"CHE","National Inventory",2011,"Not Reported",37,"Gumen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25676,398779,"CHE","National Inventory",2011,"Not Reported",37,"Alpgmach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25677,398780,"CHE","National Inventory",2011,"Not Reported",37,"Stock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25678,398781,"CHE","National Inventory",2011,"Not Reported",37,"Rüchi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25679,398782,"CHE","National Inventory",2011,"Not Reported",37,"Vordere Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25680,398783,"CHE","National Inventory",2011,"Not Reported",37,"Rigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25681,398784,"CHE","National Inventory",2011,"Not Reported",37,"Hintere Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25682,398785,"CHE","National Inventory",2011,"Not Reported",37,"Helgehüsli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25683,398786,"CHE","National Inventory",2011,"Not Reported",37,"Schlattberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25684,398787,"CHE","National Inventory",2011,"Not Reported",37,"Ober Längenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25685,398788,"CHE","National Inventory",2011,"Not Reported",37,"Schwämmli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25686,398789,"CHE","National Inventory",2011,"Not Reported",37,"Chängelboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25687,398790,"CHE","National Inventory",2011,"Not Reported",37,"Chämmenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25688,398791,"CHE","National Inventory",2011,"Not Reported",37,"Ober Herberig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25689,398792,"CHE","National Inventory",2011,"Not Reported",37,"Rhodannenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25690,398793,"CHE","National Inventory",2011,"Not Reported",37,"Ober Rueggis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25691,398794,"CHE","National Inventory",2011,"Not Reported",37,"Unter Herberig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25692,398795,"CHE","National Inventory",2011,"Not Reported",37,"Ochsenfeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25693,398796,"CHE","National Inventory",2011,"Not Reported",37,"Bärenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25694,398797,"CHE","National Inventory",2011,"Not Reported",37,"Glattmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25695,398798,"CHE","National Inventory",2011,"Not Reported",37,"Innerbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25696,398799,"CHE","National Inventory",2011,"Not Reported",37,"Glattmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25697,398800,"CHE","National Inventory",2011,"Not Reported",37,"Moos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25698,398801,"CHE","National Inventory",2011,"Not Reported",37,"Holzbort","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25699,398802,"CHE","National Inventory",2011,"Not Reported",37,"Schaft","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25700,398803,"CHE","National Inventory",2011,"Not Reported",37,"Schlattbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25701,398804,"CHE","National Inventory",2011,"Not Reported",37,"Ochsenbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25702,398805,"CHE","National Inventory",2011,"Not Reported",37,"Baumgarten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25703,398806,"CHE","National Inventory",2011,"Not Reported",37,"Sägemühle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25704,398807,"CHE","National Inventory",2011,"Not Reported",37,"Bruch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25705,398808,"CHE","National Inventory",2011,"Not Reported",37,"Durlaui","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25706,398809,"CHE","National Inventory",2011,"Not Reported",37,"Bleiggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25707,398810,"CHE","National Inventory",2011,"Not Reported",37,"Rossboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25708,398811,"CHE","National Inventory",2011,"Not Reported",37,"Unter Friteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25709,398812,"CHE","National Inventory",2011,"Not Reported",37,"Rufiberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25710,398813,"CHE","National Inventory",2011,"Not Reported",37,"Trügglisrus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25711,398814,"CHE","National Inventory",2011,"Not Reported",37,"Linthkanal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25712,398815,"CHE","National Inventory",2011,"Not Reported",37,"Boggenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25713,398816,"CHE","National Inventory",2011,"Not Reported",37,"Hintere Facht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25714,398817,"CHE","National Inventory",2011,"Not Reported",37,"Mullerenplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25715,398818,"CHE","National Inventory",2011,"Not Reported",37,"Grund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25716,398819,"CHE","National Inventory",2011,"Not Reported",37,"Schlatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25717,398820,"CHE","National Inventory",2011,"Not Reported",37,"Schletter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25718,398821,"CHE","National Inventory",2011,"Not Reported",37,"Schilttal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25719,398822,"CHE","National Inventory",2011,"Not Reported",37,"Stöckli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25720,398823,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Buchs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25721,398824,"CHE","National Inventory",2011,"Not Reported",37,"Äschenchöpf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25722,398825,"CHE","National Inventory",2011,"Not Reported",37,"Geisstal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25723,398826,"CHE","National Inventory",2011,"Not Reported",37,"Bergguet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25724,398827,"CHE","National Inventory",2011,"Not Reported",37,"Bischof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25725,398828,"CHE","National Inventory",2011,"Not Reported",37,"Feleten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25726,398829,"CHE","National Inventory",2011,"Not Reported",37,"Wildenstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25727,398830,"CHE","National Inventory",2011,"Not Reported",37,"Funkeblatz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25728,398831,"CHE","National Inventory",2011,"Not Reported",37,"Hindere-Bärg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25729,398832,"CHE","National Inventory",2011,"Not Reported",37,"Loo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25730,398833,"CHE","National Inventory",2011,"Not Reported",37,"Schelmebüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25731,398834,"CHE","National Inventory",2011,"Not Reported",37,"Weierste","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25732,398835,"CHE","National Inventory",2011,"Not Reported",37,"Chabishaupt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25733,398836,"CHE","National Inventory",2011,"Not Reported",37,"Stettfurt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25734,398837,"CHE","National Inventory",2011,"Not Reported",37,"Spottebärg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25735,398838,"CHE","National Inventory",2011,"Not Reported",37,"Sandbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25736,398839,"CHE","National Inventory",2011,"Not Reported",37,"Meiersbode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25737,398840,"CHE","National Inventory",2011,"Not Reported",37,"Tanebööl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25738,398841,"CHE","National Inventory",2011,"Not Reported",37,"Loch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25739,398842,"CHE","National Inventory",2011,"Not Reported",37,"Chilpen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25740,398843,"CHE","National Inventory",2011,"Not Reported",37,"Obere Schachlete","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25741,398844,"CHE","National Inventory",2011,"Not Reported",37,"Bogental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25742,398845,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Geissberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25743,398846,"CHE","National Inventory",2011,"Not Reported",37,"Wiesengriener","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25744,398847,"CHE","National Inventory",2011,"Not Reported",37,"Elsässer Bahn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25745,398848,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzpark","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25746,398849,"CHE","National Inventory",2011,"Not Reported",37,"Elsässer Bahn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25747,398850,"CHE","National Inventory",2011,"Not Reported",37,"Brügglingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25748,398851,"CHE","National Inventory",2011,"Not Reported",37,"Zwölf Jucharte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25749,398852,"CHE","National Inventory",2011,"Not Reported",37,"Tal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25750,398853,"CHE","National Inventory",2011,"Not Reported",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25751,398854,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Bendern","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25752,398855,"CHE","National Inventory",2011,"Not Reported",37,"Chuffort","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25753,398856,"CHE","National Inventory",2011,"Not Reported",37,"Linthdamm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25754,398857,"CHE","National Inventory",2011,"Not Reported",37,"Chemeneau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25755,398858,"CHE","National Inventory",2011,"Not Reported",37,"Bel Air","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25756,398859,"CHE","National Inventory",2011,"Not Reported",37,"Hinterbetlis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25757,398860,"CHE","National Inventory",2011,"Not Reported",37,"Petit Som Martel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25758,398861,"CHE","National Inventory",2011,"Not Reported",37,"Blauenweide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25759,398862,"CHE","National Inventory",2011,"Not Reported",37,"Plättli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25760,398863,"CHE","National Inventory",2011,"Not Reported",37,"Le Ceylard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25761,398864,"CHE","National Inventory",2011,"Not Reported",37,"Haslengaden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25762,398865,"CHE","National Inventory",2011,"Not Reported",37,"Le Bredot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25763,398866,"CHE","National Inventory",2011,"Not Reported",37,"Chez Blaiset","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25764,398867,"CHE","National Inventory",2011,"Not Reported",37,"Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25765,398868,"CHE","National Inventory",2011,"Not Reported",37,"Grütt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25766,398869,"CHE","National Inventory",2011,"Not Reported",37,"Les Prises","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25767,398870,"CHE","National Inventory",2011,"Not Reported",37,"Hinterer Josen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25768,398871,"CHE","National Inventory",2011,"Not Reported",37,"Les Replans","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25769,398872,"CHE","National Inventory",2011,"Not Reported",37,"Schloss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25770,398873,"CHE","National Inventory",2011,"Not Reported",37,"Prise Milord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25771,398874,"CHE","National Inventory",2011,"Not Reported",37,"Creux du Van","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25772,398875,"CHE","National Inventory",2011,"Not Reported",37,"Helfenbergrütenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25773,398876,"CHE","National Inventory",2011,"Not Reported",37,"Pât. de Meudon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25774,398877,"CHE","National Inventory",2011,"Not Reported",37,"Les Charrières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25775,398878,"CHE","National Inventory",2011,"Not Reported",37,"Eichbühl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25776,398879,"CHE","National Inventory",2011,"Not Reported",37,"Portnol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25777,398880,"CHE","National Inventory",2011,"Not Reported",37,"Noirvaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25778,398881,"CHE","National Inventory",2011,"Not Reported",37,"Mét. de Dombresson","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25779,398882,"CHE","National Inventory",2011,"Not Reported",37,"Mét. de Dombresson","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25780,398883,"CHE","National Inventory",2011,"Not Reported",37,"Le Crosat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25781,398884,"CHE","National Inventory",2011,"Not Reported",37,"La Chaux d'Amin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25782,398885,"CHE","National Inventory",2011,"Not Reported",37,"Les Monts Orientaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25783,398886,"CHE","National Inventory",2011,"Not Reported",37,"Monthey du Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25784,398887,"CHE","National Inventory",2011,"Not Reported",37,"Combes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25785,398888,"CHE","National Inventory",2011,"Not Reported",37,"Brisecou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25786,398889,"CHE","National Inventory",2011,"Not Reported",37,"La Serment","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25787,398890,"CHE","National Inventory",2011,"Not Reported",37,"Rochers Bruns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25788,398891,"CHE","National Inventory",2011,"Not Reported",37,"Grande Racine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25789,398892,"CHE","National Inventory",2011,"Not Reported",37,"Mont Racine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25790,398893,"CHE","National Inventory",2011,"Not Reported",37,"Les Rièdes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25791,398894,"CHE","National Inventory",2011,"Not Reported",37,"La Goulette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25792,398895,"CHE","National Inventory",2011,"Not Reported",37,"Pré aux Planes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25793,398896,"CHE","National Inventory",2011,"Not Reported",37,"La Goulette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25794,398897,"CHE","National Inventory",2011,"Not Reported",37,"Verlüls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25795,398898,"CHE","National Inventory",2011,"Not Reported",37,"Petite Sagneule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25796,398899,"CHE","National Inventory",2011,"Not Reported",37,"Roches de l'Ermitage","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25797,398900,"CHE","National Inventory",2011,"Not Reported",37,"Les Grattes de Vent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25798,398901,"CHE","National Inventory",2011,"Not Reported",37,"Capätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25799,398902,"CHE","National Inventory",2011,"Not Reported",37,"Les Bornels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25800,398903,"CHE","National Inventory",2011,"Not Reported",37,"L'Armont de Vent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25801,398904,"CHE","National Inventory",2011,"Not Reported",37,"Le Barthélemy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25802,398905,"CHE","National Inventory",2011,"Not Reported",37,"Ruine Wartau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25803,398906,"CHE","National Inventory",2011,"Not Reported",37,"Crêt du Cervelet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25804,398907,"CHE","National Inventory",2011,"Not Reported",37,"Planeyse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25805,398908,"CHE","National Inventory",2011,"Not Reported",37,"Les Michel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25806,398909,"CHE","National Inventory",2011,"Not Reported",37,"Petits Michel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25807,398910,"CHE","National Inventory",2011,"Not Reported",37,"Trémalmont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25808,398911,"CHE","National Inventory",2011,"Not Reported",37,"Les Fontenettes Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25809,398912,"CHE","National Inventory",2011,"Not Reported",37,"Petite Charbonnière","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25810,398913,"CHE","National Inventory",2011,"Not Reported",37,"Le Loclat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25811,398914,"CHE","National Inventory",2011,"Not Reported",37,"Côte Bertin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25812,398915,"CHE","National Inventory",2011,"Not Reported",37,"Les Replans","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25813,398916,"CHE","National Inventory",2011,"Not Reported",37,"Les Replans","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25814,398917,"CHE","National Inventory",2011,"Not Reported",37,"Sonnenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25815,398918,"CHE","National Inventory",2011,"Not Reported",37,"La Benette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25816,398919,"CHE","National Inventory",2011,"Not Reported",37,"Les Côtes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25817,398920,"CHE","National Inventory",2011,"Not Reported",37,"Mont Dar","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25818,398921,"CHE","National Inventory",2011,"Not Reported",37,"Les Charbonnières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25819,398922,"CHE","National Inventory",2011,"Not Reported",37,"Lochberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25820,398923,"CHE","National Inventory",2011,"Not Reported",37,"Rehhagweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25821,398924,"CHE","National Inventory",2011,"Not Reported",37,"Hinterspina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25822,398925,"CHE","National Inventory",2011,"Not Reported",37,"Beurnevésin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25823,398926,"CHE","National Inventory",2011,"Not Reported",37,"Hallen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25824,398927,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage de Bavelier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25825,398928,"CHE","National Inventory",2011,"Not Reported",37,"Vies de Roggenburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25826,398929,"CHE","National Inventory",2011,"Not Reported",37,"La Réselle de Soyhières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25827,398930,"CHE","National Inventory",2011,"Not Reported",37,"En Bouec","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25828,398931,"CHE","National Inventory",2011,"Not Reported",37,"Côte de Mai","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25829,398932,"CHE","National Inventory",2011,"Not Reported",37,"La Joux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25830,398933,"CHE","National Inventory",2011,"Not Reported",37,"La Malcôte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25831,398934,"CHE","National Inventory",2011,"Not Reported",37,"Creugenat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25832,398935,"CHE","National Inventory",2011,"Not Reported",37,"La Grosse Fin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25833,398936,"CHE","National Inventory",2011,"Not Reported",37,"Sur le Pré","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25834,398937,"CHE","National Inventory",2011,"Not Reported",37,"La Ferouse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25835,398938,"CHE","National Inventory",2011,"Not Reported",37,"Jetti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25836,398939,"CHE","National Inventory",2011,"Not Reported",37,"Grangiéron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25837,398940,"CHE","National Inventory",2011,"Not Reported",37,"Deuxième Vorbourg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25838,398941,"CHE","National Inventory",2011,"Not Reported",37,"Montgremay","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25839,398942,"CHE","National Inventory",2011,"Not Reported",37,"La Combe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25840,398943,"CHE","National Inventory",2011,"Not Reported",37,"Haut de la Côte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25841,398944,"CHE","National Inventory",2011,"Not Reported",37,"Roc de l'Autel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25842,398945,"CHE","National Inventory",2011,"Not Reported",37,"Combe Chavat Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25843,398946,"CHE","National Inventory",2011,"Not Reported",37,"Le Moulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25844,398947,"CHE","National Inventory",2011,"Not Reported",37,"Esserts de la Côte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25845,398948,"CHE","National Inventory",2011,"Not Reported",37,"Cras de la Combe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25846,398949,"CHE","National Inventory",2011,"Not Reported",37,"Beuseraine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25847,398950,"CHE","National Inventory",2011,"Not Reported",37,"Paquoille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25848,398951,"CHE","National Inventory",2011,"Not Reported",37,"L'Ordon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25849,398952,"CHE","National Inventory",2011,"Not Reported",37,"Ocourt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25850,398953,"CHE","National Inventory",2011,"Not Reported",37,"Les Longennes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25851,398954,"CHE","National Inventory",2011,"Not Reported",37,"St-Jean","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25852,398955,"CHE","National Inventory",2011,"Not Reported",37,"La Motte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25853,398956,"CHE","National Inventory",2011,"Not Reported",37,"Älpeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25854,398957,"CHE","National Inventory",2011,"Not Reported",37,"Grands Prés","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25855,398958,"CHE","National Inventory",2011,"Not Reported",37,"La Neuve Vie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25856,398959,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25857,398960,"CHE","National Inventory",2011,"Not Reported",37,"Les Pouches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25858,398961,"CHE","National Inventory",2011,"Not Reported",37,"Châtillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25859,398962,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25860,398963,"CHE","National Inventory",2011,"Not Reported",37,"Glacenal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25861,398964,"CHE","National Inventory",2011,"Not Reported",37,"Châtillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25862,398965,"CHE","National Inventory",2011,"Not Reported",37,"Vorderspina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25863,398966,"CHE","National Inventory",2011,"Not Reported",37,"La Sarasine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25864,398967,"CHE","National Inventory",2011,"Not Reported",37,"Les Longs Prés","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25865,398968,"CHE","National Inventory",2011,"Not Reported",37,"Chervillers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25866,398969,"CHE","National Inventory",2011,"Not Reported",37,"Petit Finage","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25867,398970,"CHE","National Inventory",2011,"Not Reported",37,"La Sonnenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25868,398971,"CHE","National Inventory",2011,"Not Reported",37,"Heiligkreuz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25869,398972,"CHE","National Inventory",2011,"Not Reported",37,"Schöneberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25870,398973,"CHE","National Inventory",2011,"Not Reported",37,"Soubey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25871,398974,"CHE","National Inventory",2011,"Not Reported",37,"Chez Renaud","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25872,398975,"CHE","National Inventory",2011,"Not Reported",37,"Grand Finage","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25873,398976,"CHE","National Inventory",2011,"Not Reported",37,"La Boiraderie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25874,398977,"CHE","National Inventory",2011,"Not Reported",37,"Engen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25875,398978,"CHE","National Inventory",2011,"Not Reported",37,"Haut du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25876,398979,"CHE","National Inventory",2011,"Not Reported",37,"Fin de Charrère","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25877,398980,"CHE","National Inventory",2011,"Not Reported",37,"Undervelier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25878,398981,"CHE","National Inventory",2011,"Not Reported",37,"La Metteneux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25879,398982,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25880,398983,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage sur Les Rangs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25881,398984,"CHE","National Inventory",2011,"Not Reported",37,"La Belle Etoile","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25882,398985,"CHE","National Inventory",2011,"Not Reported",37,"Fin de la Madeleine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25883,398986,"CHE","National Inventory",2011,"Not Reported",37,"Paquoille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25884,398987,"CHE","National Inventory",2011,"Not Reported",37,"Hint. Rohrberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25885,398988,"CHE","National Inventory",2011,"Not Reported",37,"Bergweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25886,398989,"CHE","National Inventory",2011,"Not Reported",37,"Ruine Freudenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25887,398990,"CHE","National Inventory",2011,"Not Reported",37,"Ramsen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25888,398991,"CHE","National Inventory",2011,"Not Reported",37,"Oberriet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25889,398992,"CHE","National Inventory",2011,"Not Reported",37,"Talhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25890,398993,"CHE","National Inventory",2011,"Not Reported",37,"Stig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25891,398994,"CHE","National Inventory",2011,"Not Reported",37,"Uf der Gräte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25892,398995,"CHE","National Inventory",2011,"Not Reported",37,"Randen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25893,398996,"CHE","National Inventory",2011,"Not Reported",37,"Halde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25894,398997,"CHE","National Inventory",2011,"Not Reported",37,"Hasedel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25895,398998,"CHE","National Inventory",2011,"Not Reported",37,"Buechberghus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25896,398999,"CHE","National Inventory",2011,"Not Reported",37,"Hinderranden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25897,399000,"CHE","National Inventory",2011,"Not Reported",37,"Herbsttal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25898,399001,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Freudental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25899,399002,"CHE","National Inventory",2011,"Not Reported",37,"Randenhorn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25900,399003,"CHE","National Inventory",2011,"Not Reported",37,"Eichhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25901,399004,"CHE","National Inventory",2011,"Not Reported",37,"Chäferstei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25902,399005,"CHE","National Inventory",2011,"Not Reported",37,"Osterberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25903,399006,"CHE","National Inventory",2011,"Not Reported",37,"Uechben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25904,399007,"CHE","National Inventory",2011,"Not Reported",37,"Hohlgraben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25905,399008,"CHE","National Inventory",2011,"Not Reported",37,"Leuengründli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25906,399009,"CHE","National Inventory",2011,"Not Reported",37,"Chälen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25907,399010,"CHE","National Inventory",2011,"Not Reported",37,"Bachmüli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25908,399011,"CHE","National Inventory",2011,"Not Reported",37,"Heerenbuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25909,399012,"CHE","National Inventory",2011,"Not Reported",37,"Hohberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25910,399013,"CHE","National Inventory",2011,"Not Reported",37,"Mooshalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25911,399014,"CHE","National Inventory",2011,"Not Reported",37,"Blaasen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25912,399015,"CHE","National Inventory",2011,"Not Reported",37,"Mösli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25913,399016,"CHE","National Inventory",2011,"Not Reported",37,"Lattweienacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25914,399017,"CHE","National Inventory",2011,"Not Reported",37,"Götzenhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25915,399018,"CHE","National Inventory",2011,"Not Reported",37,"Buck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25916,399019,"CHE","National Inventory",2011,"Not Reported",37,"Ägistel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25917,399020,"CHE","National Inventory",2011,"Not Reported",37,"Seigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25918,399021,"CHE","National Inventory",2011,"Not Reported",37,"Vitzboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25919,399022,"CHE","National Inventory",2011,"Not Reported",37,"Attenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25920,399023,"CHE","National Inventory",2011,"Not Reported",37,"Dostental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25921,399024,"CHE","National Inventory",2011,"Not Reported",37,"Barmen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25922,399025,"CHE","National Inventory",2011,"Not Reported",37,"Chleebuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25923,399026,"CHE","National Inventory",2011,"Not Reported",37,"Braaten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25924,399027,"CHE","National Inventory",2011,"Not Reported",37,"Uf der Tüele","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25925,399028,"CHE","National Inventory",2011,"Not Reported",37,"Geisshalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25926,399029,"CHE","National Inventory",2011,"Not Reported",37,"Rietwisen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25927,399030,"CHE","National Inventory",2011,"Not Reported",37,"Chälen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25928,399031,"CHE","National Inventory",2011,"Not Reported",37,"Hohrainchäpfli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25929,399032,"CHE","National Inventory",2011,"Not Reported",37,"Staufenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25930,399033,"CHE","National Inventory",2011,"Not Reported",37,"Lyten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25931,399034,"CHE","National Inventory",2011,"Not Reported",37,"Haartel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25932,399035,"CHE","National Inventory",2011,"Not Reported",37,"Merishausen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25933,399036,"CHE","National Inventory",2011,"Not Reported",37,"Uf der Stig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25934,399037,"CHE","National Inventory",2011,"Not Reported",37,"Heidenbomm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25935,399038,"CHE","National Inventory",2011,"Not Reported",37,"Tenterenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25936,399039,"CHE","National Inventory",2011,"Not Reported",37,"Winkelacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25937,399040,"CHE","National Inventory",2011,"Not Reported",37,"Randenhorn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25938,399041,"CHE","National Inventory",2011,"Not Reported",37,"Pöschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25939,399042,"CHE","National Inventory",2011,"Not Reported",37,"Galliwisen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25940,399043,"CHE","National Inventory",2011,"Not Reported",37,"Schenenbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25941,399044,"CHE","National Inventory",2011,"Not Reported",37,"Haslenacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25942,399045,"CHE","National Inventory",2011,"Not Reported",37,"Grätental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25943,399046,"CHE","National Inventory",2011,"Not Reported",37,"Birbistel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25944,399047,"CHE","National Inventory",2011,"Not Reported",37,"Wald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25945,399048,"CHE","National Inventory",2011,"Not Reported",37,"Heerenbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25946,399049,"CHE","National Inventory",2011,"Not Reported",37,"Gerenbuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25947,399050,"CHE","National Inventory",2011,"Not Reported",37,"Hinteres Freudental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25948,399051,"CHE","National Inventory",2011,"Not Reported",37,"Tal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25949,399052,"CHE","National Inventory",2011,"Not Reported",37,"Wangental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25950,399053,"CHE","National Inventory",2011,"Not Reported",37,"Santiergen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25951,399054,"CHE","National Inventory",2011,"Not Reported",37,"Chuttler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25952,399055,"CHE","National Inventory",2011,"Not Reported",37,"Lieblosental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25953,399056,"CHE","National Inventory",2011,"Not Reported",37,"Hagenturm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25954,399057,"CHE","National Inventory",2011,"Not Reported",37,"Staanenbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25955,399058,"CHE","National Inventory",2011,"Not Reported",37,"Hanesbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25956,399059,"CHE","National Inventory",2011,"Not Reported",37,"Dürstel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25957,399060,"CHE","National Inventory",2011,"Not Reported",37,"Valenserberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25958,399061,"CHE","National Inventory",2011,"Not Reported",37,"Furtmüli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25959,399062,"CHE","National Inventory",2011,"Not Reported",37,"Vättis Pardätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25960,399063,"CHE","National Inventory",2011,"Not Reported",37,"Rofanätschli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25961,399064,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Schwetti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25962,399065,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Trübbach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25963,399066,"CHE","National Inventory",2011,"Not Reported",37,"Rittersberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25964,399067,"CHE","National Inventory",2011,"Not Reported",37,"Cholholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25965,399068,"CHE","National Inventory",2011,"Not Reported",37,"Faren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25966,399069,"CHE","National Inventory",2011,"Not Reported",37,"Lindenhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25967,399070,"CHE","National Inventory",2011,"Not Reported",37,"Buechlet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25968,399071,"CHE","National Inventory",2011,"Not Reported",37,"Stallikon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25969,399072,"CHE","National Inventory",2011,"Not Reported",37,"Nübrächten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25970,399073,"CHE","National Inventory",2011,"Not Reported",37,"Gartentobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25971,399074,"CHE","National Inventory",2011,"Not Reported",37,"Beschtentobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25972,399075,"CHE","National Inventory",2011,"Not Reported",37,"Hörnen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25973,399076,"CHE","National Inventory",2011,"Not Reported",37,"Hard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25974,399077,"CHE","National Inventory",2011,"Not Reported",37,"Stampfi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25975,399078,"CHE","National Inventory",2011,"Not Reported",37,"Schluechtächer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25976,399079,"CHE","National Inventory",2011,"Not Reported",37,"Matt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25977,399080,"CHE","National Inventory",2011,"Not Reported",37,"Vogelsang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25978,399081,"CHE","National Inventory",2011,"Not Reported",37,"Brütten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25979,399082,"CHE","National Inventory",2011,"Not Reported",37,"Stigenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25980,399083,"CHE","National Inventory",2011,"Not Reported",37,"Brand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25981,399084,"CHE","National Inventory",2011,"Not Reported",37,"Hard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25982,399085,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Tobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25983,399086,"CHE","National Inventory",2011,"Not Reported",37,"Schilt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25984,399087,"CHE","National Inventory",2011,"Not Reported",37,"Eglisgrund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25985,399088,"CHE","National Inventory",2011,"Not Reported",37,"Wolfenzädel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25986,399089,"CHE","National Inventory",2011,"Not Reported",37,"Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25987,399090,"CHE","National Inventory",2011,"Not Reported",37,"Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25988,399091,"CHE","National Inventory",2011,"Not Reported",37,"Bifig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25989,399092,"CHE","National Inventory",2011,"Not Reported",37,"Underäntschberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25990,399093,"CHE","National Inventory",2011,"Not Reported",37,"Fuchsloch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25991,399094,"CHE","National Inventory",2011,"Not Reported",37,"Lätten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25992,399095,"CHE","National Inventory",2011,"Not Reported",37,"Felsen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25993,399096,"CHE","National Inventory",2011,"Not Reported",37,"Lochacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25994,399097,"CHE","National Inventory",2011,"Not Reported",37,"Rüedi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25995,399098,"CHE","National Inventory",2011,"Not Reported",37,"Auenriet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25996,399099,"CHE","National Inventory",2011,"Not Reported",37,"Tobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25997,399100,"CHE","National Inventory",2011,"Not Reported",37,"Nideltobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25998,399101,"CHE","National Inventory",2011,"Not Reported",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +25999,399102,"CHE","National Inventory",2011,"Not Reported",37,"Landbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26000,399103,"CHE","National Inventory",2011,"Not Reported",37,"Büel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26001,399104,"CHE","National Inventory",2011,"Not Reported",37,"Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26002,399105,"CHE","National Inventory",2011,"Not Reported",37,"Berenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26003,399106,"CHE","National Inventory",2011,"Not Reported",37,"Schlossbuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26004,399107,"CHE","National Inventory",2011,"Not Reported",37,"Talmüli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26005,399108,"CHE","National Inventory",2011,"Not Reported",37,"Cheibenacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26006,399109,"CHE","National Inventory",2011,"Not Reported",37,"Forbuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26007,399110,"CHE","National Inventory",2011,"Not Reported",37,"Edelmann","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26008,399111,"CHE","National Inventory",2011,"Not Reported",37,"Schnäggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26009,399112,"CHE","National Inventory",2011,"Not Reported",37,"Beschten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26010,399113,"CHE","National Inventory",2011,"Not Reported",37,"Frohberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26011,399114,"CHE","National Inventory",2011,"Not Reported",37,"Ganeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26012,399115,"CHE","National Inventory",2011,"Not Reported",37,"Bleiki","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26013,399116,"CHE","National Inventory",2011,"Not Reported",37,"Widmen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26014,399117,"CHE","National Inventory",2011,"Not Reported",37,"Froacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26015,399118,"CHE","National Inventory",2011,"Not Reported",37,"Blumetshalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26016,399119,"CHE","National Inventory",2011,"Not Reported",37,"Lindirain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26017,399120,"CHE","National Inventory",2011,"Not Reported",37,"Dürrspitz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26018,399121,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Stig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26019,399122,"CHE","National Inventory",2011,"Not Reported",37,"Ober Ror","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26020,399123,"CHE","National Inventory",2011,"Not Reported",37,"Rebberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26021,399124,"CHE","National Inventory",2011,"Not Reported",37,"Ober Büel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26022,399125,"CHE","National Inventory",2011,"Not Reported",37,"Stracheren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26023,399126,"CHE","National Inventory",2011,"Not Reported",37,"Eigental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26024,399127,"CHE","National Inventory",2011,"Not Reported",37,"Homberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26025,399128,"CHE","National Inventory",2011,"Not Reported",37,"Moos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26026,399129,"CHE","National Inventory",2011,"Not Reported",37,"Letzibode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26027,399130,"CHE","National Inventory",2011,"Not Reported",37,"Leh","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26028,399131,"CHE","National Inventory",2011,"Not Reported",37,"Oberholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26029,399132,"CHE","National Inventory",2011,"Not Reported",37,"Eich Köngistal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26030,399133,"CHE","National Inventory",2011,"Not Reported",37,"Rüteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26031,399134,"CHE","National Inventory",2011,"Not Reported",37,"Hinterfeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26032,399135,"CHE","National Inventory",2011,"Not Reported",37,"Major","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26033,399136,"CHE","National Inventory",2011,"Not Reported",37,"Bachacker","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26034,399137,"CHE","National Inventory",2011,"Not Reported",37,"Tössallmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26035,399138,"CHE","National Inventory",2011,"Not Reported",37,"Chöpfi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26036,399139,"CHE","National Inventory",2011,"Not Reported",37,"Diebis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26037,399140,"CHE","National Inventory",2011,"Not Reported",37,"Talgrueb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26038,399141,"CHE","National Inventory",2011,"Not Reported",37,"Stigenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26039,399142,"CHE","National Inventory",2011,"Not Reported",37,"Wigarten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26040,399143,"CHE","National Inventory",2011,"Not Reported",37,"Hegi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26041,399144,"CHE","National Inventory",2011,"Not Reported",37,"Ober Emmetschloo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26042,399145,"CHE","National Inventory",2011,"Not Reported",37,"Klarenwisen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26043,399146,"CHE","National Inventory",2011,"Not Reported",37,"Leutobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26044,399147,"CHE","National Inventory",2011,"Not Reported",37,"Batzenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26045,399148,"CHE","National Inventory",2011,"Not Reported",37,"Danggabünt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26046,399149,"CHE","National Inventory",2011,"Not Reported",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26047,399150,"CHE","National Inventory",2011,"Not Reported",37,"Stutz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26048,399151,"CHE","National Inventory",2011,"Not Reported",37,"Zelg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26049,399152,"CHE","National Inventory",2011,"Not Reported",37,"Ebnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26050,399153,"CHE","National Inventory",2011,"Not Reported",37,"Edlibuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26051,399154,"CHE","National Inventory",2011,"Not Reported",37,"Chräenbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26052,399155,"CHE","National Inventory",2011,"Not Reported",37,"Burgweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26053,399156,"CHE","National Inventory",2011,"Not Reported",37,"Plattis-Chopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26054,399157,"CHE","National Inventory",2011,"Not Reported",37,"Langgraben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26055,399158,"CHE","National Inventory",2011,"Not Reported",37,"Untergries","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26056,399159,"CHE","National Inventory",2011,"Not Reported",37,"Bahndamm Chrützstrass","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26057,399160,"CHE","National Inventory",2011,"Not Reported",37,"Falletsche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26058,399161,"CHE","National Inventory",2011,"Not Reported",37,"Büel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26059,399162,"CHE","National Inventory",2011,"Not Reported",37,"Rotengübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26060,399163,"CHE","National Inventory",2011,"Not Reported",37,"Langweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26061,399164,"CHE","National Inventory",2011,"Not Reported",37,"Lätten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26062,399165,"CHE","National Inventory",2011,"Not Reported",37,"Malin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26063,399166,"CHE","National Inventory",2011,"Not Reported",37,"Dättnau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26064,399167,"CHE","National Inventory",2011,"Not Reported",37,"Wydenchlösterli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26065,399168,"CHE","National Inventory",2011,"Not Reported",37,"Berghof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26066,399169,"CHE","National Inventory",2011,"Not Reported",37,"Tägerst","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26067,399170,"CHE","National Inventory",2011,"Not Reported",37,"Rotlauben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26068,399171,"CHE","National Inventory",2011,"Not Reported",37,"Lätten Felsenhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26069,399172,"CHE","National Inventory",2011,"Not Reported",37,"Wolfen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26070,399173,"CHE","National Inventory",2011,"Not Reported",37,"Fröschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26071,399174,"CHE","National Inventory",2011,"Not Reported",37,"Grüt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26072,399175,"CHE","National Inventory",2011,"Not Reported",37,"Alt Landenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26073,399176,"CHE","National Inventory",2011,"Not Reported",37,"Hochwacht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26074,399177,"CHE","National Inventory",2011,"Not Reported",37,"Streuweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26075,399178,"CHE","National Inventory",2011,"Not Reported",37,"Alp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26076,399179,"CHE","National Inventory",2011,"Not Reported",37,"Holberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26077,399180,"CHE","National Inventory",2011,"Not Reported",37,"Rossweg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26078,399181,"CHE","National Inventory",2011,"Not Reported",37,"Brueder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26079,399182,"CHE","National Inventory",2011,"Not Reported",37,"Heiletsegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26080,399183,"CHE","National Inventory",2011,"Not Reported",37,"Langfuri","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26081,399184,"CHE","National Inventory",2011,"Not Reported",37,"Wissen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26082,399185,"CHE","National Inventory",2011,"Not Reported",37,"Tüfmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26083,399186,"CHE","National Inventory",2011,"Not Reported",37,"Allmend","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26084,399187,"CHE","National Inventory",2011,"Not Reported",37,"Uerchen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26085,399188,"CHE","National Inventory",2011,"Not Reported",37,"Vorrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26086,399189,"CHE","National Inventory",2011,"Not Reported",37,"Hoh Wülflingen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26087,399190,"CHE","National Inventory",2011,"Not Reported",37,"Gentner","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26088,399191,"CHE","National Inventory",2011,"Not Reported",37,"Rötelibuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26089,399192,"CHE","National Inventory",2011,"Not Reported",37,"Schwendli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26090,399193,"CHE","National Inventory",2011,"Not Reported",37,"Buchenhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26091,399194,"CHE","National Inventory",2011,"Not Reported",37,"Tal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26092,399195,"CHE","National Inventory",2011,"Not Reported",37,"Oberschwendli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26093,399196,"CHE","National Inventory",2011,"Not Reported",37,"Breiti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26094,399197,"CHE","National Inventory",2011,"Not Reported",37,"Bächlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26095,399198,"CHE","National Inventory",2011,"Not Reported",37,"Dübendorf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26096,399199,"CHE","National Inventory",2011,"Not Reported",37,"Eichhalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26097,399200,"CHE","National Inventory",2011,"Not Reported",37,"Rollibach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26098,399201,"CHE","National Inventory",2011,"Not Reported",37,"Saxerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26099,399202,"CHE","National Inventory",2011,"Not Reported",37,"Langhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26100,399203,"CHE","National Inventory",2011,"Not Reported",37,"Goodenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26101,399204,"CHE","National Inventory",2011,"Not Reported",37,"Ämsigenplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26102,399205,"CHE","National Inventory",2011,"Not Reported",37,"Rieden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26103,399206,"CHE","National Inventory",2011,"Not Reported",37,"Laui","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26104,399207,"CHE","National Inventory",2011,"Not Reported",37,"Choleren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26105,399208,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Schwarzenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26106,399209,"CHE","National Inventory",2011,"Not Reported",37,"Ruedlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26107,399210,"CHE","National Inventory",2011,"Not Reported",37,"Gletti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26108,399211,"CHE","National Inventory",2011,"Not Reported",37,"Arvihütte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26109,399212,"CHE","National Inventory",2011,"Not Reported",37,"Chueneren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26110,399213,"CHE","National Inventory",2011,"Not Reported",37,"Aaflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26111,399214,"CHE","National Inventory",2011,"Not Reported",37,"Älpeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26112,399215,"CHE","National Inventory",2011,"Not Reported",37,"Ei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26113,399216,"CHE","National Inventory",2011,"Not Reported",37,"Schildberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26114,399217,"CHE","National Inventory",2011,"Not Reported",37,"Obheg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26115,399218,"CHE","National Inventory",2011,"Not Reported",37,"Spissegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26116,399219,"CHE","National Inventory",2011,"Not Reported",37,"Unter Büelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26117,399220,"CHE","National Inventory",2011,"Not Reported",37,"Müllerenschwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26118,399221,"CHE","National Inventory",2011,"Not Reported",37,"Erlimatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26119,399222,"CHE","National Inventory",2011,"Not Reported",37,"Grüt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26120,399223,"CHE","National Inventory",2011,"Not Reported",37,"Grüt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26121,399224,"CHE","National Inventory",2011,"Not Reported",37,"Musschwändeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26122,399225,"CHE","National Inventory",2011,"Not Reported",37,"Hinterbrenden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26123,399226,"CHE","National Inventory",2011,"Not Reported",37,"Obstocken","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26124,399227,"CHE","National Inventory",2011,"Not Reported",37,"Turrenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26125,399228,"CHE","National Inventory",2011,"Not Reported",37,"Lehberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26126,399229,"CHE","National Inventory",2011,"Not Reported",37,"Obstocken","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26127,399230,"CHE","National Inventory",2011,"Not Reported",37,"Mettental","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26128,399231,"CHE","National Inventory",2011,"Not Reported",37,"Stollen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26129,399232,"CHE","National Inventory",2011,"Not Reported",37,"Birchegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26130,399233,"CHE","National Inventory",2011,"Not Reported",37,"Steinmeise","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26131,399234,"CHE","National Inventory",2011,"Not Reported",37,"Gmeinegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26132,399235,"CHE","National Inventory",2011,"Not Reported",37,"Unter Zieblen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26133,399236,"CHE","National Inventory",2011,"Not Reported",37,"Hanen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26134,399237,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Ruggell","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26135,399238,"CHE","National Inventory",2011,"Not Reported",37,"Rinderalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26136,399239,"CHE","National Inventory",2011,"Not Reported",37,"Alpoglerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26137,399240,"CHE","National Inventory",2011,"Not Reported",37,"Äschligrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26138,399241,"CHE","National Inventory",2011,"Not Reported",37,"Vogelsberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26139,399242,"CHE","National Inventory",2011,"Not Reported",37,"Chlisterli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26140,399243,"CHE","National Inventory",2011,"Not Reported",37,"Unter Schinberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26141,399244,"CHE","National Inventory",2011,"Not Reported",37,"Ägerten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26142,399245,"CHE","National Inventory",2011,"Not Reported",37,"Chruteren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26143,399246,"CHE","National Inventory",2011,"Not Reported",37,"Schwibbalm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26144,399247,"CHE","National Inventory",2011,"Not Reported",37,"Turnacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26145,399248,"CHE","National Inventory",2011,"Not Reported",37,"Breitmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26146,399249,"CHE","National Inventory",2011,"Not Reported",37,"Tristelderen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26147,399250,"CHE","National Inventory",2011,"Not Reported",37,"Turren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26148,399251,"CHE","National Inventory",2011,"Not Reported",37,"Ober Steigli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26149,399252,"CHE","National Inventory",2011,"Not Reported",37,"Vord. Rengg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26150,399253,"CHE","National Inventory",2011,"Not Reported",37,"Ober Brand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26151,399254,"CHE","National Inventory",2011,"Not Reported",37,"Bösendorf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26152,399255,"CHE","National Inventory",2011,"Not Reported",37,"Churigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26153,399256,"CHE","National Inventory",2011,"Not Reported",37,"Unter Lachen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26154,399257,"CHE","National Inventory",2011,"Not Reported",37,"Turren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26155,399258,"CHE","National Inventory",2011,"Not Reported",37,"Grüt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26156,399259,"CHE","National Inventory",2011,"Not Reported",37,"Chrüzboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26157,399260,"CHE","National Inventory",2011,"Not Reported",37,"Huggeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26158,399261,"CHE","National Inventory",2011,"Not Reported",37,"Hüttmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26159,399262,"CHE","National Inventory",2011,"Not Reported",37,"Walsli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26160,399263,"CHE","National Inventory",2011,"Not Reported",37,"Stäbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26161,399264,"CHE","National Inventory",2011,"Not Reported",37,"Lippeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26162,399265,"CHE","National Inventory",2011,"Not Reported",37,"Valenserberg Gletti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26163,399266,"CHE","National Inventory",2011,"Not Reported",37,"Egg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26164,399267,"CHE","National Inventory",2011,"Not Reported",37,"Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26165,399268,"CHE","National Inventory",2011,"Not Reported",37,"Guger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26166,399269,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Sennwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26167,399270,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Rheinau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26168,399271,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Burgerau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26169,399272,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Sevelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26170,399273,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Sarganser Au","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26171,399274,"CHE","National Inventory",2011,"Not Reported",37,"Gmeirüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26172,399275,"CHE","National Inventory",2011,"Not Reported",37,"Acheberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26173,399276,"CHE","National Inventory",2011,"Not Reported",37,"Brunneberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26174,399277,"CHE","National Inventory",2011,"Not Reported",37,"Acheberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26175,399278,"CHE","National Inventory",2011,"Not Reported",37,"Egg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26176,399279,"CHE","National Inventory",2011,"Not Reported",37,"Egg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26177,399280,"CHE","National Inventory",2011,"Not Reported",37,"Langenmoos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26178,399281,"CHE","National Inventory",2011,"Not Reported",37,"Rossweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26179,399282,"CHE","National Inventory",2011,"Not Reported",37,"Hönger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26180,399283,"CHE","National Inventory",2011,"Not Reported",37,"Steigrüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26181,399284,"CHE","National Inventory",2011,"Not Reported",37,"Bauertacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26182,399285,"CHE","National Inventory",2011,"Not Reported",37,"Müsler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26183,399286,"CHE","National Inventory",2011,"Not Reported",37,"Nassberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26184,399287,"CHE","National Inventory",2011,"Not Reported",37,"Hörndlihau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26185,399288,"CHE","National Inventory",2011,"Not Reported",37,"Altenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26186,399289,"CHE","National Inventory",2011,"Not Reported",37,"Hasenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26187,399290,"CHE","National Inventory",2011,"Not Reported",37,"Eikerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26188,399291,"CHE","National Inventory",2011,"Not Reported",37,"Hämmenägerten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26189,399292,"CHE","National Inventory",2011,"Not Reported",37,"Schemel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26190,399293,"CHE","National Inventory",2011,"Not Reported",37,"Schlatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26191,399294,"CHE","National Inventory",2011,"Not Reported",37,"Stroppel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26192,399295,"CHE","National Inventory",2011,"Not Reported",37,"Rüteli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26193,399296,"CHE","National Inventory",2011,"Not Reported",37,"Ärfematt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26194,399297,"CHE","National Inventory",2011,"Not Reported",37,"Rieden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26195,399298,"CHE","National Inventory",2011,"Not Reported",37,"Wigarten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26196,399299,"CHE","National Inventory",2011,"Not Reported",37,"Geissberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26197,399300,"CHE","National Inventory",2011,"Not Reported",37,"Sarbe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26198,399301,"CHE","National Inventory",2011,"Not Reported",37,"Bernau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26199,399302,"CHE","National Inventory",2011,"Not Reported",37,"Herrenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26200,399303,"CHE","National Inventory",2011,"Not Reported",37,"Barmelweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26201,399304,"CHE","National Inventory",2011,"Not Reported",37,"Egghübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26202,399305,"CHE","National Inventory",2011,"Not Reported",37,"Buhalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26203,399306,"CHE","National Inventory",2011,"Not Reported",37,"Zetzwil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26204,399307,"CHE","National Inventory",2011,"Not Reported",37,"Altrüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26205,399308,"CHE","National Inventory",2011,"Not Reported",37,"Chilhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26206,399309,"CHE","National Inventory",2011,"Not Reported",37,"Ritterhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26207,399310,"CHE","National Inventory",2011,"Not Reported",37,"Chänebüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26208,399311,"CHE","National Inventory",2011,"Not Reported",37,"Eichhalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26209,399312,"CHE","National Inventory",2011,"Not Reported",37,"Besseberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26210,399313,"CHE","National Inventory",2011,"Not Reported",37,"Nassbergegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26211,399314,"CHE","National Inventory",2011,"Not Reported",37,"Besseberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26212,399315,"CHE","National Inventory",2011,"Not Reported",37,"Laubberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26213,399316,"CHE","National Inventory",2011,"Not Reported",37,"Rotberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26214,399317,"CHE","National Inventory",2011,"Not Reported",37,"Unterboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26215,399318,"CHE","National Inventory",2011,"Not Reported",37,"Gugeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26216,399319,"CHE","National Inventory",2011,"Not Reported",37,"Bützerberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26217,399320,"CHE","National Inventory",2011,"Not Reported",37,"Chürzi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26218,399321,"CHE","National Inventory",2011,"Not Reported",37,"Laubberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26219,399322,"CHE","National Inventory",2011,"Not Reported",37,"Bernet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26220,399323,"CHE","National Inventory",2011,"Not Reported",37,"Bürersteig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26221,399324,"CHE","National Inventory",2011,"Not Reported",37,"Unterem Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26222,399325,"CHE","National Inventory",2011,"Not Reported",37,"Chatzehalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26223,399326,"CHE","National Inventory",2011,"Not Reported",37,"Hüslimatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26224,399327,"CHE","National Inventory",2011,"Not Reported",37,"Schlossberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26225,399328,"CHE","National Inventory",2011,"Not Reported",37,"Grossmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26226,399329,"CHE","National Inventory",2011,"Not Reported",37,"Walledal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26227,399330,"CHE","National Inventory",2011,"Not Reported",37,"Zelg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26228,399331,"CHE","National Inventory",2011,"Not Reported",37,"Zelg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26229,399332,"CHE","National Inventory",2011,"Not Reported",37,"Schönenbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26230,399333,"CHE","National Inventory",2011,"Not Reported",37,"Wolftel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26231,399334,"CHE","National Inventory",2011,"Not Reported",37,"Langenacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26232,399335,"CHE","National Inventory",2011,"Not Reported",37,"Hessenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26233,399336,"CHE","National Inventory",2011,"Not Reported",37,"Nätteberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26234,399337,"CHE","National Inventory",2011,"Not Reported",37,"Ruge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26235,399338,"CHE","National Inventory",2011,"Not Reported",37,"Chrendel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26236,399339,"CHE","National Inventory",2011,"Not Reported",37,"Chrendel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26237,399340,"CHE","National Inventory",2011,"Not Reported",37,"Breiten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26238,399341,"CHE","National Inventory",2011,"Not Reported",37,"Winterholde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26239,399342,"CHE","National Inventory",2011,"Not Reported",37,"Altenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26240,399343,"CHE","National Inventory",2011,"Not Reported",37,"Lören","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26241,399344,"CHE","National Inventory",2011,"Not Reported",37,"Reben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26242,399345,"CHE","National Inventory",2011,"Not Reported",37,"Schihalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26243,399346,"CHE","National Inventory",2011,"Not Reported",37,"Buessberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26244,399347,"CHE","National Inventory",2011,"Not Reported",37,"Schihalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26245,399348,"CHE","National Inventory",2011,"Not Reported",37,"Steindler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26246,399349,"CHE","National Inventory",2011,"Not Reported",37,"Chripfe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26247,399350,"CHE","National Inventory",2011,"Not Reported",37,"Chneublet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26248,399351,"CHE","National Inventory",2011,"Not Reported",37,"Ämet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26249,399352,"CHE","National Inventory",2011,"Not Reported",37,"Eiteberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26250,399353,"CHE","National Inventory",2011,"Not Reported",37,"Üselmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26251,399354,"CHE","National Inventory",2011,"Not Reported",37,"Rohregg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26252,399355,"CHE","National Inventory",2011,"Not Reported",37,"Unterem Hag","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26253,399356,"CHE","National Inventory",2011,"Not Reported",37,"Herzberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26254,399357,"CHE","National Inventory",2011,"Not Reported",37,"Staffelegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26255,399358,"CHE","National Inventory",2011,"Not Reported",37,"Chli Wolf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26256,399359,"CHE","National Inventory",2011,"Not Reported",37,"Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26257,399360,"CHE","National Inventory",2011,"Not Reported",37,"Ängi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26258,399361,"CHE","National Inventory",2011,"Not Reported",37,"Luegeten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26259,399362,"CHE","National Inventory",2011,"Not Reported",37,"Chüerüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26260,399363,"CHE","National Inventory",2011,"Not Reported",37,"Staltenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26261,399364,"CHE","National Inventory",2011,"Not Reported",37,"Buhalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26262,399365,"CHE","National Inventory",2011,"Not Reported",37,"Cholgrueben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26263,399366,"CHE","National Inventory",2011,"Not Reported",37,"Wermet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26264,399367,"CHE","National Inventory",2011,"Not Reported",37,"Unteri Au","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26265,399368,"CHE","National Inventory",2011,"Not Reported",37,"Ämmeribuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26266,399369,"CHE","National Inventory",2011,"Not Reported",37,"Gugli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26267,399370,"CHE","National Inventory",2011,"Not Reported",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26268,399371,"CHE","National Inventory",2011,"Not Reported",37,"Eich","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26269,399372,"CHE","National Inventory",2011,"Not Reported",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26270,399373,"CHE","National Inventory",2011,"Not Reported",37,"Hännen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26271,399374,"CHE","National Inventory",2011,"Not Reported",37,"Chessler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26272,399375,"CHE","National Inventory",2011,"Not Reported",37,"Chilchstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26273,399376,"CHE","National Inventory",2011,"Not Reported",37,"Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26274,399377,"CHE","National Inventory",2011,"Not Reported",37,"Rüdle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26275,399378,"CHE","National Inventory",2011,"Not Reported",37,"Rüdlehöf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26276,399379,"CHE","National Inventory",2011,"Not Reported",37,"Acheregg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26277,399380,"CHE","National Inventory",2011,"Not Reported",37,"Pilgerhöf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26278,399381,"CHE","National Inventory",2011,"Not Reported",37,"Hellmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26279,399382,"CHE","National Inventory",2011,"Not Reported",37,"Homberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26280,399383,"CHE","National Inventory",2011,"Not Reported",37,"Chatzenstrick","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26281,399384,"CHE","National Inventory",2011,"Not Reported",37,"Eggenrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26282,399385,"CHE","National Inventory",2011,"Not Reported",37,"Lindebode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26283,399386,"CHE","National Inventory",2011,"Not Reported",37,"Platten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26284,399387,"CHE","National Inventory",2011,"Not Reported",37,"Strihe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26285,399388,"CHE","National Inventory",2011,"Not Reported",37,"Ufem Rain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26286,399389,"CHE","National Inventory",2011,"Not Reported",37,"Eichlenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26287,399390,"CHE","National Inventory",2011,"Not Reported",37,"Hundruggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26288,399391,"CHE","National Inventory",2011,"Not Reported",37,"Tannenhof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26289,399392,"CHE","National Inventory",2011,"Not Reported",37,"Chessler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26290,399393,"CHE","National Inventory",2011,"Not Reported",37,"Laucheren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26291,399394,"CHE","National Inventory",2011,"Not Reported",37,"Klewenstock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26292,399395,"CHE","National Inventory",2011,"Not Reported",37,"Bachtalen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26293,399396,"CHE","National Inventory",2011,"Not Reported",37,"Bonsbrig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26294,399397,"CHE","National Inventory",2011,"Not Reported",37,"Stuck","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26295,399398,"CHE","National Inventory",2011,"Not Reported",37,"Bränte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26296,399399,"CHE","National Inventory",2011,"Not Reported",37,"Buechen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26297,399400,"CHE","National Inventory",2011,"Not Reported",37,"Heiligchrüz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26298,399401,"CHE","National Inventory",2011,"Not Reported",37,"Würzenstock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26299,399402,"CHE","National Inventory",2011,"Not Reported",37,"Unterstetten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26300,399403,"CHE","National Inventory",2011,"Not Reported",37,"Chestenenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26301,399404,"CHE","National Inventory",2011,"Not Reported",37,"Dossen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26302,399405,"CHE","National Inventory",2011,"Not Reported",37,"Träbel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26303,399406,"CHE","National Inventory",2011,"Not Reported",37,"Gäbetswil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26304,399407,"CHE","National Inventory",2011,"Not Reported",37,"Chriesbaumberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26305,399408,"CHE","National Inventory",2011,"Not Reported",37,"Mülistutz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26306,399409,"CHE","National Inventory",2011,"Not Reported",37,"Mittel Grämse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26307,399410,"CHE","National Inventory",2011,"Not Reported",37,"Mülistutz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26308,399411,"CHE","National Inventory",2011,"Not Reported",37,"Märis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26309,399412,"CHE","National Inventory",2011,"Not Reported",37,"Stanserhorn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26310,399413,"CHE","National Inventory",2011,"Not Reported",37,"Laui","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26311,399414,"CHE","National Inventory",2011,"Not Reported",37,"Farneren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26312,399415,"CHE","National Inventory",2011,"Not Reported",37,"Chäslistetten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26313,399416,"CHE","National Inventory",2011,"Not Reported",37,"Lang Hütte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26314,399417,"CHE","National Inventory",2011,"Not Reported",37,"Hurbelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26315,399418,"CHE","National Inventory",2011,"Not Reported",37,"Chragen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26316,399419,"CHE","National Inventory",2011,"Not Reported",37,"Tällen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26317,399420,"CHE","National Inventory",2011,"Not Reported",37,"Ober Gummen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26318,399421,"CHE","National Inventory",2011,"Not Reported",37,"Bodenhütten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26319,399422,"CHE","National Inventory",2011,"Not Reported",37,"Böli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26320,399423,"CHE","National Inventory",2011,"Not Reported",37,"Chlus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26321,399424,"CHE","National Inventory",2011,"Not Reported",37,"Unter Wisstannen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26322,399425,"CHE","National Inventory",2011,"Not Reported",37,"Ober Wisstannen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26323,399426,"CHE","National Inventory",2011,"Not Reported",37,"Achs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26324,399427,"CHE","National Inventory",2011,"Not Reported",37,"Napf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26325,399428,"CHE","National Inventory",2011,"Not Reported",37,"Napf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26326,399429,"CHE","National Inventory",2011,"Not Reported",37,"Wigerts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26327,399430,"CHE","National Inventory",2011,"Not Reported",37,"Plütschgen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26328,399431,"CHE","National Inventory",2011,"Not Reported",37,"Brüggenhalten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26329,399432,"CHE","National Inventory",2011,"Not Reported",37,"Gigi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26330,399433,"CHE","National Inventory",2011,"Not Reported",37,"Gibel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26331,399434,"CHE","National Inventory",2011,"Not Reported",37,"Graggen-Rächtli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26332,399435,"CHE","National Inventory",2011,"Not Reported",37,"Weidli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26333,399436,"CHE","National Inventory",2011,"Not Reported",37,"Geren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26334,399437,"CHE","National Inventory",2011,"Not Reported",37,"Widi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26335,399438,"CHE","National Inventory",2011,"Not Reported",37,"Rüppi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26336,399439,"CHE","National Inventory",2011,"Not Reported",37,"Am Hubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26337,399440,"CHE","National Inventory",2011,"Not Reported",37,"Schreielberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26338,399441,"CHE","National Inventory",2011,"Not Reported",37,"Bärenloch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26339,399442,"CHE","National Inventory",2011,"Not Reported",37,"Heuwet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26340,399443,"CHE","National Inventory",2011,"Not Reported",37,"Ronengrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26341,399444,"CHE","National Inventory",2011,"Not Reported",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26342,399445,"CHE","National Inventory",2011,"Not Reported",37,"Lochgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26343,399446,"CHE","National Inventory",2011,"Not Reported",37,"Arvigrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26344,399447,"CHE","National Inventory",2011,"Not Reported",37,"Burstegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26345,399448,"CHE","National Inventory",2011,"Not Reported",37,"Chumi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26346,399449,"CHE","National Inventory",2011,"Not Reported",37,"Metzli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26347,399450,"CHE","National Inventory",2011,"Not Reported",37,"Mäggisserenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26348,399451,"CHE","National Inventory",2011,"Not Reported",37,"Spissliegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26349,399452,"CHE","National Inventory",2011,"Not Reported",37,"Granti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26350,399453,"CHE","National Inventory",2011,"Not Reported",37,"Chratzeregrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26351,399454,"CHE","National Inventory",2011,"Not Reported",37,"Meise","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26352,399455,"CHE","National Inventory",2011,"Not Reported",37,"Halte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26353,399456,"CHE","National Inventory",2011,"Not Reported",37,"Wildi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26354,399457,"CHE","National Inventory",2011,"Not Reported",37,"La Belle Etoile","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26355,399458,"CHE","National Inventory",2011,"Not Reported",37,"Ryschere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26356,399459,"CHE","National Inventory",2011,"Not Reported",37,"Waachli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26357,399460,"CHE","National Inventory",2011,"Not Reported",37,"Oberarni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26358,399461,"CHE","National Inventory",2011,"Not Reported",37,"Gummenalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26359,399462,"CHE","National Inventory",2011,"Not Reported",37,"Brüch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26360,399463,"CHE","National Inventory",2011,"Not Reported",37,"Thierachern-Allmid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26361,399464,"CHE","National Inventory",2011,"Not Reported",37,"Chratzi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26362,399465,"CHE","National Inventory",2011,"Not Reported",37,"Reidige","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26363,399466,"CHE","National Inventory",2011,"Not Reported",37,"Mittelweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26364,399467,"CHE","National Inventory",2011,"Not Reported",37,"Albristhubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26365,399468,"CHE","National Inventory",2011,"Not Reported",37,"Obersteinberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26366,399469,"CHE","National Inventory",2011,"Not Reported",37,"Biglenalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26367,399470,"CHE","National Inventory",2011,"Not Reported",37,"Bunderspitz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26368,399471,"CHE","National Inventory",2011,"Not Reported",37,"Le Gibet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26369,399472,"CHE","National Inventory",2011,"Not Reported",37,"Mosbielen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26370,399473,"CHE","National Inventory",2011,"Not Reported",37,"Reckholderli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26371,399474,"CHE","National Inventory",2011,"Not Reported",37,"Färmelmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26372,399475,"CHE","National Inventory",2011,"Not Reported",37,"Schrickmatten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26373,399476,"CHE","National Inventory",2011,"Not Reported",37,"Egritz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26374,399477,"CHE","National Inventory",2011,"Not Reported",37,"Laubwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26375,399478,"CHE","National Inventory",2011,"Not Reported",37,"Bälweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26376,399479,"CHE","National Inventory",2011,"Not Reported",37,"Hintere Walop","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26377,399480,"CHE","National Inventory",2011,"Not Reported",37,"Zind","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26378,399481,"CHE","National Inventory",2011,"Not Reported",37,"Underste Gurbs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26379,399482,"CHE","National Inventory",2011,"Not Reported",37,"Aabeberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26380,399483,"CHE","National Inventory",2011,"Not Reported",37,"Räbersegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26381,399484,"CHE","National Inventory",2011,"Not Reported",37,"Galm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26382,399485,"CHE","National Inventory",2011,"Not Reported",37,"Pfaffebergmäder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26383,399486,"CHE","National Inventory",2011,"Not Reported",37,"Im Aabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26384,399487,"CHE","National Inventory",2011,"Not Reported",37,"Grümberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26385,399488,"CHE","National Inventory",2011,"Not Reported",37,"Ronefeld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26386,399489,"CHE","National Inventory",2011,"Not Reported",37,"Chuelouenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26387,399490,"CHE","National Inventory",2011,"Not Reported",37,"Pavillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26388,399491,"CHE","National Inventory",2011,"Not Reported",37,"Ängistafel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26389,399492,"CHE","National Inventory",2011,"Not Reported",37,"Tschäggere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26390,399493,"CHE","National Inventory",2011,"Not Reported",37,"Fangweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26391,399494,"CHE","National Inventory",2011,"Not Reported",37,"Riggis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26392,399495,"CHE","National Inventory",2011,"Not Reported",37,"Weng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26393,399496,"CHE","National Inventory",2011,"Not Reported",37,"Linterbärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26394,399497,"CHE","National Inventory",2011,"Not Reported",37,"Blankenburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26395,399498,"CHE","National Inventory",2011,"Not Reported",37,"Geeristei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26396,399499,"CHE","National Inventory",2011,"Not Reported",37,"Bächenallmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26397,399500,"CHE","National Inventory",2011,"Not Reported",37,"Meniggrund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26398,399501,"CHE","National Inventory",2011,"Not Reported",37,"Stägeschopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26399,399502,"CHE","National Inventory",2011,"Not Reported",37,"Wittere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26400,399503,"CHE","National Inventory",2011,"Not Reported",37,"Halte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26401,399504,"CHE","National Inventory",2011,"Not Reported",37,"Bort","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26402,399505,"CHE","National Inventory",2011,"Not Reported",37,"Schwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26403,399506,"CHE","National Inventory",2011,"Not Reported",37,"Arisberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26404,399507,"CHE","National Inventory",2011,"Not Reported",37,"Tüüchtelwengli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26405,399508,"CHE","National Inventory",2011,"Not Reported",37,"In de Brüche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26406,399509,"CHE","National Inventory",2011,"Not Reported",37,"Allmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26407,399510,"CHE","National Inventory",2011,"Not Reported",37,"Leitereweideni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26408,399511,"CHE","National Inventory",2011,"Not Reported",37,"Lineboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26409,399512,"CHE","National Inventory",2011,"Not Reported",37,"Eggmittelberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26410,399513,"CHE","National Inventory",2011,"Not Reported",37,"Gugger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26411,399514,"CHE","National Inventory",2011,"Not Reported",37,"Gläckmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26412,399515,"CHE","National Inventory",2011,"Not Reported",37,"Wenden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26413,399516,"CHE","National Inventory",2011,"Not Reported",37,"Muri","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26414,399517,"CHE","National Inventory",2011,"Not Reported",37,"Nüjeberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26415,399518,"CHE","National Inventory",2011,"Not Reported",37,"Unders Gälmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26416,399519,"CHE","National Inventory",2011,"Not Reported",37,"Unterst Geberts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26417,399520,"CHE","National Inventory",2011,"Not Reported",37,"Obri Ammerta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26418,399521,"CHE","National Inventory",2011,"Not Reported",37,"Rieder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26419,399522,"CHE","National Inventory",2011,"Not Reported",37,"Betelbergmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26420,399523,"CHE","National Inventory",2011,"Not Reported",37,"Wolfsgruebeweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26421,399524,"CHE","National Inventory",2011,"Not Reported",37,"Sengg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26422,399525,"CHE","National Inventory",2011,"Not Reported",37,"Houete","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26423,399526,"CHE","National Inventory",2011,"Not Reported",37,"Tannersgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26424,399527,"CHE","National Inventory",2011,"Not Reported",37,"Vorderer Rossboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26425,399528,"CHE","National Inventory",2011,"Not Reported",37,"Wanne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26426,399529,"CHE","National Inventory",2011,"Not Reported",37,"Bielenweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26427,399530,"CHE","National Inventory",2011,"Not Reported",37,"Albristmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26428,399531,"CHE","National Inventory",2011,"Not Reported",37,"Otteremeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26429,399532,"CHE","National Inventory",2011,"Not Reported",37,"Schauenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26430,399533,"CHE","National Inventory",2011,"Not Reported",37,"Chöldrist","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26431,399534,"CHE","National Inventory",2011,"Not Reported",37,"Bärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26432,399535,"CHE","National Inventory",2011,"Not Reported",37,"Loueneweidli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26433,399536,"CHE","National Inventory",2011,"Not Reported",37,"Innerrüteni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26434,399537,"CHE","National Inventory",2011,"Not Reported",37,"Ober Alpeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26435,399538,"CHE","National Inventory",2011,"Not Reported",37,"Teller","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26436,399539,"CHE","National Inventory",2011,"Not Reported",37,"Scharte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26437,399540,"CHE","National Inventory",2011,"Not Reported",37,"Stafel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26438,399541,"CHE","National Inventory",2011,"Not Reported",37,"Gütsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26439,399542,"CHE","National Inventory",2011,"Not Reported",37,"Albristmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26440,399543,"CHE","National Inventory",2011,"Not Reported",37,"Sali","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26441,399544,"CHE","National Inventory",2011,"Not Reported",37,"Chanderbrüggallmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26442,399545,"CHE","National Inventory",2011,"Not Reported",37,"Leuggis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26443,399546,"CHE","National Inventory",2011,"Not Reported",37,"Zingeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26444,399547,"CHE","National Inventory",2011,"Not Reported",37,"Weid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26445,399548,"CHE","National Inventory",2011,"Not Reported",37,"Spicherallmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26446,399549,"CHE","National Inventory",2011,"Not Reported",37,"Lusseweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26447,399550,"CHE","National Inventory",2011,"Not Reported",37,"Linterbärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26448,399551,"CHE","National Inventory",2011,"Not Reported",37,"Buechistock","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26449,399552,"CHE","National Inventory",2011,"Not Reported",37,"Schwanderbärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26450,399553,"CHE","National Inventory",2011,"Not Reported",37,"Schwendi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26451,399554,"CHE","National Inventory",2011,"Not Reported",37,"Senggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26452,399555,"CHE","National Inventory",2011,"Not Reported",37,"Farniweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26453,399556,"CHE","National Inventory",2011,"Not Reported",37,"Steinacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26454,399557,"CHE","National Inventory",2011,"Not Reported",37,"Im Stutz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26455,399558,"CHE","National Inventory",2011,"Not Reported",37,"Rosenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26456,399559,"CHE","National Inventory",2011,"Not Reported",37,"Undri Hagweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26457,399560,"CHE","National Inventory",2011,"Not Reported",37,"Sytiweidleni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26458,399561,"CHE","National Inventory",2011,"Not Reported",37,"Hüethütte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26459,399562,"CHE","National Inventory",2011,"Not Reported",37,"Stäga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26460,399563,"CHE","National Inventory",2011,"Not Reported",37,"Gstepf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26461,399564,"CHE","National Inventory",2011,"Not Reported",37,"Zälg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26462,399565,"CHE","National Inventory",2011,"Not Reported",37,"Egglimäder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26463,399566,"CHE","National Inventory",2011,"Not Reported",37,"Hohstand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26464,399567,"CHE","National Inventory",2011,"Not Reported",37,"Eigen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26465,399568,"CHE","National Inventory",2011,"Not Reported",37,"Küenzeli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26466,399569,"CHE","National Inventory",2011,"Not Reported",37,"Rosswang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26467,399570,"CHE","National Inventory",2011,"Not Reported",37,"Leesyten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26468,399571,"CHE","National Inventory",2011,"Not Reported",37,"Schwarzenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26469,399572,"CHE","National Inventory",2011,"Not Reported",37,"Stampach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26470,399573,"CHE","National Inventory",2011,"Not Reported",37,"Uf de Höfte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26471,399574,"CHE","National Inventory",2011,"Not Reported",37,"Runtschi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26472,399575,"CHE","National Inventory",2011,"Not Reported",37,"Preech","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26473,399576,"CHE","National Inventory",2011,"Not Reported",37,"Äbnet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26474,399577,"CHE","National Inventory",2011,"Not Reported",37,"Am Stalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26475,399578,"CHE","National Inventory",2011,"Not Reported",37,"Unterer Ofenbielen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26476,399579,"CHE","National Inventory",2011,"Not Reported",37,"Oberbürgle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26477,399580,"CHE","National Inventory",2011,"Not Reported",37,"In de Weidene","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26478,399581,"CHE","National Inventory",2011,"Not Reported",37,"Reckenthal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26479,399582,"CHE","National Inventory",2011,"Not Reported",37,"Staldiberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26480,399583,"CHE","National Inventory",2011,"Not Reported",37,"Raben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26481,399584,"CHE","National Inventory",2011,"Not Reported",37,"Rohr","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26482,399585,"CHE","National Inventory",2011,"Not Reported",37,"Stuel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26483,399586,"CHE","National Inventory",2011,"Not Reported",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26484,399587,"CHE","National Inventory",2011,"Not Reported",37,"Stalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26485,399588,"CHE","National Inventory",2011,"Not Reported",37,"Gwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26486,399589,"CHE","National Inventory",2011,"Not Reported",37,"Ufem Dirr","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26487,399590,"CHE","National Inventory",2011,"Not Reported",37,"Adelrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26488,399591,"CHE","National Inventory",2011,"Not Reported",37,"Ausser Kandergrund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26489,399592,"CHE","National Inventory",2011,"Not Reported",37,"Am obere Laseberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26490,399593,"CHE","National Inventory",2011,"Not Reported",37,"Hirtplanggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26491,399594,"CHE","National Inventory",2011,"Not Reported",37,"Tripfi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26492,399595,"CHE","National Inventory",2011,"Not Reported",37,"Vorsess","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26493,399596,"CHE","National Inventory",2011,"Not Reported",37,"Leewald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26494,399597,"CHE","National Inventory",2011,"Not Reported",37,"Riedli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26495,399598,"CHE","National Inventory",2011,"Not Reported",37,"Ächerli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26496,399599,"CHE","National Inventory",2011,"Not Reported",37,"Enetgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26497,399600,"CHE","National Inventory",2011,"Not Reported",37,"Chros","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26498,399601,"CHE","National Inventory",2011,"Not Reported",37,"Raufligrat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26499,399602,"CHE","National Inventory",2011,"Not Reported",37,"Sattelweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26500,399603,"CHE","National Inventory",2011,"Not Reported",37,"Büel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26501,399604,"CHE","National Inventory",2011,"Not Reported",37,"Nessligen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26502,399605,"CHE","National Inventory",2011,"Not Reported",37,"Vorsess","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26503,399606,"CHE","National Inventory",2011,"Not Reported",37,"Vorder Stäckenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26504,399607,"CHE","National Inventory",2011,"Not Reported",37,"Obermad","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26505,399608,"CHE","National Inventory",2011,"Not Reported",37,"Chalberstall","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26506,399609,"CHE","National Inventory",2011,"Not Reported",37,"Rond Bois","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26507,399610,"CHE","National Inventory",2011,"Not Reported",37,"Stöckmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26508,399611,"CHE","National Inventory",2011,"Not Reported",37,"Staldi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26509,399612,"CHE","National Inventory",2011,"Not Reported",37,"Obwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26510,399613,"CHE","National Inventory",2011,"Not Reported",37,"Geissholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26511,399614,"CHE","National Inventory",2011,"Not Reported",37,"Holestei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26512,399615,"CHE","National Inventory",2011,"Not Reported",37,"Gwiggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26513,399616,"CHE","National Inventory",2011,"Not Reported",37,"Im Moos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26514,399617,"CHE","National Inventory",2011,"Not Reported",37,"Underbürgle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26515,399618,"CHE","National Inventory",2011,"Not Reported",37,"Riedli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26516,399619,"CHE","National Inventory",2011,"Not Reported",37,"Weidboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26517,399620,"CHE","National Inventory",2011,"Not Reported",37,"Schwanderbärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26518,399621,"CHE","National Inventory",2011,"Not Reported",37,"Wiler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26519,399622,"CHE","National Inventory",2011,"Not Reported",37,"Ligg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26520,399623,"CHE","National Inventory",2011,"Not Reported",37,"Bärenegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26521,399624,"CHE","National Inventory",2011,"Not Reported",37,"Hostetten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26522,399625,"CHE","National Inventory",2011,"Not Reported",37,"Ruine Festi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26523,399626,"CHE","National Inventory",2011,"Not Reported",37,"Chasseral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26524,399627,"CHE","National Inventory",2011,"Not Reported",37,"Les Noisetiers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26525,399628,"CHE","National Inventory",2011,"Not Reported",37,"Petit Chasseral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26526,399629,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26527,399630,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage du Droit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26528,399631,"CHE","National Inventory",2011,"Not Reported",37,"Combe Gaumé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26529,399632,"CHE","National Inventory",2011,"Not Reported",37,"Les Voigières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26530,399633,"CHE","National Inventory",2011,"Not Reported",37,"Pré la Patte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26531,399634,"CHE","National Inventory",2011,"Not Reported",37,"Le Piémont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26532,399635,"CHE","National Inventory",2011,"Not Reported",37,"Staldeweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26533,399636,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage des Esserts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26534,399637,"CHE","National Inventory",2011,"Not Reported",37,"Le Brahon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26535,399638,"CHE","National Inventory",2011,"Not Reported",37,"La Citerne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26536,399639,"CHE","National Inventory",2011,"Not Reported",37,"Grencheberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26537,399640,"CHE","National Inventory",2011,"Not Reported",37,"Spiggeweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26538,399641,"CHE","National Inventory",2011,"Not Reported",37,"Horemäder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26539,399642,"CHE","National Inventory",2011,"Not Reported",37,"Les Grands Champs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26540,399643,"CHE","National Inventory",2011,"Not Reported",37,"Walderalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26541,399644,"CHE","National Inventory",2011,"Not Reported",37,"Les Tayes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26542,399645,"CHE","National Inventory",2011,"Not Reported",37,"Le Crât","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26543,399646,"CHE","National Inventory",2011,"Not Reported",37,"Pré la Patte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26544,399647,"CHE","National Inventory",2011,"Not Reported",37,"Bälmetsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26545,399648,"CHE","National Inventory",2011,"Not Reported",37,"Métairie de St-Jean","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26546,399649,"CHE","National Inventory",2011,"Not Reported",37,"Buechmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26547,399650,"CHE","National Inventory",2011,"Not Reported",37,"Eggebärgli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26548,399651,"CHE","National Inventory",2011,"Not Reported",37,"Schattwimeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26549,399652,"CHE","National Inventory",2011,"Not Reported",37,"I de Wenge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26550,399653,"CHE","National Inventory",2011,"Not Reported",37,"Eggweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26551,399654,"CHE","National Inventory",2011,"Not Reported",37,"Petit Van","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26552,399655,"CHE","National Inventory",2011,"Not Reported",37,"La Baruche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26553,399656,"CHE","National Inventory",2011,"Not Reported",37,"Schufli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26554,399657,"CHE","National Inventory",2011,"Not Reported",37,"Esserts vers Moutier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26555,399658,"CHE","National Inventory",2011,"Not Reported",37,"Ahoreweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26556,399659,"CHE","National Inventory",2011,"Not Reported",37,"Les Lavettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26557,399660,"CHE","National Inventory",2011,"Not Reported",37,"Ochsewang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26558,399661,"CHE","National Inventory",2011,"Not Reported",37,"Le Van","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26559,399662,"CHE","National Inventory",2011,"Not Reported",37,"Rüteli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26560,399663,"CHE","National Inventory",2011,"Not Reported",37,"Ademberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26561,399664,"CHE","National Inventory",2011,"Not Reported",37,"Belprahon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26562,399665,"CHE","National Inventory",2011,"Not Reported",37,"Hoger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26563,399666,"CHE","National Inventory",2011,"Not Reported",37,"Chli Rohrgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26564,399667,"CHE","National Inventory",2011,"Not Reported",37,"Schattwimeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26565,399668,"CHE","National Inventory",2011,"Not Reported",37,"Äschholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26566,399669,"CHE","National Inventory",2011,"Not Reported",37,"Vord. Hofbergli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26567,399670,"CHE","National Inventory",2011,"Not Reported",37,"Geissbach","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26568,399671,"CHE","National Inventory",2011,"Not Reported",37,"Winteregg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26569,399672,"CHE","National Inventory",2011,"Not Reported",37,"Le Grimm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26570,399673,"CHE","National Inventory",2011,"Not Reported",37,"Brenggenmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26571,399674,"CHE","National Inventory",2011,"Not Reported",37,"Louweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26572,399675,"CHE","National Inventory",2011,"Not Reported",37,"Schöneberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26573,399676,"CHE","National Inventory",2011,"Not Reported",37,"Imihubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26574,399677,"CHE","National Inventory",2011,"Not Reported",37,"Brenggenmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26575,399678,"CHE","National Inventory",2011,"Not Reported",37,"Heuberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26576,399679,"CHE","National Inventory",2011,"Not Reported",37,"Sillere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26577,399680,"CHE","National Inventory",2011,"Not Reported",37,"Chli Rohrgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26578,399681,"CHE","National Inventory",2011,"Not Reported",37,"Tierpark","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26579,399682,"CHE","National Inventory",2011,"Not Reported",37,"Chirschbäumliweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26580,399683,"CHE","National Inventory",2011,"Not Reported",37,"Le Grimm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26581,399684,"CHE","National Inventory",2011,"Not Reported",37,"Le Pas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26582,399685,"CHE","National Inventory",2011,"Not Reported",37,"Aargauerstalden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26583,399686,"CHE","National Inventory",2011,"Not Reported",37,"Chrüzflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26584,399687,"CHE","National Inventory",2011,"Not Reported",37,"Tierpark","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26585,399688,"CHE","National Inventory",2011,"Not Reported",37,"Brändlisweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26586,399689,"CHE","National Inventory",2011,"Not Reported",37,"Laupenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26587,399690,"CHE","National Inventory",2011,"Not Reported",37,"Gampelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26588,399691,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage de Sagne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26589,399692,"CHE","National Inventory",2011,"Not Reported",37,"Gümmenenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26590,399693,"CHE","National Inventory",2011,"Not Reported",37,"Bir länge Stude","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26591,399694,"CHE","National Inventory",2011,"Not Reported",37,"Golsenrainacher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26592,399695,"CHE","National Inventory",2011,"Not Reported",37,"Blatteree","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26593,399696,"CHE","National Inventory",2011,"Not Reported",37,"Laupenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26594,399697,"CHE","National Inventory",2011,"Not Reported",37,"Müligrien","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26595,399698,"CHE","National Inventory",2011,"Not Reported",37,"Blatteree","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26596,399699,"CHE","National Inventory",2011,"Not Reported",37,"Unteralp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26597,399700,"CHE","National Inventory",2011,"Not Reported",37,"Schafberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26598,399701,"CHE","National Inventory",2011,"Not Reported",37,"Im Wengen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26599,399702,"CHE","National Inventory",2011,"Not Reported",37,"Alpligen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26600,399703,"CHE","National Inventory",2011,"Not Reported",37,"Lüpersberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26601,399704,"CHE","National Inventory",2011,"Not Reported",37,"Spicherberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26602,399705,"CHE","National Inventory",2011,"Not Reported",37,"Schopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26603,399706,"CHE","National Inventory",2011,"Not Reported",37,"Biglera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26604,399707,"CHE","National Inventory",2011,"Not Reported",37,"Lusbüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26605,399708,"CHE","National Inventory",2011,"Not Reported",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26606,399709,"CHE","National Inventory",2011,"Not Reported",37,"Unterniesen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26607,399710,"CHE","National Inventory",2011,"Not Reported",37,"Undrem Tritt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26608,399711,"CHE","National Inventory",2011,"Not Reported",37,"Chlus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26609,399712,"CHE","National Inventory",2011,"Not Reported",37,"Champ Matthieu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26610,399713,"CHE","National Inventory",2011,"Not Reported",37,"Louweli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26611,399714,"CHE","National Inventory",2011,"Not Reported",37,"Sandey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26612,399715,"CHE","National Inventory",2011,"Not Reported",37,"Ladholzgrabe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26613,399716,"CHE","National Inventory",2011,"Not Reported",37,"Gümmenenau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26614,399717,"CHE","National Inventory",2011,"Not Reported",37,"Müllersbode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26615,399718,"CHE","National Inventory",2011,"Not Reported",37,"Tussweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26616,399719,"CHE","National Inventory",2011,"Not Reported",37,"Husallmi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26617,399720,"CHE","National Inventory",2011,"Not Reported",37,"Spissliegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26618,399721,"CHE","National Inventory",2011,"Not Reported",37,"Napf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26619,399722,"CHE","National Inventory",2011,"Not Reported",37,"Schwand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26620,399723,"CHE","National Inventory",2011,"Not Reported",37,"Schlossweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26621,399724,"CHE","National Inventory",2011,"Not Reported",37,"Schälmegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26622,399725,"CHE","National Inventory",2011,"Not Reported",37,"I de Huble","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26623,399726,"CHE","National Inventory",2011,"Not Reported",37,"Oberst Geberts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26624,399727,"CHE","National Inventory",2011,"Not Reported",37,"Ifängi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26625,399728,"CHE","National Inventory",2011,"Not Reported",37,"Büelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26626,399729,"CHE","National Inventory",2011,"Not Reported",37,"Rotihalten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26627,399730,"CHE","National Inventory",2011,"Not Reported",37,"Hagnau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26628,399731,"CHE","National Inventory",2011,"Not Reported",37,"Chasseral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26629,399732,"CHE","National Inventory",2011,"Not Reported",37,"Cht du Grand Essert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26630,399733,"CHE","National Inventory",2011,"Not Reported",37,"Pièce à Neveu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26631,399734,"CHE","National Inventory",2011,"Not Reported",37,"Pièce aux Reymond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26632,399735,"CHE","National Inventory",2011,"Not Reported",37,"Pièce aux Reymond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26633,399736,"CHE","National Inventory",2011,"Not Reported",37,"Grands Crosets Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26634,399737,"CHE","National Inventory",2011,"Not Reported",37,"La Perrause","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26635,399738,"CHE","National Inventory",2011,"Not Reported",37,"Petites Chaumilles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26636,399739,"CHE","National Inventory",2011,"Not Reported",37,"Rossfallen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26637,399740,"CHE","National Inventory",2011,"Not Reported",37,"Sèche des Amburnex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26638,399741,"CHE","National Inventory",2011,"Not Reported",37,"La Baronne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26639,399742,"CHE","National Inventory",2011,"Not Reported",37,"Les Amburnex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26640,399743,"CHE","National Inventory",2011,"Not Reported",37,"Pré aux Veaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26641,399744,"CHE","National Inventory",2011,"Not Reported",37,"Les Begnines","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26642,399745,"CHE","National Inventory",2011,"Not Reported",37,"Mont Sâla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26643,399746,"CHE","National Inventory",2011,"Not Reported",37,"La Bullatonne Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26644,399747,"CHE","National Inventory",2011,"Not Reported",37,"La Pidouse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26645,399748,"CHE","National Inventory",2011,"Not Reported",37,"La Première","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26646,399749,"CHE","National Inventory",2011,"Not Reported",37,"Les Preisettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26647,399750,"CHE","National Inventory",2011,"Not Reported",37,"Chaux Commun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26648,399751,"CHE","National Inventory",2011,"Not Reported",37,"Col des Etroits","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26649,399752,"CHE","National Inventory",2011,"Not Reported",37,"Les Illars","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26650,399753,"CHE","National Inventory",2011,"Not Reported",37,"Les Etroits","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26651,399754,"CHE","National Inventory",2011,"Not Reported",37,"Champ de Gryonne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26652,399755,"CHE","National Inventory",2011,"Not Reported",37,"Le Chasseron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26653,399756,"CHE","National Inventory",2011,"Not Reported",37,"Crêt des Gouilles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26654,399757,"CHE","National Inventory",2011,"Not Reported",37,"Le Botsa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26655,399758,"CHE","National Inventory",2011,"Not Reported",37,"Les Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26656,399759,"CHE","National Inventory",2011,"Not Reported",37,"Montérel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26657,399760,"CHE","National Inventory",2011,"Not Reported",37,"Les Larzettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26658,399761,"CHE","National Inventory",2011,"Not Reported",37,"Chaudet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26659,399762,"CHE","National Inventory",2011,"Not Reported",37,"La Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26660,399763,"CHE","National Inventory",2011,"Not Reported",37,"Mont de la Maya","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26661,399764,"CHE","National Inventory",2011,"Not Reported",37,"Combe du Luissel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26662,399765,"CHE","National Inventory",2011,"Not Reported",37,"La Marnèche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26663,399766,"CHE","National Inventory",2011,"Not Reported",37,"Petites Roches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26664,399767,"CHE","National Inventory",2011,"Not Reported",37,"Chaudet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26665,399768,"CHE","National Inventory",2011,"Not Reported",37,"Longevaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26666,399769,"CHE","National Inventory",2011,"Not Reported",37,"Orgevaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26667,399770,"CHE","National Inventory",2011,"Not Reported",37,"L'Ecuale","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26668,399771,"CHE","National Inventory",2011,"Not Reported",37,"Chaux Ronde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26669,399772,"CHE","National Inventory",2011,"Not Reported",37,"Marche de Retaud","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26670,399773,"CHE","National Inventory",2011,"Not Reported",37,"Marnex d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26671,399774,"CHE","National Inventory",2011,"Not Reported",37,"Les Cernets Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26672,399775,"CHE","National Inventory",2011,"Not Reported",37,"Dru aux Boyards","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26673,399776,"CHE","National Inventory",2011,"Not Reported",37,"La Calame","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26674,399777,"CHE","National Inventory",2011,"Not Reported",37,"Le Vey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26675,399778,"CHE","National Inventory",2011,"Not Reported",37,"Le Cochet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26676,399779,"CHE","National Inventory",2011,"Not Reported",37,"Mayen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26677,399780,"CHE","National Inventory",2011,"Not Reported",37,"L'Abert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26678,399781,"CHE","National Inventory",2011,"Not Reported",37,"Ste-Croix","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26679,399782,"CHE","National Inventory",2011,"Not Reported",37,"Arten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26680,399783,"CHE","National Inventory",2011,"Not Reported",37,"Euzanne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26681,399784,"CHE","National Inventory",2011,"Not Reported",37,"Joux d'Aï","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26682,399785,"CHE","National Inventory",2011,"Not Reported",37,"La Motte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26683,399786,"CHE","National Inventory",2011,"Not Reported",37,"Sonna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26684,399787,"CHE","National Inventory",2011,"Not Reported",37,"Rochers de Naye","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26685,399788,"CHE","National Inventory",2011,"Not Reported",37,"Planachaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26686,399789,"CHE","National Inventory",2011,"Not Reported",37,"Planex Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26687,399790,"CHE","National Inventory",2011,"Not Reported",37,"Rougemont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26688,399791,"CHE","National Inventory",2011,"Not Reported",37,"Les Fenils","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26689,399792,"CHE","National Inventory",2011,"Not Reported",37,"Dent de Corjon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26690,399793,"CHE","National Inventory",2011,"Not Reported",37,"Derrière Forcle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26691,399794,"CHE","National Inventory",2011,"Not Reported",37,"Paray Dorénaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26692,399795,"CHE","National Inventory",2011,"Not Reported",37,"Mont Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26693,399796,"CHE","National Inventory",2011,"Not Reported",37,"Le Linderrey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26694,399797,"CHE","National Inventory",2011,"Not Reported",37,"Le Lévanchy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26695,399798,"CHE","National Inventory",2011,"Not Reported",37,"Les Planards","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26696,399799,"CHE","National Inventory",2011,"Not Reported",37,"Prélan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26697,399800,"CHE","National Inventory",2011,"Not Reported",37,"Ruble","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26698,399801,"CHE","National Inventory",2011,"Not Reported",37,"Sassalas d'en Bas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26699,399802,"CHE","National Inventory",2011,"Not Reported",37,"Le Chalotet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26700,399803,"CHE","National Inventory",2011,"Not Reported",37,"L'Orgeolet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26701,399804,"CHE","National Inventory",2011,"Not Reported",37,"Les Chenolettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26702,399805,"CHE","National Inventory",2011,"Not Reported",37,"Dent des Bimis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26703,399806,"CHE","National Inventory",2011,"Not Reported",37,"La Videman Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26704,399807,"CHE","National Inventory",2011,"Not Reported",37,"Les Rayes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26705,399808,"CHE","National Inventory",2011,"Not Reported",37,"La Chanette d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26706,399809,"CHE","National Inventory",2011,"Not Reported",37,"Veyges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26707,399810,"CHE","National Inventory",2011,"Not Reported",37,"La Boule de Gomme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26708,399811,"CHE","National Inventory",2011,"Not Reported",37,"La Forcla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26709,399812,"CHE","National Inventory",2011,"Not Reported",37,"L'Etivaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26710,399813,"CHE","National Inventory",2011,"Not Reported",37,"Mont Derrière","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26711,399814,"CHE","National Inventory",2011,"Not Reported",37,"Sous Jable","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26712,399815,"CHE","National Inventory",2011,"Not Reported",37,"Les Joux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26713,399816,"CHE","National Inventory",2011,"Not Reported",37,"Les Combettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26714,399817,"CHE","National Inventory",2011,"Not Reported",37,"Petites Sauges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26715,399818,"CHE","National Inventory",2011,"Not Reported",37,"Vers Cort","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26716,399819,"CHE","National Inventory",2011,"Not Reported",37,"Le Pendant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26717,399820,"CHE","National Inventory",2011,"Not Reported",37,"Sur Pra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26718,399821,"CHE","National Inventory",2011,"Not Reported",37,"La Laissy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26719,399822,"CHE","National Inventory",2011,"Not Reported",37,"La Randonnaire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26720,399823,"CHE","National Inventory",2011,"Not Reported",37,"Les Riz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26721,399824,"CHE","National Inventory",2011,"Not Reported",37,"Paray Dorénaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26722,399825,"CHE","National Inventory",2011,"Not Reported",37,"Plan de l'Etalle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26723,399826,"CHE","National Inventory",2011,"Not Reported",37,"Les Posses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26724,399827,"CHE","National Inventory",2011,"Not Reported",37,"Combette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26725,399828,"CHE","National Inventory",2011,"Not Reported",37,"Petit Jable","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26726,399829,"CHE","National Inventory",2011,"Not Reported",37,"Au Devin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26727,399830,"CHE","National Inventory",2011,"Not Reported",37,"Plans Claude","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26728,399831,"CHE","National Inventory",2011,"Not Reported",37,"Sassalas d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26729,399832,"CHE","National Inventory",2011,"Not Reported",37,"Les Ecoumaudaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26730,399833,"CHE","National Inventory",2011,"Not Reported",37,"Le Van","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26731,399834,"CHE","National Inventory",2011,"Not Reported",37,"Le Praude","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26732,399835,"CHE","National Inventory",2011,"Not Reported",37,"La Montagnette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26733,399836,"CHE","National Inventory",2011,"Not Reported",37,"Sisounette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26734,399837,"CHE","National Inventory",2011,"Not Reported",37,"Crête d'Auliens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26735,399838,"CHE","National Inventory",2011,"Not Reported",37,"Paray Charbon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26736,399839,"CHE","National Inventory",2011,"Not Reported",37,"Pâquier Martin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26737,399840,"CHE","National Inventory",2011,"Not Reported",37,"La Ville","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26738,399841,"CHE","National Inventory",2011,"Not Reported",37,"Fin de Juret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26739,399842,"CHE","National Inventory",2011,"Not Reported",37,"Grands Craux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26740,399843,"CHE","National Inventory",2011,"Not Reported",37,"Les Combes du Milieu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26741,399844,"CHE","National Inventory",2011,"Not Reported",37,"La Molaire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26742,399845,"CHE","National Inventory",2011,"Not Reported",37,"La Loune","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26743,399846,"CHE","National Inventory",2011,"Not Reported",37,"Tête du Lévanchy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26744,399847,"CHE","National Inventory",2011,"Not Reported",37,"Pâquier Burnier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26745,399848,"CHE","National Inventory",2011,"Not Reported",37,"Vers la Doey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26746,399849,"CHE","National Inventory",2011,"Not Reported",37,"Le Boura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26747,399850,"CHE","National Inventory",2011,"Not Reported",37,"Le Marais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26748,399851,"CHE","National Inventory",2011,"Not Reported",37,"Drapel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26749,399852,"CHE","National Inventory",2011,"Not Reported",37,"Les Combettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26750,399853,"CHE","National Inventory",2011,"Not Reported",37,"Vuargny Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26751,399854,"CHE","National Inventory",2011,"Not Reported",37,"Velard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26752,399855,"CHE","National Inventory",2011,"Not Reported",37,"Le Bouet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26753,399856,"CHE","National Inventory",2011,"Not Reported",37,"Pra Sautier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26754,399858,"CHE","National Inventory",2011,"Not Reported",37,"Les Torneresses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26755,399859,"CHE","National Inventory",2011,"Not Reported",37,"Rabou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26756,399860,"CHE","National Inventory",2011,"Not Reported",37,"La Pontie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26757,399861,"CHE","National Inventory",2011,"Not Reported",37,"La Saussa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26758,399862,"CHE","National Inventory",2011,"Not Reported",37,"Les Planards","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26759,399863,"CHE","National Inventory",2011,"Not Reported",37,"Entremouille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26760,399864,"CHE","National Inventory",2011,"Not Reported",37,"Combe Robert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26761,399865,"CHE","National Inventory",2011,"Not Reported",37,"Plan d'Essert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26762,399866,"CHE","National Inventory",2011,"Not Reported",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26763,399867,"CHE","National Inventory",2011,"Not Reported",37,"Les Chargiaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26764,399868,"CHE","National Inventory",2011,"Not Reported",37,"Le Flonzaley","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26765,399869,"CHE","National Inventory",2011,"Not Reported",37,"Huémoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26766,399870,"CHE","National Inventory",2011,"Not Reported",37,"Genièvre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26767,399871,"CHE","National Inventory",2011,"Not Reported",37,"La Combe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26768,399872,"CHE","National Inventory",2011,"Not Reported",37,"Gotale","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26769,399873,"CHE","National Inventory",2011,"Not Reported",37,"Ponty","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26770,399874,"CHE","National Inventory",2011,"Not Reported",37,"Les Afforets","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26771,399875,"CHE","National Inventory",2011,"Not Reported",37,"Eslex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26772,399876,"CHE","National Inventory",2011,"Not Reported",37,"Crêt à Tavez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26773,399877,"CHE","National Inventory",2011,"Not Reported",37,"Ponty","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26774,399878,"CHE","National Inventory",2011,"Not Reported",37,"Ober Schwendi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26775,399879,"CHE","National Inventory",2011,"Not Reported",37,"Goy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26776,399880,"CHE","National Inventory",2011,"Not Reported",37,"Saurin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26777,399881,"CHE","National Inventory",2011,"Not Reported",37,"Sur Champagne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26778,399882,"CHE","National Inventory",2011,"Not Reported",37,"Mont Tendre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26779,399883,"CHE","National Inventory",2011,"Not Reported",37,"La Dôle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26780,399884,"CHE","National Inventory",2011,"Not Reported",37,"Brand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26781,399885,"CHE","National Inventory",2011,"Not Reported",37,"L'Arzière","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26782,399886,"CHE","National Inventory",2011,"Not Reported",37,"Creux d'Enfer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26783,399887,"CHE","National Inventory",2011,"Not Reported",37,"Les Râpes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26784,399888,"CHE","National Inventory",2011,"Not Reported",37,"Chassagne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26785,399889,"CHE","National Inventory",2011,"Not Reported",37,"Pré de l'Haut Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26786,399890,"CHE","National Inventory",2011,"Not Reported",37,"Roche Perrause","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26787,399891,"CHE","National Inventory",2011,"Not Reported",37,"Le Noirmont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26788,399892,"CHE","National Inventory",2011,"Not Reported",37,"Col de Jaman","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26789,399893,"CHE","National Inventory",2011,"Not Reported",37,"Pré Magnin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26790,399894,"CHE","National Inventory",2011,"Not Reported",37,"Les Croisettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26791,399895,"CHE","National Inventory",2011,"Not Reported",37,"Sous la Roche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26792,399896,"CHE","National Inventory",2011,"Not Reported",37,"Petit Cunay","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26793,399897,"CHE","National Inventory",2011,"Not Reported",37,"Chalet Neuf du Mont Tendre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26794,399898,"CHE","National Inventory",2011,"Not Reported",37,"Le Suchet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26795,399899,"CHE","National Inventory",2011,"Not Reported",37,"Dent de Vaulion","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26796,399900,"CHE","National Inventory",2011,"Not Reported",37,"Bois de Chênes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26797,399901,"CHE","National Inventory",2011,"Not Reported",37,"L'Etang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26798,399902,"CHE","National Inventory",2011,"Not Reported",37,"Rochey","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26799,399903,"CHE","National Inventory",2011,"Not Reported",37,"Plaine à Gallay","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26800,399904,"CHE","National Inventory",2011,"Not Reported",37,"Potraux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26801,399905,"CHE","National Inventory",2011,"Not Reported",37,"Sapelet Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26802,399906,"CHE","National Inventory",2011,"Not Reported",37,"Combe du Faoug","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26803,399907,"CHE","National Inventory",2011,"Not Reported",37,"Druchaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26804,399908,"CHE","National Inventory",2011,"Not Reported",37,"Berge de la Broye","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26805,399909,"CHE","National Inventory",2011,"Not Reported",37,"La Thomassette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26806,399910,"CHE","National Inventory",2011,"Not Reported",37,"Grand Essert du Vent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26807,399911,"CHE","National Inventory",2011,"Not Reported",37,"Sonloup","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26808,399912,"CHE","National Inventory",2011,"Not Reported",37,"Le Planet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26809,399913,"CHE","National Inventory",2011,"Not Reported",37,"Bugnaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26810,399914,"CHE","National Inventory",2011,"Not Reported",37,"Chalet du Crêt à Chatron Vieux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26811,399915,"CHE","National Inventory",2011,"Not Reported",37,"Les Plainoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26812,399916,"CHE","National Inventory",2011,"Not Reported",37,"Le Rosset","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26813,399917,"CHE","National Inventory",2011,"Not Reported",37,"La Fréterette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26814,399918,"CHE","National Inventory",2011,"Not Reported",37,"Vernant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26815,399919,"CHE","National Inventory",2011,"Not Reported",37,"Sur le Mont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26816,399920,"CHE","National Inventory",2011,"Not Reported",37,"Les Envers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26817,399921,"CHE","National Inventory",2011,"Not Reported",37,"La Sauge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26818,399922,"CHE","National Inventory",2011,"Not Reported",37,"Mondion","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26819,399923,"CHE","National Inventory",2011,"Not Reported",37,"Les Esserts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26820,399924,"CHE","National Inventory",2011,"Not Reported",37,"Les Bioles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26821,399925,"CHE","National Inventory",2011,"Not Reported",37,"Communs du Haut des Prés","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26822,399926,"CHE","National Inventory",2011,"Not Reported",37,"Pré aux Biches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26823,399927,"CHE","National Inventory",2011,"Not Reported",37,"Gare de Vallorbe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26824,399928,"CHE","National Inventory",2011,"Not Reported",37,"Gare de Vallorbe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26825,399929,"CHE","National Inventory",2011,"Not Reported",37,"Pralioux Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26826,399930,"CHE","National Inventory",2011,"Not Reported",37,"Champs Neufs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26827,399931,"CHE","National Inventory",2011,"Not Reported",37,"Lally","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26828,399932,"CHE","National Inventory",2011,"Not Reported",37,"Prés de Joux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26829,399933,"CHE","National Inventory",2011,"Not Reported",37,"Volaille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26830,399934,"CHE","National Inventory",2011,"Not Reported",37,"Le Crotet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26831,399935,"CHE","National Inventory",2011,"Not Reported",37,"Le Risel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26832,399936,"CHE","National Inventory",2011,"Not Reported",37,"Le Chaney","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26833,399937,"CHE","National Inventory",2011,"Not Reported",37,"Crêt de Grison","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26834,399938,"CHE","National Inventory",2011,"Not Reported",37,"La Dunanche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26835,399939,"CHE","National Inventory",2011,"Not Reported",37,"Vieille Morte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26836,399940,"CHE","National Inventory",2011,"Not Reported",37,"Les Orgères","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26837,399941,"CHE","National Inventory",2011,"Not Reported",37,"Pré de Denens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26838,399942,"CHE","National Inventory",2011,"Not Reported",37,"Font. Froide","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26839,399943,"CHE","National Inventory",2011,"Not Reported",37,"La Coche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26840,399944,"CHE","National Inventory",2011,"Not Reported",37,"Combe Aubert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26841,399945,"CHE","National Inventory",2011,"Not Reported",37,"Les Maisons Doubles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26842,399946,"CHE","National Inventory",2011,"Not Reported",37,"La Biole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26843,399947,"CHE","National Inventory",2011,"Not Reported",37,"Oberstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26844,399948,"CHE","National Inventory",2011,"Not Reported",37,"Romainmôtier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26845,399949,"CHE","National Inventory",2011,"Not Reported",37,"Pré Nouveau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26846,399950,"CHE","National Inventory",2011,"Not Reported",37,"Le Molaret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26847,399951,"CHE","National Inventory",2011,"Not Reported",37,"Les Vidies","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26848,399952,"CHE","National Inventory",2011,"Not Reported",37,"Derrière Forel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26849,399953,"CHE","National Inventory",2011,"Not Reported",37,"Lucens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26850,399954,"CHE","National Inventory",2011,"Not Reported",37,"Les Baumettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26851,399955,"CHE","National Inventory",2011,"Not Reported",37,"L'Aouille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26852,399956,"CHE","National Inventory",2011,"Not Reported",37,"Breiten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26853,399957,"CHE","National Inventory",2011,"Not Reported",37,"Cht de la Dôle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26854,399958,"CHE","National Inventory",2011,"Not Reported",37,"Grands Esserts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26855,399959,"CHE","National Inventory",2011,"Not Reported",37,"Pré de Ballens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26856,399960,"CHE","National Inventory",2011,"Not Reported",37,"Pralioux Dessous","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26857,399961,"CHE","National Inventory",2011,"Not Reported",37,"Bugnonet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26858,399962,"CHE","National Inventory",2011,"Not Reported",37,"Pré de Rolle","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26859,399963,"CHE","National Inventory",2011,"Not Reported",37,"Villas Prangins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26860,399964,"CHE","National Inventory",2011,"Not Reported",37,"Cht du Communal de l'Abbaye","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26861,399965,"CHE","National Inventory",2011,"Not Reported",37,"Arruffens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26862,399966,"CHE","National Inventory",2011,"Not Reported",37,"Arruffens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26863,399967,"CHE","National Inventory",2011,"Not Reported",37,"Prévondavaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26864,399968,"CHE","National Inventory",2011,"Not Reported",37,"St-Triphon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26865,399969,"CHE","National Inventory",2011,"Not Reported",37,"Motte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26866,399970,"CHE","National Inventory",2011,"Not Reported",37,"Pierre Sanche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26867,399971,"CHE","National Inventory",2011,"Not Reported",37,"Publoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26868,399972,"CHE","National Inventory",2011,"Not Reported",37,"Les Auges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26869,399973,"CHE","National Inventory",2011,"Not Reported",37,"Les Côtes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26870,399974,"CHE","National Inventory",2011,"Not Reported",37,"Chalet du Crêt à Chatron Neuf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26871,399975,"CHE","National Inventory",2011,"Not Reported",37,"Les Avants","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26872,399976,"CHE","National Inventory",2011,"Not Reported",37,"La Biole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26873,399977,"CHE","National Inventory",2011,"Not Reported",37,"Volota","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26874,399978,"CHE","National Inventory",2011,"Not Reported",37,"Mont Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26875,399979,"CHE","National Inventory",2011,"Not Reported",37,"Montéla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26876,399980,"CHE","National Inventory",2011,"Not Reported",37,"Petite Enne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26877,399981,"CHE","National Inventory",2011,"Not Reported",37,"L'Aiguillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26878,399982,"CHE","National Inventory",2011,"Not Reported",37,"Le Levant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26879,399983,"CHE","National Inventory",2011,"Not Reported",37,"Grand Puits","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26880,399984,"CHE","National Inventory",2011,"Not Reported",37,"Le Moulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26881,399985,"CHE","National Inventory",2011,"Not Reported",37,"Le Sasselet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26882,399986,"CHE","National Inventory",2011,"Not Reported",37,"Combe au Roc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26883,399987,"CHE","National Inventory",2011,"Not Reported",37,"Les Grassillières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26884,399988,"CHE","National Inventory",2011,"Not Reported",37,"La Tiole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26885,399989,"CHE","National Inventory",2011,"Not Reported",37,"Le Château de Ste-Croix","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26886,399990,"CHE","National Inventory",2011,"Not Reported",37,"Baule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26887,399991,"CHE","National Inventory",2011,"Not Reported",37,"La Palud","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26888,399992,"CHE","National Inventory",2011,"Not Reported",37,"Vy de Vugelles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26889,399993,"CHE","National Inventory",2011,"Not Reported",37,"Le Signal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26890,399994,"CHE","National Inventory",2011,"Not Reported",37,"Les Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26891,399995,"CHE","National Inventory",2011,"Not Reported",37,"La Daille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26892,399996,"CHE","National Inventory",2011,"Not Reported",37,"Bucley","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26893,399997,"CHE","National Inventory",2011,"Not Reported",37,"La Rochette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26894,399998,"CHE","National Inventory",2011,"Not Reported",37,"Ruine Neutoggenburg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26895,399999,"CHE","National Inventory",2011,"Not Reported",37,"Les Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26896,400000,"CHE","National Inventory",2011,"Not Reported",37,"Les Bordes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26897,555512498,"CHE","National Inventory",2011,"Not Reported",37,"Sur Pévraz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26898,555512499,"CHE","National Inventory",2011,"Not Reported",37,"Moille Saulaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26899,555512500,"CHE","National Inventory",2011,"Not Reported",37,"La Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26900,555512501,"CHE","National Inventory",2011,"Not Reported",37,"Villard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26901,555512502,"CHE","National Inventory",2011,"Not Reported",37,"Haut de Baume","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26902,555512503,"CHE","National Inventory",2011,"Not Reported",37,"Les Rochettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26903,555512504,"CHE","National Inventory",2011,"Not Reported",37,"Valeyres-sous-Montagny","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26904,555512505,"CHE","National Inventory",2011,"Not Reported",37,"Le Marais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26905,555512506,"CHE","National Inventory",2011,"Not Reported",37,"Le Guenéflin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26906,555512507,"CHE","National Inventory",2011,"Not Reported",37,"Les Piauliauses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26907,555512508,"CHE","National Inventory",2011,"Not Reported",37,"Nidau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26908,555512509,"CHE","National Inventory",2011,"Not Reported",37,"Venchellez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26909,555512510,"CHE","National Inventory",2011,"Not Reported",37,"Salauroz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26910,555512511,"CHE","National Inventory",2011,"Not Reported",37,"Les Linardes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26911,555512512,"CHE","National Inventory",2011,"Not Reported",37,"Les Vernes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26912,555512513,"CHE","National Inventory",2011,"Not Reported",37,"Le Lanciau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26913,555512514,"CHE","National Inventory",2011,"Not Reported",37,"Fenil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26914,555512515,"CHE","National Inventory",2011,"Not Reported",37,"Chemin d'Aubonne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26915,555512516,"CHE","National Inventory",2011,"Not Reported",37,"Les Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26916,555512517,"CHE","National Inventory",2011,"Not Reported",37,"Töbeliberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26917,555512518,"CHE","National Inventory",2011,"Not Reported",37,"La Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26918,555512519,"CHE","National Inventory",2011,"Not Reported",37,"Le Signal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26919,555512520,"CHE","National Inventory",2011,"Not Reported",37,"Le Mont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26920,555512521,"CHE","National Inventory",2011,"Not Reported",37,"Pré Defour","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26921,555512522,"CHE","National Inventory",2011,"Not Reported",37,"Sur Crause","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26922,555512523,"CHE","National Inventory",2011,"Not Reported",37,"Noches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26923,555512524,"CHE","National Inventory",2011,"Not Reported",37,"Chamblon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26924,555512525,"CHE","National Inventory",2011,"Not Reported",37,"La Bahyse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26925,555512526,"CHE","National Inventory",2011,"Not Reported",37,"La Violette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26926,555512527,"CHE","National Inventory",2011,"Not Reported",37,"Maconnex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26927,555512528,"CHE","National Inventory",2011,"Not Reported",37,"La Condemine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26928,555512529,"CHE","National Inventory",2011,"Not Reported",37,"La Scie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26929,555512530,"CHE","National Inventory",2011,"Not Reported",37,"Sur le Mont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26930,555512531,"CHE","National Inventory",2011,"Not Reported",37,"Chentres","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26931,555512532,"CHE","National Inventory",2011,"Not Reported",37,"La Pièce","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26932,555512533,"CHE","National Inventory",2011,"Not Reported",37,"Pré du Moulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26933,555512534,"CHE","National Inventory",2011,"Not Reported",37,"Gottettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26934,555512535,"CHE","National Inventory",2011,"Not Reported",37,"Le Puisoir","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26935,555512536,"CHE","National Inventory",2011,"Not Reported",37,"Le Signal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26936,555512537,"CHE","National Inventory",2011,"Not Reported",37,"Sur Pévraz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26937,555512538,"CHE","National Inventory",2011,"Not Reported",37,"Les Eterpis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26938,555512539,"CHE","National Inventory",2011,"Not Reported",37,"Les Allévays","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26939,555512540,"CHE","National Inventory",2011,"Not Reported",37,"Vuichime","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26940,555512541,"CHE","National Inventory",2011,"Not Reported",37,"Ondallaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26941,555512542,"CHE","National Inventory",2011,"Not Reported",37,"Champ Courbe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26942,555512543,"CHE","National Inventory",2011,"Not Reported",37,"Bois Guyot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26943,555512544,"CHE","National Inventory",2011,"Not Reported",37,"Les Guébettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26944,555512545,"CHE","National Inventory",2011,"Not Reported",37,"Mont Proveire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26945,555512546,"CHE","National Inventory",2011,"Not Reported",37,"Colonie de St-Gervais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26946,555512547,"CHE","National Inventory",2011,"Not Reported",37,"Sur Crause","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26947,555512548,"CHE","National Inventory",2011,"Not Reported",37,"Maconnex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26948,555512549,"CHE","National Inventory",2011,"Not Reported",37,"Trembley","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26949,555512550,"CHE","National Inventory",2011,"Not Reported",37,"Champ Cherdon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26950,555512551,"CHE","National Inventory",2011,"Not Reported",37,"Les Bessonnes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26951,555512552,"CHE","National Inventory",2011,"Not Reported",37,"Bochat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26952,555512553,"CHE","National Inventory",2011,"Not Reported",37,"Les Râpes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26953,555512554,"CHE","National Inventory",2011,"Not Reported",37,"Beauregard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26954,555512555,"CHE","National Inventory",2011,"Not Reported",37,"Forel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26955,555512556,"CHE","National Inventory",2011,"Not Reported",37,"Volaille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26956,555512558,"CHE","National Inventory",2011,"Not Reported",37,"Grenive","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26957,555512559,"CHE","National Inventory",2011,"Not Reported",37,"Criblet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26958,555512560,"CHE","National Inventory",2011,"Not Reported",37,"Schnebelhorn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26959,555512561,"CHE","National Inventory",2011,"Not Reported",37,"Chât.","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26960,555512562,"CHE","National Inventory",2011,"Not Reported",37,"Plan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26961,555512563,"CHE","National Inventory",2011,"Not Reported",37,"Jugny","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26962,555512564,"CHE","National Inventory",2011,"Not Reported",37,"Maupas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26963,555512565,"CHE","National Inventory",2011,"Not Reported",37,"Oulens-sur-Lucens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26964,555512566,"CHE","National Inventory",2011,"Not Reported",37,"Givrins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26965,555512567,"CHE","National Inventory",2011,"Not Reported",37,"Chât. de la Motte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26966,555512568,"CHE","National Inventory",2011,"Not Reported",37,"Clin. La Joy","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26967,555512569,"CHE","National Inventory",2011,"Not Reported",37,"La Vaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26968,555512570,"CHE","National Inventory",2011,"Not Reported",37,"Les Ecaravez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26969,555512571,"CHE","National Inventory",2011,"Not Reported",37,"La Conversion","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26970,555512572,"CHE","National Inventory",2011,"Not Reported",37,"Moille Saulaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26971,555512573,"CHE","National Inventory",2011,"Not Reported",37,"Les Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26972,555512575,"CHE","National Inventory",2011,"Not Reported",37,"Sur Chaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26973,555512576,"CHE","National Inventory",2011,"Not Reported",37,"Vimont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26974,555512577,"CHE","National Inventory",2011,"Not Reported",37,"Brochatton","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26975,555512578,"CHE","National Inventory",2011,"Not Reported",37,"Pra Mallon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26976,555512579,"CHE","National Inventory",2011,"Not Reported",37,"Vogelberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26977,555512580,"CHE","National Inventory",2011,"Not Reported",37,"Champ de la Croix","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26978,555512581,"CHE","National Inventory",2011,"Not Reported",37,"Sautodoz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26979,555512582,"CHE","National Inventory",2011,"Not Reported",37,"Les Verraux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26980,555512583,"CHE","National Inventory",2011,"Not Reported",37,"Schwamm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26981,555512584,"CHE","National Inventory",2011,"Not Reported",37,"Bärengraben","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26982,555512585,"CHE","National Inventory",2011,"Not Reported",37,"Chellenspitz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26983,555512586,"CHE","National Inventory",2011,"Not Reported",37,"Schochen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26984,555512587,"CHE","National Inventory",2011,"Not Reported",37,"Flisalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26985,555512588,"CHE","National Inventory",2011,"Not Reported",37,"La Crêta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26986,555512589,"CHE","National Inventory",2011,"Not Reported",37,"La Daille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26987,555512590,"CHE","National Inventory",2011,"Not Reported",37,"Erschmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26988,555512591,"CHE","National Inventory",2011,"Not Reported",37,"Milachra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26989,555512592,"CHE","National Inventory",2011,"Not Reported",37,"Warbfliewildi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26990,555512593,"CHE","National Inventory",2011,"Not Reported",37,"Undri Senggalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26991,555512594,"CHE","National Inventory",2011,"Not Reported",37,"Meigge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26992,555512595,"CHE","National Inventory",2011,"Not Reported",37,"Eggachra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26993,555512596,"CHE","National Inventory",2011,"Not Reported",37,"Ulrichen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26994,555512597,"CHE","National Inventory",2011,"Not Reported",37,"Gluringen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26995,555512598,"CHE","National Inventory",2011,"Not Reported",37,"Gerynloibina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26996,555512599,"CHE","National Inventory",2011,"Not Reported",37,"Chruiterre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26997,555512600,"CHE","National Inventory",2011,"Not Reported",37,"Riedhalte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26998,555512601,"CHE","National Inventory",2011,"Not Reported",37,"Turand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +26999,555512602,"CHE","National Inventory",2011,"Not Reported",37,"Rufinu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27000,555512603,"CHE","National Inventory",2011,"Not Reported",37,"Biela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27001,555512604,"CHE","National Inventory",2011,"Not Reported",37,"Sädol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27002,555512605,"CHE","National Inventory",2011,"Not Reported",37,"Gurru","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27003,555512606,"CHE","National Inventory",2011,"Not Reported",37,"Tännji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27004,555512607,"CHE","National Inventory",2011,"Not Reported",37,"Mettje","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27005,555512608,"CHE","National Inventory",2011,"Not Reported",37,"Chalchofe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27006,555512609,"CHE","National Inventory",2011,"Not Reported",37,"Blatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27007,555512610,"CHE","National Inventory",2011,"Not Reported",37,"Chleis Bärgji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27008,555512611,"CHE","National Inventory",2011,"Not Reported",37,"Lengmüra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27009,555512612,"CHE","National Inventory",2011,"Not Reported",37,"Chumma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27010,555512613,"CHE","National Inventory",2011,"Not Reported",37,"Giblatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27011,555512614,"CHE","National Inventory",2011,"Not Reported",37,"Stadelgufer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27012,555512615,"CHE","National Inventory",2011,"Not Reported",37,"Unneri Brich","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27013,555512616,"CHE","National Inventory",2011,"Not Reported",37,"Lipbode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27014,555512617,"CHE","National Inventory",2011,"Not Reported",37,"Ritsche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27015,555512618,"CHE","National Inventory",2011,"Not Reported",37,"Chrizhubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27016,555512619,"CHE","National Inventory",2011,"Not Reported",37,"Undri Bächi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27017,555512620,"CHE","National Inventory",2011,"Not Reported",37,"Zum Chriz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27018,555512621,"CHE","National Inventory",2011,"Not Reported",37,"Hochastler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27019,555512622,"CHE","National Inventory",2011,"Not Reported",37,"Windegge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27020,555512623,"CHE","National Inventory",2011,"Not Reported",37,"Obri Hellela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27021,555512624,"CHE","National Inventory",2011,"Not Reported",37,"Hasolfura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27022,555512625,"CHE","National Inventory",2011,"Not Reported",37,"Riedbode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27023,555512626,"CHE","National Inventory",2011,"Not Reported",37,"Widum","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27024,555512627,"CHE","National Inventory",2011,"Not Reported",37,"Kapittol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27025,555512628,"CHE","National Inventory",2011,"Not Reported",37,"Märufälli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27026,555512629,"CHE","National Inventory",2011,"Not Reported",37,"Ze Stubjine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27027,555512630,"CHE","National Inventory",2011,"Not Reported",37,"Chumme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27028,555512631,"CHE","National Inventory",2011,"Not Reported",37,"Ritzmad","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27029,555512632,"CHE","National Inventory",2011,"Not Reported",37,"Arbächnubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27030,555512633,"CHE","National Inventory",2011,"Not Reported",37,"Chumma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27031,555512634,"CHE","National Inventory",2011,"Not Reported",37,"Rämi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27032,555512635,"CHE","National Inventory",2011,"Not Reported",37,"Obri Matte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27033,555512636,"CHE","National Inventory",2011,"Not Reported",37,"Mattachra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27034,555512637,"CHE","National Inventory",2011,"Not Reported",37,"Leiggern","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27035,555512638,"CHE","National Inventory",2011,"Not Reported",37,"Obers Filet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27036,555512639,"CHE","National Inventory",2011,"Not Reported",37,"Vatseret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27037,555512640,"CHE","National Inventory",2011,"Not Reported",37,"Châteaunie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27038,555512641,"CHE","National Inventory",2011,"Not Reported",37,"Planitschat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27039,555512642,"CHE","National Inventory",2011,"Not Reported",37,"Pfarschong","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27040,555512643,"CHE","National Inventory",2011,"Not Reported",37,"Mondralèche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27041,555512644,"CHE","National Inventory",2011,"Not Reported",37,"Alpage des Génissons","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27042,555512645,"CHE","National Inventory",2011,"Not Reported",37,"Trämel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27043,555512646,"CHE","National Inventory",2011,"Not Reported",37,"Hori","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27044,555512647,"CHE","National Inventory",2011,"Not Reported",37,"La Comalire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27045,555512648,"CHE","National Inventory",2011,"Not Reported",37,"Les Caves","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27046,555512649,"CHE","National Inventory",2011,"Not Reported",37,"Groggrü","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27047,555512650,"CHE","National Inventory",2011,"Not Reported",37,"Biela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27048,555512651,"CHE","National Inventory",2011,"Not Reported",37,"Russubrunnu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27049,555512652,"CHE","National Inventory",2011,"Not Reported",37,"Le Samarin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27050,555512653,"CHE","National Inventory",2011,"Not Reported",37,"Tschanderünu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27051,555512654,"CHE","National Inventory",2011,"Not Reported",37,"Ravouire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27052,555512655,"CHE","National Inventory",2011,"Not Reported",37,"Chalais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27053,555512656,"CHE","National Inventory",2011,"Not Reported",37,"Crête Longue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27054,555512657,"CHE","National Inventory",2011,"Not Reported",37,"Granges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27055,555512658,"CHE","National Inventory",2011,"Not Reported",37,"Chelin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27056,555512659,"CHE","National Inventory",2011,"Not Reported",37,"Crête Longue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27057,555512660,"CHE","National Inventory",2011,"Not Reported",37,"Cochetta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27058,555512661,"CHE","National Inventory",2011,"Not Reported",37,"Chât. de la Soie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27059,555512662,"CHE","National Inventory",2011,"Not Reported",37,"Tourbillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27060,555512663,"CHE","National Inventory",2011,"Not Reported",37,"Pramilon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27061,555512664,"CHE","National Inventory",2011,"Not Reported",37,"Mont d'Orge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27062,555512665,"CHE","National Inventory",2011,"Not Reported",37,"Saut du Chien","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27063,555512666,"CHE","National Inventory",2011,"Not Reported",37,"Plan des Biolles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27064,555512667,"CHE","National Inventory",2011,"Not Reported",37,"Les Crêtes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27065,555512668,"CHE","National Inventory",2011,"Not Reported",37,"Häüschbiele","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27066,555512669,"CHE","National Inventory",2011,"Not Reported",37,"Les Bioleys","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27067,555512670,"CHE","National Inventory",2011,"Not Reported",37,"Undri Läger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27068,555512671,"CHE","National Inventory",2011,"Not Reported",37,"Siwibode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27069,555512672,"CHE","National Inventory",2011,"Not Reported",37,"Chalchofe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27070,555512673,"CHE","National Inventory",2011,"Not Reported",37,"Mayens de Cotter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27071,555512674,"CHE","National Inventory",2011,"Not Reported",37,"Gufer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27072,555512675,"CHE","National Inventory",2011,"Not Reported",37,"Stn. Hannig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27073,555512676,"CHE","National Inventory",2011,"Not Reported",37,"Les Lachiores","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27074,555512677,"CHE","National Inventory",2011,"Not Reported",37,"Berter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27075,555512678,"CHE","National Inventory",2011,"Not Reported",37,"Le Tsaté","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27076,555512679,"CHE","National Inventory",2011,"Not Reported",37,"Motau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27077,555512680,"CHE","National Inventory",2011,"Not Reported",37,"Bréona","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27078,555512681,"CHE","National Inventory",2011,"Not Reported",37,"Bréona","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27079,555512682,"CHE","National Inventory",2011,"Not Reported",37,"Les Lattes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27080,555512683,"CHE","National Inventory",2011,"Not Reported",37,"Mittelzug","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27081,555512684,"CHE","National Inventory",2011,"Not Reported",37,"Tschampenmatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27082,555512685,"CHE","National Inventory",2011,"Not Reported",37,"Obers Nussböüm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27083,555512686,"CHE","National Inventory",2011,"Not Reported",37,"Egga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27084,555512687,"CHE","National Inventory",2011,"Not Reported",37,"Bisterli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27085,555512688,"CHE","National Inventory",2011,"Not Reported",37,"Wyde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27086,555512689,"CHE","National Inventory",2011,"Not Reported",37,"Salzgäbchnubel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27087,555512690,"CHE","National Inventory",2011,"Not Reported",37,"Fure","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27088,555512691,"CHE","National Inventory",2011,"Not Reported",37,"Wasen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27089,555512692,"CHE","National Inventory",2011,"Not Reported",37,"Massegga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27090,555512693,"CHE","National Inventory",2011,"Not Reported",37,"Im undere Schitter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27091,555512694,"CHE","National Inventory",2011,"Not Reported",37,"Baletscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27092,555512695,"CHE","National Inventory",2011,"Not Reported",37,"Walau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27093,555512696,"CHE","National Inventory",2011,"Not Reported",37,"Oberbann","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27094,555512697,"CHE","National Inventory",2011,"Not Reported",37,"Varen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27095,555512698,"CHE","National Inventory",2011,"Not Reported",37,"Tschachtela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27096,555512699,"CHE","National Inventory",2011,"Not Reported",37,"Obloch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27097,555512700,"CHE","National Inventory",2011,"Not Reported",37,"Balme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27098,555512701,"CHE","National Inventory",2011,"Not Reported",37,"Hubil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27099,555512702,"CHE","National Inventory",2011,"Not Reported",37,"Dorbon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27100,555512703,"CHE","National Inventory",2011,"Not Reported",37,"Darnona d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27101,555512704,"CHE","National Inventory",2011,"Not Reported",37,"Milljere","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27102,555512705,"CHE","National Inventory",2011,"Not Reported",37,"Seillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27103,555512706,"CHE","National Inventory",2011,"Not Reported",37,"Les Condémines","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27104,555512707,"CHE","National Inventory",2011,"Not Reported",37,"Rnes du Chât. d'Ayent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27105,555512708,"CHE","National Inventory",2011,"Not Reported",37,"Ste-Madeleine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27106,555512709,"CHE","National Inventory",2011,"Not Reported",37,"Stadtner Lüsis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27107,555512710,"CHE","National Inventory",2011,"Not Reported",37,"Argnoud d'en Haut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27108,555512711,"CHE","National Inventory",2011,"Not Reported",37,"Hannig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27109,555512712,"CHE","National Inventory",2011,"Not Reported",37,"Bode","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27110,555512713,"CHE","National Inventory",2011,"Not Reported",37,"Site","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27111,555512714,"CHE","National Inventory",2011,"Not Reported",37,"Grand'Fin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27112,555512715,"CHE","National Inventory",2011,"Not Reported",37,"Bina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27113,555512716,"CHE","National Inventory",2011,"Not Reported",37,"Oberi Site","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27114,555512717,"CHE","National Inventory",2011,"Not Reported",37,"Burgachra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27115,555512718,"CHE","National Inventory",2011,"Not Reported",37,"Breitplangg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27116,555512719,"CHE","National Inventory",2011,"Not Reported",37,"Hofmatte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27117,555512720,"CHE","National Inventory",2011,"Not Reported",37,"Coma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27118,555512721,"CHE","National Inventory",2011,"Not Reported",37,"Wäng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27119,555512722,"CHE","National Inventory",2011,"Not Reported",37,"Schüfla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27120,555512723,"CHE","National Inventory",2011,"Not Reported",37,"Roti Flüe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27121,555512724,"CHE","National Inventory",2011,"Not Reported",37,"Bärgji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27122,555512725,"CHE","National Inventory",2011,"Not Reported",37,"Ze Zimmeru","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27123,555512726,"CHE","National Inventory",2011,"Not Reported",37,"La Pirra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27124,555512727,"CHE","National Inventory",2011,"Not Reported",37,"Le Bioley","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27125,555512728,"CHE","National Inventory",2011,"Not Reported",37,"Chegelplatz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27126,555512729,"CHE","National Inventory",2011,"Not Reported",37,"Riedwäng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27127,555512730,"CHE","National Inventory",2011,"Not Reported",37,"Falggelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27128,555512731,"CHE","National Inventory",2011,"Not Reported",37,"La Crêta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27129,555512732,"CHE","National Inventory",2011,"Not Reported",37,"Hannig","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27130,555512733,"CHE","National Inventory",2011,"Not Reported",37,"Volovron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27131,555512734,"CHE","National Inventory",2011,"Not Reported",37,"Les Flanmayens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27132,555512735,"CHE","National Inventory",2011,"Not Reported",37,"Les Crouyes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27133,555512736,"CHE","National Inventory",2011,"Not Reported",37,"La Niva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27134,555512737,"CHE","National Inventory",2011,"Not Reported",37,"La Giette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27135,555512738,"CHE","National Inventory",2011,"Not Reported",37,"Les Chottes de l'Etoile","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27136,555512739,"CHE","National Inventory",2011,"Not Reported",37,"Les Haudères","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27137,555512740,"CHE","National Inventory",2011,"Not Reported",37,"Les Saulesses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27138,555512741,"CHE","National Inventory",2011,"Not Reported",37,"Le Légeret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27139,555512742,"CHE","National Inventory",2011,"Not Reported",37,"Zermettjen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27140,555512743,"CHE","National Inventory",2011,"Not Reported",37,"Wang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27141,555512744,"CHE","National Inventory",2011,"Not Reported",37,"Rosswang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27142,555512745,"CHE","National Inventory",2011,"Not Reported",37,"Furggegga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27143,555512746,"CHE","National Inventory",2011,"Not Reported",37,"Hermetje","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27144,555512747,"CHE","National Inventory",2011,"Not Reported",37,"Longeraie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27145,555512748,"CHE","National Inventory",2011,"Not Reported",37,"Corbassières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27146,555512749,"CHE","National Inventory",2011,"Not Reported",37,"Longeraie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27147,555512750,"CHE","National Inventory",2011,"Not Reported",37,"La Ravoire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27148,555512751,"CHE","National Inventory",2011,"Not Reported",37,"La Theuse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27149,555512752,"CHE","National Inventory",2011,"Not Reported",37,"Les Combes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27150,555512753,"CHE","National Inventory",2011,"Not Reported",37,"La Ravoire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27151,555512754,"CHE","National Inventory",2011,"Not Reported",37,"Altes Hospiz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27152,555512755,"CHE","National Inventory",2011,"Not Reported",37,"Saillon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27153,555512756,"CHE","National Inventory",2011,"Not Reported",37,"Longeraie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27154,555512757,"CHE","National Inventory",2011,"Not Reported",37,"Le Vernet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27155,555512758,"CHE","National Inventory",2011,"Not Reported",37,"Cheller","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27156,555512759,"CHE","National Inventory",2011,"Not Reported",37,"Bord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27157,555512760,"CHE","National Inventory",2011,"Not Reported",37,"Le Four","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27158,555512761,"CHE","National Inventory",2011,"Not Reported",37,"Chrizstafel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27159,555512762,"CHE","National Inventory",2011,"Not Reported",37,"Pirra de Ban","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27160,555512763,"CHE","National Inventory",2011,"Not Reported",37,"Dorbu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27161,555512764,"CHE","National Inventory",2011,"Not Reported",37,"Plan de l'Ortie","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27162,555512765,"CHE","National Inventory",2011,"Not Reported",37,"Isérables","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27163,555512766,"CHE","National Inventory",2011,"Not Reported",37,"Oberdeisch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27164,555512767,"CHE","National Inventory",2011,"Not Reported",37,"Montbas Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27165,555512768,"CHE","National Inventory",2011,"Not Reported",37,"Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27166,555512769,"CHE","National Inventory",2011,"Not Reported",37,"Engi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27167,555512770,"CHE","National Inventory",2011,"Not Reported",37,"Oberwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27168,555512771,"CHE","National Inventory",2011,"Not Reported",37,"Obri Eist","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27169,555512772,"CHE","National Inventory",2011,"Not Reported",37,"Villette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27170,555512773,"CHE","National Inventory",2011,"Not Reported",37,"Mittleri Hellela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27171,555512774,"CHE","National Inventory",2011,"Not Reported",37,"Sous Roux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27172,555512775,"CHE","National Inventory",2011,"Not Reported",37,"Wasserfallen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27173,555512776,"CHE","National Inventory",2011,"Not Reported",37,"Faldumalp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27174,555512777,"CHE","National Inventory",2011,"Not Reported",37,"Sengg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27175,555512778,"CHE","National Inventory",2011,"Not Reported",37,"Tignousa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27176,555512779,"CHE","National Inventory",2011,"Not Reported",37,"Rne du Chât. du Crest","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27177,555512780,"CHE","National Inventory",2011,"Not Reported",37,"Pâturage de Chanso","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27178,555512781,"CHE","National Inventory",2011,"Not Reported",37,"Alti Gadme","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27179,555512782,"CHE","National Inventory",2011,"Not Reported",37,"Les Salaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27180,555512783,"CHE","National Inventory",2011,"Not Reported",37,"Chanton de Reppaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27181,555512784,"CHE","National Inventory",2011,"Not Reported",37,"Trionna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27182,555512785,"CHE","National Inventory",2011,"Not Reported",37,"Hegi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27183,555512786,"CHE","National Inventory",2011,"Not Reported",37,"Montbas Dessus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27184,555512787,"CHE","National Inventory",2011,"Not Reported",37,"Wyssus Löüb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27185,555512788,"CHE","National Inventory",2011,"Not Reported",37,"L'Infloria","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27186,555512789,"CHE","National Inventory",2011,"Not Reported",37,"Sex de Gru","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27187,555512790,"CHE","National Inventory",2011,"Not Reported",37,"Grund","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27188,555512791,"CHE","National Inventory",2011,"Not Reported",37,"Le Châtelard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27189,555512792,"CHE","National Inventory",2011,"Not Reported",37,"Combère","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27190,555512793,"CHE","National Inventory",2011,"Not Reported",37,"Ritti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27191,555512794,"CHE","National Inventory",2011,"Not Reported",37,"Alamont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27192,555512795,"CHE","National Inventory",2011,"Not Reported",37,"Oberu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27193,555512796,"CHE","National Inventory",2011,"Not Reported",37,"Meiggera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27194,555512797,"CHE","National Inventory",2011,"Not Reported",37,"Le Nez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27195,555512798,"CHE","National Inventory",2011,"Not Reported",37,"Pfaffmatte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27196,555512799,"CHE","National Inventory",2011,"Not Reported",37,"Sämsu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27197,555512800,"CHE","National Inventory",2011,"Not Reported",37,"Pro Paron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27198,555512801,"CHE","National Inventory",2011,"Not Reported",37,"Guggina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27199,555512802,"CHE","National Inventory",2011,"Not Reported",37,"Les Cleives","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27200,555512803,"CHE","National Inventory",2011,"Not Reported",37,"Fiou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27201,555512804,"CHE","National Inventory",2011,"Not Reported",37,"Les Troncs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27202,555512805,"CHE","National Inventory",2011,"Not Reported",37,"Lousine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27203,555512806,"CHE","National Inventory",2011,"Not Reported",37,"Les Cadraux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27204,555512807,"CHE","National Inventory",2011,"Not Reported",37,"L'Aiguille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27205,555512808,"CHE","National Inventory",2011,"Not Reported",37,"Buitonnaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27206,555512809,"CHE","National Inventory",2011,"Not Reported",37,"Hubelti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27207,555512810,"CHE","National Inventory",2011,"Not Reported",37,"Le Teret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27208,555512811,"CHE","National Inventory",2011,"Not Reported",37,"Chamosentze","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27209,555512812,"CHE","National Inventory",2011,"Not Reported",37,"Hobiel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27210,555512813,"CHE","National Inventory",2011,"Not Reported",37,"Mayens de Pinsec","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27211,555512814,"CHE","National Inventory",2011,"Not Reported",37,"Prassurny","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27212,555512815,"CHE","National Inventory",2011,"Not Reported",37,"Erli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27213,555512816,"CHE","National Inventory",2011,"Not Reported",37,"Chamoille d'Orsières","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27214,555512817,"CHE","National Inventory",2011,"Not Reported",37,"Sal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27215,555512818,"CHE","National Inventory",2011,"Not Reported",37,"Heji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27216,555512819,"CHE","National Inventory",2011,"Not Reported",37,"Cleusette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27217,555512820,"CHE","National Inventory",2011,"Not Reported",37,"Les Fourches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27218,555512821,"CHE","National Inventory",2011,"Not Reported",37,"Les Foillêts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27219,555512822,"CHE","National Inventory",2011,"Not Reported",37,"Lirschigrabu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27220,555512823,"CHE","National Inventory",2011,"Not Reported",37,"Balma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27221,555512824,"CHE","National Inventory",2011,"Not Reported",37,"Les Creux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27222,555512825,"CHE","National Inventory",2011,"Not Reported",37,"Les Vernasses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27223,555512826,"CHE","National Inventory",2011,"Not Reported",37,"Champlong","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27224,555512827,"CHE","National Inventory",2011,"Not Reported",37,"Holzerehischer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27225,555512828,"CHE","National Inventory",2011,"Not Reported",37,"Unnerfäld","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27226,555512829,"CHE","National Inventory",2011,"Not Reported",37,"Wäng","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27227,555512830,"CHE","National Inventory",2011,"Not Reported",37,"Les Planches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27228,555512831,"CHE","National Inventory",2011,"Not Reported",37,"Binnegga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27229,555512832,"CHE","National Inventory",2011,"Not Reported",37,"Commeire","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27230,555512833,"CHE","National Inventory",2011,"Not Reported",37,"Randonne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27231,555512834,"CHE","National Inventory",2011,"Not Reported",37,"Chälmatta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27232,555512835,"CHE","National Inventory",2011,"Not Reported",37,"Haselleen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27233,555512836,"CHE","National Inventory",2011,"Not Reported",37,"Et. Lombardon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27234,555512837,"CHE","National Inventory",2011,"Not Reported",37,"Sur le Mont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27235,555512838,"CHE","National Inventory",2011,"Not Reported",37,"Genièvre","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27236,555512839,"CHE","National Inventory",2011,"Not Reported",37,"Les Planches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27237,555512840,"CHE","National Inventory",2011,"Not Reported",37,"Schwenni","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27238,555512841,"CHE","National Inventory",2011,"Not Reported",37,"Châtelard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27239,555512842,"CHE","National Inventory",2011,"Not Reported",37,"Neuau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27240,555512843,"CHE","National Inventory",2011,"Not Reported",37,"Les Evouettes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27241,555512844,"CHE","National Inventory",2011,"Not Reported",37,"Hanschbiel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27242,555512845,"CHE","National Inventory",2011,"Not Reported",37,"Chatzhalte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27243,555512846,"CHE","National Inventory",2011,"Not Reported",37,"Ponchet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27244,555512847,"CHE","National Inventory",2011,"Not Reported",37,"Tsanfleuron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27245,555512848,"CHE","National Inventory",2011,"Not Reported",37,"La Crêta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27246,555512849,"CHE","National Inventory",2011,"Not Reported",37,"Niesch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27247,555512850,"CHE","National Inventory",2011,"Not Reported",37,"Levron","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27248,555512851,"CHE","National Inventory",2011,"Not Reported",37,"Rappe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27249,555512852,"CHE","National Inventory",2011,"Not Reported",37,"Fracette","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27250,555512853,"CHE","National Inventory",2011,"Not Reported",37,"Cheseule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27251,555512854,"CHE","National Inventory",2011,"Not Reported",37,"Les Planches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27252,555512855,"CHE","National Inventory",2011,"Not Reported",37,"La Couronne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27253,555512856,"CHE","National Inventory",2011,"Not Reported",37,"Les Follatères","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27254,555512857,"CHE","National Inventory",2011,"Not Reported",37,"Biolly","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27255,555512858,"CHE","National Inventory",2011,"Not Reported",37,"Planches de Mazembroz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27256,555512859,"CHE","National Inventory",2011,"Not Reported",37,"Le Tieudray","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27257,555512860,"CHE","National Inventory",2011,"Not Reported",37,"Les Pontis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27258,555512861,"CHE","National Inventory",2011,"Not Reported",37,"Les Clèves","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27259,555512862,"CHE","National Inventory",2011,"Not Reported",37,"Le Poyou","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27260,555512863,"CHE","National Inventory",2011,"Not Reported",37,"Charmex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27261,555512864,"CHE","National Inventory",2011,"Not Reported",37,"Plex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27262,555512865,"CHE","National Inventory",2011,"Not Reported",37,"Les Barmes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27263,555512866,"CHE","National Inventory",2011,"Not Reported",37,"Mayen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27264,555512867,"CHE","National Inventory",2011,"Not Reported",37,"Ayer","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27265,555512868,"CHE","National Inventory",2011,"Not Reported",37,"Palasuit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27266,555512869,"CHE","National Inventory",2011,"Not Reported",37,"La Gîte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27267,555512870,"CHE","National Inventory",2011,"Not Reported",37,"Pont de Tsarevesse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27268,555512871,"CHE","National Inventory",2011,"Not Reported",37,"Rüfenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27269,555512872,"CHE","National Inventory",2011,"Not Reported",37,"Saxé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27270,555512873,"CHE","National Inventory",2011,"Not Reported",37,"Creux Devant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27271,555512874,"CHE","National Inventory",2011,"Not Reported",37,"St-Maurice","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27272,555512875,"CHE","National Inventory",2011,"Not Reported",37,"Ormeaux","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27273,555512876,"CHE","National Inventory",2011,"Not Reported",37,"Usser Gornerli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27274,555512877,"CHE","National Inventory",2011,"Not Reported",37,"Liggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27275,555512878,"CHE","National Inventory",2011,"Not Reported",37,"Sex Riond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27276,555512879,"CHE","National Inventory",2011,"Not Reported",37,"Pas de Braye","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27277,555512880,"CHE","National Inventory",2011,"Not Reported",37,"Schipfe","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27278,555512881,"CHE","National Inventory",2011,"Not Reported",37,"Lovenex","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27279,555512882,"CHE","National Inventory",2011,"Not Reported",37,"Flesche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27280,555512883,"CHE","National Inventory",2011,"Not Reported",37,"Gappil","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27281,555512884,"CHE","National Inventory",2011,"Not Reported",37,"Les Planches","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27282,555512885,"CHE","National Inventory",2011,"Not Reported",37,"Blagghalde","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27283,555512886,"CHE","National Inventory",2011,"Not Reported",37,"Usser Gornerli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27284,555512887,"CHE","National Inventory",2011,"Not Reported",37,"Küeschtewasen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27285,555512888,"CHE","National Inventory",2011,"Not Reported",37,"Vordere Better","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27286,555512889,"CHE","National Inventory",2011,"Not Reported",37,"Better","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27287,555512890,"CHE","National Inventory",2011,"Not Reported",37,"Eidenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27288,555512891,"CHE","National Inventory",2011,"Not Reported",37,"Stauberenfirst","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27289,555512892,"CHE","National Inventory",2011,"Not Reported",37,"Stelli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27290,555512893,"CHE","National Inventory",2011,"Not Reported",37,"Stoss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27291,555512894,"CHE","National Inventory",2011,"Not Reported",37,"Saxer Heuberge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27292,555512895,"CHE","National Inventory",2011,"Not Reported",37,"Sonnenbüchel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27293,555512896,"CHE","National Inventory",2011,"Not Reported",37,"Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27294,555512897,"CHE","National Inventory",2011,"Not Reported",37,"Bergheim","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27295,555512898,"CHE","National Inventory",2011,"Not Reported",37,"Bovel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27296,555512899,"CHE","National Inventory",2011,"Not Reported",37,"Magutters","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27297,555512900,"CHE","National Inventory",2011,"Not Reported",37,"Hof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27298,555512901,"CHE","National Inventory",2011,"Not Reported",37,"Fuchsenwinkel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27299,555512902,"CHE","National Inventory",2011,"Not Reported",37,"Heidihof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27300,555512903,"CHE","National Inventory",2011,"Not Reported",37,"Böden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27301,555512904,"CHE","National Inventory",2011,"Not Reported",37,"Bofel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27302,555512905,"CHE","National Inventory",2011,"Not Reported",37,"Wineggrüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27303,555512906,"CHE","National Inventory",2011,"Not Reported",37,"Ruchenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27304,555512907,"CHE","National Inventory",2011,"Not Reported",37,"Ruchenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27305,555512908,"CHE","National Inventory",2011,"Not Reported",37,"Rohan-Schanze","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27306,555512909,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Wals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27307,555512910,"CHE","National Inventory",2011,"Not Reported",37,"Frettis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27308,555512911,"CHE","National Inventory",2011,"Not Reported",37,"Prafieb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27309,555512912,"CHE","National Inventory",2011,"Not Reported",37,"Gissübel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27310,555512913,"CHE","National Inventory",2011,"Not Reported",37,"Unter Vajuoza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27311,555512914,"CHE","National Inventory",2011,"Not Reported",37,"Alplichopf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27312,555512915,"CHE","National Inventory",2011,"Not Reported",37,"Jerätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27313,555512916,"CHE","National Inventory",2011,"Not Reported",37,"Frättis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27314,555512917,"CHE","National Inventory",2011,"Not Reported",37,"Löser","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27315,555512918,"CHE","National Inventory",2011,"Not Reported",37,"Mateilis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27316,555512919,"CHE","National Inventory",2011,"Not Reported",37,"Padnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27317,555512920,"CHE","National Inventory",2011,"Not Reported",37,"Pradardua","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27318,555512921,"CHE","National Inventory",2011,"Not Reported",37,"Untervaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27319,555512922,"CHE","National Inventory",2011,"Not Reported",37,"Michelis Bünten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27320,555512923,"CHE","National Inventory",2011,"Not Reported",37,"Parvaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27321,555512924,"CHE","National Inventory",2011,"Not Reported",37,"Vorholz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27322,555512925,"CHE","National Inventory",2011,"Not Reported",37,"Scalaripp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27323,555512926,"CHE","National Inventory",2011,"Not Reported",37,"Witenen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27324,555512927,"CHE","National Inventory",2011,"Not Reported",37,"Schwanten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27325,555512928,"CHE","National Inventory",2011,"Not Reported",37,"Böfel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27326,555512929,"CHE","National Inventory",2011,"Not Reported",37,"Unter Kunkels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27327,555512930,"CHE","National Inventory",2011,"Not Reported",37,"Ober Kunkels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27328,555512931,"CHE","National Inventory",2011,"Not Reported",37,"Lärchen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27329,555512932,"CHE","National Inventory",2011,"Not Reported",37,"Parfuoss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27330,555512933,"CHE","National Inventory",2011,"Not Reported",37,"Dürrboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27331,555512934,"CHE","National Inventory",2011,"Not Reported",37,"Unter Fopp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27332,555512935,"CHE","National Inventory",2011,"Not Reported",37,"Ober Kunkels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27333,555512936,"CHE","National Inventory",2011,"Not Reported",37,"Ruestelplangg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27334,555512937,"CHE","National Inventory",2011,"Not Reported",37,"Lusbühel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27335,555512938,"CHE","National Inventory",2011,"Not Reported",37,"Mataun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27336,555512939,"CHE","National Inventory",2011,"Not Reported",37,"Girsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27337,555512940,"CHE","National Inventory",2011,"Not Reported",37,"Runggaleida","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27338,555512941,"CHE","National Inventory",2011,"Not Reported",37,"Laschein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27339,555512942,"CHE","National Inventory",2011,"Not Reported",37,"Muris Halden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27340,555512943,"CHE","National Inventory",2011,"Not Reported",37,"Munt Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27341,555512944,"CHE","National Inventory",2011,"Not Reported",37,"Monhämmerli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27342,555512945,"CHE","National Inventory",2011,"Not Reported",37,"Laubegg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27343,555512946,"CHE","National Inventory",2011,"Not Reported",37,"Tignuppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27344,555512947,"CHE","National Inventory",2011,"Not Reported",37,"Schlag","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27345,555512948,"CHE","National Inventory",2011,"Not Reported",37,"Fatschis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27346,555512949,"CHE","National Inventory",2011,"Not Reported",37,"Pruls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27347,555512950,"CHE","National Inventory",2011,"Not Reported",37,"Proclis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27348,555512951,"CHE","National Inventory",2011,"Not Reported",37,"Garadur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27349,555512952,"CHE","National Inventory",2011,"Not Reported",37,"Tuma da Zislis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27350,555512953,"CHE","National Inventory",2011,"Not Reported",37,"Plez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27351,555512954,"CHE","National Inventory",2011,"Not Reported",37,"Giufs/ Juchs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27352,555512955,"CHE","National Inventory",2011,"Not Reported",37,"Hoch Chapf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27353,555512956,"CHE","National Inventory",2011,"Not Reported",37,"Gurgs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27354,555512957,"CHE","National Inventory",2011,"Not Reported",37,"Bot Danisch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27355,555512958,"CHE","National Inventory",2011,"Not Reported",37,"Tadi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27356,555512959,"CHE","National Inventory",2011,"Not Reported",37,"Tadi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27357,555512960,"CHE","National Inventory",2011,"Not Reported",37,"Caumas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27358,555512961,"CHE","National Inventory",2011,"Not Reported",37,"Bodmen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27359,555512962,"CHE","National Inventory",2011,"Not Reported",37,"Tuals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27360,555512963,"CHE","National Inventory",2011,"Not Reported",37,"Alp Raguta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27361,555512964,"CHE","National Inventory",2011,"Not Reported",37,"Runcalatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27362,555512965,"CHE","National Inventory",2011,"Not Reported",37,"Tit","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27363,555512966,"CHE","National Inventory",2011,"Not Reported",37,"Plaun digls-Mats","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27364,555512967,"CHE","National Inventory",2011,"Not Reported",37,"Pandatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27365,555512968,"CHE","National Inventory",2011,"Not Reported",37,"Grossweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27366,555512969,"CHE","National Inventory",2011,"Not Reported",37,"Tarmuz Ault","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27367,555512970,"CHE","National Inventory",2011,"Not Reported",37,"Bles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27368,555512971,"CHE","National Inventory",2011,"Not Reported",37,"Fontaunas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27369,555512972,"CHE","National Inventory",2011,"Not Reported",37,"Ginedas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27370,555512973,"CHE","National Inventory",2011,"Not Reported",37,"Purz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27371,555512974,"CHE","National Inventory",2011,"Not Reported",37,"Vals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27372,555512975,"CHE","National Inventory",2011,"Not Reported",37,"Hofen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27373,555512976,"CHE","National Inventory",2011,"Not Reported",37,"Pischleras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27374,555512977,"CHE","National Inventory",2011,"Not Reported",37,"Laschignas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27375,555512978,"CHE","National Inventory",2011,"Not Reported",37,"Gitei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27376,555512979,"CHE","National Inventory",2011,"Not Reported",37,"Bärenlöcher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27377,555512980,"CHE","National Inventory",2011,"Not Reported",37,"Mulegns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27378,555512981,"CHE","National Inventory",2011,"Not Reported",37,"Dutg da Fontanius","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27379,555512982,"CHE","National Inventory",2011,"Not Reported",37,"Meunt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27380,555512983,"CHE","National Inventory",2011,"Not Reported",37,"Suulöcher","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27381,555512984,"CHE","National Inventory",2011,"Not Reported",37,"Sogn Luregn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27382,555512985,"CHE","National Inventory",2011,"Not Reported",37,"Rüssel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27383,555512986,"CHE","National Inventory",2011,"Not Reported",37,"Dusch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27384,555512987,"CHE","National Inventory",2011,"Not Reported",37,"Bargia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27385,555512988,"CHE","National Inventory",2011,"Not Reported",37,"Schins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27386,555512989,"CHE","National Inventory",2011,"Not Reported",37,"Pardisla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27387,555512990,"CHE","National Inventory",2011,"Not Reported",37,"Cresta Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27388,555512991,"CHE","National Inventory",2011,"Not Reported",37,"Quadra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27389,555512992,"CHE","National Inventory",2011,"Not Reported",37,"Schall Grond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27390,555512993,"CHE","National Inventory",2011,"Not Reported",37,"Luvreu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27391,555512994,"CHE","National Inventory",2011,"Not Reported",37,"Schall Pign","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27392,555512995,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Rheinau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27393,555512996,"CHE","National Inventory",2011,"Not Reported",37,"Culm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27394,555512997,"CHE","National Inventory",2011,"Not Reported",37,"Auareda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27395,555512998,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Alberwald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27396,555512999,"CHE","National Inventory",2011,"Not Reported",37,"Talegnas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27397,555513000,"CHE","National Inventory",2011,"Not Reported",37,"Carvenna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27398,555513001,"CHE","National Inventory",2011,"Not Reported",37,"Rheindamm Melser Au","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27399,555513002,"CHE","National Inventory",2011,"Not Reported",37,"Scharans","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27400,555513003,"CHE","National Inventory",2011,"Not Reported",37,"Terziel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27401,555513004,"CHE","National Inventory",2011,"Not Reported",37,"Planggi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27402,555513005,"CHE","National Inventory",2011,"Not Reported",37,"Crap la Massa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27403,555513006,"CHE","National Inventory",2011,"Not Reported",37,"Duven","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27404,555513007,"CHE","National Inventory",2011,"Not Reported",37,"St. Agata","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27405,555513008,"CHE","National Inventory",2011,"Not Reported",37,"Schauenstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27406,555513009,"CHE","National Inventory",2011,"Not Reported",37,"Schauenstein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27407,555513010,"CHE","National Inventory",2011,"Not Reported",37,"Prodavos Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27408,555513011,"CHE","National Inventory",2011,"Not Reported",37,"Schären","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27409,555513012,"CHE","National Inventory",2011,"Not Reported",37,"Prin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27410,555513013,"CHE","National Inventory",2011,"Not Reported",37,"Bostg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27411,555513014,"CHE","National Inventory",2011,"Not Reported",37,"Tuliu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27412,555513015,"CHE","National Inventory",2011,"Not Reported",37,"Flantuosch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27413,555513016,"CHE","National Inventory",2011,"Not Reported",37,"Mangur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27414,555513017,"CHE","National Inventory",2011,"Not Reported",37,"Gravas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27415,555513018,"CHE","National Inventory",2011,"Not Reported",37,"Plaun Rensch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27416,555513019,"CHE","National Inventory",2011,"Not Reported",37,"Prauet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27417,555513020,"CHE","National Inventory",2011,"Not Reported",37,"Balegna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27418,555513021,"CHE","National Inventory",2011,"Not Reported",37,"Fanels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27419,555513022,"CHE","National Inventory",2011,"Not Reported",37,"Sut Crestas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27420,555513023,"CHE","National Inventory",2011,"Not Reported",37,"Sursassa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27421,555513024,"CHE","National Inventory",2011,"Not Reported",37,"Doss Daint","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27422,555513025,"CHE","National Inventory",2011,"Not Reported",37,"Scurtaseu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27423,555513026,"CHE","National Inventory",2011,"Not Reported",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27424,555513027,"CHE","National Inventory",2011,"Not Reported",37,"Muschgel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27425,555513028,"CHE","National Inventory",2011,"Not Reported",37,"Ried","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27426,555513029,"CHE","National Inventory",2011,"Not Reported",37,"Muschgel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27427,555513030,"CHE","National Inventory",2011,"Not Reported",37,"Unterberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27428,555513031,"CHE","National Inventory",2011,"Not Reported",37,"Tarnatler-Boden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27429,555513032,"CHE","National Inventory",2011,"Not Reported",37,"Plaunca-Rudera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27430,555513033,"CHE","National Inventory",2011,"Not Reported",37,"Er Davos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27431,555513034,"CHE","National Inventory",2011,"Not Reported",37,"Bregl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27432,555513035,"CHE","National Inventory",2011,"Not Reported",37,"Quadras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27433,555513036,"CHE","National Inventory",2011,"Not Reported",37,"Darpinaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27434,555513037,"CHE","National Inventory",2011,"Not Reported",37,"Peiden Boger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27435,555513038,"CHE","National Inventory",2011,"Not Reported",37,"Murtès","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27436,555513039,"CHE","National Inventory",2011,"Not Reported",37,"Muletg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27437,555513040,"CHE","National Inventory",2011,"Not Reported",37,"Genastga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27438,555513041,"CHE","National Inventory",2011,"Not Reported",37,"Palorgna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27439,555513042,"CHE","National Inventory",2011,"Not Reported",37,"Chischagel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27440,555513043,"CHE","National Inventory",2011,"Not Reported",37,"Genastga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27441,555513044,"CHE","National Inventory",2011,"Not Reported",37,"Planezzas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27442,555513045,"CHE","National Inventory",2011,"Not Reported",37,"Seglias","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27443,555513046,"CHE","National Inventory",2011,"Not Reported",37,"Prau da Cuolm","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27444,555513047,"CHE","National Inventory",2011,"Not Reported",37,"Schmitten","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27445,555513048,"CHE","National Inventory",2011,"Not Reported",37,"Waldmatte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27446,555513049,"CHE","National Inventory",2011,"Not Reported",37,"Tristel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27447,555513050,"CHE","National Inventory",2011,"Not Reported",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27448,555513051,"CHE","National Inventory",2011,"Not Reported",37,"Valbella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27449,555513052,"CHE","National Inventory",2011,"Not Reported",37,"Ri Dedent","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27450,555513053,"CHE","National Inventory",2011,"Not Reported",37,"Cavaionc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27451,555513054,"CHE","National Inventory",2011,"Not Reported",37,"Mondan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27452,555513055,"CHE","National Inventory",2011,"Not Reported",37,"Strec","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27453,555513056,"CHE","National Inventory",2011,"Not Reported",37,"Miaddi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27454,555513057,"CHE","National Inventory",2011,"Not Reported",37,"Cant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27455,555513058,"CHE","National Inventory",2011,"Not Reported",37,"Scalader","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27456,555513059,"CHE","National Inventory",2011,"Not Reported",37,"Fontana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27457,555513060,"CHE","National Inventory",2011,"Not Reported",37,"Stabiüch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27458,555513061,"CHE","National Inventory",2011,"Not Reported",37,"Giova","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27459,555513062,"CHE","National Inventory",2011,"Not Reported",37,"Eilisch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27460,555513063,"CHE","National Inventory",2011,"Not Reported",37,"Cunggel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27461,555513064,"CHE","National Inventory",2011,"Not Reported",37,"Cunggel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27462,555513065,"CHE","National Inventory",2011,"Not Reported",37,"Arabühel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27463,555513066,"CHE","National Inventory",2011,"Not Reported",37,"Los","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27464,555513067,"CHE","National Inventory",2011,"Not Reported",37,"Sand","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27465,555513068,"CHE","National Inventory",2011,"Not Reported",37,"Matroz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27466,555513069,"CHE","National Inventory",2011,"Not Reported",37,"Plongga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27467,555513070,"CHE","National Inventory",2011,"Not Reported",37,"Maliens Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27468,555513071,"CHE","National Inventory",2011,"Not Reported",37,"Maliens Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27469,555513072,"CHE","National Inventory",2011,"Not Reported",37,"Munt Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27470,555513073,"CHE","National Inventory",2011,"Not Reported",37,"Canals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27471,555513074,"CHE","National Inventory",2011,"Not Reported",37,"Munt Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27472,555513075,"CHE","National Inventory",2011,"Not Reported",37,"Coma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27473,555513076,"CHE","National Inventory",2011,"Not Reported",37,"Samuns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27474,555513077,"CHE","National Inventory",2011,"Not Reported",37,"Tuora","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27475,555513078,"CHE","National Inventory",2011,"Not Reported",37,"Foppas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27476,555513079,"CHE","National Inventory",2011,"Not Reported",37,"Planezzas-Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27477,555513080,"CHE","National Inventory",2011,"Not Reported",37,"Planezzas-Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27478,555513081,"CHE","National Inventory",2011,"Not Reported",37,"Vitg Dado","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27479,555513082,"CHE","National Inventory",2011,"Not Reported",37,"S.Bistgaun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27480,555513083,"CHE","National Inventory",2011,"Not Reported",37,"Scansins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27481,555513084,"CHE","National Inventory",2011,"Not Reported",37,"Sum Bual","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27482,555513085,"CHE","National Inventory",2011,"Not Reported",37,"Piz Plauncas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27483,555513086,"CHE","National Inventory",2011,"Not Reported",37,"Mulin da Pitasch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27484,555513087,"CHE","National Inventory",2011,"Not Reported",37,"Scuntras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27485,555513088,"CHE","National Inventory",2011,"Not Reported",37,"Runca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27486,555513089,"CHE","National Inventory",2011,"Not Reported",37,"Trutg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27487,555513090,"CHE","National Inventory",2011,"Not Reported",37,"Scuntras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27488,555513091,"CHE","National Inventory",2011,"Not Reported",37,"Rudiala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27489,555513092,"CHE","National Inventory",2011,"Not Reported",37,"Rampa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27490,555513093,"CHE","National Inventory",2011,"Not Reported",37,"Bual","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27491,555513094,"CHE","National Inventory",2011,"Not Reported",37,"Carrera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27492,555513095,"CHE","National Inventory",2011,"Not Reported",37,"Tschanabrels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27493,555513096,"CHE","National Inventory",2011,"Not Reported",37,"Divrein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27494,555513097,"CHE","National Inventory",2011,"Not Reported",37,"La Val","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27495,555513098,"CHE","National Inventory",2011,"Not Reported",37,"Tschamiu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27496,555513099,"CHE","National Inventory",2011,"Not Reported",37,"Son Gieri","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27497,555513100,"CHE","National Inventory",2011,"Not Reported",37,"Tgolda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27498,555513101,"CHE","National Inventory",2011,"Not Reported",37,"Trestel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27499,555513102,"CHE","National Inventory",2011,"Not Reported",37,"Brienz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27500,555513103,"CHE","National Inventory",2011,"Not Reported",37,"Cistiarna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27501,555513104,"CHE","National Inventory",2011,"Not Reported",37,"Pruel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27502,555513105,"CHE","National Inventory",2011,"Not Reported",37,"Tauf","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27503,555513106,"CHE","National Inventory",2011,"Not Reported",37,"Cresta Bernard","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27504,555513107,"CHE","National Inventory",2011,"Not Reported",37,"Mariaga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27505,555513108,"CHE","National Inventory",2011,"Not Reported",37,"Igl Plaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27506,555513109,"CHE","National Inventory",2011,"Not Reported",37,"Mons","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27507,555513110,"CHE","National Inventory",2011,"Not Reported",37,"Mittel-Feistenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27508,555513111,"CHE","National Inventory",2011,"Not Reported",37,"Montaschg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27509,555513112,"CHE","National Inventory",2011,"Not Reported",37,"Hasagada","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27510,555513113,"CHE","National Inventory",2011,"Not Reported",37,"Plansch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27511,555513114,"CHE","National Inventory",2011,"Not Reported",37,"Carnalta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27512,555513115,"CHE","National Inventory",2011,"Not Reported",37,"Camanna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27513,555513116,"CHE","National Inventory",2011,"Not Reported",37,"La Motta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27514,555513117,"CHE","National Inventory",2011,"Not Reported",37,"Boliv","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27515,555513118,"CHE","National Inventory",2011,"Not Reported",37,"Mont di Caute","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27516,555513119,"CHE","National Inventory",2011,"Not Reported",37,"Refontana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27517,555513120,"CHE","National Inventory",2011,"Not Reported",37,"Monti di San Carlo","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27518,555513121,"CHE","National Inventory",2011,"Not Reported",37,"Bald","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27519,555513122,"CHE","National Inventory",2011,"Not Reported",37,"Mazzucan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27520,555513123,"CHE","National Inventory",2011,"Not Reported",37,"Monti di San Vittore","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27521,555513124,"CHE","National Inventory",2011,"Not Reported",37,"Hinter-Ochsenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27522,555513125,"CHE","National Inventory",2011,"Not Reported",37,"Saguein","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27523,555513126,"CHE","National Inventory",2011,"Not Reported",37,"Carstolia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27524,555513127,"CHE","National Inventory",2011,"Not Reported",37,"Marola","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27525,555513128,"CHE","National Inventory",2011,"Not Reported",37,"Hirzenboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27526,555513129,"CHE","National Inventory",2011,"Not Reported",37,"Studenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27527,555513130,"CHE","National Inventory",2011,"Not Reported",37,"Cyprianspitz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27528,555513131,"CHE","National Inventory",2011,"Not Reported",37,"Pardätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27529,555513132,"CHE","National Inventory",2011,"Not Reported",37,"Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27530,555513133,"CHE","National Inventory",2011,"Not Reported",37,"La Rusna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27531,555513134,"CHE","National Inventory",2011,"Not Reported",37,"Schneca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27532,555513135,"CHE","National Inventory",2011,"Not Reported",37,"Bargis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27533,555513136,"CHE","National Inventory",2011,"Not Reported",37,"Ruine Nieder Juvalta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27534,555513137,"CHE","National Inventory",2011,"Not Reported",37,"La Caglia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27535,555513138,"CHE","National Inventory",2011,"Not Reported",37,"Ogna da Pardiala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27536,555513139,"CHE","National Inventory",2011,"Not Reported",37,"Plattas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27537,555513140,"CHE","National Inventory",2011,"Not Reported",37,"Clesalenz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27538,555513141,"CHE","National Inventory",2011,"Not Reported",37,"Schautschen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27539,555513142,"CHE","National Inventory",2011,"Not Reported",37,"Tgampi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27540,555513143,"CHE","National Inventory",2011,"Not Reported",37,"Vazerol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27541,555513144,"CHE","National Inventory",2011,"Not Reported",37,"Curtins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27542,555513145,"CHE","National Inventory",2011,"Not Reported",37,"Pnez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27543,555513146,"CHE","National Inventory",2011,"Not Reported",37,"Plattas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27544,555513147,"CHE","National Inventory",2011,"Not Reported",37,"Rundandagls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27545,555513148,"CHE","National Inventory",2011,"Not Reported",37,"God Davos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27546,555513149,"CHE","National Inventory",2011,"Not Reported",37,"Studamatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27547,555513150,"CHE","National Inventory",2011,"Not Reported",37,"Nassel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27548,555513151,"CHE","National Inventory",2011,"Not Reported",37,"Soliva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27549,555513152,"CHE","National Inventory",2011,"Not Reported",37,"Soladro","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27550,555513153,"CHE","National Inventory",2011,"Not Reported",37,"Selva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27551,555513154,"CHE","National Inventory",2011,"Not Reported",37,"Giovegna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27552,555513155,"CHE","National Inventory",2011,"Not Reported",37,"Val de Posseira","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27553,555513156,"CHE","National Inventory",2011,"Not Reported",37,"Von","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27554,555513157,"CHE","National Inventory",2011,"Not Reported",37,"Tec Longh","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27555,555513158,"CHE","National Inventory",2011,"Not Reported",37,"Ronch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27556,555513159,"CHE","National Inventory",2011,"Not Reported",37,"Prepianto","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27557,555513160,"CHE","National Inventory",2011,"Not Reported",37,"Bellen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27558,555513161,"CHE","National Inventory",2011,"Not Reported",37,"Alva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27559,555513162,"CHE","National Inventory",2011,"Not Reported",37,"Bregnon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27560,555513163,"CHE","National Inventory",2011,"Not Reported",37,"Mont di Prebonella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27561,555513164,"CHE","National Inventory",2011,"Not Reported",37,"Mont di Rodas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27562,555513165,"CHE","National Inventory",2011,"Not Reported",37,"Guscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27563,555513166,"CHE","National Inventory",2011,"Not Reported",37,"Elltal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27564,555513167,"CHE","National Inventory",2011,"Not Reported",37,"Tanafreida","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27565,555513168,"CHE","National Inventory",2011,"Not Reported",37,"Caral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27566,555513169,"CHE","National Inventory",2011,"Not Reported",37,"Patenn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27567,555513170,"CHE","National Inventory",2011,"Not Reported",37,"Stettli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27568,555513171,"CHE","National Inventory",2011,"Not Reported",37,"Pilidetta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27569,555513172,"CHE","National Inventory",2011,"Not Reported",37,"Sponda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27570,555513173,"CHE","National Inventory",2011,"Not Reported",37,"Mundaditsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27571,555513174,"CHE","National Inventory",2011,"Not Reported",37,"Munts","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27572,555513175,"CHE","National Inventory",2011,"Not Reported",37,"Munza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27573,555513176,"CHE","National Inventory",2011,"Not Reported",37,"Saldos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27574,555513177,"CHE","National Inventory",2011,"Not Reported",37,"Pferpfier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27575,555513178,"CHE","National Inventory",2011,"Not Reported",37,"Eraplana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27576,555513179,"CHE","National Inventory",2011,"Not Reported",37,"Valtscharnus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27577,555513180,"CHE","National Inventory",2011,"Not Reported",37,"Vallils","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27578,555513181,"CHE","National Inventory",2011,"Not Reported",37,"Oberberge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27579,555513182,"CHE","National Inventory",2011,"Not Reported",37,"Sässlina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27580,555513183,"CHE","National Inventory",2011,"Not Reported",37,"Funtanolja","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27581,555513184,"CHE","National Inventory",2011,"Not Reported",37,"Vadres","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27582,555513185,"CHE","National Inventory",2011,"Not Reported",37,"Prau Tumasch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27583,555513186,"CHE","National Inventory",2011,"Not Reported",37,"Saledis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27584,555513187,"CHE","National Inventory",2011,"Not Reported",37,"Halda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27585,555513188,"CHE","National Inventory",2011,"Not Reported",37,"Mittelkriz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27586,555513189,"CHE","National Inventory",2011,"Not Reported",37,"Muntatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27587,555513190,"CHE","National Inventory",2011,"Not Reported",37,"Conn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27588,555513191,"CHE","National Inventory",2011,"Not Reported",37,"Panadeglias","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27589,555513192,"CHE","National Inventory",2011,"Not Reported",37,"Vintgins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27590,555513193,"CHE","National Inventory",2011,"Not Reported",37,"Ogna da Pardiala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27591,555513194,"CHE","National Inventory",2011,"Not Reported",37,"Serenera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27592,555513195,"CHE","National Inventory",2011,"Not Reported",37,"Baria dil Stefen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27593,555513196,"CHE","National Inventory",2011,"Not Reported",37,"Rüs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27594,555513197,"CHE","National Inventory",2011,"Not Reported",37,"Rüs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27595,555513198,"CHE","National Inventory",2011,"Not Reported",37,"Combras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27596,555513199,"CHE","National Inventory",2011,"Not Reported",37,"Glateren","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27597,555513200,"CHE","National Inventory",2011,"Not Reported",37,"Combras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27598,555513201,"CHE","National Inventory",2011,"Not Reported",37,"Paliu Mala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27599,555513202,"CHE","National Inventory",2011,"Not Reported",37,"Plaun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27600,555513203,"CHE","National Inventory",2011,"Not Reported",37,"Baria Fritsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27601,555513204,"CHE","National Inventory",2011,"Not Reported",37,"Pardela","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27602,555513205,"CHE","National Inventory",2011,"Not Reported",37,"Auf dem Boden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27603,555513206,"CHE","National Inventory",2011,"Not Reported",37,"Chalberweid","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27604,555513207,"CHE","National Inventory",2011,"Not Reported",37,"Börter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27605,555513208,"CHE","National Inventory",2011,"Not Reported",37,"Rofna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27606,555513209,"CHE","National Inventory",2011,"Not Reported",37,"Pargnung","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27607,555513210,"CHE","National Inventory",2011,"Not Reported",37,"Zalaint","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27608,555513211,"CHE","National Inventory",2011,"Not Reported",37,"Munter","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27609,555513212,"CHE","National Inventory",2011,"Not Reported",37,"Val Meltger","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27610,555513213,"CHE","National Inventory",2011,"Not Reported",37,"Baselgia Viglia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27611,555513214,"CHE","National Inventory",2011,"Not Reported",37,"Propissi Sot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27612,555513215,"CHE","National Inventory",2011,"Not Reported",37,"Runchols","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27613,555513216,"CHE","National Inventory",2011,"Not Reported",37,"Inner Glas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27614,555513217,"CHE","National Inventory",2011,"Not Reported",37,"Davos Ses","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27615,555513218,"CHE","National Inventory",2011,"Not Reported",37,"Nutatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27616,555513219,"CHE","National Inventory",2011,"Not Reported",37,"Unter-Rongelen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27617,555513220,"CHE","National Inventory",2011,"Not Reported",37,"Plan Macov","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27618,555513221,"CHE","National Inventory",2011,"Not Reported",37,"Bualet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27619,555513222,"CHE","National Inventory",2011,"Not Reported",37,"Sunderas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27620,555513223,"CHE","National Inventory",2011,"Not Reported",37,"Prada","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27621,555513224,"CHE","National Inventory",2011,"Not Reported",37,"Sunderas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27622,555513225,"CHE","National Inventory",2011,"Not Reported",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27623,555513226,"CHE","National Inventory",2011,"Not Reported",37,"Chaclauet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27624,555513227,"CHE","National Inventory",2011,"Not Reported",37,"Blais Torta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27625,555513228,"CHE","National Inventory",2011,"Not Reported",37,"Pro d'Men","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27626,555513229,"CHE","National Inventory",2011,"Not Reported",37,"Quedras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27627,555513230,"CHE","National Inventory",2011,"Not Reported",37,"Rischeili","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27628,555513231,"CHE","National Inventory",2011,"Not Reported",37,"Güngel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27629,555513232,"CHE","National Inventory",2011,"Not Reported",37,"Dri Tachli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27630,555513233,"CHE","National Inventory",2011,"Not Reported",37,"Peiler Bärga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27631,555513234,"CHE","National Inventory",2011,"Not Reported",37,"Glarr","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27632,555513235,"CHE","National Inventory",2011,"Not Reported",37,"Pradatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27633,555513236,"CHE","National Inventory",2011,"Not Reported",37,"Balmschli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27634,555513237,"CHE","National Inventory",2011,"Not Reported",37,"Balmatachli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27635,555513238,"CHE","National Inventory",2011,"Not Reported",37,"Giasum","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27636,555513239,"CHE","National Inventory",2011,"Not Reported",37,"Häxenblätz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27637,555513240,"CHE","National Inventory",2011,"Not Reported",37,"Druna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27638,555513241,"CHE","National Inventory",2011,"Not Reported",37,"Casella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27639,555513242,"CHE","National Inventory",2011,"Not Reported",37,"Lottan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27640,555513243,"CHE","National Inventory",2011,"Not Reported",37,"Caccior","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27641,555513244,"CHE","National Inventory",2011,"Not Reported",37,"Tumbler","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27642,555513245,"CHE","National Inventory",2011,"Not Reported",37,"Caccior","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27643,555513246,"CHE","National Inventory",2011,"Not Reported",37,"Caccior","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27644,555513247,"CHE","National Inventory",2011,"Not Reported",37,"Luvadina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27645,555513248,"CHE","National Inventory",2011,"Not Reported",37,"Chlei Platte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27646,555513249,"CHE","National Inventory",2011,"Not Reported",37,"Cavadürli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27647,555513250,"CHE","National Inventory",2011,"Not Reported",37,"Eggli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27648,555513251,"CHE","National Inventory",2011,"Not Reported",37,"Vadursch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27649,555513252,"CHE","National Inventory",2011,"Not Reported",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27650,555513253,"CHE","National Inventory",2011,"Not Reported",37,"Hinter Cant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27651,555513254,"CHE","National Inventory",2011,"Not Reported",37,"Ral","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27652,555513255,"CHE","National Inventory",2011,"Not Reported",37,"Stafels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27653,555513256,"CHE","National Inventory",2011,"Not Reported",37,"Casällas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27654,555513257,"CHE","National Inventory",2011,"Not Reported",37,"Terschieb","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27655,555513258,"CHE","National Inventory",2011,"Not Reported",37,"Ganschier","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27656,555513259,"CHE","National Inventory",2011,"Not Reported",37,"Eggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27657,555513260,"CHE","National Inventory",2011,"Not Reported",37,"Plonggis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27658,555513261,"CHE","National Inventory",2011,"Not Reported",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27659,555513262,"CHE","National Inventory",2011,"Not Reported",37,"Börtji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27660,555513263,"CHE","National Inventory",2011,"Not Reported",37,"Calondis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27661,555513264,"CHE","National Inventory",2011,"Not Reported",37,"Plausi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27662,555513265,"CHE","National Inventory",2011,"Not Reported",37,"Nuois","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27663,555513266,"CHE","National Inventory",2011,"Not Reported",37,"Börtji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27664,555513267,"CHE","National Inventory",2011,"Not Reported",37,"Schluocht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27665,555513268,"CHE","National Inventory",2011,"Not Reported",37,"Vadrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27666,555513269,"CHE","National Inventory",2011,"Not Reported",37,"Balsarom","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27667,555513270,"CHE","National Inventory",2011,"Not Reported",37,"Plan Grond","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27668,555513271,"CHE","National Inventory",2011,"Not Reported",37,"Pra San Peder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27669,555513272,"CHE","National Inventory",2011,"Not Reported",37,"Pradatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27670,555513273,"CHE","National Inventory",2011,"Not Reported",37,"Praschan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27671,555513274,"CHE","National Inventory",2011,"Not Reported",37,"Chantata","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27672,555513275,"CHE","National Inventory",2011,"Not Reported",37,"Tschardaina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27673,555513276,"CHE","National Inventory",2011,"Not Reported",37,"Naraus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27674,555513277,"CHE","National Inventory",2011,"Not Reported",37,"Marièrs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27675,555513278,"CHE","National Inventory",2011,"Not Reported",37,"Ault la Runca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27676,555513279,"CHE","National Inventory",2011,"Not Reported",37,"Pra da Punt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27677,555513280,"CHE","National Inventory",2011,"Not Reported",37,"Buzzera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27678,555513281,"CHE","National Inventory",2011,"Not Reported",37,"Brinzeuls","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27679,555513282,"CHE","National Inventory",2011,"Not Reported",37,"Suronnas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27680,555513283,"CHE","National Inventory",2011,"Not Reported",37,"Furmièrs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27681,555513284,"CHE","National Inventory",2011,"Not Reported",37,"Viluorna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27682,555513285,"CHE","National Inventory",2011,"Not Reported",37,"Paternaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27683,555513286,"CHE","National Inventory",2011,"Not Reported",37,"Flurius","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27684,555513287,"CHE","National Inventory",2011,"Not Reported",37,"Cavarschons","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27685,555513288,"CHE","National Inventory",2011,"Not Reported",37,"Chaposch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27686,555513289,"CHE","National Inventory",2011,"Not Reported",37,"Godplan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27687,555513290,"CHE","National Inventory",2011,"Not Reported",37,"Val Schameala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27688,555513291,"CHE","National Inventory",2011,"Not Reported",37,"Rüti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27689,555513292,"CHE","National Inventory",2011,"Not Reported",37,"Spoina","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27690,555513293,"CHE","National Inventory",2011,"Not Reported",37,"Porclas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27691,555513294,"CHE","National Inventory",2011,"Not Reported",37,"Budagnis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27692,555513295,"CHE","National Inventory",2011,"Not Reported",37,"Porclas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27693,555513296,"CHE","National Inventory",2011,"Not Reported",37,"Creusen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27694,555513297,"CHE","National Inventory",2011,"Not Reported",37,"Got da Lareschs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27695,555513298,"CHE","National Inventory",2011,"Not Reported",37,"Bargias","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27696,555513299,"CHE","National Inventory",2011,"Not Reported",37,"Rain digl Lai","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27697,555513300,"CHE","National Inventory",2011,"Not Reported",37,"Careins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27698,555513301,"CHE","National Inventory",2011,"Not Reported",37,"Teuas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27699,555513302,"CHE","National Inventory",2011,"Not Reported",37,"Mos","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27700,555513303,"CHE","National Inventory",2011,"Not Reported",37,"Pas-cheus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27701,555513304,"CHE","National Inventory",2011,"Not Reported",37,"Solas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27702,555513305,"CHE","National Inventory",2011,"Not Reported",37,"Schlasung","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27703,555513306,"CHE","National Inventory",2011,"Not Reported",37,"Stavialas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27704,555513307,"CHE","National Inventory",2011,"Not Reported",37,"Summaplaunca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27705,555513308,"CHE","National Inventory",2011,"Not Reported",37,"Mulegn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27706,555513309,"CHE","National Inventory",2011,"Not Reported",37,"Sendas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27707,555513310,"CHE","National Inventory",2011,"Not Reported",37,"Radons","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27708,555513311,"CHE","National Inventory",2011,"Not Reported",37,"Planezza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27709,555513312,"CHE","National Inventory",2011,"Not Reported",37,"Pro digl Begl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27710,555513313,"CHE","National Inventory",2011,"Not Reported",37,"Plan digl Bistgat","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27711,555513314,"CHE","National Inventory",2011,"Not Reported",37,"Dartschapetta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27712,555513315,"CHE","National Inventory",2011,"Not Reported",37,"Rungs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27713,555513316,"CHE","National Inventory",2011,"Not Reported",37,"Nesch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27714,555513317,"CHE","National Inventory",2011,"Not Reported",37,"Prada","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27715,555513318,"CHE","National Inventory",2011,"Not Reported",37,"Motta Vallac","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27716,555513319,"CHE","National Inventory",2011,"Not Reported",37,"Ratitsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27717,555513320,"CHE","National Inventory",2011,"Not Reported",37,"Salez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27718,555513321,"CHE","National Inventory",2011,"Not Reported",37,"Prada Setga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27719,555513322,"CHE","National Inventory",2011,"Not Reported",37,"Motta da Parpi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27720,555513323,"CHE","National Inventory",2011,"Not Reported",37,"Salaschigns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27721,555513324,"CHE","National Inventory",2011,"Not Reported",37,"Glignia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27722,555513325,"CHE","National Inventory",2011,"Not Reported",37,"Pro Barlegn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27723,555513326,"CHE","National Inventory",2011,"Not Reported",37,"Crap Barnagn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27724,555513327,"CHE","National Inventory",2011,"Not Reported",37,"Fops","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27725,555513328,"CHE","National Inventory",2011,"Not Reported",37,"Pro Lung","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27726,555513329,"CHE","National Inventory",2011,"Not Reported",37,"Rudnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27727,555513330,"CHE","National Inventory",2011,"Not Reported",37,"Monas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27728,555513331,"CHE","National Inventory",2011,"Not Reported",37,"Rudnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27729,555513332,"CHE","National Inventory",2011,"Not Reported",37,"Senslas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27730,555513333,"CHE","National Inventory",2011,"Not Reported",37,"Crestas da Palpuogna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27731,555513334,"CHE","National Inventory",2011,"Not Reported",37,"Tinizong","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27732,555513335,"CHE","National Inventory",2011,"Not Reported",37,"Gioppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27733,555513336,"CHE","National Inventory",2011,"Not Reported",37,"Fotgs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27734,555513337,"CHE","National Inventory",2011,"Not Reported",37,"Tgant Pensa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27735,555513338,"CHE","National Inventory",2011,"Not Reported",37,"Parseiras da Fotgs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27736,555513339,"CHE","National Inventory",2011,"Not Reported",37,"Proschen-Dafora","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27737,555513340,"CHE","National Inventory",2011,"Not Reported",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27738,555513341,"CHE","National Inventory",2011,"Not Reported",37,"Tigia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27739,555513342,"CHE","National Inventory",2011,"Not Reported",37,"Tscheppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27740,555513343,"CHE","National Inventory",2011,"Not Reported",37,"Amodeus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27741,555513344,"CHE","National Inventory",2011,"Not Reported",37,"Campsut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27742,555513345,"CHE","National Inventory",2011,"Not Reported",37,"Macsur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27743,555513346,"CHE","National Inventory",2011,"Not Reported",37,"Macsur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27744,555513347,"CHE","National Inventory",2011,"Not Reported",37,"Alp Platta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27745,555513348,"CHE","National Inventory",2011,"Not Reported",37,"Ramsa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27746,555513349,"CHE","National Inventory",2011,"Not Reported",37,"Höjahus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27747,555513350,"CHE","National Inventory",2011,"Not Reported",37,"Suossa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27748,555513351,"CHE","National Inventory",2011,"Not Reported",37,"Fiess","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27749,555513352,"CHE","National Inventory",2011,"Not Reported",37,"Caurga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27750,555513353,"CHE","National Inventory",2011,"Not Reported",37,"Ranghei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27751,555513354,"CHE","National Inventory",2011,"Not Reported",37,"Lagüzzon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27752,555513355,"CHE","National Inventory",2011,"Not Reported",37,"Gesc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27753,555513356,"CHE","National Inventory",2011,"Not Reported",37,"Valineu","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27754,555513357,"CHE","National Inventory",2011,"Not Reported",37,"Sulegn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27755,555513358,"CHE","National Inventory",2011,"Not Reported",37,"Vündül","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27756,555513359,"CHE","National Inventory",2011,"Not Reported",37,"Pei","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27757,555513360,"CHE","National Inventory",2011,"Not Reported",37,"Zarera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27758,555513361,"CHE","National Inventory",2011,"Not Reported",37,"Splüga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27759,555513362,"CHE","National Inventory",2011,"Not Reported",37,"Dava","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27760,555513363,"CHE","National Inventory",2011,"Not Reported",37,"Prairol","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27761,555513364,"CHE","National Inventory",2011,"Not Reported",37,"Scelbez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27762,555513365,"CHE","National Inventory",2011,"Not Reported",37,"Stabli da Varuna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27763,555513366,"CHE","National Inventory",2011,"Not Reported",37,"Motta da Cadera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27764,555513367,"CHE","National Inventory",2011,"Not Reported",37,"Cansumé","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27765,555513368,"CHE","National Inventory",2011,"Not Reported",37,"Somdoss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27766,555513369,"CHE","National Inventory",2011,"Not Reported",37,"Puntiglia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27767,555513370,"CHE","National Inventory",2011,"Not Reported",37,"La Crota","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27768,555513371,"CHE","National Inventory",2011,"Not Reported",37,"La Bosca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27769,555513372,"CHE","National Inventory",2011,"Not Reported",37,"Funtania","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27770,555513373,"CHE","National Inventory",2011,"Not Reported",37,"Doss","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27771,555513374,"CHE","National Inventory",2011,"Not Reported",37,"Li Gargati","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27772,555513375,"CHE","National Inventory",2011,"Not Reported",37,"Barghi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27773,555513376,"CHE","National Inventory",2011,"Not Reported",37,"Scimingot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27774,555513377,"CHE","National Inventory",2011,"Not Reported",37,"Suasar Dafö","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27775,555513378,"CHE","National Inventory",2011,"Not Reported",37,"San Romerio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27776,555513379,"CHE","National Inventory",2011,"Not Reported",37,"Predusasc","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27777,555513380,"CHE","National Inventory",2011,"Not Reported",37,"Li Murus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27778,555513381,"CHE","National Inventory",2011,"Not Reported",37,"Piaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27779,555513382,"CHE","National Inventory",2011,"Not Reported",37,"Stavaiun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27780,555513383,"CHE","National Inventory",2011,"Not Reported",37,"Zavena","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27781,555513384,"CHE","National Inventory",2011,"Not Reported",37,"Irola","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27782,555513385,"CHE","National Inventory",2011,"Not Reported",37,"Val Irola","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27783,555513386,"CHE","National Inventory",2011,"Not Reported",37,"Pradel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27784,555513387,"CHE","National Inventory",2011,"Not Reported",37,"Cavaione","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27785,555513388,"CHE","National Inventory",2011,"Not Reported",37,"Braga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27786,555513389,"CHE","National Inventory",2011,"Not Reported",37,"Scala","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27787,555513390,"CHE","National Inventory",2011,"Not Reported",37,"Mälbereggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27788,555513391,"CHE","National Inventory",2011,"Not Reported",37,"Aschüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27789,555513392,"CHE","National Inventory",2011,"Not Reported",37,"Hundmeder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27790,555513393,"CHE","National Inventory",2011,"Not Reported",37,"Meder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27791,555513394,"CHE","National Inventory",2011,"Not Reported",37,"Leidwang","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27792,555513395,"CHE","National Inventory",2011,"Not Reported",37,"Arensa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27793,555513396,"CHE","National Inventory",2011,"Not Reported",37,"Rafailis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27794,555513397,"CHE","National Inventory",2011,"Not Reported",37,"Ober Sattel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27795,555513398,"CHE","National Inventory",2011,"Not Reported",37,"Spadlen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27796,555513399,"CHE","National Inventory",2011,"Not Reported",37,"Sattelflue","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27797,555513400,"CHE","National Inventory",2011,"Not Reported",37,"Tanail","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27798,555513401,"CHE","National Inventory",2011,"Not Reported",37,"Palü","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27799,555513402,"CHE","National Inventory",2011,"Not Reported",37,"Palavrain","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27800,555513403,"CHE","National Inventory",2011,"Not Reported",37,"Fazadra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27801,555513404,"CHE","National Inventory",2011,"Not Reported",37,"Fraschmardin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27802,555513405,"CHE","National Inventory",2011,"Not Reported",37,"Schluocht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27803,555513406,"CHE","National Inventory",2011,"Not Reported",37,"Cadieris","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27804,555513407,"CHE","National Inventory",2011,"Not Reported",37,"Plan da la Charbunera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27805,555513408,"CHE","National Inventory",2011,"Not Reported",37,"Truois","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27806,555513409,"CHE","National Inventory",2011,"Not Reported",37,"Murtaröl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27807,555513410,"CHE","National Inventory",2011,"Not Reported",37,"Sulains","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27808,555513411,"CHE","National Inventory",2011,"Not Reported",37,"Suot Duas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27809,555513412,"CHE","National Inventory",2011,"Not Reported",37,"Prasarinun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27810,555513413,"CHE","National Inventory",2011,"Not Reported",37,"Charnadüras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27811,555513414,"CHE","National Inventory",2011,"Not Reported",37,"Arplan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27812,555513415,"CHE","National Inventory",2011,"Not Reported",37,"Carrera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27813,555513416,"CHE","National Inventory",2011,"Not Reported",37,"La Serra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27814,555513417,"CHE","National Inventory",2011,"Not Reported",37,"Bugnaidas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27815,555513418,"CHE","National Inventory",2011,"Not Reported",37,"Walihof","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27816,555513419,"CHE","National Inventory",2011,"Not Reported",37,"Hofer-Hütta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27817,555513420,"CHE","National Inventory",2011,"Not Reported",37,"Hütti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27818,555513421,"CHE","National Inventory",2011,"Not Reported",37,"Chadench","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27819,555513422,"CHE","National Inventory",2011,"Not Reported",37,"Suransun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27820,555513423,"CHE","National Inventory",2011,"Not Reported",37,"Samest Sut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27821,555513424,"CHE","National Inventory",2011,"Not Reported",37,"Closiras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27822,555513425,"CHE","National Inventory",2011,"Not Reported",37,"Sur la Tourne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27823,555513426,"CHE","National Inventory",2011,"Not Reported",37,"Pradatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27824,555513427,"CHE","National Inventory",2011,"Not Reported",37,"God Susauna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27825,555513428,"CHE","National Inventory",2011,"Not Reported",37,"Pro da Peadra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27826,555513429,"CHE","National Inventory",2011,"Not Reported",37,"Bächer-Hütta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27827,555513430,"CHE","National Inventory",2011,"Not Reported",37,"Cultira Dafora","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27828,555513431,"CHE","National Inventory",2011,"Not Reported",37,"Les Granges","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27829,555513432,"CHE","National Inventory",2011,"Not Reported",37,"Runtgols","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27830,555513433,"CHE","National Inventory",2011,"Not Reported",37,"Rofna","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27831,555513434,"CHE","National Inventory",2011,"Not Reported",37,"Tschessa Granda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27832,555513435,"CHE","National Inventory",2011,"Not Reported",37,"Gasslitobel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27833,555513436,"CHE","National Inventory",2011,"Not Reported",37,"Missezon","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27834,555513437,"CHE","National Inventory",2011,"Not Reported",37,"Val digl Artegl","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27835,555513438,"CHE","National Inventory",2011,"Not Reported",37,"Le Moulin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27836,555513439,"CHE","National Inventory",2011,"Not Reported",37,"Caritsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27837,555513440,"CHE","National Inventory",2011,"Not Reported",37,"Boda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27838,555513441,"CHE","National Inventory",2011,"Not Reported",37,"Peidra Grossa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27839,555513442,"CHE","National Inventory",2011,"Not Reported",37,"Proschimun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27840,555513443,"CHE","National Inventory",2011,"Not Reported",37,"Malval","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27841,555513444,"CHE","National Inventory",2011,"Not Reported",37,"Höfli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27842,555513445,"CHE","National Inventory",2011,"Not Reported",37,"Chalchera","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27843,555513446,"CHE","National Inventory",2011,"Not Reported",37,"Drosa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27844,555513447,"CHE","National Inventory",2011,"Not Reported",37,"San Gian","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27845,555513448,"CHE","National Inventory",2011,"Not Reported",37,"Planca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27846,555513449,"CHE","National Inventory",2011,"Not Reported",37,"Blais Leda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27847,555513450,"CHE","National Inventory",2011,"Not Reported",37,"Giondas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27848,555513451,"CHE","National Inventory",2011,"Not Reported",37,"Mut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27849,555513452,"CHE","National Inventory",2011,"Not Reported",37,"Les Îles","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27850,555513453,"CHE","National Inventory",2011,"Not Reported",37,"Stavel Veder","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27851,555513454,"CHE","National Inventory",2011,"Not Reported",37,"Anzuatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27852,555513455,"CHE","National Inventory",2011,"Not Reported",37,"Pradatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27853,555513456,"CHE","National Inventory",2011,"Not Reported",37,"Albana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27854,555513457,"CHE","National Inventory",2011,"Not Reported",37,"Campsut","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27855,555513458,"CHE","National Inventory",2011,"Not Reported",37,"Sur Ragn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27856,555513459,"CHE","National Inventory",2011,"Not Reported",37,"Alp Platta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27857,555513460,"CHE","National Inventory",2011,"Not Reported",37,"Albanella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27858,555513461,"CHE","National Inventory",2011,"Not Reported",37,"Albanatscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27859,555513462,"CHE","National Inventory",2011,"Not Reported",37,"Les Baillets","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27860,555513463,"CHE","National Inventory",2011,"Not Reported",37,"Stettlialpa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27861,555513464,"CHE","National Inventory",2011,"Not Reported",37,"Zurstabüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27862,555513465,"CHE","National Inventory",2011,"Not Reported",37,"Zurstabüel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27863,555513466,"CHE","National Inventory",2011,"Not Reported",37,"Chastè","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27864,555513467,"CHE","National Inventory",2011,"Not Reported",37,"Zocca","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27865,555513468,"CHE","National Inventory",2011,"Not Reported",37,"Muotta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27866,555513469,"CHE","National Inventory",2011,"Not Reported",37,"Buels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27867,555513470,"CHE","National Inventory",2011,"Not Reported",37,"La Taiäda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27868,555513471,"CHE","National Inventory",2011,"Not Reported",37,"Bleisacia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27869,555513472,"CHE","National Inventory",2011,"Not Reported",37,"Lan Pensa da Rutic","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27870,555513473,"CHE","National Inventory",2011,"Not Reported",37,"Plaz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27871,555513474,"CHE","National Inventory",2011,"Not Reported",37,"Nalghen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27872,555513475,"CHE","National Inventory",2011,"Not Reported",37,"Palza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27873,555513476,"CHE","National Inventory",2011,"Not Reported",37,"Dascciun","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27874,555513477,"CHE","National Inventory",2011,"Not Reported",37,"Castelmur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27875,555513478,"CHE","National Inventory",2011,"Not Reported",37,"Petite Afrique","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27876,555513479,"CHE","National Inventory",2011,"Not Reported",37,"Flin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27877,555513480,"CHE","National Inventory",2011,"Not Reported",37,"Brentan","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27878,555513481,"CHE","National Inventory",2011,"Not Reported",37,"Motta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27879,555513482,"CHE","National Inventory",2011,"Not Reported",37,"Casnac","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27880,555513483,"CHE","National Inventory",2011,"Not Reported",37,"Pezza d'Munt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27881,555513484,"CHE","National Inventory",2011,"Not Reported",37,"Urezza da Tea","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27882,555513485,"CHE","National Inventory",2011,"Not Reported",37,"Vanal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27883,555513486,"CHE","National Inventory",2011,"Not Reported",37,"Salaaser-Wisen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27884,555513487,"CHE","National Inventory",2011,"Not Reported",37,"Schlüecht","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27885,555513488,"CHE","National Inventory",2011,"Not Reported",37,"Mot Salatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27886,555513489,"CHE","National Inventory",2011,"Not Reported",37,"Börtermad","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27887,555513490,"CHE","National Inventory",2011,"Not Reported",37,"Urezza Lischa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27888,555513491,"CHE","National Inventory",2011,"Not Reported",37,"La Forge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27889,555513492,"CHE","National Inventory",2011,"Not Reported",37,"Mezpra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27890,555513493,"CHE","National Inventory",2011,"Not Reported",37,"Ravaischa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27891,555513494,"CHE","National Inventory",2011,"Not Reported",37,"Holzboden","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27892,555513495,"CHE","National Inventory",2011,"Not Reported",37,"Sunnistafel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27893,555513496,"CHE","National Inventory",2011,"Not Reported",37,"Compradont","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27894,555513497,"CHE","National Inventory",2011,"Not Reported",37,"Schluchen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27895,555513498,"CHE","National Inventory",2011,"Not Reported",37,"Fedji","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27896,555513499,"CHE","National Inventory",2011,"Not Reported",37,"Les Melottes","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27897,555513500,"CHE","National Inventory",2011,"Not Reported",37,"Oberen Gadenstätt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27898,555513501,"CHE","National Inventory",2011,"Not Reported",37,"Moulin de Vert","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27899,555513502,"CHE","National Inventory",2011,"Not Reported",37,"Ronggaletz","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27900,555513503,"CHE","National Inventory",2011,"Not Reported",37,"Oberberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27901,555513504,"CHE","National Inventory",2011,"Not Reported",37,"Clavamartsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27902,555513505,"CHE","National Inventory",2011,"Not Reported",37,"Malfeis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27903,555513506,"CHE","National Inventory",2011,"Not Reported",37,"Bunsarsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27904,555513507,"CHE","National Inventory",2011,"Not Reported",37,"Tschuggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27905,555513508,"CHE","National Inventory",2011,"Not Reported",37,"Unter-Planggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27906,555513509,"CHE","National Inventory",2011,"Not Reported",37,"Flersch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27907,555513510,"CHE","National Inventory",2011,"Not Reported",37,"Tschägi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27908,555513511,"CHE","National Inventory",2011,"Not Reported",37,"Saloms","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27909,555513512,"CHE","National Inventory",2011,"Not Reported",37,"Crusch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27910,555513513,"CHE","National Inventory",2011,"Not Reported",37,"Pardätsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27911,555513514,"CHE","National Inventory",2011,"Not Reported",37,"Spinai","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27912,555513515,"CHE","National Inventory",2011,"Not Reported",37,"Zug","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27913,555513516,"CHE","National Inventory",2011,"Not Reported",37,"La Coulouvrière","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27914,555513517,"CHE","National Inventory",2011,"Not Reported",37,"Am Berg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27915,555513518,"CHE","National Inventory",2011,"Not Reported",37,"Mot","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27916,555513519,"CHE","National Inventory",2011,"Not Reported",37,"Magnüda Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27917,555513520,"CHE","National Inventory",2011,"Not Reported",37,"Racleret","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27918,555513521,"CHE","National Inventory",2011,"Not Reported",37,"Palü","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27919,555513522,"CHE","National Inventory",2011,"Not Reported",37,"God Sinestra","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27920,555513523,"CHE","National Inventory",2011,"Not Reported",37,"Verbois","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27921,555513524,"CHE","National Inventory",2011,"Not Reported",37,"Ruina Tschanüff","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27922,555513525,"CHE","National Inventory",2011,"Not Reported",37,"Sous la Côte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27923,555513526,"CHE","National Inventory",2011,"Not Reported",37,"Champ Coquet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27924,555513527,"CHE","National Inventory",2011,"Not Reported",37,"Muntnaus","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27925,555513528,"CHE","National Inventory",2011,"Not Reported",37,"Funtanivas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27926,555513529,"CHE","National Inventory",2011,"Not Reported",37,"Crêt Boule","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27927,555513530,"CHE","National Inventory",2011,"Not Reported",37,"Ruinatscha","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27928,555513531,"CHE","National Inventory",2011,"Not Reported",37,"Chastè Steinsberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27929,555513532,"CHE","National Inventory",2011,"Not Reported",37,"Tarasp","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27930,555513533,"CHE","National Inventory",2011,"Not Reported",37,"Crêt de Mandole","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27931,555513534,"CHE","National Inventory",2011,"Not Reported",37,"Tulaida","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27932,555513535,"CHE","National Inventory",2011,"Not Reported",37,"Teas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27933,555513536,"CHE","National Inventory",2011,"Not Reported",37,"Moulin de la Ratte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27934,555513537,"CHE","National Inventory",2011,"Not Reported",37,"Urezzas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27935,555513538,"CHE","National Inventory",2011,"Not Reported",37,"Valdez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27936,555513539,"CHE","National Inventory",2011,"Not Reported",37,"Flanoua","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27937,555513540,"CHE","National Inventory",2011,"Not Reported",37,"Patnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27938,555513541,"CHE","National Inventory",2011,"Not Reported",37,"Lavuors","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27939,555513542,"CHE","National Inventory",2011,"Not Reported",37,"Brequanne","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27940,555513543,"CHE","National Inventory",2011,"Not Reported",37,"Muraraida","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27941,555513544,"CHE","National Inventory",2011,"Not Reported",37,"Lavin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27942,555513545,"CHE","National Inventory",2011,"Not Reported",37,"Nusch Dadaint","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27943,555513546,"CHE","National Inventory",2011,"Not Reported",37,"Calörtsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27944,555513547,"CHE","National Inventory",2011,"Not Reported",37,"Stn Sagliains","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27945,555513548,"CHE","National Inventory",2011,"Not Reported",37,"Prada Bella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27946,555513549,"CHE","National Inventory",2011,"Not Reported",37,"Padnal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27947,555513550,"CHE","National Inventory",2011,"Not Reported",37,"Chaschinas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27948,555513551,"CHE","National Inventory",2011,"Not Reported",37,"Ils Chomps","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27949,555513552,"CHE","National Inventory",2011,"Not Reported",37,"Plattas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27950,555513553,"CHE","National Inventory",2011,"Not Reported",37,"Gondas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27951,555513554,"CHE","National Inventory",2011,"Not Reported",37,"Umblin","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27952,555513555,"CHE","National Inventory",2011,"Not Reported",37,"Muottas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27953,555513556,"CHE","National Inventory",2011,"Not Reported",37,"Muottas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27954,555513557,"CHE","National Inventory",2011,"Not Reported",37,"Courtille","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27955,555513558,"CHE","National Inventory",2011,"Not Reported",37,"Prada d'Urezza","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27956,555513559,"CHE","National Inventory",2011,"Not Reported",37,"Bord","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27957,555513560,"CHE","National Inventory",2011,"Not Reported",37,"Bruschgaläschg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27958,555513561,"CHE","National Inventory",2011,"Not Reported",37,"Muttner Berge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27959,555513562,"CHE","National Inventory",2011,"Not Reported",37,"Bois de la Pesse","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27960,555513563,"CHE","National Inventory",2011,"Not Reported",37,"Spedlas-Vduogn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27961,555513564,"CHE","National Inventory",2011,"Not Reported",37,"Breitenberg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27962,555513565,"CHE","National Inventory",2011,"Not Reported",37,"Samest Sura","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27963,555513566,"CHE","National Inventory",2011,"Not Reported",37,"Badér","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27964,555513567,"CHE","National Inventory",2011,"Not Reported",37,"Girs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27965,555513568,"CHE","National Inventory",2011,"Not Reported",37,"Dasch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27966,555513569,"CHE","National Inventory",2011,"Not Reported",37,"Carols","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27967,555513570,"CHE","National Inventory",2011,"Not Reported",37,"Davos Nodras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27968,555513571,"CHE","National Inventory",2011,"Not Reported",37,"Pardatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27969,555513572,"CHE","National Inventory",2011,"Not Reported",37,"Bual","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27970,555513573,"CHE","National Inventory",2011,"Not Reported",37,"Zanal","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27971,555513574,"CHE","National Inventory",2011,"Not Reported",37,"Chantatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27972,555513575,"CHE","National Inventory",2011,"Not Reported",37,"Alp da Stierva","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27973,555513576,"CHE","National Inventory",2011,"Not Reported",37,"Mulagn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27974,555513577,"CHE","National Inventory",2011,"Not Reported",37,"Spegna Lunga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27975,555513578,"CHE","National Inventory",2011,"Not Reported",37,"God Nandet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27976,555513579,"CHE","National Inventory",2011,"Not Reported",37,"Valvins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27977,555513580,"CHE","National Inventory",2011,"Not Reported",37,"Teals","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27978,555513581,"CHE","National Inventory",2011,"Not Reported",37,"Giavaragns","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27979,555513582,"CHE","National Inventory",2011,"Not Reported",37,"Tgoms","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27980,555513583,"CHE","National Inventory",2011,"Not Reported",37,"Salvez","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27981,555513584,"CHE","National Inventory",2011,"Not Reported",37,"Valleglia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27982,555513585,"CHE","National Inventory",2011,"Not Reported",37,"Cultiras","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27983,555513586,"CHE","National Inventory",2011,"Not Reported",37,"Bot Git","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27984,555513587,"CHE","National Inventory",2011,"Not Reported",37,"Donath","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27985,555513588,"CHE","National Inventory",2011,"Not Reported",37,"Scarvens","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27986,555513589,"CHE","National Inventory",2011,"Not Reported",37,"Platta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27987,555513590,"CHE","National Inventory",2011,"Not Reported",37,"Casti","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27988,555513591,"CHE","National Inventory",2011,"Not Reported",37,"Cuolm da Pignia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27989,555513592,"CHE","National Inventory",2011,"Not Reported",37,"Promischur","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27990,555513593,"CHE","National Inventory",2011,"Not Reported",37,"Crasta","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27991,555513594,"CHE","National Inventory",2011,"Not Reported",37,"Promigilli","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27992,555513595,"CHE","National Inventory",2011,"Not Reported",37,"Quadrellas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27993,555513596,"CHE","National Inventory",2011,"Not Reported",37,"Spinas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27994,555513597,"CHE","National Inventory",2011,"Not Reported",37,"Gravulesch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27995,555513598,"CHE","National Inventory",2011,"Not Reported",37,"Seeberge","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27996,555513599,"CHE","National Inventory",2011,"Not Reported",37,"Igl Tufs","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27997,555513600,"CHE","National Inventory",2011,"Not Reported",37,"Gadastatt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27998,555513601,"CHE","National Inventory",2011,"Not Reported",37,"Unter den Bender","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +27999,555513602,"CHE","National Inventory",2011,"Not Reported",37,"Drigadma","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28000,555513603,"CHE","National Inventory",2011,"Not Reported",37,"Eggschi","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28001,555513604,"CHE","National Inventory",2011,"Not Reported",37,"Mittelegga","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28002,555513605,"CHE","National Inventory",2011,"Not Reported",37,"Bruucheggen","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28003,555513606,"CHE","National Inventory",2011,"Not Reported",37,"Brunst","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28004,555513607,"CHE","National Inventory",2011,"Not Reported",37,"Treuabärg","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28005,555513608,"CHE","National Inventory",2011,"Not Reported",37,"Cristolais","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28006,555513609,"CHE","National Inventory",2011,"Not Reported",37,"Pale Radonda","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28007,555513610,"CHE","National Inventory",2011,"Not Reported",37,"Crap Marsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28008,555513611,"CHE","National Inventory",2011,"Not Reported",37,"Saruels","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28009,555513612,"CHE","National Inventory",2011,"Not Reported",37,"Tgacrest","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28010,555513613,"CHE","National Inventory",2011,"Not Reported",37,"Botta Sassella","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28011,555513614,"CHE","National Inventory",2011,"Not Reported",37,"Foppa","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28012,555513615,"CHE","National Inventory",2011,"Not Reported",37,"Stgavatsch","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28013,555513616,"CHE","National Inventory",2011,"Not Reported",37,"Avers","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28014,555513617,"CHE","National Inventory",2011,"Not Reported",37,"Mottas","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28015,555513618,"CHE","National Inventory",2011,"Not Reported",37,"Pfrunt","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28016,555513619,"CHE","National Inventory",2011,"Not Reported",37,"Plaun dal Sel","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28017,555513620,"CHE","National Inventory",2011,"Not Reported",37,"Curtins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28018,555513621,"CHE","National Inventory",2011,"Not Reported",37,"L'Äla","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28019,555513622,"CHE","National Inventory",2011,"Not Reported",37,"Pisnana","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28020,555513623,"CHE","National Inventory",2011,"Not Reported",37,"Bleis","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28021,555513624,"CHE","National Inventory",2011,"Not Reported",37,"Roticcio","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28022,555513625,"CHE","National Inventory",2011,"Not Reported",37,"Cant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28023,555513626,"CHE","National Inventory",2011,"Not Reported",37,"Durbegia","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28024,555513627,"CHE","National Inventory",2011,"Not Reported",37,"Creista","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28025,555513628,"CHE","National Inventory",2011,"Not Reported",37,"Muntac","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28026,555513629,"CHE","National Inventory",2011,"Not Reported",37,"Duegn","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28027,555552382,"CHE","National Inventory",2011,"Not Reported",37,"Chermet","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28028,555552383,"CHE","National Inventory",2011,"Not Reported",37,"La Mérine","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28029,555552384,"CHE","National Inventory",2011,"Not Reported",37,"Tour de Gourze","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28030,555552385,"CHE","National Inventory",2011,"Not Reported",37,"Le Lanciau","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28031,555552386,"CHE","National Inventory",2011,"Not Reported",37,"Nant","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28032,555552387,"CHE","National Inventory",2011,"Not Reported",37,"Longe Perche","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28033,555552388,"CHE","National Inventory",2011,"Not Reported",37,"Les Moulins","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28034,555552389,"CHE","National Inventory",2011,"Not Reported",37,"Roc à l'Ours","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28035,555552390,"CHE","National Inventory",2011,"Not Reported",37,"Col de la Croix","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28036,555552391,"CHE","National Inventory",2011,"Not Reported",37,"Blatte","Federal Inventory of Dry Grasslands and Pastures of National Importance","Switzerland Management Effectiveness Evaluation","Federal Office for the Environment, FOEN",2017,"English","FALSE","FALSE",, +28309,332872,"BEL","Natura 2000 National Monitoring",2006,"Not Reported",38,"De Heirnisse","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28310,393598,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Muizenbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28311,393599,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Heverleebos: Putten van de IJzerweg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28312,393600,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Den Doolhof","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28313,393601,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"J. Zwaenepoel","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28314,393602,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Heverleebos: Kleine Moerassen","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28315,332747,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Beiaardbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28316,332770,"BEL","Natura 2000 National Monitoring",2005,"Not Reported",38,"Bos Ter Rijst","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28317,332790,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Bulskampveld","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28318,332819,"BEL","Natura 2000 National Monitoring",2004,"Not Reported",38,"Coolhembos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28319,555545397,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Zwarte Leen","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28320,555545398,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Bertembos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28321,555558920,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Aalsterbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28322,333014,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Dilserbos - Platte Lendenberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28323,333066,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Galgenberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28324,333102,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Grootbroek","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28325,333109,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Grotenhout","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28326,333157,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Hallerbos: Jansheideberg en zaadtuin - uitbreiding1","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28327,333159,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Hallerbos: Jansheideberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28328,333160,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Hallerbos: Kluisberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28329,333161,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Hallerbos: Hallebeek","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28330,333162,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Hallerbos: Vroenenbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28331,333179,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Hellegatbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28332,555563052,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Sint-Pietersbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28333,333268,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Heverleebos: Grote Omheining","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28334,333298,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"In de Brand","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28335,333301,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Jagersborg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28336,333304,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Jongenbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28337,333351,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Karkoolbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28338,333391,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Kolmontbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28339,333399,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Kraaienbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28340,333417,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Lanklaarderbos-Saenhoeve","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28341,333434,"BEL","Natura 2000 National Monitoring",2005,"Not Reported",38,"Liedekerkebos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28342,333476,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Meerdaalwoud: De Heide","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28343,333477,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Meerdaalwoud: Drie eiken","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28344,333478,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Meerdaalwoud: Everzwijnbad","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28345,333479,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Meerdaalwoud: Grote konijnenpijp","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28346,333480,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Meerdaalwoud: Mommedeel","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28347,333481,"BEL","Natura 2000 National Monitoring",2005,"Not Reported",38,"Meerdaalwoud: Pruikemakers","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28348,333482,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Meerdaalwoud: Veldkant Renissart","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28349,333488,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Melisbroek-Vieversel","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28350,333525,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Neigembos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28351,333547,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Op den Aenhof","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28352,333566,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Overheide","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28353,333598,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Parikebos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28354,333609,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Pijnven - naaldbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28355,333610,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Pijnven - ven","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28356,333650,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Rooiveld","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28357,333678,"BEL","Natura 2000 National Monitoring",2006,"Not Reported",38,"Sevendock","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28358,333787,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Vloetemveld","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28359,333790,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Broekbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28360,333791,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Roodbos-Veursbos-Vossenaerde","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28361,333792,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Teuvenerberg","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28362,333813,"BEL","Natura 2000 National Monitoring",2004,"Not Reported",38,"Wijnendalebos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28363,386104,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Helschot","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28364,386125,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Bellebargie","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28365,386133,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Pietersembos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28366,386134,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Hasselbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28367,386135,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Pijnven - vriesput","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28368,386136,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"s Herenbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28369,386138,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Duinbos Jan De Schuyter","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +28370,393584,"BEL","Natura 2000 National Monitoring",0,"Not Reported",38,"Zoerselbos","Forest Reserve (Flemish Region)","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29022,555536664,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Abeek met aangrenzende moerasgebieden","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29080,555536652,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bos- en heidegebieden ten oosten van Antwerpen","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29081,555536673,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bosbeekvallei en aangrenzende bos- en heidegebieden te As-Opglabbeek-Maaseik","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29083,555536674,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bossen en heiden van zandig Vlaanderen: oostelijk deel","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29084,555536669,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bossen en kalkgraslanden van Haspengouw","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29086,555536676,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bossen van de Vlaamse Ardennen en andere Zuidvlaamse bossen.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29087,555536677,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bossen van het zuidoosten van de Zandleemstreek","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29088,555536687,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bossen, heiden en valleigebieden van zandig Vlaanderen: westelijk deel","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29089,555536657,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bovenloop van de Grote Nete met Zammelsbroek, Langdonken en Goor.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29097,555536659,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"De Maten","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29098,555536683,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Demervallei","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29099,555536684,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Duingebieden inclusief Ijzermonding en Zwin.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29122,555536663,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Hageven met Dommelvallei, Beverbeekse Heide, Warmbeek en Wateringen","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29123,555536679,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Hallerbos en nabije boscomplexen met brongebieden en heiden","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29138,555536654,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Heesbossen, Vallei van Marke en Merkske en Ringven met valleigronden langs de Heerlese Loop","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29139,555536653,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Het Blak, Kievitsheide, Ekstergoor en nabijgelegen Kamsalamanderhabitats","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29141,555536658,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Historische fortengordels van Antwerpen als vleermuizenhabitat.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29142,555536665,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Itterbeek met Brand, Jagersborg en Schootsheide en Bergerven","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29143,555536671,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Jekervallei en bovenloop van de Demervallei","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29144,555536650,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Kalmthoutse Heide","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29145,555536651,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Klein en Groot Schietveld","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29156,555536661,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Mangelbeek en heide- en vengebieden tussen Houthalen en Gruitrode","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29165,555536666,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Mechelse Heide en vallei van de Ziepbeek","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29169,555536672,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Overgang Kempen-Haspengouw","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29173,555536685,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Polders","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29174,555536675,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Schelde- en Durme├½stuarium van de Nederlandse grens tot Gent","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29186,555536668,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Uiterwaarden langs de Limburgse Maas met Vijverbroek","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29292,555536660,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Vallei- en brongebied van de Zwarte Beek, Bolisserbeek en Dommel met heide en vengebieden.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29293,555536681,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Valleien van de Dijle, Laan en IJse met aangrenzende bos- en moerasgebieden","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29294,555536662,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Valleien van de Laambeek, Zonderikbeek, Slangebeek en Roosterbeek met vijvergebieden.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29295,555536682,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Valleien van de Winge en de Motte met valleihellingen.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29296,555536680,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Valleigebied tussen Melsbroek, Kampenhout, Kortemberg en Veltem.","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29297,555536656,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Valleigebied van de Kleine Nete met brongebieden, moerassen en heiden","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29298,555536655,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Vennen, heiden en moerassen rond Turnhout","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29303,555541980,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Arendonk, Merksplas, Oud-Turnhout, Ravels en Turnhout","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29342,555541985,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bocholt, Hechtel-Eksel, Meeuwen-Gruitrode, Neerpelt en Peer","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29357,555541982,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Bokrijk en omgeving","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29366,555541990,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"De Demervallei","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29367,555541995,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"De Dijlevallei","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29368,555541979,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"De Maatjes, Wuustwezelheide en Groot Schietveld","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29369,555541983,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"De Maten","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29370,555541984,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"De Mechelse Heide en de Vallei van de Ziepbeek","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29371,555541978,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"De Zegge","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29372,555541993,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Durme en Middenloop van de Schelde","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29395,555541989,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Hamonterheide, Hageven, Buitenheide, Stamprooierbroek en Mariahof","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29410,555541999,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Het Zwin","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29411,555541988,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Houthalen-Helchteren, Meeuwen-Gruitrode en Peer","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29412,555541997,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Ijzervallei","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29413,555541977,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Kalmthoutse Heide","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29414,555541992,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Krekengebied","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29415,555541991,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Kuifeend en Blokkersdijk","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29434,555541986,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Militair domein en vallei van de Zwarte Beek","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29441,555541998,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Poldercomplex","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29442,555541981,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Ronde Put","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29443,555541994,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Schorren en Polders van de Beneden-Schelde","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29560,555541987,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Vijvercomplex van Midden Limburg","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29561,555541996,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Westkust","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29562,555536670,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Voerstreek","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29563,555536686,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Westvlaams Heuvelland","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29564,555536678,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",38,"Zoni├½nwoud","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29025,555579880,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Affluents de l'Our entre Setz et Schoenberg","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29028,555579861,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Basse vallée de la Lienne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29033,555536731,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Basse vallée du Geer","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29035,555579889,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Basse-Vierre","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29039,555623480,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Lesse entre Villers-su-Lesse et Chanly","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29040,555579887,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Lomme de Poix-Saint-Hubert à Grupont","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29046,555579895,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Semois du Maka à Bouillon","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29053,555579898,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin du Ruisseau du Ru au Moulin","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29057,555579883,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin inférieur de l'Ourthe occidentale","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29065,555579891,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois calcaires de Nettinne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29069,555579851,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois de Colfontaine","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29070,555579886,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois de Famenne à Humain et Aye","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29071,555579894,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois de Famenne à Waillet","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29076,555579852,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois de Vieux Sart et de Montbliart","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29077,555579855,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois d'Enghien et de Silly","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29078,555579856,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois Massart et forêts de Sivry-Rance","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29079,555579847,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bord nord du bassin de la Haine","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29090,555579893,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Camp militaire de Lagland","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29092,555579864,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Camp militaire d'Elsenborn","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29093,555536705,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Canal souterrain de la Bête Refaite","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29095,555536693,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Carrières souterraines d'Orp-Jauche","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29104,555579870,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fagne de la Gotale et affluents du Ruisseau de Chavanne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29106,555579867,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fagnes de la Polleur et de Malmedy","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29113,555579892,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Forêt d'Anlier","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29114,555579843,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Forêt de Bon-Secours","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29115,555579885,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Forêt de Freyr","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29117,555579882,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Forêts de Muno","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29118,555579844,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Forêts de Rance","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29119,555579890,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Forêts et lac de Bambois","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29121,555536769,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Grotte Jaminon","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29124,555579873,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute vallée de la Lienne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29135,555579884,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute-Wamme et Masblette","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29146,555536788,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"La Calestienne à Marche en Famenne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29159,555579878,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Mardelles d'Arbrefontaine et vallons fangeux de Fosse","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29160,555536825,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Mare de Frassem","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29172,555579868,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Plateau des Hautes-Fagnes","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29177,555579881,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Sources de la Lienne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29181,555536730,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Sources du Geer","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29183,555579888,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Sûre frontalière","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29184,555536726,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Trou aux Feuilles","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29185,555536711,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Trou des Sarrazins à Loverval","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29188,555579858,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Burdinale","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29191,555579842,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Dyle de Wavre à Archennes","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29192,555579845,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Dyle en aval d'Archennes","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29198,555579848,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Helle","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29200,555579866,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Holzwarche","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29203,555579846,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Lasne","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29204,555579850,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Lembrée et affluents","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29211,555579849,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Meuse à Huy et vallon de la Solières","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29225,555579859,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Soor","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29234,555579863,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Amblève de Chêneu au Pont de Targnon","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29236,555579872,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Amblève entre Montenau et Baugné","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29237,555579877,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Amblève entre Wanne et Coo","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29238,555579860,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Aubrecheuil","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29241,555579869,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Emmels","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29244,555579862,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Olefbach","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29252,555579876,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Ulf","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29259,555579871,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Medemberbach","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29260,555579857,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Piéton","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29262,555536854,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau d'Alisse","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29269,555579896,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau de Rebais","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29270,555579897,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau de Saint-Jean","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29271,555536727,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau d'Erpion","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29275,555579854,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Wayai et affluents","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29276,555579875,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée et affluents du Braunlauf","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29277,555579879,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée et affluents du Néblon","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29278,555579874,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée inférieure de l'Our et ses affluents","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29283,555579865,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées de la Warche et du Bayehon en aval du barrage de Robertville","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29290,555579853,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées du Hoyoux et du Triffoy","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29299,555623138,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Affluents brabançons de la Senne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29300,555623117,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Affluents de la Meuse entre Huy et Flémalle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29302,555623104,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Affluents du lac d'Eupen","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29306,555623091,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Basse vallée de la Vesdre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29307,555623158,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Basse vallée de la Wamme","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29308,555623197,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Basse vallée de l'Aisne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29309,555623228,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Basse vallée de l'Amblève","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29311,555623132,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Basse-Sambre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29313,555623121,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin ardennais de l'Eau Noire","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29314,555623130,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin ardennais du Viroin","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29315,555623220,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Houille en amont de Gedinne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29316,555623212,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Lesse entre Villers-su-Lesse et Chanly","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29318,555623216,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Marche","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29319,555623203,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Semois de Bouillon à Alle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29320,555623169,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Semois de Etalle à Tintigny","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29321,555623167,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Semois de Florenville à Auby","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29322,555623168,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Semois de Jamoigne à Chiny","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29324,555623205,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de la Semois entre Tintigny et Jamoigne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29325,555623206,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de l'Attert","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29326,555623226,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de l'Escaut en amont de Tournai","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29327,555623217,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de l'Hermeton en aval de Vodelée","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29328,555623176,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin de l'Iwène","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29329,555623081,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin du Ruisseau du Messancy","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29331,555623173,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin du Samson","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29332,555623247,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin fagnard de l'Eau Blanche en aval de Mariembourg","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29333,555623210,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin fagnard de l'Hermeton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29335,555623186,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin inférieur de l'Ourthe orientale","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29336,555623084,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin moyen de l'Ourthe occidentale","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29337,555623118,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin supérieur de la Chevratte","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29338,555623157,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin supérieur de la Salm","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29339,555623207,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin supérieur de la Vire et du Ton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29340,555623201,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin supérieur de la Wiltz","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29341,555623116,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bassin supérieur de l'Ourthe occidentale","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29344,555623083,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois d'Anthisnes et d'Esneux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29346,555623165,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois de Bourlers et de Baileux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29350,555623096,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois de la Géronstère","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29351,555623187,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois de la Houssière","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29352,555623094,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois de la Neuville et de la Vecquée","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29353,555623097,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Bois de Staneux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29360,555623234,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Camp militaire de Marche-en-Famenne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29363,555623088,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Carrière de Dongelberg","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29365,555623146,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Coteaux calcaires de Theux et le Rocheux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29373,555623199,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Ennal et Grand Fond","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29374,555542163,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Etangs de Boneffe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29375,555623235,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Etangs de Longchamps et de Noville","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29376,555623156,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fagne de la Crépale et prairies de Malempré","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29378,555623110,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fagnes de Bihain","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29380,555623148,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fagnes de la Roer","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29381,555623106,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fagnes de Malchamps et de Stoumont","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29382,555623127,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fagnes de Samrée et de Tailles","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29383,555623230,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fagnes de Stavelot et vallée de l'Eau Rouge","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29384,555623092,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fagnes du Nord-Est","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29385,555623185,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Fanges des sources de l'Aisne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29389,555623102,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Forêt de Mariemont","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29393,555623172,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Forêts et marais bajociens de Baranzy à Athus","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29397,555623191,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute vallée de la Thure","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29398,555623198,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute vallée de l'Aisne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29399,555623232,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute vallée de l'Amblève entre Heppenbach et Montenau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29400,555623225,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute vallée de l'Eau Noire","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29401,555623236,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute-Lesse","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29402,555623214,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute-Lomme","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29403,555623162,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute-Sambre en amont de Thuin","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29404,555623161,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute-Sambre en aval de Thuin","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29405,555623202,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute-Sûre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29406,555623204,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute-Vierre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29408,555623160,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haute-Wimbe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29409,555623189,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Haut-Pays des Honnelles","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29417,555623154,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"La Calestienne entre Barvaux et Bomal","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29418,555623211,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"La Calestienne entre Frasnes et Doische","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29419,555623109,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"La Calestienne entre Hotton et Oppagne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29420,555623184,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"La Calestienne entre Marenne et Hotton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29421,555623196,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"La Calestienne entre Oppagne et Barvaux","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29422,555623163,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"La Fagne entre Bailièvre et Robechies","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29423,555623208,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"La Famenne entre Eprave et Havrenne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29424,555623125,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"La Gileppe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29425,555623093,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Ma Campagne au sud de Malmedy","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29426,555623238,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Marais de la Haute-Semois et Bois de Heinsch","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29427,555623123,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Marais de la Verne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29430,555623246,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Massif forestier de Cerfontaine","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29431,555623200,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Massif forestier de Daverdisse","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29432,555623193,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Massifs forestiers entre Momignies et Chimay","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29435,555623194,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Montagne Saint-Pierre","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29436,555623074,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Noir Ru et Vallée du Rechterbach","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29437,555623135,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Osthertogenwald autour de Raeren","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29438,555623113,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Pays des Collines","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29439,555623075,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Plaine de Ny","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29444,555623139,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Sources de la Dyle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29445,555623089,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Sources de la Hante","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29447,555623107,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Sources de la Warchenne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29448,555623231,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Sources de l'Amblève","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29449,555623152,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Sources de l'Our et de l'Ensebach","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29451,555623098,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Sources du Ruisseau de Tavigny","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29455,555623190,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Biesmelle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29457,555623129,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Chinelle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29458,555623180,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Dyle à Ottignies","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29461,555623195,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Gueule en amont de Kelmis","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29462,555623145,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Gueule en aval de Kelmis","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29463,555623080,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Haine en amont de Mons","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29464,555623188,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Haine en aval de Mons","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29465,555623192,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Hante","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29467,555623229,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Hoëgne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29469,555623249,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Houille en aval de Gedinne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29470,555623219,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Hulle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29473,555623245,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Lesse en aval de Houyet","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29474,555623177,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Lesse entre Villers-sur-Lesse et Houyet","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29476,555623213,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Lomme de Grupont à Rochefort","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29477,555623143,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Lys","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29478,555623133,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Mehaigne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29480,555623241,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Meuse de Dave à Marche-les-Dames","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29481,555623244,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Meuse de Dinant à Yvoir","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29482,555623119,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Meuse de Marche-les-Dames à Andenne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29483,555623137,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Meuse d'Hastière à Dinant","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29484,555623174,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Meuse d'Yvoir à Dave","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29485,555623175,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Meuse en amont d'Hastière","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29486,555623243,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Molignée","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29487,555623141,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Nethen","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29488,555623115,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Princesse","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29489,555623122,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Rhosnes","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29490,555623128,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Sambre en aval de la confluence avec l'Orneau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29491,555623149,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Schwalm","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29492,555623222,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Semois en aval d'Alle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29494,555623090,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Thure","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29495,555623142,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Thyle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29496,555623144,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Trouille","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29497,555623124,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Vesdre entre Eupen et Verviers","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29498,555623151,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Warche en amont de Butgenbach","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29499,555623150,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Warche entre Butgenbach et Robertville","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29500,555623218,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de la Wimbe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29501,555623221,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Almache en amont de Gembes","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29503,555623105,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Amblève du Pont de Targnon à Remouchamps","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29507,555623164,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Eau Blanche à Virelles","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29508,555623209,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Eau Blanche entre Aublain et Mariembourg","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29510,555623181,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Escaut en aval de Tournai","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29511,555623248,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Ilèwe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29513,555623086,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Orneau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29514,555623126,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Ourthe entre Bomal et Hamoir","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29515,555623134,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Ourthe entre Comblain-au-Pont et Angleur","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29516,555623147,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Ourthe entre Hamoir et Comblain-au-Pont","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29517,555623233,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Ourthe entre Hotton et Barvaux-sur-Ourthe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29518,555623155,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Ourthe entre La Roche et Hotton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29519,555623159,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de l'Ourthe entre Nisramont et La Roche","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29521,555623085,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée de Villers-la-Bonne-Eau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29522,555623082,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Biran","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29523,555623242,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Bocq","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29524,555623120,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Burnot","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29525,555623131,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Flavion","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29526,555623182,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Kolvenderbach","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29529,555623103,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau d'Acoz","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29531,555623227,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau de Bolland","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29532,555623237,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau de Breuvanne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29533,555623095,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau de Fairoul","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29534,555623136,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau de Féron","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29535,555623100,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau de Gros Fays","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29536,555623101,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau de la Goutelle","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29540,555623099,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ruisseau des Aleines","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29541,555623240,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Ton et Côte bajocienne de Montquintin à Ruette","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29542,555623223,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée du Train","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29546,555623153,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallée inférieure de l'Our et ses affluents","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29548,555623239,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées de la Chevratte","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29549,555623114,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées de la Dendre et de la Marcq","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29550,555623171,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées de la Vire et du Ton","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29552,555623170,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées de Laclaireau et du Rabais","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29553,555623140,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées de l'Argentine et de la Lasne","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29554,555623111,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées de l'Eisch et de Clairefontaine","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29555,555623224,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées de l'Oise et de la Wartoise","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29556,555623178,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées des Ruisseaux de Fenffe et du Vachau","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29557,555623179,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées des Ruisseaux de Rempeine et de la Scheloupe","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29559,555623215,"BEL","Natura 2000 National Monitoring",2007,"Not Reported",40,"Vallées du Ruisseau de Mellier et de la Mandebras","Bird Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29082,555536649,"BEL","National PAME Assessment",2012,"Not Reported",41,"Bosgebieden en vochtige gebieden van de Molenbeekvallei in het noordwesten van het Brussels Gewest","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29085,555536648,"BEL","National PAME Assessment",2012,"Not Reported",41,"Bossen en open gebieden in het zuiden van het Brussels Gewest - complex Verrewinkel – Kinsendaal","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29140,555536647,"BEL","National PAME Assessment",2012,"Not Reported",41,"Het Zoniënwoud met bosranden en aangrenzende beboste domeinen en de vallei van de Woluwe - complex Zoniënwoud - Vallei van de Woluwe","Habitat Directives","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29565,385995,"BEL","National PAME Assessment",0,"Not Reported",41,"Bois du Laerbeek - Laarbeekbos","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29566,386006,"BEL","National PAME Assessment",0,"Not Reported",41,"Kinsendael-Kriekenput","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29567,385997,"BEL","National PAME Assessment",0,"Not Reported",41,"marais de Ganshoren - Moeras van Ganshoren","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29568,385996,"BEL","National PAME Assessment",0,"Not Reported",41,"marais de Jette - Moeras van Jette","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29569,385998,"BEL","National PAME Assessment",0,"Not Reported",41,"mare du Pinnebeek - Pinnebeekpoel","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29570,385993,"BEL","National PAME Assessment",0,"Not Reported",41,"Moeraske","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29571,385992,"BEL","National PAME Assessment",0,"Not Reported",41,"Poelbos","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29572,386015,"BEL","National PAME Assessment",0,"Not Reported",41,"Roselière du Parc des Sources - Rietveld van het Ter Bronnenpark","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29573,386004,"BEL","National PAME Assessment",0,"Not Reported",41,"Rouge-Cloître - Rood Klooster","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29574,385999,"BEL","National PAME Assessment",0,"Not Reported",41,"vallon de Trois fontaines - Dry Borrenvallei","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29575,386001,"BEL","National PAME Assessment",0,"Not Reported",41,"vallon de Vuylbeek - Vuilbeekvallei","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29576,386000,"BEL","National PAME Assessment",0,"Not Reported",41,"vallon des Enfants noyés - Verdronken kinderenvallei","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29577,394550,"BEL","National PAME Assessment",0,"Not Reported",41,"Vogelzangbeek","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29578,386002,"BEL","National PAME Assessment",0,"Not Reported",41,"Zavelenberg","Nature Reserve","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29579,386249,"BEL","National PAME Assessment",0,"Not Reported",41,"Grippensdelle","Forest Reserves","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29580,386005,"BEL","National PAME Assessment",0,"Not Reported",41,"Rouge-Cloître - Rood Klooster","Forest Reserves","Belgium Management Effectiveness Evaluation","INBO",2017,"Dutch","FALSE","FALSE",, +29652,4115,"MAR","IMET",2018,"Not Reported",27,"Tazekka National Park","National Park","JRC IMET information","JRC",2019,"English","FALSE","FALSE",, +29653,555547509,"MAR","IMET",2018,"Not Reported",27,"Al-Hoceima National Park","National Park","JRC IMET information","JRC",2019,"English","FALSE","FALSE",, +29664,555621997,"KEN","IMET",2019,"Not Reported",27,"Kisite","National Park","JRC IMET information","JRC",2019,"English","FALSE","FALSE",, +29665,763,"KEN","IMET",2019,"Not Reported",27,"Kisite","Marine National Park","JRC IMET information","JRC",2019,"English","FALSE","FALSE",, +29666,760,"KEN","IMET",2019,"Not Reported",27,"Mt. Elgon","National Park","JRC IMET information","JRC",2019,"English","FALSE","FALSE",, +29667,28175,"UGA","IMET",2019,"Not Reported",27,"Mount Elgon","National Park","JRC IMET information","JRC",2019,"English","FALSE","FALSE",, diff --git a/lib/modules/wdpa/pame_importer.rb b/lib/modules/wdpa/pame_importer.rb index 192b23c2f..61d20a565 100644 --- a/lib/modules/wdpa/pame_importer.rb +++ b/lib/modules/wdpa/pame_importer.rb @@ -1,7 +1,7 @@ require 'csv' module Wdpa::PameImporter - PAME_EVALUATIONS = "#{Rails.root}/lib/data/seeds/pame_data-2019-07-11.csv".freeze + PAME_EVALUATIONS = "#{Rails.root}/lib/data/seeds/pame_data-2019-08-05.csv".freeze def self.import(csv_file=nil) puts "Deleting old PAME evaluations..." diff --git a/public/MPA_Map.pdf b/public/MPA_Map.pdf index 388893c302e70922cb0dd8f28f1b6af2bdc5ed40..939e4b65db7f7c3124e5c88695fdf207932460b7 100644 GIT binary patch literal 8830530 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

jXcX5MA~2Uv0Id1N=)Hx+0H4T^7gX)NYD-B%F;K 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

bkckERKU1Twt)S-k9#+sczrtuHI`dUQC#; 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�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ǒ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

TTthZu;Y>&i34 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⋙4OQf*;hxq4LRvP~++YwWHugY&3;?-l{ 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

_GUrG|54AQd6SFvAe#kOrBdzp+u7OSVm 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 Vg! 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⁣=vh- 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Ǐq|aC!PfE20xEQdt_!xzMH~%OMUh<4 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

w{ra9O{a?*@XAP=084E*_>;Lp8Y|9g&nv1PNC;n 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�r$vjcsd8q3VlQ1_rF!0 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�u%TRITn_T%9aV^%r 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

roH%l4$Z>XG-4IX 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 *J2?XgBO zJV6{c4%&4Z$JRS*mD;6TYWQhvhj{7L4qJ<(HykdIaU05HTyvvw95-kT{cas*Won8% zspl#eo|PWIHBKBfighusG>3nu%{rKue8a>y*vQhOo64HPCTR6ruI`O157I6ARKx+> zgb%s;>gsjb;r%)pdt&2q;o`G*k^3+Bh#TEUu>xYROWmthBcCtsC}b?47G`s-csY5H zPX^76Lcu@|eYs&Uj?}*_e$(~`F%}syVp7M?(M48_Gi)S(h8v%pCN6N3G(XDP>!aCrtgMkXu)|F}@XH~NsB&0VWP-0+U45I1w)Pxq zDl-{YV>$C4xb4h!{?5{NBed51*)DnC^IhmEKm-2Mx8o6cAcyHlU@=&_i+r|Z#b*B8 z{j_m2rak|s=(bCJz(JiQ%XZD0eR8P{R1&ShbzgC`1(Ld}*q}e+_sC8YFc6FYSasR# zV}X_++PGfR9$g=lGUFz(zBcO74mS-<5TupjDEq5K5tlcm(++Y7eh;x0RZTrC0P$k| zj!d5!Rp)I=v@O>CIz67 zIxQeTF!q7?<)Iyg80Esw{tNi=pAVf+6ytaARcEVBkmKlQ zSLx+iX50d;(}Ll;A*&NV1QU3t zTp*8akxeGNWmvOyIz;t!TBsdwl1XXa*pZ`FQRbAK+>XueCSvgyu<>Eps|v=GA&`o= z8r0_BFsk&6u||@&b2NrMAmB8?9qtdTxiBUq`r<<+6{6|&qKuIhiO>`zF};HW>mE%F zG!t4YJ+cR*@C=?2$L0P(_+}~}RUbm1Vu?PyG2c|ngM)kZ(Ry{$KaE?D+{vtanjY3h zaP{B>E*l>Z|3(a0E_w~nUF^Bk{jiyMbD2^ji{%_sWr(i!cyP#IoQHe}6qJj46#CeS z&!t3m`vou&PAr^@QDw22rkt|Wl^h4T*7EhH` z6%{myWICevr4{aSvNV?(lIE%r`U3*R@7GhBlQA>?tJI$k6cgYUc>`7Rkx3jyxPIv} z5D|ShR+vaixfMbP_I?~TFCP8TS8I2;N3PWT^YK@u=hMdU>V(RU6W#`<57Jqf5jNPQ z%FJt+>zmmVfknb;O7^8{&Fhrg4r%s%$(c=_g;{L&ic=Wb>0(_$;p_77ZVlM>F2+#) z#T0_`LS9je{PXDqh6I17h-k39{;Dm2k#}z^2NpOnjIxZ9maqs<^}<73LEQ<6>U#Oz zmn;f@JCwik=)_7!kAxDyg0-Lvd7#20Lw6CC!7`>KVF$BMHV&ZP5# z{WaqgR4aYw#=?xm%7RR^(2{zDpu|az{u5$0a3Q8Xk&b6dX$PkYQ55x-&lsfc{8yk` zq(ME$CBg>f$VX9>7>Eg z$FJD8jb2!p@X9!6gm_8 zGy9@4`ze^Z5xWJMv!C%rmtr;uiOyOL<1bettGbFv0re)M0;@ClD7tV5n42@a345MU z_Qj6_!K{DNC7?nPL{t`o0WYI4EyP}fjSrLlm-n`Vf0?*EklP6M%nx=8U;YRyMGitT z=?n;9+DRFcW{E=_rcW2c${xc>t6O1?0J0{r^cNLX*}Mh}w@}~I_3x*7;G0`3F2+84 zW?Q!&eeQgYUAcNfM4bD+g@UO+N%ASb@;3-GOfQqi3L{)Qvo>WC&scO64Tpz=othb3 zS5)i>_26qE9Vq|L=h~5hIj3D{b>)3=^6~RM`c^F-OLp*))f#eQn*VTw$RA^N zJ34{PG*@}juQ2+cGV`W0-=ix#)RE`)$ut#lZyZ(%k#B}p_WsvnI2Qb7^rnSzr_UBL zs5hx@t`5Z-bASuzz4>*Zm#ly{3p++)*W})HXS(?b8JE$RG5Ywe+_{9a{tIRLj4-a` zF+`-&>OlctbP;o^jxd|q4?3D@E{dgQNKCdgT{=oYsx=ghUlKG&N@Ti5JMUH75tjLu zM4;Rd14}`T3mWdC5aaFX{X#8*#cvLg$_)A-SnDl7W~csBL(GvtCy0^8e~i;`g1;~9 z$f7QG^M%yiPx2{C6mf2G~E>mo0oy(Pzy3B!cU!cXbdPb7yo@OsGam4!@&8N6*b4|O*=sPmqtSa398 zPzl9b?L=*U^N~G2V7z9iexiO^G5yI`%}%g~7)RI}k8|Ju3)UNWsr^{BtqXmKm|DvP zE#U*`Q9elSnIBsh64sBxGio6Q>&Gt6CKpydcWyR&p`80ntU-_~2_f^S5P=}EWk?^= z1+C*l+&2PkT7*+p6o&f`6j|o(Xvne=`93U^^B1VJLf9RuTnKE@wcgGL5w>B_VQ-<} z|3lYT1;rIDTH*}^3mTwtmq2iL2<`+A?jGFT-Q6t^2ol`g-QC^YZO(l&_h+hJRTrQA z(RA;#m$T%q{3d}*3`TCcnuBh{;S4@#-D;t!@?HG!`vwwie}I}GxT7MDA|M|1L*MkB zd?^_Go_*s!@5o)RbU1T*TQV&Y{5BM|-Fm08=|*+gj`3U}NczFH;lO3flg5tyUF{z3 z_DDxIU-`3n0ubtGch&$98(3pKpsl93r}Qo$Y%f6Z=P&i2Uz85u=3b!F*B}8C757q6 zWZjU+7&B3cEbjSq{|k0QuMW$5tA(^jrC;Woj zpr!t>g5sYg(%JE;`IM%AQ8W^Qe;cnZ&cxcdQ>}fuEZ6~KV0y5c-OlPx8?-l^d1AQ< zhu^dXXVVysQ4;hg8=0-DCiv{np6hXAySomA#hvQ#qEDH4+rsZL;$@dX1qfte#-x1A z^9Ku;mN^B*-^<1bMkuw@qkim~m<|w#T$mna#5_aT5SgP>X&E0m_c>F&!xk)Eh$2?7 zu8|j~LMvDbjX+T`pM)?5vv&v)v%oeKf*ij15HJsf`;a>OsvI#M{`zY>K#z7n1XqH1 z@bG5YaZ(V>-SK5L5D!5~eGGa2lR;EI(1bBZx@M7Z=1BYCK8Jbl2jz8G1Drc@ZhwAY zT57}3IgoGwZchZ3XtjiToSkG-vVPkTLIvoUWmk5qSMS+Z`_*TYX&t7$l1yj+KPK8S z_5rlN*K8>X81sz5Onlvl?CpfBukL0Ef8fNwZpbZW%kt!iU~wOK^Ieo~y8da*=FVIR z@3L`TpxpjpBx?=bBV=;Mse#Jk?lo3{Ykr*6JMj6o&j`L|pbFf%~x*(^;7b zti^!{@~Q-ez&w3u13XP#`1YiV(AO!!Ut+HcA+w`BmMA%i?$0BhR)UU|e^3V%&-7Zd{+HFb?x!ru__ECSph88P< z%TP^B1vUEhm-C(ua1Vvc?DTB+*J>?|BWta5*+F+Y? zruD~T(K?&j&Dsu9M>ZH%oUE$H0@Z&(*95_ z{GnW+qvD{Wl&z#1tNdMVTTG)mivK)va919&joR6O=9ww4SV0HSzVv@_J@#tr?3b08 zjQuF;_(i7RsK*v*X*5pux0b|$Ra#g^LOgGZrk$G6d21=J{np+l&vin#a`qUN4y-P` z`$q-v9$*qa>vEqhk8{@F)Emv?t<=L$()2@zw+i*K@%znosZ27PYnzgAPhOisXOlgeobu5+O;k^Il zwPnkm=m+hS(3L{FyaQ|4ShfAT{F?0@I_N_Jj}sdtMDQm~`@PXoQcuf&yJJWqaQ`5e# zHM-k}3C}N>)p31orFR8fD|7xAApK2fWUy-)Vir*Q67A+;Kr>%>p$`dhcms;vvHq$=5O8o44crJFN)gb(Lcl`H`_Sv7*W>4 z{2vm9AG#+!vL9^5omuLhY#fiyO13;L&K%c0yIlxHrjpzylCpsZv(CwL;gzQn+3Z8Do`>sO598|q?t4Z2_d--JZN!a=z>UA+<55$F9dTxPWex<6EdzT+qPma&0?{bHo4lq zU*-*m_pChqT1EDm?)MuOOFJSqTf*hauaioTn{*6iy+Q(qHj@`GVKeP+usIj_jjzL=!D-3-S)_>&cVzRp&;X>6E6hX4% z#flM6Aa)DqX&d%#D8mQI9Ai4dXd>oQiKc)&M1_2pmrG+_4N z!Rpa=yaw{Q{axd7N)4<-8(E=H>o*jI(dZ8JW{H6-OK*J~j&)rT}XM zC1u574gOE3p6|6iLB9iliNiI9XT*Ugdo%M-100g^1b=?kidn0j0-L97nVSVUoEE}X z&;pU;aWo0vhdCJ#@yj-8COEgEOIC2%ym$R*Tc}IQ8yH>`21GMFa z+;Z+0RtfY=Fi|$~EOZ1HnpjkBANhY+kd?iaztbu;)Kk=_ z0{TM4xe!}a>S=<`LRhya=S8|s4DT_{1oT^?qPelb2rHD22yrY|u<&4CqfTyr%&Nog zD+MVMbQ9UTjBMlb^D1kxe~@4}5E+&qZGz+9Ao=8{+Z+Sz&FR1{e|Q|qfq<&d-yTwL zNjyDM&wA;zSW{dr;ay46P(dQ3B;F+rLRHuC+3S%PpUL5-gXIJD(4;ouM$0(aMqCU_v)LCumorTk%%qI;9FL z%G_8>NN|IS2x{Oj+&dL~m!TPuwKg$(nPW@f{{*RIV482mZ3~}1>yON&M?nBOMjYm- z`}Glva2zV3|D#@eSj=|@foekcXGqofdUWU_-FH_*)$831>?0z1NR5~{L5d5vG5^SG zg+;$0y*4zRYV`tYDTMZPn9pXFd43gJk9koQzGS5cIpZnH&S>R5{U8rO!n~Qngq0P0 zu6wy0nk`xsUWV{o|3-CRz$G9IksXuPL9qU6)B9*Od;8W1D+{d`<_R%bM#JODnAaf( z6vEsLi$W^cR2380eaQ|r&GUl9L+NB_9Zq>G%LNKlvX4)?oFpJJQ9c`7hmJuNBVwqM za{3aZ@Q)A?yMOEQ0QCO@n_B4&&^|;yoD}c3ZbYjiRU2iZ{O8lhW0DciE{F9{Pa@8H zx<_VQ_T8y2>az+a;Q_EkLT^iw)}4yr-gBr*B#{+e@d$&BnZKsa7&)FvT)2m^+^EMR*SCA*pl=>e*tdSR!^I zwW_BRzcI#_`Htg_N0Z6Nv)H4h(7n0BnrIA*ltNH#(^b-r&YX9|H$}b!AAUF@tMT+F z!5ZRqijAWMqcr~=eAl>eTvV*H&>$07PBcv4EGRHn9=G<*yQWT~JX4lX;I@PW3izEtD6LKM$OmNoKx6!nC zdgE?zD$_TQ6L{O+DevhzPpNPH>kLPi?|$q|-^-a$E)2z!Bm?#CL1{jMp7Iz7z+>VB z`F7Puim-%a6w)0D7x&kqWdN2Dilf5jzptmFf~HZ5)kzBaIq6eh9-ANum^}akef!FHKDJpt4!y}!OVmyaN|l+6&xi} z#eQ2c7@_-|#9TNRsJcLkEk27M9;6&LIIn7D%GjPGZ4@!CZZg#VmARKntjjz4x5xT= zKQr4{#hfhT!dUtISjECWcFO~qI*0jYF4MKl1{($i9-I;rH#*Zi4;v3QYi}0IznKmy zHNYI6F0_E?7Gq&4!=79v)D-K+U!>>`aXg{*g!%}~O1SaR8NCXVCMBYQY9;?Htai6+6 zaE26CZ~`)ncEg{1NUZ{U?1-O#)w*?P0fqrAIP3@!>Ddl^*0&u9oiu=vkVLCU7csq! z&AEIe#<1Fm$>_jedUe-3i)hCJ3p}~oy=CM@T?9u>h|4k#e66Ii%2nH$Pccls5SN(< ziJAzG+(5SR=Bc`p{pertvebR}>%G?U`XgqmOs6NMZAAC>uh$gn0}7YRfu6^ZN2P)7PM>uxr=84pI0b=IBXmmK6{T9W?2V@9aFI3+kU& zk#sa0qUnK;$H%PIK^Bf{dfCMCu|%t}Ptp6ZYAhRTqAVbb#fo9BgA;5Y@B7(3zx}Y1-)n6#7>9N5u~)6q{&ACy z7hM^R<162bt&b#k6n}P0d;gNOj=meG6(^n!H?9Uh0ej}HWyH^LnKGj?KcdP4H|04nEuR8s+2S~D zbV0gd<^J+%(hidw5!n z#WrCcDmaGLMuFqXX&*onVxAM-!^Ti62lGVI?48`UC!It4kH+;st0{OBJbxdu`dy0d zf6{p^Abv!3yO2Gs5ArS8Kh$-56ril0kP;zX$xD|C9AgNS>=5lup~eq-DDDOjU&j$W z)uKK5;lBfYj{{Aes5S3I#ccwk?gC>^{8e5TP3rqo?D*OUUy71=m)CUeQmwPA=EuT2rpjOV7Ca=}_b*bOVO#4h% zi5$%YpUy5|?1MUW*sJPrBu-&S%`+JFtNK#e2BA9u}*c z;4wq!8tmsf-q=P|<8#BN7nO5Mvc9T zoSZ%gQOZT}h+m-@1#_H~LR|5vu+W~cL>olc1?_Q6oJqq1`d=B0Jn*}iFz|Hbz=b+$ zrHgA2wLj^~>`Iw=qLK1twj=%o9)cRU-mE5d&4Yn^M!j)I#cYQz%7H>D zp&{T4r9>@h6)S4Uz1{!Oo=<6)`-$+VXW)4faFy3Fc7O*{MOw}WRXN{%BT0&!3Bdyo=yrOd8>5VQXH53oMx zmfY{MWoM3OXx$p8ye=6F&;t|V@f{G;FAipFDGV-+?Wl_+~GkUtP@{ZRy}ym=)2AepqpW0UbWm%G5fwv8EOBD_Z?7A$YeYT; zS_>R3ZrBr~Xdhth-S#@s*{vb2xsW1qUUmYkp>1!rWyPJ52^ojQ;<0iN4@EmRBr}M8 zL#9$q2A|H9{zuI{UUFG9f!VH@7EG!0l}!r$N*OK6Vf6Q8xdGMj0ady0YAD}R9Dubc zvJoKJR+1H#^tLo65`8DU*;?ca-HvLoku~Td;wFZm9p=vwf0@PltOIU8XsjrXIv@+~ zAr!NbNXb#B8MVP~s)zR55j|~<<*H1oc(8a7FS^hnY)$^Y9=>B5-`m9cq?+zcwbHC= zwf0BpA-&hb>$QO7*_^_?0lR5AGBbm0;NENsV*(caWomX@cNbN4YI!-+*-g~yaG$}M zvE1>BqXi~eF0SC`t{K)+deHp$ydoXFKYM9^mimXA#yD6qux3n-88>Ov_6i&9hXG>R zi)F`+?Zl0L?{Tg3*~fO~RhKRQ-_$T#LUZWL#GF6DN-!#b zd4AB}Z9`h(+X_hFGv_2=WuUEJPFy+rlZ67<51c!+QqH`-F?{El0gXe@3qeaifx4az zYy@)%n0J9IBjpi78mq--Jg4UWb!tT8U5hNg35@~yDjS0)&Nk=XW!|8uw&62u{o3F& zGJc0&_4u!%AvR;(hXH02-G|JLT6I9ndC1AMw-0j_ibYD%F^;gU$k-g z5IGT&I(GC68YcwPW+6`~B*W~xnVj5Mo$^K9NP|}IkcncZYPsa&CSQ{nIAp~tff8sp z({%mkkPToiccq-8le{QK(7g9X%j-&Zk**8A_gv{m3(A_neWf>xz8Bj?kb5pJVUc}{ zNZSJJk1m6X2O+oO8S7iw4ayCRWODqVU*RlOf(~%5sF}cgfiK?U6t?6)k?I+dm1-r` zUFp6&3JYfRX}EsX7&Ojrk`uvMKwTfT5lUnw;jOu|R$nz<{li>h6dX!tf>*92?;~R} zWoZUh-!Zj=t$;(i%h0Qx!Cj0)Y8rN>ljkxUK8JQ6!jFG6B+kA=VB$r{eJvRsBhQqf z6Pax0^fWSO-=nG)a=u>X2mRz7Kmz?Wa$`PF#)aCNEwjZFQH!QP!J+VGMj2B)W=4lB z9Iz)xOC6;la+J8?jEAE@DvV0(ym#1_%~|IY zPN^3T0TQ$$kw7v+k-HXEHm*eu84aB6hBR8I;Z7ItaZsm9-sdE!4Y&^vqI`9YK|`pH zq`XDgZpv1_O}WHQZN)J_l-(aPl+}udkbw@5g^3OKEk1NzfZUyp`iOK;zM8!$9L9QA3PIPG4S`4bMlWAP*!1inkLEcc9e&XTQU+TcHFBpy}>`IO`w=bL&NyGl!++<(!}7wf`>3B@YSu< z)t-z`VA?e0sI(sXPMN^Z`Y3wbd92L8xF16$YjJ2I8 zTqlvfD{-C-4wA&rB}fj6#S)|+4^{jakzBc9x^W@R<# zm89vjLgU}ep<&p3D*-BdX%c|$hM!W3K;Wu zr9#F&jJ0875T(=LU%ayz{xO15509}n{Bt<3oJBHN@0rf7y}n5ucRY`RTSp{D2%V5JBn3P`0hZDXVYqd{kVd9v}uii?91i*IvbsBPN3UOLHri2#JDK%1EDyQMi}8SVbN~_9ojpM>(YU2`h)da zP}0OZc|rjS8NkaBeWIOS$y|a4uHgjKdDxpJG|uE{f%=EepZU%{vC!BFh&$=!(-KZ2 z*urqAk9JpL$sXf3P^D{u&ng3geyyIhqBKEA~8X2ADev>lbW`UCoOk9&PAU2Z@vLL}m4r|b!Lhh)XM zezP6Zbz`b|*Mk9P6^DLgs@L6SuxhO!7?F0G5}7^X71j>>6V@{c)^+Kt61_|;Erd@W;^y1 zU=2rAx@a5qqI1w0I!lpyDP8_m;8ZlVX2*x6Iev^x$bNh}v2NK>~T#W3*X zr$>d#5N(Z+dE(aPYkW*`&SJ`>_n134nl80auuvX2RqHF3M4Z{?xHOC|;j8a2FGXq2 zn;@HwtMi%uNo$y|{)r6s0nDwv5ghhCcasNut`?l*n$cy^C#45Zc&_i1LSMoSaDu2; z#YZ;ciUOvLEegE?ueo$`Q=yyRbjIXTXl0o|g_Aol_UA_xcKcuhih zJew6JZhsEU`0}l)5~87@V0Z*wgE^%-F^@KP!bAhPC887+z8TGMkbMUlu#H}^B}Zzq zrRqDJNmj|_YH8|Q*k0Zuo*+f^?T+-!_Uw%AN&qiil=b!B?}||A=;6xT<{uV|w;p(X zPa%F$jH!mQ4()h4jnPD<`|mJ6!WA%?=L4}&a9g`O@DSEp3*Y@Hz|g;0L$_~Jw{%k6 zJG3&+=JsCVxT?ZA_Y7T)-Bnh;=9_&T5Jz&=l@%(0YchRycD*_2x?_A%BQk@IA!BEx zDzBtEvn>W=O}fi1>qcvJ5U~m1vrjWK8F}*8UU{0mJzXx}#El&kOm1rC$aCt*wCMhO ztz61O)G4T_U5n}KEJ z>=NC>J36l77CASp5!X+E9I*{N{}chzWylImDMkXt6dWM=`4{$pfeiv#lArLsd}&b zPzh2K+iWKokQ?3AvBi-=hSK6YBLh9pq?vOCi)X&50*d)!U##{qH~K%~$tUiTi>cUi)~S$>5|-PUF=k4j-1v%2v0;h~h& zaAc*X7;3_a0bxxlz@_%Q2y!xO)`jj)XN32{=v+GJKKolbn$(wP0`&(<=j$z*vsW#XB+vg5cr)M$p<}9 z;A^1IX3#q|ym#W`#pY2NACBe(Y@r>KqhaX!-`3)n-2@5)HrGBVi zF+AIv&P`$&*^+I)MUJgETP&OIhq*?|j>d2jP8fZPe(^iL-2udy>0bpQ*Y$&F z6&=p;>Qll9i2d=9RG4;3Ot?<=*P_7kzd5-JmohZ?wpPwD*JFYwTgDdS$m)m|WnZrt zf0kKYT%4X-U!2>VofY0U7`|wc?5{t*t8!)_pPBZoyll*fx)45$r;kY&6b<`HFFDo4sKMuJ++Hu9| z-Ws#}rm`16093VxBKsNks)Xqq}$6^J20LX~$# zt~4IHqQto7`yvK)6Qc_H04~8QXtAQQTnH|r!a|i<_wbCkeAAZHL7ewxF17!975}ee z@&EgKc|jalZ=WqXk3D7+%slcQ*_AW*;-KlHLqJ^uCHCV|kbqYuBziW_@W-XXk$}RZ z8U5b|2)fGzC={4z!SqfhsWSnkCzKxm%x@^UB`A3VrFZ7By8<&Pmc+Ef>m9k5`%dqt zQhFPh%MPN>+EWB-RvSr!&GBxg|Ma2`ILMmj6y`TK7M@r%edNw2=-$L&wby(~E{SMf z2kZr41r=UP$cjD`jtT@pw6;2DbY^d`KXY?YF|lc|kZbkCPD02589P*zfOjfHKBd6) zQCd1)XRbj(QW~uVwa|r^$}qV%5f9nL6p6vwxy3^m7aw z#|l;tN6cg+eWhbNZY!_@-b24y3yQJ0Y_KyMSRFRycE4|Swgp19Zb-FqKrLw1KiRo| zWob@5Rtsq{8U$CVjN7P;TB(kvQhPknNYBw*A=Sd8|NOVc@1(B)Lf|CS;>uF*NYxg| zSmn%Ksj$R7x=a}!7ZkK;~ zJ!vDd2X}s7?>3R%sW#ooWwp;2ont3lq+k%K?L6RD(<$F}<8e6$e#$nRCt5-7oAD_f z7-K7!r&e{xLHgOcHy(6{(q1Z}XNkeB8FUW<{E;dxdgc38s^iwJ*&054ZBHhM*ONeB zQ!%e?F>mGXRmR_?X)L-Z_&#&SkBm{*AL`YYJ}Lp^O@-{2tY<2$z45$keFbjM5=9iC~=g9Vo%(P-9LavDFa>WUIzE_Amc1WA2=Kx)6u8xF!nYVqcV&z2B;4$0M zmfq$qK}D|Kgxr!YR{b2L06X&b7I+7MY+x(Yi>vW{Efr`6D)0wt#zXM>uGsrj8=P~F zityItMNoP~0`13d8^k9{U%+R@VQ5m&>9H(|sJ&GL8;t4$DWAr6uOJ2m zAH!@~CAxZMnXO6f@V=e~wHnmd%M9FdHelNl;X;`W%8yQm?TJagqh(lbZ)MfiQ+&ls z+l^Tub^3|WkS8i*d-sS&Vp1#%IetM=YCH}y@z=PF>fs$gqMC(ATdpz0_2mh2B^IVu zQP>bBN24PDvO(N^*qJXaM=lr;Z$xJ4-wFO!_L*BqN75B%k`bSO8)Sizh5iabJot%n z5DJy7)L8R}=Y52Kr~EhJYfOo_@At03O)%V6CH=iPN+us1#`QxI#aT*yA-?}#Z9NAO=2hlBC!~J$G5bi^e0@&e<{5~ znbzav8gci{fyH-kwa|A4!P6&P9G+q-zw!uB=Y-kDKh00-FsJ<|SKoOs@K8G<&<*zO z*&HcMv)4{7JcGY?SK%S}r&7j=@|CzYz|0-kvG|q--Alb$>LHYQ9D@l}2>Hz#F|`)5 zI0|A(xC#QOyK~KsN{2V~)s8l&2*|(QbTa z6?=i2eM5wE@3HOQYSqE)z9`?5QJRxHWc}4CMqbuJ_cHWnZhozd;Hve##>jMptXH$H zQLb2|*t*cVG$*!Xg=fhU(K;1gH!JmMj?|MjABC~ z6Pbk|<^R6qXm+uHG}GczQgBrn?AD*`X{6aC}$=>A6X~>&hllcpbzYSlBS5u#*Tsm%3RBHq@@iyYFU#w&q=H>nb_y+paxR4N}QymqwtrE zAEKPiIbTAC%k|T~lCpl^M~YK4ZWKqeNJC{Gd%@dZbGnI6ce5O8EplI1VzaGC=lC(9 zb<%j=AEXySJjJkVgHfcJmq3Tq01s`qFy;?YB8g`8IXEu@aSv@6ovlB*=X6%$Wr#C~ zfEtCtPtH6X3T>4q~1X~4=A#KEHRV~Pu z1XFZEn$>LTaYi7i>LE>j>(T*pKLW5AU#h<{gyyu;vG2V|`rHpim+!2v8XaZq1l6fjykceK_5*=A5XNcJS)!K=$6oUB!Ez&s#*7EH^t{ zEq~I@dvlOP0kzHtXQQY>Ca2OsZ@+i_8F3Q111}d< zSqNa8W9e6RHGZ!1IGYyj5k~tMab+`p@m>XH$sgAS_ZxcfH<11U`h_qak*22vml5&E zPo^_ZHggXq6E}7PPj&-$ehY6V6E6f@Hhmv9eGfi;FFt)Y7D>nhl543)IK3Ck#w~8| za-mF%__JE-d%YmMm5^gc?EJbP6Pm{w#n+9!9roWA^GD@dvV-ObyG$Aer@uNoO7g8S z4_ma0e?C`L0t~vHkwR$seWqniu?iZBo zr!7^X)}M)ovE(gAM>c(`DVc<=@%>ulQkNWyO-5s4dL5WE{o!uGG0t+ke~ zwU(u|m8V)GwJyt!H^qN4i~5z29K{PlQV`Q~Q*OT_?xiy6ov!Xf3g7iNs`fGTMJ*&E zWA5$7(Az_JXBM+-8Opku@B%8Lj(LDul?td*rHjt^QuA}GYH&qToaK+(?^qp*{Wh3W zS{l39Iq95sRQDUO@c#1BRE=R){(OQ?m2_7UTar+*)3_M7%Jj&+#rOQG6}1|a}!HvObdy?009d7f&! zc9EdvS#GSGGrdB7JA0KmXQc%@a%*p~vp2gxLbFpwGgC%0Qbu!fVouF_4|p~4I5!2s zhyYf7J3;i%|1o6W#T1H1ybHOg#ByP?`IN_ZoJ_T)F;SjHuU@&gE^rLJa1v*zWw4PV z_wCb-?rR;bky4+`HZca>65-Ow_l5_<(l%EEj?Zh(PxY#&G)pG_b(k5G;{A7dzuJ5} zr&!t#vo)_LDuNH@cQVIVCt9hh08mXA7h(%Tl z+(YzK$4U5UFowqvtJwjgw=R(K`-lkK(^Cf$D?b&}c)s48kGzSwZ30z>@g68f75Sra zDLmJRraD3_AWT+g!Q=6;HLlNfg^$pzI=K>Mf-`W})Jp+~|A-cDnAK3oos7+m^=Ld2 zSCas^Z zuKVfq>&rv(>r2FYB!BE2oPD#N4i5dHznIsdAU^LTOgOEN(9sxOt6NcJ?ln;fG^U*( z2JbwKyjfPa5&@^`Qw*@PS`d6z1=wpmADz7sx}ykM61a~%W;>YtE$9&Y56GaQA{Ce^ z^1ysr2y>oE7}UBhk)M|eM7-)Suqcj@h@82%L_=N!e>$t#9SuS=EBePHuavc}2NP%m zrg@0%cXY4O2^JyKSFme1EL(sIHAk#9k01FBMwYlwd%+Z@D~m$rJGQTNvEzHCCI9 z&yB`7j<^Kh_DvP-TqVtf)zy@aMVRmOMIKqrdoo*c8EBAPiCdk}EI7C8wd}4`29D#$ zoyeWKF%5lRZcJ*qz+9&b`VhwDRSZT=j3fJTDw@RkqiCG%NZRXpIJW(#WQVSN z2M1;4*Q-w+w~JT|u06OuMm%4hMkcA=dwehv7i4PEqlB)ca9o-K8s^*etah}to}#h+ z+9dTX(bSJ&_m^P}u}o`#RkZT9Oid5Ax+nMHYm;FhwdT#T=goHH36x;TWn8=!yXT6;E57y%@qQJl$I-UHD^9D=QC|`}x%V86yv8uc;IOHU~_Lc8y`fj!i zGl8}w*G8M_7u2~6D;Fi8#UoS>>6)DAr@A+h12 zXK`<34mHg7_T3d+?R8i2vlJHnF8^}9BONr96d-iw{hM{E5$%sr6N2^TQV9Z#K-oU; zU8`Oh=Q@Kd|6|Vd>7DsQ*rq8!CQ*l~)Ob}E69C$~E^@_3yUWu8LGy;=aR*rY!+TnF z=$=h5ib@uc3%KW6%=Bet>bJyvU;V_PW0Jz^A@bCIxi(g%9Cb#dl8ChDi8w66Ph|B9 zih>V2!+PIXcfT4JvM{2_X8)F{!)H(e{IL|w4!n{QUw_=ZTR7(?SR>q5Fr!`SBBxAGB<55ED86xyqNnMONNk z@@*qbYb&1%^gLfu&(|!mNr6qb%k(`T790Su1NrCK%Y5Q}73=+oAy3mOM*>|mgN{gp zXJ@M9>)tT@^gSi*#9t>j<{;j5L>u3HM7_JRMJTpuCuWs3c+wJ#?%*K_5ZQ%Q>~;s2 zuNM1h=tERdt{kDjUv&8V4L9{%(&E#PEH}|6P*g^YO^hQWn8JA)&F9 z_k8Ds&;UQichksd!Y}t>6hlIO=Cuxr!xz-?@!Wpw?~)G%>5~EP$F=&&gfZbm5YZYT z5HdROg`)V4VxD>wbmgat-`kChtrLbwqU87!}6u)PCjuy#*rsgSZe~ z;)5*9dqh@#w(*F`z)t$)qLB0giFB7KlIH}gNDwNKeN4ZxsLYO6A!KVXcHp&|u^~4Y z=vje4o&f?HUm8ERLJ(f6?9$2KEppaA{2Tn`8F z3d;2xA{Vs0B6Q$aU(!IxNneJ5?mK-EZ>v2$iyfnRN0c0jowATBSm&-I7@kQ6*-oiS zcT>Rz0jt3-HK`mEoHXdmzte-LLO3m>;Qy8?bwpi$idqoJi+U-;zy4@Jd-67PkDw$n zl(~k$;OsO)i6zTn1`%SF>H^Mr5w=skxz-NPMMP#<_|7C`?eu66XJg*xLkX#^8u=Lzr=i~^GLZx(PZPeX4Ef- zry-E5^K{b_o3j(V_6ErAy8TeEP!5|1N-qb%XXZX^^w

fNs_~W5_=O)-wQQGlQh^ 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

ER-{u~SPP$Uz&vEnhEgrS- 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ℜ)k*&+n7Z?*EHc_BEcU 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ξ#clhm!2qj7-iqKMut@;9W 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�gb#e^{RqzOVoW0cQGWH{3*L2vNqzKBNO)EC^4*W*5`->J*blWy6S$RLDF=Q!o`Z`OzUfl$;;;m z=BjUqeo;VkZOoshLDLKVuGeUhrzJBw*wa-s=s437qeD4_zha=^!>zg?`)A~HHO@+Q za#y@dHpflcW4_(HLl^Ix)=mVz#7&3b1XRQYi;(ykY?XnGZtL%Gp#JPe9@V*`+uvH9 zDKtd?w7k2EyVI$$j9e4O5qZV`sJ?ieOudQ{TI++q0Pwpb-#K4c;(9%4CTS^cVlFAC zHY`j1`^p^Y39P(b*PmwgH5RwFlF#nFPfjy;C@G<24^1x$Lr!wL9n`z9o^E=dgf>)` zH)GB;XX7z>s#S3AEz0g=#;&!`A4?q##@jej&#%93lGt7T5^~;O5xyG)!>{^m<>pqc zFXgu_{-2PF>~BzW+(yO<(YHGLaS|GwPnKWs-|5_4?Tfv9bjY9CY{xp(M!sbQpbX7V zi_MS6VnOGQ5Jyo{Q8F$d=ifox+>uw?LG`;Uv!N@uHgF?oknI3B4b9rQJL`7lwz+dAsWHOa0}?*NIw{x0NB;LmHKC67hsAKK)NdO5169d&u*OW zZ*1(JpYKm7(>9SUM~4X%C4I1E>F6X|*}ynGZRht;dL74jZ#cc1W|PaK^OoZ7qSq|) zLxgBLH|}s!{&rHTmQ_#URCnVjXVW$bG0WT+V|L?-$)jrMD~q#$LhzZ3u9%{a@BDD! zK9FS}XLLQT)Wjpc^!o0I*Pr?!^ zZCy%&5(y!s`GcpjxDzVWizQ5xB~}*T@TZ2yXcjs`&T)Ew_S-FbQUn&0O76Yxg=U;kd-%vM(8&d+4u zN^2hc{38TRZ|rM)z=UEPczMmvi!5c=Vg3H{LGUFwAYg^$eIX*$gPp^C3aVeQ3v<)8 zUr$~J)83gx!Sjox;vmBqgCt8fk9XU@JJHhpSc3J@`$7-)f&xE)vN>hiy1uf!v8DKu zF%a%x=jZjiL~|R}PCiLIe0y2M6DO!-`pl;IiB(c-mO1IIG0U#xZA+Q^jGlm*9o8zb z1?gG+M%UgDbZ{c{%5&vT`q;C|u`~N#kNru!@O_Za=+skgAZ zCl#lHpMC*7B<870+io?s*x$Iw*|f+O@M{(@VOhF7wCQyPO|bsnMYDZ`6M0%ewl0|b zFz4{|RZT{to2p19eWS>0?H90AQMp)vWce2U^6b~=Kd;7nv@V9fopA)3bYELz>Rmlg zY95XSI^q^zP5^4X!CkrjokPdA%?7gDML0TP0qnYN&_3T2eWH+L$<>2ZEv7-(kO3eY z!ilh^P4ZsWC^Bx()S=b+Jhwd^f8DhZNeJ%_7@7o(J4l;-v6dxNgi3P^`X@NlLWM4k zdY}B)oW-rZMXbGfti8poefg|?h0MK$jQqsR0z}S4)7v=Ynih+~c?zFu9n4Dn#Ai5n zDoC3N(c)S=k2}Qe{JXmX9a!-)P!Y{hNjZ1#PF$YcgmwXb(9pTS|1hEI61Fr+3HEaw z|H{4ZI7Vsz!+&tpN4(`*b-wM&UkAKsetlb&2)I*mXnq;}S7*S-CQjCXuZ;K++B{m+ z=+b^W@`9?c*7w|!t@PJxZn(IYSPKTb`h{&cJ4#vXCx+vH&5s3Sqk_ys^Xrd#Y!$Lq z1$;P5xmlGLZZ_mMhvc^;vxsS9Qa(Tk!bZ@3(|^vwbE$|1c2la;8|PhH1VVV%Vx3co z-wQv_gNGGGkNG!R>HD+&c?yy=dtO$t7+ji5j^m&J_%^y#7I*%r| z|1iH^cb8>7f7&}u;2T-R7_EK%90BZQxHK&T_>ZgbB2M;13WT@)XmAOqZ{^{r6OvFe zwWW2vyP2wV(HLMPuH8?Fku%{P?NL~Gqw^krrR@WRmD`4e-Nc+D1;fQ2PDE1LHA?1oi1b6KwiJ)1 zNH&rJ{mYk{S=W~6jEN32lk=I+9>d7FzX&4Gm$VOct8wa~$V!wwq@2@bAy;uis=*KZ zL}J3RQfUjt-c!G$$Aa4901xz#ZNn-?j7L`51+N+u2E%_m6cUsl<@<7`bQ=2JnbIDI zmU>WB~I9a&L*_!e=#7k;del5$~dXpat0HvwW!)Q zn5=^1n!0<$Zmt)gbH$>&)-g5Q{ zBf*oN@!t`$Kmkl>3Cbx1*AxuIJggx$3xS=EW4iR<#i8aC0B56<3&`4JBh6hrTGawt z@r8zS$8+UklOr-U1%~}~@7%mwDgN@HS=*-*ux};+yj00sG=URBDZs!9%=pADbyZH( zcVth{0qbu+IwQpDjKm{bqd@#sizk1fIy_5@9hGmAO!CE!9uo8tzTBy^?0#g*=`e+o zo|h7FcMHOc`}=e9G6fm?GCg`MsFrstIkA`@9NgXMN;QaP#b+rO<1J?pOf-4~%(&F$dp+v92 zVUWJ4lQHs%(}P1{6>E@xO|=Zl_cbEhv{w(-4M7n3$uw4@gQE$uvo*nPfUmXK02s>& ze!S0VD>B9VbL7TdnW_*T=dgJyuMS(nJhS_;xyK0*H2|VG`}ZUV_b28a)}~xb1v!Wt zSx9nFzB0xcmzW|FZmMe^CXHa@u*d^M`vQQWR)D49kSB39oyTz!c7cOi90hC+SBCE$~u_OARvAkZt z^39Zi=3Uxt&VAaCOxuVp#)S7z`0tYu!#$Kj3lsWK4aJD*zGuMOZgXi^@Rrms#jN!@ z`c-qsK%+E}?bjyrv&R1M01u5ZSWm#UmfNe7Y@a;x+dXY8x_}|w%)6E)SbKhb22tP6 zI%*0Gi{LQQ(w_)|k}HgdQmM-QTyW}JBW0YKC2Z7ODx>rvmsU&-LCHPQ zOwq&{8?-J>W?Y9(d=uwmaAi&AJ z6u|3<;&+H2FBIP&@jMpW9=4$iMGvmgC3iVHB`OIr)HvQo85T;Dmgmru<-6jZ&uU++Tto~n1( zette2>18ohj1yE6gil834wL{1!RRf)^@3Cn|EP=*h~nx&lDCi;=zu`b^C?X@nWQ&7 zIU;7iB*LW+?mjkd)(-HE*Md3_Jj*i`CE)0dZ(RO`W2xR?J2w}S|*=@*1Z?!~5V2BvFT!qwT zpN-@;CB9`8hY-1yz)^0B4gqBSMG`--BMj}BnXEBAex3!kN2qK1F0wz8T9yyajn`|xmY^`}UZSjlW0=nVi{?Ebfg)mLMCwJ2Z z(41d@YX%S$ll0AMZ6+4EPOQ`fb$9RRGaH2_h$s_-_=)JyRfi-&*8B>2cS4xrm<~C0 zi_ukIllMoQ)E+a+Y(qIgc^H||px7{J8F7RBKeKy(Z)E>-fo8C9?xBA2f|q>^ku}w} z9K)q$i4wX5V#MV1|Mf~1tqhIryg6cP4Rhq)*@O~*`~wh?m=+p=VWdnd`MU&?*=Ivr zd;bv{(Ke-zjAkMIv@4L?!V?NW<^TY51|99Yg;8iOc|Hc`eOu&--uFQ=S^a$I?KN7^ zM;}bS2tc?R+0S`D^U>GBSF!~A&P@#T@gIVE-%oL5p{Mkqpj84svN3i$`I3FB2;ojY znod8lPLmxgAQYmDM#em+b~xr?mFHSsScI6%eyDEf@q<06)A$>=tTR9?0B9AHqFea< zA?yJA-ntMMY{7l($G^*rx8(B7rY#ok`cAF6jH0;@d#j}_*4|GZ^X42q^Crob9=#HP zON%sGsiF_5>CMXozpCN>B^Nh5qM}YjU5aJwqOZ!9Bp$vd>P1%vV!WNpwKpc~y$;r? z&4!NaT~c|!rV829DI-*rTMA&#i_p1ua|%MH5bR)TG@XLy2mMy^Z{8(hw6{RM*c`y8^7=>C1%Nm+wA{6Ud2i#KV~v8PkxK zZP}az-Pgj4@m0^D3GYLbKJP>S*?2#6w#(Zu?yR-|0LjiUyyF zoV8gqiOOw2*O5$iHF#y(cKa@376mHOW#-spZH~!LuF(;;aA^-_G`7m}tt@@q( zplub^B-o)XE+SW&>mXE+VxAb<3RkoWSEjst12%f*I*u-6951ScT z6V+aUZi*EXJ4@ER8@u{w2mDoMb*0FCz9`=9P#rRUVwJ!i6z=Afq}JR6#RL-*hkqH>bfx zu2(-nw=ktE|9`C0Pr~AnITTWA6PUB{6-0l0qISM)cYOaYxtqV+HAzd*deN72@zQZ` z-1BTd{`Qejv_3RpEy?d~!CtV5WPN#g87OAlX923yFGmRZ0@S$6lIN& zCoN@gPkOfIArNcT7Gi=*yT6OZzVq>tog8yy81Ga-;~esp9DnR;7|0y@Cz^SxJ#ZF< zlAfiHyHZ-%EppOl;}z?6oJahlZg7H$DIu^Uq>g%p=6az*l()VqUJ}gzC@kPZg$ii@ z8(Zoz$y}rs#xxFz$lL(sAv4Q2R(DSvk%woJ`qxXx=S#z9sG&~)1>Wjv%-N}(!-f4H zcaJ7_kKQ^v1Jl_p%*=K1-0?weClkiVJA!}a&doK=W-(dcL-dD4=*Hx}(hxcdQ zBw?DM)ay~f#~Wb&fu*~ttP8MP4ve4af+PgRgJnb607ic`$Ib+Y$plAH{3OlYqzQuT zrPs){*UGc@_8TjvZx$USC;=^-f>1z$&B0G6&R;*q?{g0etAoE@l&=JCWP0klR$$(n9Uf26ySAzxB{1!{{&?=s zsGDG~~sfVfnuWOI{0q&L+>%Zm2)0B;UE4M1VH`UHi1OcXmHN)671ukykMM zxIL}%oWR@g_%hi#cPqc`DP$s%U6=QPbP~l8@~m;*t@^Mr-exc+9B*DF;ysM!Yv$`B&dDUy` z2M0L8DP|8oMKX-prvDHk*7Tnmsnt4{W&}-az6-A4oputShImUdt(RI{-BLjiuRBUEhY;A%6)W7qOF|73^b*ZDzB zs7YVAkQ0JeGC$nN=cqb`1MBqF+AHI^e|ZxD541lZu)rPV#eL+; zYUa*p%^4VH2w3}ym{SuA;F>=Dyv-eQ7dPw9aMxE}-kK$pzWvMr3%2F|_-{UWV#Y`j zRwaG0WcXsSSGo|Q%F5eoBc87mGk(5kc7OEy`Bq5uyJDhG;%C?Rk-?CKMv+gW5(`WL zpPAk;fAPHKQ%`pfVZGkp3%{K%-oCX582n9mYde0sD!t!K{j_?tgyt#$qHkz-G!Nd0Ecf-=VG`qRxuO}u)J#Sprao(gG9bl!%A(#gz*jc)gRgLA#p zqdBf+m=ltHAaqT#W$pLJ;O^!sY&7?DVf!9n*s`BJ1F9sFxvRuJn1vud?nZT zB=@a=YfL35WqUOL?SihvTwn)N!~YPSUyN*D5OKi95B(xvG$@? zRqjaiuTFTb&=%Y>WdLtez2AteFdS3kJ^G`yd#R&T2k%vMUMcmAn|CDDeCM8h95G1u z8b9_giZ~31PBc7SHeyW{7==cd5Y1zgxizrlwZu5W~_V_c6=u!Dovl zk{-Ix{OZWc!>UCxp%aRjLmxMgx_n?Hc8V}j<+sW_Fu^zqTdfJ%q>dLQ zxvy{CK6P{ycMMO&O#HP-qD2rO$~4;|N?;!US}phFJyjtQDt)=GP`=oSZwu%9Wk3OE zK-@R(@ct9efD7Or|P0j?$v7s+4LzgW({H*=mlLTBF#k|@O*oCvWu4zXabmRGz_3dO`Y_cLF|^dev6lsoIw-6#G?$rnk(ejGG3`r! zsUH*89AlasqfuBu=Qks^0p+l1c%^A7m?GJ)t8hbIBt8n?Xzm9FBA4N*qSppd6Q(pF zg~?P~^lRY-62y)Lr^#kQ*)aN>v=R68l+-cs^AS{6?F&j_Eq4nsg4~PTwn~8rg;bp` z%j#fS+DqF-_{6{JUx-%B256%ADY&e6QzO{y8rR2X`}lLY1V2EW+lSNUm$5?dfSy8g z_-Bo=usTZu|HK7-8B;v=Qbdw;1za6h&~S1Azs#t)b1%rzs}F2vQo z&zw)>q=cdF?*w7BFe3(4Yw_o*5+*#V<=_r7cbb;Hx{)?!ra-{eH}& zsc@Vh{CGZS+n@dpFCv8lcV6DvIPsq-olo84| z3$UKV{E0EcWG}~WgC0}{0>x_R6ZfS0pKVy68EDa5CT3mYXG9UcYbgMsEPp4S%Ayt0 z`%vD{aM81PLYqV@g5!4LIrR*G5@qq86jKOQxA*D$v}d3?0d}Kj1`J9?@jtg2$7|aL zK!#%TSnF{X8g2nJR7LX}y7HZT6Me)dpT$`^F9^jP(#1G5*BD4Px=ZQ?fdut`A!@V_ z-HQ=|RqGT6n?!oc$C}}7cwPLN?O*q8(}c5rHpxddDp)(D3G4nk=g(~Zc7CSnDPrOG z&86$y%k$QK+^cl0K)F2L%i}qxUGCgAWyyLVtz1EEpry`tOkLQRnTTJ4gqsi}0~JBO z*XeBb;D*Tg8KYIyL|=4@KMWli!wChwmC|2tlN(eJV>WcIVh&yda6Aplw>$P{$@+)x z()nsKi5d@-XavaalGni7{z(aV|6;xX5DE(6-GxmN%NHh%4HW=j!@}+kE%}$xt*N)Y zERX|xmxJqlRJ8E}8`I03>y(}B`l}LBMG3VV&orR$nxkB|PdUTFK85gO`@tpTvJhW9 zBP`3hO+Ay{r}kW0K=LqY+R4S>!J<~W0dv3aT0Y(W^m{?6JemnC&)yg z8_Sq{1Ft|gociHO9I*vPq!>jMx5~n54m+wyRE7wY1^zum3 zu-3Ry9MjdSTUHrhm6J!vJut*+|1ePLZ8?(Un^1NpzwE%s2)(NSl2|bLqhA$^fIwKn zZ5AO|mmmS!sL;A8*u5y&tXmTKRgrqn_yJ!PDmGcLiju2x7(5YLQ4qnjUYTUqQ-H~D z6ZpzT93iyR^0S8w{lxKR5qXCmRi35+R=YB(msjVY;2p(%mDr!|xJwE~#u-6VN+te} z?{>gfoR?y50Tj{_L~(Cp&zPMyhgLG1?NUvt$flS(gzttB3VhJXoDXwkD6-K=C0*Eg zVrc|m79vUW`>Q$BCMM^0Z}}3%(4>@K_B9m}VfXI_njgxBuAEk0w6|ZVuixxvUiC}; zmRlPPIO0?%+Y_Ruk-B1tVW^ZuP(%X9U>~elWtLP(=DNek{qH~eG6p>$B9Iw2K|IQE z-&h(073D%YjD=A8P^C4CgJF?z;2D!e#nHE-6-gxD#JwM#ID>s4JKRv191>)L%eC!L zF)#FRlZSiizh4a#!xG>MU_-fKNTzxUD0IjzV=nXY?kG@ajsZES!2PDuN=r}Th??-e zH$R*OatVlyq`|?7ZtxTM0l(oBno(JZOy8lykmH0Z`~wGr2{<-`{godQ$2WB*M9NQ|ic7$I1?>>(6y>tXOw!W6+#VSUC`VNE8l(C-`cPp{}R+y95>82I8A z{O06q29A`*rye2A_{a$=j@pxmCrX-bQyKDKRe+HMw66y^i3fBh*rt#BELa)o|&H`10vJ^k8ZeXW$Q|0=0_VP;%%457ym*ptwN6*}M(jOU*x0 z;$#${IIB4XDu4vV80{e9@r;Oi{aN*#uX98u(&9g#BwQN#1OMso`o=sV%^*wC%P8&8 zoma3i$a3d8Dzw4fun#DXSuRZcsZ8H#sz6x^{73Vqefm#ur{lXYhuMTn>+_fM)-Qlr z1TNn^B!3@{Vjn&oE$DgxLh=>(K*zoBhKu-tKSN_T9#MRRfct~u*15I;(0$=Pv&CCJ8Dzysj@O8)vEiR- zZlF;o16xnX-_-mWCroaDrDzTys(*2xyIVCnxsbQ*CaHU~?|*E^Uc4C0$!8#?7~*AK zC5gJ7k3Ac2IP+ccXL8s3ggr6FkaRNo^SL=WZ!@kvKxF^lS>(=W?F(8*e0x`k#ID`uJ_?VeINX9_7&0 zMo9M8w-fx$3bTt*xycy1i&3+;6JQ$9IMvGRTPNR0Or-Sf0WuKJAGiE74Z$4+ zV?pW8K$YZe^%2_2?HZJoaPs1N7=kmwd}Bs+v-%7AXCC776}le&*2sR@ODb9y0bbu) zm!w7P`~UZ)t`>)^pLOOgQT+Zjjr;AMlu?X>HqYaG4J2rXNHcs%uvDa$Ma~WLj zUc3}tCvd)Md6+f9N4{=2h26a@kPYDd(pCeo-_(9Y93_W0eDJdg@$da%jH z6U35+O2&*W)7A-0EFBM|=_Hkz&qP9k%*%?to*!!?qgVc+kA2U5!1C+Ond;J?>e7e{ z*b_Z?F7)nYHrsNxrVw+qlSA z{VR9JXWoKg!ow;0g!-tK>ljW|Jm%y?(6(_ ztefKoxDUIa2qZx_OGpSN-mA+x;>6&*I+H~My9AQFVb9fh4h2h~HaZ~PURWX|vgE|| z0n<5xWeMe#YWm8HKWv1!lqUl}Z>3FXvKsPKbT&U}Z76GPpr7QU@y7%0CgGH6bFWhS z6irU2~x;fNUZnFFJ&8p?#GG1u9*LL1rHo4o$d9%YBAR(Eqm7PP@>6*q{ zOi*`vbGsf%0O+E?j>EF2Yq7|0szhanhyrcw2wr1~h8z~Wb~3YOW$;$cKYzBsx3uMO zOz5x8bHAAS*Fc@gUt8?CBC8bu_=Om5rO&%`S7yD){n}Q(X8xBJY@|8w`qPk6HOG>DZua|1K%t{8rCkQvH_{6nJ>t02c=;2Xo2tK;!#)it5Ck>SU znvOpDFl<`jI2Mvj4$u)OdXE~*puPama`ax9pS<4+eh}S%?JSZgvOe3N`G?bts8R!| zb8auD@El6an&vuHweS4P!fgb=hXE)O?YEhJgQQ)E@I@(~9?DDlF#f*FrW%&RfZmkI zHgJG)O>G8OM(_!V69JXGWtAXye6P&*7%UPg;En%qL7m(%yP_T|bcruGRf}f}H7-P#x$V$ye#kBt zDot1xRRo44QeCsi@%#w|~izz(g6Bh}Ed@CGyHx5t&9nJav`3}Va8~*(; z8Gzf|WJnLiG=hP3^(wL2_O{U6!u43ze4B3!lY9nk%_GUpIo&kQVG5%R{pEN z5tJzTIW$#o9|jKe&IQKbEmiQZ?OZlXtyD#-=}{O`x#<|_F>nAM)v>3R1Wk0&1A=JJ zsmrzE(CP*n9};Z77LJFK+-5_`VdH3(^Cpi4cC@)ZD9)bhAN*wkByHb&Y63MHjF}Pe zne&@6$6jNDXG6Y+YetLIlE5I9jD^9IV)EiG+$u5g4X>3t--0dblfh;XnnulrjJ_FP!Oi zZ$;t9cSS>K1&JW9;m?Qcf4IjeX(htG^e7I4{ruo~p4t6lQW5M~o_JvAz5|HF?OssJ z3v9Iu?XYMs8^3}UJbNV#6FgTt=N~Ok!P9(0J7W@tuRk1=ltL&$yxmh+J$oj*LAG6d z0#dR;8fe6HrML65*^Q2x-|bxRDpCinX{W6}l0&>!T0V99mPpmf=yWf4(p#Qcco>;A znpRN5jvLCR|HM_aK5Xgz5g$j=oKtTc!bWa)6G;xllIAAd3*Y}_yFQm^XoF3)?PZ16K8WIuW12!vA&u8Ss>n-AO(uQ5bg%lMK zB28dT;F6uNveJNC923LbqiCTJH(8ih1VJKnrWgbmSEB-p{N+2RzoJD1P!HhV{{tPX z12_>^m#{`T1TF{TAqI0mO&vZN!@a#FbiNtJ(~SNV>$(5DuwcGuYiH-N;0~a82gc4j zysq^nrfa^sMU7RCnSN1J4MxCcl(ejBTwsP{hC{Zbgez=ZAkNZB*5>nBQ|aIO1sWO| z8#%8$zp@Dk6%t(&)6?trpS*SP2W7&ux=UgSO3EAa<#(wjHl+MbL;V4BNNn`wTMNO5 zz2I{$^XahMo)?CFm{aD2mFu1~u4@h>(4hymt0eV9pd^SJgzy7O_`3jw4)(3rx25GD zm^M*J6{Q&|U#LO3E^7EImlX3C#6-?ONKkl~T`!n2D{y#$xG?9Zs0t>YrqxA5pvyN>oDK)-nOPzO(@7K#q;8%b{=;BUs`j?$qg`GaD zzWA|3t%m-98^IKH5pW&v{AgX3n9<5*7gebK zgCqIf*5=2uMjh*#Ovkz6T6i#lpsIjfMRwi7-}1~l4HaExdZk}GgFmqSUJLkZ3|wkd zTuR<2uU2)=mvt@|wr&(pSba9I+s=U3^xBv7*3)sp5Q0A=u|f%iUpXPudDyLkFT*~K ziDL@gKPvw43W~zCymvEggsLwJ6r+lQL$bi?2-u24Y(s*E=N^u&Bj4dV!O_jE)mW-5ZzlXvw zRiv3f^mpS7jKKxJe1HF?0Z_&?T3=hPHbw?$_Ruy{nOdawqY+KPlHLvpKIPx<!!w+r$^IA^%h5Tr4It5xFO^s38ZhA z(Lwsi)QO}D#5@dnk2G|DUsi(k~ z(7ov!Lo4`92y7?=G|fmsl=?e_HfZ3>SOXVFK%F2ICO}!#R8@vdGMEB2PUI&>!FZ$t z^R(xr{o|n=dY5%iaa5&FL)hcs_%IKMwY9TW5t;Nu(N7{hl2hhW1{}m5|4_d`=9R`P zU&v+J0QhqIcvuAq>^K%QA~%zHyjR(FtN6+KRSsXGa?Yx2!K&CulC;z4^AEwUh!7uE z7s_kIDNG|Uvc4U%B|O|IObNDuz77)}pK zfudd5xGONt})xv{5^c8xyXzjjTISmyts>n(%Y z`oee7gaDyPfI`t=6MC&iulxP_)_Gqoo1=NV^i=q44-_Q8_N%YGXP-B`m@b-rxa$tNE%v)D`MK<&lRk7)7wlL6?zNcz z=hlDgHh#MSL89ANaI$M^NzQ9yBAk^5op}zNzaHLbEV)ZA1D}Otx*F^xPsFBc3z-YAy(m*`+bvKdmgr>S zCaAyh+T4rB*o)WDjmy-7olA&@U*sbfRJKgI?tZh;VE4vg?n2^R6o2-fQ~$1I>Dn`G z{l=^BhGFg^E8;MxR8+S9fphgPweiipbEt1^UmJf>2LJ9#ZDEg=OY46_J1|Y_m-{6$cdrQ^nU|tqrahFw-S4K?hiLxcE0jL$U5e{SJHj?!|Wj3Txh5dOnRx{r8vSRNeo4XKlIV}x=2175G7Gfxzr5uwacHXse z&sLHhh%cl6g3-RCToQlsTU_3$31s^!T#}or%4q_VvdcZvn7M4`;}LrOuDV06i~S8t zxod91n;wWw7kLo|Y=z$k7kAUUqoTF*j7pOV1x49~zbdLTS7M=%j~CZ*_Kj+`PNkbb zxNB`bkEFabFhFp++$+P2K*WHmMN&F+Ue{_d3NOWAdfM9`Uq1@3YtLtAvz8El(-*;8 z`N83sIU1X5!I-&K;?21~3bJ+lUfdZ^oyMD-gx{e^kH~&`wIA;=NbWFD&NfKSHZZ&_ zNUls8ST*(JKRJ)TDn1nJ-DIoXm4B?CtNArkMO2hTpeA?Imwk{)>`prbubaqdnMoBV z(6;@w@w!a!i|&w(ZtG~3SB^%)LgrszNMf=RO>$;vcyDpT#F)y*?mp5bvOy0!g@1&# zfe(EXiw}sRvj^AW>()EZk%tw!!&^FU`@;v%+!fn{FnEF1A4;c1s*}a&%YzRPSCTfN z51h`^o>@aq)g3Ms8XY6pnrAZ}sKsh_p6i|Tq^ALYD!J?^@&e`GzATL6x*2t5+VFWQ zN&QL*{xk;#!Rvtwe69?e_FX-*Vs%=!4&88w*?D(2Tag%>Rj&TT{P_L)-{=sm>7J?1 ze`UD2-tqj$bMB){i}Cjd_rJ+qN%S`4+BeBBUV1@!4rN;0I3263SG1cSN9+#zu;h(- zRD7^+u*71Z2QC|N)H=@!USk&uIl}sXhy<7dz?`k7d&ewFJk~`z=-Nt9<2+U@~!w#izz%RQmD?)#TO6QVTSmZHTGTC_h^7lyY<`V$bV9R?d0kEv54B zvH!sA&C8mo{1cL(zHLl#KR|c3!G*BrDpGqxSsG~bS==wXjXpVz8W<%h;KQY~h0*QB zq7N(A_6sFoBHXW>=*wdv*VsT;{FpIH(}!haOpNt|`7};^XO`4Ae9(m9Lc?F7$dVN+2+#QukiUb z*6)i~qNz&0^4lrNmO$Vj+=Z)x91pHvc~V|qjjL|a!Py}@$o0_=sVHCK0Te@ueMhN!!+3W6%opIk7;RW#!bm@eb8b4NL2PzT z!Y%Wks0-(-rZ4gCA@&H9F$EZ2jB%avOKpHQ`b_WEfIn**W4feC$vGCui6ffIoImzs zT|xOgTF5iFB2Dubr7lmyk@B%MNJ7Pz$i~tChXEDmqt9o{YABbLwQVL1QGD2!_Fgx` zQUvaFVVCKP;*QOon5}qzNUV`=(nE#gPHULMWK7I#=Fc0qq!n&MsLOv131qi^nSQ*! z_cE2rAO60)RnAWWwEhd9iI^|`58(&SJTJ`@{8NAZ5JVZBmgTO)5$)@0+7`m9DR!YJpOj%&s=^wq?(l7t6nsgW8Np{nx-K;6go~ zB0+Q?SPTDZ20cpc)5aI{=2L%;fgNZTV#(3iAC#id9b3u!-`aMi2+n?IN0JaNviI#- zXZ{B@Y`)j4Joo+9Ux?qM>GTEF9F|N}tqoy{M)IP*Y>yrLMP4+t*$rvB{I{{82lmKq@GY=^*BtKu$RX93cdH zqWhTnhhKZ~GD`#>=WmD#>YE`8sPA)nD0}`(jD8H@8?|p*!svv2#~JO(fXMDX7;qn} zEm8=n1NUWxTO$k$mW_hg|DmE4P$WFZnx>)5ykd1t5BVS)nL0;N6+ygPEd2(%Pf1od zpeqKG6$2dM6Grv6N^n+*6G}q$IEO6;L66kPLwe!YcE5U5RjGdbXE$IRgG|831LUMO zvQ2Z}*(^D9J2Z@~ZtMC+)P+`E8+89BMM^vL<54&CCvhoQ;aRHKq%R%6_!_t!XE`Dx z<$dYpJL;Y_{PIhTY3@{lS;{rG`5nFvIKFt>Qu~Vv`-m#x%O}Pd`syJdfvALlBPCJ{ zGC`j;uxf%Bz8@j|FG4wsut|oA!56!mwTW>~JP8o%&z~;+y@~%*bKn4_87laXR3GC? zz9(Uz&UY#_k`{mQ?H-5=`bv)(>xF@_;ysQsgYyVQGP`ZTxSq%#EQ7YVdV%7rl8u~& z^NBl~^;MCH4)DZa6f>eQM21iNVWSK>wfCu6?R1Uwze7AOt;G5=MwFA(&YX9)lE^yk zj8DF?@I_6C-N!2d=m;ClRD9TOZ&&@uo=k9#jOA(tDsO6TC)#(2>#vx`nhA|i={5L z+MM##ET2n({p`d$>bk{@#*u=cq1R46)K6DmB@*mvI2M^%sSb{_rmcv$PWY+1mN4+d zC^bKJ;Om4>_h8&$H53fY;<3@?16pv{t=O`U&&z~@A*j(kau1!CIR$K$&~Erv_0mE0 z617iDS}pQ*6d1mo07-85lV`-q{g{&>zV%yN5B5f0XCrApFqw=kltw_W`D=#hnc>29 z4)(f9s%Oaf-%x^HytCaIHmdeF6|dN8M1xZ#_@ZBjM=b7f`yOfSeaS^Z7ABK=;N~NG z7Nfd_O9FaDm=$Zj#j|H8j_`uR&sl-=UIL4bzrJ2MBqjv+`;sEl-PTzk z{5{(BE<(bKl13Ty>cqv=aAjhO$OLR1Mt(8Q+_w_CtaLtm>yQBzsvHJt4aI16lBALj zzfU;a(*~8b+}QdvcK86S3??6>knNZx(sT7556XH4Y?N@J42GYh2`+yes$4=KFdvNz z{ds5aafyC#I}H6&wnMfY{Fc+sxyO~RACt2>eU|etci1=Ab~B2g|H`L!!*mSxk1qMv z+?t4#{Al}r-(1NE)rFROOu^CbCLQFT%`Yl8unC>;BwDGiyM{jmmIB-3t6tiMfnl@K z1?q2|$-aK294-*SO3Zw90Pj*VPPL5Mm=iQWAU6^{t;LOla*GaNA_e*EpWyV<^5 z0}}Zf3@8sOI{(rT34$6!HuI4Ec%lR)?9-kA{PJv=y1VA5i-9iQBhbD)Dj)NT;s(HNoOf_T`I>oImF)uvxfA8sYZ!~o{D~>>A}o1ZduU(1i|>p zlJ_aSh>a0^F+QKr;z z>u7yfb>JT7X{NHK`NffFwx-lfyoB4MQ5Z1#FFppaCb|mXk8p&*cDG;=Sx0nFXVFu8 z{n>lX4Hq{1mIS-zq!koo2^eEH^|AgWVgA^qt-khPcGUH;DiEC}(dy9szYrlSpLhRO zu%$L}j&PGT!9bGuR|#_&^5o%woQC{&baZ335tKFc@YiwDkLQ#MRy+MqI)4I5Y`X#T zcZQQEUnfs22X7LmsOzCr;ZsTxQzYkVpLbaR&aZBL0(CW!pK#;9ZHEVa8a1o$3xwR( zDh<{S_w>vk*7eve-CTjTQriFXBwJ2G=Dch6+%q4ERK0U*KHgU}Jc$?45|wy_E##Fp zw|%1JL7c*0aC%VedM>t`Tt|Oraue51nluu?sJwX0JJl0nWIiIoX}h0PiO+`Up1dX5 z=?N2I;@|JrJm0jAd=jyVJJqKFOzWEq{m^G$uzgjxJ%iew$=}|_Df@)lP=pM1hjVm= zb99GsNXwN;$(98Tlm)Tb2A0?ceK`!=PY$$B#x6;(%{q5}ym`ZPaq;z#jaK-JNd0lrA=*TnB~i5j>tc8I43Ai&E(ZwMPQWM!pb})vh0(gfXBYfz<&LR4A!s5bLne;jV6E_?C0t z-Vo^`zrF53IQGS_jyuf*Hzs?bm>JqEiJl+A^(!G%&EnY|giJKQVjDh~_%r7oJloVX{k0i!P@c8DHPiR z@^hs^hO8SuY-?_~;rcs)pZ>`=;}AL8UPglY5sP;mG!AR&-=D}Rzl~-rf5Q!3mKOY} z(8!m1VXphs-p8@WK&M>FHC$sU{G0XBmDBWProu_x$NDJ%05(zBD!#K?&)7*2>&&h- zo>vjD?xW^h+UHtxvaqc#vaKo-x~x+I+R-rSFJ7!jM$-55I}{s6Lx2t$7$$h6qag#g zOm{fYA{v4VD04;rM|Tmqf+`?+iOP9N{Q7=<7nyi9S+y(BCF;4CHOA)`0X%v_ zsM`V0ZP7)_88meT?{&2GikD~cKL zGo2CEt@puyjo1IpG@OOXCGI(`p4s%3h;%P7TzvcFeec4Vb|K(~zM(osgSDLUw#7rw zt+RF<7OsO6V~xt)*H5Hb$cY6&CquR7?9LRWKqSEV+|00P2!Rl1Rg~e9qP3SUpqE`_ z329RZ&^&n)1H*c;fxdE^ST`N0cDf5^SF%alzmEcxx@z3Sg{WX(eT;*GCW8wa+0}r2 z@L~?Z73eo5x-quZz)t)-DNvi6F1FcPfJvjFNJ43qj=IqO?-aRiS$0NMwr9hmTp0T0O+HX#){U1!O*&L|E89vJ>CR~0Q>TZ#q{l9& z_Z!MyVFa4Hknc_ZL^|O<_INMhpPnNV%6Fd9frv4sdp8K#!22_5N5NJ0AUG9{pUIldO(^t!2ij&xQxxWmoxXT3{Ua@>5-1 z`AZ~U2;(yxcz*Jnp8_f{;Wu2LW_2bjD|vR!LGFUFLAS%AjmY*Li~eqq^D9~=*^ZXB zRDETRaoJ1qmN#9H*TZkARG)8%ZOb;98q~^E5Ljw?V;Aa8vm}MQ{n9jH)Hs^iG3*s~ zFl4j->+J$iAkzIq&s;Ldr~c&DCF&7d>9>}5b)d;Zx)^*T46WW`|Cg~v|D5p1n#A0U z)ft)|{RsWy+fb9iVT#wwJ#YEEE14o%Dg&X9$d11iW>N=u80Q+#@u)vAe3yL*RHb}q z_Msi6Bd}(uqk;*~h&QQ3ThyCrVe;$}a@IJ?-M39x`CePgA!|{x8z2K{Ib#QRIcG6e zqyN>?h+urD%QNQyLGAP&Lrd4QU9JMeh(rcqQ`;xKUVZXEY|pCnWkZ| zBI!@$GoT?Lk~R#eNbF*C2@k+piFD>(;@gXXL>XS=@@kB889jpdts2%o%g;=c{<6l+ z^^V_tACs1wLs4CLy~aqV7t0VrNo4MWAhBEhIY7iSRx!_q3jPg}ZTZ94*Flqu3+q_G?QAr1>E>DLF6{=Vo@6Eb?%QN z|C62!6#q8##|s8}cQ7FV2fHrsq-tj;(K{bT&SXnqR2UjOPf(@KB$xqu8x>4L&*1Iz z?iPHB04nfz*HegPkcXe;<_{dW7)oq+2Vmm?cIZFLr%wQv;rGn^eB$` z9n+H_!*-=hV4O#Qk?v)7ae=h}VIbC%hz2}qoq%V9;{JqTd6vppsH0!%ciNd2UPX=! zBNY_;n)v7JSAnX{!*ZGxlK5UDF-re)UV9DxgJcmy<2rP3y^H#lM7Q(dwQ-RNeO+O2 zX=hnAp>Bzn)znYsgAFL5{ym zi*J5#W^r(uZ|huO>twCH=~GILV56Q&1UNvYM8q&g7pvvB_#Mk4<^lMyPpPxHt;1I| zSj3;1BDgq6sqak$cBG@ zynHHt_eNIFYK&q2!!W~d5e6r`nN&Wf38L@-Px%^_LFq66^&!4=S+QO3G48KR4Rl_I z<2f?_h9#G1Vx<&mi0VOa&@vC@;`|k=I==C#q{%kGzX*PE<+?^4WEdM zyo4#?P@vxXcYLxDc!kQ9s~G+WHiqzFKqHEc)bWDGiT*tjz0ijj*St@_->V+@>iW1_ z0T`hEnvy*kXXE3o{``8lYcMAow;!!_hx9qxJ!-tRO6l6w$xRa8&}yF4<`hn^5liu% z#fXJk_NAYQoUUZV!&I?P*D?xyR``}((2g4r#k3;R$JLcuXCWzFoy~D3?4;yxMvcur zK}ATYx{OLmgnB}E*|Gq%etB9{aTDH$6NLc@5LVYn(vz4yWQ`FdPtjKeuz;EH3jVSz(&+(=&uYK4y zDB^mbmInh`TJ7o5CpHa6MWVr5(#V zqtcfr6d0LK(eWbC$Dh~@A)-QVA zejL45%)c$rAiub^CmnDXpeX@+(G5pWT@QS`8P?=uJE$!YS2}M}yKx%^4GaRSGOGP1 zuN*RrX-8GrOjq5!dG*p38m4HWM@Xp`nXn|QzSJ+U*pp(rR$BY@LNH;ox&NlQ|4y~* zN>nIzhK^~kv1pL3M9|<^N~k66?*sjRVg!!tx{gQg^fu?6rw3bsJikmMSvA^mmCPq8 z;wZCtaxZ@}AuMJSf9=W6o#)X+nk6fkl$vo*0h-yX;+w1F&CcY_^nH5jrT~{{y z)&l2L?TPCJjynjI7}CY$eI}Gr)5QT>-J-APa#`@!~UxUcbOrH zoQsOl3x|mlhd*cP2HwwWg_8O9^S8i*q!v%zekvSt zC%40zXlt5jYg*ri`&g$>t)BD8u$SJcUAE}`^KSj?-Ae0HgxmB9s%!C$<1AydYnaFW zGWf-94}6vfS}W(9{fCYRYB;GsPZlEBp6)M98syF9i~2*ydu@oVhaaJ~D`(#Pp~U+m z`Sb+V#o0=CBKld*;Yx_RcUwhX`5_aW@X28JNvYY%0XgnPAL612aj~m$VO4(v9;hrJZXR=)noHqh{aO5n-=#Ss1U@vSzi_tgucBY$zaa!5ux$FlQ{ko>Kh1tC*$@T0y#l!a}79Z&8O)!2*fs$i~# zNtBmaf1RkQ+jB1AM9zJA>e{uy-^mQj{EWuAB^D`BR6HrJ-0#2V#nWM7XQ7v7N|#hZ5RZV2NAJH>82koU4=GXg%8~YH$8cF zU0>L@CfhZmoP-i;MEu8iP3C_lt@fRNpQYixx%;nsie)BfAF(_a_-B3excWy$Y-V(h z-%0>f;^YEKc5uqRw4>Q)p~j%H{559Bu;V)5n)lM*!odvyfIh(=0Y+{%b}SZe(=u*_ z1?5`1q|4d+Vj({{c!H^BI6TAgj5zYgOs6YJ*CT&!a?uf@1@O(2456 zmW-gcPq(up_o`Jo3p0ToEehDW?1?e&;~m}}-PPR@KE9#LhRKse9CowXVml}_{&Z*i z7<^sNIf`AFd-o)!g}WfnrC&q9+MUz9e#)$We{{imsmB7~57q0nTRkX6s8u=mpW2JX zF8s19VZ*Yl8_(}8)DqUIc4(44mb)Lf{VM&ip}FK;H+(OeYI*4mFTHH_&^TJUWxnu! zAgq13iK%|zb-sMR(0fKaMN=T^Jn!s2Zf`a1Xg}H7~fJQ<>8PFPjGe!KLemvkwP1$I0#`RX|#y~ncoes4v?1PK8^PfbM}2QM4kXM|v> zuP2Sxmwhz#)_Z>QOaI#0m87*r@Sd<%`u<=;QHDS8{=AER>riY8ad#JUKF*b>Lic3)blMXGVo6=}X{Z~WH&8UxB+Wm)DxRd%6idt$Im0g)%3N!UD6(&!oK zkcqm$&Dxo+bDuup;rw(%{NJQ95Bl;0x4dK3$R{-Pc-?n7F)JYn6dq(@R|kY|Y%eqs zgJMA|RB6INjuy{2alYHAqonqHd=ODxq}i%@q(c5Q`oNePg#ffKKna=^#>uO&0@42v z7-=73LyVFe8V5tO-YRdPeSy*kJhkxlqM1Qqv7F!bH#7~9PBBQP^Uvyp6>P3a4FYkw zVzt;Qm~erqVv&V(p-+u&RhHY0|E?s~PdM!|ZT9i!^GarUZyduly@ zs8Kxs0yf{6yG=O6UGJ9J7UfO!=^=(`gZ6) z310dO>uJ_oOl{BUeGChnZ`CZO{4AR_g`{(UNX9*ZVBBOIx7h0Sx?a|_({EV10x#<~ zPH=uqH#6C%azc7cy!6A@IF?NR)YE5t6$BoUIxF=1?p&on5+MAIB}l&a-Yp$3-xH0n z)>#o1g7PppUZuVYvkZd1b4v0xf@MpLaKUIeW~!acEv+wtgy`#>$~Te3Wk??kM>1`< z7OcP%Km^2x6`ziL8b(h(E#MaSE1jCJS;v%~&)tIi*)G-ynKfxwUJoSgtE@=^1S1TT zw0CIFHA|_D#n%h*g&_Hk2K{<{it*zRXhZ0*eJYS+2w0^_J`@g96 z{?(6E

4y<4kMc;i_krEss9?O_F|#qM+{lij9NgbH8%*2#{`Sqlhfc6&RYspZ0Q* z1%?}&-3>84#r6i0dq0s1F&;c$2JP`wU`+2-Z1D_Tqm`n_8yc1LMH=6vkd@CaSJ89B z?vCtq;wYkmS&6|xfABuSk7AGo~dVSjmB>f+D>um|-JFy27i=kYqEG%kG zOhjW4pe4h#PqD1nMd(&kU~GG$VmYVB$B_@t*JycuokP&vJNvA$s5vWNps$jSrVGJm zjze3Vl83wEN@-t7L^Qpn=5W_#_UX|P*kSWcso-A?~Iv61^9P%NukNq?PN5*EXnOds0=TYFS26{WAh3BTWF{N@W07vQdu3 zhg0@-%f+t7F@Mnf%#-itr!-(JGZB*uI5XG%E3_?HY4}OQw{QciT<;Ryn|J09!nIPU z`DaxSCB0T`%<==w#xP_4tnnE(>L%r;pGU6Myq$1;UkHU6^Y^so@!zYj$EJM&y~|4$ zGWnlFX~mjvbSl5*+U!4z(=?(Ih*DLJxfc31a)a+AhVH$ILHiC-&={j>QFjUW{&aY7 zB5vsCX|PMN-~nO#Ds_W!2L3YWl=@lD=dFJK=@z1MDI`Uj5inEh;7ss9Otieuqp}0p ztm0gv5wlQdSFh_@V3Puc<^Q^xA4ZWR8@)XWQ@ZT88Ck2^(FIA$BJr~?&9;d%@&OPgPNTbzeL#rMev zBWD30F$sx;X#;q8TfR5y&unbA?CYl)7&CT4L~xOLs>>|DPj;C&zp~%KpPLO~!(r3T zk}=U=U4O|`=x{X#cQAG;!I7ZiCg|$D(3U}jpX)B5z%Yaoy>WI24L(kmEpJ)D&#$D4 zC11`B)Ev+J6G%0Y+c;S|M5+|V88P@9Z;yvxifWjWcBOA2t07UX* zJZ}}l{Yr6()E;Ciu0UM_>N6r2w(onDIF{itT78VKx`yFGxeUThfEd*rzK9ToB`i7= zrB#<6Ofdc6tvr7H9sk^$-09alDjzR_s)S)p!+yaQBI63kaGZE!2+~J(7W8jm_%Bc% zYG9K!U>5U~ljyt$rJGXXLoXRTn!jU$F3I+>IO#$Jh!WDCWc0g``j9*_-7_qIpx1uf zBKeonnxrO7|1~KW6i80zCQ{@~gAz|;jtl-`sYq#?`uU#PCy=Gc>4|1Jz$pWmmydvo z9}||2kbPWbdONAUA+}?IWtKXKNPVgv>P^s_FpBfszhSl-%!_L|Vl|v5dWkRHHi8YX zixb62Y2{Y0jJK{ilJ+GFfa2(D-jb^`+R=<&vgS8gFz6Z1ONL9(&5ra@x)71zQNaiT z9Hjw*_jJEy)-6EfbIAjJrwuVG0V1XpO!wPo{x~10)2Di0qkOW2hr`5T+M9!|#!T{- zav4-H*egH+NP5a;rCuPye3b&@@6&Mca`(`FFnqr)!)IgtuBN&hU_$fH&t6_irFN?Q zWkHin6S8lMCJNlTzA4hymI?b3{Ii|bTc&n;r^~7AjS2G@3N?Xw zh}s0HZV{$)QTGFcE1XI4!E*f6t^HbR!-Z$lOK{VRf7g`*TG0=llc;wzn`tR<>KaJR zpCiA{5ghyvXxtb74Yz(H@xhAT;Iymy0M$#ZQ!N=+94%?(ut=q*PEt9!mi)ziu%ZZg zz@i=b?dwG!aIt7r^KR zWD&jp!tv6&EEisumtt#NT3dPGY@h0UvgnNWpK8;&kKxjzaydw@8D%e;}8;;>Qj;ih_-?q}P@&a&2*Py5`oj=2f%jS-s}jyzI(z7%2TXvdzve3U@ecS6I3T2@DX>V|PjAa7`_C zp)GMgS5Bn~Hyd02IQuP0vEo^9iQe_+(ErUU{vR0mpRM8l{q3BtcP+Tw)2=W9DAS65nQBg^JX8nR=am^og zvp)27{2{epPNNe*b3qvm_*rjOyHbc3HkPHDoP|fLsdm(HtANI3BuGH43QQ#XGlG&i z+f*GyW~GCFTKL$g>yEPfBmgZKa5zwW5!-)fID2N@d+ajWK)5Mq`Ci6xM8n>=lX%n( zGMTjYSw1wD^4rZ z8YtB94Q3gjo|>)NqQP8hPqyd%PaMd>%UtG+M1%3e3*ue^;?tz~i@B+^C|il$ooB$l zvO4Me;YE*0rv7*+r34W#h&oTqA`U^1<8DAAfp+M0sB*F)@gfy|+AzT}jZbf}hn8kn z{~UD^NirxZ-=4R6W3U=(Gtm*3V;s(^j#w{3o%;2@6f*g&@TacGeEd@skceNxS?0N@_4LT?{7)SU0jmPj9l;sw2w1RQha?5*bA?Z@qnrX4+pqsMHAwky|9XG<@< z)=+NxMC*BfXE{Z=u@}97q47LWMT=RnKYRSyzv^xKo-A?q``RLM9=Fhy>c08hx9+iN z4w?8kU;E^wymu<6vXvvwQ$^rJ62P&<0#Sn3&iqQrzOD5lQJ-Ojbf*{mL0n!r7iAt@da9kr}pW_PnG$e_y*rd zlxhjbS?yo%sj|hZoa7j|ox7~fO0t3em4$~3k2IwO#&@FfaGQ)r_#|7bfWXjq# zIUJZ*+`f+vLqWO$X;eGRBNcH(2`HuDLkH+}+OJESzj)l=Ubrq8oiY@A{d`6^Pk9Uw zi<9Xm8$J-5%suw8PCgniG(v@gu2fw>IoD@sm6wH+r%2L1L(Vz(lVh>dx?<;TykgqN zHO1zP!ZdSr(S;@ekm98Teq6|9f!ot#!RvhceQi$GVUSx)K-RWd>Xc;fR-(veOW1I5 z#MK84e8^hmSGB-|mCHK-Km&|bMFx~)0;`XJ#9Kw?HxziYxOK7=Q}|P)Ho~a@IEJka z!I@G8H7YPwF1}WtyX7HjhobrS*nar;=B=72RTx?bc#|@hKsT1QYIMKww-5NO{MjnP z4=1!H^TO~Vb;@#Jl&=EgZ*s)E2+7MtmOH%svHE&9lLJ}H*v9q;K+5G5{XvEAS4v4w zLn6lNaQ~?vMPSBM4>BDl>kl;x zd{%mNd`LQ-+K?#fg8<#!5+l<;rKps>QEGJh(JF=9L&8>CzJ-&^NiEB?y}o^O9fS94 zyW;JgAIi>>bGu74iW(jGwKCxVYuZW`TZ#Lv?x-azT5;+QWG_hd*6dMZkKw5c3U;dM(nfg3#EFi|A09E97xO8enT+yE>-he zHeTI}x17M^$a;ZWXP{Bh?`xEEQY`^t^w#!_QL}t{yal+s_4E`+$Gv zV|!fxOn-G)0@ZHthOwTpb)3p@^x2X-+Yf@ z!mSwQpAROr!~QM=u!Z^mi!Ef^1NtOB5R8gx-^BWX5K5P1thQXS8nN70b*WExM^@kk z=K7J@KWa|6m?#|OeLo!q53Z2Dgkj@N%jomBVfKTKa8p(^ig3f3_%f6ElD7F2+WVci zzDHDnWo7^t5m>3vfN9LQ{jO^?9`}VoGC8Y4usM@dm=A;k>1!4!Nnp%)_N*Q4Yv}wT zU3MHqLy8qfPv+yeN)Crf4iP^E?JK=Wa7ZP_6Qcl!$@%QlyAraqXe+hxw#%(h_8Bwc zyeDS0_wfof{ftj4DT{v1$nW3aJMryT=;QycinRM38cgJ&BKly!1_0zEwm@#jqO@2feJ!ZwB-ajVIQF)GH6 zznk{m`CvbR35DlJQT06!{K4h9QqJxjWdxhw|Fr4!WqwalXVV9=JCzu#hVc9iulono zt58m;%d!}AA!$$^#BZd^uHutpix*7-WIU6+Dtl_FE<&p|u5*q91JHU* z%t%et=Z2pQ?BD^)`6!ELIQjjUFdP)b`>{Y2V)14S1;H3!ls^Be7lMfD24G%@}B1_RyiH8z86KgKsNiW)I&H!*L~p%i1Ol0A0Q2GX ztTElk2TuIeK;%`3?>UT0P`?jpD*wWKn?gAokZtJWP1&Kr>W?jPltJ0~kGg;t4q_bh z_*JB}O2ffk6paC9xz}G11{V}FbOg=ow=g{T7+>rO|@FhFB7ektnVQL)4BG zHe+WV44|o2lh&sjVx4=YXSed}^JI^uLj^{4Ug=?Amqq$Op0~pQKZ=Z?HQdQ|U%TV_ zN@~565zx4t#VSNWqj*3KSR0SZ8X<#zpSEg)icEhv+6$iHZiyc9v5CjK=nV&%x#~UN za-8aCB%*{in}eZ1$J77BkCwOJ|G=U3o)-+(Pc(t0r{{(DgVo91_x$7qgO?#V&~Hxw zQ{yx^5OL)6yZvoV_r5p9>y`sx`b|}p5?f@fLO?JlwkWt8BgK9Ty|l;u3+;O<7!Zkq zTww1F7X_{NF-p9r7V`k(Mv#BNJ0dB^pT^L~0z~uHnA0MBJ@5I@U)p5>TFy|&yFb7Q z6Stp$$Vzn>!(27pqzy1!IAc@y?^n~WgS<%JO@lq&5V`uiV8}MQ9e9VWFBvE*KJrKa znQOUiea8I*`W+!w#-Y(jK^(wILj77`4Sxfa{6HXZf}G_+K??Gn%umy?pBgq>L9DCD zMf*@ZdqOQ22(`w<0Gt4+C-X{37QhAb4Q}sK4tWPMWqL79rG5E2c{2|k%*#eti7<1iC~#_wmqfViqc&>GxR9X;2At)n z1mIlw2MU!U4O1TG#2WCu1`QC0GdaFWGwk#klAqwAr8@elJ5bs03(UBnK6Et%nqs== z+qz;g7&W3*n!`;*bs&*PN}SgBBF%pVQ#Fsy#Wp|>hwf{)AK~6nZVTPINu*8QOY9M@og-P7|r zmgHYp$$o|^zg)#ukX;Qaghx9{J4_I3+5L`(2fygv_+jr37}xd|_0EMf0YTzFA>C6U zjUyqQBaziJk2W9^_u}i|iTHt=$i53OR+YJ0Bvv!^eZNANoI;nZLf3%8i#W5-yC;w4 zLYZ!WXkC_sle6O8@b(j@#T%!#3mc{*8^omz)1}kMgXQ9l;oyn&;F;C_9eD`PZ3p94D%B&B?FUat^Rx{N1vYdaft#F#m#G#y? z1C~nzEA3W9sa(V^U$?_t*7d@tyL*&@p5=53pLHL>hX5`vtNEV^HD>*dN*i~iNOTjw z!Q$N}7REFknK$VpM2wIjFLYI2@E zFL(aT4^7&k20dUy9b!q?y{bC-lYKYh@2Ft7NXc&3J#9iDm-F?-3Y`8T3 zrOsRS?rg3S?3gh9OZ-EpY6W1p#Kf}^?CGD;38_y|@1NFAxmET({~jroM}vwa7G|{< zBeKSr^Is}dvNnj4&)cEIfDRM;efW#6*C$9?%6RAy;0V5RFSxt=zU^3c{b~1~X^D_B zvz@O@S4#R{F0+yREadN0QDaX|^FM$PbbDlJM{%?2RVB3=`xJ*BK<3TYxz$_je;s>+ z2ls*0&o|k%cRx*q7?#YM_Hr4$@^mKp$4pjEh>^!Fy#bUPaQpm9Qg{(a zvgRzc#51|OH<*5N5OuQ{wRvBDu~-geJm8ier%Nsk60Vo9S;MEd1lc6-!hdzR<%|Jp z{qeGA$YsDk>5Tl?POQR~Qmpl@jJ;-;qiS28zc6B=SZpCslVF0n@cQ_=T1l?3l5NNS zizYzXWwcIPG|hkMJ*WVj?cnY+FTva26SNy+~|SVltYmi4>rv z4A`E4pz3B#5Tyr?5QI-s`|My~h?1Kd{lT zr^wnLx-;^R9RL`6`r(!BG#*cxb7JKjzT)N(f8ofdgeT*emrpLYF)Z@6Q;icKoS)v1 z1YMQ8Q@kD8kT;Z=`ZGnf`{ag=+5tbUobwYY=A)Sk&A%a>V4jf-svS<*4!An`SVh}C zsk}c{KTzQB{|N38rLkOAYTw(Z`w{!muiX8JW1eZ=(LZ#$jSE_eo_P<=_{Ppx$dwE) z(`-`*u}?05r}lLPwR^4hyI4xx*h7Vv(%T+o2ss?Fl$+EUBdJ!h8G^uGI4ruRel9ia zBfywdOYj%5Bb>gl?R!~TG~^Qma9@~n@~U$j$yR=GDuakuolCh z2%~Qm;wK#Bmz_Z2DIr8zLyg9Gm7nzP3&%P1yM&(_0`) zUEAx(XYZq-F0*34ENv<^D>SmE3saVW_^VQ=`*XH6!q>jlzpnGY+L$7BFqF49az zC_W{4iXHxRQiJfQAIJGCFL`z{#2wSW?SAX&AY(3+<&phZ);1=<%w3W}`VAa`O}{PK zfXCL56kkfSLS#Q-@I-**52OmWVzwtGRmIdnw4rg8A!bQ1`Y+5Frf8{&Pxj5Wp7h*9 zSwu2trNQMKhghu5@HJg)CXejF#dC1AkL0WJZ5yok$g>qQ1yXlIjjUK+otfv~92kQU zKCal?+!aZg0vNNdZyDb?@dG9$GC}(Er)bPucEBiVBZlGC@D-aZ6bGQXT|tn>q%g;^K~)BpncJtzlO{sUZ1y8_041` zG*O0Oa2g&BmE$HM;vaVL#m&GG0NcDdf40ar0WeK6D|M91?5eI=#;_ndadvGo<4L^i z=7UCHHf&GZg#D=UHtv56`?sBOCP@G}m!9(VKW0wevJ77N6Q43P@Kmzn`YCX;g$n-{ zH^&@>pnuEYgw}q+tEQlC$;ei%G;cQHU;njTIilZp1Sr018~JQ%SnM^Y%J|B3z62_) zS8s${4eS&({c=5qXrSDvv;7o|VcJ$>M-pWX)G7ZDVQ(E2=Ff^6{>14Fcs9@`-9)XP=)ueqT@iK3;fHW*Z7@}IN3DPM49n1% z4&;mx&2E@3x+btgu~_@#i7*-=knB+RC2%%9+q=E@no$$OCw0!Br`Nr>$Gxe?-vgZ} zOh8AmnHr+>nM9kn;K^MxgwgGj5e{#N0pDiSDU%o4wQBxj6g@90i? zB=6yRCk73yjx&YerUa+Lkw6n*mrjkyw44WBjR3h9yaVv6}u(2r8 z9`YYRqH|u|BQgt|`H_wBnA-Hp>50Uf^E@@!g92-v;qmgvgrbWjExmfe)bm6IG+cb| zhOf!31zqli)Ue=kevc_L>Xnk6Gm-?^O+4!GUd3J{ag@L5b(_pR+3%Gc{aC&R=TuxG zwe710jJ$I*Bup#!(Us`fAT4~>*K0qu2iwa~qH2tU>q;0z-Pc6jZ8uoC6aCvag>Wa# zhG56M$({N9V!F#>y08qDRkutoM|^AiX-1>i-;V{|f5LJh1bDo}=-0GIXn}#i3y*q7 zhs_U{*^)ZST{gc)yuu`Te~16kZKicCil6TOQzkr`-C^~D23gkwg3~ysvY)72YmE`E z1wJ)AASO;WlH0u?s7&Ss$v0;G{SB7`r57xkr4fFNYmcd|3cvU|9XLg;K(IZEP7+O% z`G~>!ff_Fgi`aE5XUD&85xbP7h49|4bYtapgec_NOBbt@04!4`F>%b>%>i#_<)ot> z2g-O1Q3?*k#Xz9>A~+uB0q=qlJ`Nem3aC){Xy2=M^_Yix=Z`VoLvSi#7yu!y($Tu# z$r7zd-l>h1&Ir{a`ob~d{;>zgFH;D$M~#)2AgatL2^~RMAkf{$Pp6Hi31i}dH$b_H z$E9RYne>TLvj_6=`H4cx(Zuk~_L~?{wW{}BrtqPuazpD`#n$4lXc&fTRgZh_2JA<| zLJWz!G_O66r=&RsoUg|dOKlC-(3b^4U~15aLBtL_QenG?7%|SjjyvC{TRCJ<{?r5g=-o51KCdX?UiNuLf+J+B7qBp_U`Pi-p$(IITHLUe7hxl z+s)Z2`qM&sBFoIE?JVV#OqExesxzR206<+92kI9FL=5|os%vKo&O7_>{gl>}spm%x z8>cw`IWspnZY+P0sfYwSrAwI~%b)H?Oj3;2f1)ib?7O4+X!V(n#@2#{cdb^Y!Dk>x zHMOqK8=gw)A4$AAl6ZY2@$yLGAA96j@}q}Ts*8Bi4E=LG29;OzDk=2OqW-RiT|2El ze!CSvex+;e^~l&y=#7u0T>z6y^M|I_!wrTHnjO~t9H?LpRKX5ZSLGBfI>;9Ewe9y4 z-L*OX%esuV5T2{@fut?@$Ll%#hVF~=TwQM;-yiWe1 zi_-ZQuHU^RvmT-D63cdmp8Uj5F_|lkL`Vs+f|&w%H%X$_x=BYZ#c5*XWJht3*}~+` zSV0KGk$wC}80r@6%kONxOnhQ`%UJ475ACeP(`omg*H|d5&P`#_?*tE52U^hH6g)c^ z(;7~o_>=HPMOFPlCR=f)f*M7Rto^yWz`}DnWDA@5?-1kFmH@60y#K9<{lDa~|L5h6 z^D|KX#+rNNDME=acULCksRNvqQ%qwlX1tzD(DvzRI_dR#y*~)$@fXd}j_$?oc(DDG z%SvCGIuE6M0Em|Sk5(rOd0tslSy;$(+-fM)#i;L6&E)5uQ9Fcvr_U7g#|Le-a)wpy zV`vz>h_w_G$xi)(%rP6#S%mCE8~~RExGrnEq|5mvixxkAmC*8B9PobKr$3xe7t3b% zSEGNw-pXRULXbcz=cx*{DV~k)76FZ)WaRKu3u=|scV1`w$q-7*)R*O{v+T+CAEL^s zqRZBaxaJvBTF2^Kn|w~?3yxo3H4K%Ri1m%)iD`Y(GdoBSjg&)zJT zB(d>!Fn^Z#q@R%bP)r~1Eq(tf0wyn^sr&o0yq0?;Yk>g|AaPs>JBb~>yi3?VG(PNL z8i!ypQM52VM?w;s~0{;pL$skVF5WG|$D--#k-8ZS&L!V>o9@AE(2(G3Q( z>3bjwu`?6>K!--BT%gpz>Xquo+zQgrt6XQu2_L~!?0)Jxu`>F8W>G5T>U1yu*1P7< zqM_xj$A;c*K}pi>LBsm(vhC{afp5Q|!OrzuQ*J9)n&gXbo+bXLt|#50?tbpE7v8NB zbhR1BoN~gW0~I32SH>WQn7H+1;&}8pwBs|L8N#=JC*8#BosinSzY>MIXKrt=c7Us| zZ@q;>2f!4>tr@veUWbS-YI8eQ2Yzk%Hz|w3T%(~nQeyZX{#^7pr ze_UegU_Y3(r8oWjxb0UmQGQDw{CR*D@AcoH)I}GAm#y6yvS%2wm)i5kl+ zp-$7lR3n$DWAnFKTE8<|KcSSRH)|*uuo@Eft!gP%XyX;285ot3rMe<7tGsJv+yeP> z{>-pDpJ_fVo56V^1bkF_;@_wrhri6goOxGnOzzmU{470FNpc}?`PgE@<#ox%P9hbp zFt@NxZ(`(0Akvv4>VjCrF}L5f)Bv~^BgNrMzVovejau?HRNGTOs-g83TAjqiyzr3% zs(J6Np~hY^f?k=J4FB&t1XeIk$0gnGyYY8tJg~-)F4-xj2sLu9E?TgFgps{wU?-p+ z9=Pa&!8Hb;txN>!nyv-1 z&S-*FIflrE@TD-t)Wj*|{vlJWDcy}}%-bb9WZEXeS#q?|uWWBz`$QEhA-3BBfwZkl zVH6=!3GAMfAjBR(>Cgf~L+!G?BBbkZ2u1HHO=UC!`GF@xJF z3kS`LiPQaFOVbjgp_T?hidSfHR8ViE>L@m5BUuh-+?`_WGud+emqn}v`zdkXtnGzdRGyZ{wo?_Ln zN@63-wolN|<3~49t4{gTIH3b6elJ)Zr7I|p@Gzr;v$-p4{(!COz&_=K2Bjrq@2LC$ zw2@=F!f%_`O!AbN1O+`;`+_4DcVP)|0Dx|HmctA|WD|dEljMs?Y%~9!H*_yF%V>n~ z?0)NmR51-9)d|`;Yl4vP%|AW!Qn}X-$3SYbVq_rcJ87YSBPs>PF)Mv~1~o z24VHp5+#G}UvC0e!eSPIk7 zByrS3nhHN%Qf;OL;+xRa)CXTht>fuY_`dJx(Lb;)jY(;uJV|hK;_j>uV`Eh~xzziS ze`IL8!^ljYKYF)&M+psezw=dVi`}xEZxjwJjdaYrkfFS3%s%JdTx^r8#)^9-q}{0O zv>8kjI50^Ni%GZ1blx#?!u%jZ@tEL|mTJ5xBx`Rc*7yzqYddECA2?l#BDv(j+1!$0 z6jzXyvK3w!uQ9wn?{jV@XbriE`mO}cvY@NwjS`_f}7UH=agGeWEO8II#odi@H@a>1AF zG6u_WF|?CFHjA}V>iG@A?C+dh5Qj~a+bqp@I#IF4}A{7M5Us&G79Q$2!iDFQV@M>Zy}fr;nSFBS*C|QR+ecYn zZZ=XFGFLA;kY0=qXfLA1(D@|2|KOWD&CZ@A?hplz3pGO+mh)GMr@P7~JnC`2;uM5^ z7W4%ZW1^jO;x1_Ss($C(jwso4bd7e$8tY!@WweVRK!%!gMbf6MrNAQSfT0&@1Mo+)@2yr1Kime>Pp+V zozM?A4};~@xZtMzQ4$x;Ol+>RIc!AH_kMKYibk_aPaYHQo*nWIWgF`wo^A+=|Tso4~<~53T1b zC28q9R_Z_5*k~x#iu=bik+bV0ycTCNG#dR1Fkb5K-X}yduA_Z?FA&d(HMBjy{W`^X zm8UX6W*Otz*zdk`tTMH2pXKbK`%SpWPsHAn^PyCF#kUOS<}~-_rBqn##_nIG7`ns< zR*pUXTd%AB2fKusi)$#dkLW@M7EVwJ`E;6NSP#?@_PU1Ab+yy^O0S# zpBQb6K_WwS!SO*csDi&y*lAICupb^dH+;*@zwxZ?Q=Me8?JW3xbeN-5 z^b963+%zO|XQaWsIjkI1W2eT$ZqHG>NBXvFI#g$n&LnqjH7u({=296E#;b&8ui3Z^Mdqf1jsov(4T8XS`$#li73(PAUpNDS( zBuxXjUBuJf#0?z5yeK)3BR&?Mm6|(TGTL+2+rs~K72)9B@m=~J{kzV)@$6S!cb9c9 zbtMJOX`|WNM?HCwCs@q(0n`@WvbdmPl40(s%Uyrj&c|_VSBYBODc50)e7Y9XqjWhu z>F}|sqv65g*rhvAy%>JY&mZm=ew$OHsJY?#7@&EeMD3@ZAZ&YtNq4g}?2+>yDEa^F zGhE}T-rc_!uw_8pe@ofFuFV-A)lK$ODacVkxg6WvZZ09|Z9J{ZV>&tLr6JO7^pv5BF3+2Jrdc1XfJM75O?^HJ`BJUuf+n z#LHoz;-9khAQvcGXDk8z&2`3;T4E+31yj)rWrYzK)Q^7p7muy1>bu$O5mKQ@mh{+Tm8?B&kWMwon*Y==oo#mN z1&|Se82L(UvYp6HHOalv=H02*Wlb($)gc{U`qZhE9^>9ltCXpTt<&rqxt`hA*ZS4U z+cLG%3y{93+fVzacMg7UI=ETeSKH~^ylkDVPMRlpHLL=K3wb8%a1TzNB1G;ABD)&W z5;ZCC!z0ZM0Xwo|Fz5FD{0RfM+s(vUS!>_^O{|X3jj76FK+D6!sk*S6^`YLydD_2j zH@~LVTtMEbYPNdHyHpq(Sr@MFA+I57Jt`IVH39!UP>0Ynzn*N;dga+>LJ_^1XlNcG z`S+Il8OxQxN3&#OhIlaqNE&IMJ8JsFZIW7xUq2hgzQ1lv)O!D;+${PaP6(h&S!G)L zvo1dwZTAORO)mwm6k;55ah@3+|I4m@W4i{jm&1XQG0nPfs?;e(I9;6IU=>Eo15IT4 zYe|Dv|CW~>Z{iLFoS*&@J%+#;>Syi3wu%i{Q@lt5VH5ooct~;&{ZM{(6GVp13n!Vr zJ@4Pcqz%w?7WzAr!+KMyR`4Qyo30Ty*TrBbk6b(;sh#pKn;?A86 z4U1NKzP+nGf2uN8O8>z8P2XPCe2Cbm4rz4Yi8vhP0#O3S^)=u5`?4_bfqbxwo^~P` z9RMAL*bc=;?fW4)91FaJxP4NVK?gp@8e633Lr@LVKjnu{|C-M-M)=C7jwUlS4^cY} z6=y~8sC=};7KGHSJS!k68VuFm17;n7rBsuMdBIIzrYpUKuKVnAc<{Zk#swJVYJu6{ z>_wWWW1;gh2n4*Z;!iH*;};L$ffiRUER7dEk5%fftZA|J-$JV%$u)I zmY-0!ghnbF&rVy*(B;mCYDG#jq%hJ~6;;NsjthOgiT*X#i`|u5d`~dNlgD%wwZBqP z2S|_L`d`TigoVD`tMAxdN`Xy1(uj)K`Dot$F`|B6o?@#g^#c`%c z%2@R`e?pTPk7+>s0#Ag?Q31d=5{TH4{y5e+8Du4LisHnbJQWtYao-G3G`+UwM9sb* zM0ogznfnO=O$J5SlRa<%R4dH*o2++tEvoF}88{b$J9rj=J!|Mt1r;Hc2I=)5MxqZf)E+~gM$0Xv57+r zT&S>1j9cn{nasZmhk#&(u?`soP3sM@xo*0B zJ-{id$|7mX0PU^GK54S_|igV;%;oUMQ^+%3i}~?RJak z&U=GvDzp?NAp(+&QC*B#)@RTojv-WblF9XxAel#BnU&dL-qdXfbeTqCa6cXu&Awlu zry^y0k35KBS(iGIJUp>2&OKk6J zJh~GWusoMEpwc(9H(7)d zQ^8CA5e=2}_`4i3_fVaq`>)zAsR`W3Uj|QP$&=U8hu6r9*N6-0L>cSTUq8)a|1Wo z^PgIL?9>*u=Dx#6{(I*bUX2wzD;p*Xv2zOz0ZT4-qYP%E7f-na$-p3`H(yOCSchI4Y4CFxx>Q63>qAk6Zwt6sUsOEd&CkOgOwB_%1;bc8M_Q@Jo@qGteFtJl@7 z2G*0PQNL7SbEjsU0c2j;$07rk zLUU_zyfZuW(#aRHTswr;CE|&dc8>tS*q3j+}k5iuTpK_6=g)75RK335?kR+QI)QUEY+|D-m_0nRk}18UI^fB@M4k~ ztt1XT={KwJCSZNGq<4x_pzC3@xPs&DGj@z1I#Ng$Vpf*U3h#mV+td?%%kG-$4Nryvrjo4QElfR zSdf7*UP70+BP{%mjMsZg1VddzLU*ywOIDD__$?GTR2?i%^Gst+B>jKb0gXooxIoA< z`LPYI_wrc~JlH|@;<|W%wK^izlkJn)cg!T4Wo0Uu3TCH==z0h<1}BEN^rP3EG~kUO z3WwH}Hi5K5BM2OudIsR*0J{vq24x6p72+6h;=FDX;2uN;)d0U?x@;O0iBI3#LxfK# zNe7G{_2Qh5f1Xyq&`EoEwFuf~J8>$W6Z^_>QRiUms`H0N(<|o=ruz$9E9|1@{gv#? zx6G;Zap+=4n5LVU$5bqyyZK`>UYRm%W?>+*jV?KZ>7<{XB~sEw*bsOb>xCRRNn+7Z zh!gW?MS<}Nj;Q<5A1^hCM7`<0x?sG~>S9ZQF}$4l$9if<5HuYWe2015Ss}z1B1gmc zaV0xKo&eynD*!B!{*WBTQ&cLroT0h)isV{#VwlVY?(Y4$a zxrDpc*G)9HnLnzUwr5{D+YajqTX3cGjjexR63tP4=9>LHh)6N|FIj$g0%fMSQGn#C zFOx@W+G&gS`Qp&U;=twW{%_@GnaNd|8xIx~tQTWuvK%iu7NpOUC7%Xxyzy{xv2bzm zaj|*Okf?0SvZ6O?$w#ho9_$n=wSFdN&{8-?TjTRdTXo>q%($0_uy5?7?{Lz$VPLLX z2WXQswy|2aF~^(I;r!C!f>Iu{+Ks9+3zxHklNdIovYwp%BAQ(o_3w zG=ztS@Jai!B|8maS1v>7+3k1eoZ|1`zs17nW#*vxK{Z=3P6usY`PQ`cSOo=Fdo zDA%{A@AuYThY;N+!B#Zmd@7dkM_Mf+DV5#+e zoRH6Nue#DiR*x^gkKxs~sn(RaD&Jz8Q~B`YS992++98swZGLHFz;v0vV_#qJn*q? z4N2<^)fdW_^aQV5n%q3RrM*YyUk6LqHB}3XjZXoP@~cU3&W$|2uRzPVggTRF+Zg&V zhJe>VEe>pf=Z~+e4r{EnN$lp2F!t?O;{L5~&7al<>hq?b@d3>|7pK8*TU*7>rs~3P zR!>`QS(@-!{dGkAs?9HC)AzkwuP3v2_9KKH#MKU+&dlB^Ke5mOH{113U035h50ZK1 zqu_{M(Ix5l42%;Jtiw0Uzjef2mj3i23)PTC`sZcdTZ((f@r{Z9#-k#t)-M^ijj~5t zGrP$w$2{*W{Pjex)33gNpjU1Wyb=mH#`hO9OdjypdldfYMZO}gI|OWmS*i}3{v$+6 zd@pxakh%5r0MGJY&wb;wRw#T8?%n2_ojG1y9a&2f`bDm5G~GCdLqjWnWy})t-kPMx zpkNhiJjTpceu+|D{BTNDnTeHaS&nJ`v1{CK?ED5^TN#>sRKMlBOWQ7b>PMA%zPzA6 zli((-9|33#MKpib`( zbQRbIMAjjV9ZVW1EJQZ&O#LJKOJl-15sWn;vQcoKQYC4)>e1^*9@V=3^^WUmH{&^1 zV2x!>9u|V10(2*o+X5>|S>RwssMYGUtAVYqQ=ehuEh=N2LwNqRjY=%VQ}P)D)8+w*6!>b7TUKqDCkIR?`t|pMG{@~)e!S_kp2)O*L0@VR*cXsze(|K^ za%-IsAu>|dZ#|Z2Gm&AVo)w%_^gMhZkQNq`9z3L%%`|2Ax}jrVjG2C9UY%!isDh1Z z8*S7VjJS^DF!^9|HDfy-G(JIomn$NN5&|E|Nq#aA2s8b(H8sO!w8SQ#7xb>+)910u zuc_b={7EB;Gb<)pMP7;ZuH1X#%Y*p+-(r9mrj`{;KJ2H*DE5N=7O{<;b&=NpeW4y& zN2|{`?IP6n5+oE7O`5#@3*4QESfAyaR?t=u{CwjWAVU%K?DTmK0qhmg=LfXwUf~W8 zV})L%>_}t;3(wnpm=x#VqnS@EIT7l*y?c&yfAgtFWcQEvC4i3%OKdb$L0f?*y}+5U~qV7Ys%)`gzH`hNH5+436` z9&RPt-cG|S_9fI(1M{>I>sAmA3)BUY4fi1VUtB@CaZF6k72S3nZ_8olEp{krL8S)s0N&Z%|`Qg(9hET+k?erMC5TIN{Ofk zO96AP6PCk5D!-Q(Zs z7=HKMqxUO$uUgmO4|^kO3@m1_eh^WfB$g!BM_oZ>aB!Q#gA7QCNpVD^8F6MYa$nf1 zwIg2iuRft?oP`YhLf&lD@tWYQrt@~)mnW)p(m15(dMe0iYZ~+7oGI#en-Rmvy#L%D zJwM+cZo&IJ!e4lmao1f$mBTZLu=j|tONcJHu!3t>9(r6nA+BO?|MK`AmWOt@0Ty%2 zClZ^Z!UorIU9M4KiZ~$tsCDMZ|{E$-odD8j|;lIV0(N7E)YgXGD&9lop3VYS1 z-aq;t!n>t-;eZ!;@CWcBZGXzHOOI_Qh9&Oi3j$B_rtEnYQnSgs%wM8doduomheqVBmW$@DXa5|8 z$2_<(qr-Xnm%wF7(=$++&gd`Np)J-ujpP;1nUQ_g>P=jD)x(}_r8~ctV1-9U4-3#e z*U{4E^(^U9jW~^wBNnud3$U^5Ip-$8_!#q)7(^Pu+_nUvzzxM7Dp3g&g>h<7EYhG& ze!5@odU)G4NYu{FPwE+D*n7;W35#**=n*E<2)?Y@30Zxdo3ctEU?rWLUZWpn_dqe= z^I+WIoV{6Wuv~1gIv|nt`{nWo{^;tS3dVwy@dD=+sUQby@_hnY&wf7mVdH9zc`8g7 z*Xi&jBwyMZxl2mDj}xWS2Up6VVV!PhFTKX(A1n5kKablhI!L+f~6;g<`K<>`Sq2`*bjves7$vb zz?#t~I7k}(hR37c0=M0LQw;~iyK zml4J~LFz*Et6PW(kbk(Y1kR?5&D5V@GHych+mun6qSdL>I;}sN1NYdB;kwJdW(e{a zFCf)UVj?k+2%p{vI!Hf834ty)Cl)d1F!QL$4MYQjSPfgRAJzo9yb_lOPuyN4YHjo# zl*ApS2CJvG#jAzr1)IwFV~`FLXAR-e6Q8@DN62;LS{bpHVHB*$UjMU*;B^#C#fQ*k zQ>EE9JvrGbR?SgAtYP)-;)8p(y{n*O-Y3F&&gR?y{S)@4Ap2~Jcv)b_&h;;-nQu)< zb>LWHB*(EdjhJJZJ6AFHgt+r+_#wM3c}tIR&o!pVh}7E|5`tV@&)(m6SNR8^X$h~e z1;AxtneySyzp!of9$4XIpD0gvkE8Kb>6dmr&XtKui6`Rxu1Hvx&`x2%ab8bQ*7fc@ z31b{0hTZiEJDW+?m^O4%$+F(NX5>k;9O5=2)P|+oHXuZ`^B8zcgsp&TWhs$8kNQhv zuUnX*hP(Va7#nlnUY}r&VVX4pIFx}~fbGhJ$H@o^C(b^4DvaQ$3w-xQZBV&ThSEBf z&}{%9)=966J{r$=IFTje`^=ub*!TS8DEZ3ypjdp)TXiLQU+mw+aFMDcKuM^;+@>f( zjCT>lq{{f~EIgwndyL9Cj~sjEnj~Gy8n<&GuwFEU7wdgKI{#tC8vk0{zY?@~l{6kcH!^JNb(_h}| zH5^3${QIig6iz9j`eDH!n8)gmoRP(oT~zk21M8pn-{;MoA7mR*j_2bSBqy z7Pn|-i3r0NaiY^3KPAuMJ9DSqb-qVW80m4lFqTtGDpQ=pyWy~NjG%95VR`&=p-=En7-ln@xd}!W*7Qe&ym6DczwpF z40tz2eBM>S$T<`G)Kg-njF|O#t3$956_O#mxAFxfsjyA%h~?oFPr9l=qY}7WPj>4d zoQ>Gu{OyPS1YNN@T(Qa8vwFR26Z9eW{QcgXAdi{5M+4C7et)`6x$;Y^{vYnA%7vEW zUIhvPO-kX_fj)luf3Me@p(nvI`0N3_cw-TC^`kBEV@1uAMJqLJFgQT`g5ny505*{% z(Dvf8B+`LA=h5-GJ?mbQ`W16?+4Ae3f6kxx$iqYa_9XfyAZz~gfZOA0?_>O8a<8f& zdzB9-;PH9Li~s4lx@g8{==L-@Gy6oSHo$q&3H%zBu#~7R-L94RuU_1Oc3VGlNV&If z(@jJpIuLP7i~qNW&sVR(vC#Uc=|2UEG3C70dO5xCVljCbe7G4ZIq-kgVQH2avF?i7 zE(6wI2L*n{eVNE?<|wd)+v52b1~a^j_2~8=9L3IS_2Iq1Ql&ljbHaP+Sm=9WIq?IC zF#L`*dNovYZd7xp$OQb3%PHQg*x5s=b|8`s@9o4slJ*OD*)#H?EXWNqOXM1R& zDTvz{c7yBd@trAwuOVAkYCxGt887MASAUPRvg$1!A)Bw;TAj$H&I>0F9-*T0YRmE( zT6?rTdT*p`*nZ-*)u_JpZ2fd$<4AVMs}K|59U0f!Kc2P9N$EwA zQF&@s8Mg;5sc};#!V&s=d`$0GK*V62xX?d>4t42;p@Nn1%Uz-b=X6^?a{Wc_vF={q zXxbXtsSW5cu+S6S5c~ZS`1?xJss^ofsa^3&W}h%Zgza9~_YcMxPn2w3HIAq~s%Y!wg%X+{iZqMIcqP9^Q$gv8^)`>!eZ z-@b@w6aa;JL6y=sg||0x8}i9(&Q+B6Pe2l=;KzljZz<~EdVbni$VGT3T>oJc?yU)p zh%Tu;dm%*yw}AG4IXRME!vpUK8^4E4`##H> zRbeH=wxQV*%^{6QViYm6239;&Da$8pVhg715u66R`UJp_WtnCXp?G{1&AZYdyd64Z zMsI7uSwnZe-LdbMUM2RNO0ULIhC~GIMy0eaqNWvpl`eb7xBXw*BB(suFKnCeLAzXd za1dd8w{iH41>W3}&XAqf@WBg?TA9>eP;yS({*!kFU2@qkhFEMUYj=|Wq)pNbmPv*H z8W}s`Pg+luVzL&_W=A z1i^qsv=~9L!dTRr5bAz@ZUr|d$nD_p;?%!+ciF?-h2!_`H%OaR_{bKc?eR^Zz|iB` z%;_ji%p2sRxRF81sNw(E1k_UT-EkD-ObASYQ5VGlug@+Ut*dm-hu^RjS$nMW&>7Tz`fBp{q`Kx>pJo!moCsjaAknHnjuq)mxkL8qN&!6h|E0bN0 ziq^xPKHjM=bCH**&c1aC%klTrd6s{|L2yG+?AZH1{*W6vs)V@`_vwHVx0hn(rO1bg zh&y<2*G?omaybx2>en!?%OR-qT-SzmPmnC5NJfLU(EZ12;kCjnC!t<_q`Og{wxIEs zxU~N6=&oE)n&x+d5+X{4(e>?=+RQwEkW8!nm3FF3hy$>C=4-UMHmxJIrD=Pk-pT#j zDFJ7gYL=Lv(WkRL;DuGat0fv0 zQ|Eom*LY|SivwdI7nf-m8O2Fck!T{AWMTx9Z1H+W0RFL8d6q}?$WII$ji63WEdmI zOZEU>r9!zX(D4Q1(f4CaAmIEa><5@Zb^vqd8Gt6dfz9+7D|r2G^PXe(ij2k1(QFt>wq>`Ko-$@_ZTvY zjUDZP1!kN2fw-;th&3M&O+)hx?2b00qB|U9Vn3EZcIP@;M|@i69D;?&{%&(tVTBTM z)P82SR5~DfgeNayWC<)bj_ID{hYu|E8OI0+Ffp+htx=c{g1$raq+h>Wh$Ab(#ze$% z$P7S33f}O+BZMHdfn2CjD3`dvDVQxEOS?b%N`AN*QHWl##1TW6xm6l}>_L<)+fb#T zD6wDBnjtFOi=~0Im4X|cDBY>9;6wb@&f~8!m+m~Msutfnyb5|AKk@xNe0nOoS?>Ft zL@B$UBE_ty?r-ZSIogma#lVEAcGmC+A&*DY=W_Z5Dot|;14r7(K^i(9k3y zkf{dlre<{&B6(0#wok%}MmWZ@F*&I5ZnnJ>oA9hv_(tT}|FKTvTUO5B+#;+{Ffx7R=cNWxP`!WCdmgwZozq%%H z;McP5S9oIg(oemPXY;hQF`tf2Ci9pp4m*!Ifn8_^rfN<_YMBi9ArMMu)#lQG!?t) zbZ3mmVfnP|iQ~^s`G;k-Man|wahv5mWUM^d(Yg8EhD1f%?v=NS0`%{m1REFn#5)Sm zyj3uLt1CcHsL;`-IKqJE87vtWOMdKSY%a2i8!o8Dl97P9aC5tjX+>f#phQ9#BceS4Pt#1~_7(FJH=kBwKDD=Ho_xn#i z`Y2Vw1VM}|&+V+0v4+;UJskN)NvG!EJOJ%q#qDQ)`*xL@U`GfJ`pVtDIxx@V&hBd1 zxABqsY1pf9&YAvVk+smW(X6_CmYf_;{$QTJxKy(*4A(6Y(|=Z%*TkDQuSqJqWvrXV~S2zTJcoecaF2{lUgMTTd#?g#u%=Hnqp=>ouiX4fxYL z$3v(~WDva6xbIW7$mVfgs>^CY&rE^eLb2CmORbJD)q@1@6Ku}9M>QVazyDk+ z^BVBl@*thaqaQ`~=(DWuYrJi8?DTJ4%$O@}9W5KO(p;;y*I$(zfIcIBJfkrLV50+p z?Wth7dv!gS)7m8Zo2Vfdh%i^ez`XV#<#OWN(XF=)Xzlua)6`FQ`>^0(iij1V!RzE<|6>oUudL`BF8Ifqco$CZ3)4gSJ;;*M zZ*Z*k#-)^;$QGXid<-q0oagYy6nR48f46!Inh*b|?^;}+SNi(n%6NUMO_t4`-=9vn z3K>=6AA`M%&Ull1!H&?0YkRrW@qPUZRi0)m!4wWRv3|Vw+RUumYa0t|k&nfi|9T*; zS1MpLrH?ZISpm6)i)E72gt&9~x!U2|Q*Wiv+u|JzjAlI)d4z|w#xqzc{p+rvkD9m% zFy0RtgESqx!2=(d^bZ~0iK_AW1fpJ<}>1jPf2}6tolyH37q{|4VcE1GE80tL^ScdWg#{DiX)jATY|x& z1RQNRNcMEl5%o_U3SDixQV&?D__L4N(T?Q;sP~4KJ}s}^^1UgF1@fPO0?eS_7D0Zw zwltTh5B!vBji0ismnWj63ry`PJUC4C! z7KJ13ws{%jQN|b|#czL?-++12i&9(KX{~-n8RseMqkmy^86(B4cT<#4F7c0D=&1k1 zdxdLY!UdnF#1pGqAcp|vmj2{2Lk@$>fe3vXJw_*tC)BJ*}Wu0P;v zEP1r{rEd*@_i&I9y8i(go-EJN8YInqb3YI95o*#3`0^CS|F5vxFy;GD_?&1Y*@jNW z_d7;^se_Of)0qL_5i2q*knnB9buarZ^E%``vcmrAscxIab{ONzy24Y)ppiN+=!TgP zmYHWgMh8;tN*6^f5sbKFj(-^!b=Vjd^#zWi*{&wv$8sx0VU(?=db9jaj?r=ku1*%0yo05;hLQmUna5Ym^sYtj6iFdTcZ_ND2X}efRgDaB zX!Jbu&AL+ng)5{Q3YznFak<_`Vf>;%yT2>A+gv|Q)`3hsLCX`aUNd$hjugeEYvX&q$aP{c1>eJF% zAprIrlMbC^oPJ2LOF*qn{w=0m5%V06ZvCNxIM!}e<*O21UFfwyV^eN|I4x%q*u`Q- znypnH-2_FiE-zUHG6TXJmSr|3HRfd8y`M-LRO%=t&}d*}I!vEr%^9U=F#sC2kLGC- zM|Wa{%v}H_dvo?8+X!F3R?>g%$`RtfRakCB zupL`x+phU=?MtTn)UZgJc}XdsW`VL)wON|FnEx^Lc-Ah*^E;+vVVhA*oMZ3}EAT#-`yhvBywB)tFSj4$vxq$b~$&_7Hjx}$`Bigk^=yVQotH&WCS?}Ncv zqY@L=x1WO8QmOr{y6|2}`pS#`fJxOR8nZI_h9<9}F?NrMK@p?MK3pZRWaKmFq?z0x z+CILNYC~FTZ=kTi-vA3sxL*j32(N6C&*txxgWoa-?cG>zh(qY^b?r|{TJc4fM+E=E zOte~H0^0C&T6Grpg4i;&BPtrlKYb$*a!6kWn|4aELl=O{({^EXM7=>=fw*AX09c?@ zba`UaQK$4Gmr$@(z$LO2$Go59ct1Yu86WB6D!)>Kbres)bOPL*XBuZ@?XkUd_(L)g zP{#``e;TK81#Sd*WAU1ZBQYc0Kr38Idw9vIj3{8qY{eIY#RaE3WOwZ(g3fYM-+t5y zZGco-8v>47#Qv5xGj*M7v2F${zXLcCrwt(H$*b4ANQJG>|~QaBtrI{##wFRbNKlY1R=~7EWStDHPOm-Fr}r&NdBY z#2{9FOhq%;@r=7j7+RFXQv4>p#$}H1qzQCFl@@;)F_8JmeT|=weC0dMWkJyKf+y|K zK*{VBg9m$-Yf&a?bL8FMV3iaCy-T!&31kFjG#?yC43cFVN<{B=>J4PFp) zovJKHJZHhTZ3`oxQ#Gk&ti{6Y-yjry$p}fKHo|}L-NX`uQ5O>Ogpc$pQnnT%3yTnn zyRc)jz&RiNl*2{l0+|ezXpq7w#S}n{aH1;B(NvDTDg_>C5t@+yi>|YbiZXoH{R{&P zIdrE;DBayHQVN1}cXz`8(jncAbhm=QNVg&l0z*qm3kY~#|9kDV&pB)DZ@>b+%*^{d z*L_|0@7e%=FAjaX3kr~#*;Y{M7SSKng%!bXS#tzI0HhhdB~T4l-`ga1gT zDf^2DfU_~FU6IzA8y36pbmQ>mu>sH~<}Kz{KeR_zbU51L{B(2p_O>|q(FhMC3Kgwk z2pHaFaMR-_%-Nt=gkZSBNxBU-bifHWw5PI1(g5&=Apw{*f`laDlrP&v(C9)RCCPsk zno~6ca(fvL=SCa=m0o+Hko;;Jdh-tm&-c4lg^7)zUqESr6mXE6r1b-l!d7yL95N%S zuSKIMe7)9!U?G|x?_I+Ip_n3FlVS~XeR)n50;Y;Whf>k~pag=pX2IDN%Dk3nP6Vy} zt|YNc)WuDf69$4ORn$IjUgqJ>tdS~w^kACqXcDUpcm`A_HB07ri5q(Yl=34xiQNA# zYnJkhk?$*Z6^_O#i}Vx|T zu)qWQyUX02YVyQX_D(u2$Rvdf#q5QCr>}K6!5mlm#R?YH=|2&vI7br2C^Ou79NV)~ z#tm=A+(c;`p81NC#wnB%+(ZwHFcCIcqA)Ww**+r-RUyNOdZ@&BMu?#lR;bI~V9!UqgpK<9Hl8CfPIX*l8*mfOYy78OET@J< zG%h|j1c}VH&{Ao-B>wanR{LWS2?(X@Bx?`Tr_&WGm#nE0hodKLlP3Z<#T-?^FRj<~ zTV3kJh$wv)k!MeAK$5^@DSu;hr)~Q7D)>{ghkfa*>MF_^5?rbi+${G$@t?Yve-tFF ztU7dv={kGY?zYw$IlVEq(<$qAnE$#^7go>jV)*OZ`hJTfxi?9|pRtNQ;9z3rc`^L- zgS)5B=%%4@pPQ7m;|EWwthF=s!i34{7q@InKhn~$-cfr!`%0jYlcWR{@k-E6w!dxSgV{mf6lUf#TKj*NFfzihZ`3 z0NF({q*C*G5GWk}L3um;W7=e$<}Xk`>_VsdD5`Pi1E`ywAwnr)I^M5FCV(&?t zfWH}0c+{-A)YVyk>)kiHsugC757IFH0p?kWd%1G|RBJz4#T><%Qv`U6n(c21weL!!2UPcE2mE2!hgY$1KjxmF;j6cuRdRn*J7SLo?r|>7M`RV z>Emw>qenF-YB+W};oyDFOB|6Ku7-p{s*YIgGFj#a(=?LHfl*HKT+$S^QCD!e_pv9g z?G<~W0CT>6919MA6)@|Tf#~xu73mbn!heDa@Zh($!k*GQ41oo8dZX1wJB^T^-s4?J zV{2A3dk$J**BmHzULQ#fU`?%AJx5CKY$_o_#}x8BKC8ObdY(K}qRNuMA}Wh5wE`~1 zH+B=?cy*GGm6)4xOUOyc7N^tzbLy6}kU3O!$>{kJ05mN!r?xqe`sq7~HSu*b8$w@c zx~D&DlcTNq@+-g72YaL3lR&D81pu+C{cxA9_(mrVopo(TeQVCyL%o3{8^Uf6LgRA* zz>t=(k0&@?RR#E2viMLAq!EU>5n6#S3KAspP-4UN0=YhZ0QjJ+GyHhe&-VWH$4LV= z33ru05GAqhxbm;K)$cm9&)raoI{`rCuUoFoiA+{rUO(HVZ9>PJjgo^Af^XD)cgx`xWzv@)a8it}D-$Wc(nQ!qV??Dm#1~OxrA7pw|@d z-Un2c=_1AZ6TaE?OgnW?TZMLUMSWGtUajt3td!L4O8mF_R)ky!@{q0peXCfy;x3B; z73-KYjieLrNH%sO?3Q6a1{jSbRPnKSE1(kLuT^ND>7BCxkE2-Yj1vJZRDe#lYtU(WBLaEfj*nJQ zT7@!W3Uqi4P)iHBT%Iw1p}vWYvrJ|&-N;#DG>48*<)PLrT<~yZFCC0_%8+?piYw`Q zWI@IekD9Y23f5*5D7?^*zE0?9h;ltkC${(;C1yBs?-bv4owo@hPg}GYxJW#-+wzHK zW5H~zk<<}fx{F!x?`kF>O-e_D9oP8O6Et{*t&E{eYx-KET=i8e^;vB*?PFSC5-e#` zAZZR!a>|{73Q+_U==)+i+f>@Dwak7U)pw@DNY_)sMl(;~Jq|c}3}mOXU-rXNhfvs% zCe1wrlJICq^A{cr3`cK(23_v3my!@?N-uS!DOsEs?zk*-L;5s@o4U%Hw4P>Gn!Bch zKt)uRZ9#m`4%q|& z(&<=LWu8B@`OTl*fG0vV%%I%yX*)Pc&R)6h0USPmoPaf5GW5z#3pVt&w-&$0u@;cHdgs6`_c&N>B;BfRsDg9zGgP@#|YEE zv7(NK6$E#>kVLU>&yU+Re{iB7Y&xKje)9y7`GYWo{x_cRais|`p*GGUJA1#&mlweL zi@V3N)KB}G$JeEzH9CHs_B%ko9IzLeO7fCBsNDa`@mL>A?AyRAX3n;s!e^wM`Vy9Y zPcZS1ct3ha8$!BB97(xt5WZ#vnb9cl2siRi&Rn~#P^RGj-!%6f)ePOwZV)W$Y*reluTNQG@uFUq)$sxr4mzJng)szl>twk zzpa`rtUlSxmr*)_KM20Z9gWa{Ju&YULykb>(Bl*LZLb`gBP+0y>~BPh^oeCLUoY2d z9nE?yI~guI82gVvpari7IOAyO1F4_v`j*BVGFm{%@A_xoD4v79K#O`GSh6AaH8pq> zVDz-f-qyRfDCeLq@~=xkJw}!pwIFtHbWrg9tHlj_k+*&XKYitt9%%Ev(((xw0Im*| z#ycG8mQkVNDQLfG??((`crB<84S^bm0@wJ$`i@L`n$*;24GV*z7WgpXFM%eoZWt56 zf#XpJz{~n=x!<|J1r!5DePshcbKIY8h9Qw6EVW{f!5_~S#C_FLX+~LHfeC+C7^{711kDQ{k}CNWqwf^{4(g>Ki(5RK!w;loYNo z!fqf_Xmf}ED2RKLjU3xmqlw=eAnVBoV|c*ZF5^(mGt8i1fV2si{U32)N{y{x$I=5y zeoX^ZK>$w$JT;1*$&-V;oDd0rKLZvGKx9~|35u8qmDv&l|NBSxU_J0RXX#S#B${J( zZ2&bc+ztq_@r0J6>nQDlzVi8D@tJYtef7ZU(U8LdGWYBd4!qW=S#k3f4CrgVE#qmmk-x#rr_R%V1N;Ae+g|a! z?PKsjLNkDDnnY8o^2tDI*YtohV-uCi(XB;S!ASelR=X<}wY87asocJV{ywsM>S31! zAHIx_Zoga(%bhyS5NfAUJ&_mecsg20Cy=T-Ae0(YH#wlgn_NHyabhkpc%i;>njP&p z)Ia+683C?&$a4yyYiuL6=G~LZ*lFJzn{}c8OmBeVtp5dha9&m76}fPntngCXIewB{ zt0A~tb%k0H@sW+^B$4X3A}-L46jWswGWMCPAdC=fv@9bF( zD4JDAlkT;4?>Z}quI!5;nPq96k#;2f+ykO^){qQ%pQR;lDi=nRcby z#6!Qp$OHP&wSWXS{_P?Lq1J0>6?fhb9GdZ%pSZBzt;Lh`%GvRo;oVyDZ~<_UXDcXv zHpyb7zx2)kLlST!Yqf4G{roBvX*rU8f8o7#@wPp=B=%j>c!LK@tap?D&!6U{hVg$`IbiWe_;pKQJQOX@QM+LK4CQlL z1?8KHT%oDfN&s`FE>xvH+dxxe9BCq@T`sIGS!hn9?cO`(RP4Ru`>>1|{InwHh9q~+ z#(*Di9xj|jg+<6Hke~zE8q!gS-ee%iNFwAz;Jp|b;Yx{2!^=>jUrH1`fh5$IMrtIJCVJ6h>+EMvsOFZY1OokBpE>9)87y(2wVK*GJW zNXD-K3Uk#CJ=g(qXa6cEPqo2`x|-cM7g8YTcM}3vxHW?}@@>^7xoX;1xXQJpMe{!SG&;VdCOfVa`I(uq*F+MGNT`z?sK*sDEi|)^!lXHW zu1ORA0`0~6Gb<`8U+e_}R!r^Uf33d6W3WutB1Pb0OPZmiYqN-<*s~>Bii}3GS;CU& zo)(B^#W)lz@dHQAh>OfF$hxEgace@2ar(82t**1B?NDiax0f?3lqk5;mvrhjx%oDA zj?HziF9DM!X)~I~O~g=1xXiT#iN06F8JOW=PlA?A7KR#_ZG5@ynn;!iASt5WnUCse zXv^?-(1W|_U+6HeKjlNuyISe(lTWjh6h;lDdWVKUPtfPPeiF79RYHhbyyWWx2x$Fq z)k`&Ru@HZ;_ytj6dC-rb0Vv#Nc)vRRUnEUs507jzERp!@6IZ0=AR#-%=jX!{jeW~j zWx_G4>+cWaSfP;29DuMT_LS;4RdMwm zMuZekci`Pi-=Z6AmN2H7WL`a-au4Xyf+!9dW%{?TpXTd(S8W2gQLe-%z^II&eQqIN zvhYG7pMu(R1FcuOATVxDRx3Ad%bd*L4%tP)lB@|zC1<-hnSpAQ?_7B9>1t_FVT~Is z^ouaU#c$kCj^GFm>P%EEG*V@Sw-p3X#~aXXN$FEjs9X}d8JIgcnif8Nr)+Jpb@`=_ z5VX$Ciw$7{mh6TjY6bgHifqJ^i7;Y-_!#0e@Qwt`1#8E9**CPo$c-ue=>oLE0(7HM z0XfIF#Bc=ReJVGq;KfsC6=^ECT%?BgQ+Cw*)Tlt`*nb^%SY?ZIn1hL&8xM_0an>=`+j9 zKxRV;sydTsAr8e{vaq^~wRRDk;aV@>L4mq64g*;!CmfY;Xa}zb{e?Ck4hG=NA|F<$ zr(F`M1j~lD)1E))W3lFl5pghI%Xr($qC>+|$7b#ZT{TV?q5lU2HnDe8_#riE%1-qy z6X$2_UEA#lHTf)Q!of?Xq1fj@2Ys22bxo!i<#v6!p3h8eh28uL|Di+5pB(E44v$A2 zg(9aX-+IVx^M4CW`W@`lFWUvoeP}Z@=cE-N#n}gXjdX!e2rjVxBRc`6iF5_hvVv?v zH7gROovU1Vw0UL=+1E6c6p}Yz554K?cZviO3USCqH#XpfMQ7iNcNGowC z*0=twZ#`)FqJzTrp2rJKaLT6h@`&5QTGyoUGs5^$+!d+B1BKC|9IKl_5&EB39RPKJ zqQyf}J*os091A{w!@nNGdMmH1hChP2ZeEf66#ew!ZT!UG=Z!@%348$rRue>-7FoXv ztj;^S;Ce#U>GNLDzW1w}R7U4ARO9yg;*Cy4kzfS?&8iJ0C(WSqUr>7x(C^J9XWrDy z3K$%?82xXgdzi8WPcbvF4Pn9^*+2Cu6-hxmK-RRKB;bnA?j3u`jWksr93l*hw3wCe zFO}i`A>^%`u?h`+7*E8&MBhwmg+qdfnd7$sCL8ipSS%y=1^vXn;5z(p#bunvv&b0_ z?uFN7*0tpDY0ar~9y3#8xXK8sNQZH_V9+4|31cpjA>@0Q9dC%baD~>5xW>InoX;DEVnLLlOdZTIx zLIF35pgl1Ib$C>K#aby&_z#XeaQ1WR4hjCh0vD^)C#cv6{#R(yAIUl4@+fztf+IjT z%Gk%n#^B;$TvVdUakc6rQW&~A0vz}n(bKdD%+9I=0qy6@#lIXi8 z_S#?gWijzzM{R=#=D(zTB)B2fi5f~!Rc@u;S76P1wg^R!KMlQy4@tr_lNP~Pj}eX- zQCq64@G!Rj_5z&}Pqnx6f}&sV{50RC!zC z_DS_KB9u^kYw^s0R2bxhA@~$vGBk?s{VCc=qm92gS9-W%-^vo%-y@p_y%mRvHJ*Zn zliGiaY#<>A76-_REC`Ts1G^SQDwQ_M@nBHUPl4hnrLBOYq7^KQdwIBC1Y9LC#Sp2` z9wj6Q4-51_kdsI|iESHKWMsbnD5s^UNo;HR-7`%0RPJ8GqZI4j;rH*YYpKMgM_}4x z%CSgaqK;u2U1xIqL+92LhjZ-ViOX8i;TJeZ@4DePn`gAVZ&dQGctgfzTOEQNG+X$b z7jxSs^L!-quEc+wI{y7GVf#-o0HgyOzQz`c<+XT6Ck3JyTSih$MTRxaMG_2vz>p}8 zOmq}3Jxp9|=4dyK`I=3{E4e=T!Og(_2Zhjy%EbE*?G;3cnW^<1sRh4N*M6})tZSe@ za+BQm2O_WhkxgHEk53h1MDTH97DMUu+uMJ4v|kI# z-+*xw!&tM(|~!^e0lm*vl5gFH~v(PK>YzxRkx zU}&&7_iAeL}JVgqzkfL~2WkdJ%|7ms*Ovv_`o)ay=f)wPc+ zbU4se^$y6?LG_w&&8%9j?J%jQoX4GHcCo{EO(|=33jVcY9;=RA&Nj-1)`R-?Dv#wf zp=Dj5)}g+w)=H?s#Q8NqJDy3$*3A(Drd1IZYxaJ5B{*-3$>fiJFr&ZU#{D#6g#QI4 z%rY63TKc{G7(=Wi-$!vbbW}HnpYKCu7}9c6ytYj*Li>!{YQ>MVC64EMsQG(n9)UY> z&sz*?azT$oe2JVrnz7-!ngFj@`9bYQ*8#7Ng|ro?5h`HTUZg`?R~RQW#ga?bp`Yoa zpV97MnfyBD_m`q$or)91s0U#k!|NKu-Ifx7!*D?CQDnZ+Wqzycmum8( z@aCTwI(ZQiq;Xy&W)TwL@l$H=@*#@N=>yirOT^mQ zG1YuQ&ePMGlWb}QWrlM~USZ=_k8AqrxBYzS*RleTq0?r};3C|AWy1;WXYBxU24E5Z*)pIhR(r57 z`(UTGv+d&QaF6QsHh5w+V{p%T%N8R322{Oy#*2orgu)HoEwqM10IpEh?Z^2uVkc<~ zYM@&Y9>tC{)l_s0^>MJSw~yVCmwF>p?I5$g57j-UO%teC$XT`8td_62Hk=ugs{)lZlr6;VwL20Sux`?Gnb~A=fw3jny14u?7hc;VZP-`HzTJ)|hN!zt-X5?Q0 z-Zicmx5!kKEYWtrAm+$ED9S2Ae-JB;?e=n{$R&h@m`O6fmvaU=)~Pfl^ew)zgduLKlgUR$5AgyT*>;6F# zSAwdO6EIGm?6I3g+CsugM^xp$#)@B`J&8-Fpm9c%0Rt}yH<|eA2jB34mU#9|pa(W|d-0oWI`KWwGjZF>DZj|=Ur9Jt^@S;+sM~|04##$Nnl^W5N zg>)jN~HR3hVoeG1Z3`f14{QNQL3igyK(#i{SulEJykJ zOXxyAXNPpy>0ebONZ}BJu?W}F9erd^Wac)zt{#B!EyfP3z$xLwZ0_iZ8C(c8tS~Bk z&r076BGt^PAl-6dL&*?SQ7;ng=y@|V4^+PQ3{FL=ZU9&wACDR!S!X8qW z-}u7&Qi*B3Pvg6!cDtaIYF|j-!f+%di>&Gk)~k$u)aWfnVD@1HXu9+lR7E3c?=R-v zT0_O;>VL=#uRd9Lc=a{h%_Njx6IimL@Z9yJ;F4u&0jeJ-$I?l0Ju^=5KH&=_NgV)_ z&QU7wr>>x_@gh2}igj2!dKO+*HDNqPqZl`vM6NB#E^)j+k02f7LJt652K597Q^gbG zP{Y-pc!M&PYQgMF0Ea+wiQWxoP02wSL2ZgA28uHSi4F2??;`1@G;A4VA za)Qb7Z$}jhS9t^#;dy^C(GZj=jH3K~lK8Ih$wD>|3~nk(KoZS|P^8ezqag%E6Ua=2 z0(9rM+9(*;_){c#P0m+wlB4hLsGwJ1dp}1d z$|`R(c%Y77mt1AzPL%=TDuL>9mHh^dq_x;#Z#1K6;K!Prx>yx`Z&`7Q`!tysiJgh8 z`%)V7?+Jv;H74yALOCXKhYpw2#vC}R59_Epmghbh-F0>E{(-dLo9RAQLY)@_EBjp) zkcrqdq05g!K<`xS^MV{d_kr#Pu7NxIuj@T?(ZK{ z9zsQmM(t#faKQ(8QsAZIejUqb)o;zCo{`n@4e#BsL_(dB{j#u0Z*aLk#c+@5CUxNv zZS9lB7@*kzAwR~9lzaFkplhbFx>K% zry!H0{ORxs&qC9$JphF#riKzuR%`UJ2jkE}&HCoIHj^w%+TJaXrFUaKjmt2BHSaA! zOUwkAIz238<8t#E5oh5GR_U4yplVw=*~ocgfIEDtiR-jz$^@!UXmQLF||{K>BLk_@AvNEKTn8 zuW$+#e0kdB^8O>_sH}g;O!EHa!$knZn{We#8$^ftca6>yVU8jU3N#;)I>$0KdP|s$ zM*inL_z!Sj;+`mE!b6;+0&GzfWh&`INclcX<7zn*rZ9+agKd%0k<>d23bO^6CS3d* zd!e7HbE@ffetK`V|0GCZ_hTAQ4*;dg^3+A zO;MJKvfgvxz}Rte*9kn}E{SUhef~bsF{3OFFgYsv6rSHu7^RZ?EaTlTyxWt0x$5sI)hHg?9T-IRi1Rd9{cxP`b1bSUpwzMLWqXy-1@IS+L@U9vA0PT zy7m;f_U2yp6kfVbgpMNV_QG6rAzwX1C32-Ut|IOMGslK?8Y6G0NQ(Rv4YCGbr#bBs zMl%d8Vk37)>pyWFAWML5jVhm$!6(Fj#7g~83B{mwcF+7{_WJYB|5O6}-x;(2CwX?S zkVf*-cbfWDR*Acop|y%?u3&|#0a2iE??9`V^D>pdaYFVrlXap9w^fj^#Y$oOiJG2w z#l%W#dEE==jXKPWYc3ROWj^Tj5bjEUj%6Y5avPze!KvWnrvvMwxzr5zQ7BUSOOa@Z zX{qg715xYBq#QIv==`AcuzO_y$8t?Po+Bf4F86`zg(d8=b~s=jNR$~!9Ex=x{&}d5 z>d#Tyx*OIiXK_EAQCKPXUN9>ntCKl=;QEt8FnzkYMBur0WEDyO&#)#9XUAOrxrFR7 zbTz;3@?4tommEXm9R8e6{&5HTZpgr zxwZCtDddBi92%N|li_AU<94KT+CAC%fp%wlVGmWzry#lWMfQrJJ~wl4fLnYo+1G$$aDuO)FkB@sL^ zIayF;^L0(2cm3B;W)9I9d(6&!4O98WZKsyrmeTjgklV^%T)(^?2J70Tde<%+HXZ){ zW_$DZ{Pm!el*#p9F@t-Jsq}lj*E3w-(Z8l=rTjd4F%gQi5H)I+&eHO2K_;4^#D4BK z|3<$jl_E<~JisMbz>$^>xm_mm(@Hro8G=!d=ZmYGT(k{iw<*Q(j6nlO0cVHe3ej*$=jc{&*SZaktYK=rbpO>I+fMkln zq;J^(wXU_=x5ZGJkH$8BoC zcN~MQ%gG@)0F`*wk>}xwJ#q@pDH7qQL&UQ28Y9g=rCWcuK@~fd^pIAeGO`pVvx0r= zoZTjLkPxzsd-WOK2crA9${SE&by82CNjle1a<4aQcwtAdbw-@*ixm$KqXlvBp}R-f|!xRAr#$DM3^SU&p)i!UaeMN%v^StF9i^~no=Ub z?_SFpCyd#-h>TF2&CSxf`fwMZ{6_O^V`*mjnY#Ne#q*{T8v0|TXmSE9sw#>vDlMuI zoo~&ELC0HCItpi&-W17*wdg7|y!ktN+>-XCl%mvgd4IR8MlLg^UYA`nqMklqNPpLN zUYH_-Ov})%>&?$G3p8TeiH`)t&+i*E$S>0lDjXYcTO zwJ4NhM+{w{MS9%cwfKpOYpGjl7_##-YYXqM1^#GCQ}HoB>~o?J##f?o&*n(1&6}XD z;?rN*A&g7g;K8EMjHZ-ibj5EIjM@byO#Y#Wdqd!n_na83wh>{>;|&*k!Oxn^jbAgi zflgm7BHxZEE>ALwt~-S00K1RbBAcVyj5CZD$^>5Vm%a+?%D-2eCV0q^5PrA3NYqRE zsa#RD{%{nUgv+T7JB0^>rZehV`8upyO7^c6l#5hhP*fRkhLWV3Db$uj zA1LGXeBxltZpRUqZulx5_~_$HMrWJ(>FNo;KkCl2IP)(HCwYrQT{KqQBU3Au3jIm+ zniAt;&^GW07_1}4c$VN1q;nJC3ycD&OK5e83i65ho*fCnCwgb0`7Ny^d`a^X zRC>Y3!ca({u=F!&{HPYFMI{Oc=#>-*!@OMfh}@TXj`>Y)n~m6B>mWcmB%Z_)pJ@R#7^^ zrIR^5XWiTsR@{X#FU&Gaf?Y%#?_ryJGlsWxIqu>%<7|d4p*p(>8%oGV9YZoTpn@rugda3s-6&@? zBG&}Ll6p2zTrfQx3JLMrl_t!7M{~Mbdlf2jT4Y7LU#xHrvVfXrL&&=u(Y4ZCzc=v9 zgFWDO5QciJe#XaN@ZH9Z22=u!$c@f-1gT1cG1JW8(rg5cTs9jI^k?9Ag=FAY4Sogo zJgQF3j!w9tc}V-y0jCC+hl9ctsCUGQ=s{B&ZC_S8UE>iu-|Q}iw4dr#@KTv63~5EY z76VMC7X|xSjnInIM!jM)Yc^N7t+|^G>gbU%Cw`7A7Q@u)bhpmi178M-)|uQNVo5C4 z{aDwoPhTn9qzrA$qUVfmJ?-Uk&8;^r{i_2Jc=a`bazWrWNSMO-JWdTurC<|u zKV!L#&l_rYsNVE^Sk%bgj2pbCdYyl?pDyt&*>baAKrdBB;C;48+#?Xc@K=c}1M{(a zFRDT;rfrGU_<-KF$>Jyc2@_ODE+ps1%y`kJ;4@ux0{O>_l)u|0)d*_*s6)$E4$6%R zA1Gbh)SA=jm&(+4Ai4*Z*%SUK|CiiQV)S6_2l;f@-mzH}W<2SwuL!U{`U7_z+7aji zRhkbJ0x|__qS?N1<3WePX~To1hXz7LOh4(HcN$tIg+d}n3f*2^hT`DDf8lJ&?Utf@ zzyT;c;S10dJ+-KQ#O}9UTQ)LmPuvDl=fdq)?QVe?@Mi^BcPSl=N)D2>-YZ2qymuLg*xo4*P7^7_#(Jn(N61 zn&lCQ56Z9@YP)b&?@~-znTaUenhk#?g!TcXg*6JN7!Z4BKjYCXdRU`4ykfne>ttN5 z$w0`zSjHJ$T>=9N>^j?8{w!cA3RYp4h}wB2oamk11fP8KR;0U9cGx%i5J@a$COc0jSstYW%({Uq@FVUVc!MWFjegxdz9r}3%^I{lvqKxD@8WLrW)TiaFJ zj;5`fSCF%ng}=xVZe)I3?)Yogw?VkI0Vxag+TpE~hV$5LX8`I{|V-BV%I&JY&9>(zx&~G)}dzV zWRfu%=ouOr85$TEo0#Cb1Rv07$LY_OkhWDS{O76k|9z=!Wn-`tTC?LKKkcu}-0iTn z_N~&!Vv&f})8+b8hyRZiqmz8j-_8{Q4gK8_`~#ugkKxAa!3{1A3tcmZ zODA3~*S_uk;=OzTWEhKj@vuC<)kPqC;qa2}4N=@qsmEaW%xzH5k+Y9t6kpwB!LmKX z6)w5&U|qphF`T6lx? zbm8}=q}ARGDe4SN2$d!N(~(;x9Rjmw==ia(X%u1^NI%h&hi5~YREVPeLHO_+G#&0{ zg$up0FXz-56ZFBgmMBjQxDIL?sPat&x_a&0gVcy{-A_pvn1oej)p^2Q8;<)3L={Cl z+iKT#CJIc|*HzY#`WvVIql@LXgQXik9@FFNBZfIb1FlY12zKFD`VmYr7AbIu)lf|t zVK>-J9Ry1q(ImBW(~V~f(}H2jeIYR-NkX>@&hI!7h|p3rElYkGlP}bW29xbXx?&T% zRoUZF1_=y^DwXgXNBXU7oAHV76Ab;MviYqdYqn3aPb}R~grk+AO}+^^E?w()t5AEAnol!*=XXh(t)=s5!E^2+9b&} z1n1JBGJUXZdyPHy{K=Vu@rC?M_ZkXLvX{5Hn^l;jZs{P{K)PQ2w=>d%GDAl_i{Y85 z_vJX$YBb`2u9z9-Q&P7~D43uXOXmv~wb@iXK~>B9Fv!a^f|$N6F13?W`i}no!&ru( zvdQ~0JeqOx40fZ&_>C=!r^7PjBWcVZ8n|Ob=)q9+9d(8ccXkh?CqD-6MjL}GT+U2{ z@>&k_8=jgxZL!UOt03SCaE%>Xzu3|!jHfATcPr~tKi(#+L~+k87U7rbS&lFXCHqM4 z!2zfF$gYLK_&RigT3D-6ipmP6Y_8hbwcn}T1xSlll4dI0;J2?W;MtH41M8;~p;_e& zk%4TlSA!V2?uVNo3?B5|A^A@Wt61e}W>S&@8Dz6s-n-3;2C1DGs{g{Z!i&6!?C^+c zcSjcrrBVK+_j2Dbc(&cQ*YCu63x~oMV(CL^<2--Mgp@9OIdL$xF&R5zk3=gfDI4-& z2-tjw(`@RF#vzAo(Voiu@W4b2!;n!#%(Mq@)?AEX~k%)Q-36pv9h z`9%lihY5zSkg5a*GsIOWPmKCL6NRS>Hvu+sj6bo5yuy8P`P-}&jv}@w+CEz3ThowFHIWe z{MR~sJZwXA6J~r2_GrC1r;GT@d;~Nu+=C+&AV;H z9|gkj;VVps?ssZ-pnIKaHM|BvIjl($GQX z0<)qE=~RTDML$J{dO@@iGX#tt)S(NZ7mhiYj$TJaA!{gdu zwfkx~(Ej&p>%S`AA>0)qPZ~n%i(JYrO*^d}+ZBY?9UjjX!TVNeHf3LXmMyW~94ypa z68cGp;gJg-Oyo|s*Lm-$zxQca2j)d9$G@F_`?cTw*x>oqX(zf}VDKQ(ji>eRq|VUL z3eF42V&;J!RjFO4Su456@zwR`&uvXoosuQ0X2yTbNcfuho=aPm{f!zb5UH+V*0GwE zuJm{Bwzlt9q^h2aIJhjPJhq>kZB`tD5#xQ`y@ED(N>m+BDXF#pxyld|D9?Q}bVwOw zp3T`bk@VJDm7ULst%Xr>y^7aWdR{rFn3bdnq8Z<3c~(nRqDza)n;bK&tZhb}kZpHr zSR|G!<|pWL5Gct9RW*e%+8zNOmI(eKQP5Ac%%4}l{yn^p<@Lu7x^v-RVCRgN8+rf? zpt2x7RCcH0(5iA}TIFMXvt79I@McrOv+tH?%*KEC2woOX?1W|r>yU+zkb%BnCOylz zjE&sjd4wlrK|DWfPid#LoF)p=^W0&LxP8l?DiBZR@n&}dMn5BG@l8bTSiiJHQfs zFcRaCn<}h5$>)!J9I+1N@a&6=WX>3Y;pwD~V7x@(pohqv3~@y>g= zF1sV!tr#BCnm6Ymip^QSV;nWcD+<2bENv4te;uur%0tUwLtljXL&K#*dKis1J<1&@4WD2mWPfAY3)FQ+@=Z-2!+e{V7=IpnfQb zI;jffb$+asuMpCwe>^GM`cg9q^&DAg!r}MZFewK7>$COJXB2C&#Ov+T(#6o<1y8Z& z>BLQ9w6)ATwJR$$6!V`cKR-(8cY=OO?3BN!i%ooWEe$zOakdta4~2m9z&9gD-_9r%G=g+GMW(NQl z8a|vRA&H{=6vFi1bzw{&WB)n~NbX8L3Jv2~!lHjgF~xC1NoiY^7s28qKM6?30ZAbk zokuN*=0X1uw2X+#f-qRplL{wY1ivRfmh;XQL?FQBxFgOtd`mzF&O2w<&Pj)f1_VWA zM|XsRSW*KTa}03p$%dGK#ppfI*P2vpNj@EdRN;mJ?ze^C-~D*rO~}K1uU|BFqZ(Xx z+Prq%`Q@>E^wugaSCr`>%y=diN%1-=l@EXHr(U^Ort|TSFJ3u%R)OkWx)y#$X1=d@ zuWC(?=v^#@LVRmXZM#iP+Zv_b@-~-eFIIkcS;+pKd!(_l`qe+^Ym~LID*I=CcF8ub zw*)`8fq>Hw;hqd?oL4+_}2;i zuc_(X65?n)^wUE4g$p{_8jLeYg!=w9RiGU%?M>JU_Ln3aYR!w)zmG4U5gTH2G^n&U zH}|Ntf37dE`CsJ1e~Sph=l)+)=DYcKj0-Mn)&1p&daig}d>5%`PaUs2J30+l@=x+% zzn!COI#yd2HUQah;&Th@41!8LhSRPazjvt^?wZ?LIy!q7qPvSQ$rn5gb^?5XnNKtJ zxI*L$_T^zYO}8l<*HPf!lk{}&MSCn-+$&XSODoKvKb_Kutw$K9KRI4HJ^=H zqw8?7e=M2W@8WhlJozYf+p?P@6B1k@)i(OOaV?-@C|`R+h23Kyb9qyR-HoZdX7G+} zu(O8gu7=4JM$bIVutS$tYIq`eL)$i0?gLFe!Osh=?Rg_|q0IQ4Q8oxfDs5RrZraZi zih+&l3bLokurT%dsfDkQ%Ga3q5&K#- zGpgHH-Cuf)>3zFABtI6twA7GcO|u}IT8=E3tNzSXc!4pn!&Y7rzwzjSII?WNl35`D z90megHG;jEO*P8F43u~9C}uyA-J^n! zIC(%(<#_$;1z0;^RksuEs)ltUMax=1feS>F{*0MngYrw(*F)|0WN0W9lXM$M{uD{a zqoj?Y4Jq|vvsOe}%7DQTi=RR)1a%g}g^c1MnRt62i*Y#HLBvp`@`O@#T>`~H3%9xp zrv4ARquWYz2p0OO@2nVP83d>FV9591yVmT#B_|ko-o_T;P%4np+y}GjaEHI9d5;of z6GJsdA(Sqz>@KcGdBfVIR{s=MbP>cp-??2DPuL+(`5=Y%Vu1fO66S02n0H?+`?=*} zY@)LUs3hoz$n}w#0N|6taA+8bi_*&xKT}$#jkVRP^$TO4%n}D_D!9TmrE40me5U4O zmD7{g(7{OG?*3(akAa$0H2FuQviO0|n5)S6_F}vNO!Fm3deoThejeu!v$F(ZgaD5dN}&vW?{-2 zid{^hs$&!X+I@Q@Ft+TF-ljv{sIji{)v#R(YuFoQLDbFbmHBneaLudTS2-onM`oYZ z|6?=o<`9`}ics>o^-Vx0KWs)h5-T5U#~yRJ!=a(07*3J)#S6B^!taFXgn0yM<;zv} z|LEt_?|%K0?Rs^h_Wksk+?F*nG#^Rem9gXtBE--=R{!? zrTRsYWoA?My1Wk|oV&--H?$ZYHJ#BPEKY!Ul%NpIMbGH}9zo_Vj=T2A!VM9$$Vo2A zk>Q2pXfh$2no#Qf`{qx$lXz5DDEypNJb&+zW|`f&Z2cqb&p)>^LRdy*@0MWnqe0zv zvJBhF8*SmLuli$3GRTj&Qm-Brl}wW0U~YGKwz}2XWTNvw%r$%z0UU&-RGkqqc`@6bc8$s>7R@}6kKanrCn#&mn zzWN-CE{0D7{!TsHWGlH)jOLHV_F?nWLn7*&4COKA zmIDbejlLez>3R2|H>+#8_r3!EZ>6t76t==yrEjTf>+Eigq4`^{g~$+JG8*G5w_qVq zqAgfu(wiK7j4h9t5pq+8;hR~2rcmNSyC>qZvV4BLJv%!QS@nqHkT%_AP+j!R8f{_? zR{G{O0Zi`<#1UcI7>fHO?F==dedxI(CaUlJ`|o#NsZ`gmMope+Ts!d8%V0Pi-9&I| zOr2gWof}8+XISX)hvS+Gug{L^=bVNb&rg zQle&%o@BIwTW#EGLT#Zv8yL#AU6EQGg{!VzQfnU0nG-E{0wJT}#sHXB{(SHjl?6@& zqJv!p3k-rt3NZ|#0`pNpL^OX%(JZM+@hQ7XjdY z?KpenAbW5ZN^phB+s$+N^5jebhg>eccTAhDE<| z21$-zlcS+k^t19`bhA zYMOow`iyK?^loTQ0}CPDimdJHtnDj-rb4$xqa0^;mw)eq{L=Evr9nWcL5l&?dx&EH z78Y8`Prp_>%I|MS>hE!qMe2$Tr~AkWzc_5(Ic$D$;C82}nPM$}^=b}jw8Ouy$D?SD zBq_zf(x)sd>W!J3@4kG5{jJZ&TE*mx#C~}*sJaf!H^G>3e1ew;lK-H#&BqB@fmDSb zWAw6~=W9OzaUTM^TwE1^wI81c2KE3o-?Pf#%6lk{G;bm#j#;?UkG_i{7fJ2d-r%bo zy#<8e6NRc`jO03?FVhhR6L)j3l}6R*z0>3^HfwtijeBeQ55;v=Gk(`1??oqqM@XyW z#~Zp~L~Z;!X#oRwzp6|s*x)Sp6sq;F_}^s#x|Yt4y*c0oBe~7QXpT$}zX=7l!FZuU zY50GSD7-c}G2}yKk3IbYb}QZ;cz&rrs1kzB-W$ ze9_~gM8Zk(%lLOEqJOHibhCDBlGn$b+xaL?2C?+4{zFD-Dn+UMa^!oJf!N>L`}X~lpuc;!$?bpCXdGFd zu8{Gf`ff?`CG3mtyZTF!_Fhl8|CpfQgxD&CJr*cFlfuBMBp{{TcW`skIEc&wNDv%F zi8lzYIYIhhxK^b>gt*{%P4cET(PL;RKv0aBj)3eo93I5~DoQ*JZ8h49`-#zFltp-y zYZ&286cGGzTnphPmDE3^hI3bFm);#f@C?BW!>sSxk+6osJ3>t~TJb>Q`Xuy-z`by=nsM0VAGDkTO`^HBel(IRo8|X~{+>fxzx99g z*&{C_X5%)A^7^v$^6c5xqMyE9N&BJy)NtZAFf#jv$O+dL3`N8h-JM44HwAo=9U0@) z_n#{;<*phWx`y+95FCmOX?%+>LJ!;(fKQOZf^&>`+F{^?>;zUdw4p|P#!*fnx^B>T zqkzIOzH`Hj$#W~0eU39?UI@y31PlkXmd`KXNXu#x|E7`d1nlhy?--_ww?R-|;epa2 zU!_UDt!=VpBu{51S(GOJj`)`NCz@QFDs-L8M6Wt<&=GOk=M|EpCP^0V@0cqsFhWD6pX zoNh2XW8YbhG?-oc?EYb?iT9sL+C_!R-Au{DKQ7ac11hht@>C%7p-)(XK`6hh(GHkmy^?oqtLH|70s%T7b zw%`(*Omv+n=NDCVi_O8&{NDk|!d|h-K^26b=hNbJb_U`1eXE!rd_(`5P5YW%xA=dW zc}JS@Pd_RmA+9tU?`8dmDh;le(f)QPr+tkHiORN;!x{JR_2#T|e{m{-jvl1~DU+A| zoC-^}qcOqKBufuhr+~Ja2ViztGvkc$HJ5BIFkIAGTEtEY()r>IBjyP5YZa4DWurHB z+8&(>fOFTMa(Q*F*%szQg7vl`x0*&;{@wgkc4p&0Si$nF?KQ8K-)5pn(YhgEI|S#c zuXNgbxp20*ix)XlBrYnl#X$B$li2C&e1t?>%4D?b~&o+wy7{z6J}? z6lvax`keeVak(=c{rZ60A%D;DB)a>2x~=fs`y6oI@zBulG!*20fBYbNo0G+HAK5|) zAV&f_*bSo+ap!|{`5aAtn}Lg6m3?+7XW`6_Xh3*7mZYy6?eK~)`p}~6)~M#xG5()N z-V=e+ja@!m*}E0y#~ZX4xfDL;))$z>N2h_B--&qHd-p!Xz#2NPmc!!;4`ln3!^)q@ zu7M1Boel58d<{&AfRV?|L?c6f13R09qC?)OrjV7X8iXW^CJT77dav1z-o#hb6wI$X z)}Gs7UJ@&g$O}-LZbp5g_|e6V40-oFke8Z&W=tUKmiv`1F!d9IkfIi_1o8HpJX=_Z zR2c1V*8G&(95BGFOp@UmmNsy+6S?Fm@C(-m}rg#U|Td~P%)ojw~D9&Rwz z%RNLNeW=+)IE*-_f3qZ*k0b&cQa=axfHr_Rl=ZUYZPTLeC7!AlP~OCmuv(;$KSKOe zYVo7WdC{_&LQ-e0)#?HH{R3nR!&EEz7{cIM_AGy4V-M~!egi5+n>T4RtE6N$pP_H2 zZ>j1ytZ+Uny~!bnKHiQ!*nk4l;9M*(zL)_`2OL+_+0=Kg*%k09RJ%PiD~}D5L{!@? zEjamSS@Y3={)&2pc7zhdr4A#KL#NWcVxcdQorEcb zOIvGsXP1f(CqmgG9(=oA zkycS*cK7fnpsv)|52KA$u?V^Gsx{;q5~}J=a1F7~C{T;nQp1k55t6GolbSMR1WL|f zB-z=EJZ(6|UKM)GrsdI2kl<-fW1<;!oSWt|jfJTtz;Jw06*I+V=}^DzudtfLL>783&P!TL6NJp7AcKu@&t{9dWix9z`O3>tnKasu z8(hS)h)wfqTnW;7K?m9@{2{<0$GDL?p~r)Wf-d3jf^CrYxn&f3L%Erm1;J~cQ6tot z`9q;HVxeoSGSO(UIOD#w%aTsyP&phL5I0G4iO~Y0k z*2Fv3jj=1Vw#zv8G~DIt%N%5n6{BCmuzw76TdDgts(UL+Ow4+G!M&)k;FA5JB>P9% z+Bu9BnJ8m5kHfk@5gJN`GF2WIsd3z4eB7e5t@7=IX;pI9>PwoJEL_IS+~bX5?JK2T z6WoAN0V6kC?G)3`p;H`)_n=zy-a>=D0FjXK?&1|ntE=(w`0C=Zt7c=3f<>3g%@v*B{K-ASM^KKKGd|`w+-Igmieyk zD4E=AA&d@@DKIVLH^U>)MuNg6rer7(rN!H?f6fW3z&YNAR?x7GGpui+I4+BhN{sTn zLqeb3j*jqSWJV?t%pFJe|IC@YiVr+GaLx^Y=kiLx01Yrr)C!RN5mb{69`JRK`M7>x8X^eqIsH^(YBQlpZ*Hx1GG#!j^f&q-f;bk=H zLTTKL5^COCYTl2>vrWg-%||oM$5ROcY-N%z<0{6RVO7<}^eH95RQ{vnp4p4hPkwAX zxCSNE4Jsw|kUt`iP0LRS2-viI?gxuzX#pPF?8gr-rG3V~*!LAH%~cALD*Wv${oN`Z z-6|KVC(M?eJr6zav#-#yuWq2tVlDV2lQlwXIOHV)qFDPKvwBwlRUA`i5H^VgF6E>& zu-(XLt**C03q$#0jsT~zAh)4#P3{D{j_oI%g-xm9zU@mvD)&JvboOwcYu_vZhb&lETHE!qDNc_>-1>6~@z70p!k$JO|KBXkQ^#v~b7 znNBll^fG@K2|L1eC!}JAR~T7R&z#%8bClo>l@`+4S3H#?3TjH_?6KJd*)%X(nvfZq z`>HTb&9~QEF#nKO?1}K0|wkSM%?ZrrSx>&8vIn zkfJ`%%gju6&os4oL~SVP3W6va)nO^`g821@IuYx;1#h)N=?`FcJ0HS@I0H4&%GVyh zpi{t0`Z&aHmPI;rh)kdVFl!HJ{$KYcI=dR$M&YbkUe)uu37?0%7~f`xw?Ye28`7@CGM* zFo$fOnPi!r>@Qofxlr^N!!=gFmu+U|D;|jLJ9alP93C0w-+!&xcWos?!$P*qMzUfJ zC%LDLkoYFU24v^wq4^Om7_UHa#MR&nLg3Ds@Fz(HOU<06bV3nsxEW?zQk&?JfLZYg8=n$4UPx@%Wxum-H*s#stN9CLV+9Ew5B*5GnFBX1 z+B7YatJ!3Wm3p_7=#z&+&5Hkw??=uxfClaa?3}8YJSyyJ=#@s=oG?!>NR~&?{_@sg-D&^aT zd(;C9t$%^DZW@6#&fv*3Wv5;@g{niEGvQIN&gRKV`E(5YzP7Q$*-dlo{0qN~Vc`?A zw`-PfLU6q6{FF)EF6rachCd4rWQBLG%+y!M4rnrIks#c@wvI5hXZ_Zfx$GhBn*H+k zY8lSw0e=r}+b1pqvesM3?i=drtM)2f_SiVchsVg-#?l=*(z7@Wm#PffT$&%M?u$)v zN7|?iKUNz0ni~h+{a;!t(89{;o~E&>qq;`o<-&R8k?<#xK-2Y#w(|_K@?V^tM7TnleoL@2}n}+ol4_E_=ldePBcB_DYj6-B5?}ZZVB4c z(3#Ch_AY&zb4C^ zxN&t``<)&H8Q}KQ6ZDt=n#O4f2R{JOfP7z?booQ0-~rSKY&l36LV!ZPdl;$IMe)s5 z#6~KY0Smw%*Q;Ji&msSdO+Ad)E#nj|=WZ*lYyZ~JQRdwW$f5PK16Oq1kcjx`4}zII zc=_PMu?O>oyJUh>z9v248bj_HE$((5(RzKsAMp|-zYk3Zk8rF#IEp=o=^IqRg03Yq zK0o^c+kU63n+L`UsTXz_I7V@B(I@MFA1agH88&6+%p97|{+)hv`L0@&Q<*=%31k`4s=T>IAPonnN`p%YkDU|930G` zgk7Q-ZSz|haJssDRo{ylI>%`103!|0fb2%RBXGLXfmLPPMvOm=%BuTygo=hQlT^8S zQyJ4_D6Ac!Ki;JoI?~s~Ygil{-Ru7hfvZKYf7^=Fwxx)>Rdq`RQWkHE#S%q4g>4i8 zHfrDU0RFnT#mKQ)6Q9e{TqKDP@XL4Pe|K&VKIVuer-I=a4-xIf*l@xVpS{kig!{nL z(i8;v3^|}ydFn2Zz5q=;G8c_54(S(+oJ2fblHX0#;X>x>rff+84O-2s`IYvSCb8tt zOsoUxQ|p@exp*S-k&6+Hc0ee}EwU>5NtejIECWz1&U_=U`EFdM?yF{Rzfb!Bh*9(~ zMJZ4hc(#8gyPj6;FLGn)MBY{!A+}8Dv_c5M&I!G;Cs583hABY(G-X^c@6*HNc}91$ zEh0D==NJyQxI2#B&mtt-ewPLWDYX1%OItu*@MdVb!jM+o)Nra0%z?HxmFrEW7=VTyP`yge**LAlk zR;rV~u#WEAnr+|CcA0dC|I+hMh**$MRb;W9I2(2r-&rng7wNwd5B2$OLrc82KNRU| zks9Q=UnI+^6{zznC+7=v+~n$OILA?HIVribbcA8GMQY#opEF!4+~3xVYiva=#vRKT zz>j5S#9dpP=e|t%$^!VEX)FRvvB|#GwGPt$;M2}WfN>;|Fs-5Ov58OE4zk&cUq zzK#aA4Zn;(%+gxy|K9uI-jX+3-tXvQ$3MTnz;2J)b{~%bE)Vj-I%KYtO@cj+{Bc=e zWK+^V5(mRtAL4A@B$jELXIi zZ6;*|@v0%NH?<{`MVCr5-fAuS0$v~i@(k^=xV)Nz(;FL078ged+5l{2&iU!a%5jtUq? zqSBUGhw+{2r7~GSEM0qif8?>I80l z%>+zjc1R0BZtXOgFRnM%-y8`Yx*O=lK{LlNHmEEu_T*FK6BQ0Z;1<(Fok0lVkS5-3aVYA!3bHD_K!E2^Ou54zB~U0gGmUM8@66D=9rW?ru=kf?-H;iC7YP*87K%U*SuV!h;TG zP#Bf$Im?Bb!!QTHlxG;5MhfZ3f=6%-W9Up_jitI zfm0M8r#6D-cKpV7TK?{|FqBBQ>1-=}OLC>d(1~&22G%ZoI_Bqd1FF#TQYYaiwzvhV zfg{ZSj0b7N!USx8%A;fVEjOeuQz>i9EZSM0r^!gX$%wzkNSIx}h+W%e#qq;|mv4^8 zZMKK+mB?}n<>(=_f2*3oF%{afB@h@?_4|ML@g}YT5kFB-tr8;_B%NZH?fV74np_D- zi$I)&prI(gDSzF&JY3z~3tsY=QCo|N|b0FFZOv7f>W zZ?Z_LEsBzpTQLRuPJh0FQ(ya@>K9W4Q?=A_8qIsi>%gxUqbl46TbOdDwHnbl!w3g_ z_s$olFMPti8NF6R0T#a#5o-n!@1Y2j%?}t5xTWnx3~cSud9{eUmY9>xA?`T=LJWdrUv}`BKUQJ`VJC2uSCkc$vsndjfpIkbH{~+``d?JA zRqeevRYyx0J?v~B+M2Q+#CQ^HtnB>#W7a54bX>+xI!d_^^Otd96a34c6Fcd0tGR{%$AQ25m%eBsp;{UN<~<=I=s7-Zw`Z%0 zi!thi`p+IDBqV9!%;9`X#J-$#9v95H>>$bcTajm|jNde*O_U)|-l(xD|IKS{Op>hO z6GP|zAJ;5#>iXevTM0lzEk)u790VRb(%YdP(6Hqh+!oMhSlz28a1TH;32lXTKGZ9p z64j|kjRR`CQ+E8#pqz}Lr{%m(q>yzAKuOsGE#YqV|F!|T)=j$3Eppq6?>pEN zeOwP7`q@pImf~u_7bsC24JK@LM#Ux?)=(q%8VW^1Gv=}|ni%@P=kLQvebAFx>OP8h zH#F|K90XYWqF;4Ld;pJSweu}H7;^zYa6v+UP*L6C2(THHG49QdWvM$z7kL=T3_>CU z{|>i%y+dt@_sg&;C=TeeFiK4RO>}2%3xKV({F1(u)Fr2Id(lXd$2}{gJOu11!?<4u zb+~$HSweZ|OlS4WQ2(@xv1Jt=31lvJ{Kmio*H(I~PRGL;znW%WomUkTnWlbX zc838;grQibA;bH~e{D^dV$XXq4t7I8rb)TV0lcq;h%Vb58BD7jOv@UaUmk2~8@&Bg z7Q%4X%TQk=c6@gA@Ox`79h36$Jv*eue!SxUk#1m&#H3IkqW&>l>5Q7pFM93}vuovG z*1KWKb)#FiGR@>7PyJ3{^fQ~gVSNZ?_tI6*#Z{b3dH={T;t+}u8b4ZgIX`Sr+CXHn zAL}*aWJ#x@cT0K+N5OLF6G!N_Sxz9 zLZI!b%D1(u#dxgcK&`o=C7^ypvj48s-Re(U={0*A@=$%6&g{e8e=dZJ3j*2Ohj&eA)sVp-Kk~Ok|-O8#!7xNxT?3Xy_%`0A~6!wN$F^(JESiinA#UC;#)? zc=#7W3IHLl?Od<-F+e5H$9TPOsVs>im>Z;P=Wk*asPW!M-@(t=CWtK&=o=(!RyZb~?sG~W8lG<_{@%{7Ki_Kq>QF3wRKsnF z-BvMXZZIjoTq%0V$O93i6e_gGrf7U;L8Q}Wfl@$c#+Se?{_UH%p`$2(~m}H@-pdzj$bsn4b5|(+kLBqd1vYlQxPA&8%3c+ zr5u&zgjh~^`$x5E0C)F9ti`I8W41#)&qEA-HRCf_wcT;QGojX>)c<9eJZ`Bzk$@Pl_-=x^q1q0?TX zk&XvIKcFDI&Fv0CR+y2uAd8THA&8f8X7VDIj6AT9Tc;2qZff~C9NFf(K7j#q&yDvc z-cljjbDgk@RI~`i?SkRUgqK>c~|c7M=_c_a4@k|6!0+-+ZGSg;b{PA z5d2f&?8vo}!9L1neq_)v>L5f}Y(VPc_mwM8#0r6eYCIo)Ht}rchr)OUK zdRm%+)Fx__&?%T1(U(@Yalyjf_^Y&c#V%c8*I4b!I!g^@2aDu>2Hr1L~mx~)ag+( zq#yyMOY4xUD>_kx3(O2f@Sn)VEM`C`Nt;^IxPPYQQj`Zo!_=3~FZc*5-0hJF07)~w zobXW|9jVL7FMsZ5=4+C7|kGtgiaI?65oNPiL8gy<>2tPuEBu2!drc5bAwb}pT9RReg=O} zt)Vr8pLoW~?u5niobs+souVHuCu-OmWWRP3*bDF`d+@eA=&ZCQX|?4&cYePrIdrgo z6=J!HyiuEqerdA>h=Bz9=*L*<$OFYRV4Erk6%GZFAU7{{I5b{@n8_pYn?6%D9!sdr zua;8FF(Uj!+M}$%A~sE(4@Fxny>ekMXd+)Rp#MNEZ6+}A)Yar9gJQBCNTh-yc6>v^ z^8<^K%-Yc@@aV};wmMT@7VMbwh9=$A9oyH~s-h>2Zqmv2O_fwAQzB5|ZRPqU~DW#Y(xwtA4i2L3`x-Q-JRPr%9`fnK8pw z_8Ss6N}vlU327+gwV1}fquZj9;-ZoLq7j+?y^+1h?W~8}7FENTn0-dTxUhRw2vrR4 z=hXIDMdSG;@VAop|Ke*q9o_Dg6%A>A@~DrC81oAn^9WCJ^DWw>KfkE@R?!~9)h|_I zm*-`lXJH}9)2_~6uP)sDPPks1tIoh-$+p(HLHK&n_}*!>jlW+t<9$na4d2H66l&L% z(Emg`08AQAw{af1FS}k#Ork!-E#{m1lR-gRc{B`l(esb5y+g z$J2(#QwGjD87{hMF50O;Yw&VNIo!&6FrNf*!<`Gp25z%Cr0(eibOqq2E1GR^qA8Cn zXc$pCJUJ>Y7*|1JO4>O{X5DSoKbzvpbaDK)j&o z>ICA_3Z9nYKQcUdhXX??K|Ua_4jL``$&mUX? z?YF3h^-1Sp2tEOQCjFIQP6VB#u%`K2aIU`HrW)wbbf{T#E0uR@)c)j{tr|Eh{DIqH zO=j!nG>QvJkQ1YybO9)`UB&N$BLnP>th_RX>KfLj*-g@rPa&)DIsTo9?rzi^tl!#@GHhr1WYTyU(gUWYK8 z42}Gc&(izB25}25Xz%FQUbShKx@o*>ReEJZ$_g977)Bc3nA>4_R6OMTgtiUdZ`ueL z_;j8y`1q&nlSP^k2!bMP3bX(VAer`}M2JC?{&Z>$_x(4m*!lC%3@)gS&6Nk9?#!y>?_M)xL}5Z|w9) zbHabG3GcI{D`a$^WJmRFSZ<(NUM0BvxJZ?o8ktmoTB*nr=|x%q4S=J_a&w%go73d7 z|J1+=d{1#DQ2}BgUkxyZEiHfuF^M3o;|#eblFJpIoM&G{3vf@NyNS{5zhOVoS!n*a zU=1Usf9b&90$o!rA^d^$?!Aw1tHBm2A=5r=7eYH(b0A?n6_2A*r9vTXoqV(iRBt(yP4p8W(I6R9{5WY)*caK|nb&<`*xoCCsojy(J&f;NT^M znZo!@4X4j(NCAL2CL+|{N=-FVDSQQ_QelTXOhAdgNmHpJrsgiA=iA|M8u<6%v3>AIXu4oe8IQ~B>n{-11vz5e`yA?ERDh!--8;ZbjOfb+6wn{_ru zn)Qqd4|(5w^#|uk!3L|$zx?b6sYKpcN{dgMl_Aq7_VNKprT>3q|0^#6iA(m%+xX&O_~u>rlXd@GHJu4&ObLJk~97 z;7Jx5-&%IKJW8zd@fK-aG+r5@I`*xyByY^SqYG0_&4Xw?=rQk z_w5bQkeqcS8nRE@$^pBcZ-!XYJo0MiC*STzVKJ4$`h_3OOFjWl`FZnyCQwIY@H!D_ zT8)E0rY#ojybnB^p~A}$<7@`w6$axc1~G(98-n<8vI=6e0v!pQ-VR#c^j)zQvE_DZ zNE5iH0Fq>1%zc+@@Z8v)8-opxHYvyUo?P-@6gFjLx9}w!>LeFp0vUjx%H*8=NonhR zTQ`{Q{zXDHzkS;lvbEP+b@tmASN*1hGiK_(^5Ct>gSlszXspb68wRjZL^AczfAL3P z%Vg%iz{L7&C+U~4Or0-;YiKP*h@J}0T*bfT%3FpR41bN0{dTC@7R&!t-ML83Al~{< z7y9EG3N_(>j;pVU6VM<8=-UKMuYR1|xckw2?)me+TyA^O_ddg5f1i0W@=uwVaA(vC zp^R`im#Q1@)Y5wW{987jSc76}ehAfn9yh?A`yS7<90Mr_okbVjd1q|{AnWj5#{i!N zuyTX@2u!UbSorz~$=4#HG3bkXG_g{_9{{)Q_Rd{Mi-D)FU7qS;zU?R|W$Ns|{KI}x zM37hgMv!>?Gj5FK^Rj92w1fWa$7=mVP>UJ&ab{+D%Rvp@#jkz`1Y+O?2i`f=RzBLr8>V?x8#R!)YaYz||Da5kTRSzi zc^nD%v4z+a3Y4M=XwINj&Z?VWi&?JT zD(yT+JSkOfS9o+$JVh}JGM5GTrvz1YrR^STZBz(J^-|J$4e1k2-Gi`8aHg=4@ZyV~ z@d}GY(Yn7Ux{{#wqA7g!kyg6l{GbFlHbtC`0sGhVF+%d)?|Eu+I7Tt-u>C-ELDv?m zDmCWUN`b<-t;lp;OVJLK^|o2=l!dl*k=i7QA6lHvhJpZM+pd-@(3%Ap2{UbXjRCuX=Szoo zotMns{!Nc=;hPrm1OoxW0tph7b4c=^gcj7}{Z$Tr<3*{s+mZ_7MqoRKG6%g-RfEVo zOw@zebHCX_*>Z$PH3AfcLBda1lIN5+3qU_I@vniRZmx%=oqgBw?LSviqe0X(|(JBh4*9}`)&9 ztyiXP#L9-94+9WJ{~?xqB|n z5bFq3)Lcw|#(1%FoNDq4r+#MnfK+)fwveBTf7+%&NY)bd0$!#3Pmrd)Bbc|YO&G(v9ifJ z&+V7OB{>^TV20X%A`~dhPYADQIm4>dnKeMNtp;EtWEi$hf>6B5?-OjhO zl6e+d$wS_b$~Tz?@Ix=zf97=>F`oS2W&jDsC+(wwp@R876cJf1p@CI+PDdo)7= zn|?QHI=!pps+iuJ1%l7QZ9NomY(^!E6_cU+gV^N9so*blWS@YWnKFliBz^Sgve;8F z!SFCP{ScST>6*;Zd#|Fwo>icnRe*VT_BXu}Yr{aXB~+#ctV{*}$kRmua)N7sIc-HH z-7S)eEPqgB>m*0fz+-ftn2{iBpKBhEe^aP~AOyv(288U@$RfGwS^abqfr759UzEwi z-mwjUpA0XN;viVPPc9&g!8z5eG4WbHg81cD`!O6njj`6_{9n# z8tkLstFR{#;7Vc(iLkM?m_c8M-;F^nzP%+0Ct4|Lbni~CNb zR!;&`onIfUpY<+odQzG>`*^w_Hu~T5b*lZy7vp3&G(T5F?8r_qSZ%>?>QyAE%x*yT z1!M!^?_HoA>;(8`vI`%$Y6P!jUc=5J){g!~LrgL_C3)+-aX8dU-3;Jf3gQ~cpB1-9 zgpb9@(1x5ajZ)MIG}sju4XD(JP7~C(!On_13Ud1@Al!~}P~Q9KSq{{S z#|@n6#X`dra1#;>^KUuD4#W6WxqnW+%B`cm${;~}0>i#&uPc)S+W$&ven!XoWBOI?*ZMP6LJGE4rpPTzVZAt3qV=FM9d{3`x@WX<&D&{g`ZHP+bYqYz(4D| z7KoT^3p4CL8sp;Q@m+uW9UwQ^fMx9pBEjL6xBu)GnUD&ek`El16phJFx}ab!RC`Y$ zhJ)Hl%ZMppmA@WsKYMwd3f@xs-weD+S-Cw8*#nTorFa*GI!&=e7X|E^4jDpl^!C`m_;#4cKkAf zHSU>#5*SpW;zCXv{pIuNa5;M{9=zTsI`-C_-G2Hu@>suoZq;%<1bx<{L{v2wcN}B| zPD-5H+g|nVEb%Nqw0nN&|5>=D^FM6x{qKdDBe#!!=1%U`KHUu@ZX@4?=?&e7<3nC& zm^O^L%n^54PE8N9h7!+eufqQy%0E!(>uDgs_P5<%FDoDGDj9x7w}sSYrERMGUHjr^ z-pxf_KkAfj-JtBg2uS~Wu44^9BwqTinXCwm9LK1+0J9l{vyOQnqAgC@ZMtJ7KfOEj zgK-Z$J~lMBk+-eH4O5_B`vL=xM1lf35$v=4Y3LL?mq!x}z!>Pte`wtXm)hz){Cc7! zj63I>9xXfzluT^8F9cnybl;jzE>g}fX9pv86XI{rPK(f8JO5`0)E#>@LYqa^{94C+ zAI5x3a;`^PcQX9AIIrDokERD6_G@khx_PR0X8G>}+w5B0?AxaCsm|o*oR0Ud4*HHf zZfNiV_pmx{qAA1|ob{QgF$?((kF`mibxFQEL}37BCc*rR5A_#EM6(yuP)x0btGo=J)Q4#ZHVfju(lJ1yt~TR)_4*BNGOf4-o2Z{SV7% zIjN$kA5`1~6ZeY=d{Euxb)D3Z?P2eMPrOWc5`N?7)W=>=85wNP%3|LQ3+iAcs zlxN|*qrWTmk3MeCW&Te7N&6;?QZwUkhA`qG`r6-VkJ;YJx?#Q!=~DWAZn7U<Wal;uHSc$OvvY3Qo*c6&nhGW}G%ETO@-aVKLz|WP$4=nu z69rms9m_4kR|SHGTE5S|yqgzikM+GGBj*D9B~?0p>%5~%^fOq!M0Y6eusns0i%Ec3 z+c=r6c~4r<|L1K?k%AZ9`wQ)vo3zY9cOSqzU{JG)rc|RAPZ$39+G^EyZ@lK>-#WJf zNExJG&X`teEGDI66(flqD6B?a$MlPi#|jQdA&N_ieaZD1p&(0S{armiQXd5xCUiuo z(Mb0drmgj(j}+@Yn>F!CLS~fVRNor%2Ps#BC*yIKGD}UT+6gz7Rj?i}zUwOYvi_zn zNjHjZIv1r)0b6unv%#+VJO4VY|3)}~1VR7J)w>lS2Mgr(SA6In>JQr@CjU@k>qdFgZ3SVt=?&9{! zx}Wg;X<*X4>9uz4W{dJan%XEu)pRHU=Sdf+jL*lpdmaD6d~y zaLNxl`Dif0xdAHZ zkSM}+YgMif##rf+#M&kyV|uDJI#8@kj&6e!!o}d?C=%ok6#X17j-gxQT})y_-1cx) z?#n(8JKF;MzpLW6$cI=mnyDQ5Oho5$UlvZFJkHKT+cKK2@-Ul2NWX_c9+$aRUF1fdrMATn_nXS%jMvlf+sq zKO_@6S6z-7??~bS7-`0qZVxLYK?j}ev|x!QVRP5B zbrZvA{Spz+rv(kQ>97WiIX(Uj4pQu|*kfN~*>qJar*;JPMiz0l4&{ct5;TDT;E};{D%hsRF~86sMGM{OmCpa^_f8HgRL58+ppw_wPE|~4G)Oh zy*1XCEu}u9p_1UFFG=>3_R$|IXBu^F(5Lrj(}dK^aS|0Kr^?6%W(GScO8F`PoM`9` z5oV~3+nxVz*7qqd8@KXxjmY)?kFc{2sxt1@_J&P&H-dnKbT@1oX;DI2IwT~eOInan zx{>Zq32Eu>?nYAj`}v+T-^`i$;(uoxn7w(Pwbp%Iw?y27LEwW*+L2~0Z{avioA--q zI_pF_@IvJrAkj#=hUzB>Q#4>R7V?Lq=R&4_y~F8OU}5o&nOS#Z!1g2A!c=Dkl@ljH^0QQ(0N-@3CLl44xiOw8vH7Z z2lMBzL=o^mX-5yZg3Ui0a)ehm#zsr{Cx5&gHI!+}b6)WG=jZDqh0Fm0|7Nn`?E^Yh zL5s5=81BMwhkl1%GJZ*jNQe%rw1aR#?V2^(l}B>B_?AdCWC@WgBohqhkhuX(Kg`Bo zz@^!405QHKvgrkt>EzNMI)hIR7Z@BGSpj5d!=I-%9?BO-6vZ#i<>^f zS5&{mMq_wk^Kx`IAvMO*$#@$=;=GAEJ|o9956{R)mKt{eT%BjJt2PyVS_oKuqmU%N zOizO>PYKxxvp0CIkYa8F3|<&5MM{jGIhMTR30Qc8T|Jqk6a7a&L>OVa>R-YF|7$_$ zN{t8IFIe-5a21yL+;y7&$sYbJ+z+Pw+5(l(2s5==gT^a}1C;FZ#B2)EGS6nb;M%5K zbcDh+K_iB<)Y#B^gQmoFs0`1(O1aj2T+s^xLDrrc|II6RHN-w|@X}0cAz_L>3dY}5 zlzS6-o3$05#}zd={7j7kBpi%BOZaDKtki5$vOr{rBM3Ex&~sS$2{}}0ulj{zsX0Ii zQsJCWK2!pE#v_cS1NNRD(E(EmyDKW{K>#wf_ug5|eqXYc2%FubX3Q*Gqk#J!#|gq3 zXQ3XrDf_n*6e&hrBmhL|tmeW!chsSFwqW%Xh-VoTjIm}xI$$FRJ`e=a^uJuit+#Q9 z*T1K6*Y2QxC_4jG<*x@~R|LRqVh+ACFB226 z3@_kcC~&z`37oRre)sYC^#QgoRIrk1_qlakX&=82j$!86HSLnOb3#nLN*Z(m6`VI7 zgl6kWD4N(iIuXf`3`WOR4|2M6>c^+T;EDGzOSSocjqO~Nbn zN6Y2HB8D!X+V)Sqr}mzjoNf=w_R2jhmaj%y$Wq?~rf+-Ksk^>nU0?f>tqduCdRt4fgO`xM=>NC&zpfMexAyiIS?ykBboT=4!rT4jB;kG=MLr`4@|Hi z|7I}=#jfiKyuhgWiZxe|wadWw4fNbj?x2U(#b<8jA>6f7c@V5oY2Y);=}ZDRGGLJ- z5Gq6HR{d=Ahbm|Ge8!Kwr+0kE#2>1Bucq4X4?4PMq!jIC;|;#Dwx;WO(aVIWvn@r4jcMJp|ZAh_XCMj+ZYrVDT3^U~) zGa~5?Jtn?!S*rt5QRdV>q)G#INz(pwYYbJM;6Sp22&A19O@KCVuec38HksVsUA4QF zww@%5uDnf7C;noW>w>)3An+*+zm@Kr?)t#s$K1RI^_UM>q;+3sk*{J;-9cwh4+>LlDg}1~$f6AAd3Z%j zUz-Aw0@pT=zk33>;?idttNH^Do_#?}64;b~kUpb!=BVt!*V=2*vjZA!w9EXnT86Vc z)7AE_vD7eH!41PcByfC$$RQR%cHwxQw328u%p%9j+i|@R1Yq><(ZIiC9}nsKw1nc6 zspc6##LSt>#+}B*pE03L2fUmQju>#! z4?PFrEQ}+CHD{10QwuELfSuH9RkZ$UMlab<3^X|cWwB+i!7wmAYJR+{a&@XH>no7U za8Y2gWiYTlbeq)m^5i>L?~Ua74b6Es-oRFs8)>fK6v2;XX9?A9rDp>a!pUNebS{6- zH#7L!a!;cVT70}wCNG=r1=KdS+D zh&LmFZ~Wu&Z9?;d9KM4l@DK~xj|g$$dV@5!u+ONW(QvnfubUU`I2ri#B2A_UjNN4p z+4vo!8q8mCu}T#?7@TO!B8MPMczdN;2cv|~y1`;_6rshA^pg!6#rmc^n5!`3 zQsjR=7jTB)Mvf(e&K!8pSc{@goxHtbq1K=y!0+rc@rTOe(C2A_1rZU%mYR=Nunc}! z96eQBm69e$R&plBC;J5$k?i(yPr$U7m5}cg6uTO04 z_*Wy#O^pM&;T5-9KVVfgB4=3AM{dYL)%-%zPvzf6C*Sf8_@!mb+#G;U;J2T z74zKjnH$Z+?{Lo`YW=r)eu)yL33fdr>PWsf4Nt^hZ+#vsuEkeQ@=%+;0{3`^0*wno z)*Vk=RD>OJ6Jh}#%Iw!4UtyhWRft`8L3Zx)^McnjZl&3&hJ&7c)WpuEAb$S%RfU8C zsS9-j!_UjHU_Z4j{6H2jPDUzJT>2SK3`#qqUvsumMJOFyVxm57TE4v9+Lp-+!jQb! zFEW@8GoN>`ZePHVq>~ZK&PJYHj0WYQf{$_1wJG~papxcrE^j+F{3#n3(lj?R9~Uxz zb^%CTKC5`cQK^W3p@Dab^%)cnlFCt!A%U+AlKGiV5PoxGjxG;(>DT#c1d4_gS=NkW z^d`gIL1a6A<#XldVy;%=A0Vsq6Snj1nmS)XB&gxRt%~;@GcE%I5uIu{k)H*^H5%7v^qcwO7xduyoV}D8Iqnmy zC3B2@BNjac^L8jedv-^SwnG>V$5*f_qfe3nm&%sTl$YFHK3jahHWV8sdPvv@tuf)j z-$Bs*@iV}j$`O?_f-&I!zFVx&7=BCgTYszPtzNI{b1(1~bO$K;_JgwqLjQ8hl3)=8|z z#!d!E@o=si>()gnAy$ZDud70@+i!Z;0s2DDlUI2Q>@$?#4l=&&We}*2t=jUteGs-W zW%hQUt##vVWd2)W`zSG>q|^IBWkl~!yIyynh%CMM@z7La_X_V;8M*6QY(ZuueKY9s zx{v)Iqs$McD%{UXQqeRH_-!zCUGhqi&NXw)nuqG94i+gcKVLq&EGYFA8YBNRCVogl zXOHb3HbiAdpLo7+p!w_fU~tEf?XBMIZ0Z9OI*v~&dE&C=zy}vIw@*%sFBK%kexV1WBxvHv65>KttI#PmWXsTFBug4P zxVCU@HaqlVZXCKP=)TG9cQ0S|X`XhiR-kEBn1zenN*<)32K2XVk|1>!5*typl~tcK z{viIpMiHVvUM+76ddrobt(xt+|K4T5*yq6dA*fa>m3(VAE9;`5viN+~f91O%_1PbS z%oeHF1!y5}|Ilp7jUo}W!+pelaR!UzXR_wE@vd07sya}54dAzLfM zXN!CzEXeu5$s8p4jhZ^#R$wn#L|~}sP9+MwPu6o9_}y^m-<}gvf+3dp;9i5GSxuQx z|G&R5c}EeJp`kqDS5b3!ZyKHslhz4eD090**axkAwv7^5OpF4pBHu!fIBr@Rh<4C1 zofDP{KE|yu2zh_~A+gHh9sqKD^#xmMDKV5%$v4`M8(}SN0b{o2SnYxV^9gy~CF`lG zdbh-{p0d@Ss(zmqNm6xSRd{x9`p>p(mf*&}8Eiw4@-au%)@B6!- z9J;?J7mT#%{m8d_V;rk!M8tiW3pN25tB^(HB03P9_JTl=+Zjz_Nz}|wsUbp;TnaA; zz;%a0@TUyT5qkb6xUyvfJw@7v7sCTuz8+-@Je22Sa8TMTH(4pCMRcjm%^u zR6>aX4fD=l`v&-E|IlBlt@^>gxPAWbsfmS%C7lF42kCYWVcmm*w zKNPJFR>EWn{pY>r1TVROZ`@_jF{erfJp_HK`96UjgsX6c%wVx;C)DJ&+v7edq*zZf zl)qJ|0a1n(zj1rbQPp41y7brB2W~9d!|&L#skZP}uWfZ>;Pc4i%(+W5i`6^Vm3rG{ zd!0o?UcnVj(hQ==*T6ieV|BPm-@LHuFKU<4e~76rCn1cDF(AAfeqKy}&9B^gLbuvJ zXs?ssW{(bhJx_HL*R|5*C|*m1fAef^Q;w6$fi!(@r*lG;-rN3gihT92!gpU9@A%RjMBTmgiz zgL&yWeJ8R8;N%lSatBxk1x(}TvS{+Lvz?nj-Ta3XMsKKIX|_{9(I zla?N{MyA{C8}v>d&9s0?5D<97SEtR{c#kEpy6B57z;Rw>e`U6^IM8~N@ZiLbWRZbA zBto9#F0{FF;&{xH-1&XJHoNj4^Mz5GZ{_5m+tv`cC$!}CzAc2$qgp-XZPw4Su@~`s zcnX)OTfv{vOpLz^R!%#X4!hr$abdOHU4d&!gbFb*7-PGig%LBCm&WR*SbABHkQ9a-==(>7{DHDSOINF#&)yOby6 zWk2O2Y*Kk{(qHzvX8g2eT>h$LobKKCn|G0yGHDMQf#=F`cLTCBy2%CAZDqAT%Q(cC zDHetgb=_x$$T8oCOLJECR&f z#C}s6f5FPZRPFx|H`85Q2U9c~-6Bg#C1Lnh00N-4l^);B!+zp2TV+44c{=zz@9R@` z;VTmR@Q*);n~-@r%iezaQhdYDuPX-LkqwQT=5SzF86lL4K%`nW;~`khLDz}44WU~Y z&8yTy=M;H`>2FiJ{P*R|cQj!JTXB6r9f-St@->Q~G=W&|j&}c%Dqw3^mp?{mhyT~W z0EYvK0xE!1mhp+14Md%>3N#MHHhHRlr-gD)C3vh|7`K4Fwa6QDAuT(>@=Ak(3UEr$ zEBx3!fHwA8AExu4HQi&$>dC{4L>I{c{sRXro7LN2I zn@XvJKkB5|n2ZzL>IFUHizn!KKZ}z~^OuOT{cUw0zY)nV;ZQhR^s~*E z{p&{KO2|v>pt*}!acCzZa&nw)R3%=wT%Ei4Bg3@E?CwFW5IYn(k?&tHm#Eo*;XTmZ z`Gt}hO_eeZ68l4=1)&1%a6i$KxDNs($YJ>%bZ9kbsJ71;G%RWbN@L&dv`z4wXWBk* zbP~+r{{}Kc+zmp&SD8~a?-nUnqd#QyJjq}_m z=t(h^IwFJGlMv+b2;2d{u2FoO&F+$opjT*9FU};~8#D!AUHo#}V?XbmxXT;oB4@!} z$3;j>YOvN{O_MMB|-rf@15GIUYgR*j1V zYHTYi(g-Pxuv>|6)fzjPslGsr5` zlm}UlTC*8~1J{UV30*gl{6o;*9>}5yT8cs>+q1qoUta+CS!49cIm+a*k>BDYQjT#HCmNVB&pO-jO6 zMLU=RoZ)Xs-Nj|TK>2zha6usj4Mgi)Uc4XsXkuVIViZAx85;HuDkjg7){_t_d%Yw+Uycbq&B_zhE*vx@`C=i@Xzb2G-XK~^b zY|rv->Q#@$EzE)_{90*jX?79%EYN~*HDqj_8$K_U*R+b>^~I4I^NJCKHRHa=su{|4 zVKaXnxQ9)M5rkflj$8CnkEiLKNTt3|t!|lc0f$&Ak0?98204NS)9@)4vmroN>*CXl7u^5~UlUt{pMoQ-35KaqPQ{8>+h9SZu$L)zvI!&Ywt_ z5q`tbpe9nK&4)W_sRedPuRsKXObXZmZ&4hK{#7h^a7k-&6BbPcTf1ZliLzE`GS69; zz6T9^>tl2GaK4&f8FB{FruS5=+(hkML_fGL+dC{4R<9J*(QD|~z11$$(k|1`E(c~7 zu+d`f4jz#4D6o9zt6;)Fzdmjf^DKrMd$e2|_AR%X>>K!6afCl>DDeM-sMY_QMa$|F zJqL0Zv8MQE!BgDT_7HG-fL{+2Q)D?laf8R|(oqK;-UNu?nhf`}Buf@47rYL^0!%7N zam1{@T%Xz#sI7dT`lt)UI-qxb!&=2-Sb$xVO0n~YwU%*E8rxjA@r0m%QFuZU1_iZh zWD?Y&L;6ii`)2*|eNXI49jAka7sE(`s@Fi4gIAX;%{bDms9dvg0?s2btt{b?><=QZ z&#fpY807@3!rZLU^#NL#>vxzf*gG@udZ^1G+z=dg*;7gEVj~c&80tNIxLOVF>tV1?ibZpYn0MDy|By?liB?MG&%orMqnc76S_BDi5qh+MjrGpCp)w!#lu=o2o4^)WdNis zk22Kr-uJp9Xc6s9ZZ|kvcmN%tBl0CO50EdwH5 zMhDvgcS2hqC9-0chmeT`q#2yh$PV~|IA#KVIs6)Ifc{*?xu(pm{s$xl$`$hF1toGd z93&DhY8pg>xBl919B%%KLa$9YSb{^)N15;4^8Xq#kSecMzG!yj{>%RTr@39bWwgT$ zCskLQ0+jb9P~|?hBj0wn6gs`z*m269^_TRBCA%Rd6Z8bUxMcI_o3FS0O;YHXcuue$ ztki@G=!tNu{aJ`i&dUL2z_0>LIrW|!cTGr{Sm_iVGp|GE|iKu{S5@*;8aff z(?d}zcmI*oJ8xzg z6Wz%-Q|}Bpzku(e?EYNK3g1ne4VKr+`cv7|lXA+*0oF-En(1SC6TG3zh}RPLo$|_I z!aoqf-0;hwSX$~5|FG@c&dksAfogR03=f{tf3rcpzNVH|eBi)9hvmC)uXeG^?>jJ69R_M^Obq9p0QCQGa~ZgG+VOi^!pLPrs7-Wj<_9*FKuO@T>fcy;+nxAvik1i`oo1gpQq@8D3ux3 zz2!WZI@<@~s#JDdo4u>2$n5yaXZ{;eFkOYYAqYf|)4%~<6();sWqWmKr`pl(ytgaa zz3EtMSGr7q>d)}=@j>jwuFbP~;+Y*^ zkhL?j*+#?*lXKpt>qm8}GnPw1;-hDPO z4IK%w=MzZ^ph-I8#MAylz+s3JZ+XX47bn~hGgd9hjcY>tQd2rNSW;EuvNz#fS$rZJ z;r?D+oh0uY(V(0Kls}S=NeZ3kFDK5e&(Ey~BFLCYm7`ys`oBD%K-+i|x%R5@F;mG+ z4c0qV57OR`DuJs1>TXt76Pbl(EyLsY!0?K#YuPJOZ%r}73<{w05a!l-V_$88Wswo! z{u>SK2nXZUj9b+$8={Lv;{-p_=o@3nCmp;A@%hg6m+Hjj(Qt?js|G%R)28=qzS_HLL^@%AAO&lTp$V!v-`2bi>X)4Szdaz06%N*RO5 z5K%w+b_z(SpLsgVcm^9M_;3ugTk4n+s0D#4Ga@lCXy9!msZRhd8PLgyk(b#$u8qHO zwGLEDu9qx4?9vw z5>?swQtsRj9MRb_@*A{`^;Hb2zr!}b)R5LkBAg`XBjmZRG`u;t_zz?5osf(Af#Gvi z@b%Dg{zuDfY&52=ca^xDa?@4!IlMwS<6-GWMn><8UBbIu1FkghqAr63wwbw{V{ zeeA++Y+fRk4HCf$LB0;594+ZxG@5p+i5fwjn7Blzo^w^U*{2N-EIZ^Ue>Q~J#*FWt z&rvqJ^-fRDzRR&!GAcf)y>#a!(HL8Cw3B=N{yAEwiLkqjE!A)0LJ)~Z;KfP#jQ$lB zSFO|0GxVZ+I6BagkQ9T^oBr8ui6%}ho$)7e(tp2K1Oj7XWjEwNL~Vl30F+}4aW-o; z=h9t+QTvHA9{heB85t4pa8!K48zC8d_A(lsM0OqmoQ5t-AC^wJuURM}Vmw#cEqQ2l zexVgOQ?Tq^sTQGiDdj(Uoq_89UsoTAX5q#xvHs$%f0tY^(m}`O9vvrflK2Wi;jap* zuiA5BWLZFJfODtSy~$ZHbq5y$WhciFeoiWZfR-^^RQA&-!P8-`J1MK5%uMt@~-RRq7^{jkCae~l%`!<|g zb8Kb=6lyW4W%iNVp@lnwErx5}p^lEY0+|jL(qp2ECv(&cst0JX_OZB2Y?Ic;t)AxK zfYM%u--TH7d|pT+cCJ~0m&4VMXamtw3bf0VK0h$iz7OzoZAZ2wjX#G5M{`%OA$8Is zJqs4RU^YQ^NUWUqZTR4|?1zgp!4e<{^Xz^_62qouibc(kDKE3ijHs&CMaj4d2_NW1 z5)`k1a3JEqBve37xP4J%I+$^vn3X7@SL3-0J2!Ge3?mL&r7dbOv{&{c_4*Ai`FF-% zsR%Rh1t56APem$|ga;l77red#gXb}VxQ3U z4a^(Mg`Ufay3srRn)N4h;#764a-{$MVZQYXW)jQ7YMSC^xfRthT#ZN`lhwTzsAr&UA87 zZqn^t0^6}Syj=R+mD>5bHXOG6I@jbZ&6nFp9uwwiA9Lnf#;g`d9BjXM@?ZF4o)0#e zXhtG|8q~-6fs2w97LJ3*zs7ZqerB%oT*4;lX}m+jHDUgZ^LW zbv09%^9K@E_;m$pv_+cU0yR<=sHd|2lBEL>go26knf+;-8a&%fYvafg4@Xe0P^ww4 znQvG;RUSLFt7VNbpwVP>vnkoX`=LXPI)5Z(YU9<(*$>x-xCOnhI;q%Xlx_z{^)?^) zi~ki}lYgH+2mu|+ae4T^S2|Hvlln#(q8()lnI_YK_Xk&9gc`w&xJs=hrd5*uJ#vZG zz={c0=v7vN7L_qp`wULdTBWnHYXZS6TskQ_g}~?Mr%*rW2~h#<`3sqT=paP{2tQ81 zpl5xSz^u`JMJ*KT)wTQME9hWwZ||0f0@5vCqOSE8*t1UzqGgWsmLHt^*$89|f-1vi z;i7L71>1QVrB-6Xe;6XJy&1eNJ>38<411jmw#M4fV+P@L(C~5arBwL?Up9M>!S{d% z#sJr(H2H~5`(J-7h~S2Z_uw#IWLj5>Ul2OOvoN)KnPAW^bFSMq1_(w^6KDUvd5V%g z`vRDMtIfq$7+d-;*t1NcONdJNA;vGN=WfuwRT(n!&+Vi4>m#)HzccIZ-=786q06~O z$bvBYRd|2TH8ry4D5|u$;zfFP_6gL||BqI(Ks-_`I(JNoNI3eZUuW-k9mpx|Q&J82 znp>?u`eHspzU1jHuJAOs+Bti@ir{>yhY+NZLZ?82IhIAQazvLONRcFH`m$|C{+jZJ z{@E!qR_*l@d>mK$#C~P)O*;xKQ7I#uE~3pCPRXdXfkq8_Uo1dX8wRjxyn+z$P?8-* zVk3UNWA7*X445SCy!`n9RKfFyseQO%w!i%=zSTb3hb1{LQ-j16Ziu#=SoyCbGp^@+ ztdjc`A~ypLvoeiB&G(j{X@Y7fuv5cLtWIFnqS?1oQ+7p6}8i6-olg^IiF zmy`tE=|l6QUuqD_}?Qy1ja+@$pZi?7k+i}?Q;^v2?sExO@@@@ zU6+_$1asX<&OID_qWyz==!ZfP+Ky*75Dtgc)oLW+mIcEE`dkbOfp3D;A1`z0AKzi8 zqaJ(jYd|Oe@Kea4f{}^bVIane){ea=Y zcPqLk22KDWpp%_&z8xUd7qy+0bJk0id?EXn%o=eKTc891+PY|`rI}BgGZa5>?7nD< zFk_oOkAliC({^5 zpCu$hfny#ba2j#(oEqM8IA#%*9+g8Cl-f?bkmZ6PTZ&m{syd)Xp-?~(9f0+VkuQ~r zGd2x?!_3?n?Dcw#^#(;1`lYV)lkVmGNOpCD^t>Z_HmBV)4eVM%V3z0u?2l@& ziSpB6oFLRuk)f_P#WaPhoRi=5x7O0jb@m4wwYGI$ysR6}lH4F^!yFH0V*642oN%cV zc(FgJW%oi6rcP=(WffG>{(;$Le)@i^iUtGQzaw>7r$?`ZI+K_ZF^x@VTpN=`zt$wl zL~dLT^v4B^URw4r)|5G)?R_5ISMTGTTC9#=Zth9--;7%AoDRAha>~Ti17kwMLisms z2u0?VJD1bFQrVSyrC{r?q_;aJl=YIlEP1@d;3r$H_KyRJL+Tat3$$o5jBlAq&L6Ev zbrPo~EqT^cE5$SPN}uFRLO)xq2@0_#X9~)@myhDoj;58DGfolX4{hjF+ex-G6V8aYE!J%mP!uOZuiO{#)0?@(r&>>-ZBnY#Ijt>R3%SKi=zV8 z$*(Ofq^V&nM39{~AKng9sMR0`VaUCwdfm*d0<;-Q5*9LPY6u1!$L{hnqI zv4WT@RPXOq$HuE~`y25cs|XZ?T>JM{nUW9Ume9r=;YQj8!A@Pl&J;nZwbU%k+d<0Z zLGrAR_6WidW)j*3f5NDVow_a>5-baBJ5x;gR5+%{Pb=0QCkocrj*dIyIj*DvqbzX9 z$2_<802-clf04815tyNyC-07@+;Sij{AE2|Lk}@`aNm2oy}6|D^)}2}3rFaib33w! z<}Pien3JLE}aS3dVdzXXwXqhe?6X?06~$ zaUx-`j)U;~>mEE&v-FNmyY z)aZY-yIlKj_*d-1&v6c^9~c?oZaUxN5~%UX5PK7kL%D!PT@7qsbuiFJ!{17opP)HX zj`Ogpiu?1anRywQfZ|F|sbGS#zI7d|PqOHv#w@lFCkR^JX59^eP*YSl&mJUUyqRdC zx$qDB7G{tFeH}BV>b`9`Ifebfp}oxq`=S#2mn`-#2g{iU%U>$7^Y##vbxxoi8FX)I zcK`M0-gS(#tL?=jb1F|U|5et#a#Wk&$!%M6L$7o!k=E=vzQna%M(H{esmyPgKo&_p zH2st4E{^`dAke*en51khge)@4^}r*;$)pQE{VW6%ZmXI7UxiWIH5dO$O4{Y{;H~)% zluD;Zu-+)+U4;@m2{gjvDSNn$XAAq+`=pCb}>2sm@dQbX(D7xfS&Jk+VF1by_m-B0C=cIZMhUxI=}y(9Xw=bhAirGZL^ge3@`Gw}B!9YZ-^=e#7|gEt zhOfN=2hbqdcNm7*F5Pb@tA0;0zDEXE2s5qY@?i?K1``ktA?OlmP(hoK?Er6l45!cE zw2RPQiMfMNLc@Z9cR3S0QK%W#sDu8G&!Vwo2-jOS{%f50NL`$X0$%GePAsl43d`c<(T zRKHKaD@mEH`t==lF9>oVpXQ}iLf2h$ugPuE`_np{9Z9p#462mQ=y#V7-#u^p+S1lb zaz7wOt%v983U)ZKWXx^IgEY6l*g&}a*G_l9jY-w~b{*TrItZB456I{?;@1(SfyF;i zf2jGe?^g&Jo8BKITVhS<%-0DTOHE8~cfha|ua!p+x{Yhdl4lXBtLqByNuhoO?Wn`5o^$l3edV7yrEmcGb9Azf8L z9l>>&Ok$S*iWEFwDaS%~*Vq2QY4J68cW}`pkD@sqh6zdQD1aMl)`~{D5rsSweqTDZ z07lbEJfBtQgYn~JV@YLolF3dL!|;v@@Gcs#jE=p_eG|?dj8DR@tCzH;5O$*;^GDKu zO)p)g%8RlOy3Q>3XRh~?MGV5-h98v1X_c1Uh_DB=-W@6SQ+9w|R?V>nsQ~OJ+9j(q zy5cAV(G~W-As}|G>}xDC%{d~_ovJ~@AEhP8{|Y#O(q+lp>IH;`6=rI=KIHsm+13?W z(8v}@Fq3dh*%Y=LOrx4A;?c0VIXn@GDg?K*S2K92AnZNPv*e6NQXwq=6PXp8`nhd@ z5F@E#DAHB-@>S8;pS3>FwZZ2fZunM-y3;hHu zs_Gi*TAg>{@tlm@JDXd!43^K!jz@y80?F^PN*{)f0NG4A^DA$v+;YsA|G^=Y+n0AO~0lLg5rWj1H-XV7C)#B@tp6LydY4;x*_V4Pd zoan3U>3GfZd6qLd6c0mH;CEnIdkZel=9A<~t3zx1_H|_(Lt3&TF_^+lwpG&Zbb`Q* zs)1``O8sGq3#x25p>6ke-d;n{e*9IaG4el%IYKGn?9vE}LX}E1R_LO*_d(oq_MEtW z;c=uP+1I0K_ry2;kKxmu=f9ESY4_7|TZ7tTe%R&Hn!!%YU}c0^d`jd5#gbd`$6K99 zhO%F9SyTw=l}(Z|XSBP!w0}HVs{u6&%7RgOkBh%YDU$uy5`SY)@}VDosq&ub6sSx8 zy3enUs3ZHth+Py9;&LGPQD%1cMG^mNcBV6ih5b<~3=`X9en2yTBb7(Y1URnW&A$-7 zss1REg3?Z(!qCpZAn|V&JXq$hXIdMrnkS0Z>5UV7zSZvA9)aRn(@wR&Ux|;UPjET= zfY#@vtym0-Oxo~b$MG!vh?kezseS#fxaWl^zhwv*^Boip(9N)dLH`s0Y0>GgoaEfV zhSw5nD5NCijc_;GGA^@BhGQ`O2w~&~I3jq(+<3)o!N05AGUoJyMhQfMsRG|{FKR-d z{M!QicOC54w-en%amwo$mLpqMxN|N-p0Q-(#QlM7UZZ!_&1o47*y)4m4Qi&+(M60& zZ+QrV{=WTo6>-x@U+e)a(S9!bc%S2=Z>p%d-Z`5i;>)&RanjiGC<3j=O&MdzIL# z6Igb38H9LrBBIiYzQg+=^H(GNN_rp%J38^~2t{OrZnh zXMpKC3f4{pbKVru%o$-?AofC`#3BE6n-yeo{cdtNVhQ&E*P(|1+vX4Hj|R8)Ask&UYg(vo zAV7vKNt5%=zj#uKK4Z|84xvghX3?}`x2AGn`m?wh!qntkX+tPMheS#@Q0f za-RbpjJ`A$bcR!J$sg-^Ew-MjsnEC^!eb#E^Zd1+fc+d!kv6&18BrFxk)$fi^g6BG zCP?~J!<24A^$V*dztST^5ORYDMK)qeQ)G(nbVGb&;5N5c9_{P_a) zHya*IQZf+9gEM9zenm$OSaKDiE^j~fo>Uccr zWbJBr-gXb)7{jdSzHYLIE*vPXfS-aft`~+n%n3dl?p6*rr=zu6yV2oU00xKyKunc! zu&BFVI;)zpc;M~C?I;#YrTBfz;gL|`Tqg13Q?u}9MNgyahw!LHON^D*5EjMl<0e7n z9my)=`?^eCfikpl&IHj49S|)t^O*iGd0gCGitG&kWtshcYV4G7?jBOIiLb7Wk3s25 zaVmz^mr}mH=_b~LoHEQ#=h;e}$2In z^*VeDsjBmOBgwXRfKMjtl--(C`1!tc3UA+4zWhgz*ZVYaQ>+q!yuh{$ew%-fZDR!o zck}n09Q->ODJcfpsfHLxfyFihS$%0Lk0{=^M3QB5(JmfCySh^znhZ-eJie2JWUj%% zsRvSJr_na}!vhtbT6LoRdd-1RM{o<~8D=>%4bwJyN4zB$WbvMt9b%p8ZB|z8RXmou zWL4~#f&qcCtk?nx$okAu$5Zc5<_p+)h_tD&Khwk8#QAI38olGE12N}Y zs9IQZU-A!lY+R2q+M9K}*;EL!tNq=e!^(|pjgh5;Do|kna!l!Z#mU;GB)arqq9{w& zD@)fY8~fc3r(dB{m8)=+ZSL6W{Gra$RLFNUW8q|A|I*yqU0ryw-xf4J4f?;81z>R@~9f<&STES z-G;Ha`W2>tC{w0i+n)tNL?@URDiOMR1R~aHqMq|DNRg-&NMILM4Et6`B|%#kF59sX z5?R|%;gJ5()-f5`&P+jdS`^!y?_m^@y}xLTNfFndP_p%3JeBo*;xh~(Ha-mK$iFKc z1geONj)C9^R!KyeDb_eRKawC}RSS(xi?fB-lRZ3=xJQi1q4cZ4bakn-J;CMK%Ty=W zGKP4^bjzL-sw_{vx^gA4K(^3^=PYoq0`Zj3;6WaQ^Fx=WF53Mw_8D}b8Y9E_AgIrO zvVY@+4Ik1AR%{l;il;C)*VDK|8XCV`|HN~R0=Ew_zeKEbF)Mn@*|R>u#O2!9v7gCv z_`i=A`Y0D!Kt~!3&becAgQLW6+6*})%=+w;CqACOIr^wy5(cd;iD?^&J~z>qH7L!n z;;<(6S-TdfZQC`42oQqQHBo}^d_mRT=@tYc|5wiA!^PtYgNEB(`n@FkiJa}7o0B<8*6fg zWcILfOqw&%_X#ao10$ERNKJ$mc*StpV(z~IW``xFJHZNKpKAAjUI?^jvu&xS4Uq}Q zaeDCC-0MYsq3rX;7RLFCkHXAr$i&${2=^d(uPBpoQ-z9P)UDgAy?dSIn++yawE6ab z#!aGa*xmTXRqnUpE%24U;MKx)8e zCsY9C4{IbCh3KD?af3K7j6mSDX!@*a_@)12K|}$MNX~NbE$LqQe!5wc*{=C(J;Nqj zD|&f&C2BY*0zdK6B*bHs!8cP7x$?N8tiE%e#_gt}xo}uxc-PeYk7Fj&UqR_}R zN3Yq?!doUyqxr=1LMvu@@X{scGv(i=jtAwyyJGs81@oB$qMZT0opY>_0k)@u<-Pg` zCqqnDFW#zCSFg3p&2`14b*F*#R;P~>Z4E_SfMxpcAz^?@u5vi|%S3TrQnc-w3GR~O zfiUx0n)s|i;s2Z={$UIM0UYdg|8teFVI3$wr@C=5cW13=S<{`nDmfncd_}~6#o;U3 z!d=~Bm9j)~UE=aitI4)l^h)ikQ;rr$7dd-g3wf)~KaA)?%Z2Von!S;|)6*ob^T3tj z(9QnRz3vIHh#=0kqc)T_e8i`#jf7P)sl;j}yAzK5;4XSx;;QRWj0omEE{E0EIjC0+ z{i)ODBga<+Si|2USv9S+4!)2_#+PdL8id@vBKCv&Cj@eXOxDVUa@*mVxXmR6Pm}Ax zQOaffrN@TCPuEHx<2sKIO~!O;LYvGKr<>Q!XSZpM4_B!^Hm+@gKNVBPxo!(upA0m1 zj>3oOl%IHqEK_AY-e?aE&ZBze^M&N_(+@z1@%1c&<(qHjvcDPOfp?Ry=p)|Or zN76znbj^di@3I6(6+*|checlCK?KxM-b-pJDqVap0_6#P$Jif9v_A_Pec?df2UAS# zmV1(2xq}zCg(YjXui#Jq#Odm9^FI?88zHOhM;`XEErPFc=xieL;udx!$fF5GW7Ts^ zjrrXiL`!Y{NI0#UN1p2hz3^9YZ2V)Lw5CufR<gCBkE=?;#Ra&zbEpx zvCQW159k?03_fqf-EQ9jVi@q+n1J2%bnmgz)}jVF61MN%o^Jj;-LW5YIjtHpOg`k_ z>GxLkmRo*s)1gB>?TpG59;%MUW3KXKrdyy`L2+RSAkQ+)3j-@~{*=7(nLBVK{0^A5 ze6&jjw3^;CdViF^8rwh$Ys&N7AHE8pZVn>8`_lf$rZMUMP>X@V{BVrkvwTa^5@z5m zJA`5=RF$DmLuhF zXW4B&B>XPT#2lSzcxmBP%Us#xT{`SZOV&*njvphRoa<%mSH^gybYeIH8i+~fhN)JV zQ$>J4VH?ELruC*8 zCMcAKAXNQA>&GBQqj428RCT4d*q82^jro=}^6b+0s^Lj`d$tk2bIMWp;8J>THz-#A z@gpY&3p_=rY{0AMIRSKhc)H~H2F2}I4h#Q_uD1+|s|~v~8yc5}1cwHKB#>ai-5r9v zyK8WlV8IgH-Q8Uq4GHdUA-KE4?Dw0QGpA;1s`ihrqI!3+<#}#d_q9yS%2Q@OaJV;V za+@HF*;N3X_-Ut)7wx2J4G*M@LR~x=uIOKDGNMQ**GU@nnajsIE%Th2B{^8>2n_-< zlk-%wpiJ^1+Tv>jMw;2;0PbzefnNK%$b?cATK{p zWY*c-Z_4m!j?GqUZ3n%EWUWXH^%QH3>njVW zhIs4;UT5?~^HC26A&7q7<9#G_-_yb1KtQ7!2W}R`K{?f#woLoJ*QIVGhKPJTwZyNr6=mkqN-`eSc}v=O2Ht7v!(k z-h}uL$c9J^Cl!oV8T~(EP?oZ=q+pC)U(ClkO1=D&L!$(^vO=pg)CuS?E$#^1o=c1v zp$}4q^PO)F>|EOXJ@J?+JrRgU_zf2*Rv-mz2}1j&0vM|9(+@Pk{e$PEQEC`6ZvL5r zWEgRSM4+iE@Tms4_(C#r_<~bxH2t`@!78kmwZk^jNvqu-WKv~lZUMO|4jZx)HN7HV zmnc9A1|d3rQ&q|rGx*I^gcv{@WsThxRq!#&7}?UiabG;-<)dAQb&;AA(jK;YNnFXF z{Z%~A1r`RKcdd3G${kuQZR@Ab3MS8i727QTa@cEE!}Uk?`;CCZWu#koxvW!wP{`TV zRn^>8#tc=Jw^#cSM(mm^?`%2rCha2BZ=OKQd72fjdVK$km|=}MzggkXj^wuKaEEuq zhV&*=e*DtyHWL3aupc^6tpSjX_BGN+b0NzT)pUGEs0t5rQ7>lRhUb!9k}Cf>ATR&< zbMQ1ZHS(luXyoT+Wo6}Q7HwW-cT^SZW@YSW=FQP^Y_Q-oYOf783UW7@Y7{upCI4!V z!OekmwCM*V19s)}O{+G``?be63%6eHmuU`bk6lxnd85+p+OCsIXOn&>CjH({3NK7L zAD9adX(|nITNMd2%AFQ#TCmbTXrOo1{FXVlZU4)<+NN^7USMyT@S^hPov6u6% zRYP&XdU%50wRboHSWjH1O!bRd)0<<5sJM_3KzH!f9I#&|nFrDYV&4)80(fUYu+-?} zBW?~sp!*f1hGPhcK`d_sj4WlEHB0qqvon}Tvl+-TKSCk@Fz@QUeTi1r0FH&YA!G({ z?K@1Ivmv$-X%+8*1{ljHbxBAtdBlAa3YpA-_b$(QhW>%V7Ji13v$4QAZy4vkDA%6L zloE}=Avy~6L!Pkz%M&)50nrgt|I5Khpyr2yI*~LiV8`J+93nUyUVsw>&`Ud@cC5cS z&lHZ*z3*gz)R>AtmiwI_UMjfOjkb%>t#QVucF6IA0=fbN;C{ zdm$&(y0R_tra%OHmq_J1K=Ivy+Hr_2%!kJu;)v-H{o7u^84C!H0V6Rp%+TNEqw#tg zhR87JP*Nr^$OkyMP4Zo25WfIca@1Euo_3XlXH38xO|iT5LSV*A^b6j2?aie&K|(Q}P(U zS)6sBMjHfgQ5GmiO$ek|0Tci>fDzwvd{<7GfN9ep0s|n`0mj4sp@@K53G>UAaslQU z4q(?6kOTMm&(E)La>lHGG<`7iy?s7RiE)v3vQR*bO0;0aP^r!G7%lBK^PQ7HDlpSVj;Z zC{{TLBIT+qIM;R8V)C(-DrKrQW3Dr8QkHbc>qaPr-Xf;TJc0Th5Y!)mx-Pu2Ivxy< zV7xm*4ZGX`AvF)l7!?fMFvnFQE=4=9kMPJ7G>W@I1Znop2bz0G#k^@i13?9s0N`V< zWHn&$eO8)`H*cfNH>)ae>@tWwZBrqxTilmwC&tWeyLc zu$AOKbc1Ndu1rm!Aa^Izebrm%vZ1|%MqkN5PnrcU3ZT&b?;xH=!zD0gj+|x0UK`(? zlum)~kclsM_b>d*c4lhg@qOcQ;lxexlJx((k??)`_@0*o)oKNvqd<_vT#pYZHm2przGO3P)5Q- z(k4?6DE#jOs$0h6*SE$FoXp&~S=#N0R_CJZowbuG3hfS*ruUxPdU)0NIq8tAG@?FO zeyC0&sY*(JI~*;&9okO(EE;{{mdaQw=3Xl0-lphYC*)t%?^3vurn%h$*d46nO6_X` zrTLI=Liygxc3yBhLeckT=Xa3js~R(jAEF)v-M{ulu-mARj%oYf{aoI8(;R+>nHE4O ziR@6w@dy_5(|+uReq@pHzRGWXW)t6r<3Uf!{V27;i`l z0B;xFIjLlf{O2E>IG4^2lv~y$U4~Sphi#pPb!CQioi0~awbxyvx2$9Db${Hb?%dU0 zO)@Em`K7MB{uk$0_donMk4)~9b-(`f=>0nC-}3r;@A*gYj`EN^oBl4DfZhLV`?1u{ z9$xfuRz*nI80loV6a!`qE=39nj#pq?!kU<$u?DVBR;xkg?2IDD0B zV2;76A7Bo2gBJ-@Mc4iTy#{T<4tPLbWo|wO6HldhmpUlXj=TdK-65(YiH2J`?&opv ziRP{PuhfsJZ)u z@a9f|+qF+RbgjX{-+JDBH|YG5ZTjAHXBe=MFcts60!+-8R)n**E=7ueSRyK^te*G8 zv7rut&7%FZThXwxy)>3_|DOT``P!{H>BVXmm*1f2Fj@$`uDb{mV0UTna-NK-1!Jc$2m#^>EFz zZfA`oSMP4N1bd#lf2>5mv<~ZN4v%$OX1TuZ@9= zLGHf?T$oK#!4pY9!S=zXgr&7|F!Z019x4sxG*S#3CM-~;RYj6jVi8+R4hPUD4RuM8 z6z$_I;uK#tG<>f7wqoi+Aay?2r;`fayjoMVp8o^XTfF7!n-8Am%U8adaac!yAUXF+ zyajVoqZcya?`x-A%PG!k?3gRvqfe+H9QYxHT;*tbP4J-J(oU0UqjlU9%k#exId~z# zsW_wlPM$C1g&$pT!Xk*d>Tn5ex84-^w2JS*a$%TVS}9``)~^E`F!uf_BnUgRA>Ls` z(RX7!;r9__s6R0zOuxq=Jm4mxK>ZXr<;C~}+TuBzWRtiFi>L|_L8NbIkyT059jI`afTEj zie@Eh1=k_{J_*K@QV;(OSRdx6t>>nJ|n}jH`~=ZrtxOr#ktz9hLVmupTi?k z)`GAaMg=3@B59UkshB2N_%;`?L@w|xiY^(Y%7Vy)KUf+SbOFZlK!sgK%n|NtUo$Ex z5Gle{%~)TrVoVtTcA-f&%hKHb&V&P~lbFv1CFIF*j6}m0ny2I3*y3vN41<#w84gNc zqENO{Gj4HG5a%xb>vy#gfRDHvvIJ`Nv{T-neIdcdv=-pOgK>TS3Xw0Aa>ecxcUyG4 z5a$A^3SyAwpblYZalfVGzKFr5|(k@#?KmP9u&I4mAI{2pi^B+-Roo{AqW1IlN# zqky}qC@ZiaU_|PX{PvKa^dN=qhzeb7XWCwjL7D}aG#1UF1;j>4vbKS=oSzzCEporxLwhgozsu-&RyptDUQu}T?#)?dt z+G8fg#Xz-eqnVjFxHb-Z{AZL>gg{<0K)lX{F zz?XdbDk>Ch&c`#nk(-6{MJi~~=cCV7?k;t}o! zk>BX`ko9~y0}Tkm5uN-ZD@36#2t#RKqjUs8h{^Et=8^oh`XMl0B!r+qyoS#l)XF<4 zwBMTu+8LXEJcxJeyBuuex4-sf?-MxDj03kQJ^=jIc|*4Dn&edRln{8Cowd#?0L*~tPJcU==DMY*P)DYuQ= zhD>Inpo8%#fHV_|Y7P-w%Vl;3If$=WKxhNNBRF?4A5*}FB7^YAEjl@buKMjbOBZ3l1h#@~rPl6Vp*pX%6KyX_My7oW|_ALZH~ z6A_?iU3-`v2icyifKBb7=}v&#d7< z^j_TYm(5Dl5Od6(u|vmbr^H2+-;5LgG|AK%vN zzW#3akLqWd;t0S}S^2fx-}|xq<@WYv%s}9wy<6(}G285^o^{~$L+Q5Eprvj|kXmrw z(z9_mQR?9UU+Yl%2#bW0O!g9i*GlI_j>*3L;S(?-3si}wzSgdI0eM;5kYk>ZHyaxC zPNeRfio4EC_QU9Jz((bl6Aj?gJlP9$7>awKv>aK9He6ZN{Bf-3T027kGu1DV8@>Z} z4$p9;`GOl&1gMkb@%I&e|4&X~->GWUPRWWuJ-xtaWvlV&=qpf?dW=gedJhQQvWu!` zJ*~`r8YA6+M-rN&@bKwbt4%_%F3-cyRKHeTBEx z&RvGz`K`X0PjMFv=Z>5^Cmemf?Hj=|z#geIJHJBI{3YonbDqpJG$M^43TVPuDyK!Q6^~B@iyJ zqB%voCK{_`#Xo+WRyfLFVLp<)uQPNEgKm~&oFQXu9K3FTMOa~E9*Z7EPoh}n^$V{Y z>#fetY4ez%Wnw*mRf(JI_Z2oCi8DfU+t5Sed8jC=-)&zc{0>-AmjSp;k5N{DIt8%M z#k`p=e^gZe99@P;f1q>~M`R33b0*o*J#a~J;U?rd^E{XU)Jdj5P64!&OPeSEO@!`$ zFOgre)HXmVot^d;{n)^27kQh$Yd??tKLRCr>p;Nma`*DOxSmGAG)gJVjZr}|`b@j< zP(AZi|MDpRrf?=pP5POqM)($&MxWqRK>UQ_ymvDv>6gX@2t4xG>vbtmWdy7+Yq>ZHg|b#YO}tL*JXpw=m1Ot#LE6CI64@fW~bVg1hU zcr-f1k70r)7V@oRnt<1F(Dz+Q3ShF7`;L`Xh~N0A_Iojx>KSFx>OWHKaAac$yMCw< zJU~)CH&i|nlrQ?m0h9h5i;M#UWMCc>@6i+}3vy^hXw;o9D59}Q8tw_}1F2!5wmOwPYP_U4yR-|OR&z6+Tal^O`&;C}3&PmY1#frIAIXj4VUbaHOf z=eZ+%eQvjW8Y@hwGL*S>DyvZFv7^0NFisxRVlg35SrLw~t(+t_-z)VEgHZp0Vn;(_ zX1~N@lqnI2!r|Y=96TA-XY|*+7a{Xl;B(IAP$lm{6q>+n4J^@8q0Sdnof&MW__QQO z2wyxMBB{dGBzh7B(AfUm<>@{Kcf|?9^TVSbPy~myNX(4I-~=1G4jJXt85zMdvTeb` z&;sng&Ei1K$0<>cs2{&-W^NtFa$G5bw?Wq%PdUHC8{mf6Ea_adhw6ipX^1mqtUGH7S(}rb<88e6*NBM#9yFERh7NY4p^}+8CfZZ%sGLbK3 zH@rqFB7ImBqY_hi69RV>J(IS{5vW)pq)2+C@zV!w#5B-YHEn2~s}i^cVQ5_j{T;GR z;yJf3u!#5W(TOQz-ZY!CDcN|6J6m=EaBNS)_i!^pV#V=ujTuwn`T4REl5z}o6!{h( z%b8N9yW==p(l~MdkgN@nERK+`G7>J+W%($VdFL{BRn_^ZnRzi-F}olq#`CJhZ?^rO zEh;VKIJQk5yKV0(*3L}Vhj^HG>Q~bkI*;y?MsEGsR+=A-v1neut>8Q>ntrUCy)T$- zyL`1c73?69y?ByWef@p1cv~GiCk1Qj zmk-k{@n5{q-%?`;pBn8+dz_M@1~^iqe9QXM_QhOXZM@51g`6;|!%$u0TD{!7=*_OX zBO~MAwwAA3gG|`#D26|4t4dG_^5+|3fkqE=#wYAr%-Q{m_=lD-I9 zbQZZZ8;KXmNzEut+G?_qyd9;FFvl007M^qwV#A>xt~ZQ~yRT6tN!;IBEi$cs&u*xI z)yk5;CKuwbv%ju-KmW^jAJxG60m>WmIqYqc;uW&qOu;ns_Qj~j)1`j*Ao&C$xH}|n zt9TuDT~6dU^V5SQ5uG7kwz3{|(}!gk`q{4^x;Il)kcRge=wt2XX5c8x<*6jc?8jRG zp3j=i)Kd~mvruP4`&zRP!_X4wWdc_FAEb=&N9ed0RH5ytF!SbZc%`Ok=ej*3uDKQ1 z9pPb_;X!A#O(gd|cjmr<^URv7xA&XJff8BpL9YgfuYrl*2u8K-UOD!)SNZ)9m`m~O zw-LCb%X|XZ1N;om=DolS*q9Vb<{1!nVIr-Y4G)=MWE+Ow*{6U`E_pY=^zaE83dLBJ zEjYDcfp4UH7s(pudB5w~$(2>j>N@ zzA#44HtwN*i65NDBwH+3Nwv%L?Bu=hHxY=J=@ZNnxP&68hWs~$?Z*yp*kfc#ghV$$ zR}B=bNAYe$x&9E|U^2hsI~F*f%vre7pA!MngYs z;HhkuMZpO2Gh-ll7a)-eKEqLlc%(85YD*WlOPMlRvQjyN1Wr++68z<@z(duK3Bp@2 z(H|y3<0f;HoKl{Qt+7UOIoYzAylxtM2^9Ds(X~rOaDsVI6(cFWA!k7shu2{XH&4M4 z2!77<&mxzoooUxA@3VUTiA3fOkH!2!{YW55G*3SSdl1rbF{Cp-!i-GcjEKPNSUw;& z1Rfnc%%E_;m(`Sl5P*-G82#OJ+$LGf8f3n}nlrHxSaP{ZSp| z^2oQjRyj1poHpF0A_T4^KCh#IQ!hZ}S_ou)OXbbGFc(yZC>F{&BQQWNv=h+p@_i&w zcLUS}Iy>s4!m{V(+CPiwtw+UzobD+5q4WwdvQY=a;4vjY(WpmIs3#XCG_r{=Xsw!C z5kxQAj!=AFwe0ugdyt~o{+{E+RU6WNOygUnVlOz;MHE2l)qQg7x4Qcb;@IFPz3C*m z%%pviEQ3w<_x?8BJ9hcE`sK<+;6WXSe@+|=bCPois`;hhbg|uSp%yv_$(Q`cuBQ7GRSsGWN@g^xdy zGlGI?lkNzAYiMGEY(*Es=oaNyyjrttw1Ss@TQ~}d!5VZsak}fFixF{7vR{&S(e(0_H{hD$3mVSF{&ZuUyzG+V8@K#MBn`IiuRwHl*Gh6FI2w4~# zmgddkpp=Yd1)ez>?g+`uf*+!HdY1+Y1n+)wkl!0MflP1>wQ4KjdW*cNg)5pYS-_FO zi@4<(ldPQ1aeQ>@#Q&2m;gtIiPF{DvWzo8Q&iJKl(nHU%bM=Hi!GqidF|wV2Z0MVK zX5gdpI)Cl0efy<(`L%ZZn}H~{yt(@dlkmqZ!Vy=6f1i#V@p~zjNN;&E#Eso+XC7;& zHKy=95avTJ8z1n=ZxA9(1$s?40x&qW8B8H|@h{3jH!Q!PElcpbzzc$#g{Rk~8vAd; zs5^Sj4~bj|$2@w(#qL!~J(agIEz>le_jhV$Uk2}aR5W~Oea@o6BIs`gT1uI&)>j^; zDNcG(Vg7w|esbMUBtHT>5lASIhKHanijpIdU_XUFa&JS;75_5+&0?pFCy(F@6}=6U z$(f^g{8k>b9uI6i3mulHs!hPj)AfShYTFX!$cx~GNbHOc)A-+5!wY=$1RWeFH(Hn2 zDn@@~1{cHkQfxRf{d%joyD40vTBslWULQj|`z8dN>rCixV1#?~s9XJ_OQHOu+3X6_ za53Y2i9=(`Ce4t#Kw3!*lg1|%wJlRDygzs?XtYpj*P8ektt$9Pby)lFPt#x9SRx@g zw5Sha_4i8Cf8w)6v$Ay)U+0$g=vy!qA6} zj~tI>Yo|eYLr&tkaa!H8AIzaoJu6(V{ZkhKPOq<5!AT87kAzI~y2Xp41RhP(tHD1e zqwgbuvIzM_1$rFYiZIdl3FO9XHf-W6%JGb?g~bJy2VENJDB1FC(4p_aI4*kwQur7! zu!u!NUcWmF&+=764VyjgONtGtSa+D4X3AwU%SalE-(3rLq_rgcWtyH~U&t-y}t%sW(TlEFa0kguRDFxV=b8TKoB z3qwewHQ|suKOy}~O|mEXEkYKvj9r=0xOH6%_vOT)pA-J@H5@0yD>L#=p58+RRHso{ zPDG)|rsZ8CEum4L@zhQ-P{!O+U_Fa@*MYy$!P5gzsH**q6s1=!pl4PX`Q;7e8?GbJ zL3&nZ$WP?)zrTMqAj~<5t|VQD=|h5h0Kt49{L$~hoZ?R){Sn=)A6a+>mp=y3mOt_Y zL?C`PH=Z8h$pbIBdK+&A&iDX?^%{$`*WOB)PEY9(Wgp31|3YR3G<0x%WOh&>g6I1$g*uY6Btc5%8dPs(eISxV!1)+LpYWxGAiKeY|87;7av>NVlZRjO9Jye zEiu%e!prhXT2M`zl(FFkMUPyw0HM1{jm&6R4AE9qZ`DEZoHc5MW1({31v9N%i)jhX zM6cKm6KE z=XfwbrhY9P7OMew?rbZ0J1yaH-WdzNz_bLmrwzX0hBMI*5cnU|-Wv`M{c{BoC013!u*+~Xp})jX3MEsH_NvJlQNeYym_IEg~K z8GKrHS}*ENR`SyLwb|0edIS^cZNX+`5bJuylWXIfJ{iz*kUGY)3IZO-1zfaLQFKAC z$=ZER$7gG#jO%=4Q$9ktD6z01RWR3y9pfG>5GbS)T@He=T!6kQQWP~Dm=Nz~H)_a-y%{G{itW@Zi zY7P=cPD`yF5aspWJCcVezSEzsAm`)u&2rUBg<3Eh*PS~cGpJ#Oe4p%LUZFYdUjS23 zV1GjW5k2vSgzPqv^F;U%$-y)+55w{GESyaonrX6+P(yYj6vjKzIY5E_84WswsU^Qq zqnNz$MgXiX#30hw7A)~_yj9v(FBs~vIp8@Gc-eAR0!OZ(HXL6qnU|P<{>igWBDPGe z@Q^0wvU`oKvxfy)k!!>RQUif^>)oWmfG{$X<_IGb7Pjj(;ZUQ(Xtuu!oA2=jQKW&? z^{FqOLnXkHhwlCX&+i-qPQu>yExev)-5`~CkYjW!bAbl=!$vkBieUEu9tduKbP9_L z6lNAsY4|#XEY#;a)kpC@fS*yXs9Sjlgrxb4>&PsKg3m7EL(T}?(38*+Ev~kGGod}3 z_2#90`MrL7;x-1X{`F&D)3(SG=%IB+a|PNZS%Nd_RkydRT#fy@E`|+#FiRi&c+u1RC~_OZ|0&cB|WN_hz`th&>=VI-oD zkR#A)@H=&`0O=5)dv;`KiF)One8sGsIdRdZu!PR;Q9d(f1uDH8=sb#V2Xt2t+<#Un zk$Wtle(8jS!uGTN^c|Ms4(t~I9WU*v7XZYqJ|gI#pMovBXAR%xfBNerzisG37ue+f z_6u#2@;k1O=m?64_yRIHnWN)PEn?6P;?Hj|9R0_>#YX{x4Ahn`M=Tgla% zcrs)wBqQet<=;&XP|uv~g)oZsN2S+N$}=}U50+L(K0KaONOxv@X=WG^3iaIcHK zX-nERH11xC?mj``zvD_ry7tUqEw{$!!6pWuYPiQSiO^8zOFF^SgOK*I?08)4$n4ko zg91+0t@R9@g~{L>_Q>{wjhhaCleKn^Q>|Gq6{Piu#co?nYX7D3q5m!2`QP#qAZzJ1 zw{oU>R>>9-*v1jGE5teXfF{#a%6^iyT}gtv7kto7{d!yUr@s7*Eb3lC0=}54tJx%r z6K%ffPZx)g4q0<`S%!_wZCh{sJrxUb7YP@LY&CNjbT*8m6|v zHKD%CK5!VgkZ|q5xE*u6X7q~B8oz`r?V4nUs#d%D!fFS=5bPb0MPF4XILGo$%p9`+P)}wV~l%U8!C8V{`AK9=@s>U zwa7TNRLZz*-iXnXm7pn&ydhO~>5D>ek%h=~ka^!I&uX$-nxHTHYyJEZo!p#A?XH!7 ziA-#X5`)PVfJKNh^iwHW%^iWeJDNCcENk8lH#x8CIg8JNiIzV4g>~kPI+ZU5 zI4c3~$!X(q3=(W?>Yp?Xtz&@vP|sqJZN{5~<{XJ28P@NhG8&NQ#zai?ta{C)^~Mw8 z!KnJEdbwNqY7JE*nG3H1k`H-k(E3fALg8GWTc7>qlSC5tXI#G(9NMI|&75k9yxB55 zM(Rxch zr|W|E{!hzsubb<9Pp7ZfL9ZtUc+Y~bXOn^tdFNQ>g})Z( zt9a0ka{P--fvM%sjvifK39*VTB>Q&%rE#mg~fWW!w0oV(Wvm0LhQCT<_Y zAu4R%8|niG6fSfA*@sFGnI(MZF7thLN2?vSbB#TZy`r6=M5UsNI4R zhn{|V<7Z)s=|l20v(Ob0uM7O&M8KmVpzjt2K>_UF28&U$T z&wRy$P-TXFOrZ3*AqCl;+ia2hh(PLg=cVC7#!XzDQny*K57k&3nKd9uIPMLfRy7|> zj~Qe^_INOsLCqP0*G{3X(eS?;P`sM8%*$ZDLmNOj1lC3cL}|SKBa`ngD5enXRr^ z`Wvk1TAN0(1YgXiaxNgAfSr4IXWhz&ig!Y{K5mGg3y^YUh}4J+epQd~(<;hx!^di7l0T;@fsQjZf`QS}y? zt(vU_ar|<4@BB&F*ENhA)Rcv@t*ErPEAC*8IYMcR%thz*q)0Zx zpU>ZzXMati59G|OgE$uP{N#qIc&bz&^9L#jV=>waIVBR)`v;K4{`vyL2djbjmO$`C zXNd?jpkz=Xvf1|%xX*$1-Dj4hVT!B-Q>g1wIb%e5%2-Ab3LabxJUa-=CXKl_+s=PM5n} zRy^FWt=E%7;*A-GZonCNI1ewP{%fTVp?LeN%k>uPlUDagO}kwnZoU3|(#)1|6K?Zg#yAx>g}~VrqSvTN|=I zOfJ{0S+x5nEKq)!nI3(o`5jmWqXe3@29J?0#ZRz;k6(fxiWw?(eXXjc5aQ7qj8Il2 z`44`e?)<|Pm2-g1h1MCo!rxy=-%Z2+3(v5!NM}YwauY+##70q81h|mVd<<`Y>q8>F zHa1cAyktIY2%|cwQ8!w|DwjHjN(b2(b^=evGD6v&dEb@Saldvnnhg5@oWk3!J+LmyMvRyAH}T6lEmVkiEnQTdKg$?ECENw_QT zTR90n5&{Lp{w=rgsn2W<&zPab>Y{-j9v`7v5HXgjp{DnB#pvW?p=&?F1ctygeJ7mH zH^=tQ66Vw+f%02U#mtLVUof<`;>S|f2wWNHpHqU&fC$7NRoR96tRxSAh3 zz54=#j9%BiJ9y8uGapFP@s)n%V#^2+EXAaD=^^xxE($qw*X<2<*56kA$txGnxSPQH z`B*FMQk*?7#gEw>?H5CA%KNvq5`K}>tN!5bYPSh3!2=s*#-=a6{ZMQYR5u~(JHXl` zGr>A8QyU(-$6}faHa?D%BH5n^4mrR!f{ZYs?P%@8(dYgHdhHy_uI+(=n_(>CF{ zrl2iH0c{$cQSBcbIdJWhB}F4}9*vVPSY36cwbYb6l+pj-=A4v747n(yI}hP=ud60x zfZjv~9C4Wd0q$>)fMPnyE$LycVVUgf$DF-y6olC7elqW(*kev!doL}pB#BUP z=VY3{C2mXv#(%G}2lh-?C$04)jqGgfII>!c2~0ASPNAQPeV|jnV15}nWn2Jt1p4;N5Q!7BE9kh4@;5dxWGqzfHAWDBf5D-!{q3xEIA^0oQ)w0 z1ltjFy+2cjQOV|>+zo(QGz2WM$iI^gyge)12y{wxX(Rv5M|;dscusG3$Tz~?x-nj`Gw)HV1WAi!|&!V~M7`DEz zS;57=0GUB*D$yR1ObxzWRf-{td%_mbt-u5@X#qJBn9`nxNw|~eMWb>2v!=_{r^}sj*Y_-Xoj8vI|Iz{tu<8T({s^3|U}n$cTYXV6B6v$65M3%B0^`d4 zw(VWvmIAikAr_*2X z#bqJx@sSP|y$%+A4!e{NyGd)KlIx}UG)sGLenA)N#khB1PCL!>qGSJ8sQ!)J!__tA1O*mln(a+SUKR$FxCEg4BBr^}mx`s7Mw!zjiX1 z3)!n07|M@6COX@#H0C-v(D8XYo%WQRn)biik9e0jo|a{hZ2g!8erqLFy_E&+HZ;Qs zLhHK>#JapWT&x$fm~KA^VzP<+NL}BMG!(W+ONV<&b9GKsT+Bstmxoqt`ws5vE$!;H z5v)Gck!=m@PnY}24#ad?_iNGJ&Xhkfs6-xLDwX;b{)!`VvBzw6m+0^|dEtzJQKYQ+ zf8OzCJy<3Gdg`Xb!P~H3L4}Ov78Gsg19XG;KA@_I2dg!y|NMiJD}Kt`(y1mEK}oC9Hxqm z3qH|cZUDMNhJLyF2Lnt=po&8Fn{VK)MeLCF5aR47OIG|Qi&XG?y($85&!1Y$zJBZF zl_IHjI##k9?RCu7t`jyg4mopuh*$(q#{6M!i;KoVL$VEfvh^$w5kFx?KEB>x-w57` zAFn?vFumN63qGg60v>;NoLH~z{%Tk5uUnD+KH_JRKSR4J=2uRy)+|J+q*oA07cF<@ z)1o@0C~2QX3u*ok0;YzrK!W`9Vo}*baPHqMSSJ7utHoj8H()1WWIqt7o`0%yd#UGP zhl8*kFmmpHeI~e08@Jx|SK>#{&Ymyrww?H^0MtX~d?s^3?ELjvlMx{>GHnc?*Q2pa zudy_uq1{7x7Z5=BqQ z+!NY8s$&lC8A{o-;oZLCzu)gP38Nyp#%br;pMH)38yq)@ta(ZHYDK1gSjeAqHH^2I z-T{;$b!LStj;AjTU#>4BO2^B08Ru=PIfyj3w^kuEoOF06vDezHE5ys0ka_-(85T7K zoCw+CnJ?aN9Ri1Zb@o~)Y8;jJ8x7{ls@aI_o3zlxBmp zpucCN9f?~rlr~WR;IDA-F<@DEMEr}B`M>f@#%8i6N|hglC+GvGszMRYznz5PT7^dh z5y>~K{5&5w?ff>!JmX8k$(jVOd>l({xg-?9CcB{{ffhkpi@fFUB;GLd6Ja2P;{5dd zj-|Z#4y+;GV|f3jL0dF-m#TI*zjl{u(!$cQJ2bg2bo$@W#r+jG*R=0Y?K?q7V(H?0Igll;KV`s}L^GFRlt!nH@^TmGTN zlNP#$b*siTOAfutdA%|v{}->F$g)-)hMm9ir;)j|Z+^&OYYG>#sP#y{Y`!IPdDx)d z?BAe{ELi*Ho12^;E@K&+K!+E>x&xz4HF<(E`n(g_!OPxP7$$@lZTfP?=z{$9!)3gm zQxok@;gp{0sqzL$Js?~6=WDy+gwr?SVN`bnv~25WrMsV-h5Am;0;RPGppN0zQFz~m zT4PfxwH{VF1>@)3!IQAe%0DI$p9qc^bg1ESHu^O&{oBoR(6sS}&7O(5ls!n8rxt&G zM$vV1Hpt64AtV0)Iw#8E@wCYRt`3)VCC2UU>w_?TSYUu6a#W{DiQe~pkUPl4Ki1!R z;yA*LK)g{RZTQcE}Go(o}cQ)4DL)T4js4B_T*bFPGrI@b3Ci?9s(7v1hE zsEuf1$iZS$j@i3y>GdohlPC;#^J!!F{-DvN39TZ_eiqV0djIxJRnWFTi40)V-Vk$S zK|KT5HG{-Qy@$8%r`>f=bb=}a6%PU5$0_gxtt04=Ras?YaQ2It<`8J0UXekt)2xCq z{0b*$cxK=8ovUEL+8dgxR;tgdwj8<+GpqK@_(CCXxIe?lWjx4m^wiFNdnVi|-o&aO6{!z%evjl##Rt`NJ>S`){^TCe}n-06BjQjtXzHY=A%g5wK-nis&QL(9y% ziIo+SAYw`|Qg;{|-7G$bQ|gi{Kz@#7Lhh|bqS^*ps}lN<&|#!r+^kTRGeF&u=?_6a z!$}OQA7YO{H{7DGd(3?xDBDK%FHq~mv@sly!BI$&!J>6yNalXW(joj6(-ytm3>Yjv z5w4QY{y*q?%cv;dushg22rRKQhlqG|cliuZwll%{nyMdy9E!EWu_@ zT<#dud{8gr_c-TK4~`*^loi`8L+4!!w_O{T=I}@J;eVF}_W`xXEi;Wg(@sslYMKB& zLap>*Q1=^&%l()BVT#_5gX{{3DQv0ZbBQm@u>A=)%_OdKJ0|1c!SMGQ&1I4 zbxL1>1{dD_4Xuwqwrk=E?w1RM=A2FTg_zoLTr;J_9HLc4w|oP8NnWEBjY|LhADK%% zD`Yj}IPnX8^tRIPX6jF)osAB7JlSNr7d<3R&L5W>BuyiNX_Mlx3s`gO5V5)#Im)i#&8Va_3&7U+>pw`q&enY1MtAUzH$o z)L~hDxSvAqt|B|y`|_#@CI-v>R8N#EB`TBGXB(ZZ#=EPoSSB^^W<}Ng zsh0C)ZB-??fLogL$Evdk$q$N?Mqqbr&hoSk zmsL?NyZ`vy3us9`hzg?}_{_fq*UzX}betGS9pSPeP(%heXQ<}|Iz8<=x)mhol)-B) zy(M;hHQyoz`uV&b-1=<{n`$EQJiB!)Slt|5YJke@pG~K91?3Rv=N=K53bqjcB{>Y6 zZVahLgxUw$YJdQaFC=q3rxeGJ&fc>@p^}m~Xp*;qI_=4`Ep}xy2~y)33m$k4D|oq| zDM|kfy%`6g=2>tHEbLypj3M#pv$-<3fSibyJH0HtS2#rs;&fkln$A~9S7riNj{kI$ zsr9QC41einW4Bu{I1oyLxPB}x5vPwL9mvs@*M!S3EVzuOcu z!NoCBc zR8SUXgDf5#`uj8LS2R{O;&;E{(6;8PRN1wl8lH<_3IuS;R3Jv@2x8X}y3r!4ynM3& z#l0&hhJgb7sL$eQ2MV0kGr*%dMdt_g^6?fWYE1^x_4B+<>w>szW-cFZ;7GiB);;#x zg+}6C$Tj+vzLns+5-Lg12e4##JP(DOX z9?^o3hG-CLFVRsZH{@rj9~DVH__+YbF7qP(RnRAqi9?%uFsFNv@5pC#4q<2tDAW(@ z`Zs##yfcG)fo5RQOYhE?e$_AiIyKR^{fm?X8xfB?vOMS-(vmZh%C7Sb z2u67QjuYkWoPsqdvu5>UxC8}!l^&pi7g8FPZ}BHjR0!^3*9whUX2ClSKO z$o4m)aM3OL=(75KP?&|SyJMoD9{7Ht%>2|!1+GD9J-(a`xgJaPd>>c(em>kAl|7oB z%s8#o_xpg32^)1ilkMk5NXpr*tbrNPjtK|q}-Hnr_KM%_TSehaW+zYBP>+F zU@%r*Y)lz)aihC%?{xh?XgVzae(tGK6tT% zMe0O}{fGl==-YIrW}9%ziDS5*?#WWRAKsw9A_@$#q}A3uXnaUCKIf`yux+5#wyX7XEI2DSYUIT(#^cz#qC5k9&# zTRFm8g^re>m&c=E^q6plx!=+BKClBnfunV(htsv5uzcHG+LC3pU4@0^`K3#N-LRqL z-ZyC7+=Zd(wZW+Gu;8eovDuEIap~L4dhOCc`7u3u0m&mlGH*9{Fl1D+u%uwlVA6t( zSnmXL>=p71IC#Gcj>F;HyyVm<>g3gO>V2njFUzB7F}IpS|021>OJd-sGGH~rv4~=x zJ%Ov&4*doUj1xP0gwUC4KxSl?5lW^o*vl^xavmjDCd`19rmZWj)*l1MU+ zjf*xlamOM0Ey`gn>C_r+MiZ9@6d2V} zw-Y_89|DBU=!=ckR0R}tyk$g0VNm(7dXh#vTrYE>Ix1MmYMHmU*7f^7+|S z>msqs_U2x?^1<(Ud+zyATH-!C@Mf?3c>(WfSK9A!qNe#-bN|ey>EO`PxA2i$#Q_eorL{9=(pIy+wIu%HDOw9B1V=o35r&5uMiIW8|UjvaKORw5FAB zHHTwGOGEUUP2*QW! zl6Beodu}AfMQ04og)CK5p}p=umcFpwhR*gR5a(-zV;5J^J*tt z^)vsUUl!@zQFAl33RrKA&KRp41D35jZ2O;!;PwVIbCX`jKJwyzl~7_rTNCHGZ*)SPI1xz(>4J)UMJ7)_7us;{$dN4bHy595rX7 z81A&MFUros+(a*KS>iZc)JI+7l!7PX0%rOH0bqJ>;P_&L}8hIBrBRwY}R%JD!9U|&$#|` z@M!@qVn)%hES7#4-3K}T-%ixZ=e{+0gyg;8C}DJO?|X%*2|ES77vL1~S@YTA_ru*I z=W|$`Kc`?05InYyy-k9r4&Ree10mEkIK!Jzw6{AlTMu3h)@0_Wb%AkaN;Jo-KT=BQ z>-cbgj&Rq!EV@IE5Y>vp2i5=MW{Dm4lDH#Hx|Q?19)1kUuiLh~R##)-VA2aCEo$^8 zFqvVp!TnHU85#*~(YWsUi?Vl^F+#8Rh^oTU((@~!%T-u03zz<9tavo8)B(>K^V=8# zo{ksQW_n;YCh!W!YsErFB+}Agg@r8uyDYN*XfemV^gSdSLl;Yu^=noAdPJ<9u#x?& zvHj$l1K+x1!|Gw3bkKNl%AQA*XUNA^^>J9P8bOLpJ79~zx;>4hV#-}-k?bJ@Z>Gzs zZ1>g2O!;iP~Z?%&WiQnAR8?f!V^b`LD%$n?RdoV7eRsmqB37VXcJQ3I254 z{3WH7PXRAA!2M>wRQ8?|ld8>#{t{WB!@kLU03JH&c;lHEN#hyd2^c++|0}8PN=(amQYfkga|lx>{m@yq`5e)aB*Pa`-}2!L7|f*E+>N{txQ25B}G=o zJFn8QEP>=CGuAe6oC=QNOU3Jm9_l>3^!EZqZ%Y%QmmYsPi(t{iyft@5P-tS}QK906 zxqz=&XT6K=FieoXmms0b?#R^lqjoW}3r*%)27^7Gq)9?G7D$BT>qHhw+R~~d@CRsF ze<6Opv9(npr3z*m^i40XU}}5Q%Et;wGVlmnal3=wTfD7cxC~r! z@52fbiYdV@s7JRl-V&HZ`HPY^jx!PYB9Hu)oP0|=RV~!?Lxzdm+RMWSX1$dMv15tjRHrRL3$4|wHqtX8VwZ-5p05QP7^$wC65HFX zCA$Ge@W@{~H>&`)R)RRk7JACG0Z(HyoX+ztI52zJ8jVoTA(oq*g z9X)YbB{8`Br7p(8#gx_;ZKa1X_|AWd*r zx3J@rH+S}J4~>k<^-1@2nM#E+tvXkJOzp0|a5=?kYmQjWW;lu0ylz`f*7Thp?9@Mk z$2otTPk*4K5kNoV5YtGe&L7!+Cnm|B9=O^B+ce3#=r0TSnF;^9+6!DHPs_h;b9qf; z!WWSq*zdMgLUVMDD|$HSAOB5bRJ+R2>lLhfx==aVvy!my+ic4SA9@%j;);Db`_w-U-lna`XG{~7X-97@ zM@l=E+c>>Bh}3YJKPi~% zTReVrYBxC2xYSqNf~`Kt_`_sjoqBxPwgo!3C8Qu7>C;9omKB01%1!$ze zrmLHEVL98VCRdO<=dSzW5`h(&{*{dGkqdGOkhDr|3WlGh= zLL%pMd8Q5_Q^>IXO!FfI9K1=5Xvwju4`Xc*AmbdRkvRfIBD-kKf%!lHiF&umftPq0YH}!&jU)2nvOg=zIC27*)JeCvg7>{DDNMY)SE{@VMZ-sr z>iYa}(|U&UQK_sW3#1IIkCc`_+IvM*wSE?b`}Ig}qiMSeUcTRfD=r2nW`O1N5i(1> zij?GZ&$KRq*Nhy0lwVVpDS^9N=8xHD8lj{U8a4bP!fM1GSHvU?_2ji`bp0LCX%$NWC=UsrD~*v zh{XZrMujLZ&{tg3AB#s_r*U^A_BX2*K2Gn7?R$4ZT{@5JiJX)pKbi7&ufQ5~L|RR% z4Fal_x!UCt4r%kYBT$GYpajAwZgSe6kiLw{B4&MN|H*tz2w?R9*w zT}M6iv*7yht#D6{7+K2=A;pFXHJRE`4qu zE&q5h|4jg)(+?e#FdR=8eu@U6S4|l!I;=ofaG2)<{Q|cB|9ssYRK0%K!ji9r*x;r@ zoiYDOjK!U|1h2~OVPAA(IYmTZU!T&uw!-K`cyh*cQ>mNH;MyTkUOeW67-zW=MG3G$ zD_${B@J=8Zn%i77&1uhS-gb$v(PN2PJ= zJqT_m76-s{`K0S{V1u|gd<8%tz}$|aZ}B{&2Op>+rSfV$S;iO=72vQ-E({|N%m z_5D}?@95gVk$S22=2I^zOmH(y@boK(s65%#XDnrSDeV^InIbHknbuAh$*)cl?yk3c zz}vsieQv7RJ@`ps zE)DW84QQ_QRNA@1L}>+5hvV?XFY!tuBHwD&_ZxB6OW+&Eid9{Q&G)`LTq8YPv*uNK z+0a_Bq&;cDPP}{)Z6wdR3gz6#lVs9d+tSGy4k3xw=18_#432+ynWoV`Q@BAyxuNtc z^0;j+qQYaq_DESBR5nD6RZX4ADNWi!q4&YkQa>b;4dcp(Ty@kvif(r z@pl}m5tY9p?0*f~bCucy@krm>IN`I8xmn2Q2%@guJC%4bQlZZ!M1podnRATorUU0J zuZuR_LQh7;a93jwk^edRv@miLU*_9uiypz{ zGM~-M@QyTfL7CtQbovR{<7E-G+N|=aL+m;KYLqW-&U(7dl@7y@f-RG;`&%6`$vWi^ z&%b9J27+W2zJ*>pU~yy)jJ)8-kCBFC{>r9}Co*Dl35vguJ5b51dg{HgCsQDKp5?S( z4?8dtc+)Qtw39(5^t)N;d;dm-qYGRNUIbq=sAgL>q5 zbfz_*iI%~uz-2><>ua5x{@Y-fD1H@koTbUQHFb2K8Vt!#g0gY%O`A&JY6HJb3!8K+ z`Lp-X_cQccMel=K1Ys{aD+6+9Ymxb9@snc#87M$+)J9u59dn`cxs7R-DJ@ej}KBhZAxg-5IEv5>LoeyV|Yg23UE zK~Xu)g#&wa8ziDw{o}}(ba-%9ihuWu0!6VYjkxzG~lY!U zA9iI&?mMh9u_<*$kolZ!vS;OL&RVGc3I?8(#w4P|>87P)E2>pe8bO(&_(@c!@iIvI z-0d%YLMOdIU(x4XrV30ITOQ3^6mAfV?HkD=KEqe3$Xs``;318TmZ=Z zpQ?;p7QKS*kRH*kdX(L%yYJJKdZ8}hHh1dPAVpm>bx>@G0xox2%Vhc=B=kKi{;zq0 zxyN{D9Ia*vuKi>{WbvD<9vu2wz{iRCC?5-*bq2I%&Z_W&fn*=+LeIrX`>;o>BSjdF zjP4fy4O%grlnS4$%XSzyqGO~iB7!=`RGVcI+9+&&j%bAymwy)(S;TaJFim3Usv<+3 zu!UBRmyaRGKa`rerk$c2v!O5Qa0`8l96uTJwy#ShZ_ZL2;?7WB3S@f<7{+$!DH7E?rvNf5!hB{ zq1Y354~gxPOu6Ie7KTZ~cR@tTlKAa0OefPdARo#9yuI6JAnPofA7KZ^6`KV^zMKL_ zuLbR)4beY-4*bCE_F-NuG1*(-d9v<%m)SJ-cVzjkzYxBOD=N`D)79TBU(DTUt*}a) z0Lhf0kXI4iv(V(%?+hm4W3_!!;iGd&XE%|Sj`OXALcqKBnD&-8?QG~v{+$k)(L7hx z9%+G7?Ew%g8V~{-u)ZH#Zex2hMzzix-lcL{gzJ_axe#9{v}G~U@>vkIi{}t=Uu^5f z^hFPou+Zq1{{BKG+ zG3+wi8XV1L>d@Oz>=B+iUN=HQ;r)tb^;}uqV!By^L@(1sFBei`(`Wy0GmbfB%6;I8 zffSnkseDFP=%@<%PYA%qcQ^_&<*0kwz8h$3oULOPg73!2=cnwww^;k4M@jO*g5I<0 zy;K78+t4JTV|SHmfz7mv@X~0RtuPv?Z068kTG(cn?16LT_j3hX`ia~1V>s`YKYV0t zN>i!=qL@H=35E*-z_&Ed8BJOTo1i2)x*3z11a2(=IgN58Y8TMPkEq~~E~dc-Zuy-c zI7)!Sp63Q3{ti4>m>VR>M`?f*31tm?u+$DSL#I}f9LP1{Z%OZ?Dxk(y`P;AAb5ytc z>V*9%1t7l=dj)MH&fVR{ka`!1MPU`~xc)LOpegA#4Yenk9j5e|?Z8&(w@k$}j0q+PpAopz zwtsP8WuTNA{yRgZUsjq56Y@sc$zGjYvO*@!0AlH50M;OXVJuLyavYL5|BV0!%)SV7 z^Ou@|pRHC4jfbhshH%(APP7C&0Kg2@9$qF`jrDouSeUnk0TH@!dLaR$Ol9&hvG`L{ zA4($e7t~}y^_B4%oryh#0}(lmgg!si-%Ua*;1;*P_~I4uw7GiP2boT1(kR79o24l{ zkKp|viBZ9V>@Dhox2dx677{QN2(3-Q$(!TRaIy&*#m?I}QMfNIF)RpbO)9Q|C$0%} zi^WUmhmHlG&)r1}0%mZBg5+14U^D1l0AmM`Z1{ry*+E0Pby=bv0suut_z(F?aDy(} zrRxen6}R}D>B2#A$Ybi6U<@jm9hs9)pG7BYR$c)$H}puIzI(dTClR|C)F`&4oMimy zfY*?gasfQy2A+h81e0$uaGv8-Ab+M1iL}zY_2qn5{f54_;B5j(%!Q@l2{Q6b^Lq28 z*US5#Q)t88F{qB#cj@%rz6dl6wK40+%h?ubdM>09*Vo4l#eu=!9jZ`}%Rj{Xc_ zbgMMvZ$$eGN zFmZ#S)n@22ME}+NJ6NIpxv==aH9?pcDFPnsA!!c5Z^Ia(kTERU!XbWj!?pw30HmO` zH*HSB#^UKU`KI>Twaw)sh7Enpe#coN&@6D$jz+O4;fKWj<@fbK1EKFYPQQG_7Gz7a z{k#sE3I0)}Hl*Bq$fcKf7}oH<&Sb$g|FC7lQxG9`&_wf-Gm^f~Jo~EPAZ29Nb4k$m4)#uTMJ_d06v`gp#%&gc@Rc)_jfc;f1j$EONM z&Wc8-3jSq%Ju{n=_esN%Q^O1IlbrvkY_O+w>2L)IbX}Oc?LS^jw=b0>-dF~R1r^LMS|RHee4$hU+LM9jlwjBE1W*IM~StC_z5>M{U2MtRO)K%(v49Y{M&MV z-gXdpYu&TN#&~}m-@O`e(GW)3Ka458;U>H2;ddkKvp3#0p}DS7_gyISKWum!>yR$O z{IfOr|F%jyXL!y3t2*_++fU~4lq%CE!ujPx#w@w%>iuS4Eurz>z^)(M4 z$qOq;i}0Uu&sKZm&2FTx?IE~bQ z(_9<8_8Vg|E{)`WUq5>$gJbPa%P)yX<(q;t*c_BZPEi&3Yx5`S6%|w3_+f zFXkC2H~gY651zcKlu3X7I@7<}poZGCVw+jBt`|jns9^l7l~a*w0|S4@ek0X2Ol`%p z-IJ)2Cz75iH?N^WYCc35o1C*w%c^CMkw%%ex;Vx4h)ho|8 za@28-jz@R-S=Zbatz9B9u9_g0U!lYJ-4%{B+UfNVFw`|b+@r@XEnEs;6F6t-6Md0g zNzcM-cVr0|*Q(!CotZTlaJi@-^ES2Rz}IsU$#xPXubJQP@{zo^;n9As_qf?uJ-sDs z?ti|iO#2@*^?hya(|;tL$LGI)@uVuB%S6PU=0dxk&x~#xMlwfn?^a|DUCT}j$DU;l zT6x?^2-oV5YbGIsL?iV*+paZ`m<8K%t6{X;TI?}Xp@VKaAT`6kYRk7~*R)Eo?1aUs zn;oA{>1moXg@z9Up_wL$y0j`M0u_`tw#X<1Mt0Mi>Oel#-Z70bjNPnTITMULL!zfH zgOWyh{KF7>wPJxx#rnAoNTr_q?5G2b+mw!JE6^+1iu;#MM+u*Vavoz!o#^|lwgbH>YUi&PkzoS_@9q9I=4%*f z1i7Rfaxt^!aK!uaveE-KR2)(SM^!)kT*Q!Tm)?T_odVV%Yr*=Napaew<2)tu=%w|H z4)@)Iu7-z35biR^uL#QOKg-xH6~(XkOArH-+I z>}9IdAI8jZiv>p%h|6Z3bZzE+$eW_vp_WD6EF6~^=N{#0<>G)?JvnN;Fq%uN-6W|! zF>DdJvg)f4t`z?&?QK;v>sv6V3$3_eT(qW|P1^V5{ED{ZlSnn`c6=BdTVCxl<0wuj z&rFo#fzgYa9ST;rxg1}$G`QN6==pGxV&=7Trl>i=So8Y?LzlI|Wg1%X7K4UX zQT{22USBxP2NL$lPS)t!iWNg%yEzY573+sCq&?V5JE1oJZe{+= zDdl_y{4$^%YO*u2^O#t<3&LIWULrA|FDrFKJJqh~g(DRwuBkcGHp%CShNw*pDzi$` zRL$o<{0|#!av_SS=&>LU8dZF*TNxCCZ)K0>K6fTPzjR8zu`Jk?^4m7e9G;Ol(MyE7 z-22R^>Mz5~P}Vv~BNQ2Lv@dSer_kIC$=TCv;&bs;ykz6vLvUUJ3%Ds9bGWd*>EUf2 zqJ^FYN`O0lOrkhe4)~=pwcS)vgcUziK#)ktso(gt!imr))@*bdFxrAy2JO9`{Uq&>*DYii4t(Yl$r2|9{gQW$&kiJ)OV?6HXRsw@4n{P`xh)Ottj5IY#T#F8O8rxtbb0?0HtaaPXZh6+wh-kN7br~@vJEoh`QA{0)TW8NzcQDm$^xGN54 z!mVIqtv$-d3}>NiC)pJU8ZImYj{K22YAw<7$)*!9I;W4o(cttvX!H|>GpG}&9o!`+ z_mj`*Em3fqxyJzPi58y}`Em6iu*x<=J=WgyC{bz*qkS!AAgvlEsH(8M*g&}>RgBd# z1R9k7iuejsT=54;L7t1rTnBJc-t?#90joC#Q&6h9TL$>(qs+v|6;REqHPryqZ>>$ z>Z_pUxH;bkgIO7F_aHLm%sJt=F{svC(e(N};$-`9YGm(mM-sD-s5!l?{nU`x-~;wn zJGUahG2L$QSTozQ@?kagpqZ&nHOab2E|*}u8q<14b!H!paLTjEiC;^kQ&R*`EZS$v z*U9!0mgAiV(ysaM7dj!mROGJRx<2ZW)%TKFI_EwuR+IV*R^JZ3r;Hx)SdO!3MDU*y z5iSy+h}RFTSb@ik4=NWs9TOtQ0^IjV#XEAQrF7GDu)a>rDy@?AgMd{*=J;>0_lCX+*hZZ3g6z1<9O_WLleb~^9cQA|$n_=d*bCahAA+62F8m+_gW%S^;z zinPF{u~zG5SxRr~R}Zer)zPh!ZA^8y-e!JkJ*cT3C0@09m~fe#p?e`z)mFE=#l~pt zVS}d;JBF|GZ)i@}h`CMt>P7*Ukouq@raLXybd|D4rdppbOAn;@KT|mk$-W%Daj{(c zY+-`e*wFF>*Rm8DFo(v*Z}s?=)T(V(>)uihg5!yLN`Honm2|uHKYrhMY8*9U7fO4r znpnJ}_;z$?3<*4yLx=$Fe+M4W#44MeZ+=UqyR%Z8q=z!$on?Sq;Yj{$4fw{|9=+<5 zNI~2b9jRC=g$%gHwp;Pcl4zk_Gj^>Ujf55Ae21BIUU0Nq?9F&)FG5twsbSMGDtMms z#4q!Yc~x63g~m!d9e_9})(Q-yA&w}fr(W%kzLlAA>V!@0|8ia{HhoPI1s#fao;8K_ zK~k>pNhuVmF{IIJ&GCVvxxbowS1cTZgglY&>;6(0sZ8{4CE~Q5_b3`8v1WczbK&a% zGEMY+uovTg(D8fvJyzN43 zgUj7H_wMqXTP6dN#UmRV06&UwpN9NL?g)R0ilUsK^zMK#6h~ z*ip-JBBZy$dx;IjOYS=d6jh*GaHAgLjnDhu+2@isy}ug@9So2gqY6x3#`{h;-yr*T z0CLtDE&+egJgfmS-~SP1kJLOd_jplj@x>?=L$2OgB8IzJi9)?mC4xQ(NZ{E6AYJSZ zP|OPig_t~|upoO<5L_eQX5|E)S9*gE=-DWci*{)opRVyII;%hqA(|MRx?5_0*&k}7 z1S*sT8OW<))4(hjH1^;9${PoNusHFU^SpY^Z)yF>U7q8Rq5kl(V87#c{eTbz&-F;@=SL)A_G})6`vFlMN))l3f|2YYtT_^>Xa>X$=Q%! zHGEAe6LI@L?oX(HuP#jeCe<@oGXpPklU-vLFMBm&FwLQ4w+@VU6SGK>V1STS{4#`( z;QL)ZG2Rxl7cjHshW_hC9@^6u=0{sKdEB}(k0MP)b++q`w;kMV?gxlaMNFHhah|(E ziTA*VEwvR`!Ko6QCgApPMzcb5VKB7GaMQ7F(ZR;ML0_GA$xT7+u^P(qVwq$7rjD5I zpED|0topx}mOKO`4~#SZ8s_&sEHyn24DcD@4By+FTV=^JYP3xnu@UMdY5 zk8-?M2MkGfdc~pyM1CCeT_lI=$`_}M5#APk;z{SleLkyB5`n zl(-H15&NkT74m(Sjjrrdf=$!>oy-~Qwz*4oxho%XHyr1Vn(a0)aM9^)-&CRV1LHT5 z*C&a+Pbzi6d9{j?h|zpV>jrL{TEr?qjeYX>86sZssIJPS=g>M?ETEg^qp+pA#MD-S zYO(FFzH7d!Qw*GSl-T13$~3(#=Z~H4Kh{pn8DZ&65A*%N*bWWMagQRn%|z*-zV6`*7LYenx!_ z>4TI5R>*3%nr}H3t~OYt#N$G(90EHb64`GoYmPCW=ZgbFafI*wEe8MZtN-65@4L!$ ziSr;E(YVn&B}-xQx4xtbRM-sT!%-Z3zhB3<2r!)d(!8E8x3`&X5;<4~{*c?Tt`nwJ zGeGPUJ1yStdz<+-O=+&HIXbCag8DF6I}F*M$9>Ga-OTfcs0!f01U3;vfC&B_9t@D( zT0}@Ns9b6|j1FHXh!*^HVqHaf$9pu4vpC-t&++wE>0e8?@1n_kQQ%ZbzxmNj3?QMKT(sw1isu1KIjv(*MoHtu-}0e{y3q?6J5EB% zli0Xx@i(uI)4qDyCw&H?pI|zKb6vInx)N9YVW>Kvt(tZizhkeu(@ww8mxuT_wRc#d z{p-l!c+6nU!%Gb{6>iodhw~*Wxi-t@rx9DlZTXPvvX$S;xAmHL+|q}J1v8(x1%>M{ z#7iQ9l>S>XU<+U3FDLrA-W|mvXA@!$di|m-LhU(dTY)sK!f`YX3XHZP5B}jA zc*X$`1k49ie~3@liF@a%Ye%T5;hdo-QN`b+5*Ep)bh%ACtM4C}XKGeRD6R~5gb`&6 z@9W9Hu}6Yj3Bmv>ua}B;5y_%7#A_xX>C!dvdQPdu%U_?j8}puka>K(Q!DSg>Eo14aP($adqvROtr_KZbze^|7t%CF@-*Vt2@j$w!e?epL^_lzB{;n zdQ5&kSLb*_{EG+5Q^5)yzol3MdPwoq@qi=OUA9DA+Lx*;4NjZ|>&E3b` zyI9{}B??fy{~qUh?j-|0I%aJNjY!2RfWM>bH96{Ze^>F&kW+4ALXU&B#3h31?@vMpgV)!4IX+8mEBh&3S zEjGb#-fr(ygw*%?^DlWufzUPHt8M=j)FbyF_^G1tT0;tGxY{SKK#qc%WrC$^GwwQk zxhuP!_@)-mQI#lz{OG*;9NEA4oWv@Zd$$C5k6Y)+ep;lQMuT&U02lhYs&|!K3V*nW zm5k(jl{3IpQX#zP7)pg<*@3a???&p0sgo~*BfnRXCl@fnw2^Ztb6C`}USWz34nzQ5ywA*HnQs#uA)`Pvsew zt%So8sQ#yosm`c+p{I4tmcRFQHIhuD49|{JB7z4ky#>RY%F#^FwXjD$H71qa3TwRE zS_1c-c)bF#V={#vs4w-*9*7@RjK%n$M_cd8Ze2e8dGW9zO`#|G8MhZRbl_a z9%*wy{O=povwcY&kmErki{`=n=m;T{+BNZ2KZe7GxDbp%E*44s-Jan@e)6jfausOtTX#@3cMIBZXZo%{c(^N zHDbO24e)9}ZZ)f3BJpc{gctmfQA8E@Tgbu@F&sNXW5ZuQ{jpRILSMG?DTJ$_WI6Hb zMF=&+c0d;bu}pc>HSm93XQMrPu}>JB5{I~w$NHS9sMNA}WqrW{$JpWTJdoUME{m|? zXy#=j0pAkGaG2`B0EB4_$qsh`qe^8K2;EKoyNyDVe>1du}cQ8YS&_^>p2@SceMzxKUypN@(lzamJr=bS!v zs>~FMTUV+F1LL_G{wQEak!pD*SZagoE?VARSS2bZ|iLdGrl@VSPFhV|5`|9&~ zFhxEbqdm~KQ#(su-yg^sP@~F~%AzfjddaGjXM#E31`%Fy3wC%_p;grpG{rkeSXFUp zL;4Qrr}PyNpu}VN`xgbP5w9NV-=IlQ9Yw~0;5u^gSsR333_Do(j=Zyg^U1mG*FAq< zf_5|8yrtOAjAKLPubGO7pW0llqZKdqvQ-^t#~l`a9SeQKGw>La-7-wN4JbR7OMH9` z`sdMqskZ-7++qD7Pc`aKSDJ}dwfv*OS3fpkDH8qH@>hiQ|B_~P*xjX1u7G(h&8t-f zs8VnVtXiUZEt%L}@DcN+yEc>Qhb#l~F|5- z^=}93|IRmbP%4!Mjv+Mx^9zl5_*P}l-Zv3h_HUkijyR=FNNO0T#@QED6|l^Qa{Kr? z^EJx%^77q6J4H@9&&DfM7g%;GTFfTzlBNURRd#8UA7Ba#Ht}f-m&J!ct#*u zV$I)T7Nb$E8kB(VU4eg%iH*6ljN%#J$)0a((36;`Me5G?Rvw;_XCY6q#X6gfFY}d> zChUi~C2N@5Yqc8am;_HRRGo>8fG^+oWDx{ze{SyBFrGj3U;mGzAGmH4xb7S%WyV3{ zx=@b%YbMDHAn%%@9{#Zf1Noi|aOGP6Tgg)GZXrqA2^?_|M6a@IYawtgXRMEM5+wi@ zKGLJ~wElB~%UX%KF|KXq+}kXE!nC!HwUE}^TIgbxa?&`G`{J6j(x0s)P?f+aoyUn? zc7-UmeJ0ja{9Q?|(sek}<{10*^+b2p-T>3*Qeo|vHMo$bQ6DR8 zUbY{*v0*W|s%PY$9;TyPFE~o&gW)u~q(Od&ssU`GqMxxjwhF9rD-HCsF9OpOyxOIaN_bOL9I@lCQ+E5^`l;cY{#n&j zYblzkE6QbT)@`LK+F5tOnQL(@moocU8NyTyBTAZ?IRr_|)6$zjqcPh}kyNqgnYgu5i3=AX?%@hbu-~wt7@`8%;EGjx zCV%)3d(LXC#uv23Nc@3c8g6=4cv8H5lOccN+`VmfRKD+;}rg1rqtA z6#*fLgo2#uLjy4h(3&2(P$3#SGU>0e0CLO-kqK|WqY!+^JtXaq>JvI6M zxMB)r|XPIcj z_%cBHBR6`#UeqM1dH1_}S^;S_;|IxedqNNtn9Rf;s zH2RMsCHElK zXs423PasThcmYUW=4lv)^IM~8W9lCD$9K_`pKzQh0Kr#x%c1)kBRi66(~*1Fhq{~)AgD&BPU5S(RyPR#sF}@ z-gjx)cc?u#sJ$y%bX(m9xPs)j?HG^xNY6Dqa8u8L!�iCZ!MB=KhN%ej62jG&4DG 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

QvdR8pn{$1n`M0KZ9}Pp_ntA&H#8#Yl?{!?7 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ÐMT+D>yXP_aGdT*RQC3>HEEjt)) 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

1Mn`9#SXgQpfbLZhK?mw^~ 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

|v>aeyUt|{oW^oybdTftGXybF6C+8CFcOG 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

Oo!!>6m>e~0WAW%)cU`mq;aCzU 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%0D^5DPKLr(|+gYsKptS8QaH+wnugxE-oeX%st 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

bax_Y8rFGFJXUw6%EO9Qu1R&nM(X@zuVVk=4YG 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�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�_=p$UKgNGOS+Rt;md*JQ}#@EB^l?B-6IKejt%l0 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�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

%DHz})k(ecBDD-Y*#%aKuF7Q1 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

0t9UueaPysnbpswDExe321*a|Py` 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≀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

bLlU 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�pptSCgr4$ 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≺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

t@Zqrkh)M@{ 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

-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

AE&7f!=d*UNYP+py|4 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�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 s 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

SMM=4kzta0_y#X!Obr4f)P;QJo1rLF#9 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�@)Hlt2UWNq>f0r+iP- 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 z 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%0Ao*a+`lV0khTA}r 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%0DUlvUo*veCPh6Rh}}UC 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%0DO(~|s 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 _PBGGB=TqrXU%sahy!Z;qhS3mGY74E}Jr)!yAN= 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πW#mphiYIdz(vH`rMhm3z_} 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 z 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%0AP469e)ORxYoSJoToIUe)i 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ïm|$dm$5fw~#hWAJ<|2%E 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ν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 #Cky z3MsFF&V9dShM&OIE9)VnyV|Fhf^F9&Gb20QqR5YkyQ2u)mvmv;t$); zM#_u8x7O}uBkW`UUJ7=(|B8vBkd~rj>i@1yx3xvQj%)pp$C?T!c!9dxHe{>vFU)!B zdtHUU_~IXqMy-bK9@Yu{sLgCQ2CP1xb`!VA-+Py9ze39{WPbJ<69`K#EYjM zIgE$CfSd0~U+uYVpXu~ZS}b;bsCmz{)|O~xtS~`sCzG^wT}@~xr1s#$7J-fAx?btG z1C*uCO!O0fLOthJ5xa$;;f9&5kwB=}6U~lBJ0W7!2uKcxg+gWG&xRqpfUVSyz1^p6 zEl7~6=8z?yG3sj zZPlFDBX_Xk0BIG?591C`5(MvtdhCS&movsR2v3*@_m67_r>w2sp@ZeT6a&ad5pxWw z8l;@Ge_AoCOpI$Y-9s0{b3lKVz+<%LtKE$8dKaH}*M5!n;>$$4;cg%Fg=&8bknWRU z*T*4eD!qv9eY%%1)97rR-r;EURrOy{KrskjO=0r2k#%#ma}a-HXjc3yhan9j!ar2v zLyDCaTLbqWpTg0@-;!6@Vwz@pU$h;$oET=dt^QVz2b#2Yp6WiZRmD>#{pA}N>YD&M zNx+1gKRO-O>csOt&C4^BQJwC1&UeizofOT*I{NCQQ`a`zeBf1bz&Q- zzH0T3_c`>toPS;~Ko?@TI{UHby(lX?Z*s$M<>tMS)-Oc)L`c_cO)QQQLE^A!b}l!L z^2vH0t<}Ih3lSZfeN$Xk+t56i6~{z2e?fVw7V@03sD5Sl(RF$TW#yfv2Q>q<=a?>~6WTanH;vRDNYf(FoT zErA2O&Kh~0rMGLs*3eBDHs8Ef$rDQnj6a)n6BNbUviU&9Py8?1MWWnX8$*T~ow&6R z{}cOz{9Ki;yc@S8Lcta`DGpFyn*(RT)~XRyL7>6umMSahaANe z=h#!U^m}@gr3c@syz?Lh+M0sNIVKLrqlZL+QQf35bdv}9k{8_s^X!-JQ);NL!qa)J1O!()#+P|V!jqW!f#9BD(ylWxx!=ZujD+9tFl zK5w*QU<3@Idcm73Z)`p&!4QJcSBbo>0;_0>umJXjtocJay#{&n3SrySN$b*|j$a4O zoZlghqR2?`tB6!&>48mpLbTu16oOHFuBnAgKvMLZkIaM_F@Hf)+#+uoe>x(_NThVE zkDA;sWws-G;MDrWSK+{cAoLTMK|#MZe5bYpi>}%n%zPE+J1yL-g z&e7)H=e!UOK6#3-ucgNR*KE5}5`I@PuGwPg>9&_qcvz4=+fWv!Rti?IC;k%abm9Lh ze=Io{D{@HP-{_4H#(e{+ur!l`UEUdf=v2I(FEJ;1eN<)GfGe~5EqN?+6BLxC4aKV9FRzQA$InQ z{X67(=plGJzPAG1!`%I$aroGbsWB-1_q}+{m7C>7NEfV))F?or<=)+CyZ?6NLe1xr z%1lf6an(oQ|3PW1`)fAD4&5Nt*X3`DvL*M;RpG(f7C$Ys2h!*ETjqC~SB~1}j@oAq zG~V76`}p$-tYXG;$!-3eL^}I`6bo%2%NU*vzwkFO=TgAIWxob6{c8hrs4yZn8N9C_ zJuBiQzreSdj4LFta{X**7QFw90ggQXI=Sg#b#Tz zKgh%%Dw7Yw;0-@dgfv{{V_o#HDnBoMLDxt$mSff>S3W%N_DL_p@K~2fWl^z!KIO@C z5)`rej&ss41ShLWdAxURm>X3N{^o|VMYxql+ANCc+-$SsHrT^g^-#}qCNqg5S+g72 zuI%(d$sOFY3W)3&N7AB{+M^aF#A~_3Tzr&Yeclo zFLy}Wn*GhZFAk5*7!sYGTDT^0&9WfLNM1 zXQnhCM6veI>*GLUYv(mr=ZRa60I)W_ObaLz!QBS-m;^WB0D8?|b?uN$tGcrD^gC^6 zb*bkBXpn!i+|Ro$i~k|mM9IV5Cm;o3F#L|nAy88yi8E<6(;S9*k{S=!*Z4{uj*pvX zY=KV8GzAeukm#k8AaGvE*Oc2s)Gt#;orXK7cPVhC!ZQTw#N=~c#YpDL_7^u#cTHz*SF`8LmNG#s07 z=CRLVWvlo80oXpIoY#`9q>w73lqe@@0oJz=#1QCoy+tvW^m=r&!aM%yD`otn%NfT) zk?A1dmeZy9O0|}uO|5PxMR73bZA1vAqW%EPR2B)%nDynXd}!?oX+Z=v5+gRZ2f`a1 z!SZKsvZ(Z{nfpS?C)c zN$ujI&Q7l=;kl&zi<0_9Ct(WbXj(sUYuguvRFZlP2I!s@ZDO37;8dZsGhZl=a`026 zuR)*AP}uI4p_TgrBqG%Vwfa*jUGH47&`_pLNy!UCtwMTN%z;J)LZTjXERnJB_kRMN zT-Rww3|vg2##)<7(LFrs-@>{S?*$>yCK7%F>2=YowfC?8M@o(3sK?o|w3_W3V%&Q2 z7cOsdq^Gc$l>I6K88YU z8`rhicgXMceO}rfEC;38^Zgfw1vx2O(L)N*j}u7P7*dSJI+58du4*JOX(r`)te(Z_ zDENT>B;lTQdbhHj>Y&zhQS6WwGa5&pW_ZIJrvh9(%y}XU10S*Xf%@CZ4u;C)g=#Xy z!S`U4s9Z>2p8JLQI*1iM3=XZ+6{SCTxo37hJYAn3c8On4O5(lOHpy__Uy`ZNs@)II zzsEbJ_y@)ljUjkudLt~Fh%!JQCHwU>*@DR2aCv zT39J3!hh7hPz!iU!AI`D{kiMYn zcrT{0T0ayNxNl5?eG(6a4ZMi33WgR0Z(2P6%{^^e3vjxDFSjuXu9b~zx!Yoh*WLdd zd(urlEu0TMJe8JA3v7;zQCiz?t?C0`!5mFx8$+>u&}oevV_0PYgmBc zxJw@B=l`yHBDuheElf3Kmd3!gk@k(DR-7gnwnZ+B+@44~^RkBFm7@_y?YGn$=g&9E zlSZ~|G|OLGM)Mxr`=zT*M`#W3nDPYl$H2f9=bdYA!kPc}L~=#du&mUE7yG*dwV^IY z%gu_Y*dR5%1TbNSw4jVDuE$~npmC6jQSa6cb%7_on-~8PN`v%ARhk07WDE>M6jX_M zHnPQ0;B0}Vh9HdqUb+UHQVV?P_-t}!79oJ;tUnFe10ng&3)z9D3VV}D4q`nEDgbE* zV(l24Lq9>U^*#cW7>UO$|5I3)mu@_n?SzVbc*h?DqR`g{Y>Jwn-CLQz&Wm3(*<2el z)FmL%oYax!|9*=MAcpe9-XFm$w9AYpe#WlG9!YSWnnYbIz5EyABlO_c&rP4&W9ZiB z%q2E4VbqF=cyR**!9u0~lsOK_yTGf(PN~T=bII5t;n5#OatT!WUh9QXn3Lnq-&iZr zhdkJS4~-!q48nec%`ThXqP@CZNPeK`%Rh01+e~G?tsJ)XN1O~#-$CcIP(KdY4ht$f z%H(=(M~wzz%5}I4++1Lugq8`nDdeCGOiQ#lwOL1uY_ZAFSZ|1xw!{bGTjcb~jO=d= zPrehRu+nH=Dt7vymvXL$HvgQWQt~>d45JD4JgOq{+m9%6ftQQ4=$S(BIDRmr+|{0 z_2R{vX+NoHiTc8eLYS!9c&o%<@JU}jfe!UpbJ(7&h(x0C!F1W%IWC(++Vm(~F$lC;h-Y{7^ZDk96GcY-T~BtCp89 z*?u^uULMP)0avxv+#9ck$g<>%MV?m{JBX1{Y$(q`i5X}uH;^GI&hIET2n}s@CUm+U zmy8~y^%(&4UwTY}jdSrke;p0%^Qln7qTj|>IK@zyFG;@;#<7D@Q-)khifT-2pzm+1 z$?^JMz>cPwi!ALsKcjeg`=7qc)%GgxgHzWN7(x)3tY&RTfvL@b<;=*lk{}XvIk8g8 za&2e|dT$q46vff1)I9RqY)` za9s~~sH=_ykVRbjn)TLkZjLYN%RofP+Plo6*gvF?sq+=8c1h(=C#5+6X+B@MW-kzS zuq)^X+PVGjf6a=qCV5H&8QecMJMSB0{lqKIn1cJPR%T!x|9z-1zJn*GZjM_g> z4W|ouB4U3!EU@rFUvH$OLw?Bi^_qxcyoxsOk`Wpj*Jo@Vz7-b9&>@UwuDB@ory2=a zRC%wH=C5|3<8fIdPA3uamX$AY4Bn+xheVGzwhePTS%os{db+2kb`3tkT4db5K)AI7h_n1($0Z@IH2zEfj^@5Fn zuH#5;LN(6KZu1hO#QUwO9Kjz6lh2+%D}bJNvMec~R&yTwh2UtA@@J|fg{V(@^o6-7 zbsJ(YcoT}vTI^oicF%jtvG+D5vGA|Gc<^34qhV=?t<}od$^JO}M&Lt!+KM7U8No{i z_r5<}!HXr%7eA4m*Q-{aS8;A9f#zDrtppcn*6p|;b}kNR>9-ocW(W91SO0M89cDg|m>2y~0cYYMDu82gs-THGBdgN5D^aFb z(;P})p(YI^F44O2I^3$V&Y2NHY@wJwTRhJ>U2k0+?`r-JQ-2v2H zUDDEBf^>HbAl)V1U4pda|Nid%+t2a5;T>@R_jRA^T%WbBxt4j+M$NTj=1D=H%;s5(9?o#<7=hLT<1bd{GT z&;W&=EO4aycxl)SIid`PD~8fxI%R(D?#BcDZ5Qixi_-;@{VJ^LWj(S#| z|8C_aZ5;oPO(6u1e>uHZqhKUqV{HFdqX9Y{*_O!jEmN**$6xF&-tmu&g3oHY3pk-} z<1}MiCQaMbu77gPZR8Xd$qma6qLMzQp!xJJzU#hn5DR;(WTK>MRNsmL(-X?nWOct=-0?K{~o) zYY7z=cEqTtuwrP(@g!xYfO9>5U3w@%RdGAE{p`AHR*0fuj8q*`NvzL&7WMsOPzb$$ zXLrW(_R!&9W*{0ssX@pJ7}3~&W|c{s#>7lEK-2DRggM6@Rczh25TzVBZGRGj2Y0)t zl$x=LZM~d_6r<~Al??jE;quLL2f3KvN$cBeyoiy$y~bEO2ajp1YxP*Sr~LcZ76TK} z&U^5jqy4W|ZjTEmj}iTsyo&R|Ggl*NKN|Fpyzf0CKgil>Mx3&e2(gkcuv9zJfQ<-L z`gP13)=w}71IkNlKLMKx0LFL)6NCe&ry9bR#s0IwuiWVmQ&dyn&qSux(=@>t-dBUo za*O4D%LMtK<2PatK3QOir{=?zc6Kk)fX@dg;=PM@wEyPCkK{?USyn@Aq8&S{~=&|N>DY5NQ`-Sx&iyMfmDnKl`~aiaKhJ0CIg52&h_Te+`_;K|RG$`-YQN zKD=JsF}Y^Fy@5O#Kcgc=cIVN;nZx`XoCc|{5 zq`Gy_UFU0m|&}d@W!qEg` zBmuS|Bn?uUZdB@-X`}p%`j@B_GhY{xj3F=)m^|)e$AT-m6CyQ5coE) z2KkQ7_dxT0|It^U060$JxO5sXGy8G%%v!ON9`!Tgswkab8OM#@OJuqr43BfAQf&_z zY*r$N9f!0%66YVr_$ekyCXVeQW%rzX7F}vjIP%fu$w=!HSMXhJI`BRw!%l^`*%{;2 z67))vEoIBDK}J#-W?shszce^r`Us+v(WQ@94>?|Hi=8+B>39Y`vQ zsR)@jDu{Zo6U2@{#&Ce9uX&)p2Ov=t+AxycdHa7{_i)Z_@W(U)Zag5^^L`*qX`7N?Y3-!EhQ!>@x>-3 z1&qmKi}g=p|4=q?aYD~G+}K6!jl5QbUaGxs3cdFVz3&VEJuA%YD9}X990u@JeYTbI zT+)A=PCEO_ztrf?_4JXVbl=~>dA-me)wBhYAyd$1j{h)s8+%k7tGB1pMi%?+&!y;k zUCqWw+JTbXNrdMqZ@YVSZ3Z)D;(yeTqq;jcO=l49`c(K?cleptf+zREyTjY;D{mFM zYH2;L2x-d?CnXP@uox! zngDFWPxcM1OQoKtFx4C7mD5dM;6Y9H8-RGAY$4P##jseDmHoR1gre& z>~i!C7w@n9Q;>kTDwjJt+7W;Hi5ZcXYa{N3t(7M$XdsUm7)tL7 zf%kEg-7EIMG`j++NX!D{g`OcTH!V0g)q6^0!KoC`k0b(c!@8Y>tApBvGzhmC_`tUi zPP>dPn59qf?LA;Hc?SP!IH>_S`nY* z61n`Zhl)|c*;`Z>!l0j__`yPH%tws(E#aFTk%CUZy+#QttQW2W^dV1izz0>slPpdu>l7RzbYL zK|coz4GFc9P;C|`WSsO;@@apK>=-??Y;@R5mjJDnPWLc=N3ctGn zJgT<*M&!(7txmK6UiUG zzHg^X@P}j5;NDH|h?=*wdAtAmJS1;_{jDpc>jXk8dxyM^jsFhHyGh{@4Dtws)dET9 zLa48#;GSY-h4_n%1Y+wm(X7ERX`Ec?d0|j+|C=o@+Fjzmz(JQj zN(viP6$-tw`vrUb4$R}P5QL+&BlR-8zZty_)%LGpn=0AvSi6<&yGXL$cQTz`kMHAf z9=ZX73A1#esK6wFg`GuYHn+)YOb?2|PbRq1EpMzgl^Fn~wum?N8L*wmb_?Lc!Hl+Q zRT~j%V5k+eq%=X$38;Tx{)1|zeW4_#I8Ggv26t*F0z0%P07m+Y zN@6>i&(?z2iIrNehf*;tTcCw=@zi78AWhI%jeG*(QYa$=M=m%H&!RIg9QhPis7=86 zoWQWUExHU+y~ZZ|#~P`1#EoU~rEeU)#p?|%z|UJ|0sqrN=oVNTOnY8LLdHk(hklNp zcMg-7r&#LiNP8f6ZDXuB(;`!>xJIoU5EiFBsEGs-6?m9&kb|wM*io8DWK?tasmIY$ z(C;lC7o_1NsSp(RHo9uayuy>6>kI<`7q~$sNCtV?Ei<%TM$1}e3FDFNHJIPT^QZra zO1M`jJy2Cvx&Kb(g>nkn)EFZTA3?IGTqPPgFc{*km}VGDT;XB0B+{uZQKsj+MIf|jbnRo~rwDE&Cs2I=YY0DR10IPc5GPk`))xL4yc#=Rbo1ORWO7wNR}!hU z&~({ECh@;O^8XXXML!%>iy#lXy=aXZ2fAp0Z0 zUB+^*g9Kw54H#qqreJ_XMmW1d-4l1*sQAPQz0apWHp`LyEgI|iEY$M!u+#XB>`tKb zuY=q5wG%K#TpbQh`*ThH@m*i|5260=C-#p$oF1pRe9mIXJ|#?y*Ertt7`RhUn$svW z8l7paZC$xN=$qf_nmKA)-cve0Upv0~;hA{H!wbg!PHquJ-GQlape0{5FF7KFkzq%d zSSFb}TRW;A8U$eqxEdM_kWRP`sc5TrEQ7bBoq!nVDYdBn$MG$5c&xVn^I?8##$g{& zn=QYeB=^04I*T6b3pi%Hv+b;+J=4LqPr0oi)HD6p?^G%Jy$pNr3XxIo|^|dMcT}9NeMtUO0Zoh^T0dzb*|(;$C)%7fi54F}HzOM{aYIk7rfH?hvP3 zC=uOQsc(@A8}Nh_wu1^Yb38^p`BRhqwpMp!qLzlL^9` zko+AZZYcZFWgtJu*3a=gX#BEu=I{6I^*H9h_E_3IxTWn~0pH`=E3YDVQHLBs8>01c z(vQq_VNq<|frdueYl#J}`&VABK97P|jBk2ElC?OY-+2u~1kb5)tFH=e|9*B8z0#boU|Gx9Nu?c_xoZ`;Er>E{R3Gie2n-0|?7_l2)tNT_%oRjOQUv9<}; z%JJ2TgR6mK1P}CCji-VWnocU#)LN;|F-z9Ij6Zf@05DPnH)jNxCrmOwk!8;JCryUn zUq7q^3A&bKOaee;#4-1%#iPX9a9_PPDT8BidV`LE^YaZ7x9f&(M#^41&BSN`9$1Qz zLJ+|fc5e zyLF$-KJlM+2GX-lrHB9d!&C?}6i9BKe6AuKqD@WzST=7JYZIHz#sQEG=<- zTe&h5>e%30#Vh!%$#c2Cltyv9|JC7R^K`vev|)(-pBG(*L=Lo$T@;2Nc;ahihS|D0&8uCR%J0fpqblJJlShUD*p)FC7r-B z+}$KUj}{}p#FSzjR|6px=$?ObhO{CoEk~Ixfs9g8D$1q2rM?HlV1cjh^X=wnGD1#X zt)1>D;+GQJ_@jo1BiXCrl6<~FN>9_b{f4i?VUCq6E7HR(5Jw|uPJ*k?v2@;V63J44OsP+T%Z8?KFW&MlktAhf|LXFHI#_qBQZ{J!N7M` zA!lEuG%hgX@i*~z0*nr3Ufsjg*jpd0Ml)+9l^H*f90TF)DF^u(sZEubh>+aIvsD!% z7ZY6C6<|V8JG>jT)h?RL^@-76Mdq?&WxSOdi0wJ%mXaE0R$gCIoQQ;~G__y*H>{@=#LEQ~d}OOHU%_BVAj`M?6kE{HP^i8FCh9joEeX_Iv3wOA z3Jg@2A!`~p%=pvrt`#fiEdqUFVP)T99dZz>7f=8e%d<73fUM!96XY8_DSa>Oh^Ui| zm7raaEET3KEYmOaMCPA2Hl2?AqNi=f(Z}Z`rm+0@2YXiRM=mLzqEloTU}TH8?NZ^$ z6J8CfK@z(WFm874y#MLwsu+C;Bjocq%)SU(~P|f!|BY6kySc4?q!Z(&qKdt;8cXS&ocV7X7vXKLM1V2{j z@dLtKqj(6NnhhEOaW^T-&dr^xTc=%?PB;ex`?JWG|3@~njTAK|aX;wFbRm$IkgxnC zre37``3hkJ1U)i?k2WCe&VDU?akasQKK43Au9&0=#(@y@XGL~j(UR{B@{LW!n`QhpLlAB!@kYvSH#oXr9v*TsFzvsWHL@tU+gWi!#-gpIWj_)e zKGEkVs9DVw2q0qw@L5|EsM&>h@>jt+217%hH^Tpk=qBMzSur{o#IED}*tb#ALH-J^ z_V3XhwPVQ^R$uN>Z4tKq*D+|lx z3w>LU5XrXHb=OwT>WZpDZ0pRWM!aR}HDLfn*5p1z&jR`2H6sAXp`8Zj`#h*wU)WyD z4~CfJkZ4G)0eY`H(~GVFM5m7}o~zhvVOO77Pz-5SgLWM5Gb)0%!VR>R*&9=F$PuFp zk9?kmp~VFf^dO5bM$otAEt;}=`q(Y+d?sB(Vj%cS@z*Hreq=Yu#B&!v1(#HSLkM?? z8>4Sfq_yuK7M|;dPaC!fP?S)Tk^d)Lh)y@=6?R-&w@iev;=SkVMpXA#y>dykG{csF zTdc6o4ukyLix!#jaX8bBapqeVe>!4Ta5!V0CW$&-Hi!5o^@hzds2SxI!dXR*sVllM z%{PlOk7-|pSym?lVj8NnLumU79$;jQr2ZI+8zM+q4as@P&$&+#!}zs^UD?iql;a^7 zLjtU@?~^aSJ!g`~8e<6nRS3mBqz5+^R*wh*8*R(Dv7K$~l4oB_b6)a1ZglG|RV-nK zXm00?}3~TsO7{kJ|E*=7CnI`;_b@8r5=OYT^kxOJjR9rM+?S*=}&X z1tMP^&``h(c{(lbo5LJ9+It+n@$#yhsH@B|vhM0y5ouiECbv!dXq}~R-`4e;yJm@( zz?SG!B}wFO3|aY7Xpa_TbNJcG+o)ugfR!JL=KF+%3=A$Q%iFKv;PAIf+auG+TX66f z-t}sI`GT0WIX_~hnOq?-8pvbAqU=~UDlrYh`R$xVk8eZgFQR5EYBUj$bCjc{TnT0+fOpx6) zp7~Zedu}EwRn`d7ruC$!brY?4tXpJWwA89^8~yte4JLolMY^?z>o3pqw=LV94PVZd z0({*axf+GL>Ur>2(=i+{ytVCO=(gXN`1Y&|om8B8>U`9f3GLI*qS2`Hse1gF3b0%a1rqXhq#q_Ja|nF(L|=j{YEQU?@<+aU z@LipSQ^T?JgLxSbU?3M}Yrdk~x|k(}_e@Oep;vT;r3xJb3ue3ZjQM`GFzxY2ys3LmBi6P00!};X5xvZYavB! zN`x)ocQ2y*ZzJOmmSv)D1amiFhJl-aGP+#^R=zhdSsu6GEBuQ08A#k@KP=Rq(oR*C z;E2YvoR3Ht9u^s0N2%sym~gO{m=+nOAGP0Tt=wyWX-ZPR+EG&Z^W|HjneJZ6-=VqM zldAQ^e5l0dK_I|IkhVRq&e=Awey{Wex45S6<`)vpP9!SMPT@#kh+69|iqt0q(+?7J zJ1)k|riB;-Y7Ks$Xw0q%zV6B)yCH>Y(Vxf!_!?XV%a#a_{mE-uwh1^yXQ#_X`6nTc z_wF>FTtP@#YY_z~bpf-PK~wobD-^4yHjr8RfWv3vb9`W*OZ)Gq1J-}FF9&@AfmY>z zsHTxO*?Em9FYeFW?tg9 z2|_JDv)PjunVKSwPqYdKmzbN}L9E;8At^&LidWmr>*l$i#!!dJPZ~j*R*(Q*;^axr zpit7nOWogSb|gq>HlTdz^>}{8^uw`nxE6RIF^Ig279%`gvbxkg%)wT2*bhO#DK=(+ zXoR+^?s%TE(^Oqml2-A|EI&^i3#>zUY$y=?yXV#skCL}TPAjcWkI`DO-r zX)ni9z|e!eww*GM<-I4>08xQXMndb{NxQ^E778TsTJay?o}U1{1Lr(XHFGjLhcWbC zRSZ3&0i+|yWcH1MUkTDW0{Q=o52UPZT;gd1c>!{u{r5@h;vQX+T&mHQ^si+~{f6dBezs>;O$=haX_U+2`+qsxqLlXqrlsnv zI`2mc!OUzasgOd+XDzU?g?c#PUiVT&=V2prLLZ%PgMlPiXI=36V!_!%iWpYKSMvY$ zuL0a=fBt8d(GL$%Rl80KJ)koZGQ}Vje>qk3qWEe5yD#)}zEPM_Nbf31qZ#UEJgeTt{U&dgs~WEqZ^ipgJ~$gOO%mzsk_HwH z&uX68ESP7(sIHAqHd|(w~Gcg6MuvD7BxZy zH++6vx6eKp-6F521*cL4G|{iK6zsRGT^CyZ{V=g5)p42E{WN(1cG}PcLCLS0vE0WY zr&|I2&XWz*>w;bD{B_GBEkN7U2cCM}sV05Xh`rm;I^V$C)~7&0@sziW?2ZBhPMfyk z@8mRN9{y||zXaxQBPgy)wKDz>f zQ>#{=+VeS~7SA0%N2>01V*G-Y^(|GN{~T>;4rhBm@}u2*D28Dvg~cdBv6Z0MiqIRS z``f4o5A;*vf4?h4M(EY&1&zq#4Kn$1enbT_zzN*rdtIWeD{T8~ znQX{6MtDGEUeHDNyUmIi;N%mDv(ycVH54fC{RUGB(g^K5>N&j9P^Fck7@OrVCr++C z_+t5O_o{LyRU5d;joq(o#$9sCB;Z|5-%vZByqJ9pL6J2#(QDOr5qT14US+GPXH#d_2PdZOIuH2Zpnl$d)YW4Nf z;h4dn-T&0(0@iAr*KUKl2bO=JBOUuaf3I1FDH|Se25y^K2GM7DE z>H~pU<#x&g?|qzgDN!PC8k{TaK~N7#n2`|khu22QRXqPW-U^q3p>(?7Bp;lZ@GO_V zKDuGOWp@N10r;C;#xh0Uymx^hSlK{0@)eOjkGunI>2qWy9vk=+`~}Gd?}J`KBJi}< z+XAoZ)DPJT+dfnYJ!^?a%;~!f$XL1P3AVG;-_F~_lwYbP&6dc|^oR$hzoA5k$YG_A ze#+;UjfTR(vi@qz8_hlr>TK$Qu z+JLWFPew7#oo2l`vk0>&zH)Y}m3_rYY&Jk}gVz1Ik}BO=Z;WJx`ORuYW;hR&H!4aHDnN$MX`v z^Wr7-;yv)^-SA)7_qDoxS08^zp{sy^&GuYp2oOkLX17=71w8m-$fC_Mq>mS-S?xT= zDm>p;H7fV(_U9|pY=(BL8TeQC|Ea3IV;+50PwZMCV&p`;yh01*ZDNQkxEzr28!Ork zRg-Wm9BkJ#jZRwB8F~24a{smrxv4D7!}cIV-f`b#mrOaq7;BP5TbTr|l$-~aKLYrn z;v3^H;-F>}rhV|w(sY3PoNKtagG!NUeR6GSrZU6XkuH=LQvY5tGh_h;z(5Ag+7dff zpo5Fjhjd34xc8=pdXazJBjNLQW9vsjJ7K#?d1`E0GpK;?u7f9|GJZ>O^p9Is^Me$g ztD5&F9hwqqCi+Do)uh7!DDH=5#!>qPutSnR5}BFAYM~`#QbgL=4$S4Z3yj8whgTvf z7_$aQW(ibir9v#-6R}@6!WSYC2#7?PDTFi;|Mk!)4s(vBV3K`DEptEI2$}4O-0U5W z?>(9-NUwo1CJrE=ft7$pEqqjYwND(MtTbLrJy3^OLIku4bk*(FnU!e~oGic@g$qEr z&MxB|P-5V8(fml*@=WtBm^)ddg>8rqX}2|U=*{tv10gal^ z50$1ZJg@e^jt{V4j!IUOV!z1#tXCHKkvik>^Q<`cQ6h%`43gSlsQ{=fORi`*xua9p6&da-b=Ubw_lyxI9$N9+x5>)>{S|y%s`+L zO~68~f8UWV7i+oOM0x%DO8#hnD$IhKrOl$FZh3S6=6numb#|cHmAN4#lC7IsBNu*9 zEXvR{kWv7QnQ6oc0#1~AB%{F9Th01bx@`Pagfl^^@5DL|gQ>-7TyaDl8(JJ2TR-cU z+P%{NLpcjowb2&DhsA~*{nK>lt0r(DZ-n7Ts4VoQV946VNo%0y2MYNPqji-C_p;ee z4X$b(J~uVt``oYkvrb(c`WC}_Cp8y>m-2(X$v^9ohZ6VxLX`{TqI(~rgO)KN$CzJO zt{bfe21}hSNIE8amJ0sO&HS5#UY0%hpOWR=RJ{K;{{!JTF(8_2eW}{g9R9jaIC<0+ zx7Y2X@S78&%O;G6qkECp1fDfhX=Qq&)2u%LcHg7b!M)kBzReLBq5!L-Ng$0MCw40t z1{o>=e-ojLK>Lsid9zgHyNc_xy>f`M=77C&NU0^?jaBF#Qgg1I@giHMgG8E32h_V} zI>+k!PFrzXJ)q`QeFQiRj62XaiWRDMb1|;)X<_gA`YCl0_xDPz7=9_am)8d{_NA{d z|NPy;ce}(o7h}g)(}eHh>w_qAuQ1SItnPlau*~3o)tY_=nLTCC+5rzjS zj&XB|I|2Fc5BF;jkG}D+ixZUWyX1krUk#)7)lNr$wvXQ~pVWWjf-(zY=$oOWSQ8gG zTVO~f%FaV;=iaH77F|jfji3A`_!vMiykp4e`$@|L8zph5hUSgZcpD{OSaNSF2Z_2o zT(j5+jFWu$iQ|sf5~F9{+RY)^1ou+i3&2$7Jx8Ky$qSno4K86IDb-U$^;? z4K6k=*Rxy})@xUoF3MBeh&#D_ z!$MJt0uG3ZO=wYhr9TQIu{TZXj;6%DP_vn^{)TMIe~f%ZD<4XqUZgiZRW(VYfK7iT z=Pk@lk45{Iot|3iZZj!VLjfQ>CoLwc57}p)iiDLM6+Uii!d2UUZDxI&r?OAA1iBa} z6^sh%auf4eLLp}2(wTzBpC+a`irk?*ZtP9q*%Oy}HWaI41UWR+)FMwYvuqYzb zO~NWMFgZ(#^PR)J8(_S-ofQesS^1r(k`EpM;cZf>)b&%xSGDrLWa$ab@Ja$U#ws_W z$3a75e>T{ZQAPuJpYUK1!QavP%k*Z@Ep%W_uT6Cwna`}TyWo5cgeqrg5|$o%-1xt$ z^ZDrWe9fOk{?VC>=_Y7oz2bOK_hr+2p9}g|UDCprB`fRG1bG zw#|U5^^d{EtmU@k%ILLIG%m)3w75W*cA1>T(4_i5=h50{s@E|T#{`wU%w8;XOj3%I z0J&5YGN1n12>EWP_VJ@|*#X%og*?h$mC`6!z5KZp#Hn$o;Yca~+Jg&QV5J70vF3R; z4nA}iVF#fd-vLyz(e^?>mQk^Xf7aU5_4Dt6n(HPsSIUb*u`4fu3!`$_V~3;N|AoN2 z)@g4adAIde^~3GfZ_hB;9d1+xgyf{$Jyd^AeJJ$YI~G|aHj>rh?BL0qA{(C!=4se0 z&-S{;q@$HZ4Ty66f-CLZwyIPmsitQlZ%I?Z{4qp1tJI4h7%+8!(M7z-;Snr(6;Enl zY^c?;gXn79=I~hZ<=Hv*Hfj74ZzrI#4`7jEGk&Pp$lU_NR1{kc&`m1Ap}@ON6!7XQ zK^k3o3U66)cO$unG!;1XfZiP9TlB2kr0y44RFd<=_CvbA9sFK~M+Or$G$H0-Vui-R*7QpNPOCVhpRaA ze0Y2S>Y-kI7yT*5&l=C7rd4c z)R&0WZos)xb`8P}0t3C0{(e3fR z6a--)7I%oV=`D0SV)&w`_dl8I=L4wghD_}7hy4|*cZ5LeSklv!sjIjNmQ|*pu1?JF ztg`DJn+`!@NA0G!1tW=Thb_ySodD-h`T*F~|7wPu8^&A{TX9>Je>8|Jd;Hyy=sQr@ zJy7^}9yA@$o6y-oeXNq_F1+pnCXKU(ya^@h(GZl>vcSsy@hvl9!gg&=*1w+H3_Ab2NHhtLa^8o4EeO4`a;w08J0&3(!TY$NHJ2p0GbSfBj_ ztN8t8vnV5@HWkKQA#E}?Il$_tuuOUSqRKyGp_@UaIWO@Np&KcA|K5M$ovF?=*B|Ev z#^b|4=~qTU?3ru$(Y;U~vs<@#J%eZ4ib@I+f@giPTQi`d<*sGOxoA-V-4UoXc_Fh& z1ok%mLtGVmO!WcR`aag_+I7AxC`8A&>zYHul zeQm+e&%isKE1JoV;z(Z+kt=bMg>(-7Y@NqZ^<; zgiDJQVy_dKlgi+3H7TQLrtm1!giD&tc!sPYq+$rQP+mWuCXZ}LLNqfL?ktVLbq92M z76{`Y{Sxfjz@`*J0k*AYU*Bq63cD zJd@bJY;3H%mGp=P01@{96OB8qBN!@YSd{w z1cHyL&msCQx^J4qWqg~9;j~iRP9XncvHW$o`S&W+kBId+Pqf4sOL&#E8ef`wrK9q_ zLC{qF0L3ad5U-SP;pt4w!C7HGG30D?Gq$iP;l?HcCU~Ab#K7$b^LSdNDDwXtU=Am` z6Yte+W!k!@pw^1!vD|I;!7A?JrAS^T*Two$)TN=6i0-(_rtwZum*^)suv(JOX418a zc&#_DXrE!;SV65mr(iN4{Kx&yAqu0MB|3)UX#WLx<#0lUzIa}3x{WA0yvY7NSLwTx zSeip zNyzGsPkC(ZXILsUYW5Rd8@E@-}C_dm4svcV7tDl0aINS@bCsy9OY%DZ+0xjKM4`b#FEZVmgsqx z0b!pO>1O6Cqw#wQ6(H!k;VBgB4+Cw9P@>3+=CaYnx&qZ<(u6k^x#fAI#HQu=o?WJ& zuVoA&G;)z&ebiBBI&}l z?=wXt+O`jeySVEmN^L|49ic4jee!K+Czz-TE@9 zu*JAbx6hRSiZD?(pIF-^UXO{7d!)#ytmDAJ<^s$_wmBbU6T{+}<85KJgTsNN_^{Z7 z0kJ{ktw%B~8;t(Tm4CFyC`LgTCDQyK1Ni&*m_Dsr4!^l6n>PJ*+3ag=^YZp19Vfp_ z<-1A|c0Tkb=#SabN28M)^?+urtlpv$@Rhs##UWkT^8uaH7E|LbkD71gE@*m2fi>%c4+0aM4EI{)JP)WxRaMN4 zl3e|6O{Rc3Yo_l;{FnE!!tYYn;VfOBw*@Y#`nICIz>Pj=Hm#%$>xeG>AmYcs;@@^9 zCuDi^$>u{`uZq!MNo`Tw1;}EDv+|iQcG1tKdiPrKjH!^Ea;gOE#&coco#=P>!vx-I z+oJXvi)C*N*%~KVmNP0`E!~7?gn;h6RS!AcFrJE;FI6M1RZ;cW6J!C5ulxWvg}}ek zQ{Va{kO3}e0%Z|qMF}isNiKT?xC1taf;wvW?_3%iC57 zH&}^a)JRfwNxRA3fAQR6%sB0gI8}mHMF69GxhMumd8%$wB7+Bk+8YzE-P4VWk>?`I zo52<~R-iTBvZH%{Z!#*NNN3x&YQJ%<`Bq~zVD@T)Ul|!e%E7T~#M1SiEk^uIQcaBF z_qeRErK!C}*;pcpGX8P&wk@VvnR@|CLvPJdchT^(e9Jpc8_e&Fc(3rNnHmw%mAeDi z#5=ol%5HbB?rPoFSOF^s*ksgy1(Txe-bi0!j>!C&!yA!JvoD)%)RM&hYPx|*lN2ck z5{?)S{jmk%d;>y5GJ}4s198DVKuYI!Dt@w-wd1~tppT{4p+b~JCnS&olQI^4RX4%1 zOSwG-2B79q*=?uU{s#uO8SLf#380PDdX>XRq{^)_WvP!a{onp-ovLs#c|)|A75SR& z!FowkReh|(ucU7HU#}f6Y8L_A#f)$VRoS;>EdKG%KOC3l-)=WeAfLLLJV?%R6CP%v zUaw$V^?%7KSZl;}9I0-yo?PbKs5rd@qA)C~`=ciS`T}&83uk5PWvyk9tpO6^xT4aQ zI!g_8PQ`e?I}_>zvkfn?f-wGLlU6XBz!?S8%}@}_$!&PFy?C_AH|a<#GY2m;~> zKY|CsUT?q{`v*QfVgU7qm7f7!9_Ut*i>YtxVPNkzt#q@GEGKF8^)FD~WRn;*1gV8J ziL*R@Y&w@ZZD+i^1uNmz8|<*nJ<+$zXI=GHK6GP zjEAdK{8GWpo_z$|vjHtBG`-y5e&jt&BgvqznOD32j)6q8jSX@z2*)chKmc%A>dCs*hX!SsN>R z!(Zx$$c#-x6JmbDSCGB<4$Y33MS5lXZ^R@M%$l<8(;I;}WAqXQBoG!#(+C|Yf6E?H zzE(VO6;Pr|U}fIgg5s3aM#{WX=0LZE zJWjxsGGKPYgB;say4Ru~Y1Oo~_{ySCE+Q=l=uw!_4-~|y^5FoIw{((kv1+6kPr(I< z2IpQO-vd@9k7Z*@Od%VfFKkriCQh+h%$!i-5(Tw&>Jy&p2;XSm;ms_UEUXnKL2_iD zw+38{rOkWQvs2$NRPy@O?AG&hUh$A2boi9y=u;0JL;$$xnFrL-6R_ctrVscJsq00; zknxfmsBIu_8lg7|ipU;O_glE0q_YD~Dj(;n^(#pcm*Ce}>kS@f*H|ynm2fs?c_h-o zI>-3Q_l@RR$)B$(KWBhR7i4}F;LX1E(C7QA{?55{uo;0AW?%93!lWP>;b4I3;R5Vvl{Fa&}&vTvjU#*WFFb@S&hX_-pgWWD|dB5iV zo+fLTn^&e#E=ITdNDvG*k>m|`QtN2d)u{BQS#K>m*vofu=sW)aR7IZt`q@K924q&W z>|puizsY%Tsi!}mGQHLQKVAEuAfNF}ReXhYDN#gJtraZ-+)l$$@34DQ$z@Nu-Y%gO zc`A$}VDx`h`Z}P(#k9vB)s&><1{y4oUID2S7IaLBsz_oM-uA~li@gax9{5J=g!)FnSHLK=bED+k=tA!7t0wL)8MVaANOu z!Y59g2j2F3Z?~uUzsf+(bH>_}y~SD6Vb%mb$(gLSA(nLZ5&||E!>{9PX&> z(xl4soYc?)KRVcobocpbDY7EEQ`OWqq8wvdP$zyiq%j;7#@$BqX~`;?J$<$AyZy)U z)976m+{3?4xsoG3F(!fr_^rwu8YU@b1PAj+hn%x15uK#dKMLP_Kmi1Cuv&CC^-bka zB^p-Y#6`gAeFXIMa{t}hywAFA*1mbu<)`9ph2@ok(1?Q4ye!jWn@Z8lqFtgs`A#lo zD~OWJ-mdA0OWKzP8(?{p=rQ13d}-YT@bQzWtrS{7|v=5AOOsQK`=Rr_7D z`kI_@^d3p?r+3|M(MHBlKh(cG-jsS2Y>oDl5d|B@rJ3vNay#MlNwx_DE`ba#B)EY+ zChkB0ROyrwbOs>ACv)n8jXS?S3I?L@fCbm8mj5O2pwn)^En|?5qMm+tT?j|eU3@t6 zooTouJ#=v|0!Q|myXDC=gd1>lu84m{PH-84J<728m1o1(tHxxc*1wyR+2n2BFJ z9X|Z4p~PPQOYwo9Iqdd`9#HII+cGJaTJu{<#?V*8^~Xh1xBbLE>s?nr#qRUwAIfc? z3$0DtY@B`qJ8l3)1K@4JT=zYz%tc}ykGB!RWy@KMyWip_)M`ffT9X0$u4f%ILx61Dl( zND27Ibs#Os3KThB9YDqs^Z_n--M%+A4l?^s{)|no$2)M$Aj_wcz%dX}sLc+GsZD?@ zqQ0o{eMPwR9ou<>%Et6&g`?VWTmL|#kMvH}8sfI&Ozo_L10=_HKnApTKtiYGIfWGi zUo8o*cdj4^><+v;undt=2EQS2LN!DBn|~4A1d0v64~>k6Dn@gDp#1gyW zS>M+6Wp?Kds5Kwx56O`S;s9?s4DHLt{nHAQAt=Bxb`u|JBfC=Uh=X&1Ov>g zCM}M=fgQ;M?JU2Ll{DHMV$N?Wb`RnzpNGMIH`WuW2Th&HgCFD8{4^#-mO zS;xd3sZB|?MT8qom?L~%f{|iH{~`Pgx<4D!ertUtHa}rx@0L3lV&m5RfMf$=2yxK% z5;XeYsc2Bbch54W;jiS2Xeb^-4JX=D3Bw*|{bsU}r8&nJxBc%BG3^v?AY_PB3bW~y z7U0)3foTAF*ukp8oqV%q*6=S$);A~07Gd1}PsASL$gj>j_Ld{>oUoKFnUS6%1J>V~ zrfT_>Rym_;ULk+d9D7fXz0omRgAcgzzjU3(1hg2N^(_MNk8y6!R|lAx{^_CSYn0d@ zh*WixPCl$n$B}r~&T3l8?({MX-VsT}JM@f&UWN-I;2LqV_RSx1rPzz8}&VL z7lQ0aL71C`=0C6#ES-flub_kP-%@ln&{X6cFidQ0eaOM!LHsr39tBq`L(PrMp|;?C*DCt+N(?!7%f_ zdq2;8UspUFvx1T76`j>^MDSlkwuHM|6?+CQJuW>W1FYYm(I9~3nWFx|WsQsyF@p+c z0o#zb>3|fQBurYc`PW|a8sc0I)S%Nzw-8-S`J1@g19tGXUaO4OD zgwl4R4TIAC`w)T)8I(;n9<~)$4@*<_%orJkiRzFwU!vrnfTc0VF>!>CksUGv|x?= z>M5ejsZjU#e#WY0uC`sajzxMDw>&d<)Z0BNaqggivNwhyqpGH^$yWmJqsBf4{g63k zp5n)FIYP+hHQXMbMsjkYO30#+Vb^>S`r1(I?9@3d1IzV6S6ccXyDT6{= zmn2Xs>EApsyDVP%uc#K6K`Z$ zq5H1M&*JrsfW~x%E^Ol~W~V81NBbmiBAeC|NuJ72dV~09SX+>&a)7O^{@xXf%A|t;KzpXZo+u_1}d!qGcX9D?L1f{m0FiXbmI><=f|iUlHs@ zwHV^bF&X3rh~G>8vQ=&(OYd%>R=vp!tXi3PbC7QRCpbPag~o?u0ZN37&7~kL`BPZ3 zV|tEc2tAW(B-Etantt1SSc81yhNdmU#=Kf-aEm#;h+(O2qb&UUbCh<%jW_J_Nk0}% z!l8D!ff65)5lXDtEg>m#$k-EF1Nh3nskw|dPdj9deNtYVkl0LBr=0p%lTS{|#xjbu zPRzab4=Y0bG8F&eqd()Hx9Z7hPYKK%8%nGJjK>77jHcuRmnuJ{Sj#-hC`6y1mhExH zF-TkoR`Cldapa~{ew8T}eTBpvP!?sEtdD0n`_P%X^(I*p+gnpqFLB>-i2EoppwyfP zH`(imEPdBoCU1T!<3gIm!sLTDD>=W*Bs<=dp2$;48AF1IrefkhCC&o1hOe4wuz5rk zQPvlO3>3Tq|1@=lX}Kf}cj<~U_wtAp{8!g1$Uloj zBaBsl{Jt?sVIGY~ml?5F zF){abHhJRMoP*|YV}l9xj8M~WZ@=ujxW0(dyPC_4_}Q|2t)HDL+J=R_M2s9L=$<}E zprp>AWR6XgE)lY&6u^+SN;Uw*CYRvKe_~?MmQJb|+6~XU6|MgwFL{PF9MV?)GUd|o zUc=V2)XZ!k2rhj+7PW)4usEObe}*H3*imoF^AI$)1ZBnbb_} zmDMJA?l5pPIwc1ZU$kqrF6Bc|Y~Ai`UGD5$Z|rJ4s?h9il0%V<@m|4D+zA4xf)CIY zrFWq!Ots2JD0#LJVsO3q7M^6AiwR%r^#&urPAGHl*+#Bf2SwgraKfu#;I zLy^uTm`c)r?Or=SJi3mES|1(p0t5$35WQ=JUf34#9{jgIwA?2Anttyj?pvYTIZSNU zZzdb)H;JwVDhnfuN_qCpF9k^OGXe$(5TIB}fw#LS?2=Segb{__C;kL4JxgGDlI8hp zl;oU;8E>YWCDMi8gLQp~EIMafwuQ6XqVp4=1{5q#CJuG=aNM;Zz!%C%1Nb^o zdbKy##Nth8TFfGJkm{hG!_%cW655{m(^lj!*VX@MeP7pgef>$ELYziBZJq4-P(S~g zP>f0Oi!U$m-bVClA>yNM`6D<)R?-)FJT z(M8h#%l%2M3cJ(Ut;tVySE=(A(@Q&{Z@cK7qq6Vw8pUcUTy`VgW^>7wsQ*+Fr_+d1h=c z|E4bz%221G8L?5c>HboEMYg)IO>Zs^WLzMb^qE!qazcCBrvz5qf(#}DS3tx?y=2-d z5QRF;_{t>TuLO|zOb?(8+M|UyzJu_*@lZ(!-TuIYC;)yFbN(!LXH&8dN_3*WIF{G&j3*DnD$z$aoau5`B6xZ|ndM6veWsaNhrV_TL zr{Z$O%)jOHHabWPfC1T7rBh*U`&8qqrSP%y%C+Ycio{yM*nPdtBZI!K08;M&1EFi} z2PM7U2bTak$PC2k=|*ZAy%ifI(bEh|;tfikSnF~r1WxJSHB(~R570~2zh?a0SXX8UF68UP;AHj`TL~~g~LaIw)^4Ut^3K@`JngX2l@RE`O-b{=MkGF)8*qt zJO+FXhVIunPtw$~8zRZaK6a}Ar>OssUHnA#8pXS2Ay?+Rf?gI`WJ`1( zNKFiJK5tDp>Y!)`P&<%mFPYKf3>ie#e(iCAa*6uNY9-K_2iv2j;z0}sLBc`O;- z3xEE&0vt2vdqh{tBve&B*7{ya{leL^$IHDxV0I9+wVPNU(w{w6qF)78^-kHH*z_Qy zVGy^YH(nR1$Q9GS3=W@j4pTqezqkeP+hcC|r=-IGpk--9;ryYp?=-qOzOGDcan~{b zf2!@~FmzYZ0tm`fb1N-K((h)7hVq2NgQwbAHuPx2dvQ9v;P)csou7xr-QPT z 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 dUedKjo>c7bWk;=T*A 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

_+?U<=<14uaPrz2r&bljd#0=Z1+VRwXN-x8k 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 z%0A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

YkTOg>Mn;ps@hv9?ZPYX2P^G`PT|MsFpzhv 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�lNiww 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 z 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

91&FBItR7OoilWFXv~qvYh(B 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�xzXP~&RLlxKaz0Kr`$x@iZptrH$T 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%0Ap&ZFe?0);{*oyd!~ewF#alb@P`In*6Ka$ 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

VACjtEd8jnM6Q9Osb(Py0dXjq? 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

OQ)DgBIKt1`pX>HF|ZK^ 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

F;!%MrxAjV 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�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�U9>%G z8!hSQ%g!1MjxDTvM*e%|LPH#R%KjHWM$ji;LDa*7Y&OCBuEjV1?`N-c6-m-0NTLfc zHsW>?IPCoevl1OeGEu#F>BAT~PXb7h#SvT)F~mx7IHB_S3Arm*VrCfl+~PA=PKFDY z1YG>wnBDWH{O88K`9kMKUP!LJGkce+2y(+n`rx93CA~3T|2&9weRm67z3U9v+6;O zmPk&Oj)+c^F%#oFj3M$K+gi#7>^&hjufiROu~CSD1|_3T`ZXeFBT5)(F_`9kzX56& z+=v$b62%&zLt4T07(6&%QJ&v(efm3m<}rFx{0NkLA0=E%+9QMeNa@jXCbd{2Xs3NZ z>KS6}|Em^w-A+e~CnzF9>3(ou*4&%t3z~-6ac-#srR`>Uc9E%ZgF(qUN342q)Za#p)m;o=;Z=$qAQg`~^zP*7z#v-U7H8w}P=a!5bQZNTc)@~x*ZswT%I9>u{c6D?|sw-xT{KrYN2_ zY;se#TnzB#s23~f7ppf%g!sRkjb9JO5NYO8=S&n-?{nl8+E}=EK*UAIUcb-oITC=o zeHy=g9j^;_W$LU3qhT7zPbh<|^xuR$M1zv*QUw~zD}=o@5oAR;=Vy~D8{C4xKu>04 z6Z_0u50sgOLuh|}0y!$pAD3F6u~NAKHwZzsW=29YK-?%~i8}CX(m(z1MC6ub+1BY) zu@H2IV!Ci2r_udTzN0|Tqkuz!6OSaX2ibxi6H$j$!TzW%=f%uPZ-Y!74-7=P1B1$D%kpl60=5cWvz zes9dSZMRBBI|WI98#E`H3)+kPkVhF}Zu-Va*dKaO3qUHjJDIaGARJq^6{rumZ`1+= zoa4QdN7bM6icZE!wS;eLtYP9-@N`Hsw@EEnAPhBrK1@XbXoS6Nh!C zRWMAcL@J#!%Z*9+y183wUk0HYwm>u*Q)s`uUg;_Ack9aeERn0?qE&c(lvKm#IWD@n zyR`Bc3G9HDxcnVTTYx-=0apd(4t3|oG4}Z=067|(k`XRcl&5*n9fBOca?nQYUy`+j zY`y9bzm~b2jz1@Gs=M3>OIXfXajrAix5K^Mz5s$9`Z~skciUy31ZLuvsm=i zko{I0Rw{0rwE{nZjccS1kf<>`9d!85jhaE01CE&f4}Lw}Dc`l|JdwT_h__l4y2_9Rqp1g$6)<=nj@9Wp@vIE9J2 zhqd?8 zTXjj!tep;5U3TpbdghNzNN$NNhME2OvK*Tdh91YN7iB)&m$S0xx~d}nK^Ti3mh zdkW~G_}7g@Tfe@I-ZJD5ox4Z9Z}uR;?Xi#us&9j~)o%RA+Q=dYKWq9iyht&SZ!>k_ zpabCO)VMPshf&~E#5;V~ZqT^Vp{m3*@U?SJUxXBY%Y+7OfTaaY$$W-QNkT_4NQGla zU4lb7dF!twFUBPL90x;p_kn%_EabvL&zQ$GVuAf0YV3eJ@)z121DZvt;%R27M5^@Fe-TE2nx2?2VQGVTSSIm zu~efs1Lk`iZGy56?q!$GlDBgF&@IG?a}53AB~+*A>7FgxorGp{PY9IECTxw(m)w!Q zbPL}~tf5eBwt<@EZ5^fEuaA)4V$NikU<_^c`Aq)?dAc0R8RB94etC?YFWD#Lg(=HM zMsyo}=8O0GVDuiFEuo^FwMaU>sh(nwV5UytWkEu~4x2PwChUhP*U#M~zfj7K6~Y)R zOq06Zoy8BC55i9uP)pkgX?9!lI!N(Ofnp~HsvyQ}EP(f+(PXrE5i>SyCmJcEMvKx$ znKIZ6JrhhP@&kh;5~}8D1KvJ_=oTl_1pa$DRRMEYgh&H%)-52l%^Xr>&oVJhRm*xv zt4d@J9Rq`r*jDp$@~krS;HXJv$~^hz9twfb9z!vF6mEv$>etW)pJ|s1SbCPMD9M*N05_%kSi`JSavt15a{K-6aa{HvDnnP*WYm*J&)qb$s&$uBUwDLG8dxE#H|g%WGPUw!6sjc zYye4xM<^V#d!G-F{!{X6%Wwx0$Ly_!Prjn}Mj1gA=_j}q$s$g}k+hkdAb5iwLd2-$ zwZW{NIL>fnRi(!;BE5zKg4ujc2h2e-bgh7bp-ZF-M1_0ri#QH@!I^W9)Wuiw zwhOc4nKCO-OHx{3!DUk-N}VOIMvFJ5iXjJtXL1JR1|%cGiFmcos~+bUYxN`R^b~Hi zqJBpZ+c|C@*pi!kxk86qW|NT$xS5VYt?{n~xF5~|Uea`~%9@3`eU_)lW^vV8LKvlr z@Fz}p^VsS|oB^W8hM2!X7Vu1wa1s~Z!1B@@C_Wg(M`x4g^6sh{6_!M|@$X4oa8}0) zI8GgBb+@Ve2UwI;roR3GKf~R(WK%C=zN((L1%$Sb)Tvlh$fY8SDe*m7ysm|gn0lUf zK+};Ga`bqS$rV>^fjJ$XxT1}}uez_^j=dwWq7Wq^0!6{#h9h|2-GkUbx)+=g*?R62 zYeO^7y+Yh@SSxlajM9VDU)W^oTp~JzAZgbOuXsk_JhjR-P)4`N|H=Ds_-yes22>}0 z$9*o+lXL4Qj^a6unzi&0ZW5v$$&_Ki*RynSZje@Rrk*JYmYbLd(xz|T2)zWe%AIIfYR%_EziK(KV|i`v;N(-!6Kn1^}(0% z>~U}`?V&pP(YG2`s|H{E4s&-|!oWJLcLi{LV^O@3pwwdWy9J}FWs&5f^yhg(sV07@ zW@gz>7H`48IiBM_-Mmj9*SGtW38gd|;TFZ}SF0A!50k~U@X>kqM~XfT)L!~)Z_S0z z@_ZAzlPh4TPLf4!Om@3q^0J^uyAi<9*5BH7PUP!0uKDh%xzXFo>}4}UbH%sZn6$|a z=&=YqW0=CJ6&de&EWepOXnZQu=&3so_xqjkvc})E!rrvOdEa1kZ1TCZ*?DVVEt9*7 zBn*n%s?Xn-S6`@DjScNT!AjXqK|iND+0PlY3%kDEt=%3M0K)>KH+Cd6wkwWuV5j&K zTS}DiELRnr&p&Z&}Hf+W97D~2IHjmhkiT1 z@9oC)$nPduoLcr7y>4#*+l|4Ji>S0(CjE!SR|e-Y9qKrqXw&5?y)-XA z{IH_GCzL|{B*r=Y_wibS&2@j1KCVZnER7}6oBBfxq#)}{LHh`nRF+A&_U zeT<2b$+{vD+eP&id?@{!)w9<0DYz56*F2d4EPc;b_%j)mz6F*Lf-9S}F9EZ15GMnE zP!~VD>*IOMulRQ8F-76OLdX6=l@)tnbvXWAo7y$ZP!bz2(igaz*HxnF5kUGO6hLhF z1t$FPa(d0X+d>qEg;d)_oEgyRmr1}We%a;}d`@po|E3XWPjz*tD!olk<5++60NO3P z{%|_Gsyngk?q4pD<2ax9@7Dk@M7t5YBV57@J49)T1jLeiWp%KwzqJ~i?s(NYPn|to zEAD(AuhsMs^}Jq22#91$5Agf(uf86v$1+)L+_HRmouA!r6DJG>J3WwJPT$r;=GJ!L zQX|>m`J}+OpCB6^`k)tBuF@7>&Xc|bpE*(NmMnp=Sk{HN(df6`z3>P)dXFN2Af+`(^Q z%0EAT%e0at{Cp2fG-3a6X@Ko{U^?lFuh&y<$=_Oo0pUvVvNJf8s{axp z^1sa}s|I4M3*zqa<3etKqlo%xNav~fhdz3Oa*l*W@r#uB?2}l+9_jd>uvTe1-8lFYMQ#bA zkj|{DpMUA+`{Je6dL$2X8%dm{)5uamXJ`>qTx^T5G{4^~ysF#%(DdlL%z4_v@8hJY zvUmb!3>L&Y8mfT)K*{C_6+2P65z0VF)`!?aHkqh!V(%H?z$D#=>GN)!dAEmTGdS=d zZi3OGMR3~2&!OCot;7i?>_i`xixrLoLrN;JPheYmwjcF`-!bae18`ir%3|IsNNGX( zes>U^8Xlf?Rdyh~%0gKESnWrX*?nKQUMw@at}s{g!>N~aV^?@C_Scs1j;1?_BrGol z*Z}K8mIDm;2~5c3o`f1>$T&5mfY?TWg#1g{BZdu$Bz}XJ^8yS|Rvpa@ZDW=<5E$&` zR#qr}hFrkaH-Qq1uoKuHvU4iSl=2EaYKN8dK1Fk5FJ8fe*;?j7G;4UVHHa59=mQQr zzDo+Zn2TwzZM=R6j`BjQF)W+12vVH*1S}I};LEf3w9HH&rb)2xrRM~@MJXMl-1$*j zQam9wd9MQ_V=A^tZlX~v*g9CDwnGt$D~jbx&n!dhXwZ>#?Ha2R<);bGn7u~LfW8$;pmSjl5H$Zl}odVcEP=;;6L3AdEelg@5 z2q_&W22RC*XpSD9+6Fo1W8^Og`1QNP@ zCedHJ``!0!b#&|iOh^22V-zjZ429%NfqS!IyTz?mM+Q!`;SP1&^cIu8BtA3*Jb<)? zH?0LJCT~8xW5*pxpt2f6IOBJlG~;Aic+IVmV`doQuc;MWq6^QwtEWUzS+w+laD zl}rO(Ez6T1akOdYwd`D<0^26Ux?zN#*?+tc)T~*o30L{V6(0E;@6yTd)E``;d`L=k zHL4OFsMM?^SfUZm`Z#LNvvG43vqbAd9bKBh)+_R})s8^ygjONXBEeWelD90#rd7ns z8FCCF?B$doGdCl`pF<5cO*=IW?22qY^Ysp=y`UTH%lkyI+*18NAMQY9nrVMtX+uZP zj9e05xX{!aaZY%2KWVUfQ%v3tvpvS0VfF^i}7imqz@ z>BPz87?m`Qk`NLjV~ryO3?Sj7>ak|7al)RkK$-Te@Iu*4s1I%{^Jl(Z3p=U~dtZ-1 zO^@XkiY|rSz)c+{fy28*YQg!XmTWT4%1cXHmEB?1H-LmZ0NHQ9(0z~z#! z2(>tqWU0|{8yP@NAgz28>ahkrz48?)x)~#Ka_dWhi4ntv4ZhG6pcpx*$qej1l}VZa z`Jo~qF)xpXubfxBSL|0T*JlmKGGjW#6d;L292k(t%{sxgNe-W$t9nur|F>T*EQdyH zLN&Q2Qd3P9j~bA(j3Qfk{3;}Ek#wp1-JEo==x|g9f{hSWhN4VoA#{$geQy1`^j7Je z%FZBWeUoQIp?c~ohVOjF$3#0azC?@4ICzYf(W*|RWJUWkg{@Q~+G+M6hMVZurC!ESFb zQT(umO1CYNOPE-h^s;_JbM1V`ltprvQ)zmn`MLAiS{zYzXHo!!CeAs=zrtD1z7U-L zTv|Sfh`mI|;Nc+9>RZe|qMwn|6*6Co0}xp>qreqY7fg4Oj8e=WL+5gsP>YHz`z)>b z^7Uh@F!XCwZljyw_Fnq$S+cn8fn3!9G$2b5xB%E4iJR`9P^3Zr3`o@@fok;8bkYtz z$2?S-VEiK4(>7%w%ZR1eiB7W2-dz2+RdKo)FKS*KDIULv27?mUlykLNN_29^LG^M^ z222e>yJOL4Fq6CjSMr}?3&hfYOhl2Z7qj%V8*I*vrHMR+;P^WoZVp*HjM zusw(>18$a{Dn4+X?QdaJG~?Vm+<@+a_iG?7c@3e#N#WIVa$6O&vOvJnm##))E*+-=;J!kvz%a-QQ>EKq?hUvj0qxqePI}8*MBi$(pUV5(VngQ* zO9yS_R$x{X*5L%VvMn`=m}dDz*n~eRsEn_38;DHTM|#&lMk_iIK(s=~bJ!3++D};S zk@%E%?pIkjjF)e%FG!fGkPPp~SRb30Or~Pu#LRxha3!PmT{>jnmohD8y;SF$k_WA)Iso35=BVhvAk9b|lkO1h>pY6$8TaDB zxCmN1hk{AFbs7Os9^ya$Q7BmcqmyV~qUq9yMlqazkZwH0Xs`{^o7^8ef<%teAeK{_ zh8!Kn#>ZlebuTR_PgW%8Fp;vM8)3piId7B2#g@dGg9KN1S7HM(V{c9A={xKAfD^*WOZ|8T6JD4XN6e_In-=W2rrN4zxBvHoC zyOP{nv#m_R1f1X9jvg;3uXinZB&FG_NmP6UL`o?rhwWc`Y0?hK_+c;+Y~|1;zo zB`ag7%fo2#@{c{$xRS+L_KAtHxOo3omOh79ncFkp_!rr7kPSF2rs08MAtkrAh5e<; zb{~(U+`qE5K*N0gi-%YuWiUDWV%h}r-CNwYPTWfQg$o>^SN}^NNjkNbE9L$!r9k30* zlPdM|o@3Y|m%1Mq{4??@%LNotKY`rd@GJhCD7v%($;-r%Cda-mm8&^4^Wue`EWT7x!Id?tGJ-uG{kgyPdKs)?2BBY|nxE3sC+@MG57M}3}?K^`;%eCC1 z?2qBi(cRddKjG9dW#qBiecF8ShVF@+){fy4?lOv2^#-zylhaC0U5BcHjlV^oV{f zFC>!pnCYznFBiXev`TCrAxs;;uJO?tsD`(MBZydF)Q;dE0IkGGyi_o}KkzvM2`}{t z(l*>qp0B1acl;`%tYj2<7G}G1^`M2iqP(8dkcq6*1sp#oN@91Nx^|9SdVAMy&wV!M zI`sOmA3=L>Z@NNn&y{<-|3lb0MMoC!%RcU~V_OqWILXAe?TKxBV%xSkv2EKeSi_S#kT`&ZG0cB>(Jm*c#s_#@!HXmH--TizH=&6cj`*E|mR)({Wx z%sdWQJr-6zq7$E+shwf-{b2Am*VVB2rO{S@b9?qNV&zo1Vy134S+$j>)xmsw`u1{c zWt96T>Q7Tl6+2SRB64@-sju?ddqv~Ro7#r|;{x-7tS&SHAHtBKlO} zYuOO|vLgED?Qu47ST6rPkuG}Q?tH|j8uzWO;MzfQ#Zhp>d;4-N3x5H-MlQz+mw$=F zvD22RvYoN8;#tDvdM_g9!Lexj;jX*!?rX8W``~ZRV8EZC&gm`A%MOO7>(<%k%a1NX zY;M;>=j-YF0{m+_JULoIlXI!Cy7q@=yPmmCcapBa3kM|3yY#^Z3bZX>CybN7Q)|*K zrcSnd{n&Tc^oKh!MV%XwZ7o<%whX%MZT5R_A8nParP`%(?4S-6JpMTlmV#=5;rnkX zP=$ul=rox%-9>sNgE+erLiqaib%T*{(<3+tvq;*#S^=|*cpOHZE`(3@%?QCg_J%8u z#o+dmQ3(B~z-bUN@%eK!p0kO8r}L+Cv(0g_?L|m7n@X5lgXx1?Nao;1^a?Rs>_(`} z4c}k({IBoOsBYkld>N?5=Y^1-vKSID0T;Rzz|IBzFL7DJk>Z_%(D3h#wTGt`-AQKFJ@%o(O41Gip+@eoVkcxcXs3X!?1A8tW#Ies z1&jCZGU)x07(HWdrZ8(&9Ho^s{pdSSNtOMy(uMoImZc8e+}I?qg+fi%>Mr3b;iJe4wowP0`~QHhxp@?gB$(`sa@&v{JD?pcH}qf?9W4< z2?R<(aC=3(e>~fG>57kHe7{XI8V6#w1{Fa4l-UvOH#=1VVsJQh zI_%%h?mL@Xj_ta6=H4h8d}x{sztx#ruM~gfPCMIjE?t2jo@_BB5#U2%Bl0&4PsF-k zZIB$~(?bnR1{2%fJf`U7stvUbAYIG%`}0_NCC7-e@)R7AVO81dF4P{w0ul=74t?(r z$&s~E&sw^(kdGa0=qt2`CQbE(0hHdF>26GhL5CP-;Ceq8L}2Q(?8UNfvGhEZ`EI=1 z+y3Af($|MOvxTPze=*Htp)^Ka3%*(XUBD`m&?n?ltPcU<)O7DpeDK(eK#xqT^B}tdft(IVmD3=zc z_@4(w`(Nfw&yPrNG8nIg-x!eLCy+DWs?(o=G`UhV=>k$Qc-L^R107Bpuir6>#ZPPd+> z=DwTA*b5xHkR1OuL~No0TOA7BCJAYvFj-=24bqe8Kz%IYA2iWX7=6bR7ReRsJq z#$o97M_YYs(ZN>xRpmAK5tw|Wj~j+}Bl@u5?uSlS`lK#%MVBklTSxiDu`0F>R+;K8 zt*w%*)(ifF8wz-%UAt#bY@cyPE<;YDOkC$UYd6IcAXVH~`l6k65Y3w+U$-VGyq7OG z%KaE$x|(n@z?nGy4Vfufp3+WcyUqliC(Gh<)tqc^LAq*Hs(VX0d~R@MvxiYv>d&2$ z)Y5~X^HWlV*(_OcCK$Tug&`*$musI~4Cr8ZPmds2@6gh5kvOt;0VyLon!;B?%1FfZ zW;_PR-gYHq?B@1D`ouXuQFHSioL9z~Z_W(MGHpxZ!IU$y&xbrT1Y zAu{%lA|MH7{apjJ&3|JAlJi7`^{p-G*Vj7BkvlTrl+ax$uSYd9NFw`j((HoSDBNJmUbC1)1?oAqFz{4m> z8~y7jgliLQPPsYyNV^gW>=3y13prk=-DQZJb{Ch#GiVfweqCM5FhB*SOYQCtiarL5 z#^+med;M*dw~HaPABBv;uT4~?@BTCJ)86^ysh6AxpWvSu+4{TSrA>rwjkwmhvE@x- zPtM*P+y}1}Hqh(9-=j#_=Wh9TiGS+yy#a7SQzBYd0+x|UWFfH7KZ%eIG`ik{h!68o z{jr1kc&;8vSo_0IU#3geay8ru8?<<542kg5KF7E;t4|wOipV}|KzIyN@I{~s4 zw>?EgRl~z;GCwxqj!tYBKv?^=H*IWEyJdeAaZs96@M4~Hhps6~E_(8rB_Mj^G zxg>z&bU2~QjOUv}*JfK)X0roTFwqe$0pz|>w$NPSW`Y^ zD5U(2j5!WNntPWPWz|M(LS6<4-+)7xFkWi+=^ae|#H&Gj8U(syAE==sJ?wt_h!_|H ztE+IL-0-V?gmpwrD^p!LJ=ixOWXGTo(z4?cnvD#+tWHSUYM!@;jfiksit-UX(#TiQ zi^2fcb$@Mltw%^hh9;-SWI0ACGskQHEpxXJHr(`~!4?(yCUN8^BEv!GSeQld9546H z`CA{?y2b%XM1Y>6jMd!R>l7c+Um_-o%5KJwzxF>Xlc=)6xKX(MzGHRn?-LT0mp6vz z!SG3U!Xw0>r1)b%`{cYl4r1NmhE3HuNIoDg^uV51p$IxEjgQQ28jwrErU;qlg2T-o ztWcyu9)1)NYYh6cX+}B|O~fIF!BQj^&SfX+ zSH}Su`i>t|8!GbZ((cgwYMGbgy1UgQs6>X!AZbiAmzdM9mz-pB@Thvq)xz|ERMIk> zGgzjaIbGqLrKN*DbPMWYV}Dr|RKy^}TID)5N!L$xJWdQ7h5*>RSU*wvBuUbR3NQme zUjqFeb=gO?HwX~>8Y?1n*i9(-UliPAc!+K}J9^;gFHM+}f}R=}U@qPFN;4pX7BqOo zRV*A~C-jIyDT=ru%NETwrnG(+7_&7>mq#J)pY?KBuUJ&goP5R#l^{iabzAPfZQs=t z4|@Sx502yXqu4?sztu!VLi2}&Q{q2-x}Lg}rzMhnB$lA_#p)HLpgaf{$>{sD$!8jN zP|bSiVZm){D0jUqo%7&j_LX;lR^D_UYEaqCGimM_H+LdQn&n*PO4?=0SM3>N2#7sX zlv&>?7Fq8z8XX%%@arIRHn4p>An80i#Ns`u!M460il%Z`o!uq5NwV zyxhoLiL-2jV%Lv?cJYf_C|SYnlLXY+ccE5|PB)wLF?~MQZ7bsH7g*szflQPKI zUM?@`OoIE!SC?!rtJXHUj!xtw4U%PWX@t)XWN(mOWHt@qbm4j3^#^;RRLUOVyOq?D zuXy^H2Xx;;;LVB{f}4k(PTG-M&ni{lIiF&<6kx&6Z~Ha`ku;uQI#BL>W;j{8k~R z4%LO~=6I3%yB|YU>!z+d^Jnuan^Sk)q1;Q}XXh(nFDc^oA>&lIiRd5TQrPuAaA74^ zuk+c;U?#L+JGp=R8JhPR-qVNf>|KGYR*UbU&GEqMa1@&niM+4T-@iePw^56=UhQZ5 zGE?{RkG;}cRYqBF>zub$t`0{JpToP&ce;k_KhqzsE^kwhr$2v|`gZW%Z)B&pxS8#= zO!=7SzPo$fZ6(L+;lKI*IrCOp{wh1!4*cMrNVR3i>R|UeyE~{mn!6azk9zYTXzDs; z`(?4TRj$elsPt5(eOID=OPF{ECOr~W_0|}zMK6>xFzU9xw&s1BcwBE}>@Bs&H-*g2 zMDOcmeCz%p?`@m@vdHpUZgB8h^PZ^EiiN~-Z5{p(450BrL%=tdTF6ED(8p%G-Z1rZo zRHj~$b`9@Dy7{)*uaF}jxOOsJc&KyT)ET;0JH99vKMVMXP3>L|XoF(-ECoLXtLtg$ zEp7%^gJ81AgL-De;&^-Vo3~x0B^(FmDfElUUKzH_ zn@FF+fNeBJcrz64Kqw-dSTtlXkIl)4ib~pnh z^UP5>(6RCl_V=N^a!%vY(Wv@n`}yi)F7vNhq9PeY)46A=>s?0peTiZ7^!YMpl6h1l zt%1J|jVbCmS=}ET2!vV>-5~e!=z(%qJC`4{SV4^{`go}$Z9UMmufw0!{ytTg$-%Z< zM=9hVNP48lqUQRFhPcFoCa&yJ7tm5@AUI>AH^&5|*bBNd(D=C;ATwzB{g)5qc6YKFy?_Oh`1RZQDybhAvOAXR$D&}ufNDNVw?^X&Db{i zbsFNdm?1Z)NPXRphxo=DTe1gauW!*KFeFE@;5bEIVYVQkEAxTD@jfk%|mCv2og(`#q~ zH?}fQnETvAgKp7U`kxUlI^QP7N^Mc>2q8&V(aU5 zxBYC!?bA6MtsP|s=HmV^j!wCF7Jme=K#HVkaw&IH9;EWDgdOYW?hh(dx?OT?owih^#7$ShRf#PT- zMeTB@Z`HI$WaBff?4PGdl1E|7OBsxKfF=l2PDe4J|~heR9IP8VsCUw z%{_T6Zj?Qk7n-_7BcS`LKMOMVZt>k1Wc-id!RXBq`Th4onmXrCd&b){S{`~~!^03` zv44m*d7gwUy<%|TA*F;KwT}9-yml-iHDA@)zfBnx16c*-@x^T!hq|WC<@+pb3mRt! z2KT7pFgyBh9DUM1mE?{r5krL;$au7ex=g4{#f*$sDUSTmH8$&0MKSF`lHa)jeRXTt zxJ8&!a8V$R9i>xma&}n0E|9hE1Zv(2pa?fz{Hk;{LIyKhBTplNkCNo&bm6BIS7#?~ z%^_9DY4tY03a1Rs13$l*9`v^*&Kn6FPEg+fngF%_=0jo8k0<6JYd{bNC(yzjd}0_D z5O*nQ6(8of+CKsWm#<3Nqf zeE-{G5#~BAz-0!>xqKP)=7>Vq-#@|CoQ2X{kcC6(n4;`IO3aT+!l+f1Mw|6-Nu)x? zZo`mUxZ4;k!Bv7Hpj!A2F}TZwj`pfOczZv}x4HCx6QMheVa;c-p@*-+{Hj$Vg^nUR zCIqpXT({$0R9w7`IVad4xJ%*!%nYSKi1aOtkL&l8G@@oD>`DZI<;Wjs!17BcFG836 zcLt6#+*ZLm0@}Ro!JZXblM4kK`Xd1aj2_Ma5*0_eJHOoILhslQOP!k3`j3NDV`g&C zyeZnkm{;-Von5CG1kGvFyR+l3xsvzk&E=!9__z(KK{)DMTe4ft;3V(q>IL^IT&T)H zw^s0c8VqjzL#;kEt`_SFY<-ZFw)5S&VcgDf8rF{V85P_0o4USpI~oP5AT=G#YPp?#H*1osViJ9FfB zdk#Dz3{6tuY4->meJa;jkwDp1*9~}6&Z&sR1X@2#{JcbwfB-ojuhzC}QKC5bWHOpp zt;B{wma@Y-MIAWZ-MR-y2S2JOax@AaCS&%mLvIGE$aE(a6^8Gx+R!B{+(Op~Jln1N z?(3&sj7V&Ud)BJd!z}@@T`!JkB%9$itg17sxc~mT#GQ15oTSUumG;}6b1EOZw2v;^ z538v%>=AJ8-N$^X>0k~(O8Rv|MqYvW8w z6L4+*h;h-51o&_+@?myLS3i%6rGlP_#ZL<48z~p8kjzru@EjcLSC7|rvRl=YwSM7I z_HeZctI&UbzVXQ8GMAi%3|EYJ{Y|@1q=1X4EgZw8eCC^uJPOBDC}rzg5lqlXn;!8p zmFob|+mWJ9eI>gk_F1t-X^JL7L>_;e@gU^4JxLDTHtM%+Y`!w<;#cr_H!QP*Q+JC4 zrW1RL#n@ixNq=GppPnkc#82vT>En@=wEhTD;uFtgYYipQPR#n@+v2(%Prgu@6dsbF z__~D(aLca%V%sDn&3v$rO*-?iZOxCN8gnODs5k_8)dP$Oq95^Chqq)X{zbSyAeX=s zjdO(TU@G#|x1SJxskmN@pUP6>3<53Nzo$)0shkK6?DE~Q7xj%APM8GKx`U{S`hqgz z`JoB=xGoUoYewK)=Hp7PB^G9Tscj*bVnQ#RCiqi-@q{2yG%(|r)DfU{j+!)k_41LnkvJV}Tyy$f4!*))!>5w4 z78bU0A-|=E#lce2Wn$NFGWRjIzi4T?bZNR+bccje+>7j0GJ*Is;WjGGx{{7x*z90D zMoVKME!#<&Hf#uPaudfj0;U57d@&6{vrsH*O4>e*T*7%W3Z@!?umx@&^GBF5_rbd6 zKL7G(f|=rZwS>|jc`a{|c=4mCTZZ%F6CoL>%-}F8O4H6&JCQblcNPz0xkmej;6V7X zY!de!I%tpl9Tp$AH-p$}3rJ_%WKZVv`ud%Cs~5k0WbLTJ#Xc=xnt+a z+GBygQOBF1@fcD5QXY`gRbU0!Q;-57R}TBV^XdehxZ-h$txZ% zh7w~sq2Al;Bfjn@?~Zj0Hrzi6Vn=?6tvq7Iu8}~*7c|pKLp}wrh>!S8v%#&e!}-gf zZEo9#Tki_9U-@O{!VcF`7CR&LUrl#{8uEJM0RB`YA6n6XG1j|s#|NjSm*cZr#w8;? z%i+!&???1pyi(BZf2Upc?-j21ZkHqB^M{cMR^pl|?@s3X+oy|>Oyz4^na*zZx4-M7 z_nAgB*D_z5?4M4@n-f<eIAoGW58dbqq>T#lU<6dgV% z5|08}qP|)~0-lGv`4xM@ONF5o;`3Hg_Zl&r-xuCQ6uJ^`*e>RW1 z@9TT9kA=Az!#zLbeQdJdKJO-X7-zg~(%&|D>ee}$mFC`AuBSg2s?jx@KGWH{aM^gp zD>~v>D!f>%-dL<)VpJZ9X|HAJF6C&hWN5C0q!_NAlw)%}6C*sIu$`$6T&~7WR}&Z7 zxJ#|vY*(&2bGo2^zem8JON#@OqA61g2lgfZ6>ubR<`2-@_j=w%=9>P5C#D7JLP4#( zZh-V=S?hgwD%TY@Y10m4XN!ux8R_+t_w>|SMhp(vi>nhebyty zCC`F0RgN+Ac8tL$jApI-5^r&m{0@!&7bbjzEm;p#gr%1R12L?crdX(ZKum2%eq&i)q20GlP z&jtDVGW2*xe(puQZ7*mZ{l3N~q%hjk&T*K2h;`5#^F~{g+;raBu&uV6_}-8r_kvr+;DlURm{L`vsn$zaPShP?L@JBiIg!< zcBg0zp-h{>;@DkVDc+a-Lh7&XLz1e@87P!+B@S*(n0@O7XDm*VEmog0S^N${+RgnT zi$3~hhpWw;?Yy4jNptRvQggG~9%)PWFVi<_^iTFYyI78qJ!rrB=RnL+(!3{`$Oi#`ML8v}n|u>euTANLHKSO!|rDkSDpjtJco% zHGG`WH3H{_Q6Z0a`yv!x-fnl>diAy+*W~IwydHKN#k!ju5Y!wL0U3if!O+n`kHWPG zXV`-TtFa}k3$`;wi|(-~z`?yAWxT3hcUHIDX^$%+5FZP+w2V zMUoBEE7m;e2?Bd}2)T{JS(?kkP&CW{e$MpDRVbhcORPiWWwi=l0aEShfLDGWWdY;Q zth&Yh_z2bh>tE)MX^_?wOIq;CD1E>eF#pdZ`uM^1d!?isi&I<^sZA=FABCIpn2Azl zWfZXtESQ9!1NZxsvFs?KNFp4NNRjFI12(IqBw7!0DDbZ?t8r^&CX%@mx&$LPhlwTm zkWUeHLjK>oG#}7I1>@}Led^0zrQLk{#GE1Ku7yIUrcLz8xuOZw=Wy8`NQ3JO&#|3) zb(0cc=ngK8lBX}U*TYTew#|-}->fco!H}x_ca6~y&dfh!vS4X4IYv1f!9$sL?O{YR z50;o;jaX)eI9qI4U6k8U`MS_VS_wJbRgvQi$0J1$TaQaAZ*Y z#K}0zINS`%VubgfIsT`_`j$K(Rj`1L$@_K5aVw##%QUpm(~Ul}MNrB{O~r9K%9?itY=u7#~v5+0d()IBL~ zP%9;jPqE5slH}Bx+4>PwiK~j#6*0&_i%{P$d8i>Ij-7-Rst?FG%aUj^>U4GfrGoVa za5Pq8XDkJ>#pcmSlR|Mu^&YKbVV=%BfyQqB8?5@jqEO22j}B}a*Grywq=BMv$SEYw zy;Dlk_;pHJDBW5H54G08ISc4qUZ>BoHGKJ*Eo0A+gGmtuUCYq(OX@DdO7%gyk>{CQ zx;;hGdzwCdV=Qic%qx(3dmQ{SL-bD@yCSAnRdBGAY^xhw%!ha-`R;xHAg>6?9&8Ax z>S@6=3gHUcn7xld<59EWXbUbO@$S9-<%R?8T0*}39brhEqnoUO2W`h z&)5s$LPq)Kv&oGL>(^i>=%ohEEnc!L6F!%_mZyk1Ni(PLy%QrWi&EvlJkmH--V1~` zTZ;qd)#sNq#ZT!S9ZjA2howsPxzLkyRt-Jqc|>H~$E6*(eifptrmKsOHDp6zA%*x{ zQ}dU)QCb!AGnx6&V3i#Aq(Q>(GZ0pyTV^E=Wibxd@kkk3PFc_fupjGsj6pRg;>YQ* zH`mysGzs!HEpa=&CD&VV4@LP(`fzA4-xC_dH{}T_tOo`75B`;aW#w6Q zceoipcKdKWy<$W(`raMaeV1isOaTjj&$#Uo3|UU3N-p^VwnUvml=l>xL&Wh5L@mF$ z*Y?GqLHXk9F5HIY*(W=7LqY5RiV7gH4nkr}PT){;b{n^p;L%q*AiB9YXt9c17ijhw zAFPL6IGuXp(tMTa`W6o#rB^1%)y)_kWzt1 z5~64Y-R{)!@6flyuhw3x9NuiT+>+z?`bT4`)k0!kJ=Euc^*EY0c^)WVt{zwHHQo8g zu1drMk;R*niWk%c0aB+%+2~b}S(7h01LrXWn+}Ba>i%k27H%s-*QK!iHxhsflQK zXx=OlHD)>_g;89=zzhnpXq7&KU6xOAUGFvdxsIndbo3IH2COH7VAbN2cD$}fhi zRkx_?6_SIS(5^Pd^X2Ox8|23;s9$!H$*z(TJUkxYJ z@8{}LYD1<04?@-$dgw0L>zd=B;XsJ^{!=B1O7)Il#}3{^fYQqqzNh&+vb}DwLaaXE zh5qpAk_JbLnn*UP-BNqcTWc#I)e?K&>X;^`HhdDiidrO($~WvAV_rTfq6FjhV679+ zb~WCXA)xh6JPlItuJ;=Ugohz0i_Gvm_n3Cij*v4Su$7{ziF0*iYw^FNDE`OD3=nca zN?Agwpx5uy01JQcuxQN;#YX2HjTOQ{BU#L|ty( z^%4pXz|8~%=7rXJmhW6pG9Uu>sC^WyW4E+sUCo6cvELqQlgTy28nGr=;Rs#1>zSP~ zCJKia*lXn+|2*f$K-Ym0{8M?&UMOdwY($Q6W;UZ6SiuQnRl*pIgL%v`1m0kzsOZZQ zWqijv81;Usv}VAgfv6e#kq9niQQDo8?qe?iv0O&gB+Nx1u+Si4r>iL+giqr82uL&6 z=Q436f$Wp;aMV+;S0DEW&B1EgyDJk=IJ|A(nd#?7WYc{N##9Ou6|Vf)nifSXwD}ul zq>&j6_m9ks1z;YYcOIF;!}X`zOU3eM}tbW&8Rh8rfH@;;z-E(gc$3Fpy4_ypnC->QOlt zzoh$zjE@b-Y;w4JE-9Y@m7!@LZ@*gO>;Lhmt1a8hk?Z-u^?K@j zEi=~V*T1j7`9<^b2cU-JZ{&3$GmyZ^L(g9S)BBZgGrAxMnai`&;>29o*R)#PRG=SzelEn{m(xDa z=k}t>?Deuo75JM0UxV)SS2z=?!I^94^yLd%&$+C_&ih?{?2=I~U5J|W+xD?r_gqJy zI*c8-u0J7mM{|zV2)r)Js`%fU`3lT0IXF9JNjLZF7g`#wgFjhBMXl^KZ0s%lO0{}7dyfiy(JOmUl&L|Jjh2et62e$c!K1$~lzpdeI`DQ^N3UOUE z+RDLNHb`cTmPrNwWS(2~vT67dV}~ZYh*(kxFrbkf0C$ zPbQ;Cab>CDgjv-I{MG1bNn5>y5rVWMGZmvEsMcG$v4(rJPO?`Nm?VSq*J+S)>*jY^ znTLVZ5J>0)eJ2u)TpRube%xAftLb;{FaK&?*P2m2K(lsPe|lbzF2J%B=pEY`shDG zkCtdho$2o!%$+`>=W(&Qr`vYk5Hv`F5UIsA)Z{-M>|x{(N6}8s`&^v1uowv!dkbc{NLl>0?$H| z2obumbxrY%t9{1$0-L59W9uH`5PUZ&W3V$bn<%>o8|1%hy+BnW@Lh>ZL$!g=LRn-)(PzzB#w`+a{{j?WnLgMlhp{>qOqd*PbbXK3HuHhyU@ z1NtC*lJz{bu0P1P0iSr+c{NS<5*&~qH5()A5nTSO7onJ9V~6$WGc+X(ED6Afz0+iCf7qs7bF-Zvw+g61%hBzG<^Js7wO<6=7PtKO3PdaPchS*zd^NUQio(1hD=vKe zlSP(^dd;`}2I|1cj~^ozu-eu1pqLQti{;4L9Vz^dET`k){r1)X`h~pm-MvQg7RLgT z8gsh_L}-6ru3r8d?TlHmG214&BD~O{+?*YVp7_sUvzDBlhD>#)y#L`jB!H*OH5i+o z=wHIV_^w~zORo|6bO<^A4gp6kr;R@PQ7^v<_TacNdRi|rI3B1KrFfTGoEqNIX&3Cd z&ZM>%oNf|1W%+BOMOOw4L_NdZK(|PMQ)*Kjl`oS^HFB6BEk#f$8MSx(wr0j*_F zkHGiP!TQ&#uRcvT8H5QOIipz^@DGEI62Gl0wfsT-V!J^-p0)tp*pdrnG|XtB{n0t6c@j zw*vQ5iT~E^qnbc#pMvjhZw(VQTtFz3U`7laATde44}?3(}R|p?NT+Kl+C@UykVm;q={qBhAY7#F-`BTOVT||11?*1w88_+2M z;d_P6JP6=CPRautc=`$t!a;Mrgl(RtKRC3?lK38a6{g;a{n0qkwdE`VPXZMH)&N43 z#e@w>sAK=l4-q+dB_P4|14#jCnd;5~5Th7Ir1q62OAN3+$X4}29!EzwREZbU4Vg>gFL0UpR!&N6zu zN$N7_xsuhEBWtVoaJJkBfhGMXMSKb&xiqVx!BMV)MELN=LRI+%o8Q4vdEI+Dj)j!& zAc`P}CQl(g@po3bN#Y3@RGGTymkRf~5zT$0&9`GD&fJM`p-?df`LDdBrF5XFjHQmy z(5{xnPK5hi1Vvfg-y}rkCcN;+BjHodp;HPvs5m776c-B#Ra2^AXQn+o2M&JW#ifWP zKO;pWjXtcaJnfr*_7`Ah1Z+`UBA>e{#h{>Zd%`GbZ1;DcwEFC8v*C?0=$YAUUda+& z;-MkrltAu%7iIkW5wlY^TSU%mlzcUIJ_7$V$melsm*jZ$Ny`UDiJ1j6q(}Dm^$Kw8 zampz9rPz`MEkIXs1t9dhO1m@UlZAbtFd8%ICnM(6pW+tqsnFEM$a|q zWL!L|R7~&+@qR4tGk9=ihp^_Q9x18c&RLIrd9_mfsk`b1oo(m1;gc_+x5X+(G{|kW z&quu+ScqWX$x($6S z=!-&Qq|SO{$$2BP{)@_Tklxi#_vf-?;HS1rtmxka=U~d`>m$2ENOOsm*%UP--+n!= zpxuH3<7$)URYzDwW0do<{n0Z?G!$V09w;m^1NxW7(PD82BbTnH7$ZV2H0-?N#0t7i z5}(?a-n;`SdVRp_{OrB>ACA^ocM@efD&(XXM`C6`TJqN7R|cN4rs;#D^9jEes%x$#3Q`Q~dR)ZCf-T z|6wFPeCEw(ebHJAtWFoQk;78rI1Ioc^o!|Q!io*6yq#LVUv2VvL#!&**-4IY^1DwV zoU>7+VtSUw;pk^-en~+C4xeNa3bphjF;5rvp*tiqykczu3;3&AIM1^Y)tomr$Y zjE>+wwm@<*O}vgN1_v80-UjE?EBP;p6D9IH%6aK;d~)kykeXWLDPQW;KJt^zM1f&{ z_K2Yrh8=$jBuS8YX zhRHzwXdk0v8-Ti>_d~XTlWBo82Mc>T}I`nfO-r4q$ zjRJiTfvP3KwOzUIM2=2;>$T}%F}du15G)Q**-lW2N55s9_~<2AD>L$j4%yxX-iqdc z_n*Ue>|j4uVLbZKpJ~(KzNmnhRLckHsh8A@Ie9kn%B2CiCE@Ezz>X?XXEokSwdu*P zffK3wgZ1QeMv2s}2h4JpBkA+W$9{{J6T_JoO*W4}14@RE%Odovqwmi?iHn?uGBx3tjszZmgBpCCNLo z->tYc);($mA%R60$ltJ$D6x@<=?P~lGI@V{a2`)5b~c-NJg4PgxpmQB`zo{E zmpg!(xLz#p4=g7Zway>3E=TQ5w)l^?JnXN|E>4%n_M;2eTmsYCeuq|i&eOFkO{^oQ zI8$J|5m2AW&|k>VpKRvt)G^j<$rHZU=Iopn2mFCzbh)0oUe8=y!NJN%2Yeqn6l9#L&ISO3Ydt8F=&YyOGIfL zcVl?Cn9pHv1->Pvpl}O(1FI)P_oD{;3+ql+2NCDPwb8t9i0yWRN{ou(*K~1{I%cV% zp_KrrjmfGbN;+bYU&V^>o(&^Kt@xK(# z2ejYf`7g?=zNN`c;GX2Y&8;?M5NYi8&S9;pA>Tf0oEzN%aI|=f4cF1Xza{t%S(YC7 zZUhrmeBEAu71S+`uYt-%WI*jAEa$1^;5(T=8@bK&<*!H%=U*lox$W#niuph^=?ymj zo=DD|O3P@HZcCb01CTfGDV++_49vGq?#lmReKoolT(V(|U^ZBv{G#TP^K%eEf&Sk> zo7@MceecsvbvWswKpAOB^hI5RogFiXIu($C1c>*3uZIS`%hTlwa5b*{*`5QI4db%( zq381NbTgrXjhJik9R+e~Lqse{g#59Gtn%ZsCczKvF6k+%nCKWc*>e~)%=iccTHz)L zP-r0F@R7wiA-yMA&QgG?GgPUvmvjVc$qPL{ePLU0#P>KyShLpLiIJQ2@!ap~KADJX z*P(f|;6%x}Z+P_1WT{2oqkQIA${{2`7s`7zwUD7!So4)fN_3`5<0WX3BL)-KPs|V; zgcC9xA)`3%z+1~*e~J=FUk88p(i_L@?l0E)bbQ9?ZSQd3+f{P(E}(nGE%pqPBY8Ut z=e~xu;E{Wj!=C{c1c@S+b&v!S7k$D)ED&4`c{&pUb*S-n+`rX9PeHhHsBn)crW&0{ z7j6kVAr&IZ>P-ZaKSl!Rc-O%cA&UaMeJhZBUxz(hRDVQx0hF=f#QqEcZ}c`dlQP;M z-E}HUE(Zz~9=&}Y$Zp24jTxz#T7shUe(+)SF=8zL8{73!laSlNrkW`tOR#~b(6D>8W9at9n<*ZKxb^ zf5F8}m8{Gb&X0ijivslJ9X|E`v;=?hCVl%Lzo*3y2o`+fBDHJnA#}3$84nw7%fnEQ zGjJ83a}ut(7-6;9$?XipbUx!as$tr}ilF|ig8Zug<8a3c2Mt8=>ouS=Gad-fGYBoJ z+KH(a2$il4Z^?O#h3CSvaSYpU#dPk6>$;A>y9OgWuqslxtMh{t65&d7o)~a5W#VL} zrERSRlR^B|m#!1g$2kdcALrakJy(a!j$Orh*9E74+}M#F)!a~!b=QDxc=}-SNn9Di zzZC6jll8{^r55Y`4J)U}b6Ql&xn>R$pi*X`gFq0M4STPEo|nR!Ct{UU&V`%@geKU{qTlkz0QY}ZwB=-nO=8vWhb*iO&^zH3`k)CX!@~cI zqM2xt~(iA5vXiNmcLn*?X-UaEdrbYj%l7iV2xA zC1p)D1GmS$MZJqxn&U0n8l3@j3;c`uHiBjk{Pzp-F?dEAb-l(V+SLuN^g3rcw~o=y zOEAy*5+JYG`om9*Z&S+?qm-5I9#dSf&s~#>Oi6@qD z5yEV4Fj|sDiVK&O%cKwr_^vFFE5$Wu8!#o}euN}q!^Vk$?JAw&SuhK9Mo%5fW4W)+ zyUdL|WOs2^ae<94F?}4w-06mQ?;oH$;cAu(qEN4w|H!~a@?MT$hPu$Tvy}T3`YVyB zf{KSTV69s~WZD?)CtpB~&b-dr?7%LYzXGp)1Qx=!PkAPSBaO_ZY4x*F4c}!7sc48#Jou41-jPjp?Cb#n2cfzOK+=bRW4)M zUoiN`z`s-;YR!$ylTyo&&?DdSX9+%CTl*=Zq&3BS#vcDU|A~x-s{0ngpNd?A@$5T( zZCG&?NnUV=!u$0AJK7a!eLJ%3P@mwM9sAh*A&m7jz!Pi|7ADd9qBH-R{vCsdlGZrT zTmza&5hzE|r;57Q1NM>{Lvtp|$n+1drA%}Qjg#0ItOy}pjnpd5RZYDsl%S%$;SmjK z=_Yy_T-Q_TI(h`aSQvh+y8VjTwTn^}BuZG%q{-zm{VR%D0Y0MgIVv3KBMZUROPA`T zy9{=|Ru~Q-o!k)rLH(ss2un+tp&wp{-9w#7*|aA^zQVG>SFEwDe~J?IYYhdSCAclK zj>U`Yn=ivLO7&`zp~P>32Rx;6rGz$45-Rd-r&gJ>&4ygkGR>bIqC~#WKfW~bD$?n2 z0#(6Jlb35q0=^@w%KL}`c)~vMR?WopX;;t1={YX`A&3eZsakDEOcu4QH!!S_6{wXh zgT4(OUKE9|lL*(}HhZKae^)57))=yP2|ja2jXZH-hCFrp>U4U$o%9JfLL^glRriQeFetp&5N<;G(9?W#~Bs>zN52~CV# z4mO8z_qznGBlZENS&;Ft@g*9KZ4=4~57te%r%~u>4W4(fyT&z$2--BwVz&LKvV)ik zt66rEAms!wh-j`kiR)&lva8G4+lju}DxJl!g+~3si5&MhTaSm$!`i>huKaA+DcQ(p z{MRD&N_@9 z2@y)7m@){KjozB5A?O$VJ5mwi%BqE(JLc{faKK14S1{YEa{;CorP)xW#!Y=IIvs6o zAmg9Nz2aWVB5UaYZ+AgZ)P<@9DJ@}nUDy`8<)6wcxEyE+Noi>CLKsE3Uh!zeo;P^| zraC8ze<4E(1b>&KAs8BU{d*fdF`TS~w&!B#FhI;+T+!b2G8;`6WXtldxS0xlS){rY zL(843%I;L}&E8{AQtM9gJ+;>QNN~gz1QF~_zC{X}c$dun_6zilcPcVklf*?(8}AI& z{TTU*wGgb@4*t<6qj|VW(wGT0m=v9Ii1;sYx(mNv%wdsT%e^Upaj{HTM?0$<8X#$p zqB`b4XlKV)wJtvP8Gt*$$SO*l*AJ~=IBl1)UsYj6=;;%KGA@c8NY z`#wkI*`ITx;n8?b-arCv7n^wQZX&fR(u8ZD7X+f1w)R3F0En8rYDKs+ygKJVr7rau z_>|E9b6)o_hFdSVkV}>5LF#OqRlZrY)ov-bQ6a4(>+lV}bqpf_5~)pS%|;DrG~=a_ zmmz~-;`o9a^cl81fSq=#4RYlyI2!dDEbg8+1 z6lTIB9V|PaB*;=NB3y!rz*lfvfq!Mtg&Pc|9o8!4^$3ZG@P zd|Hv}Hkq+IrvriU_IjqL(>3w04UJAb1ds#j&e~IFu(Lw?OJT^~R6>96&{=OO2;ri~pg@ z@>%A82Z9-BZvv$+$2Zn@Iow1X&LZ^xAotqidTnrj?w&25#jSx--<#{Ef`)~FLH_3= z_hXCMna%n1b!}6hLH^sv(S!BIfdiij1FS>=k^(CQ%$6 zAFj4HYyEqL&F5#@Ze?_95Mr$z<(a*O+BUzc6HnR0?7-sFa%29(UC_f_(nI4y^WwsC zasye~Qn_}z%QY{<^;@m=jo#z@TlOw;3mL6j3GJf^(fODFyR2uWlX01oZ<&>GnU!;y zmvx!foru}j)VmMztbP{P7N>WO5!9*WhokzXp}5<2QS{ZaGBRhPCNL@SPcNm1$a+pp z90B}m9{j5wp*3+Io>fA|e1vF3m4m^qpz$qAmU$zfSSsPL_{Ht4bK_VV7vYqQZfu(A z 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

cNk@F!@i!<* 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±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

b_=aGs=c79D2GH>{&owOaqzGO<@zti`5S}dG7 z<#=Z)dACIO1I|JCm7TvjWt5w@<9tFqI73u#o{m)2DgMyC{)lwH@EWHaa;G5%&pQfc zAlw0IH^AzN5qliE3>4Pj2)Ud>X9rOYJH zHRfQdTV3{dETowDzP&XOnp#?>9)YCmYG%0R{ytnh)cm!K`4K@4HekfW&XuL^U-Q`s zd4M>wM9+WERy|a1?%R^&bq9f5TF`m0rLjFebwX?BbbqMW4uo-aJ@RWb7~l{wpEG&N zni_MU5#ip~!Y(DM*wv?#%Vc4D^6jATVkRtbTBg8RJ5-Ccl_PHU6P*e0cPRzPc8wig zG9jJOso?dJ(nGx_Dr{$Ri@?uR_3s`lEjRJCRQuJ1M_$?v%KBm;P5K8qY;LWRJi{uE z?g~e{SbgdD*R#I8<9ljUt+v(ZaYKyM=$~WN_A%+6?S0B5ob1M6?~KSKqNSzlei+%?U=9;LGES$vEui$P=l)r)oY*s zL2EUh`ft)3tAG55lVxC7^1u83e;3yO|AqPcqf6v(GTUtL?{!lg^6rsS%)VoMzk1or zSrQU{{}QQqoE=#jw`!duMN zmnNfxMC9!n8FPDgrt^@Hz`EXm+x#3@hwRCQlF}1ma(kOVji8c+Dc5U-J-?P4ItPCa zyT|nOD%q>tPO862gkNC|9lEi{E50{d5DPYjaA&UiR6C-_(;|9a9RBVRwj04#!}86= z{q_qZTQyVPyu!B|VNV{QX+YSD#EXxx3U@CMGDNP+@06m4rdfqr0;$t1H&33`Y7?ws zj^5SwySt!do#&8hYQEN@z_aK=6TnxWjY zoUAxhr$zmMMZNAaJqBH3^n^8agVn-J$h$Ss|s3IwMAC!bs@kve093kET*hbC7t_fbOlX(1$SBUhPI8%DK zaB`F}5o5ui{uAVCA>Gi$hWTe>z~`m4GZQ8$98nsZL=$#mq9@J>6+)%w_j~o1BDm(&hC#=a8E?c3EX4#G z$Ix3t{&J{-09G^sOre(WVEbM3IB#8JT9;_S; zKO!D5(#uaMxA&G);h2S4=YGAjH^nGi+sCN_Rk$K^_~(+sDZI_*XdX;#Mf64Q=ZX`X zlBChbvmvin5uK3etsV7%c}foSKH)oX!>zH|RV4WA2o12;{#m_KuJ)?l z(-xU^bSI?7HRD2`KhpK(t&${n-8UUSbKLC{yt=z*IlWa_i8ctgT49^O@G!52u{LIG z{Rgn>$gA$MM4wlP`N0Ns*4{_mswTJaU4Pbn-m2>EiAqPQ?sUzvH_Zf(+ zH84smTl7|q=yFyaiV?c#{h!qfzdo;BS-`4 zF=Sr2=qfntgjXMUzop%w_uq`qzrB>A!`u!u^#AkMDBmncE&QqB`xy7vftPQTg%Og< zI_vrtRxXPN`9D)I%p!dtGMKGy{V|?(4PN@x?EOVA--}aUS@C60tuO4l0LW{W8aaX% zS2oxZ`}&ri&7NRy)}!XC2PeGfiHQk=#>5G*ilyZ zlIwjJgLk(`94Y4Z#>se34c3h~wZN1-DxPfB+K(yQvV*hV^`q z*Qf&<;qsR3(3p2ZDYE@(bGzHSaGpu4U76j?Fxq8GPgPN7oQFo*BjU8n>~f#OO`KWm zkRWe4v1z4hSN6g3_A_M3q<8L*t(tM#n;tohEoT8n{5bQe>44V&lNfLNPf=9TFrN0=%vp$h87M^h_!LS=MRv8%1e57R z^qmTZsasL6h?TFH?D7mMUaWrSl#8wJ>a-u0>I3;*$#oAOquL?r(Je~NW$7p~IUgM% z`P4LH4hXl@dof?ka&Y6HP1Xd_8t6gQvHzi_g2RQ}A3t}T+&y(pSyjno!6IO{^pQ6m z_D}eFVtr!^GCplRzjI}wd~F*gp{F&+!wZ(+faH(x{u{UTC|2IPxZ&gTP7Z>sT^kVA z*Jf^1$c}--CV9DZ18jTizfschXOc2qu7@nTA~M!k#?UDBtr#yMNRh9_mOMg_2Oj^++yY@#W1z^L2!{b(k?V^U1cc{OdOg?u$G zZV9Rug1)!L}Ew4&enzown;)qTYEzg>5-G@II1@l7jkxM{?=ehmXxfRk9p?Seg-+8FpIvi~DI6N0k}(?}4!sn;oY* z1dvWK<9~T4*l$We+?kDBu*W6ksXJsreXk8&b+0nX6Fo2K>yR_=ZZ}%|YI@zt zw8+-venG(?OCzU%j;dby(nC+GA_b1yT!NXoeLu75jMyLg*=o0SGI^ihj6{5B)OyFxUU--wB`gN)_P#Ph& zhe5P=3JJ(ArSXLNNM!8n?aSmw-qNE;PY=WpD@SDFzlyu$(n~l(`kZ0zEt@|?amL8V#^7&p=&QwZ7Cr(px8I0z2WaCG@hmT# zv-~nSOiD+(K}wE_6uLej={4-;0~pzazNiW7;?n(p>8NlKzE-D?K(;E$as= z5$YvW@#yL5y+6tG7F?e%y&QNawU6mr5+OCr5O``Sv`7)5Z?DqhuhBtR<@kCf@A*op z&n_(OKm9c(ZgpAK zjxz1Z?E0vr+=qs5MxEbNbzc7;jYZ}D;U(>ui}r|)rw1`Ci*D6+LG_KB6!+;!;CGt; znG;X<=dZ_!d*+a!V&e?+gc|Lo1`1v{hmC@|LEU0dsc;;wu~<*5=$2vQ`&6z!YLg9F zc1$d5tF5w?JA9uiNK?f|c)#h+ZcW(P)r(jH9Q8{d3eaipvb|)vmMj3Kau0{kEMztZ zU;Ld&N8hvPG(|lD#N)l5td9I{>Z^bJ{f2(}nc3`U0T}ViW`kB)nAA&=$-6=w0%(-> z47Fg&UDI#AZBFK6#Dl z%~hU)SsoZ|OJX9LjOyc038}k$D(rak)c#CDc3&V&d(wl5GR+jW6nli0weuX%yAsPR z?1xY@al89krNV9Za;3vDgC23xmQsy-Ps74glx$G46xAk3n_=QK&xlvXP_v7PqC0c~ z^ujgdomIjkGkXnxYs6%b{qxF7#qelHV14+Z4Go?}7)JEm-89eyI9+Ard}-s!2#x#8 z-up>%uG{J>r3#aw!cXQVW=QTSqkq>&OT{7nAT|%4=73-XgYV^!uzg=s@8w-)kc*TQEzunM#JX8;?$p+n7k(DggS>>{-g`WuPcJLB_xi}D zK!Do6S>|<`sn}-hGXH!vSLex04(DVBqG67S2GTGBJamynd;5=gAedc~)OjhdUyaq% zuW=p2UCsrbBgz~dwfsf6@XzV6Z(s$p2@KglRW1^Bi!&*M=_`uga;UAM(_*mhVFMa& zgt}33_diekK*nj7>PtfsIprFfGYUx@nFXhc3*`5o{N#(}K-@=nPXyqdyV22uiiunc zBkhe$t?4R776-<){cX;EH6N%Dx^62K&c3 zywyQzhO=GTN>AIlFhqXOGTXK0y@6=!u*OheonG3&HV?wPwU5=z+57s4tj9voKEg)m z*k9C?-CpFZX*~OHxnvj3-=0Z;$_+dH5aW#W5O(x1Yu@uBQ*c-q3jB6d2)L}Tpo^4K z`g{TTEB}^oXp=;1(G;7sr-V(%#g;EES&mtAI5K=S0u_1|c*E#c2RqQY>6BD)V_+G&w=4OlxLBgG-_nM9=c(IWiHz$=PwRe}cN`+O9amL^awQfP zf2hyy@Z$WQ=RH^Xxd66Ly;J3>_28>S1W@pbMQy&*)x0@cs>kW>LR~ShVlv6TxxZ0H zVd+zqn2BoCXpoAwEnY~0RMIGJ#!_{f6CzsF_eM}zZX}PBP#=5VYW!;AmKGrusEt%E zqtPJ>*kO=#WNloSx4OJ^r?Y$#pP5@#tPihgGkEwI1gCzzC(UM$*XbZ zdt(mg)AUbV|5G>dm#FQi1@}uHC`dg^qpvl-qeL#~r}=eH?@3VSsQK3_l`?0DyH{u! z>=~G^f4%rz?nx?7ZGcAtfB*f{D`gFz%E|03c$s4VXJ7)>{@L6vhs+_KmcVq(d+t-# z8?N4(-#yL|d)G~|kbZbN-l3~Do|Gs(=0|@^#O!+Wl&H*X;ifH+NKwo=gAi=OVpiU+op2mfhTv9*WV2i3 zkoY03M|braFaY={INx$qm}{-t;G*>A*e~h~TpSuV9vTs(k08)Lij=VsN6DYH0{$5bUvq=PwiU_}%xRx)ui<((32-!I#*f!SxA!t5~9Zt3vd z$61UkPNMnvg>OOxMc;`Z+unlhh0oi4M4jZMBI!1%_MojRMsTkO4ia)i_0i}qpJ1|I zWVf`PZ&k%OHs_Ba{L0ok&XhY^wJVk$p7)5MO=w&^Hy^A^gKfEr*zp`euUsYxMuYn$ zR}Vn`U)(H<1g|7RwzDRUO4JK`%_GyE*`{mM*9j3{m-&&0-+q6zZSQUKpI0=BARX2N z1A0keUgyNPgt$4!#59E8QQi}t$)qcFH30hqkJp^W7P30 zKZFlIlw=n2>zcJL`Kp>CP0rlD0nu*fC!|Fg+eb0y2p4>r+I=K5V=0=E0#QBO`G`@N zG z5PoWq+Url0E0I?K$&4K>`M!1dRjf6&c<&EI^^{ETA#UreI|YkIszZwpzMEp6NsT8u zU6*;6)B{p~Xp{^p6rzK`HV8OoOt{{8X_zT)I?ZPNSCG)Fo_wvQq4)3aKgj;OHr4~T z6!=ZCKl8@hyZOxljZ{C#*O)&Evn7pRuq61}AhGaCO9^?j*85}JRZfOjFDVd3rN z{7#Cu_bFYH71hz6W(c7wxx^nT;(c5*za`8ISCU8Cs~5{7z$jE|=jQ&mkN5R!oi?{$7Tjbkw+@^~FM-ukKwHLY*&8OZ zB0FY+w{#ZE6!+wD@HaQ#S?1=4$NwqJu{&Gd&(3@a^wbN(TuyD{QS2c?m-ucITSShM z_hD79@+7X>bXiRvvg)5SRx!xTyV!ydZ$a8y&hr>n*;*&wPMb}7R8z6ti#N{P51h1j zoG*VCE+OBT{8G;f^6ptvG;#OutgR45DS^NR-wpd#>JOz%8TlTcq-RlVhftj%;7_weJ#H?%FDblCb6eZBTG*2nUi} zT84f$IT*^#>ZQ4b%+6&|nQ`ny%Uq3CBXrt345%^}&5{U}*z3LOU05>%jm`|BY4Mpa)rM9=q=os?TMh((u% z_t$FZe*T(5Q1^-R*>ubPfvz4JJ4`n`H{(p$nLo}oELoolUeiwqeLEr)VDLBl9QhwP z;A78f8|q8qf-WrzNpvRoLXO2MVVC5UB8{!t#(4_R)n0Igym-_o{A9u6GhFzDj&GFX zavFPg(u#)4y}m*jQ()=;pTDfdcJh#HkLOU{IV5|czHs+&4F(m51!q7flTkZ>q4e}e zEr<7f8^RqA#0P7hT7R68-0!#jF7$Ym#NvA1#jh5(N#}`5mPE>_YGGC=7<^cTexO!r zBjZ#B?T}S&$Q^&_T9ZGGS_sYIw%lMFPQ76^LVng)q0#^cM(RtpTO^R znUu}LcoxEMv9t{}0&N5V4H}W60hdZOz%sPuQ2{yG9T9;$kBr4rg8>`8LC;c39aj55 z{IBY4PY}omE|Knu4i5w2K@v_e^-Ll4Z0YU5Wa=Du3M8g*>+uhk*SnDnEw?*9R+EC_R0)IFA4F#0W-c;b-7C#CndeKB&5`A?KOW1(UqZ zttmO>kC2t}YAg*}U1e*rVF%VypqyMv(l?TL88NP+;l52l=TJo635JnO*S|uA2*nlg zyE?3?Ypj%N*FRwO|CAhxyuIR=IDh7sOJCDl8yWmJw}$`zSgAd608a%6RfY$_LSUl# zEplMYG08z5WO*MM^MZSw@TMIKJK^iTey~bK3JcquI`>y0GleJrL7aH>Y1}+i9hwSN z`KS29#1KT)uwAKL2-5S!2E-_InujsH7mL~@qUX0^%O-xQ7QWRsf7cla z`OXd3U9N<&)g*x&B<%q$IxyY3NsS_k)nhb#V_`Eqi&g1GG(Y}${j!Y-QeWlk|U$FdXc z{jTv-`RHuVz?Q*BmYriaLE3+O3IrIXdr!_0n`tkm=Oy-=?2BMCU1!rjV%+oZJ$>s0 zMo6PONb`*HN5``C#$pS`A4i~)oIA3PlSXyp4Chaa-^|_!k!WsO)9B(cvNvi$3jMo4 zKCYd7kPU+w+@9vyY0dKF5aVe*(RtYnwOV`BrI$Nd*)H(dtuUADyq& z9*_R7m*nDdt%6MA@}d7{xm}0?+#!X}69tl5pPhH~3vQkJr-ng5<&`yJI~q2|^dj{& z^-pk4tqSWu+E6?7nT^=)jxW-)3`$t6Z3#s$3k6mwm|e)V3SFaINawlddjA^Bi{w{s zd!nZrafgCHKka%F{o`1?p#(~l^|HI}<$A}<^`Dm|E1QP>V~9AdT)Tc>yNb==qBpDOme zS8=$NvPD_^2DCK09d>i3$CV0pSx^IKM7JGKkzcjiq4m_V`}pHtebHOy(A{fxYfN?= zQr1|}h141M?(4&{Va5kH!TG-*N9yx4SjkP^*$?gKT&!Q$m%9?42*sBkFA#MwCJz@*y7=1XZ zVtCN}eeLP8u4D{;+h={;sph9rRWY0e6Tf!-KpeqGd8kk{!+0(joxH8WQAiIw<>`Ad z`6nDqB0Z(C^%DfYx-wmhst(M1FPjzN*js0j%4j!!><`?6J$;awsw@X~b{#*jQB&Aw_gk=t??Oi5Vf_}vQV-dS&c}^-!9Jmw zXb0{97F71dmX+P2UtwZ~aQRp@qk+BjkSf%LJC4})Y_ux7jQiQisSt2=o9ziod_WJ(BDr}B8a;IE5-zWTTU{$k6&>j7NC?Ob?=ZuSZAZ|YR+=8E9lKrmbM zOyXG|O!3IWB8y6It^M375q{dH_^SnWXe$BR7`gq})mxR7d4EhePRSM{*_1KE59!eUkk55u?bF{HvthS&IsfbOnDecN1DbAvCOJ0zZ&>z|>>n|qxYu_-EIw6M zZ#=yn+11GO)YfAAe+On4;$rs{X*Q%Y-_a*&d=uD{c$tp68g%jdeSr}A8%Y{5)dZc+ zwwx)m%~mVXYfKKkPa~N+1!L#>_ckae&~Jf7rg%xfp0(5|?i zT;P`B78$hvdj1FN@U%o_v>{FP5~*Q-0Y;r#1&c`XC5G$J)F+)TgeTL~3+#LoU1qlx zLj8-}kU=$#|E15RX#RNR=1)Hc*vsLw5@UZCwRDQW7T`6+fjdPf>ID_x{qFVLN@Ke_ z;~$kwy6_gLxTgQAxcF1(!GsB0WV6F;w?X@?(l@OBW7h-mHv^Le#bsImd~tw6WJP8h z`q0!z2p_kyXHzm6LLt8o<~ATy5mOOLQ;rvx&S=46K8Z3ioiZi1k;MSP)7Sh)M}&-h zYyBFx&CMKyuyw{%XY^dR2qFBL96h~}toIJE_~caCC+fqUa36-+P$fQeJu9M>fby&P zXO!f+lL_xsM4yCUFpK;KUHwSX-}cAfo;K!s^2wQ@IIiY(cTdk3epTzZHNDs0{CRM= zqadd`F}fG6wIiSOEz(=?GyR&fxd2aH=Byg5V_e}_92kQa#ZG@m@p#-%tF+IHq*_!I zZ2{Bv`-tJGFP6pnD^Lf(1BMIwdSrZ(6y=PWrXS~S2{*?!tED zUEJxY6Nt)u6^3o!l1lb-p2ylzLi;Y7eC%<;^rv5lH|hA!QS6G6!vbc28l+1-X3b^d zJYCyN*#q}O`6`Bb<0GE^^$};!lsUJhD~B7f;<=iFcTOiRLw9ASH}>CGq#ky`BMw3K zP@e}bYSHTC#l(7zSMI7`2>sL&zae6yL{i21LhdZ5(ZTPl$h0?gAh>JZz_D?g$DO(S zY-xJ`#kkZ%u$_!Xzxhb2>iNS~toz+1d_Zc#O`{FIWvhSpr^j~B^&NxHMC=$tSo< z(mQDS!pqD#a2-=t%+mmg8UGcBRRJWTm3vPjVBceEXjOanPtZmuS+ z1v#PH{a@KTRyrO{MeHfQwwE_m2{-}gJ2$nGm6vCc-av{FUL+V?NCIfUk&_Op<;+Ls zVgjhrjf*-S%>S}*hk=W5jbq{Yg`vld?8#~3nlZQ9Qvx)W1Jfo0@r*WxzORpo94gus z>!p~8ngK>9X2Hq+G=!)pc9Rp4;63X;%W2NJ+S0*mHR`l9k}%7tB5^UXYeiJ46F2cX zw!`PQu6<YLj>@}5OSztvE#Fxt7hq>bA}#W}F$dsV7(@|e*bqYhM6bd(nVcy5Xd z$MxBh-e}>Sta+;`BcC)x6OD_Vvch$igrB>|OP=IIEDn#V4IAc|U%~Krru2wQKVUU> z5$qZW`L4d`xi5X*uv0A`YYF#N^}vx&b}gL5Z<`dL5)bUY01wEOy4C0LZ@e-`9d%vv zxK&FU-coH*N5EQd-fhD+Y}{Y zeTc-h;(IZrm(2e8PFQXK_!Uk3lU*|lsIDPKLDTtT69HW4h~6J+CoXW;Ty^mB3LPnE$u8&QvRjc48@Ce#)e9hFqolz7{y>_0{eM4Vf2WjgIOdSFv^ zLiLL*e0EydZ|n*GySTDMX-z&P;u~2MOf(tHO2)u zix^*qx?MARlFojmm87nGs#2-6=8qA!uA<)s8aF6Qr4)?+iu0v3)W{QMpLJy}{MhZx zr*b*D$}OX^ja1y`S~v2h;Xd5(2B$d{NOUCmR~KC5)R;S)*Zmp(MfHix%zE_(6e-FL zp3TYq_QGO|<~`|h6QIk7fb$c7251TnM+M+i27DiIj*k7IE=Uy+22-ftM}7YqK{;>; ziBCTgPXV-r`BmT+GiPedqgtS|T32=X>na7*-_e(bu;!0>G%+{di;(Uqs(9WS2K-Z= zCEc~ZQn&bSNS0`p1T`x{fCG(tj=K2?a;`xci+ww?&sy8(=iG}$ut~rUPjbNG1;`=( ztWWV_UZ(WCblo=)zZJ*YVg@|CH}$vx?BkM)yvMu(mZ+E6dPxdqhSF$*rP))Cnod8; zI1zBp+!#-v>>JBQ+tS->VH7x+492X&{idE%W~GIwfQ2jb<2!>g<~ggYoI0^uZ6d5= zjVajQV+G#_J5y#tyX=P+351aT`1qQ5Orf@{L4)?L$>ECcrbXN#OQwcJq271rB#kE&1c7vZw)86%9$_OP?rkgl#%OQ7`nL8xY0F^ zVe;8)Q5^x2?RV=W?4y?f-5{bm1%|@1H4>o8lIsS#mo<9Cq{L<|#qQ?5gqrHJM>Xg; zbyNxBg-O{gMMzy#Q0?h@{+mTOFTFIX30w%D9sJZ0!mdFO^xakmVV;tS&$#nY7u0B8 zL`(o676P`m)`8`-Cv@=r1%6oXhlyXX&wOKhZ;>k?!sF15_LZHV5jR))X1JvExo-311a5g^?=C@Vb~4yyK#B!Q^E$zKdJ zWIdm*@MW#LoWuCt5Jono>=kmk3OmqXxUBJ3V*jh+uCOU_Gd;mAb{^$<<6kB5*p91J zTqkei>sWsy_kAn%(Bgz26_?`wYi?^*t-azLYEqQ#-^fPo*!pV5{3(GSnZy07>#P2g z>ycf$BK7~9-r<(?uR9`*Je0i$))XEf^X)DMzpqfU{=0fxq5Bu45BZ0Uxi~~p?%)kW>K&ItGV2Jy$`PUQY zS_ECP6P5>}>(P(q4s-#rT6Vy6b0G~ttqvu^U0{6p} ze%f0e+*mFNF?5%x$Iw=JJt^}{xoA(CG3L(e1N$BvmyMNi1(QH<;H9Vb3oC)t(el?5 z9zS*BdwJ{9hu-TqX2jb?+v_-y`8zSfule7Ny_*}$9zgS8g;Li2HVyKTJ92p3I7*8R z)=@wr#wP00vDlIt#W?S>()qI`WJl8W!*U4=Y+@)tFN)0zS3(V~UEV>Qc54xrrz~5% z&nBigD^Ve|filYg#pq-Q$rL@Dp3P0?I)Zq^Kh5@Dg;9_ThRpjpiuH`x z7(|?B?-JTwp<86HD_aim1kI=&@1~O~wlDicxm}{1%9nJB(!-Ni@6LC6{Tq$&n8cR4 zF@9!zPF1=Z=G~_3S+TWvWBqD}Z;4+Hp07mLS<@k*;S(({v+ZbdXEH>l;CZ$gHGZXx zm{zq_-JnIukie^ZmNAoZT;Y$CBd&WSL(sgRhizMX{pE0SnMiNX!L1Jio&iYT6K*wK zzpXrO;wGo%7;ZB%(Ty&FpWMPb6Vs7FBmeX#nGmUFlqTPoxnxL_-nqNIhfV3HrhI3>Zr;{%Y9t|9>FC>< zc;Uj<;YQ>W*Sxko`?3}?u+7C!-P2FeaApawm^jy#d{$8Vc9|(s96zoX zI;pEGZ$mic?boY~O3{sFk^$&JHZ~vR;SfD?BJdBU{ z{!`(#`XMTF9t&OW^;;`5 zG{0C#Gkj*AaL+mIeN8ojub=`FXI=KbGNUs+Mn1KP1zJItnY|daBKN5%ZWxKd@G0|U zHfJr3{slK8gB3Zgvz)#tkx(B-1o}fL6q|ef1uWl-_p)dU=u@#IePLarh!SZCNIaw} z&ig^7uO7x)T@4$0*3cx#XhHpuv0lK#XQvHygj$(3Rh4!=(ja`0_JCNW#p=V+)Sb3Wc;Z=2Mw_V_2!^RTl$J2<>VVyDs>dA7*PA8d&{ zA9ikPSxesa9doRLyP3@hW~W9O*027GDGH&2%A$v(WY11CtW-4gwp@=J4ULPidwvgs zWzWa>LCO3?oGdpFo3`W=-`x$VUmcxNy_cqeCE0(6JlV&#%uJQsT-Onqt}v-)O@=%O zMint8$4KmLVFnlyX!`Xebj5d1Sf#9OdF1@I$;%xf;%*AO+v2zK6%gg$R$E1e}mWdFbVhur05CB^j$nMs1!h4(ZQUU{~g+}*XYWgBLC{8v?SD#gNYOuxC6cJgOiT5D+n zwb=J{F7UVI2ZA&B(JoE+Jj+%!G z&J;^_SnKj(E8TPckZdg$NuQ~2cN0UbAo82I=X{&&h7(fdd>(}>l!a8V;-6HM#Z&P@ zZ%%K2xw&TGGSvKPw6Pd=Ol{~g-Mz;*FG3Nxu1-AY3ptjWa8GUd2+jR*aM-up)gHa+!{Dsr-(^Gl~6F(BvwwLd#PJDA~Gs_m}ZKhDH3~7IlQ6q*!Sko-EuTY!L<(y$amUf@>!UgYYx^TgYf)Dm(u|u0?8a!83%H}KWFwtHi7@y+S z5<5b9^7PwsLvyj)pdua!XDp6eKAhV6GymdK#*dR5FR=PyigDeZ|9#Q>sINmj=BLy2 zDJ{iAf&|_zK#VIJ5B8E6NGRS$;mFYq2nWN}keuBTmR;V5zD6E_w;|XY{TVkz-iU8z zG$-%gOY?LGmBG;b%inG+8+}-W>7OjeTBTxTTrsk_^Yr-Afjsve?~Qg})dq}tZeWK$ zH_~z8WfhytK@n+&OV5)gn%DNS;?nlyk@70_-@G1b`}iVHg6H=)^A#Dz1>9VBPedp> ziZ|FBoEF#KHI+TE&VsIdwjO@=rPDkxVm( z)8DGtYd(xXGs|7)lws!q?6Mi%Q<;9KQ>Y&&_A z%cRd%G$<=X(Pns_*DR1>`q_C4S@`_UKo=vt?aQUtq?Xy+i%QMlv$bpc-n=oH48awV zL&@1KsArwjS`+CsDUS+oQoUZ+ic}&H1~NUZOWtK0-)Lf1^zN61qil#cD(Ez}{#!!; z`k~Z$&nhgH5Xex8@Mt`h4~h>6G7qSN9Ym$Lqtad^LrUsFTX^>*gw$x3&1%GZv5f&M z39G(ZZ`L*_A4PoF{o0~#mm)Kzmqi@yN|jN0(%(Z-pm?k!`&QdcKh6TSJWU+B<-Bmp zU?hH6lzVAp#`(On20P2xPz574iUmWBaDOj`9{mtGLYF_(upHZ6)?CwJNDQM z$=y_%sCO_YHS+GeEM$0+$~;f^+@Vl<@e>v)vaHHZ2tnjgTN2pCx>!6;!ZHa}RM4|y z`3SyU&^GYy_Vog381n#C8SK`m+#Ie7riS69kv;yfIJ-QLJDrAIzL52EJX})mA*-D; zjYi%zd({TJS+$ki7Ef8N=L98(eU7zvZnVQ^M^gqVeCFZ1d6y~@mvZO{t9gja>e5>G zN4}14{J$$#`k&>TL@s%f{yKi}!`LMl*Eg0gplN!gO0J8)QD*$bhMu2s-f0MOo@f0@ zbt%dcQHS1IC`%FDi)>EDzRf1_>i6+hWfXst=KkDc%l8cBtAe~Pz2iIm(^sXTz{wWu zKvJo3CTiHrEr3gv^l2qTwN^x&+R$n9@6~GXYbuS7({j^m`@empNsWqS%|JR?wDdiG zI;cs|&6T(|1`0)2{DuYf;kyx%=f!KxHPWCk8oqxObvSKaJfaBU2mJ#n_nXg$a)f03 z-7txpC3tJ(eADYQ68>Tf>Pw2m?+fU?HMzxRaMuemIvW;~Y|#AOb-XPFKT$=p>ztlz zu~qGN4%J06Hf;VHvQvz(m9=nr?Z6@;>d7LZDQykv$W$+iW$vJxc1PUe!$@ig;pC?` z5!FE>b3TjVe=adJkm<8i#+`9G*m1r-EhTqa0N&3y<#Kp3{;EgM4_)XU!3RS^(+`e~ z*k{gCChUA%2V-OU6eH}VeF{A$2NN*keuwNtSNn7RI`FWaEitI5b(kj$q7T0@=e94# zhHpYh9}-|^L+-LiV4T}v^>VS^l;U+%-C6do?-qj`bnu07+n_spo-aR+DZ^_gx%uE3 zE<^5kJH(H!AvS0=0My}wG`WM?)bAG5y?TQB+9JAFHd{k1@#~+X=9r(e7qU=CQtZsU z#jIipbGe4@Ju~EJnm#G$npkn&f{h%0CqPyDI7-fI0fWS&t9(AZUYs?h=m|d7l{t>z z^((MaHJpXZ)aUtXZ^+JqqN!oXklXki|0MB~Wd@-?wS-uK3s`m)GxV4(N@VfgeAY4N zHe?Auj;b&^Y7XZ=pQ}O`YS;WKwH^A#&~W~Zn=N%eFoX?uh(PX*)A%lq9QAu68P1*N z^M^_)VQquiM_M%}c~SJ5G+G-wA@(P&A@g|uz7C|9qXYQxlm(AvoS4i3#_HuQgx{RP zB7UejKL#>ie$wj=#SbRR9>wtcqR#pK4vu!~;Q*aAOLUMVHZ?(IYaH#)Z4vH-88(j< z?ublUpH9C8Oy>PUmivV_$$y&TB3bLs4;M^{OwWZ2S$H2B96m@)ms$?`dz+aL7m=MZE*!?e8~kfpfE+O=1JOk~`D0_N+IY zxVO`+gP3!PM8r?3Ga#yE0)pSzcSTSQo3~>r9{6i9^kuf&OZFP0Ri@iux@Y00`LE~0 zEqN(7+Y&SCw@*p(JIp#8y<6@oF^4lMx3MVwi+ROZXCXkPi*vo$C z>flPT*yBkdcdFwAqAbVdD34# zgnNXfdBuP6$T$ACKYY=ZBDm$3|HA%Y(`yFm;&qD1uHXJ56eRrAY%S6L&ls?Lwf87l zu4I$&=?Zu(LesrgUu)zmOvy{1jBpdrb`j1fJ-IU&@4Q#_G?7NqgjweS_}+;r;^aWim*@+_$I~;w zR!&Bco+}IKAvE*!zhS+T;}e=rl%JME7yC+>W?fDee%=MGSFnCPsjaO=WfGtAEHzkb z)*T}QJL(+p8(LrQ8iYxo?QQPXz%7r!4YVvMr(_2EJr>pA>3D*XD4BsCO@jCC=cdw2 z?f$X-g?AXG^w%;x2qtJn_+Yr@Lg!nWKQ{@;zi%5{uuFXI(*;LIZM!#V59Bv_K2S~C z&n0C$-^W*_S7I-l;_4muVV)Qs{++^;j79W-^wAFD9Ao4)vl$@4^H8d?bSbb|ubl!- zd8xy%po1SDU`IU8-c?-ha`!u1_SK9$3`~aHg#qk0=B+ExMT$6$+ZZ8ldY?#hBY}TI zM}m&+LAzH!I|5rm)M}XU+YUj>Y#m@g!^Lk-)bF=P!S-n2C+ksurzLWSK?Ac#T~YXX zWoX?Zk?>d`!K;MOh<*(SkpRrjAM2B{+>Ao(?}GEghWPV9ChBP ze}51mu-$|zWdb4h{OG}0^yjWI9YNue+Mhik$GQ^ryWO;Yl|seec6oEz9sD8^EdMrp z`UI*SVmqx-rPme)d6u}r58K}wDS_Ks0r1dikT^#`$nBTGPEzGgmMr_Laka5x2G;~f zAQwL7-O=ptzc-*%rv9gm%|fi*r7rH(oXzK+(Zek!UY(ACu_YT?{TGgCMB8iODVyx5 zd*k$}dSv5*I(PH1_vd6=ecwIEwV9F5Ew2W}-Kxfy*!=n6)yvbz5z{-?=BEl}amIF@ zsoVbYD!=qoehEJLbLRpH*Q>mNcLAOLVd~S|0h%J!?=M@d1d4QXZ~hb5-Sz<~=}QG7 z_mbq{M-3em|GFmN+)$MDxhX<##JwL`-;(anSD;E`V!;Ba>F%(l!t6n)Y-Z9!r>o84 z4*SMTks4y#f7zO>>mm+~JnrzV6{%0zDWVR8T~%xz!@Q*YHAh*o_MWHUl3?hh;lQE} z-n-KJYN7EYSpEhSAWVB>MsWu_;^dzO(}}|`;nQ`xAnQV~(kB1#XryL%&j%AUpU+o+!Qj8pb!6tskgQWq}Stb?9GUL>GlF-sF z$|h63x;E6O7-cJKQs}X=hq@b5$s$p{y%(b#5;5=E+BrTEX)j~(+oN}_a)M-lY2E`o z6gJ8Vnid|Gu+1KJFN>Y;FwYZ8kUncuXv4KbVVA}#_OnIsN6kTcZ-mP|7MbmX{>HAA zyUHCUbGFvMalqnr64n97>_s7t2BY9dgEXc&lF<*MWR6x$5grGra;H)3GG{MxasONx zoV%m>;klei`uDb-9I5uVy5YF5q1+K7(V903j;O1gou={AqiEQ1&DSEWaN4ikA|nR6 z>=rki$AT#yF0Fq(5}0!~7vpwDJtDbqVeOX_PrbA6@9vCs5m@s4lr0?+cBAQ9vPqbV`+8$U4vH&(aTN~ zxfcTZ2seZj+!pm+*Y;L@?`j=J=+Db}J!2FRaMFQs0#TBOFQ?gifW6+^5eIW9Ncjx} z=vZvrS1AvvRKRtVzxE#9c<7mLINyem%YG#5fV-DqXEv*pq1P6AU=|aDKsq5AjOxs0 z{*u=$b3P|0KeIckSeUpdZ6&N-dSXoVB5yumyM}kRol(0x6M1vaXH?sRMFuW%V&hQn z_Jfgx;fuYD^$(9;ZAN8>lZAv9l7JhZOC%PHi`Y+=ywBGj5YN*y-Mk9_c5qS>6ACpEe-yU!RSj6SbnjveFM5m}d@@sQ*p1#>UgXL4HQ zJ2~FPUr=WK`YqsdST*wMqcn#`N)P!9TXqk%?{x1+-__Fk!>8h_Nip}Tfa~`Ys{C>d zr0}>@l&OzvgCJ0RHfRdBsoHIyTaswhRg&@Y2|Vsq&h^fA980hj2%bxU;kML0zMFz<_jJ{} zAXfuwlVpK97$MaO-UuLHPb^))fM;+*s@e!<+agTCn?CR%W?S2v9Duuj4sAJ`E2wjB zEbBQN4#7Z#aEn8)W6stKF;rY?f+kk$w}9CC-i-a%R-HG5Gwy?5%Tk(sB>|3EId$lt zS1ZO`_C7U_1lXP~&hyr+{fR8lMK5#A$H;pO+}C!LT;06?ZLYj_9r*6!rAsKa^u^dQ z)tGcXT*(sCmTYnY@9{Iu`?eCY!#k+7-SLv}#3gUdYMIa)o+joDtrFo*KRTv?9OmOn z``zpSx$~V+_Gv2}+(Lh^=eD&<@T|Uput+n;ryemajeQ;TSi>wun1P!nVGy~T@R#mJ z$|>|j7eD{g==?(&H!HSjo-+bDz>~P0gZLQ_SAcQN!)~wU_gKGlX9BrEq5vSGtL`z6 z`7l2yaD#8L8;I-H|4`;p8^9wX2%I1iTpj+z=On$qv-FzT90X>q%mPBQfd^ro*ekvT zB1U$RJc|D0&)BKb2|Mo>NDyilzt~v2(r_b1oi+0#kqQV5BnN?@?&Zi+B*j&#lQ$z* zB)7LpuAWy#GM;=K4i4;NGeZOYAzW0)g^yPQSz|*fu^k<7PH{4Gr zZg^}?-1vS13as8wuY2a&k|F%nyWs2uh|b5$sR#mWUoK}f47{S>9xY56I0dq(iFrji zi=FxJd7JvuhEyga#6)cO3QL4X9c#<9j>&dPS@R!fkgzrRW-zC6HUnr^0cd;Qu4eK@ zIT&dIsAXnpTa*S>yWi52M}cwrt*jA;EjJ5=nd9#KN#ff;j(*(5=$vN5|2_Aqum)+S zt;?inQ*2&E#Q7eF_3{%KD-XMAGA$SRf{)i#0@y7+0om4g7xhT?7i-NR`D+7s2SWSZ z5pj@jHzf!mFLpPFO0Yoj!KGKa90Hg{*mL_YK;o6aJ>Fw3zXVJ1%CO<9*QXVo>ZEdV zKE*Z&U>DOp_SQTN)%OE*?tben=Q2$shbtl}_|RXAJ^@%;&3-=qd{1+Rx4PEDY}05^ zG*a;9H|;LSvkBgk^zz$$H_sH?$X2ufu)7TncN7GK+Rn+2r%nNs43p>p6BJo^6aGk9 zW3b*t(;=oW#NnH^c}SZTydE!`S~juQlGO~y6@)13C-dF zeSarzsw0|$*o6+t!sl*%SG0c#Vdwo!a#zxP^gEZtX z%vdI7P9&d?ivTL%9t3tBg}3E2);4>q`8uFi2JG=(&3~fhy`oWbj^I`=k6$Y;7?#QCMVEp{LXdY2Fie1nVy_T*k%;*`_o;9|86Uu8BS{Ii+?h|r zpZ7@ImR>`dO!Wg$$3To(PB`b6=u)Hw56-XvIv1z@w7XQenMY2=aeJrPpWaDdV%cYC zaI)3_$XN2zo~)f@Lxz5L>hrm}uaR{?zq7%eDcsd3j>nZ1(=B58PGR_pNj533 zB8MsSmht(tRqP3%1VSeio=t%XkqQcr?tbIHlJgO7o`QH)e+L6W*%AHpGjH+=yN0>H zf+<@kIUxSOUzdK|_-e;uyng63MO_`3fD#336g9iO!OX8xV1jHSfRvo|vA@s*q=em3 z&&kbW@v6r?P1luAX{U|rBm@OIKpE{%$>%Q!@-^7G$>293*MTU{m&)a9A?3vLjXkmR z*peHzX;l+PauPKBqTeDzSD6wfCtuhw_&Of zt>$DHgS?_hN{BGku^x}ZdiQs~>aovqXPxXerOzR{ix7?YAsupk>^6zi_h-tvpeUg8 zA0}lYb*E_-gY_K>I9eycl~gSvP5Un$5tG{fJxy~sSO6=&EBMa;IWS}KrQb^!RGyO z2f(4c?lpW~xl1S9Bh-aR5EAI%UVILzJJ}t1J`U)YFMxOS_pz~~RAcS-kP>!vBl|&l zc`ReWIQ6_oo0Y<4}1%51RVMD?wxxyf-g7jSC!drj04(sow5pt`4;VI*kE^Fc6pTo zR9x0>xTUD$wInr09Qw;qy-~aW2B=Yb(nRbBP(!m$`sWeIlJv49;Oji1 zbp%8_q_zP*JKsw?MCIs`{qM)QL?@m%C#z~I`+JpT>*l6)@o_F)O%}Y}q*Q;$H2o3% zotO~R4`0tG)7BHAWe59#tj$kf?i94xWHbp>j7u8`!zKBgQA~DfuhmZ z2c0DMbj$V3thYappCy$7pQBU@1af~KyS?+u0zViLL`un6w{1nK7(rOsHD%r3M(3bg zDl4Q+L}@k{yUV#N|8Ivz@c~No+?TnOH&%Pvw07fqOMwo%`{o1R*DX1u0asd7YYf#7 z19gY~az9kBO9GSb6JN8vofvqpN|1zt^*Gd`T*1z!3NR90MqCG zS!mrJkxs!qKydeb&I)s0wa9eW-&G#K1GE@8@OtC@ z;hN;z0=*(7W%jvMTL&We_Z=fwSiGnZ<11v42Dwf^}0!1*2jP-)7kyC2B_XPak^ zm>d35UPqF-?gbH{NfP%L7)|ZY+wzSWY7vho2?n7B90r2?4vAD+AwlP={Xd7fk8(Fv z<(~!Iw^Af(H$AaaybDsE#@0Dm7MvdY;1R32lz_wrbS7t-KxT}WQ8nfV8b59!_0;e9 ztKw&_J10h(MPlBPTfmbPXAfB!%Ps(euZ1; z=vXHfFEr`nyZj^@@{pZrEPfP-^T)=%=VL;Jg4ef+?`((_)Z1FZ6%Pp!N;%dn1sg_7 zqA7HD!uo^;kxw|M1%AlX4?0unCS2lJa!!cXKRl4MDDg*)HUMKO7q$#Vgm(;frJ15H9#nWxy)HL~-g}ytrq?W@AFCO^y*uE2 zO1~;6^G;&FF!`o(-GWHGS-JgliP9DZRWXWu65PD|0mo?!vsbr@|!r1{a<9sUt z>-mnf(i(9Ie!ly-v;yu_IFjP#4GOzm=aiC_rNkapLCOg>DVuS*w!Y_{s`zefmt5Rq zBK1Aim=e+3c1k}cWmzCQ@fbWF@>{U^vIUyuXe-J(3cX7Z#p76{TG028n0}_NQ!Sst)2GS1S5*9g^QsON7dU;*=Yb^CA2Q3rV^85^MpK3G znAqmf{!c@jl2(%(%m*XKLtCNGEpHI-`cA%4J|y`z?$ik!>HwpVEXN^D$vu36})>WfZ*L1f{wbWBH~h?@md3n3o0sqZEF-i*w#h3hPc>K-KQHIuuEvA*PO!z_qSZr?Sx zNnmuJWsWGC5WY>)V49T@1sdBPl+O1>*rVm*tHQEz9gtSGLV9W2bg3OTk`osh`@731 z$^WdX05lm->ss?DBD^8Ua5~^?nti1Ti#)+)lUPo6j;AbX_FRK>^SMIRCZVC9O=eLH zg$C(7D(x+CHG|6F@gTn5eET-1xKKoIem%D0beuH|ZXvrON|%$+cuGHQwq78+lmv1P zguFd#qCTz1`jFHegiWYje%{(gxFGNj(K{W-pMuQR$gx}IvBiQ^uVGYv2B%eb%Xh0k zq9KR|PDbJ%)<|95dIbsS?{NIp=t0w=Yy-;&_KAICOWi|U$~G+_Ss@a~YW7TX`EgMkVrWh-Q*Q=am)Uus?p(`k-G1FxK3t!|o5b)dy4rCmKw2?6Csc8W z-ojVQPK(J|c~8rdKv^)i>B9u{Fm0oFo5zAE6(^VziE5R!RUSU;#L6Qv3vD(C6x8NV z@#I6R>3?uXZTQfkJ4w!KvMhV`@_LZP%vwTSLv{E0uoe5}e;HcmHSKpDX>%V%bN9_L zYob)d;OsAaZq)NVMjzMhZ*)W6mU1^F-;tdy>cqWb@>TY89r(gGuVCv>eFM>uPEr^V ztkwPfEVLhIbO5Jav%nOwSEMnmXb2dGxD^F`vQX$<$7)WvWZiL{m+GG?DHT9Lr{AnB zi1nD|6)CjT@h8{vYIZ>0p0GX`6X5xNQAHUsx_Ba6EGzm$`hq5$F@xAqxJ=f5{#h(H z)3ulsxGKl>B3Xa740}JhndBcKT?KeBW z>q1TNb~ZG0u@!4G>d~(m;YX52K@ARZcj49DahfoCu=TMyf6AupwbA4ZPb+#N@JlIA zyKY>Qd#}urXy-cP>>Q>s;5@$iaYT75>v2hDH*-pRqoId0K|4@j-@i|9#m>adQMoQo}WhQXxsU_^2X=SovaYL1zz4 z`Tgy(I`3h`K4;xmLSELx2}3S0HT<2?)Bp^sfbs9oFY_NT8^2N=H|5c<6~XctjH9-P zo<;bsocb3xN(SP!?i$jVNFZ~|io<5h68aoscWr{$QP8Eu1gEYlql>eFr6ehm&vsY& zYD9d+qUw$fu^_UM%v|MecurB>o{Xk{CbeRTwnZ58Wm{e`@t@uzDOlmJDoK6&B}l_h zZbClD->UpnubkkZ)8IV@PrytQb!(rMG_M1&N(S!5HnVx-tQVy&m934kr%HSHNq`&u zT*=3RkMcnR?Cei1xF7h_VdS-i;6~1e<7TAF>E#iD%&VM|?lTYhA8C5dbApw~9R20# z2<}Nu4(*LF>{2_>*(c7QC}gjP>{3g{ew3Fa`gr1atE$|*rB=)qb` zIvL|-?`WjMh)*0sv76hPMq`=3_M$n&8H7{zc=AVXyouFd#axz_X`=?;AmH|GxO*z1VWkNJ9NPfQwubuBJ6p?HRj94MBLlv86tH3x+!A3i#C-WPhCfZ zP84wKAr_WXw-GlpJ_rxMV8JHTn^#|}3B z$T9+iu7gT@2u$hR7)@WsXuj5evDJmMq@pQ2*gd>FObNq2Y&K3^U6ICDPDA93^iD3%0o#vf;+}{SdECOK4p7!%-vPm zRw>jG-sZjg{?%O+9|}5d&^-3k(B0P7p&Ms*QMyXRYRcU#90cP=(jTe~ zr=NS2>1H9R%Q3C9JB_!qA zJ{0=BmB||tG`2i3eU{@)*9bSs6d#U}-Y{{~nk-QQYmPtUWFYQoK35t7NaJBfriKUB zQbcVF1~NH)-C{%w2H&OKboy}>Rhd`$<{zJxnOZ*FG6yS!zhY~JFht0Dzba7bhDd!M zM4|^SYA{yjmIC%}@hqL|_kb^OFduKa zgx2|T7Q98$I3$+pBvTGV1_<$@pi`WEalc(|lNfr&^Bc)(N%U?^We(tTjnKyB2xu}> z&bTm9Zx3CoiWw(Qi_{G=sjIRgo0yo8=@bo##b)sXcD=cDQ1#*rETMZ8r%*m)RXp{C zEy4$gH$a3rWw&FY!|eQpCjQx(TThmr%R&vsHkJY{3?s@Z3a3@ z6}2=DIbZI>RW)=b%*$sEScTFwcZ8s*MD6@$f>gfluR7fup{YabSviguTrMf5hRp?( z9mNqzXXOJ)n3n~{*fHg}5a*!0dMD1I;;PU(`39e6o}w&YIJcVUlBn`gE5uA)dZ}KF zxepXIWL(Z470e$l-sC2L29UAOaiG}DZpG#Uc(iQJWk|1b8EpZ{yJWoa_c~}kRALkC z+EnR99YBrBKd!ArAQn~@Yd2ZdEP4xYi_cfX934ssgcR;tPzK1v4$yj)#jk! zsKmIDZ=xTB5LLL1R>Oiy?JU63jh%(|;YvvOdv$_=0Cp`Hp@@-My!`x4=(^LAsBH1D z&PAE{s21Syd=2~U&L}M><_*MIZ<9sMLM3%*ye2JW?bBRWDSqkbytFBhhBV^Y-2;LO z?r5*e4IqtSr#m zwZq88IkNLGt9E;rGXf#B@UDGLX~?WLRDE)jjhjs}GkSdzKRr6GH+z^=NV-9XJR-Ui z+bIzbKrI{QU*=y4ikkc?JXRa*)IeRszQle)pAosZg1Z^TLu!Tq?zD^98<#Z>lVb4j)>}3l}fyEmN8`PC#95a8aQK zG3_N7ak^lTPT6;(3bt!cz&JL0Kt6?nXYl=9g?Ryk>_KW{q^Fnsj43RICpw}NYZN;2 z4>=GkqF0&edH;q0@f^qlv=@`h*}iJUE~V*FW_L$(0kTJwigX6Yd5p9}GBdQ9Ok#zC zA`r-%{6WYC(TGhEjeObUUhI}HWCdVVt9p7TR*aCl-+r#XzW$?F;WMU)j%(3f{3z&( z#$bdAsct_NV#4)jR;(!5T@S#+)x9?kB(u-w1e2?p!udQxlk;7S4Uk^bNd|jm>S`u5 z{*SBF)S$;l0>Xiu;Ake(2;rO7M_l(&8@*TtSnKm@44FIzv*q&#}ZLM-vvm^bnO; ztR)dC9AxuNGJQ_z5Mbg0BBEf-A+oe@*Oec`^5f+urp z#+tGR5?O@qlO)67RsBOzdd-FJbYiok1PLp(C*zodkoT!cHI3_v{OM|E$6|7yosRI3 zy?n#Alu4@RK4WQ4OH{($uAOGi{SXCBV)sZZdLpr|z&vFoIc667`{V{S7-#vt%|*w+ zi%87LWefO8k4o$kP|&;uo{C4@oS%QGM{O}Knw!qm4vDmj`sn0Vjo8S(n1~^Nt04d> zo@R*Hg)emaZX`!&80#{PnJrNy2<8A0RM;C69Z+;3H!=9}SormFzQ9>&JUl!)Iy#>w zr7RUT`W4FzPVj9aK}il;%`=Y{NShrW%ve$PEGYB22v-{H{_hN2AQDObApbovqlkSQw)*SL2v}^yy zB$6&`ofAx5AVW2SGN&i{v#7Qrw8wA?CAV}_#qetMUTqa8c(>SeaN8j39=$7+HwtuX z*%4ZiTf}0soqkGx;?O32Q_Sm}mN-|1a&aP~Qa=s%XfzutQP+3uGRr@mfYK&r%6Nvw zl#Og!XNY~7xZ@GyeH-pWVylid+B)^5@D?T!F?zvcO7!C6C5WSO;B=<6_j7OB zQYjm1*6vkbNx`V!iFNA?Y1Srx?B z61rBKXpDAd2mcW}$wf5lglqMBb2b9iew&8*da*_lAWQ4CX{-fIIP@*`_idLQjF&{! zJOjtxxzNi&-Xgjq<9w!okIX8w?5*o9iRN0;Z%K?*Z1RoBCG#3Y2ZJ^{A!bJ)#<2E& zHUOSdHpZ9It(Jf;HzxY1?OSpE{(1_Fy6pIDC)TOB?*p&b@PuEl_THJpv2vx>#asyP z$(xRCfnY@Ml_&D{5sN@1X^TObPUaVw)| z17!~8N3M_a*9J0H%Q~?Y+kq>a&Ax{1V?OB`_9EidhgR>R0^(eTu$@?yC!TW$Fo_hM z>I?GKdqtDkK~5Z~EiH`(4MbS$=%lO$J{=e|a#{0F8k@u5(%F}?Z``3!`_`1R=PP`| zI9bRyF^H`g7)^b_dFm`z*ABCJYBT?!rQnwT=*&BH6O4y12Y+mfOsAS~c>hExPXD|4 z46fuW+2rbtP&^!vuxv2kuH+-Ovaigklt&oTx)#pz@W8bl!4&&LqC5wF?SopQ8`9r5sc4IJtj%P4w7OG&ZdDaFohp@+g@oeN1IbDJ@p_uotGbTp5zcH1q8@|qAm)bby%a!E$A1+J4B$}kag92GGF zn^Zh)nz>?vMCIJ4rEG(|g(uyLxfsXxitj3V%q(?c^T~E)^QMmZll<1#$o(0nl6S{J z<~%9R49pw#*)3$wGTxwTc;wr^uXb`vY#NcMx;u}KC-0R%VJ=p7XXXfH)f@LrM9g@M zSFy3mNl*#PuC29qVgqdKj_bqOo2P~8`WWhcRoY9;+TJ4WHdmkj z$b>DFDFnAykF470JqMRLVh9lwHvsgxFL3+G(+V~~xuTN8Di z`5aeZ+Ot(e#t@#|X}oaexD>GHT=3CPgqdtp<7m=jZl5(SOS-~yLBKxIl?$wEG0&S! zay-hD=kZ}kYc9Y;Lw^6{37vpPtm8#HxS-P_>*Hwgd`VQD5YezQF_Q9-yvx04fHy7z zsJI(dEndAlaFm^CG15d{a}Rb3Kr-+5Twx^M*>9vEH~U*rr3K!HCcih4W>4!!93?&fjvM&~EF0StmKMCtUr*Ue&06Z5ANS#NKa+Eu5Eb`BmF_2V!N#KZOtynp7x=$Vy%f0+A{$r zj|5sSH1KMgto4`x-fb&#%HB1v89o1jncuRnQ{_!vC6!c*0@+E#XT-*_ja@K|ttpd( zGvzQ;VwIPmtVub$tt92slgNx#k2J!kxUJU-&oH2a`HcG8xpG7u68iUK87Z>~}H&$-Vy z5%zy$9}~*x%MV;qmjr5;h0}Y5x5F>y92b-h%FhCFbpWh*7RC*wiuKI(l1KA#IEnQU zO{@ujPV~A#wmsu!(MH9UurWF!mF9aGGUC{WzRq&TMD4hCn5RGWy~z@k={rP_lI{8p z>K&?)ESb*M?J}OQGK~B8sC>|R$SK~a35o`lNWI^c;y>f7G|&#=)_KicYe?7`Iq>c= zn6neo%HmLeA%qj9YN|omdX0wx(a)27Se(loPxug=g}|~#w0O~T^A&mDpbRtdos80q zPi2%@pjmUJ*p^uJBiaJ1+)5#%NQ9!b$kf~{Hhf!Ux=^OG#OC+-?CwnwE(Zghxee^p zXFJX}K;Gv=2bX92*I~!~04Dl;!@#1}wwW^rp1HT`QlYiR(TJPN0@AOpJNHaq0~h7k~=j$IZPPiFJkNC z&9He3iFAzug}&(#1%?V6(2PV*nN~u-MJfL4cK5?k!wBgTedD_ zltp>Y9X&n{4i0w36eZqoi{}B;Ygz|?{Ai`z9=R7WGgxo7{G@2y1{|-}b#_^d!`Osr z;F%SVKk<}^|DsM~tk8$Gul!Su8jiYi`y{6J&P?kAr`HFK58j{Bug{q%g&!7(M~#<` znSOCrv)R?>RL_8GxsG071Yh_rv2x2w!%wd5AA;r;?B9G+olOVTkYn^@0BTKBDEoU(VwUBDwEwh_4-DxfR%Y(L(Lz3mE|5&Z4#N zeC<$I$RimXT=@Pmtf)$wcgbxqp3kEEjUTH^{?+Dft~Mm-pB*l_CcfhY)5*k9UH!+c zZYr23FVeF5cq|_ zF9d!e@C$)o2>ky;Ad%Va`&n8YqOt#^?*5`Gh49FyYY7wYt7^Oy{Kkg9S`TeV*F5bx zJ}vozw6-{Yh;-8lWmAji-$V?w486}v1jE%crnh4f*yg@Z(gMS51x+X1q6#!f?937y{gN)P!{hRSzW@852FV@#WW&&l_vH$LX)oJ z$TZe?Hvt)aJn1Fs-@JZWJGM&Q)04YA6y?Kxo>sYYacwlPlCs)TaToYN!$BDRT2*q8Qo@1@AAL8Jvp|qcs+dpOSXt}MOhAtC6->YO4*|u;RFDAcZHL@)YY-%?J zyL!x#lJ7pEY^oa0n@?SE=CJ1LC{kyqJk3GD#>$;-H$D*PdF7La~?4fs-Oih=`<-`dc)L%C5 zZo2EH<<@prW_;r=cCWK}JwQWZa>L0*qJE=$!zRuB{#rHsLz0}EiGL?HdO5*)nvoH| zYsTYe;(&7wxk|#*y_lMwY}Nt|4xQo#Dfp_u^~?-7e7{NABOkqlD)m_m-A|p)1eoP0 z1mtqLPo@Tyx2v;G{rdO4kegIpdl^F~ZeIrAQ3+($@Bp5-$-_PhXM&}DW6SZ!BXJSN zHI{mq*UGT?W3ua|19y|-@=aVC_Xx0Agw_>xc1xngUz+_c)NBE&%<|j1wleNaOBU=U zxPy+f9^t`|(=D}3C!JUqp{&E~sJfY>ZM?-JxW#9RX;1g|`}A7Y?-1;H+-^SRcaKZm z@6VoNC3E*>=Z8ZHX5CZg<5d&+Ctb|vn@Z&_ymg5Jad{D+qPu`a)H(-9pyV5Wm^N<9 za1on77RZNN6tcr(By;x)+!Bs0ywT6D)mB{+1~NBzLf+Ac_c>>72dqo$^jEm!`^V;| z;Q4q+B+P&2wA!UE5RK#eQtbLWxm=S~m)c8=SbfPIPmSg2eP2x>tA4#kn_+qNw~n}_ zDA0h%1h8sj)!B6K>DomCF7@IV#JhHYWR>UA0Q0ORsZCFQwmh(gM^k~kt9eT!b5h^^ zFd>~s@Kk|Ier)4TC?-EaDdKrf)~7>w%FVS?;kon4^={=4FXcY7_i*)>%RK|sgzl&% zsKsR}Zeab$K}fWY-`8`Ck3SyDDDo_Pd73#jFn_jgVeXnoPQDtJddU|LZ*(WvdWw^5aA7Jq>q9}HiPGS?{<-&S&jg11y zSuVDyr`kR_oJj~}`tohhDEs9B6OHSj-p`A@E;j%5>lXsQ5cq|_F9d!e@IOc3(|6k& zMAy#SUq1ENyvqDP@A<3cF9d!e@C$+eM+E9`KMK3vj&E#ZghJaJ>sz0n*&0~j!=dcZ z^Z)tyI1yaD@PA+C`PXGZL425mxfR;j9txAN(nlMM85`Of8RNs`jBQNOW>9Vpd|_ey zf8Ek4mU)4bx45^Mn@5TL(qm;=VxcD}Wp)8XgsjL1(FWQC=Ai4BLSKVZ{+kT$pT<*h zeqjuSDe9X7!yt`~%=I7JIzhGAffl?xd~66VPAD9~&BnnC*TIJ=8KZ0+>0U{XNPhDU6ju01OCCD*xI0tZO|y_`J*Y}1NXNFenL6_-R56-oc}(@s#5Ho)2XT5ctoLcz^2f1Yil; z)*i~h#VTcNZfb@`X)~xGwHcw()<9n<+7_xPCIJN=!O__MoEO03v$JvVu(3n6888?O z+Y2KTR<2g;9*ExBQbzoPzEu6;B8U_J0CkI2L~4)oQs*Alb)TO9%%B{ zpyswV|F?FE_O?b2hQO%*Q|gq>jIFFL&}fE6zuYboTw=VB q`Pe1c`Na7U?C?kI;_SjYf6p|1d-Pv8@$qp1EQRCK(uylc;Qud9H7!2? literal 455140 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%0Da{%bv?tXD0O|A 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℘(O(KcT4N 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 z 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%0Da{%bv?tXD0O|A zwnmHQe;2Ar@U6GL4dU^{ZQ#AV0Ht&*cTRFL6Byxq>nEnms;qG#ASfa+8n z=Ci6QE70X-8Z5L}t(I1GVbZbB>LUhq&9V}6i^nkz=I z@W+%-twB2KUGi7S+XiwZLW1fXvti^EfELWGSWgWMgt6LnOj$It= zlmr%62Nxbk*whV~HS*>Sf@sWRW!bue7} zptR%9ZOD)_N7lQ5=$+F=l-sisn=!*|+;TJ^JXXF0QvOz2A?!brkj>q*d|yu?|6t=? z=1C>arE7yj+RyC47NlK_P?5j6!TfN$6Sctx(&7qSdZS0+48$lD7_q5+AVYrft3o%$ zTw#qxQm1_}s^_~jIz_KBAFKI)&4np_;-!i+dm13^zhTs1n(C!#Gv#JVx(kD{a)dRq z6ekC~7wt^Brb?LDyF5X&ej&pSUc>)r-txh|c9k}bN0vPy)jo1oF- zEgO=-sLxqIRQcKk=&+j6hXd_)GY=o)!N?HsI6MI0ky_vWK-?pdA+F<{;zIKg(-RJD zAZiWdnDZw1^nudW&p6q|4Emx=7Z#!XeZaCD63cDGJU;*DI7-7%R6JUA+qCUaB-LuwuZSOtMgY=z1bt z5h43!HEr!e0B87C8X-Gz?Vsmo9y|IM4S_}Z6*^6*)1KBiho=elbeZ5lJ@RSrv%nA+ zac#1g^fkFXh{>6JCi9E!Yx55HQX$(x(Oj2mH>0R6H^bB$ z`3n~+yV-HWB+s`ly59sm)%a58YsuvZmy#cOmqNk0K(p)XF_&J$qBb@5tNXaA#jiH_ zPWV2P??PveJ2?78m$5)vPnF}ETWruvoo>>X5%WhRHu#s=q5SmP6}Q-UZ*)&z zJ>Ar$IWxXmpfj!cNKVc>>X)~Pseoiivg!pe8PsHW4KpHp0Nib&X3j`?A4m4>KyHSc zl?6G_bi^_|3Thgmi1^Ii1iAL3d{3swe31xxE-yM+I3Jq&cKy00$(yZ~YRF|n{0NS_ z)4MAyXuv7QGNm`HRDFhRs9#4Jqq5lX*k(srBeS@;cyP&G{>FEqriMU?3W-W1eCix6 z=wS}C;h3mDq93K|<8_*TwC0tn?g)FBSs<;@KKEs%C_W@XcrtRXj}D=J{sH};X1?-a zN)ay(tiMLmE=CnEB>f?|XZuxUTFZkVm+Cy#WYW3;nS`Ju(Dm#|@@0%x z0UE|E1t+kka`n5PX8EF%!P>*W4{K32C#4}JWnmXib+1;08cU*4rKE=5(H%9({_Ypp zF!VEYvPYVF8MEmajn9JEs9~L$A_{#WG`*g_b|VeSnaN20lFMwrPTlDdgOFm^zNnP; zYr{=#`dqazjkm-UC*SbW%I@hzIY(>Yuf6SvKH?N{l#ekD%lG212RROh)U`c;;b*{E%)M>P zfG;8Vi4vRjvm@A%_^Rm!!t>(}ssj|XjH;hwkc`d=+Xbn{D4^cW}TtJzrRCXN=(<#(+ z<$p%6w)shAKHsy!t3g%`JEF6E=be2bcxu@nJmsHA9B2Qjl4^PVrX&8&%hu5uRrg(> zx#?d*7d1sZ_Q)!&ZO9y?ZRZ@_9QG+& z@zi)iQmchs;B2!jbT6ox#QX*NH0GT%ngrfP>HWt6B}M0TNg^3q~q5*UQKM+WI%k#p7K z|6E}w-ucpuM8a@tNEnp^`Cl1f{Xc{Qeiz2=D1TRq89XI_Fxax?S^Uo#s)2#_{Jp$Y z=@VNhx94*=;M|zu>!6ey8-bum(~Rj@HF67gSCGdh*sAfp3>5pp+%MB&HDJ{Fjj#Dp z#pg5wl6KQJr)O*CK>4c9RTAHYMEeMQHEym!_eFR?mNywMkhBY{`LLn)V0MS?k~&C% z;JNr2VLK~IVkGo%(DqaDr5zKqba*wbMWShYDu!DkS|C$2*n?P=szn@vNT__Y>|D!E z>Twz}e8qalmQsA*Z&g2f)Y>_`eRtoG8?G)Ey#yJ3`i}gnkv=`;i*3ioIPQT>o$=gq z04Q*NU@)>?BBZynTB zPYE8|;ZEN>S*HwZTFVAGTU5!=wV*`P6o~?9@?(xrfMr_11*QUm! zF@EW1pOxIiNOQssOrrvhzZDLzm~K+fu3qq6`AkEjU#dB1+euD_TcIDV|zA+FG=2AGqn z>#@-bJ3f)9)(~To0S5_pL~$>+99AqcI;59fdn5fPiRgvHhXmI;O) zf>0Le@&2zPD_qpZ067mCs&knfO8nA;Z!;@io!O5&731KcJu4epWtixK@Jnkwscy+@ zsNA8z{sUD&d?57l5HiA=5;;{t_w_IFl)LKVgkP5(Hw(X#?M;4|oN^VKp!p6>FkAR^Tg&9EfnG@QeWZ!<*K9f!Lw}?;KW;fK$<2f_;~iZ` ztBXLeT>TEU3$r#YDn>Wr{oq0BmDI7m6^4_y!!lV>J$M&u}AMcqf zF17G%lZ;)??+wzhyt(m{n;WU%{YKsa);MoE{;(Y^h&%$m_b$NGjET}WB7+YD^79pG ze;W9B?}E(I0Mi||z2n!RcqVi&!7sM}C&8lx#Mt zaML5d?mJ9UWo+KatZbLRXekLb8YeprmLfgt2J^f>ot&z9wWbaiu9 z=np-km2f15<@X4S7*22%_><|e7BOI2ESX=*cU>`nPvd%Prn^$awQji$=0FNF8GN}J$ac{ zb@NZymh?!XF+|hO{waK2J>w7Z6CgcZ&wt&YaoT_WuZEt+{$2~InR2M1BelqxA>L)0 zWb=Ga7Mz|RyqL*-vsvnpGX2yc#c*f&LG~B7Fswsz+QGWirznMww?ms*o@_y5XhX34 z&-q~UP#2I^WxfjeN&CT-GsTg($wFL^20tgj9jHy)HR&bG>k=fN9QQ@6Pvtu+KYih0 z9~kwcScZBRq0_VK)Ii#a%qm%GP%D_wfEYD@%3BYd)FQsL5hnDq0AdW*eK z(0Sw@I{7K|knet*BPF>U>0_-uZtT`V!s}WC&C2tE*YSwtnZ$9j`9l&X>ZYmFSQeT~$cQ)T~ zk*kn*w^C3~i`fbYZ8uFo2gv`C^*y}SVniqYXGE#LEK#JAs zjuBvym7CgusqinXS9TSSOTkdxqrQuq!Qdg{kk@TC|7@tMDt>2Ax^^nh>t&Xkrd!a} zdd~Dgh+AxGc4b?xWfe5(u`fDjHJ^dQ_%5lZWB+kaCF=F{e;PxbR?6q4?f%=JKHqh) ztz}&GWf+)s?|S|r@#4|E=;Y4S-g%1)x%XS#BjxZrvfb4dl){Uma6jb+V0mfsU|)IZ zs0!!`)I=aM{$(h=^f!kLupJ=&xJwGa+%U;-n%X4zF{Fm#+9yQo>LZ~TCH&QpvK#EJ zOV4o~TJb&EV+1(L^B?;(fVa|ZWN6^tU$U*L^*?Cmn&wIWqBvw# zv22-_8VM6)eI_ifP3DIICeCF?DN6#D*)BV_X?^ zdU9ySM0KZT1w3|7v8SYx=uLE(I+uzu_o>2^FsRx>K={#x9)2iZ}1GcYOefj~Y zPSTC)`L57lbJJ9E)wWDJ;z>6=a}gyFPZdjBGC>6jUTXBzFmJdXMPW3V<@74uRew_K zrPc(SSGg7Nalc)o`Rg*gVl7|=b0MbMKTyKcGqtcdiAP?SvMxY=M3B&4?M+@eyfWdW zfk7R7yMqMb^=AptefZO$f>`Y=_xRMyz3wJz1v-Pmmhyw6;5DFWB!V&=N-_H5$IC)O z3&ybWp0jGy$D@~_o0KC)eRb8(Wm6ofUspWiMRMbzNg5EJ=}`ETJA|n5j62g)|Ea?% zVk?|hIap;;i@65GHZ*3Mw*?*6_?$SX_1=?SC)}%kAp<_R`RWFKs=0KnzLH=|+EXG# z&anbM7j}-;>bdlFvF%@}+7(u>6>C>~L+nmonNFDA@NNDgHy)fY8WW0V?cca1lhY?dxsS5cy9xTI zcW|)9DK*`r9tYd=&fyh|^tCq-*H(&5Zj;i6^Q-4;YMw>EAYzVyQN6ue8llR^uk$ASJ+Cgg! zPHcMmO}fgD4n_ANVn!y7w`y#k@JO(RF2d^aZ#|`ygJlfX(xNbVa^Ugoxfkmbj z_N8vP(90qsUH z|8{|?j`JKfrgm)DH{1%S!R$vRg6Ap<50T>7lDGr@wVk^33O<5iz_is$MPu|j*{W#N z%m^D2dw}1A{q!+cfH}uO-0d6BD7Qt(vHSF+*j6EY{0bex7i^ z0~e5c$xYfA!a>jKJR;1a;LlBOJ$)0VXewN%J-aZ zH!6N3Ay@V(Ru-`$9*tl##CvYXC4%FwET(uIp{=+_n8ptXm2>r4x>Gg+c?)w`;N9SW z??OTRV#}_w<*V0xEs9w!6*^`qf)W{+k9P2b(y6gm#xm}8%8f!!l9ZcAR0b?1F zwFX1FP(tsyg}R3+Q!bF?2#a{f3LlQ3>{@z_0RWS&r=FW#S{sTSva9w zH3!nwHG|<}N{;3&O;eTEL`J^wLnf@*Uq0SY^XvcJO{;*3ZISJWcq38iLxNg(P(No> z(a{pLLychEBd>7imQ{s%uCj<_3{1hm%v-wBXv@t9zAL`79#JKg|AV2@yDEb&+yczu zczf*fahPb4->F3anfqX&$7!c%RB-XF=cnp!vY(>)Iv1H9S0+RB`1_TLV@b0gNtOT+ z*02iy89VPsH+$(kNAWiT4~D&#kp!cRuDJ)j2+Ar?4K{Hxs*u~A1Yf-6RACpH5404!)Z0o#R;(**OWT=xwv1SmpC*uN-4iESBXRilDT%u^4DWLu6j6sN^v8rE_$6!M?Jetc%`eZ zc1T0*D#k?W-&HcXzKTVanwD;9T#&wS7jvFHmYKumH1f;H zryZWVsN~DZaveObUJBM=NCvmPZoyu_EF1}q=r??t+-_TK9+W6H($I6N0BQGy%3$+eH@)qye5dI`wB8YipG z>X7n0R=~)f?gz}Qr>d!mn}5%SqK1^0_R|ZAO$R&rhU17%(LRf77ne)F3v~l`xhUC^ znFiYG>W1YkW^5nk__4`mJp2we0pCT5=xbQA0GiFE*TosnSvP678Nc;foL_Je(>>@8 z4B6waQ?Rl2Y0vut?EoB$?9QZkL<{qf%iB)SP}kjR~m z8&gi2?i2j*V!p0*?&*y4dZ2rD7<1{n(BuAQaqB49;I}HWZo(B@Swv$6q{a^U4ywB6 z*|2l`+-WpBS%U6j$r<5%TcH6D+SY&sl=^Cn($v1itEpKI`Cr$Kr^-SP@JC7S!wR5V zN#L|E!@yU(Tj{ASt{MYsE!R z;f;n2rY!c@U>a6?nIaJ;mH5g1N5bokThGrFt4?H8IM?KZn=`>WbdoNu=&`TctJ)^1 zxTbVVLUqycN-_Go5IUaD%AXY!S;SqTYq@f_pDv~qx+9yOw)|@o7>=y9>fhy8R!OoF zAgM^39i6{e+Dz_|OCwqB-BP<8x*7)Pntv*EM(w|RXYqKsIq1z-Pv_Ct0H;L9qR)%d z{jf<5FoA#V`AbxF*!Fj!1>W`BRJj&&-&sd7*Zy`w&QWX#Kk{&>NJ?U9&?9ogbilwM zKv=Oo?qkqsoX>1Zfh2Mhewa9IM6Aj8*s;)>R0EW*-YDuLtk7$vm*Z8uH!fUOQI(eJ zNrXg#m@3N!kx6M(Sl7VOE;Ih}v_%f7jNCY{#te z)I@3UW>0kFEL9_rQ>?mtwKFVl=Df~YQkvM4{|$NW{~i38TtRirTN9`cm%N+<-i=0# zTc{A_1Vs7q|2V9ksJbN55n4&;(#Kvo=uF!vq9*tUCPTtnG;Owr@|r%C%ro!STabyw zG1D7-!XmQ4h0O8W54Ws#@YIzJ!zOu`X7aB3>;fYW8E-!$f}TSDqG&GUuq0L+r!%1= z8ZM$r^ji4t@cDgb?qLdd@ODaF?P47+N>7#qj)Xx;k*3ibuiZcE97SFD>4kPpP?}6# zrOP~Bye?;wnQe|p3T)n69b8#uMOP)SI=ZF)ku^qp!ImAV#4o2oUw&+vw;lXIt1h9| zJbh-v`ZH&Y@TrgZc7xTV=BFIJ-19DRixKrYra4sN18r}nKWJaD-kcBpE+pDTw;uA0 zfsti>zpBIq7$+OZeHV(F`ZGB-)T!++VCj}y^I+BZ1D?do{7T~FD;_edN^aBw6s=LQ zX(g-fGZiQPfk+g4^Ty(Ha2IAC%}ju|g;*`j{EcRqF8472d3Gs!HUlgBBiNSa$V{*5 z+wEr8e8y^$tU`SBOTFH|3^c(w!zOi;oh|h8!!ud&>? zU&_7``ZmH+DmJ#FZw*$+V?i^Feyomx0_Jj^Vnf!co2w}4{VJ~i##7_BtyLRlGkZqf z9=J4aW>)a4sRM-PCzE?}j`o}vXgr`+JxKJP@RbyKiU%GnX!Z{Dp!WbTvi~A{Gm}{7K?|mTCe$wQonq`T z-JOqb%JunK+ZVf+kifAS{Htt{=KKIRK*+yc&lgkrz{jRfwu9k|1;nLqmNjd=ZUIW~ zx(84+&xQnVAbP7l#T%o<7hSrxz&UTVer9)yIDB=f7e8?>=af>;2*f1n)`rU8Yo#@l zOtNpifx*21TKuA!Cr;GYf>hRI+d=%1bWcD1TN~ zfm}X#n+-Wv5&c(hHV&`oBHSlvfOr4w6UTG33|ig!ao0GmPIXamTR3vJLP5K@1kTd@ zF2r!r%{huR-o$4bUDzL7`hL#b z`O&yVC8esjwpi{+_deI^o>dJTZQrt^`hl;3k?)*jh!gM0ant_o?gGTgFVU~<8XqnC zRkx2xW%; zU@p(v<<;4Gmr725rKRG2_pch-=b@;rwt~FO!5PV}228rdXN3 zr!M7oxl23Xc2#Ov9_O3iRDjqqgKe*zwHhOjiZB%n$f0Vtx9mVAKm6CAl77~=iVo|g z=e|#Czw`XFXhIcYv{9XwmX~C)V+r0&KU;Wo8i)p-uw&JR(Z@T7&?T2m_^9ZKP4~n+ zbI1cGI+iZA#&s2`(j&G^PSw5t<9$y~h!xR1zAAG}THfDR!(Ls?>4+F^b<7VQF0Ec! zs!%f>n8an@TQbe^?@;kc3N3YMKAN&PNIF#xMp|Du%32`-rB3+ehjWd;MG%6sR`VL{ zW#xJCSN>ov&t95XFeeqr&gg3}P&>-f4$nHe`#bFR^I!cQ9~GS9WZh=qYV?kSnR)bl z)TyHQcP#^}3Iv;T{7xpQh4h$B9rtgJYlsa${)3~$pvg<_M1TwGlGXD9Y2-(h>Y)F0 z6rQUdp?AIw1qF@d2G=K(_k%_37XaZH*)fa~*=w7W1swd&W2b&OFp7gl4^oz6nP?^U z{a+?4t)vzG0BM+$EGTD`TfKOm}eLB5aCeg+MT@-ll#b53p!!Asr@i# zK4$IDAeRH_CTU6csaD{39)7(y)|`9(F+SZu}8^z)00!ORnmvSU`PjMUn5;J7ogh&tc7sX!^MBF+RCN} z7tPHHa;bZ6*&C=lr%2dW$)1wFMqDJXPu0J~O*kT(oUp_i(x zDyAU4x(n`syDclPltZzF`Egdw&N>SR(0oQY3BI`i38(1=o_2Klknmp3`q$gs-q+;y z6F==b2aAm+w2i5EMpob}&EZo|sj+1Oms{`HBf}MA%u;Z1X z*HUG*_1Wo&UKMIw*;xz2pXB)XXmi-t4irIQcnegEz#a{{U>fO$0qfp;|K@ zm$iPx_LP|?h%v5&Y-E?x{jo`|1`G{}o;33Vd)nW8lPn4Jsw1V35cj%1y_cZD7Fgu- ziHa3?A>K3O-?&NLAH>hQhc6!q@P&1L>((&quA=P1B;H!;6~=*-?Y3yFkOW{(5##D^ zsXbwc4Vs^c80xrAF24xnN>_pkIAo6={xOuRHp-`@X0Hk0Q1%sF{ecwG~lbn_n|gDqstI zx8qp4+e&lAx~<1!B`Oj*(;}7eGtL#J<$RGa$Y;ip>FEnQ66fvK88ShZuK0VK@HQlh zxl9);xk^rf+lB&^ZmTC*^}9^l#9O<5=i&4m9&)L|)$+?Y?FqDJ@(kYOx74K5yx7CB zC}DF)N-weSNaJBQssDt{&D%# z>R`KQY~DVdVW{agzKezX`7benh!&c6z`Mh?ax}2c+xOe<4Po6kdIkOWVm%y+B_=oG zUO$adEYpIX=A{%LT{N&ZelTo}_Wl%HKhYc`S#9b$YOs678+mDZ-H{j?W)_1YrY#PM z4G&^|(}@LeLF=?;iA-P&tzdMoASQY-9Z5}hI-UKHMh#U(XX!o1$^t2X^OZb-wGKz| z#*Q*di9!JxgJW+hRkr?lbTh-GhjyE?t8?)VgAU z`_{mlgBl-Y*gY>M==;%4?Z9(_`sqzLQpJ%eERgCAIj_9|3>VUp1EedishB)+eMVBMCN-(gJHR-&3sZOwJH zJpT}br6{6yZO0()mfB^hx`79qSvj@N4o+L42#NOK=|gX`vMa8x`&CgiYFWE=VN>T4{IPn z%7GwbEW^IEHOklrb7{x>YG1uKmh23$yGkRkm{|$Wk!aVC9!Gq2=Vo_}=NF8fh*?Kc zF)WPxH@Jv<(KRhSRV*$w7CVdsZ;ybrts??1I6`SjZajuQ~kkXR+1cFFk{D+8K> z3=b(aB8yLvB>s~L#<|$1A*yJ*6sb&$?-#HMs?LflG@F4a97i1neCJ7{t&m+UH@DAw zW@drm5>+V(+}U>?o7D#{JN*sq5TLi>nd^sP>u`|cNIm-oL**tWUsn>(?5Z&#_mAm* z8~0Dl^M*L>(MzHA&Cm1k)v1Xl8u}B?SH3P%??|Ab5lVH#%amz1-*CnqSFMKzIC~~^ zeplo23zh?Hh-gnGctFq{R%yXU^^;!sRD5UJF0ZoAvylB*w`yN)-_S}fE7R(xdYg^h zoU4y(?1wDil)$&WqnqlejMThvwJfaTCessk@wXuNBW>FSN0I17ZIe31U8v|eKh-#- zJ5DkXx2-x70MXNrGgJ(m4H%q0u!$u`90|q(6ZQ(-uCzT8(i}&}WF=>^3E0!`JQ9Dx ztwJA;y?_P3YP7nUaJN@S(#vLq%}3tYbp99<`|n0*wOQ}fVpZVVmst&wqrJPC(1sxJ z0ljpC03x%y1AXwE(Z-v1(Kvhs{Krt5YKCv9T|JCui?u$nPxaCEl(0i=lTeRIl`+jd zr`M{#6;2L6?PYzAx>boRSZqszHnMEsB;bL;yZ#;LS38jyX`{aOne7seuC_>tZiGdq z9(kV&_30?%#T^pL*Jv);>pG5Oz3nl$x#yIJkX*K*6*@kH@p+K?2^==iP3C^*xo+(Q z&2ZXY5YzI$Sm4JO7y^NfdZm3i~>Es1bWEsBpepM z;dtED*KxEmO4bBrn&B5_5KS}d2S8!&?~#u{`5NgpYqKsN;J?>IH;4;5iUJ~=%iMM_kH}K;3s_lzN1DXUXi5GlrHvolpR`!ZdnBK%E`n%|abNq)obmM7SPY=xJnAsu$&IntLFm1SWp$IS zmOZ;5e-g85tOUHd(a@6kg3= z(>eYz7hypGIkvTw?%m!(2`&vX<@ses&yd<6sI5gNSk4bqSMvj)r{)~3@#OufkznoG zi7~%3>u}41w808yiM4OK{C!ys^jbaQqK3M*@l$jxv%YS<6+sdJJM+<~zrj8~zvsaOP&TXDo53{5$#6j~S zdT*n?5Rq1Jkgfwh-quNBxuEj+zJ?vk&K&eK!JG+fP;?)evnf&i4TCi1B$O^qRi%y9 z`}!=6&jeG)61fnl&WgGuEi*C2Dq9$}khPUk;D2Rp_58k`e07eAZp19mVUm@PLeV5j2ey^e>?(R>`;+x`FotBj4#BDJG5*$<;+jG3IaEv$#xvYl zm;not_=I=vN!!w|`B)aBk1S0Q9b0vEVqc>(mmc>~S=Oq+KP00zLa6}yw|(Wi(d(lC z=g|14>T%LvV?-kiTn)uEEDx3o5nv^>$8yAH$S>*Fcc$jbE;G|bY-meE)3r5-D$@)& z9h@?ETZA+yICwwKs=hhmB{={kQ)slj>q`yXLC>m($1N zQ-EUNG=zLgaL@SSHd^!A~BSNfBQIesggRuoW@ymnRpZXEg`K4Y)rjo!tI9lR)f z9njw(o06kBK~U2SIL44xJCZn))gMXciCu>z4?odn2AuBA5G@EcJJ)JESS7LBH^z_K z?<(DuzxcV8`{sPEu8Vx&5rCD4*gm>@ zaP79B;+VEamX9Cns@SAy#{j+Qnnyv@)awib$Ka#D+(8`VM3V+3)YVzD#cqi6p9i)< z3_vjrGdvf0Km312t9<&n(2B66CP98RDN2o< zTyfIi-|R9Tz#7;lGjw1ao#QqN1i`x%AV-HiJZk zqJK)wmZ;0h0&ZFN5XVVjJ`hLkrn%AJ4lPc<9O#R{^9hAsA~_3AIe!HeI$UzXTpW34 z@MNf}rw`|8;xf8hBsxU=&VzuK8hf51n!3Z;v^^`YmN7b1K zH1vw6fK{_$Z-?g63z&S%dUy!C>Ye{z7lmv7pWLJuqfLHOtLv|Kc8~R}>x&XO>1Og` zzrJyNo%mR#89Bdf!VhIlT(2?*g4@~pnQ`gZ{i6*fL-(D#pxyo8W?6e@C7rtGj-n?L zZ9wSx>fGVf!_NyvQhnnb=?oCcqQ={A!v}AHMTB`I)T)|wkG@aSxNzkU=mIK2dW%`L zSKyi0+s*srXk}s^W*`-l#b1n~dB4(%PF3ZlbT4O@A7Qj3vQ+s;SQP2mJ}(okiG2mP ziChi4F^$6hotrM>|Dg*AG?>2K4Gj1Uymb^+er{yzUWf52e30Awxxg44;b@#|2B$AT z!D)pKr+rY`aapn#-O)B2Cara#3Aw%ywY;QLm#!c-0*p3%^g8F|;W~S9`CJh4^_SuB z{|n~u{~sZ1rcF6MxF2|!u5`1SL1=Y}TzU4W71wOLK6z4A z?+s~@aUxuNDam&es|)48xKRtQ>#re_d=~eQx)}pU-kWb`+Pw#eCbAUhh|(jM!f?k3%Y@zS z9KxUsX3N?Z>&lx5Zu!LByFc-2F@fkYVuR)So>~S>q#QA`(F_V|^j0AbyeME`|`=?^ttPusk<7?6$n&BIl18jmZT^j*c=KWtdbgkrx}R)xp`qgO|%_( zPDo&_BGD_O;;;;uCZ^A6K8g+E5agU>hS5YbTsWpR3{S5X%x~6O zciBEj#nr{zgYc|DDU|a%LP~d&f9ye~#%*232=Q@3^m^9aIONLMil~IhzA)8W5q;#E550N6?en`+)AHQ zw+IJ!TM*w(RQw(+_$WRND3Jn@(5vy+z`u19fbIG#zOPd9@6WLtTXBI5e=_?(M$j^8OiI8VGk^(HC3z`9rq~SweiJ4(ca*1t>7c2#sk91)|sK? z*uL%p^G14|Ysdh6h1nQXM7YzNTZoU<^wASO7}%{z*SmkF^R6{;Ju@%}yXh|%*%Z)- zJcW!S)UD05Jkh!`NsH#vwd3ie~cIzL3ic39* z&Op1YErb`O_sTJKoS2yI{!ACoYTnB7Nzvig^OyH4SSBZwytjzOBT5g{yiN5R8N-#7 z+lzBWj>&5k1Y@E!zayhiW=wS4?(nakK;DzVTxTCi7X9L76OXFeyzc!%9k$X_g3w{p z0vEZL9V?`p!j2N;>>5Zq@7<||nshB#rUUw-5K6D6&t=ZznBth!;(43+TfGKKNusSS z^&oXucn0pBc__;GPAy$?^)N&)XnD7>OwM`U(KNtjpM7e%^;;Ga<5ZG#3E)2=xno$Z zs}d^f*~y?-t7CS;1ENhY`uG5EbPV^s+`d!GBJ7EWjqO>A$iNmRC8LDM2F|d&C$AB6W*c|pT9|QBl48y#A{_cK{fRfz)idZnXx8=>8hk@=$*BAG@i69* z>@`E}-sd#YV(0N@%UR_`tgU0=nhR721@?rp&Prpis!lX0bi=hQFxba!`i?Ob@_3tN`;1~ofhetSPMTxBTWZR) zc&wx^*%&-xu%xc(14Q&@x8*5RgJ+hwHsuyOKv=K1khxNWx5><~fNxFgZ$}TC<%O_H z@p0dIKB?vvDs@ffzD~WeQ{ljGgy`^mWvZs{ar?11eUN3n{Vxxk_}A~RZ_MkR`SXfC z98#&*RwNucJD*<48;986B#!HvK9_|~d7*DF6Hs0$s6olw_-W!DP_P|vGySJcfVHf% z`9Cpi2sJe8wZ<7W{A^jHYDz!b8&ALej10hswy~$iCEfqCnY+1fHubguNE0AtG60xt z^ZaoZjPXH%5n5!A-aMo5oAv*}V!-dsOiacNZlXZxiWGDVdh_jQI2vM(6EzgP5}M7O zF@u<9pY|RS^#8HTVpjG&4!CUly0d))c5a}b+uo4Iv=fofNzc_sRq3>0>rmsDul!Nz z$;(`QJkXbzYSPA49Gc`F7>DU_8P2VLWi|wr3D;<2_U;+2xo|T+8Z!l*s+^q;U^ zdq2?Z>|5L8vgx%W-rOTzT1=jtwgxTyn}?f{4^7rIYB=_vutuk1tDv~>B_)o>uAHv%zQP_7vHzBDBwg~-`*4q?>GxBYdSa(wA~4D8=sl2y?LZEVID6;VIF7fQEVqKnd&Akwn8=vwzn{7Uu{>sv78_`;VqBa1OJWhaw8cH(WY< zC%@HpQITPT5$TZ~ChdOpp09=U2xqv^W7oUq4%-VH+2lfvkd;rtxwG1Wv`C9rVZk`j zF%GP0J-7ibEvwIk&TeX-3eO234hsX5;d6xX(Vsql7>`(TlqG1p~$=c4RQas1?ZGz5l^z#J+s|C zB3u~@9Acs5>iJVOp;x3q(Ua~tJhpU|W!GRXALqM%{@Mel75-&bWv#ilj8kJr-!lkG zhGp7X5k@4}!@l!e-?Kcm1XkoYRHZ#GT@(znZT2LS zXBUN@`4%*wV#l4%taFf`^Tmo|UA1On_>HZsdF@c0k~FTqdnTIM8_05&NRSy>6w_3Sl{WdtN4A~Ry%0}5&Y+5(~wfvK&Cy;QF<)wsKeeTp-ijF z$lNy8-X^TOD)8tZ0x~k1NAAOmc0dk3Bs}hbXc|5d2;4l%kJZ)Nt;50D(C>|2WNY<73e$p zjk1=uM#iqe3NJ5nfH{`Fx5tnnj9%!fh8{?R7j^4XGmXljwa%Hyc#KJGrj0)kz)j`_(_Eh{U zq~zPEY46zJq2}KOIPlzM;?NJ&OEPKp7&MGfJU-Kqo=Uo7id}tkYFnI98jz=bCmKGJ zx^MQ-dxDe|LpPwb7oLQRKaY8YtP6Nc>1y2IsCfge<1O*IqwZ#9gLTE3($^?BJ8iE39OteNWT& zGyoVTBF?wPJx_pRIW^%`)YuH&ZA~ASEaux)jLLqUg>Xnv5V&^vFd#J|!w;RqMXcL; zHr2XbZeE|-J2v#TS;YO`H(wLuUfuBQZG*q0CdfS_fn46EQ+q}ht-E4FCi<2WdY1{d?68C!^AYFCKvz^w5C=!|5XNDe} zuv0>1;GI0%obdPE=1*&z$FLzN>+d{uCGtsX@-6XFsoVBWP`Q=ci;|6=m@r%E3IkEw zO5|K+e&H0&?@M~uXu^FIXkiS|eCWEi@3cP~k@O-kNdLrADdg@gpFo1O8qxMO%~_xk zbp(t!4u2qpcztMZH~E#_n+o@?AmeGU+BQ$36kGG*C^%bnw|2N)RMe$PW_y$MohRHF zoK`GpSn5aU81#$pRENYB<``vnd>ylb9D^0V^VF&a5N_PJ%LLsgH~#WzI-G{yXKi^IA#rkE2@e!Z(<2*Ju~yy{WIfpKh-nvwd|VcVpfq& zOF+5NBG!wZT~zoyx33`onO)o-y+0S+jf!Qb( zI*N!RSMFk1p8>Kbyv_PX>m}6NlN(h@-9?Y1FqbrnVHfjrMksyA0*CPJe&rBn#jKPA zPYpBN8##>c{(jt&{C{xfd^WiTD}fm#lMteFh3bcT@$guUz*9 zRqe4q7;XJ}JA_NGtAbmssxh^u)xZP%K*~D)e0Nbd!E+H>MtGdNg2t>nzfVv zPzEnsz>hLD8ekif21}AzuP{qJ4;uY1e!&0;e`BrHD2(5-vtD=QA0ggue2nOYKoSNu zFUkwiS`pb&lMJV`-`V_g8}d%xtrpVqM<0UmEvL3=Cu%{OE3T+ueu}UpYU=MxXA8Ye z$FBXPrjtE&3tXvN0w(>sIq-khuCAednJI9?&DS2~19IGa2LFzOsN!%{#wQla$Mx!w zHs7CL8CfyJfXeHXj!a|b#_>scSRL=~ z+Q+YhM!XHp@NbUJmo5DDXKZ{qz>dCUu}j9(ZqbW5n$1~Is4=UL{pkr#nDuV9%VzI2 z0BFg=X%#Eg|Mw!rAmx8&9Ni0?R$pE;GyfyP*bo5GZRyC`o6WzRG!^-{=S15&T)3xW zs4jMN<_RIL0%?8Wz+bKY-fzn+(c|bn4TiHdic^?DI|`4nr61GB zUDmu~>e_2ZGs}vuFEUfgcFc@BOeOL?(QE6l8^V~bV|;x^I%e6&73170`O=c8u?Ma= z-HI4)FRoX<8)5e!-{XN2$^KmtsqzJ8>%u-`gf336FSr16sU zRQowc6LVN2Ypm4M0P`?g{88W^PgBh#3E=cc8Cna?z1C*{g_}{$b#Zi~&Qe&L@eg^e zs*RHw`x_KQqGgCW(fMKxiV}tJ?%-Z5F~+Hv*uUo438fd-Y--n7W+@cB`%Wp z6kX14x+8uS05E<*y%wOn0EMDu-EDhS_0+-WdzGhQ6$ z5me(*&fn^&SXH<8t1q;c02HG<-+kv1Y0H#qMq5`4XIplA!}@6IAQ;-JoIn#nrnKaq z*{!6@^pNDUY;6(SyTM~xi#=`8xO?M!XQE#_e=d0K7-52um%P(f>~yfvxS150#L}YT zI2+^pAup7W&XkS$6`y5isg3jz@f-XwG$Kz2%X+Q41xoRD4B<}e<8|K26nEu8l&#d9 zMppimVNC~TuDjDqOiuQGe#5Ey0p*PWquy6Ud>wAZod`9q1&4DrTCWPFZ4&@2CE=RS zY-K+i&ui_Oh`s<&qj-#~F} z=K2&dZ3>H*rJi;H7^B`IuvRH0Ie^xBpW} z*nfExeLrh>0|h0z_V=#>wiUP6+UcUj_ibP4H`KE)@U!-&=e56~2MPpCSW}^O zNy1IUD35#37&|!7QE@#;Ik|aQwOjz2r_<{8;m=yiI@8Bnm6LNoxbW>*d@Q+3OJnz5 zO-gR{KgrN}+XLwl%-KwmtF{FlHk2o{?!N0OFhIom({d!O4jd3%&r^cE%3rNO|0D2y{0mxW%zR4`HEdwD@i9*obSuEvc z0hm>nuLzbnVEU4nJ9Wc1J{~U%@CMKX?_~GhmAbXmo+BwKKrj_pFWy&Q^*W>?BO}t) zXJZu3bfu3jTD6OXS1!sN*%$5ns5`q9pGo>Q1KK!EKh&wc;n<;iBz+}SUiD{<`IWCD z7X%4{bpWt*<7&lDM9d)c3$;?~P#oLHzh68x#ibL-W_g48(O^--4(9IjR^wM2_!WlewW>S?5i@nz|;h*h&(kV?C=I{9q;zvi1rmLFTm+xM1I;4OyX=P37u z>hNgpEJ1E%uyM;Q=jkg=30?;G=OK{>vB$V{_O0{KO+PiZ+0c+{uMc_iO+F$;F53sa zx9S_VE^iweLOc2SPO7)~w%`tHgKtX?7eVKfrn<=trNn0gv)w$p^1aw71w{0({oi@e z*Wr#J*9cWvZzp_mPSF6_T1_@P8mc*t6pGt@Z)MRGd-mB$G6R0}G$+IMI}e|rrHi(K z{|JKr+qa{d0=8${mwuxw$|yX2>%YjV>Gxy4{Raj4W;eq`qM|agv#j>@afGTsz~Dh? z8%b3=6@Dw*`|?BmBRlcvKlTfzpACx+ZeNF{0@xxeNcH5M>JC6i@^XA*ZFI+D|HCW* zsg9DuUs*c{ zJTAY=U=;rR6Qoa=2 zUucU^27$eeNaZUdstj|ABW8-l)MsvOxwlWq$n-1G{s_jYdNzSKudQWukBS*9lR_Eq zx5j*Onl!NqMI&=CWvvDZY59GY1;LIT+TYV2QXgvlgJ1V9vt{=&S*a(oZByR;3Y1PK zs+4lE+@U=JRez*hA8wN$irCu|pDB}t`kj&!%B=1CiSASPp}4NY?$1QqM5*n3W_-q7 zonyuo_3rLRho~^j(z950^D-4K`ms4q%u)R)6-Eq0+4)_}Ncwd%YdJPzx*k%Sg?fx_ zmO^j79mD26mIl?vDE)~d_1Lw~%%|^!hRuH5DZu=@8cHHkwI+nNFxA&O48g4s5 zU0DrJe`NO6f?Gx1pY-%#-$tN`SsZ_{iKj@Ho7CLxR?Eq-1vZ`z#-F(oBSYRVJwvS+efmCVl(3^;E6NC*5RGXfr?MmW7XNuAU@Hw49~YUj3yQ?dx(lX|A*w zAum&wQ4k{#Zz5`f&vJ39PGwK>hH^>l zZC%W-bkH04ZvTEpU+!?IzoVpO`H$7QK7mr;bneFfA}K^wI5`Cq74fwDY|_i9fF-BQ zaj6UJ`K>pLH`tNJTUeB2RntuNt#D;HA?~%%Y^w*UUwf`x+ z`nOurGcT%r`!ydoJXXaD*2&yGPp@+N`(r~7USJ)^Kb;>^dLy!qQ(X6jxd{iV3*(b5 zu$xh*MV4+lGMkHE-xXCW=SV|)rN`UMNfat|?RFd0CGd}SM$xyu$3%(J$uprnEzvjd z{;pzOh-KTQwst_V5nH`m@`erU7%M+-fnNR9my~WiYyN6^d0H<_~c{ zu$B$}RXRzkyy_GNyyT^WciLoatXowUe&=~!W2R(3>sI368^$#F&htQ-lNboOncj77 z+B5|MR>$*7h8j7Cnp}f^IerQs`%33P`Y$fc6v4Yv$C~Sm_Jc4r0jVQ zVQT4DV8taf_O)~1ZHKyMf}^d)o?a2CmI$lmu6@U z4uWK&8WatpxW%je^$TB_8tjw5-=5UoSu|ft}ZaDoAx_8g4e{vk?I~(obG`i7p zPsLTkTv+CD6DDX4@TPU967%f|QdepjznXVdsj>iXQMD9^*d~If7s|N`pD7Z@dq1-? zvTMw*?&WNUjZ zlM?`5ds%iCaZ7y?MVo&c!I~qaXaJXv*iToBU{1H`Vg4g#85Mriu%gXM<>exJ`7JYT zo97(^`=2E7Cw+~fnfZyqq!M4-x!(4#&Q}&Tf?D(9lEp9KlFarLY`tHC0TpsITKGXn zqCwvkPEd~hQV=HWX-=*kVeO_K4l%n-Nbnk+Zed-1_9(vR3;)L4wf6@~Bk?HxeB(Eo z)agf2HsSa`tqXIluRpK|xUCZ&sMt20+TRj9v&_{`&Gft#@K-MLZ$M#Q^6)(PDnQOv zC-!D`^sbQ}n!Syu=fMNPQuvM8K(P6{hv8sALU(1mB(F>HgU;1xlV4RTKkTemUY-2o z$#9gdt4PLX+mmCk1;3NbK6r1sLt18f)-9#o$8zB4{(U`Z&zL~m0}zmVA9RU=QA#@P z$JP~YzdgdAKR?u-Nk;sUTc7j!4u6ni;CT0Gw-7a8mZujrN~9J zZ_hIMU3!70HT9HqT#x}ZTIosv$*E4^^s?(E(yXXz%m|P@VQ^lo`grG;Bz`B10!WT# zDwYSw6T!nuD2m|lO|8Obc6+rNJq=PFP_MJ;j>l&-YTA&7VC$)SQLG4&(;d$mYb<{e zFA8h%UeDreg2W@9Q%~#scQ+$Et}kF0Wfpxc4npYx5w!0-&p0dpSbOJg-u*D zF7ikfG8VaFL&-GGJ!aCuVS~)(Hlk8XTI`WGwn*{6@EIO>P9Vs(S;xux8iwe5iCY%FyS!5ok40# zPyN=Y@&M)?$9G^KEVff1Hh9Ns2)asu3=9DMuQjgxCtbT<=TR0NRF;F79 z3Pwf9Ry~?$<(~A`f!lPpVl}7H1y0P=*1OGcLHRnx^SYZy*t+dV75v0)jLb}C);nm%%kVtYrWGTRV%p8#WYljls8%Q6 zNe%#)sz_)IT@4z4G?<1(2Uwm$W&42`|a>s%a z?O_4ID9;k9{`(c=En8!~N$~cUORmQW3VoRyESb&ra`_7LRF(AjIgP7oZVDR`M`W&I z+x1sm#QDF^8dYRVC)YMd_mm@+tdA({Z=2xo)ogHU7VVU(WZs=1=^h*B^KoK+SU+>q z_eJ@U!>x7C#$UwVYfbq?p$0G)dRpHQgGaai5uBA9kK$+A#eT5I*?LraiHYu$g_bQa zMq!oJ);3rRm?Qw$qXR+5#X4>9V^@1&$;e{4+>^MtqE{W|^fHj2M`Gvnl>e~Z(o8FP z!m+=fo_$*UM+Z z-k^aLhjxI;9G%@xZzLn{@{07VG^XqAc}UwboFLWcECEM?xmpEvsdN4xi!t9bzq5}8 z{MDb_+A-JIvCk_GlFvhrPLxh?{)z>~fD`CgXwZC|+IU#6la$pc*?R4wd+yfNQ~O4B z#gUrWg6TSsHpZ8o`t81UbCsAR_H4g}kk&o`j8+H`*`nUNUNAgfj7ro#l`YcK*S|kn z%A%L34yHbslht_a7-f^g1%NIH5iyc24@Ht(H3x4K4isE%Bv?9-;=EPcN7h!|?0tzZ z)iFah;r#aLIXS5(W(M(DzSA4d9u;>cOQxzf?O82t8$pmWbBzc(Rr5BAV04QzvNThy zSHRje@kohYbm~{8y^ArulC@M25zAFtq{Vpq94(AKzBI+M<0w|f-p`tT>8Q1nP^^~~ z`(&yov_HGNh=cecfJK_PhkxOwX(FB~x0aLH1H<<&o9i7&iWQ~2Mj0y0JZwY7RUF#O zjuQRw^w|vF+z6moV%Cz!O2g-Z5RvR+&pZenkiu~6mot1c`-ask8kO6L8oBRiD{@g< zyWjJ7r?b8$vp&BBy!T)W;^# z-b!1YP{QKmo0PqpY+vpaZKAh_wvy{vW*5I`BBPkt+1y?qgcH*a@o!`#`TTa=#CpwjnfiUft) z{JpiU$32q?8_hG|(V*U3-Nt*B6+S0`HlZV~^35Qh1G!9VkjAR>rG2h((384^K?2M0 z7E=)r(dvr+OsNGEyn)P8N$(+B(1G#WMT7qY64qy(-@77Wnt^gbNcNrXrVhfct|1Mb zxO4AyPFHAOVQ8W7!k< z6Djs@j#9<{)(mlLf8&ADv4LjPtRG)U1W!DlX-GY5*~jMAmqroG-5D(mCfv-P?`7b%5U;7vC6+%6XdW>lAAE8tp3+d>$J| zF8a=+F}@rku8tUt`Obq%@2YKSP3ng7&NDtLGGf&vw(z7e_OJxu%%%uo@poJ9cIkus zVcsl?>GqxH8r;B-In|)1@0`~B`+&vHGh>Gy#^Mi|O!UOWdk04edh_q z*;VJ~?V6HJOVX3fdsfKFr)Xf4;*=8kYyXK?Vdj1;&HtkMXMUGaU|Zj*YoU{*YKJ0e z2Mh9Geq2fK67u#=co7`-okx36Hm>-faQfTK4(CzsQIJhH;NNC56XN!qao#K@QCBMW zguSm`sN~)`>5bgy20CcgSKH~q#vgO+ zD9y|%C~PJ>a3yyb9ZUM%)R_ToFx!RJUv|g%FT-%?J;@PoWO*VfL$l>bB#kw5|^ z@m4f$iqZe@4xaMbgs$zp1q?6opNK_eWXj~!Cv$(sql5f>!Z!41Fs<(LKN%cmEM-Rj z+~d)5{F`h4OvepkX2)XwJC9ap{{|m%glfDVeq3yFw%9QkFPb_GeO)&D5=+xrx2s~` zpJ*M8F5$0nlal<@@{8xtSBP@YVB_6;GTTlj8nX=z1V-=_$tq^lp#LKkV|XQ{)z#d= z^Ma2^>B6iV1CnnQd)GeK+iyhD9hV^K#a7H+Wkv#(84jyiHmC*Ukw|>NQp$0Mb)~4t z6>G&YM3Vo1FJ|t&OgSsp@^_kg(3DaOC~mcX#di9nRv`uforg3r zV_PaoxP@He#_}|%3-1um-if&FyP+N72pWA=EC{|*dSGWU35;NO^nIF0jBODVeETx; za5q7rxCt}Z-(lby_qr@S(W7wb1v5u?;_l=55ZvD=N4vC&bYL@-Py2l{2XUYZ_jE54 z040ZHGSs-UN0zH|yc>dmjixnMS)-e~@-`9u1hYDfLnzE(I0e2@ei-x;rAe?VVZ31H zL`->YrTuM{fqzfC*y=;j?vaOzDK^c`y`puxR!wjb5=6qG&5aBj=ek}z#`4>>ax~PZ z%@R=99eusxed{$tmrs-dcV<17B^$Oqf)J?(x=DHI=~Rx0R=WQClfz&C7p>s`b6mIv z4URKwXzV^*I)8KHzqbOFAyyJ3{29-uopwTc=cy|Cy`STXt-FK2TY$FI0RqY_gF-=R z%E;=m8kc4fCx%9hnR=tA^sYkezpX}N@D!n@Yd7xKkQO8IGGgOz+ozqFD1nP(k4n!? zO6Jj|S|ur~xE|*ieciU)?>ys(S%^UAryc0bnBmCc3Jbn`2;aWTA_oeF`?<{$=ncjW z_ID~s>yC-3y1gN{ghuSS$~e7e#Bo_d_8Vwh-t_a%MyW02stzQX_zuX>u~j=1n6_(H&h zsjkZ9s7%;d!Cm|YdDB{suCO=CM+qF&^f&(8gI@^-AY<5@Z5cy)(g`hByG3S2Jyy~y zS&OtQxPqg=qCx9h;5~+k3J3uigz|QID0HVrx0_fg@!PR*DEFw~%pmyKf=64N4Wv?_ z%Rr%6z|V^n1*^_1WY=me3X2qNpA~heRu)(`PNdDOHANg-T!qOBQSK%iHpC0NwIGw> zo12P{ZngeCa5!Pn;9&^}u~}F>3I}NxbQBd^&Cxag*46+)K)%1JQ71RQ+A)|n$Jd(5 zt<|a6X1kAN#UmGz56PQzXBsoTuZo1HdJFgpv*exlLE6@LxZRqU+p_WtH0h1W?pVWO zZ->Ei=dVSIjaH-TPkiWqEswtkPD#o@^~YAZX_ON%{_JK2No904&?Yi9;_Un^yUt11 zS--5QJ$+m&TF(@orv)on7>pY_bg3*FtRx}8r`EPLUR0|IXfK$$zyj8ig`NM&j|>0n zgUaS$f|{tOkjUHS?$D)XX{x)k3;RwReVc$gsWB8W`D4K#dZ{L5nTx`NQhIrj3X4d{ zhrK%GtlJ*mb}y~f%IvdC$X-b4JMFD)mThB+VUnT+1rf@1^C?l8%Uf{m#DQhfHW6`8 zosT+Osos|TohOX!ZXYumf9aY&c3yUdyUzklR9kD`IIw|QSF~VTdx*tK;Y=UzhQp56 zP1Kxl502!?+~cT&(-Zz$MaV>IDVT3tCF?y%ms5~AV|V`RrpCAWiQM*pJ0b@6KQ1WR zIj)`i#=Kpg39$u3_cbIh_1vtEi_##>BAtSC8b+QsK?FWP8#WZ$1Ikg4&Axo+nb+`f zTigi^c1FC?5GMF!$NnyrhxN2#+uMZ{pe?b3$s4D{mMKrY#W|UtKy5q>_BkdCWooyl ztbKGa2G2xi78IRb^K=^DH-$xxhZ>*n+Pp|5$Teb2)Ji-%rDrGi<0PwZRXpaz$(_JA zh^2wyK?goqg(4qD@jrZ+DOLl>Rr;5|;HU3(!QC$7739KQi^GWXi=fD+DMvPKP!9=p z#PXBtT;JPaQ&#$!-5qre8Xea^7-nLN%21DXH-Qh$g6HqX4<8#;%!$n_C;|?dg~6dJ zItzdf$1ZWVQCDbFzG0nzT(W z(+$w^iH0&a_KY59ABj2xahg0qVR)?0CZ1|i-!YWye zJ8tq3fxuH+@cy27z?gJu67pAW=B|KA_np9$-i{|0HNIPC>7j9VNULVsjN|;RN0a=u z$SZ|5*PzS0nuABYHygV&EeD{7hK6A%?;ELbYnIgu+mu{R2Cw_VcOJ6OV!*UZ0|h@p z_1n&P7|skQ9e?MU@Y58Ki!icJ)o=v(5&cMe2iLk0Y;ObRdT46AqUurBLgH;Uw zQ3=9=-UvJ!I;oJ=Cv4Pbl+_dzV@d*5iq+_zysODIuXW-B3yM|uj9F#+PsRdTIx$C&f$SGAZ38-- z>>p)T00jVk2h-P*H}luJvbDz=A=T3#75cg@BDWsfw$o_(%y`>Wr-KT^&X$C7N5@H` z)m91PzVYqeL1g|)LC4>Q0QeLJXVYDOQ9$xD$}7bkWnFR^@8g)B0Wz0I#nm*`BofRi z02drOBZPif*Jp-51}p>bUTMWyc+G~dFC70z(Yt$FTMIUIQaxK0Ty4+cHXj`E!ml_+ z!XP15fFu<$5lJm0TSPCUGo5VP$ zJZRpIJ^>jwuOKj+E8^W&Fq$E`NReQg)8wyI=oFbaF@L7rZ*gh3H<0_qA}m4t39di8 z^_{UfLQF}caQ^lY(@si1+4%^$Q|X?-Ip5b`6d1tU#C^1=XewxsBzuwu;`|;rRF0w) z1hz6&{#`41gwF3}!qips z&t85TGbup|c7!2w*$3hycNNXUDV2S@*(;=1UoE5lK$sXL3Tl}5u&5)q^<0fwwh!~7 zUxfUVZp|>d=^ei9D~8FkhW+U9kvll$oJ@L2V4exRd}eL+7RUUGuJkykBg&>EzTZk? zB#;jfL0-Ms+yOvL0nRRKQB1Z1hB2@%=k5jzjMt+Sy~?G7UuCHS4Vy(zq$zh7gtJk` zsqNSf`_8tfENYonyw1so^QY6|X@HQ>C#I<@t zz%i0`4ZP^5X8h8G$7DXE<~xM-3o{|}u*%qEQM zv3UjC?IfvtSHXLt$Q-V%HJLri-j`(DvB<{-K**a24;@D(IeDLx_N7Z9Gr|UwhDI$8 zTYYmuVNV(e>I46h!e)_vpfL42yZ!P11!!q$lpa`o!O5DE)?IchbRz;J0bNP@2eBHz z^q`sEcl}ius*=7~c{ttsCVY1Cr|@^|36!RJ!12x2iMw|625XS+Ptj}r)VoSg-s0+a zqu_8TSw5$>-9_wkno~hEh5L)uc*`%p+=msq3aT?S2k0mr=I;9O=>Q<&)l4FyRj)NB z5r1N)W%ixN{9M`=BNmiz2P{3%SIsUu*$kV?$!xDt?Cph`UY&0j?w@GRdq#6#OTBUa z#}fX98JjRs{NFVfH7_swbjQFu`^F|W51v#Om_K*2GLfTdzz}dm*t%yyb|6B-BxW}k zacC`~oOToTVFyrflJ~pQM`QxE9UOZt10N^mr(2$8P|5# zjqo!%#CN&d#BLuncq6GL!o27)ZlJ{cX1W^Nj+IMglvx^HZ*Eo;#n7pG8By<={aX#P zx+oY`{+a^dGdO>@HUGnHLF0n}luco)=#KqWORBr!`!NsxRN3Z4sA`-Aw22NaF9w|n z#}&3GS*hg*U}$AstPp5VhgBJ&Y;ut!UsULL=04mz^q;;jEk<`kNDjV?K+dKG=JVtR z4Ub+u<3;SzP8+M&wT19yaggAnIueiyKJb*>Ok*FsAE@sC@`0!jq3s%>aq`f#ln!-b zt`P=4GMWCn>k+XREqlh)YJSgOt4u)$Ce%8116tc_Ben)LAAU7XF9gjb?zA}rd_e)5 zGi-AF7bw?z$!D6#%K{OUsKdbZX6MvbYtFqnZYyGqrEBBzbom?^at*sq_UR<2nM?-D*y<TQEHC1KG8O?iG(t7!FspjyIsAZbg^IxTePEx~K3Lgla94R}j1V(#-^4-wy52P;*MmkF}6Fg$?3JKilzWPLkGktUDlbuJqa0 zeYdRI0gJZCh&ubOmRy?eA9Wf@lELEbbc0b(P_a!0(Z~73ql+PzD8D#$&2!UILMI#ujW(5`A6wKOU#K{Ci$qq zY2LV2r|=QBwbn^f7-g}eWGHSiro6Kb!_HDHqHw83x{$1+tu!Dgs}4;qC>tp77zU4R zrOq+zL`*+wD^J44;n(D*sbaLYl^A~#{LG2I%~7lJ41SMGa@DkgWtaSRY}`f&h&k{q z)zNBNEgu6dAnJ$X$na=c91PnxM4)OlOPu9PtxZSiOjfg|#1P=D!c1G5vF1b@8Gw1W zwl2W^!w*6c)*D)_r zbwyR&NazK(w2cU2h`p7gwpqKMk@<&edn;xaVc-Yv+%zHjg>{dn`e_ zzh2@f>%;}$df``_uz+=Es+l%a#Xtfoi+!HdCn4Q8&uVVPu^2{bb+4&*PjF}pIsqS2YN$`YW)D87*z5bkumE- zHwZi7(}_ZARuuSbWlOWAMksSU%OUvHC~E$a-73dZ74!t(A3p4_I3lkp$v%vZy$bJ- zsg6`+_Fer@8_TFg@)9zyNtk(fSK%B7yfIhD=XQXQTeh0oni5a&PnXQ}i>ur{QO>>B ziYYh!FT1K`Ze7DY%E1*{?EI4w4VQ7$DI0!ut?E!r+yp2S8b zE4%nHnkKqC!n(k`%IS zpt;SwowbU4M++g-&Mfv~l3Z)f6-6hLyI149(adE!bl)I8tD7JO_iuig;Xcyh!6SnE z-&$T5G^Va%3!Ofz;zB~QeF%0oq@d{~5&O>}-?$DPsVz=<{rR))CzYMKd`F6kN6|5| z>g3e}CY=Z(|pgcjB{zFqbC;dk*^*wT^?&iZz%e^woKm)+sFayu*HcxU0LD%887cCTgqN zFLORGdL7|SJdw~xvLc$&JN6BGs%~*PeG|4w)G(ydS-`A4Tn&q|E_CYaKU(v2YVJft zt3MAoFrPlPGLiD&>yWbp-F9~J51QYo&1GW`xUmDTobpTn>2C}4DDO2%Yf~q`LkCi0 zYJ<9q7h<*-bB%KOvp~0CSo;PiHBzVqG5Q>)7I$mD1{6mIoj$4vaB@~7s@A}FO()IR zjmJ>pmzH4*x5?Y}M4}?jeV=l$ypE3-&$mc~!!ua1BZO0yB=vX;(P~*AtgjDJ**Uti ztg;PE91!}>lW~YoZaQ5LExVe{H$7y|Z`_uDn7Mb_?jQ0Iu5&c*tic$9e{Q`es(W8B zYSM&`dh%I5vNPVJjT!o{x4AmYMf*wFquJ>9I_`XqRKBjG^=YlcG2 z`y;To;6JT{Q<_dGmHrxWVe$#iC{NG`)XrS{t!?}bxmi}2qPaQWd(%>x*M7E&Ed4g& zRgVx3UBY%x7*Ql8F~|6C#SaAgyAtKx;$`vg?TW#Uz6=XifzUQl%z(^SW$?V|H(HXW z&KNy{U@zLmZ+%_NJpv4_7ysE@J+vPvkql@QqlMC>@Ce2Jfj>IevR#8$hVtWHZFC-e z``oTumyPNhe^0R;7fS#7eslAN4|PNlL0!YDhuPX7yKN5q59f_?>xVI(a)~FYFqft_+5-BmgQ)<#gPr~ z|D#ww1UU!PFZMy7Cdz9xIq6&2SXxpuSw8aWK?(`s$lMb_v*E~ER7u5i_eZa5tSMeZ zlj&3IYJslYvvWUY%8IWtO35T0Q5wLZQ~TDDr(eh(Y%xyxG)U93;xB(R{9^mR(Nt%} zd71XXU{D;39R07>jhm}9AwZe0z$YvkQgv*tyBBmkF!}c-`ur3h$5p4ca@Il$znuCd zG{j;Cpt#);F)#(DoGbbn%`yyc$uE@hqT^Z34c~c|;*)RzGfgiJLmfW8jPnC!(+27O z7lPe3$E-CB{fV1hbSb%E+~P?qF?o@qyv96HzU`>Hg~OH&`exdu#L^KG;Wk$f{oMTL zq*0Cijo@*Qb>%%z`>a(h{Bn?1nD=f}CSFmCYo<>>%?v(Pdc7lUmy-)YuRa^1C}T~N zg1XAB*#;?FiXo{8!$-m|dvuK5Efnt$V4T9F@2G33^GQu9bxE8?#9RXTYbzdz@bjW`=`>)7O!@u^r<$NQIPD_ZB(k=G=$H)hP#B`2cq zYD9uMXYj8VAbuDWrZrdr2$Kuw&9R7(sc>5(9pTV-AFt7F5`G!7`3hunrbo83H`_xS zY>KS5$G^@m=Ns>Q=V1xKIaLDro^&$g(^N>qmLqJ4XfQihH%%3pd|{7!TI?vxC9xKdFrdY!$!PF8sf_bMSwPpCHJ4!IE;U zR)-4y^AND%Lf(t+b+^Ggx{m^Y-pQGu+~L{$N$||gAY*S>kWRtgNyt%P!g^MmABR@a zNQVwX&R<*Ddkby6$umRxS=)>(=(r!qZi3;m86p69msJe!)0qg=ig&=Cc=!t zw^81*=@=k7tUQauT_0G!)zfYM&RlPUxE2FkN-qjuNP(B1eqgmrhln{Lb(-{5rYujJ z^^ku~sWO}Fx9>)5OvJ@}=doH41zJ&0hNMa|gtdtkgPM|>8w16rM`%pSjAAt?x>666 z1H9C;B1%umq(^XQN?%qYTe!ZSS3;@_@q_F;-4NQwPMOF;YFwSB-kgdxWBbu0tIK6t z8$Lmit*uFi^OFo0QrdFqfz1~4rI$|$$}txcn)I)y$On4BkcD_@(sFG0d0ijHo2h6N z_xM?}*{Pi#vO7ZGK&()6OqjFK8d2xtyG~fJ53cSmb#JYYPqrY((>M=ib<2UZ>rL}x zU^NqP6pE>SWj$@}hnk~ebqskAU8~pifP)pzZl4Dr6s9)#_jp(B695}=@F03(I%IyO zv*6y#EYu~&aBXgdY?XB$&@0RWLWw{` zR~~%l!6HQzJ2TInlP9oCOSK>&Kf(%dlduPh75oB3zkH=1GjtQ8-W@>;dqUOlOmyi@ zLmV-;zw@Mqco$@8w#KUUzA)qsJi4><6|D4gl#n~UyM5E8#f8XrKQKqA^HB##byMEY z7Yl;*?Lk9zPe#Xgo%Hjaa;z1Vt!eCLLcfjg9n%Om=oH$!=uoqlISc(`$wFT?VCJ=4 zf3Z9anXa0W%Q&X&9c6G%jV9F2@AZvG20bn0V*o236e`d0RSlMpF*Ifi=;vXy!b6&Y z-k^LP=-6_&@H>wZ>!{9h@6dKi_dCx`G4&G;Gg4etbWQ#F3{ww|g}0EtNy}PnjiiQD zfm_iu6RYEM0XFG%@AyPIIxD?`DJWw_=I5Z~VL@f_TGZ0j{O9#w373O((uM!r0hBm$ z|7@|j#{zY*DzUj&DJlFfo-Pwj-);acWKKI|eiJ#+UJvVuqDanS@p=k948j3O|M3jqu%yq?1v4 zY|@<^ueC$Io^fb= zYs^W($(1dfvrAW$tOwGIFG`?n@^qZO^T>{AO{6U>uHTc-kIklpnq0P+C`Y{a|Lk&L zdu4e=9lr$DAz0gF8Q?&-j`B#~p2>zbH_g9fGPCW3|pPZi<^Ro_(Ip+boV9@M}cjO~&KyW`OfO>Z%c_ zb|oougYw`zL(>qh)Xbu#2J^iU|9kYOMB7tv*+AeuE6482C6wK^W}d_Wqsw&w)6V#a zv&B)zP|q`KsMtHZ=_)Jq(tG`8G8NaBPO_PamrbZqQ9v^Y@6{HeT=kpQ(?l2Jakv&R zL->8V!oSD&Tf9b0ekrmPD3}`wPK=FgULcx;6pjXTWL$Q1GM4lpXztU!&h=h=!!MtebJxdYKM#cUGn=Y`Jf2W zrc8s#SOK{Ub0v><16l5A)px}2ykeeQcId2@fAp&&O&5kso!rAI5n6_ZmdmK6viiqu zZ;ptKq<5dOv(8(m!*aa^%Ci+`JIB8&8WCiwJx#?5&E92Z$BCsHbiYV$lgkdLg{t`8 zd0Qo`4S+uWBlR1nS*D5gBcc0l*a-vPJZENnQm4Tpq*u585rjM&@1r~3p0 z*nnkkW5LGyB*9DTcMj~<8&uLZ8vnDn;zqDThRh=K)HD3{ALRl!-`$fJw2`yMsFfD4 zCviF6M{sI|6_}Xb)rG$q?rNxLI&qAeZ!g(lp6CUhorPaE?Z?){yz9v=$4tRj&2ZJ# zX{RHhvF(qAl+SmIWyTEu)}Nf~0p1mwru)=nvC@6+33kyBB~@1;@>nomcUD%myzYsuHm9LlM3uq7tst9t`23JvHj*nUR<`0J0j|9SEOV9eQ? zf^~BWvfTTKKx-S=+)iO?@P&b(n0FN<-&JSf8d%nrXnuI^~V2)e1j|pfP$i~fS7i53hsd6D2*X58v4(;L}_zqcMf zx1ACJOaGU@alg>Kz&&YkjElU-zj&#ZSX>`(K2iQ*Ua!Fa_oQy^&N3DP4$Sd7Dsmc9 z%4wvL))6wbG+lOi5Xs8PF(!(gklm(#Ic)LE`-6v~knY6z((GH)o-W`BF+@W9@c9Ws=|tl^^Q!>{ z|2j&{wj1;2GOl>XtIX~LVyF2<+{@{kR-L5}UgC$XyVWKJ6~FVq`Ft7t*+KDFwl1{h z_0xijMjjkb{to-F)th^Y|MaPOjWkUmZhx_P-s?x0HT@E^D+)Nhey`{AxFlCQ>Kl?2 zG@sy(>fIa#+2D5?>%C*Olu6;hrJlaQ&+d3r{5k?g*l0i;Z^Ehqv`9s&b(&)6k~z6) zS;^yklyKk-;nzRc#zq=3Adk5Hkp{S_Z^x5%B%ZDmu?0j~gjP1Eja}KP6?xJ$9Eoz+ zDNc~?p1lipftw84-13OiG;S^4eyB;$i@%-r(`T)_vvZ2X<3$(ywxbt`)d8EN_QI26 z@M`$>Z>N?qU=I`ivh*wJ?$70gs|*3tVZd6ZX-C*IJ?OWgS|`#zMC@bzdRDV@m`r-7 zx~$TSSqy1w6pGt!^wV?4FU~|potSPPt1o%u0?$@%L>bTP)yg{}i+=NU<(DWZ5!f+Z zFLvu(TZ^Z(OA-=cQNKU?Puk_n|b!LOohU?Ud ztv!cvE1nAm*G7~NUu(MUDCyjN(HQukDus2&7&=xHo|VgRqx%jVw-Iz2rugN%;1Fqg zD{;r#GCOZ={0w04gS9IXPyP$FhL>jj@OhFV9OGk@0coCgYNNiqXw?JX2$$L~1PR zM>K)=JUvwbmX;3j0aD!7p%J$|{`2QPgl`lc%*`uKOwV{bFLZ>fb#1Z-OB6%4>nr^t zB|p>haZcdxJP30xsWi`owDFxs(nQ+kx5FdtkhrUsD($~VoH{1O)-xu-YFrhO%b$+J)3a)@@;P}eG$$`tA9~cmR@FoT;CmJKrsR+^r|A=Pb@SxN?4fBQ4rcF(bGoGts>pZw%f8| z(e@==miA@wdLz>v0HjwT3G%CC@)Gye39721X;IB1-E?HrUY25Z3jCYj1#Z++c32!s zIh=F2wY&uW!{aFRP;2`*y?A?}Fa~Qgo}P)DaUa70^mWPvQuE}TyCEB2 zT8^Lvtc=Vufz^+Fw(57zN8$LhH%9`-R=bK*ea((8*w@lAz&+!r+XUy$$&=Dw5zwAY zIyEa^d?H=U`uXJ41m80+5=%hq)asTBfc07)B`4vQASn~ZvI<{yds@UEGCR$12wtHX z0rvquG7~nM0FI=P@rsj8=2L{y+Xfm@#z+{<;j3N|^93eLkZ_?4NbV;g*8~;_77A>T z(4+e-l{GLYc)^tcTPyA7iJJ2FF1>FDecU&P;GAzC9P#soW)l#mP?+(H!jR=~2=HaY z^0EG3*z(gkSH&^o@Bkbw^pVe08DK2kz*pv20P}V}Lx?-~C}33d4lgd?7&_kHbJLdj z?d%CLO2aO?rfpuP;=!qVyL)Ih1Pp3^}BhPVY&79 zoQe(wa>IaPwl^7CWib_y^gK@b#o1x>{!FF*b+)cloZk-Pz1g`8l^#Jp9o*eK>5aN- zDE?$pG7Ii3LxQBb_uoqKzE-&?dcaC?R*luzV8XTxN_==z#5N{wwh-Q6Dqp+``k3;( zuO3?_BSDNJX^u_#9G_jQ%?w>k)88N#jVJ`!yo?%jWp5rUs!J5O1?*e>k{Fxc(!SZ> za2Tp%9a?%fvbVt|e4d0vf{$Z#V>-l1MR%psAqHl>P}BO}LBTbFzj#9N|65z?&)|8G zq91E{!D}KNg_4xtOo(q+!!xo%)beH0ds-y5+_0iKXbspmQ86q&Jve z|GnUJDSGf*&nO4n0C<`rwx&;DmOPl!;u_r1xlo@u=WOse>)epbReZAk?v2yf`#jh+ zyO|>6h6JBddJyck14eWdfynlC+01`+(&2ULn1RVLa5%dWp7H)ol&bDl$IH7j(lSIP zA78j$FU8TJGuKniWu!W*G2VDKqlN6*N3<+S9=_BtHih{ONSYriQ ze{Hu{#nF26wqc6_{PeHdu-KnxaUraL z=o}-0dc&URQv2;_5^cZ(9VsOC*@g~S z`xyMKubU7Dyf>kNMxF^hKbqUw?90_~U(8+TBUmCO` z?)UXdUx%#UXSzB|x8je@2;X_0^rAk`-AKRN64b*AQu0gVi`GAflfL*%4Neo+3xv3HZ5kx;K@z|@`V;P z$uPU=J5PsE%Y@J~r^jB|c8o1N6ikmbOeYx9TFsVx8D*^WEqWm(MQi_VvJ2pHPIc0U z98o$-1zMIa4?PrbonQVO+4>>f;f>bZU23wP<|uqN$~;Z7wpRrUtgi|+7VYUm&j@Vn9!jKMhDsr{F%}$5(7d_JN_<9A| zvO@5N5e>qdvzZW;qrLM48-981eRve_^IlbF<9Uz&5QI0+P&pVAwe>r94(x+cZ6awy zlkA9PR!COd_Run)_I$ssY+>@C{B39K7AayA8lzwP=gw~#=~V&F z^7YVkHBT(pDq8JWEv9$TuS33BXwTf64|GKXq?o&91<5^6QY;>h&v-r29Q)|Mz4Q8y z9*?&o#W6?FtpjM&BDkR6EG$-nycPDH=McNp?OGRP!|}cQ+zr)a6Zv}j->De=1<7vr zdzio>SuzGGA)8&Jl~IGdFknn1_ac$c23on?juc;crG~o-`sKd{}uMZM7e?~ z=R5dNqS=sL0UZVnXI8bZ!&qYtMJI7Xpm_0z!5fRF0VpM@7^A_kDTmq|c#leh`))w+ z(g8hUd*uFHkZo_#W@gsj^K`VJc@plmeNIxHy~{M@b}dVad;d?D#h8X#MlTk4+^}{1 zYGG#h`E5&%_6i81YZ~tzZIt;kRhH#%&Qvrz#?WrDL}IjtrqZp#T~9tFyVDVy*3A=% zNNr=uu?}L*gyT%EIX%wdJCD&SXjd|3vjB7D`9I4IFqDG#T_?I)8er$@RRy7(CVi;;M+L_&&1!@@=mbXqRhww3VE>{30DZ6^s5Mjvp_d-s?OPvBEiG zya)m^{Zxggp-Tx)Y!0q&m5k3|c7HM-TUh$GFq}UIeQl$N6zBpYtWqPl?HZr<7EO8z z`;v;)ypHVYVT%(H^mv=txs>(h-*sU1Xt+Bu_iSXS)o5Pt{0`;QE59qf2|Lx+{o_Q1 zW+Om+QhOCeng;nHr|ny$-zW!GwrSqCt~klH+5>Yv0d22>?{Mr?=F^wFsL>uFOS#*3 zqzzxz;HQVaZT(&rRQP2B&^4%JlB!3r@mnIDroOiB@r=P@9sDXJ+XvwuRfeHM?N2KF z{6OP%?(0IeaaYz18ID4gCh(_Y?(@NW8}~YNp%4#V`cOsoe5%pTkf_534pOT?ziZ>?p# zpY$Nx!Kb1_4IM-O&cl(1h7BB^2ID86r!l_s#81ST#DwssPc>MJQU$E)mNEp_om~fV zLTC-OI*EQskLue!a30H7J%-LLM;jXC&nBq9p83pCPi*X(^WLR97pmUmRp|<`5e24g zei{u=&4|JKsJ9PK7{|K~1Mt+^LV~q@1GwKVi-A9Lee^#UR(3o^MAkct1d4$;Zo9-A z-hyhg_JR69k5{ITM*XXYrLa=D#_*_|Pv3bqgaXu$Ri{VZJA(3KU5GauR!&^x(Afuw z3VLiV{VWa{1n=2juW^Fozw^wuw?V?y506vFNCO_O&O=-nl38{PKD8Q_Hei_C4Nti3 zRa{c_Liz^1WRWUu|1y!gIT0(I;tW2IMZ{j4tPUu>zW$YqBIyO6sb)sU=vyj7-mG)X zrx(0Tl0DgO>pfzicV@d_1IS5(Xl6nIMzhi9`GoACRt zq~!Os(?+Bx*i^A@%9{KEgzO-E9)_3bX^mAW3X0Q}q>umo3qO%X6TVFhMslSCkN>Hr zR`SkxwvVKEI5}*>tv=HXof{OEzS1nmF+Tp%>qTFE!%l1T5PHKp);8^{8F3wtrB9TS zj->*3aeaNoshI5>Iz2=U_PR*|S;Zgi!*2Xq6%q8M_t}IYiR6oY6Ej?#>Cu zJ%Bg;i?;%>-u92ltzz{Gy}tAC((A7}_w~MbiA4;?t$B!s$Bsl%!BoxX#e~Gu`s{-M ziwWu3Y^8;z5$oSM4U!;7XR&}Gs80qKxFD7!LNldO3xnXxCRcw{bK8MpWE1Z5{D6+^ za;m21iC>$WRgV&jac(MG$u~GW*hrmG?44&uthNJB3Qr;GQ0r=K)s<$&G3PIC;eLR! z$12|xQ^zezGr0$G16)ZUd?)!Z5ac=>b8moz!8$hPhsm%H9o;-h6A z5950Qfib#+pgVO_E{&pD%l^Jv_LDbhH!EKKd(354Wp-8B3tFcQLdoKbu9lk(SMQ@0 zZ59&z&}rwZL-*h)-r9$h8RzW-!P8i%CmBDOnh>{zbqbXe47 z;~w3xecw|Zg=Q)k529**b&Yd-8Ul>C_n?h?8nxJ>RiQRYyA}GJpeojEo_>FOyvNUL z1nJ|2hN0rxD`o>ZzC+bT6LsN6PbaRtv$jK+>(*x6a*EL#S#Pr-Ug_U1GB_P81}AU# zxV%k~I+r3$zkA#u6uVP>&3vWF+5Uo`a}NC5Q!84BCn!(nok{N{*TMdiV3UCq*(o^- zKf>b@>EHN1s|`&YiZ|Gd6TwB`23s@nffHUrELq9u7bkik3-O;R%haW*9WCYn$0*f$6I~L0gRI2T;YfRk zs)ShVZ2AP3m^L1UPp_OtbP+{#s}?3oY4+`X+Cah1LR`m<{oLL(7_bsMw`0C<5l;}i z(^9Z+EbBx*d8@kJPq?mPYim#2%A;)U$iD&9PU(gaJ!7k$thF2|0o09DtgrgzZ;r&Y zC?Y`~*hQ*4dd*Q-^iFHC?obfXAuCNnT8bOoXTI(&>0TYHAO4>}n!1d!ZHMW)*TnUv zBBzruIuVe3w9?;Zk&W>YmnzNeN_Nnk6CIIx_lVN#K!w^}%xlG4;VPY0b^T_M>Ryih zEa|Bi0bWHoo7hnmt+zP1x!LAGAblXSE_OsJkK)|i*3o_Gb((?C5&3#WH95{ z2XVlqO_ywmImQ!L%bI}Z+nzljvGd+$yG2nt@RXWK;@hKF|JS9n!rTdwV;%WJb5_I}QnOT0DK2CQWbTl9c@}i`%A&5su~J{kX>a&8e5zjj)~dWn z?suNNz>^tNo`Be2fJ0A@6i&6TSW=u15S;s%;A@*bI{mj4(PmrL;C&u^B;^(jO8hy2 zWpHNEPiW`(q)TSV8o2$Sr7chVJG(M%g8+*L9}h6v)}#E`!Dmt4hv>cgpXhZ|mY8op zfmw3>5Tlqm+ZGNF*X*BTARP@L|GI{SHg`OJSu4AjHT^DkWNnrV5~-g9LO#9}aX5fj z?Qfc8!KX-2A4`1BB|vqRScr%F+dr`Q@WJL)N5!M##{L=XEsK^{oUGu>j^=Vo;UL$` zPNRPM`(OwH|7H5>fhX0TUacs>rcrJ?6%-BE0~954KLWD_03-5rYBiaWQ%SFRsHbhcb>QCM4c_BEO z;-Z6nHtPt$bZ+>cABC3iD&Hjf$=Kqq$hHkA2|mvbkxKU~)D^W~c5?Kia|WS}LG)_R zyzLu15G1bOcC1lcev~nx)nXNA)4?LD+KmVH;>;Cwuf|NX*)m5^v2P3c;W^y}is&rs z3s21t-%l?rYMDtLd2C|?_HD{Q*Bem_(A#Sts^w0t#8m|!ny&{fW1n)(DQ1|pllBfk zi*8Nfq`4JWCF{!zxc>c+{)CzIuKX-3v+#hd-2Gu?ZTU;RK(C~faFqM}kmOk8%Zoy1 zx>8j%xB)b4prE92#@u2oAk4sh2brW*W;?YtdRR;?c{XHDl6jeGXSJ8ltjVIOF~4d2 z{=2A+$-)g*oZvu;x|xw9UE$rX$(BDEteAUpif4L>o{Hi&^6NOo0)fiyA#2p(Vd>j+ zTbof`yy?~73=GUDE${Z2?}|(M2V?e6c<(?d-|rR&_T>-}c~B{xRj zk#0n69neb=;5CNUaH9MKT>q|XXC($3Kzxu7OAeet&%DSz(~%~{PBL^0kSKxuo zI1x&kRJdMF5+JFWP3Z6=tFF%R4fl;Vi6|5tI(r0HTOT@iDEM#S&tGfKXiS=~^cr~E z-|YaTU5ha5j681m_m}SIzy81Ybcyfzajaov*!-A7gY+^`=ArQrh=>N!5+|D?C$2xo z1;!P&SB?THb%VVPZCT4mkcHDO?|4NOuMljrhOgnp>X`m$Rl|d9-wxPRlG}tH?`zP} ziyZvi>~q}R_R)3jo<-$%9{YD+BYSg1Iu89%rVJ63dHK;o8)6T-r$1z%K&+a2vdK~P zsgw_!L6AjcQJRilkl2MOIBeOhuiAWKXCI`KGAp>d$Pjzp;aPT6x}W6Qel}1WFjrCj z*b*Xg-mMpt6qASULE~Epo5qv%D;^esy1lD5pGn2{uQp|_2bs;vD_5wdTUW@2sa(kc z1G}2J{{7UFt6(o|N9&B{w9nW4LbOJ4DwsInMFi@mTb54kwsy5up=rk(cC_^_}^Pt zr0tA+SeuRVj>A?cJqpobGz2KeHQapFue?pXEALEXvKA}a&p$?W@sF>kK0r)YOn3f} z>Bz`atLVH~rCU^0-#E(%&q+khgisE?ExXv~znxJ<;LMcVRqoa-8y>*_!gp9x%Gw56 za{pCziR7KivjJ27hknns4<{zkg^2PtcTbgb8EVTeWpC9sTs6~LpOQ4*b#mW3gkEC;{VyCd7`{Ux3 z0h&viJCfA9)mqlE4GpmDiUBSIe_YtAhafl{YezYchm|>sA$--^6RIkga?dnmdXrOh zVr@e-CF#}v)i<#F&M3;pYuQj@hvmgYFW;(cR!BAaBY6g! z%ecz>v~K_pi#PJ3xU{tP-xx$$9VqX^K34~)n_0wi|Kp67VP9~gV?h_b*_Oa*xq;2r zuVuU2of-FE3j+$!Yd7BgZG1C(lcsn8=;2MJOYRt;`JRnvYr`n;)uaX#<9T*DA%FEr zqOV4kp>kY8%5zw4aa|Rpx`EHhtb9dtB-jz0(c5!)Ofx_$y-*R*e@`zFw`?{^CAalC zOtMQ1+DMg8#{MnQYye*t*at5rN?+fcRKrkX2pXFen#iD6LuTRXS0u31Vof55`=u{L z`iA!o;3Y(o!`VcxV7mw}GB?j(D}FfyCbb~m>@=#8LpI1_F(Vy=GuNW40BrSDLu&`z2@-lR>y2Ol6&2gbT(9{go0G(Ai|i;<$!i2J$)9a&l*k-|B7d5E@-+3N>jO6T0 zCC+@NyjYHNt41H4`-Ib1@GFVtVY@og-+2_{o$G?&A*4k*Sl*()&aM|X3-tC?YFgmV zzFTbEf+<~w3$IQocD~FiyHAicRvgVnSg_VR)Zh~nTf^Q4N{Ml(Jfw72ojomF7Df}p zCktD>Yjz-4Z23MfRqlnMS4WWPVHtUqV!k2`tG_k+Cf8JJ^Hbvz?Z#Qcj!9u2i44En z6N7gQ-}EfXx?biy$`1tCBKHwtkNS{Zr$H6-HV3=m{!S=GhuWF=MFT2kgN5wL+d>!C$9}ZZM8^FS<;X04h9YH1 zTb?rG{{Q0bzv7xo!?%BwsrH7_1xBiL=^bX2B7uOE5FrGVDkTYo-p5fynhXR89qB!h zmJk9&K}rZkY6u}jN+_ZCj(dLlXn*$mzW;sn?(1|Nt>?4udtKk_S?hi4HL1T5=I?ROJhI1h6{@}IMrH6Sy+sM^oipXOZ&h zs-sv(Y?12XcHkY#{PC_nX#;yVrER+*WQ*l^$IaEUyE)x*;Gq*=$7FfE9}5w@=c&95 zs*gOs9+fa_rXv4nV9Zxg{pG?0BjN|g_3fq6fK-U892112`?#)`+4OnV9y|7TqWgLZ z#DKclFXovyB;+=}=c{3!n4J`7M~`7xQV$~<{k3#`$EWVZ~v>me;G zZ(uv+5(lR2q00U1IuU0cMs8eA2E>luN(slU(>KlG!149IuOr*DDBj)2$Qif-ZhH{{ zzleqEjbLQ$n}QW*hv4@X$UB2Yc8E)R0!P7}=gQaAII;2oFyxBfCx29UL<_9taC-W0 zJ%oe_IkfdSe=}H6RM0tPnd7Sb|D6c?|F?R!e@#bdK84J!0~8`lcT(wC7w(i~hz`No18BMbV!g~-G-k?!m}#J{ZY zHx;@{fm7=JY3g|M^RNhFMDmm5e?$rdWZ4)qf;(($yL*lL=~0uTSn!`G=Bs(;sHTmLnc zf7W?oSFY^&^hVXh45S_+u3647lpGFT+|zTJ&;Mzn`H2?0!EY((K4+T0^qW9{+!{W* z<#46pqH`54GrrxpE~BJ8p{P<*ZoN~l6y*1|z@x!C2U|Wmee9GJatNhjdq=bzMnObktGXUG9R zINCQcYkA4>X*jfPw?iP#q_L+me$>HF;K37|JYDFty-ZXgL3Qxz1beKpd??113+zG@ zT+JV7B2`6(*Al}H)SiwV-xD2&n`ab&GL_0jGNIShtlmzn6z#3VjTigY&P^SASdB&e zwQb@T{1YSrE}4>&l1uPPU|2hd@*I&u`+z5Mr1D!G{6*kE+f zq_1S{JQbLL#HnApT>JCdg5K_sH#RRjQvFg9gYSNDd>tCK|1y}T9l;rn*yuNoI~x4J zJyTN36QOyy2aU!$Pe-4mgB8v-ks^-VIazr|pvlZ#T+Q=PJV3WlILJWxBuKV)cC9*~ zpSarl4?+zS^%Q_*{NRwG7XRQ_Jypk>>GXB8;zk?lRo41;KCSI+)^75_NL%h*#zL$2 z%&lV?cy#3I501w1pSXKW&DXDBOu>z&Fyhx6?ldWjjam$|;lGP3_w}oyrM9{ypo91n zXD`24gKU)3q#scE7fI{>ck*23^m3Yl;Rdrv+dSrDt*}|~4Tm+qqf$8>15czc`0lKH zNPk}w9OMTJH|rmAw@T8qQ`KI~bt;r6dUm5?R5kSjAWfxQLP2<$j<;MZ{)mmxjjTL50(|V<&hSD!sxxQ!Y1I2OkN3_O#2IXL}BR;gU z)*lFyxJ1YvHP@ z=PRC|v(jIBjysplp|$rXW87dYfV4SK=~q3O(JHD+)~tEitXlqRtNq$=zrT*cP*0ls z{&kB7Cu9>~^e`PU7tH^n@YmFn>_bknw&;#pPySIcClH%!6x<71Jgl~r|001}_}^XE-27*uzOkiG zdn5Z8Q?A`LtSVcRERuLX);V0|J5^!4y{ERTN$;NberRhvbIug&D_^OLcwDuXQ5uO1 zv{MMeu`j|^d_o^#vM+8Bvfj_ii5~M9l;4f==H9J0Z9r|}d;6gGSgi#v6tbdve!;CL z_btoVm&;O5b7ddQoT$-MUhnqc;jXeBl11-2`l3n)$vC~m(ppj>j0^>0%U7-$r6hymrt*^{nhGi zOQ4(^=<;6!B_)%0q--T}O9@*2#LBn##7Cn_0JECLA##+U$XSICg1SFlpO8CX$(2mS zvkx`Og}T`xoqEWeMSp9I=fwsE?Xk0dENI?ZJqvm3Ji*Fs=lncTm3~r?Sz|e+{1%tG zeVW{Q8CXq>s; z+1bBq)gaXY>FlSYcOA<%6J+Une0^3y5!(34(e!+Rh)9*+7F}qOY=;i@OJn^$8hIza z{x;4p+^6)kbgdkwCS8k4bz~`9CZd>gkss8ppc$i%T8aD?lWk_jj>>7a>zR|5e0rX3 zlntd+%eUF@g{tYyVz~(0pl}~(UX=YNQ4DP3lDudV`14J1pq=hQ3)(9lTq?O$G`5;r z*LGmoSIkT2vy+?nT3tl1Oiz7=oi#AQgo^X3zCzoy&-7W186Q~XzRwj3R*f6P&19p^hxkQUhKe+r?U*vOujZc!_l;U)(PFCOH z@LCuas0XT-ighIZw77$ufyPTtbbU)Fx0^XbVl1QbtyNe%lFWs3!w1aKkpR)|_yl|xRW2rj|or%Q+_g8Jy>VHSR?h+tg34CdlpBRpifZlbJM-PDtvn4hjq+q`=yqjS(f{jFrK@NJ>zx{G5&w1tFmQt@od!3Id}b* z?ceFtL?*tin}XVfRULDme~vTKFNekX#=nK^8-mJ-Frku`jbDRPCx-emhQ^LjkU{cz zQ)^8P?qWL-8>og>fTl8wAOTJ(`$By(9^=aYZg0j8t^>~2IoYXA1X{8SYsw;W+6h+B zpsf)qV`>4eMx#s}MN9hw&Z<8(ydrny#Eb(0O3+d5xA%6OYw>|natBfGUVq$zj=O=Q zs-@F?!;cjs1}&CW>V~%!Yg@GUErECYDW?5~kvHYFtt2b`?_LVZJt;fobD*5%azS+^ z+vyQ;H=D;{Q4~T4V!k$XVbCcI8z_NZbJ^T`)cFq$Ke|knu%F*$uV(V9Lx%#KWD?kM zN6iOz>TV3^_XS!jwM7)cKX#1b;Alb~fPHA3A}3R%qQvP)qLO zMuV15NHYhMvlp_Snl|*;73Q3$ZRsrq<|(PL{b-dR9IvT*{k+FETaJZp`x-7znM($x z+=PQf7l{IQ{0D}vwesS8iSNmI5Q+OBA8b)v$8jq!{KfwV`druN+Pb*K`HIHNAHxOZ zql!c75UhdPG-`w6DmL0bb?H2Rk5QFzvo1HyHSbgXZB%YBq@q1e7f+9zI2G&_)CkS` zWK>6g)~O)C?a7#jhjz~Jfj_#8CX{;?@Mo|tDI*?TB{Bio7I=C7jGTX z1fAj@)%&Xui_2Ob(T z4&mh;>|Y#3OAb`|qK)s0&2MX@Y<=QVAM`tu#aFt8s&#eNF(6+FWhz9EwU-hz-SV2Z z`jJnYsywtqZJY{Sgu;8Ad(BBoYU^Mb|HDVe5yM1JN!)p2x-HeP%0E6@N!}dD$0t(- zHR0-LthQoJg6*B|Zn({x2}!KWrQH0_?xrIf|9<@tIbb4B%(^W3u&e1?1Mg#Nh-r{X z!vkx3hsw1}8Psx;)DsI^K18yHUbw@y}hB}Y5|M)Y?{!JXr2soNfAbA|OAPriJODBudm zu-G-_f;4TL2bT}i^2t9%i;p`@zexGrq$UQ=yeiseeMwXza6Bu1Ex}>fwkME;umY`A z^vPQU5bstdKa7jpN=V6x#A!@S8LAu6tKYhw$gg3lUpgEtSglMGw6nWWekS2>E6UQP zOu)l@N!mb6TRDXoRd($vO*_}+$S(Kvr0D96y~*oI8DJa7|5l}Z)s7iPXgU%BSGb!~ zTvzLw8}7L8WRUkFdwD*od%JD8dcT1Rh`yYtj_uFm-N1{5^X}1NFYxd7U) zy;QYDsrbsWZPKs9Sq2R%UM{w-VS^QWNhHJN9~>pjYKN4g_XiMO+Kxi9c-3@~#yAi+u5<0VbjNH8Bh;B~GGFe+cee81;if7&?0G zx=rIdr+Tk{Px|P0A-5f4UleGEoACj6T)@J3H*cRk|2&(hp{vaumSI>~VWMaM@drnD z#_U5Mj&Q9*C2GHvAb_TlZLrmmB&gFda&%zGBDm7V9=@fK03XOOeQ z3&HE=rFmWGS#X6He?~0~F`HORuD6QcB!P#8@}j!Pbj4#K>z+C}}| z^y@TacYbN}nK(vB==GS$C{oUDE=wxr*`9|L{h>OQ3T$~yO#)Eec zlqd)0X4ZGql1$B_J*~yezM9WYhBPDuINtjTUJd%HbOS!SPqO2C;{l zUP80D{&L~Pk~S{s_|DsrY9?&TDpE`3zZcbl+KSdeb%7LX938k5EqKg{pb}A=(?ct{ zzn)D}p7kaCLl0wHU@5`pv4yc~7xI^9?AQe>XC!*EqNx&1%npKK3d#ubv4fXW2Jp zWxXE-3>1k-K$dQ@ZRh(`A?niNXG=#>?%(~U<${EqfoGRz>Y7KN6#pLQWuKvT7q#FR zF?Kf^{B7r$SF)NF8+E;IwA%F5C9T12)Z0hp5t0Qm45Vk|)XgrvQ=gMy`pS5q=vHik zMy~bOhS9xg0d9p(id+4&I*I%pKPD^<2Nn9k!Fh7;G(ReOngmZDH192!JfRFk5zVmFTMDz@NJlyIpq{c}DDA2|c|rG( zR`2e{4DQ;gj=ull-Q|! zY6xcw?_Rm3^g$zGYWM|0UHEs+R5vm3zt?KYd(Inf)g~i%4A(}eF8_%k zwK~Zr*iyc=#lZZ=3gqc3|K3M^y{SH?D(E69VBUup_&KX(q{;!)jR)ciZ2qemT=y?e z=FA4vW-V>GNg<|;&SElxE+j+^M|M)WeX24O{~(En}t) z?^qcYEWZ80SYSIZ^T7MgQkh&|P1v+|4CE9Wox{i(4{4H(MWAmfUK~m@_a(%6%ZCNb zy&^0U?2W-hjV^d{thaevcEQiSJv&z$B$X`lVRe=cZPm$D$N14bb&%K`&QfE}Vj-E;KsdFX9!(4HY`@txvR}2c@BK2$5bB*6 z-PU#5c7k8?37A18D<1{XiX}^4cAu`-bs-Vorlu1c9Fyu3c~4pzr)$13Qr?+y)>q1n zp{9#ek!7jNuFYWEs^%x=gdK7K#-ia^K)DQu3;crl!4V@Qw%D$1X2%9|Dcn)@Rp4#B zp5*i=W?GsBI||a)X+BKjpMofWhxNy1!=eha%AEv!m9Rba%88>@aQ%CZD|-ieebfMw z$dFphsb>33|FQm8sC=GiqUwEzP<1D*Itd(W$zhsgNZ5=_Cnq-LS}$)OA4v+fi>@(l z$=gk--Gmk}<%_sYXZ?Azuu`0@KmRq_e z;6Rc%RT!H(0`%&dXpjNQwL4AYdP654Tn0nsKh5d-{@>jm z_y_tl5) zJ#wk^9dAaZSE+53RD}afVbkF8fU`khr^79eop!Z`s?r45Rp}Z)ZF=%7P|}q}Qb`RD zSgAJ&SPq+(ovd^ z8D#l9{RD*`w|$kNJ4cxH->X#4mEv5zLWjL7y5*V?!zM7sCM}vl7t(gc10(v-tyaW> z+rt{GU-KTH1J;0-9=OcfOmmIbE+LA;+bMK-J287kL2z4McMGT0wCiVrq%{_e99o=& zpACd7@UNNWDDG6{sZ-_csH%-c=h@m!8uj&F|GB6rbiB@Q*G*ecg&HXjXd~TS-J(QN z%YnrFnb0p^JE^ME(ZN~oly;DNUsummYM&U7M*zYcu_dzvS98;Aiht<=O7hv^q-omb z&N@3%>hqc0n+~nt_~8YYH}B<9k?S%w^qPW$FuqowFh9>2jYcZ)k%)y z(n`lINKeq7Q&HxH5nkOGE7%$f-zl8qLCt^I;yqI8lRDK*R5)^EH|8*WTH2@x#60;Z zs-+3;aak)5>HA;xmtK)y!TPU+IIJY{*G5D--jYnXn-hdj6I800b*37GbvIX(Z`S== ztuPOf#LaYfI>rEysR<(q%?x<@{qOfJD^0V=+6+ zE#^kiGUsW*mI&e+n(bF}9&Iz&yIZe}U9_@Fe5ua+1v4N%9BH1Y6FP8LdsLP%FYFol zpdvJg>ZlUkUOpgk&UtVl!DBm+N4s4`FsY)m=utV@lJCwyQAQp+QN=!+XvRWSeRM*W z+7zsfHA-dS`&aI(##|w3`62Vq`36weXR{J;{{d|``z!0Et8+IIldRq~u;FqBd<*}s zU4yjD^}&RPpFyJSMw=WQ?DrB`0lA2`R*71HK8q2?Z?YPh{LFN85@~k#0UiO>Z|c3SMLox?pCv0PV!LmX7;wGt7qdon|tyhPK6x=3){icfgRN( zZanP=hyLl!H}BV5lx$7JNTLZTeVO_3T3dc|E>)|O8d{DiHpS($mc|A-Z^KB{8$%vQ z+)zxwWP^G=3aHe=tY@DHMf4Aa27NUMilG@P)1x1|=a>m5Gg4d(j)lz^p8#vS$`u}S zk}Anhejgwr*E|I86M(pG7>Kdh6$I=Q7&Vws)U4#S3L(h*h1r8rh# z*B~6|6L*#ESBh_7Y#5Hodtsg%!f5qD)0Jf>x0^z$w!{^J{>H<+c`Rab&VmrcJ3W}H z2r|LngnLJ9smK|zLR5IM5IJ{~Tj5<3@iJgoaY;b)2S*SzENj}M?bI+xhdr*l+}kj$=DI+YFM7U=R8uU=pv;{h*#QV0VOOeEwXQ;BHJ!sJ#<07 zFle{(_Y6x7IFg%+>=PS>o$@FOf2D~8WMfkM-D~O;EUXv}FqP12HqzeXuaT7snj7tR zyc27^5ry7Y9brkPb^a2d$1{1K4{r%})9mUI--ua!@NzG}Lws_u2+~z2vARJHWT+~5 z{x>?P_(NUxTg}?_@qj-(Gpm?tWJGJ^4gL2=qsRIZ1Ikaku_DWqj9`mUdBm%dlQoKi zRL_AB&?7h?r6($(S=HxvD^TmY44ptK@lO z2ZSK7Cc|#W>Uue9+8QOk>?YTVL<_n>$*a4FHics)Ak&CqcP}5|wMLm^lZt2LIpjp~ zfP$^pBWgg74oOB`kcI~>iuq_{KvI6)u1U_I7Efo@^kkaZOLk0@-?SeSFz;d~x~l4` z-yC-=&H-94r@5(;oKl>)%+F>18XO9GY*i(b5`0uD&UG$%$7?MM>b+EN>F9=v41$yr zqispn#mU`Ab;`;W{)Z{wa!sHSBw2i^0rK)QArJ~Z5Wy#_>J|?vRO|DfKfWuYowSA zOr_T)*mBnh)F5}m#M=5w-!z!!9A)WLdnev^J#beDlo|POdbiHzQAJhv;&jRR6-B>F z&Brp>-ZB6nJb-(*`-044PXn zPxRihnL6HZfQl03!18v7(5tP3o~pRDtLc7qYBb|?!4suDw76Woij%CsYBSe>xL^^; z%CEBPB%|8)IeoIdD#zsXCuF<5H%zZ2)P8a5Rhu-+bz&w)@hunGME7%*YM1d`WDu8K zL%0Z$?I{<}E^OZXbd|lUj*3hems_HIs*Bp&Msy<#AGkcrY7YTkH`1 zH_v>M(5E_*@+78)7i@z&Gg7NHj}GxqMU*iT#@L)zxh47i*WcwOQTVj4kgl%RVcXmX zrrtU-A5V>8P@A~#KFZ-I`PypG>vEyCl1zdT_N&H;M1jr#z=E7?$ScRv3=`j#5OEK@ zob^75qOBbi2l98w!J)@SHB3JQT!{CD3}ZqFrZwL6Cc9YFezd4I*0HjCq4r|99${(~ z_{tE*oir|S4&kqCp~Ig}`0q%jq)0k>40C~E+~PEK$r>u5YHAawd(!nccvGX3_|hK^ z$MKdNt`I~rsqA)Fhv`fi8}7W9U?OGZRxrPJ&;IL%+ zj^M_1+swG8B}-RmTjbHLGh#8(YFAQzrFdN(u?NICCj2Ci@NX;!A zpzsL^tcP)ZiOneRxwVHgB z0=sWRjAUFx?@yy^%dek=hUqv2HX4Ec{ADQU@BeQasO@g<1Fxuen=9MWj3ZH2Z%`Jy zwE`vr&$_V6oPl7XB`AjexX2#fY#lLCUgx6%32KZYYuoIfPr&X!_PMP1KVJQvN^*q)OTQ)rPf$ zTrVlTJ>lcssC~Y@h4{1hLVgCh*?3R)dEZ?Y%8a0Hu4`4dk!HJ2a{isz(+W=Re6I7a zWrNo8MIZJe>x@(~tA)YlRWW7!>wTK=B$?=|C-S|dF0HnfMM8R>PmXoQc+bcqs0iuF zy>N$!JMnF2tu?fAvGZT_JI_EBuMQqd)12NHbeYYpB2aseIHtxDjB2k}d)90S|GAu% z+0xDxn(1$iF@?1`pIbX7qEJbThKBy)t929|iSc&USKp5Ia2NLo0rg?KQ|#{gadFF7 zp}0zJsO7vz*A^CQTpcU<6*D!;>S}v@1;1+$aSF>hlM;c$_RmkOmX9OfXB~rRPEU3F z?LT%9b~c4-ipI$<3^DT2_!QgxQFI|}<&df8t>*X{`en+ZQqLOm$h*)B^yF$@fnB4E z*gCn%Q13a`_IAH@r1!WGV6rcgUopd~nw97SB)Q9Uwp$`{+(;FCCKR^`Q$%Gl8K2c8 zc&K1m-Z)lU(77)LbQzToe%RKge#N=6CodJ56Omu4W(~DWeSz)3(Eq$2$EkYDGhcql}@*_ht{v z;CC585`z^B;sf%_bx z*`|qqtm-l{F=`q)jo({qiAZU5Dtj>p=A+$Mhu)P~(fEc@%7*M7s4pO+^z>tE5tQrq zqhq2-T8R4!S+Fb~5NdId)&+b%vrP-2FPva2>-fvBfC>b`N|bu3j9)O)*`RQ9&V4v! zA9{YH=D2nEPU!pa<}!EUzZ|aL{tuBs(P?#2rCq>0)DJ>1S^Jj@08m7t08()J+6UvF zTvIt~sd;D0#U%(0cDgx@?z!)F<1zkCDZne~2ZyH%#QzN4J1j2QLf_U~+Y6b7MNs`b zhR#$$y7SbQ$U_~_LkOR%{y&y8+V>3YT)d#~jLo0d&MJo#K9NsO>q^ zpikzFpZs62Z|PR@ek*+^BKr{yPviIxH}bomSQJiXd+uO9$1J<}PaLP3gr&jcqn^UJ z@Bu(FyvhnFE}v%>;Ci<4gF}SdxZf7gYe?QZMu`Tzba;`9idqQ%z(UC_q?(Z;K}L>H z2tjrHb!tyq)CQggKUj8FQm`Zkf`6r>tHhqosKV5Va&z;2)BCW5*;T?XQUV!bnznrd zMES4H&smOCl~Q@S^7WPa)x7#MsXZNZj_WkuJN>6%tNx@Q>DB0~X9kza&(}S1sAc=X zYOgagVmnabh1Np02?pV-z?6}EebWFfxW_T4rzqd)>Qxs< zd#K54WtoFMRr5Q!t~f8h83lHtQA1o(a_;h13>WobIhTV~^478sm+4R!vef5XU3K7b zkX_!Tpgxn*Vc54)d}GH%aL26hw&him3)fn6zoqzn+3|_N+K7Y)8DDaR)Fuv}cFm0R zE;_{`(_JuBqO6^NUXIG?Ym}{AitTC2dj0JroodY2w5ekKKxB zywK#b6EY~>upXdBJ5R4?7)+cO{WdkPNf&bR_v%WPyR#S>q`GEW3`+5bU{g>;HJDNB za}#y;@GpX2`yz(DOgf|ec}(GXMQG$f(-lzKye9nEhM4l{LW|Y>x8IQ~x_!~YV7$6= z2RfoJBI}(jsVvoS1*k0(fn7BFJcZP$sZn>=VGR;t)3jy_Xn%X)yw~kmk@!R(#x7#_ zB$sMBjtub0oGui2aOB2UJ4dZcZFuh}ksf3&uBkcE4X{cuF|9#c#01i#4cjTx^W=9( z3$vbunJg_)-!&XqKxAGe`#AU3`cJcqhAC)HPZK)-$KrGwmsW!9sYQ8YTa?q28ecHy zljp-*ODMymEbCfLFp^fjPG~TZlE?oPaj%i50!{eCE5_oWrc zXP>q=-NRpBOleJJmK5&-FTA5u4){GwsO}M?J$hH!|ITSMuen$?(rjvqZZ46upx)+? z#+d<(2i|e9=ZlauTT8I{#3@e2E*?|FJ-4WJ(j0Yf5narRw9++?lJ*x-_B$OU_F#8H z&vY{85!~?M6}^H1nRV0m8ohy zSOz_+eB{2xN6(0tA1S|B#*;Xy0uMCw>QdJql8hOV0(xrwA1XT>EMU)YA=w#u!6Lbw z3FZpLE5l{DC}KI=`v6v)(uEh8(5L7HdfXBroa>Kn{P|Kt5^}M8WNkW5aN%>aD%a?V zEY=$_jdssg_878nFa>(_>$XhE-Fdao@tf8E-AwfVENXLyr**;&BDw9N;N1V|+zl6= z$D{Bu<#enN4z)Aee;CQLO$$6!mse`Yn3g^kJ1%xvq!-b8ilfe>->CYmY5DuYzxLN! z2rW08D~u}-&wI%TItoRL`g>9{Vm^kT1rc$6pDIW5p5w@!dE~xjmPR}syZD2{I?CwP`>am>B+rcN{>pb!gPA_>2p#uzF_CljWl6770=F0P zc8c`iblAvO0?Kg()hH-=_wk6|9z(6vRzk}Ub8T3Sxp;E8zhQAHT~k4IC2MVOEchvA14h0u)d9hC%K={%?MKQr>4(En#%d$DJX~Fv zY0=8)C}w7pNb1?3gv4f8d8!qm>!H`*CCA~#EyLUCrwzmN6Mm!E$Xvc!KDp5{2w=E0 zT^=$w4%gnSv-P;9Y3fz|#&Yd&!+;D~!W z)?D;FbQi;LKas~$Y(wLuFZ5Evo9dY!bodZ0z1H9DcvZ&!Xl18A#JW4;ZdUEqhP$Az z*UFQF@N&FXcaesmARU@G;2pz8LD;Oc4WM5eSDMMcqH86Tjd17`tT$#M0rQXu19$)vX!ti*Qu7U z+8Ql+{d=BX|I8l^&rgfGyOFt7m}{>pO-J5f0G1w+H-GpW{4f!7Kz6Z=8{-mjoLP zB5h8OcMQVISjwmEs5(?E%8k35@A-sjwzQ?w&yl!SU)c6=cy-ZVFW8(T^<42? z8c*_k+W5l*JT6@eOd5&{L`wS8hY{~32g>Db)A9$tPSlR8+)vba!RCHpC*Mab%rCl8vNT~xJB^4%jEJ}|T*1m}Y2|3#nVW_#PfA#WCL{eW)s$ClvKAOE&)JESb3dib<^u&i8?YgojfTrz!8wS8V~()t5+lk}%d zS5MM6hza~D@uowLWZj$Y`g3YJ$y)BZPTU!osqu%1(@oQ$+!i0Bq3*oN`YA|P7$;_= z+LFpjh7g6{RHM`KWJK6R^GQ zP|VXy?XOC)snv$d@BHsHPq273I$^_-S1nON%?RVHdE;%R4G^TX!Mqn1OZ zS>l@n8$4*8^rwhhlSd~Z5xIc+N9@dYL8JCSc5#&7al`5E-p}I=G%;fR`K=7?lx?C$-okd(-lL+N`8UwYap$f(ckR;Zc#w91&JmGP8U@%>9@v zwDMNWF2!BwE^@{{@~+6YwRCeb>1%vFe6c$|mEkW0?cY1>!#RHU$2^({yrJ(8Gj)ofad#W(R=3 zBOH_UtC#|i{XmWKE0SD9>0ZA@a|?G+7R6xR!Etx8PAiwiJtVg*%jjbb=n*;V2=$Xk$Q?@J*V+FNDl6S=x+BwH0DL!d)Ee#L2913LU3x5|S z%NY)+WYF({Zs{SDykVq}rgUh?fss-JZ07WKz3LU&Sg8K5;Hv#!lrLK*PplZ{1$$_3 z>q8e8M*Z}72mBdgr`V@IIGmPYRxx-h#B4@Y;o=oO5}dMs5x&C5^7^)HlaNqz_1#G%=`mN_xG#xsp+Xld=o%8kwu zXWZwLnD%6sMAWbK)NEIWzAOJctqkWz%hcWxHqoUl*S_ zY}1iuRWV2_i~7|a4Ww&s2D_m_NTY}UA3iEb&#tTOWS7rNViTKZ8q}tnXdFOiw_UT4 z4kXd=T&wuX>{VJHvTdVpyFhHzyXp^9X(WLh;Uuz4*;R`-(fjPmj`GRPp-DKAbHy8j zq1Rm{X2!eL+MZ9@GAY~#hd-Z!G~o;Jg!|mvYetk(%f4cHPafICam5)R{BJuq-+f^H zK!$(RJwfjbh34Eb+u=VQ%Q(~Y6hya;TgRvPbpfp?uX{uQ#P@F#Q2a80GLbyR`zC%(&*9}k(81`Dk5`k&J>)^QG} z9m{{Vc`s)EU}nOW2ev{KGl*u<9OFQ{DO8 z)IS=B@E@BQ@|8Jl0)%%-Sf(VdIbAXchj>|dtkeY#tmD2ves}MCf#snlJSVCoKbU0u zY)Q(r_~#ty1zP#oNGqr)cx$Su_AH@T{v5@KwpY)IzRDzEw-?oCG{AZSk`(KP>I+2I zxlyx6xtPUx{&R-Jeffl%o)#WUO|TDtng>rqf@5W#!jtV^1f)PWLe1618(I`+l%m$< zyK_o>Stl8q6_$I`K$TTk!i(zQcY)LbegDe^-I=^MVe8d1G)nUtn`;^ zKi$Z&D2BGc>Q-GbI!xK)*gR7wo&h28Jr(83otM&9x%@zYLcr+04pv&A?fa|z+upbP zx=F@;;WVf9hlmNiy0iSDT`jS_qv|vPTE3Bk|A$e#u;-gRSQ}9biK|Lc#M=)Xd@$B1 zHZ7|GkdPgZe(Vsyt^z0-c^A#iwrtP$#)0Pifq=*$Nkeho3hsK$^L>B?Y~<&zfNG`b zG_f=1xchpfgnUiL_rRXLgKt^_0#KY|7LFcd8O3_`5ZM?w0Us(6hME zw>`x?`Ax(_>*N`vWV))9CQP$!hJN5kjOc^p=s@?5)2q8a7!}Pt5cqpfyE!~&OJ$8P zPfrH|)a-zOJK;f4?X?#8N&DjGpXMBQ!-3`fZT1r~cb@P4?`9i5%C)Oxc}@keUSB=i z082rU@D}G{iG>mN500B;1=|GM2G22(iTG}oOM-Y`MWPE=`#QF-`-gr zR{c%D#s}5)w?8q&74#4&(Ut_(H>uBHIk~Mb!%j60H#~)8{cf}f-!kHbbt))DIY*i;GSVl9VWwT5&cClN0K~lWVM*TgLZX+#asj|Et;n1ekg6NNvlo2H}&y= ziIf2Ynl}-8UkNMQMFp+Tk8=xxo~IQO6NQFG5zii0t4rh^Fp8@7WxNyMH%!|43VA3E z8^rv+Qca0VDHHeQkT|)_4LNFBGs5y2)>BJd2+M$-yBmQ(H(0LL$I5)w&eVz(Let|C zmX;eYb{iKSEtp_!`DzMxrd)pQr?MQN3e_l6_b{G=Bc~8xIq^vl>6_h)^^|OI;?zqB zAw0r(DMec^wR3mnBkp*Pfkv#_6(aF8Nn&)7UP}9_RM#riZG0m%_XkJUttYW_&wXHu z$E^pHNT!ud-L{MSNTR)wd`(RpAn*%b;+!(}ovEoFG3~P(0N7gX$GyM%YiDFWeR|-tP1G7KJBwH-??UQaulRnv#=q zWbEr{C8u}&wj={rTp?1(fQ86^?okt757z8H;FIt9L{4Y|@#jwbM@W3yQeVpm1gc;) zWV7yy0yu$Ni@)5 z<)eaC`>(detp{oG%e87nOqVIPRd3q8cCp7p9_qXrU-s{H?ZNi<69MEJ$XJn}57HDfd@B7!vyq@z4xtFIT zM^ZOs#QAYKM+NdbO!u^~sC%b@%RWm9IZ*#m1#9jT(H9&8AOCkr#7_u`lRCdOqKF@+ zLXIU#`$Lu;dUOK6zk^&Xc8In;NB7U?ntr8a4;&Z;A)R*-SE;YCt8NZXU%6KabZV=g z_sV6&nN$Dghn0cQ6t-XU@N+gET~MGh73Mt)08Bu$zi_%{;&Xo9=T22(odas~$rbxL zWde;somnC+Q?dPpHpitBcrkU#je}$EyHV#ITaFsgqD>~$tVw18XRiVcTAwE+b0M7Juo;K8vX?3Wo4y%P8yFh z`w+z`&Mgd3sDDmU#>r0`z_HOhadb2`4}5YuKZFJ0dk1qKIh z9|Xt5V{?n8^yRIfccS$Oc2Gay`eZ^dDyGrLWQdXSik);vE3YM^E*X?&^!yND!@Tt_ zaG={HXrrZk*N9Tobe5jLB_qkA^7`AUYwBju33|1A8z&7hJzsO>)O<(XKv`fg-}+Vh zlz^mM4()K29@z$r{rk+}%S2PvUY{TI8P4P{s4Cyt)J8rfXkuk=h2-)^;hKuex?piT zr40^5VEGyf&1(B4K?vfE2T5A3 zwQDVW$T4Cn`r=BvqIe*e$)FlfyL+J&VPVn!D*Vu8%ADx|(%e%wV}Km2IE{FN5ZJyE zR-&X*`F&&qP1w`t_KiYe=e%x#s)7M0#lJn=3q)2T zo7eF+3ry(gI=!%WtND`XyQUgJaBNP0R~37;;g)#0B=^anf-4?~7#3O*&WYdE)N#E? z-BI>KTImUAM|=3su1n|Ldh%st+o9B4T(L?X0w00S%+&O9gxpp3oNmi}|9*_)XU_lI z(dqw5pZ(mdauprI&a6H#p`=d}8)YDi`OW2|Rkg~2ajoy=(yV?|IByc-#^SJ}A!z-f zLyg%;CY5%-njv26sk!W*Td z#He=(Nr_v5Zi7_W404|SySh9Z09hVe6txr-Zkt*3Y5vRI@O^+$%0Jz9~`5b zI~vvAW?vEJL|YMwz(!5$@>XrBq8h-me;S*W21@F-g0;6(9RYv^$RvHcvr{SBpmHVK)5*Jr6|GcY`&#rI|kN71V z-B9fy*>H4sgSKKM;9PF24R`ypEfelFT=CA@X=Hb!&PeeMmXI>5WB1avn|DIL6^Lxc zukPu5(})$djA2i$B#sHZZEeJdWAYjJN2u-rto~+nXvl%?V(9?oQ(XJgY}ce9^J&!Rk9QEDoIrGS^hmmg`JnYlp)%~z&(pdx+#n8JvnV$?7jdt zH*YgH|A@_`~wA;Z9b2{_AK}v&e`KkN_s)u?yFyQQHqcILLNw zNV=bHrsom3^CZ7CIXxZa922Y_rGxQ(li1Skcq$)x!9}S@N9BbTTz|z6zPVyKx@Q(* z`922)FgLe~q{DEuu4aFQIK@C&{MRhrV~qpy;GOCKHYyU`(Jokk0H#c61cMR-dMR#! zz)ij{C(1WnSu5|G4uyxYJhL0_GL;SyJRhHc@!;-}?Uiv!hr%Urt2J}HOO^W~9PWK9 zdkt+Ss-Q;jSLbRC3s$dOV1|J@IVU^D>l?Bnq)vWt*zL^ZMBiDCdN4b?YM0fJl%wOfxr81l;-xgD4*rYX9# zpYH0O+tU%Smg4Dlq4sBQ6`f~(aJ0a(Ws!(d>nlAea-+F6spr5qm-yyw<~5D{5y9eu zB+*-~5FYaLb4Ua)S=Va84&;=O4&t65s6lp$%u8mC6xOW#_q2kdPzgCai?+pTxW#x{ z_I|5Gv1+5ve?L)tCdD`JMm4{F$F4` zr2M-!sq}>lBdSe$h-Ldsp00L*-qr>w>is4NBml}$z0#hN8hL&SC!O>d3^%jef}VZN zyTv0qBJD7odaNIHe${>6F(-5L+T4Qec{!zY7G!`f;E@72vgm%ru4AQ>$z?7yqo3cF z=Q(SBcGcHktw`-kfJ%r`_%d=5>D<=15C{?~#X zOT1;$A$_{^>3-*dZl$y$dQ?gH1F4}oZ;#2>@7`i}U77CWPhGgkbFK7+VM>El{3KCe z?XBy<2F@%crq183Pc6{oo`)ttwIbkcINFWpK3cPJUUHlpxyHhIs!~XQih1T6_|*5| z({BVt4qvjX=bmm~84fEG+$tmV@XPD0&NIh$eZm!|>F4$9V}CZeakn_HA=39vc($FM zcA{Mq0+-A|MoLvyeh}Rh2YA|C_M3Mz%juw*$|R&UlG*aqXfm?H*Mj6&%GIG}ZfkdB zH5sEVle=abW%Ic%q0EyORNe4txy8h1dYng^QupAvX~o$pzu;W z*xs$t)lRXoh9P$YLsPx1oDz22o9Ac}Qk;XM_6Acgm6J3IgiVJ)!(>zn&-P=b72)c` zV_vDFxQK;{(G z&8`jWHJ|FH_eCf0xAye}no}~0L2EQ?tqp%#u4;YtrKSd13V|DfF9ML|zhptDqKtT)* zZCSlAE?AnZ^jKZA4F8Zc5n? z4nSUrEhMV%?&>Jv_e?uDTPZq6=@#d@k)lJNVr@`VN!V(V5?oF*XgOpE#Lgw$<6I+8 zSYCcvEzU@hs{8BAwA!_Q_1^N^+qb#pSF?39%Y{=BnFSxx=KJ!=Ld~@oe;X{|9--bb z`l{LkonR4WOcV;@s=;D%GX zS6BVUZ`BxotA#zcmiw(;qyAmO3e?EHS?~A^N(B$-!Xcmez6WwmzO4^-C;|F?VLD?0 zV?U-1|6FJ0km}eq=pi^}86=?4k+tAFmcw`?OKCt5_-NZaOP4fB&IM9ZLBDjVKipXZ zH@*~(<5_(h8oWXfTJg8=_;!t3FBG<%rB{{nkN3BC2TQatWhtlc@qgMC^(?B&QGRe- zV-k?fVswu>lZ`(=%;6kj{3?5@byE+#3qdU}_b{|~EqW|D<1JK|HKVNgGM|spmYGurF(~%wx85e(p_#%uOGWzktvDLar z2Ig;ve-#0AyDL@ZB}O(|!Xwoc`A(7!J)iSh zXUKf5vV}lFwrL+(k}YYtMMM!j=)@;5FZ!RoNGB1yn`-k51Dl#72UaKLqyAjM@20F) zulIKi%i)uwzwK4`cD56C<@q|%&^xm=TcTh;)R=GG#Y)1H^!SPa@?R=rE=2YZjx`U< z2Ag`jtCOVnuRB}S<4WeW{H9B}kIOYl@n&So)hzfNF1bjfVc`fp9TNDmWTYj1I?`H% zj*1}i6|kh|e_h{r!7cFie(|?D4g0x6w)6NWr`l282;pxp18T-@Ogj_ZGO>@q(7FFc#6^n zsgk=Q3@#5^^&(MbH?@2CtvkozeMRN>&Eg1h=%*%!$$L#dI9}G~{ov3_jHuDBpj2^> zdYBj%=XvG+=2Nb%l2a&s$N+iMu&Gg`{GRe2maR+Kg<}+4WwR>jp1}1Gb^BenD=v?( zMD5jl=pS6U&vo6?Xx*sS=^<(J856aOa34(AQJhf6seTE!h!GO<%y1dBPpX@;PL|WR zu!{z>5#y~1C5Ls*B%|J&#~q4^f25karqV<%t#Y#4p4&US)O!swHx9GYhR@FjBZOsk_v!V$h12p@4+)ajT1u=v$phBSN3JGW~uLE)Y;wQcpf? zKA7I2^*vfXuylNz;G%VyTqKooKhJ@_R`N7yk?Lwwpk8Mh4{I*3lZgLVG)o~>O4}&N z%PX1aBVS&=XI0E4g&5v&^LtV76%CB{th&)8C4t*}xH~n&W!ThC|0o8Dw1I7eRAKwy zR-?|#je57frcdZA>b70sDNlH^033vhJholyPC8yO2XZeg(SZdEU()3i$3E@?*gF-`1@ zAU-g>@#m0}Tj*pcFIZC=fdK(~NHP#zl4y?0E0C`+k0<|E8gk#>Ir1g-)xwVVj(y+` z#x{SYwk2?1Mm7JJF~Jk>&rJl2-ydPPk&QLjbeIC{kfBN{yD00AIA0z1tZA!)R1rCT z7}bKfi#2qgK+6NOSwoZEBU@ zDp!#tdYhs^5P)hKZc1rCl4;J+IyAoiea*C?If08hct$wJndp(j&%>iU2wzUs7jkLE zP+~Mbg|ZYeoWR3geYP=e;U-sf;^UNL3eTgct5PWJS5@P;XMpu?pi+W!1|We3e~Mvo z#TQ@|xd#Zvb;!k~n@+$(IRuV=C~-R!ncFUGtynfr;hy=bqaf!mk-toF9!XQD?Z0?$ zpJu(d@6!~(i7gQw*fsdUL2RZC&>|>dZ$W|nCbhkQ8vsS@oQdf|=tDw#OrZEfxD9^q z&yeMrc5K~Me-n)!LRwL|#Boa|?MaRV;7<4-4-<1sii%s?-zIpX(^rWbj-O-K?`JdN zG1ILHdfQhk>A^cc&v54`D5*gtw*u)%wBseUmm z9YPh|dBt3m(j#!t>r+T4iv$Q&06kIix7=5oLk^^&+E~g#DNF(T(h~XUH_UAfA zJg2)bN=c8eV=P?9!URVx$&FE*ktK|_!cg)yE^62=W4`Ac0KKRPGH(WUz5!lX#wgYpVcznBB zA9RHUY6XFrQoS*n&qE=|Y8%|@@E&CISb&Fb%U14?mY0C+#zlHK$#4J9e^)Y}r^F;H zJT2_UVEyl|i(h}PAyGJRO1zLmvDTyW+z5rY3mHJ9&+O%L%GDViHs55Hn!sB4R95Zx1? z8*KcoTy=XX#&7@PCP~i{%~YwXZO=N+t+S*7!fW$SE5zEv15N#-8+NR+=9G-)!W9>- zCc2bO#yUl3^@Xi_>~$vwE9Sj4>MeVV=OKK^g!a<<>RJHb#?rBZkq`+A7lhZ3bsByde2}=ZAiA?)}5E3Z`E+sKhN)NF1qTt z{MPJ(v|(9Mbp@Ne{6f)+FsP< zzbN$|o{tb4!6@23D{VjR*2d!_iTh?N>#Ac(1+U{OtQVGC##6vikQXJSIGlh>N&gHn z?)<GBsJ8|Z{M(5Nc!dl z-1l2c5;Y(74VYp%7Q`8;2nX8S3qHT%89zVF|$*mwyooh>U+VLv?Y1} z3L~#2$;2_yS&Q9+uLgBit0M)X7IbQ=u_jQTvXLnrhLz$}TKS>f?x0me5u}}=wz8I} z_%hpk5#l<)o#gpuOo;^}8_#9@;JA9A<#d&edCvR%5bT2~P)f^~{zR{029umpJ@iIY z4i>P){~m0mQEKJzK1`B(+J`8ag@UT~RpnMEq@^B}(qK&ZDLi1|3r|@w<+@#%+#c-A z5`A4@TfVmmoGgVLL`FWK64J($iW+?qTfN#(xeRJCE$s^0vy6x9?WcQmgulV|Mzzm( zogre$nk56f9qhpD^f%lx{otz+{IgTN4!4ezvnDZ4+^-fXx^vsWpA22NtAyjAAyO(8Aw)rr!^7EKt)K>DHj%Ipb7ueo-Pl`ghqxUB@cy+p$6e zkDFo>QnL#pnSlR?-Sd#rN0eO-3y}4lfL9j ztnd%!u&6~A{Mi!4K_h@i%-~iqJ}Re{D6DJOp~bM1&+#q&J%7;Ll67varGM=O#c0@P zv?y)K^^8oTX~I@^Xo5O3YS$(_!m~~YM}(aTXVr@2;<9bS=iEkoCy`qX{0yq}M(Nu5 z`)P&BCC`J$N_FR5rlB29u^!V)q{vguW6WZykn3Ct-lSMLr_0_k>&*`i+WlUtX4lU6 zuPn_dQ{2U-Yv}mAdAsmjkaekxHAU5s|yujAcY`YZYzQuxUWYEip*9E7oBef47 zMS#E92jBBpKADhR!76hfxf&fA0yMeymZvs{Ul)9K6Bo|M#V0NPL3YE<0VS4aLl)j7EZc!h8}Z=w}N4gW3I|K@;Pd$6$_M zWy|_zT^)Sl)0~QpWYiy*9s7eNFRh&v%U_Ah+`OC_xAQF|$J`z+cWBPJ#48Z2An@`MIj4P>%{VYtVfj(1bS0&+$i!4bsVL zJ2FYtRM^C+5L)tAm;9!FONGQ-l%i^P9b;!$7@l<|zJ2?wl|6 z&b&v@#z~Ny9hcs#fhVp7ebB5u!=r0`iHdWCHn%mYj&$WpyVi2?mgz(Xa*v?UOZ9mp z6ZU?@_M57gZlf@MmVdR>V?fQxA9-=jjq^TXp>dl>B+kRgcS&V##_^4<&qvsVK|*B- zi|+|3lhoz6dY<>;qE%{kAY5HW)T*nur-e}yG*9pSpRM4smXnL9HVg030NuN>uwh^M zykp+r!PamEzx00-Nt{-ePytBOM%Tqymq4PQvfj*l>@Sj@t!(|Oo9^Z6za_^P=-5tE z#>kI}@XqRfm@ZoBICDy+KgJ@<;a;uPQh30!S@(Fc_Ddlf^k&3|kcs{FjU;oN>)ejv z{>i_qSQ2zpjBQ`0UFAhU=)3$|}Te9r(j93{%eo4Mq zXSg1dJOWJv`@i zOpaL;{)5A07!?;0$j-R8V0*Cg&f`)j+cFSSd8nL~=}#vAlXg%mcW|7kjeMDqnL z;bz-l`es*H`cO0PT0@Lt_S+J)!nVRg|1Y}{cMc8}pW~>gtVRC~{Bl+lr8EjGk};h8 ziBG1i&!gm?SCC* zlN*GjM_UaXy0UC@m~NB*Zb38u^{zq9IQ=Qwy>#fg4qw;BJ*+C%c#^6s9OULXGJhC3 zVy+av;gqi$r~&@{SBHq8>a>?awZSTzcN>rAS2Dr))`+D`J1{t@Fz;qCDDGDjBO4r# zqa$w31AHytkP{%$DauhgtFnqiKRC=CaCa6{Kdd0wGre2C&_Z8u+^qY2*KbxQ*a785 zt`z&9=roFiGO}}}YnP-sc2|G4yQ-rJ12_rKh#f#ry7edFyeg_1!K>5T{@wL7p`v4}u~`Mf$1$ChZGfvtLbHf0m}#kcaaEafcy0E5auVqsy-j zUTM|H2S#>E_&fE#NsZ3d2I2a^NZhFI=c;GG3i&`QQ6khPI|e)|V3; zY&)iTlUokX3S)Ujqo&#XzjKA@71$~q_Kx6~Fhc$*9zTxq?7@NiLKRZ|}o#h1H| zdGr@=Sj&gIt?Tjh{L_5)DEkM;ZAh^vpJuwDe_M5>-t83p-iIx6HBWegI&7g=DmCTfIh{s_8w$QqYFtP?Ta9gDKR70X{S@~`{RLTM za{GEk{$T9vOj{6i^vjss($4IV!{W&r&Vi(VL1<^V%6n5H%3^2p-$=J_S1f&@4mhFB zB!#fSL^K7*%&PC{$1D*&%ZKmledfXoZAh$ zG*erXzAjFlJoe7$Mbml=D(bz0&N^YC znk;phC?Sv0%5ag)$HIcxpx;#HjlQlibla|O^ctd$KIYIkW=Oz!Mqo12*u`Wzl|01du7Al66YWNNS5==-uS(!e4O;lVe^}4=;n7 z3GJ_VG@aKLEhl&4YmhKZERO23{_PqZH>-ZB;o;}5quh7Plz?+S~Tib%0=|9{<-Qw>tRYtVp?d>+WU0Fo!S$w%0TbQ zD|Ojv2Zp}2ec>YA(u)Lfc4Ey#ke+)l_sdvjK=@&ZCPIB!h?dppQNKQ!bWI!qJYfIY zJ8FN_5~N#ot;(me?{>APUT>F9mlV9f;CFMnG}cWG4}H%EHcoFl;XO-mi+apHxLdh4 zU2^bqy1)PGWOG?=FtgATpzL+WDGRyWWoUG(La6IF)zYF4=?xp%Q*gGvT9KX_86*mJ zt|NccDHqNkph+BcWconfcDWCF|zjAm+lk zZ0Xqt@@^M`X!F1AfrhG=h|;whU2weY{KUv20=cPj-0}yH!vQOGl4uw~*Noy+tp|ip zLU!SOXtaev+n-rcZoJ!GCFLHJZ?SKngsknf(uU-(i68XxY~{>XnJR78iq8*CylzY! zK=yt?kY~@LL`Qu_o383i)t)<_ixm_b^?cTm^td)V*qUS%deGw8lb8o+ra~>f6fG@g ztiun(_n9ttW;3Gns;gFm0M9~0xQ)4QGd8bIyGTr}Zv*wJM`R|KCA0blQYHK>l0AZj zxgr*sW=`?Jhxkx z^j9qL5(#Q@SLK!grBTJb00VOcT2TCTl^AlhXrOO zV0tMVm*bus?&y%67EFidlO_YLgeqU#MrmWZwiP-R5T`djE#~^~xuNel>R}9vA)0+B zMYx0L0dey_#pQ;60)Xi+DtAfrDx7AmRg0Vg?Mf+Bd4KEnniA}bWBfWzY&^fi2CGWw zv>tc8+A|u(_N4PbGv;}p5K(J(w$6hz+9e(c9gVQQp*yaWtZdPcT~R zTe^_jr8>0)x5tZV>hy2b{G6v{XVWFY@LkZv@xtlGZ~e8V5~_&HeNqR8xn7%f+6uL& z`wBfjTl)nAd$6uU{%KX%RHE19? zseTzfZt`Wwja2xH+KQ1Jz=8DG@IKT-0p4jVE&#|4L^&BgQsyRxzq)vgze78Npp)lUKOCHXbo4>${3SIQm924CFF) z-$q|I!73Eby%f4`Q2Q;;zYz6osn-a|@;E{F<*+3Dqwx$n!h z_=8BD)2;J{_d0~*X(qapk1I!=O;qLz5ScLwu!QZhRfWWw@W;9t3(MB`{xyZpnYBGJ z>nyT&|1AqQ7_RY{V44nNmM=W{wtvG#D_GYQ(D3_h)AT{kWaaSFoLWCPL{#d22*g+} zPIow}YHx3q)RLz>-u5X>uNtmB#RD+~>MNCR%jN&zD1i4^e9xC14I!FlIHDtb0!_dH zR-PRYNm|LlDsy!$Vt39RYm4?8Y0UA-D0Xr55V<%ga3ytz7kh0L7~?TuOby#~O@Z zc%@Re<9_Sk|4YgLo-?<3dwy&4XD_hp7n*DpE7s;-Dl&Ioe02>Uok9?n3R&+) z&gJ>JtX%jHH?FkUkdTy?P5C@w!}??Rx%m%{hUU@UfjcXLte$}(UO%℘(O(KcT4N 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 z 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 Date: Mon, 5 Aug 2019 18:10:31 +0100 Subject: [PATCH 15/27] specify ubuntu distro on travis.yml --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 2efb79094..cc349e4b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +dist: trusty language: ruby # Manually handle git submodules git: From 157bfb906e1e6878c9cb837ceee755d46a21ac03 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Tue, 6 Aug 2019 10:35:22 +0100 Subject: [PATCH 16/27] Update country_statistics CSV file with nr fields --- lib/data/seeds/country_statistics.csv | 493 +++++++++++++------------- 1 file changed, 248 insertions(+), 245 deletions(-) diff --git a/lib/data/seeds/country_statistics.csv b/lib/data/seeds/country_statistics.csv index 192a776f0..eee4a520d 100644 --- a/lib/data/seeds/country_statistics.csv +++ b/lib/data/seeds/country_statistics.csv @@ -1,245 +1,248 @@ -"iso3","pa_land_area","pa_marine_area","land_area","marine_area","percentage_pa_land_cover","percentage_pa_marine_cover" -"ABW",35.833833,0.026514,189.420844,25213.94735,18.91757646,0.000105156 -"AFG",673.16062,0,642899.1342,0,0.104707035,0 -"AGO",87506.59243,24.341169,1255217.852,493753.373,6.971426695,0.004929823 -"AIA",6.274344,32.219534,85.524417,92653.59144,7.336318937,0.034774188 -"ALA",41.035664,503.943526,0,0,0,0 -"ALB",5098.516663,304.392513,28746.5563,11199.39919,17.73609544,2.717936094 -"AND",126.120308,0,471.870724,0,26.72772469,0 -"ARE",12733.89139,6166.123302,70921.45739,54711.04352,17.95492064,11.2703449 -"ARG",235365.9451,41249.95469,2785327.721,1083150.624,8.450206536,3.808330418 -"ARM",6860.446492,0,29685.40559,0,23.1105028,0 -"ASM",33.371984,35457.57732,210.578755,406816.029,15.84774494,8.715875183 -"ATA",0,4774.711754,0,0,0,0 -"ATF",7851.080041,1702574.614,7855.43,2277432,99.94462481,74.7585269 -"ATG",84.536207,196.917827,455.237976,108492.3833,18.56967377,0.181503826 -"AUS",1487710.336,3014429.414,7722102.022,7432133.367,19.26561359,40.5594096 -"AUT",23829.38774,0,83912.25912,0,28.3979814,0 -"AZE",8798.362587,345.314137,86639.62334,79032.11878,10.15512562,0.436928862 -"BDI",2065.705682,0,27210.87243,0,7.591471709,0 -"BEL",7634.045734,1270.104582,30683.07213,3465.140147,24.8803174,36.65377238 -"BEN",34369.0025,0,116095.3632,0,29.60411298,0 -"BES",91.577774,2755.525866,322.852496,25112.35272,28.36520551,10.97279055 -"BFA",41157.73236,0,276403.7182,0,14.89044092,0 -"BGD",6455.725173,4530.200776,140160.1678,84563.21214,4.605962787,5.357176793 -"BGR",44996.29738,2851.951552,110862.7479,35171.8505,40.58739138,8.108619568 -"BHR",45.481965,94.820117,686.857403,7632.763476,6.621747804,1.24227768 -"BHS",4930.158571,47355.48699,13458.00624,597705.1345,36.63364754,7.922884422 -"BIH",714.847791,0,51225.15128,0,1.395501571,0 -"BLM",5.112058,4243.89095,25.109707,4317.87991,20.35889148,98.28645165 -"BLR",19383.06277,0,207228.0654,0,9.353493086,0 -"BLZ",8401.656832,3653.592271,22297.76618,36249.83866,37.67936557,10.07892009 -"BMU",1.507493,0.254821,72.478422,451643.6848,2.079919731,5.64208E-05 -"BOL",336405.5463,0,1089908.94,0,30.86547269,0 -"BRA",2509320.934,977792.6843,8529399.243,3672584.326,29.41966794,26.62410437 -"BRB",5.640151,10.321249,444.068519,185019.8485,1.270108274,0.005578455 -"BRN",2794.368916,51.679209,5961.686662,25698.41824,46.87211983,0.201098793 -"BTN",19171.20958,0,39933.48814,0,48.00785122,0 -"BVT",43.986608,13.870359,50.639751,440224.3515,86.86181731,0.003150748 -"BWA",169369.7355,0,581162.9215,0,29.14324526,0 -"CAF",112827.1168,0,624568.0306,0,18.06482422,0 -"CAN",1060937.776,165665.3985,9955032.941,5698082.708,10.65730051,2.907388449 -"CCK",0,26.294478,0,470116.606,0,0.005593182 -"CHE",4131.851172,0,41355.27022,0,9.991111531,0 -"CHL",155154.8153,1506502.331,759820.962,3657313.03,20.41991772,41.19150641 -"CHN",1461511.266,47491.66492,9361608.881,878364.0892,15.61175311,5.406831347 -"CIV",74170.95794,130.372645,324107.7064,174842.1752,22.88466348,0.074565902 -"CMR",51220.8022,1685.49771,469428.0915,14704.2551,10.91132021,11.4626528 -"COD",324289.6838,31.363659,2344275.114,13265.40707,13.83326052,0.236431938 -"COG",140031.5994,1280.313272,343736.7395,39863.59306,40.73803678,3.211735756 -"COK",67.100582,1981949.229,258.141911,1972842.358,25.99367989,100 -"COL",169544.5158,124670.6807,1145032.899,730741.8263,14.80695585,17.06083821 -"COM",172.688456,37.464378,1701.123719,165505.135,10.15143426,0.022636384 -"CPV",120.123431,5.423162,4148.996795,801065.1343,2.89524039,0.000676994 -"CRI",14608.17403,15061.6931,51636.14199,576110.183,28.2905993,2.614377171 -"CUB",18480.57139,15818.76605,111643.2783,365755.7493,16.55323246,4.324953491 -"CUW",71.009581,11.656382,450.975385,30535.00449,15.74577757,0.038173834 -"CXR",87.649012,0.753516,142.416955,330035.5,61.54394468,0.000228314 -"CYM",31.133127,92.901287,289.266866,119605.4547,10.76276984,0.077673119 -"CYP",3386.08814,120.958963,9063.433945,98279.50173,37.35988104,0.123076492 -"CZE",17265.28518,0,77916.89786,0,22.15858903,0 -"DEU",135390.2648,25562.51049,357584.3854,56357.93768,37.86246558,45.35742708 -"DJI",343.960179,11.802761,21843.65212,7031.12303,1.57464593,0.167864521 -"DMA",168.469169,10.012306,766.22784,28749.1828,21.98682431,0.034826402 -"DNK",8202.821875,17932.88012,45314.39778,100469.7507,18.10202116,17.84903415 -"DOM",12727.3973,48625.33917,48509.80547,270774.1738,26.23675188,17.95789402 -"DZA",174218.6183,110.267218,2324458.588,128992.9935,7.495019239,0.085483106 -"ECU",55980.25872,144125.4431,258138.6687,1079901.071,21.68611893,13.34617096 -"EGY",129389.8156,11715.81678,984997.4881,236612.0565,13.13605538,4.951487659 -"ERI",5936.248417,0,121834.4031,0,4.872390938,0 -"ESH",15269.8993,3709.987384,268339.2162,252024.2549,5.690520946,1.472075529 -"ESP",142399.1621,84225.04305,507013.405,1005717.296,28.08587715,8.374624099 -"EST",9211.086637,6767.85611,45416.48284,36346.36825,20.28137377,18.62044665 -"ETH",200073.9748,0,1135429.227,0,17.62099919,0 -"FIN",50901.51811,8352.242381,337725.5344,79467.83379,15.07185952,10.51021776 -"FJI",1036.512388,11959.01476,19154.95614,1293034.72,5.411196874,0.924879632 -"FLK",61.100176,52.093517,12400.947,549091.6441,0.492705727,0.009487217 -"FRA",142596.2051,154901.8964,548954.0701,343866.3878,25.97598103,45.04711771 -"FRO",33.786873,28.889108,1450.644909,266720.4336,2.329093274,0.010831232 -"FSM",0.401738,475.050992,817.158681,3011916.98,0.049162789,0.01577238 -"GAB",59707.74205,55720.61869,266044.6066,193292.3301,22.44275605,28.82712349 -"GBR",70356.30986,208871.0228,245247.5873,723404.7034,28.68787034,28.87332939 -"GEO",5831.181965,152.96289,69971.96837,22907.00911,8.333597154,0.667755835 -"GGY",3.42847,33.480134,85.559741,8672.655691,4.007106567,0.386042467 -"GHA",36153.44505,220.877347,240329.9832,226758.5827,15.04325202,0.097406389 -"GIB",2.426334,54.748777,7.483277,426.745945,32.42341557,12.8293608 -"GIN",87841.7778,583.248819,246426.8074,110136.2872,35.64619398,0.529570075 -"GLP",1170.201835,90957.91428,1678.541217,91039.08888,69.71540664,99.91083544 -"GMB",441.86625,15.848759,10757.9084,22745.53308,4.107362078,0.069678556 -"GNB",5667.921785,10660.72491,34015.72123,106506.6285,16.66265356,10.00944736 -"GNQ",5228.231143,729.714996,27136.01782,310365.4119,19.26675896,0.235114793 -"GRC",46842.05396,22326.02504,133012.2689,494172.4508,35.21634083,4.517861125 -"GRD",36.525372,22.668297,373.565244,26281.5155,9.777508102,0.086251864 -"GRL",886455.3706,102325.3573,2154016.464,2264467.117,41.15360237,4.518738935 -"GTM",22038.6271,1065.193983,109922.2585,118336.3927,20.0492852,0.900140657 -"GUF",44030.25688,1365.477582,83034.50925,136563.8487,53.02645524,0.999882176 -"GUM",126.105991,18.36469,561.240901,202535.0554,22.46913772,0.009067413 -"GUY",18453.59558,17.404509,211200.2683,136909.9886,8.73748681,0.012712373 -"HKG",461.758922,77.63466,1102.47934,0,41.88368029,0 -"HMD",391.198904,70453.52882,391.198904,416110.9534,100,16.93142856 -"HND",27060.29621,9144.343173,113291.4823,219971.1738,23.88555225,4.157064317 -"HRV",21752.31657,4737.056345,56855.88522,55462.35822,38.25868946,8.541029442 -"HTI",534.077665,0,27390.24191,0,1.94988298,0 -"HUN",21049.06125,0,93142.45067,0,22.59878401,0 -"IDN",231945.909,181848.1746,1906555.047,5947954.167,12.16570743,3.057323064 -"IMN",31.751404,419.422876,582.226592,0,5.45344449,0 -"IND",182646.7039,3928.327395,3061193.496,2301226.499,5.966519401,0.170705813 -"IOT",68.952846,642270.8732,68.952846,642744.6863,100,99.92628284 -"IRL",10127.42256,9945.099192,70128.37704,426441.7422,14.44126185,2.332112035 -"IRN",140225.7775,1808.644138,1627857.17,224800.6295,8.614132743,0.804554748 -"IRQ",6713.746023,0,437830.5052,0,1.533412118,0 -"ISL",18571.902,2863.10312,102301.7663,752783.5116,18.15403846,0.380335525 -"ISR",4180.414797,9.067342,20958.0329,27855.0403,19.94659907,0.03255189 -"ITA",64904.81984,47394.46738,301335.3097,538880.953,21.53906885,8.794979135 -"JAM",1760.198539,1859.991697,11058.94539,246488.4991,15.91651352,0.754595733 -"JEY",22.230737,185.03376,125.218467,2962.105951,17.75356106,6.246696204 -"JOR",2773.578439,33.455456,89689.84024,93.665949,3.092410948,35.71784235 -"JPN",109936.6645,332694.3839,374092.7945,4040612.297,29.38753863,8.233761604 -"KAZ",90083.02894,1249.454686,2719827.869,119085.0237,3.312085664,1.049212275 -"KEN",72544.48541,903.902773,586770.0015,112400.4482,12.36335962,0.804180755 -"KGZ",13402.50902,0,199957.0236,0,6.7026948,0 -"KHM",47503.40656,89.107039,182510.8526,47966.8519,26.0277161,0.185767953 -"KIR",230.885727,408796.5464,1032.564654,3459130.413,22.36041357,11.81789923 -"KNA",8.982278,17.436922,270.825058,10262.9088,3.316634755,0.169902338 -"KOR",11637.6153,5309.233026,99712.88376,324993.7978,11.67112499,1.633641338 -"KWT",3048.24619,175.974631,17417.87587,11895.81218,17.50067697,1.479299004 -"LAO",38581.96123,0,231276.1399,0,16.68220563,0 -"LBN",268.277274,40.839545,10329.04876,19315.84107,2.597308622,0.211430322 -"LBR",3914.960977,256.049624,96634.42399,247767.6811,4.051310926,0.103342624 -"LBY",3437.476191,2277.750889,1622615.431,357895.3125,0.211847868,0.636429372 -"LCA",116.653527,34.007036,622.311137,15560.30791,18.7452096,0.218549891 -"LIE",70.47938,0,167.064349,0,42.18696593,0 -"LKA",19897.4988,398.564426,66631.50337,534085.0497,29.8619989,0.074625647 -"LSO",79.71045,0,30494.99377,0,0.261388642,0 -"LTU",11013.35321,1567.706297,64696.51583,6125.653875,17.02310096,25.59247272 -"LUX",1332.387109,0,2603.081524,0,51.18499351,0 -"LVA",11720.84665,4631.301701,64501.94768,28879.55287,18.17130656,16.03661152 -"MAF",7.609068,1030.536085,59.578286,1068.741983,12.77154566,96.42515232 -"MAR",125351.1669,717.910689,407280.495,276136.4075,30.7776013,0.259984077 -"MCO",0.528888,283.522868,1.595194,284.22031,33.1550896,99.75461219 -"MDA",1409.67766,0,33963.76161,0,4.15053455,0 -"MDG",33242.1381,8997.672125,594718.7259,1205824.849,5.589556315,0.746184003 -"MDV",3.683705,474.933082,304.666095,922109.9914,1.209095814,0.051505036 -"MEX",284175.3495,707942.1699,1965284.828,3284659.67,14.4597539,21.5529839 -"MHL",33.593723,5388.396257,281.928035,2004587.264,11.91570856,0.268803277 -"MKD",2686.961324,0,25443.14057,0,10.56065118,0 -"MLI",103445.3359,0,1256684.114,0,8.231610053,0 -"MLT",98.095341,3495.870104,324.970466,55696.65564,30.18592496,6.276624806 -"MMR",42878.48881,11964.44587,673078.5676,514147.2175,6.370502772,2.327046702 -"MNE",1456.773173,10.436511,13847.56188,7459.237226,10.52006978,0.139913917 -"MNG",277375.3288,0,1565864.159,0,17.71388196,0 -"MNP",38.441128,257249.9205,501.224059,773667.8566,7.669449882,33.25069257 -"MOZ",170662.3039,12821.00808,791081.8731,574409.6185,21.57327954,2.232032276 -"MRT",6507.878372,6487.581027,1046302.522,156197.8626,0.621988214,4.153437775 -"MSR",11.182345,0.000273,100.664381,7628.258983,11.10854196,3.5788E-06 -"MTQ",1280.73635,47915.67266,1149.925062,47644.30608,100,100 -"MUS",97.460291,49.64392,2062.481937,1280068.317,4.725388827,0.003878224 -"MWI",27190.40907,0,118859.7323,0,22.87604771,0 -"MYS",63418.8825,6977.70038,331700.5726,451741.5382,19.11931656,1.544622265 -"MYT",44.436011,68829.33301,396.377408,63362.33751,11.2105307,100 -"NAM",313534.3576,9646.27499,827465.4339,562727.6243,37.89093112,1.714199654 -"NCL",10413.51706,1325070.398,19141.03171,1371803.153,54.40415763,96.59333378 -"NER",206090.4852,0,1190098.655,0,17.31709252,0 -"NFK",19.957518,189084.3131,42.778966,432638.0836,46.65264233,43.7049627 -"NGA",127359.0344,30.555979,914306.1122,182868.1867,13.92958361,0.016709292 -"NIC",48104.12746,6660.345162,129222.3127,223935.2389,37.22586792,2.974228261 -"NIU",53.434436,36.900176,267.755527,318243.6931,19.95642689,0.011594943 -"NLD",3958.425448,17126.39853,35205.61182,64204.97933,11.24373429,26.67456435 -"NOR",55973.90611,7696.958098,325287.8156,926317.7348,17.20750161,0.830919868 -"NPL",34897.91838,0,147709.5419,0,23.62604199,0 -"NZL",88464.44129,1249447.107,269651.6705,4106953.859,32.80693242,30.42272082 -"OMN",7985.072834,663.989764,310373.1429,538980.1915,2.572733181,0.123193723 -"PAK",98288.08094,1707.397433,798143.6542,222743.9199,12.31458528,0.76652931 -"PAN",15773.05824,5593.115449,75497.94621,332643.4965,20.89203618,1.681414339 -"PCN",37.035971,839648.6171,45.589943,839478.9503,81.23715136,100 -"PER",279619.4414,4036.819355,1298537.038,838329.5928,21.53342055,0.481531296 -"PHL",45762.33428,21269.12928,298774.9046,1835028.192,15.31665932,1.159062808 -"PLW",140.309346,504690.9119,501.101386,608152.4889,28.00019116,82.98756005 -"PNG",14330.33788,4585.469187,467405.9203,2407381.818,3.065929904,0.19047536 -"POL",123906.7111,7210.775928,311923.5191,31945.64308,39.7234269,22.57201682 -"PRI",657.215588,3077.928815,9041.14294,176163.0606,7.269164887,1.747204439 -"PRK",2975.649808,25.611911,122186.1412,115967.2688,2.435341504,0.022085465 -"PRT",21114.47368,285578.3431,92141.09473,1724156.15,22.91537098,16.56336887 -"PRY",57473.44474,0,401498.4235,0,14.31473734,0 -"PSE",516.767863,0,6181.987004,0,8.35925185,0 -"PYF",73.831954,206.943116,3780.061341,4795468.095,1.9531946,0.004315389 -"QAT",1512.836196,538.143058,11435.55274,31987.65323,13.22923544,1.682346167 -"REU",1600.443036,40.854528,2536.304619,316498.9308,63.10137292,0.012908267 -"ROU",58126.49915,6865.607617,237452.8706,29726.44952,24.47917307,23.09595572 -"RUS",1641400.88,228247.3371,16874835.52,7673314.113,9.726914839,2.974560062 -"RWA",2319.729861,0,25452.13068,0,9.114089071,0 -"SAU",92063.63591,5495.452494,1934058.339,220338.2086,4.760127141,2.494098744 -"SDN",42697.53496,10661.95429,1871251.813,66785.64454,2.281763185,15.9644402 -"SEN",50179.21798,1766.175004,197923.9723,158426.4028,25.3527743,1.114823649 -"SGP",33.585431,0.100552,604.646128,762.68502,5.55455984,0.013183948 -"SGS",3971.692688,1065900.045,3971.692688,1445886.657,100,73.71947451 -"SHN",157.137807,453612.5594,434.343214,1647745.112,36.17825764,27.52929177 -"SJM",40092.18364,82714.05977,61261.11552,1081582.098,65.44474957,7.647506364 -"SLB",514.977904,1879.382668,29191.64527,1609756.547,1.764127712,0.116749497 -"SLE",6824.701851,862.533185,72709.02892,160452.5672,9.386319626,0.53756272 -"SLV",1805.57217,664.798852,20573.30437,94238.04744,8.776286673,0.705446335 -"SPM",7.163126,7.021851,237.589267,12367.3281,3.014919862,0.05677743 -"SRB",6687.228547,0,88509.11514,0,7.555412272,0 -"SSD",98214.50384,0,633580.4791,0,15.50150409,0 -"STP",289.416981,35.280222,989.259888,131709.1714,29.25590985,0.026786458 -"SUR",21425.69156,1980.928256,147558.4488,128362.9877,14.52013878,1.543223862 -"SVK",18395.3999,0,48941.21743,0,37.58672315,0 -"SVN",10889.59482,396.970655,20308.54692,186.314047,53.62074827,100 -"SWE",65905.78265,23604.86049,449390.1761,154980.4918,14.66560378,15.23085919 -"SWZ",738.207109,0,17335.867,0,4.258264723,0 -"SXM",0.000136,43.282473,36.455424,497.533856,0.000373058,8.699402559 -"SYC",241.673419,209929.3831,486.864575,1340839.459,49.63873558,15.65656363 -"SYR",1292.567557,25.201794,188612.6151,10203.61673,0.685302813,0.246988834 -"TCA",451.737848,149.820284,1018.174578,154242.1775,44.36742556,0.097133149 -"TCD",259841.8715,0,1276585.969,0,20.3544358,0 -"TGO",15876.86929,30.987414,57480.648,15520.93847,27.6212427,0.1996491 -"THA",97391.375,5773.799574,517786.6125,306890.539,18.80917209,1.881387283 -"TJK",31690.1072,0,142244.2178,0,22.27866109,0 -"TKL",0.998313,9.510634,15.181307,321242.5226,6.575935787,0.002960578 -"TKM",15336.26559,2331.770078,472137.5437,77885.16348,3.248262247,2.993856562 -"TLS",1959.473342,584.110567,15006.53549,42501.27223,13.05746648,1.374336664 -"TON",121.971897,10055.15988,766.502265,668054.6083,15.91279016,1.505140411 -"TTO",1594.834426,37.071977,5213.102096,75798.46305,30.59281013,0.048908613 -"TUN",12286.01772,1042.360893,155230.8391,100660.5035,7.914675845,1.035521239 -"TUR",1709.103181,270.18272,782238.8742,255925.9584,0.218488653,0.105570659 -"TUV",0.815638,62.087748,41.785977,731900.0274,1.951941916,0.008483091 -"TWN",7145.88111,3846.48539,36245.33119,342996.9472,19.71531471,1.121434293 -"TZA",361593.9275,7330.445298,947252.6908,243129.5958,38.17291109,3.015036189 -"UGA",39058.65252,0,243144.8535,0,16.06394376,0 -"UKR",23854.95145,4606.122845,598828.7966,134873.1664,3.983601255,3.41515141 -"UMI",363.497911,1278997.392,363.495,1964384.514,100.0008008,65.10931964 -"URY",6150.088128,931.553409,178459.889,130097.9744,3.446201924,0.716039902 -"USA",1233169.29,3527444.441,9490391.294,8591493.148,12.99387193,41.05740853 -"UZB",15200.69742,0,450362.5106,0,3.375213759,0 -"VCT",91.899504,80.359651,409.906569,36510.93366,22.41962217,0.220097497 -"VEN",496701.1417,16499.94342,917367.6523,473325.0963,54.14417442,3.485964202 -"VGB",15.995538,3.314329,175.605042,80529.47601,9.108814769,0.004115672 -"VIR",51.815838,306.278747,375.62477,36030.25521,13.7945743,0.850059888 -"VNM",24994.30956,3630.264972,329880.371,647232.2216,7.576779875,0.560890643 -"VUT",528.222229,47.509867,12575.12729,622073.2227,4.200531866,0.007637343 -"WLF",0.301679,0,180.605517,0,0.167037533,0 -"WSM",212.692968,114.846969,2893.945283,132305.5976,7.349584985,0.086804316 -"YEM",3519.593039,2562.368242,455938.919,548013.9807,0.77194398,0.467573517 -"ZAF",101336.4817,186106.9994,1224384.577,1542559.897,8.276523866,12.0648151 -"ZMB",286161.0949,0,755640.3907,0,37.87001045,0 -"ZWE",106837.168,0,392573.2003,0,27.21458517,0 +iso3,pa_land_area,pa_marine_area,land_area,marine_area,percentage_pa_land_cover,percentage_pa_marine_cover,percentage_nr_land_cover,percentage_nr_marine_cover,nr_version,nr_report_url +ABNJ,0,2608397.416,0,13945571.19,0,18.7041275,na,na,na, +ABW,35.833833,0.026514,189.420844,25213.94735,18.91757646,0.000105156,na,na,na, +AFG,673.16062,0,642899.1342,0,0.104707035,0,na,na,,No information found in 5th National Report +AGO,87506.59246,24.341169,1255217.852,493753.373,6.971426697,0.004929823,12.5,na,5,https://www.cbd.int/doc/world/ao/ao-nr-05-en.pdf +AIA,6.274344,32.219534,85.524417,92653.59144,7.336318937,0.034774188,na,na,na, +ALA,26.105068,503.943526,0,0,0,0,na,na,na, +ALB,5098.51665,304.392513,28746.5563,11199.39919,17.7360954,2.717936094,15.83,na,5,https://www.cbd.int/doc/world/al/al-nr-05-en.pdf +AND,126.120308,0,471.870724,0,26.72772469,0,35.7,0,6,https://chm.cbd.int/pdf/documents/nationalReport6/241228/1 +ARE,12733.89139,6166.123302,70921.45739,54711.04352,17.95492064,11.2703449,na,na,, +ARG,235910.9544,41249.95469,2785327.721,1083150.624,8.469773688,3.808330418,na,na,, +ARM,6860.44649,0,29685.40559,0,23.1105028,0,13.1,na,5,https://www.cbd.int/doc/world/am/am-nr-05-en.pdf +ASM,33.371984,35457.57732,210.578755,406816.029,15.84774494,8.715875183,na,na,, +ATA,0,4774.711754,0,0,0,0,na,na,, +ATF,7851.080041,1702574.614,7855.43,2277432,99.94462481,74.7585269,na,na,, +ATG,84.536207,196.917827,455.237976,108492.3833,18.56967377,0.181503826,na,na,5,https://www.cbd.int/doc/world/ag/ag-nr-05-en.pdf +AUS,1487710.95,3014429.414,7722102.022,7432133.367,19.26562154,40.5594096,16.25,36.2,5,https://www.cbd.int/doc/world/au/au-nr-05-en.pdf +AUT,23936.60836,0,83912.25912,0,28.52575847,0,27,na,5,https://www.cbd.int/doc/world/at/at-nr-05-en.pdf +AZE,8798.362587,345.314137,86639.62334,79032.11878,10.15512562,0.436928862,10.3,na,5,https://www.cbd.int/doc/world/az/az-nr-05-en.pdf +BDI,2065.705683,0,27210.87243,0,7.591471713,0,na,na,5,https://www.cbd.int/doc/world/bi/bi-nr-05-fr.pdf +BEL,7633.716165,1270.104582,30683.07213,3465.140147,24.87924329,36.65377238,12.77,35.85,6,https://chm.cbd.int/database/record/190C2BA4-9F5C-AD89-32B5-778480AB2C5B +BEN,34369.00255,0,116095.3632,0,29.60411302,0,20.16,na,5,https://www.cbd.int/doc/world/bj/bj-nr-05-fr.pdf +BES,91.577774,2755.525866,322.852496,25112.35272,28.36520551,10.97279055,na,na,, +BFA,41157.73345,0,276403.7182,0,14.89044131,0,na,na,, +BGD,6455.725175,4530.200776,140160.1678,84563.21214,4.605962789,5.357176793,1.8,2.05,5,https://www.cbd.int/doc/world/bd/bd-nr-05-en.pdf +BGR,44996.29746,2851.951552,110862.7479,35171.8505,40.58739145,8.108619568,34,na,5,https://www.cbd.int/doc/world/bg/bg-nr-05-en.pdf +BHR,45.481965,94.820117,686.857403,7632.763476,6.621747804,1.24227768,na,na,5,https://www.cbd.int/doc/world/bh/bh-nbsap-v2-en.pdf +BHS,4930.158571,47355.48699,13458.00624,597705.1345,36.63364754,7.922884422,na,na,, +BIH,714.847791,0,51225.15128,0,1.395501571,0,2,na,5,https://www.cbd.int/doc/world/ba/ba-nr-05-en.pdf +BLM,5.112058,4243.89095,25.109707,4317.87991,20.35889148,98.28645165,na,na,, +BLR,19383.06377,0,207228.0654,0,9.353493568,0,8.72,0,6,https://chm.cbd.int/pdf/documents/nationalReport6/241352/1 +BLZ,8401.612777,3653.592271,22297.76618,36249.83866,37.67916799,10.07892009,36.6,19.8,6,https://chm.cbd.int/database/record/7E3D234F-E8AD-520C-C92B-490CE2806718 +BMU,1.507493,0.254821,72.478422,451643.6848,2.079919731,0.0000564,na,na,, +BOL,336406.5863,0,1089908.94,0,30.86556811,0,23,na,5,https://www.cbd.int/doc/world/bo/bo-nr-05-es.pdf +BRA,2509320.851,977792.6843,8529399.243,3672584.326,29.41966695,26.62410437,16,1.5,5,https://www.cbd.int/doc/world/br/br-nr-05-en.pdf +BRB,5.640151,10.321249,444.068519,185019.8485,1.270108274,0.005578455,na,na,, +BRN,2794.368892,51.679209,5961.686662,25698.41824,46.87211943,0.201098793,41,na,5,https://www.cbd.int/doc/world/bn/bn-nr-05-en.pdf +BTN,19171.20945,0,39933.48814,0,48.00785092,0,51.44,na,6,https://chm.cbd.int/database/record/780672FC-714D-DCB8-463B-8C13757C89D1 +BVT,43.986608,13.870359,50.639751,440224.3515,86.86181731,0.003150748,na,na,, +BWA,169369.804,0,581162.9215,0,29.14325703,0,29.1,na,6,https://chm.cbd.int/database/record/79991C85-C09A-E604-22B4-60A04E4C873D +CAF,112827.1169,0,624568.0306,0,18.06482422,0,41,na,5,https://www.cbd.int/doc/world/cf/cf-nr-05-fr.pdf +CAN,1060926.045,165665.3985,9955032.941,5698082.708,10.65718267,2.907388449,10.5,7.7,6,https://chm.cbd.int/database/record/C54338B1-F853-7542-B2AD-34985A78BE08 +CCK,0,26.294478,0,470116.606,0,0.005593182,na,na,, +CHE,4131.851171,0,41355.27022,0,9.991111529,0,12.5,0,6,https://chm.cbd.int/database/record/79437B02-8838-F9E7-B0BB-571AB9CB6F30 +CHL,155154.8192,1506502.331,759820.962,3657313.03,20.41991824,41.19150641,20,4.3,5,https://www.cbd.int/doc/world/cl/cl-nr-05-es.pdf +CHN,1461511.275,47491.66492,9361608.881,878364.0892,15.61175321,5.406831347,14.86,na,6,https://chm.cbd.int/database/record/C7B6BC32-C06D-B09C-BFF8-7D265F24DBE6 +CIV,74170.95795,130.372645,324107.7064,174842.1752,22.88466349,0.074565902,na,na,6,https://chm.cbd.int/database/record/6C5CE2DC-C057-ADCB-6424-0F485C7DEFEA +CMR,51220.80277,1685.49771,469428.0915,14704.2551,10.91132033,11.4626528,22,na,6,https://chm.cbd.int/database/record/9AC174A3-DA9D-FD8C-764C-E2691FA90EE8 +COD,324289.6789,31.363659,2344275.114,13265.40707,13.83326031,0.236431938,11,na,5,https://www.cbd.int/doc/world/cd/cd-nr-05-fr.pdf +COG,140031.6065,1280.313272,343736.7395,39863.59306,40.73803886,3.211735756,13.2,,, +COK,67.100582,1981949.229,258.141911,1972842.358,25.99367989,100.4616117,1,na,5,https://www.cbd.int/doc/world/ck/ck-nr-05-en.pdf +COL,169544.5157,124670.6807,1145032.899,730741.8263,14.80695584,17.06083821,11.27,1.5,"National Biodiversity Strategy and Action Plan (v.3) +",https://www.cbd.int/doc/world/co/co-nbsap-v3-es.pdf +COM,172.688456,37.464378,1701.123719,165505.135,10.15143426,0.022636384,22,na,5,https://www.cbd.int/doc/world/km/km-nr-05-fr.pdf +CPV,120.123431,5.423162,4148.996795,801065.1343,2.89524039,0.000676994,na,na,, +CRI,14608.17371,15061.6931,51636.14199,576110.183,28.29059869,2.614377171,26,2.7,6,https://chm.cbd.int/database/record/158F6797-D2D0-91DF-E1D1-55EF84D295E0 +CUB,18480.57139,15818.76605,111643.2783,365755.7493,16.55323246,4.324953491,na,na,, +CUW,71.009581,11.656382,450.975385,30535.00449,15.74577757,0.038173834,na,na,na, +CXR,87.649012,0.753516,142.416955,330035.5,61.54394468,0.000228314,na,na,na, +CYM,31.133127,92.901287,289.266866,119605.4547,10.76276984,0.077673119,na,na,na, +CYP,3386.076946,120.958963,9063.433945,98279.50173,37.35975753,0.123076492,na,na,5,https://www.cbd.int/doc/world/cy/cy-nr-05-en.pdf +CZE,17265.28518,0,77916.89786,0,22.15858903,0,na,na,6,https://chm.cbd.int/database/record/C94184E8-C30E-C894-DD41-0F1C62E7AD6A +DEU,135401.4928,25562.51049,357584.3854,56357.93768,37.86560554,45.35742708,na,,5,https://www.cbd.int/doc/world/de/de-nr-05-en.pdf +DJI,343.960179,11.802761,21843.65212,7031.12303,1.57464593,0.167864521,na,na,, +DMA,168.469169,10.012306,766.22784,28749.1828,21.98682431,0.034826402,na,20,5,https://www.cbd.int/doc/world/dm/dm-nbsap-v2-en.pdf +DNK,8318.121999,17932.88012,45314.39778,100469.7507,18.35646595,17.84903415,na,18,5,https://www.cbd.int/doc/world/dk/dk-nr-05-en.pdf +DOM,12727.39737,48625.33917,48509.80547,270774.1738,26.23675203,17.95789402,26,9.6,6,https://chm.cbd.int/database/record/4CAD6958-68E8-A0AB-E856-852720AD7CF8 +DZA,174218.6183,110.267218,2324458.588,128992.9935,7.495019239,0.085483106,na,na,6,https://chm.cbd.int/pdf/documents/nationalReport6/241357/1 +ECU,55980.13776,144125.4431,258138.6687,1079901.071,21.68607208,13.34617096,19.6,na,6,https://chm.cbd.int/database/record/6120BF7A-BD24-5225-9DEF-4D4BE3AD3799 +EGY,129389.8156,11715.81678,984997.4881,236612.0565,13.13605538,4.951487659,14.6,na,, +ERI,5936.248417,0,121834.4031,0,4.872390938,0,na,na,, +ESH,15269.89945,3709.987384,268339.2162,252024.2549,5.690521001,1.472075529,na,na,, +ESP,142393.4623,84225.04305,507013.405,1005717.296,28.08475297,8.374624099,27.3,8,, +EST,9211.085571,6767.85611,45416.48284,36346.36825,20.28137142,18.62044665,18.8,27,6,https://chm.cbd.int/database/record/E23CB1F7-405F-D3C8-C1A5-8D2912E49CCE +ETH,200073.9753,0,1135429.227,0,17.62099923,0,14,na,6,https://chm.cbd.int/database/record/86A4EACE-5D8E-479D-CD33-319D77EA9032 +FIN,44785.69749,8352.242381,337725.5344,79467.83379,13.26097464,10.51021776,13.8,17,6,https://chm.cbd.int/database/record/8BC90B3F-3587-ED1A-0BE5-FBA1287318A4 +FJI,1036.512388,11959.01476,19154.95614,1293034.72,5.411196874,0.924879632,2.7,na,5,https://www.cbd.int/doc/world/fj/fj-nr-05-en.pdf +FLK,61.100176,52.093517,12400.947,549091.6441,0.492705727,0.009487217,na,na,, +FRA,142640.6248,154901.8964,548954.0701,343866.3878,25.98407273,45.04711771,29.5,22.91,6,https://chm.cbd.int/database/record/C838741D-098B-3BAC-AE88-3EDACDB092EA +FRO,33.786873,28.889108,1450.644909,266720.4336,2.329093274,0.010831232,na,na,, +FSM,0.401738,475.050992,817.158681,3011916.98,0.049162789,0.01577238,na,na,5,https://www.cbd.int/doc/world/fm/fm-nr-05-en.pdf +GAB,59707.74205,55720.61869,266044.6066,193292.3301,22.44275605,28.82712349,na,na,, +GBR,70364.52325,208871.0228,245247.5873,723404.7034,28.69121936,28.87332939,28,24,6,https://chm.cbd.int/database/record/A8D6330F-38E5-1E72-50A3-406ABFBB9612 +GEO,5831.181959,152.96289,69971.96837,22907.00911,8.333597146,0.667755835,8.62,na,5,https://www.cbd.int/doc/world/ge/ge-nr-05-en.pdf +GGY,3.42847,33.480134,85.559741,8672.655691,4.007106567,0.386042467,na,na,, +GHA,36153.44517,220.877347,240329.9832,226758.5827,15.04325207,0.097406389,20.66,na,National Biodiversity Strategy and Action Plan (v.2),https://www.cbd.int/doc/world/gh/gh-nbsap-v2-en.pdf +GIB,0.350582,54.748777,7.483277,426.745945,4.684872683,12.8293608,na,na,, +GIN,87841.77901,583.248819,246426.8074,110136.2872,35.64619447,0.529570075,15,na,5,https://www.cbd.int/doc/world/gn/gn-nr-05-fr.pdf +GLP,1170.201833,90957.91428,1678.541217,91039.08888,69.71540652,99.91083544,na,na,, +GMB,441.86625,15.848759,10757.9084,22745.53308,4.107362078,0.069678556,6.4,7.4,6,https://chm.cbd.int/database/record/72F99C09-A17F-497F-7B00-EE38CDE69E5D +GNB,5667.921785,10660.72491,34015.72123,106506.6285,16.66265356,10.00944736,13.75,12.63,National Biodiversity Strategy and Action Plan (v.2),https://www.cbd.int/doc/world/gw/gw-nbsap-v2-en.pdf +GNQ,5228.231142,729.714996,27136.01782,310365.4119,19.26675895,0.235114793,na,na,, +GRC,46842.05403,22326.02504,133012.2689,494172.4508,35.21634088,4.517861125,21,6,5,https://www.cbd.int/doc/world/gr/gr-nr-05-en.pdf +GRD,36.525372,22.668297,373.565244,26281.5155,9.777508102,0.086251864,na,na,5,https://www.cbd.int/doc/world/gd/gd-nr-05-en.pdf +GRL,885647.6174,102325.3573,2154016.464,2264467.117,41.11610251,4.518738935,na,na,, +GTM,22038.64399,1065.193983,109922.2585,118336.3927,20.04930056,0.900140657,31.06,na,5,https://www.cbd.int/doc/world/gt/gt-nr-05-es.pdf +GUF,44030.25688,1365.477582,83034.50925,136563.8487,53.02645524,0.999882176,na,na,, +GUM,126.105991,18.36469,561.240901,202535.0554,22.46913772,0.009067413,na,na,, +GUY,18453.5957,17.404509,211200.2683,136909.9886,8.737486868,0.012712373,8.6,na,,https://www.cbd.int/doc/world/gy/gy-nbsap-v3-en.pdf +HKG,461.758922,77.63466,1102.47934,0,41.88368029,0,na,na,, +HMD,391.198904,70453.52882,391.198904,416110.9534,100,16.93142856,na,na,, +HND,27060.29625,9144.343173,113291.4823,219971.1738,23.88555229,4.157064317,27,,,https://www.cbd.int/doc/world/hn/hn-nbsap-v2-es.pdf +HRV,21752.31666,4737.056345,56855.88522,55462.35822,38.25868962,8.541029442,12.2,1.94,5,https://www.cbd.int/doc/world/hr/hr-nr-05-en.pdf +HTI,534.077665,0,27390.24191,0,1.94988298,0,6.28,na,5,https://www.cbd.int/doc/world/ht/ht-nr-05-fr.pdf +HUN,21049.06124,0,93142.45067,0,22.598784,0,22.2,0,5,https://www.cbd.int/doc/world/hu/hu-nr-05-en.pdf +IDN,231945.6876,181848.1746,1906555.047,5947954.167,12.16569581,3.057323064,22,na,5,https://www.cbd.int/doc/world/id/id-nr-05-en.pdf +IMN,31.751404,419.422876,582.226592,0,5.45344449,0,na,na,, +IND,182646.7039,3928.327395,3061193.496,2301226.499,5.966519403,0.170705813,na,na,6,https://chm.cbd.int/database/record/93FF87C5-5D5D-B150-2A0F-5D3AF67E77C9 +IOT,68.952846,642270.8732,68.952846,642744.6863,100,99.92628284,na,na,, +IRL,10125.44075,9945.099192,70128.37704,426441.7422,14.43843587,2.332112035,14,1.4,5,https://www.cbd.int/doc/world/ie/ie-nr-05-en.pdf +IRN,140225.7781,1808.644138,1627857.17,224800.6295,8.614132779,0.804554748,10.4,na,5,https://www.cbd.int/doc/world/ir/ir-nr-05-en.pdf +IRQ,6713.746023,0,437830.5052,0,1.533412118,0,na,na,, +ISL,18571.902,2863.10312,102301.7663,752783.5116,18.15403846,0.380335525,na,na,,https://chm.cbd.int/database/record/BF781FE9-A0CB-A201-0EAA-F59EC1EC1EFA +ISR,4180.414799,9.067342,20958.0329,27855.0403,19.94659908,0.03255189,21,na,5,https://www.cbd.int/doc/world/il/il-nr-05-en.pdf +ITA,64904.81993,47394.46738,301335.3097,538880.953,21.53906888,8.794979135,21,19.1,6,https://chm.cbd.int/database/record/075ADA4C-96AD-4864-9C6C-D252F644A314 +JAM,1760.198539,1859.991697,11058.94539,246488.4991,15.91651352,0.754595733,18,15,5,https://www.cbd.int/doc/world/jm/jm-nr-05-en.pdf +JEY,22.230736,185.03376,125.218467,2962.105951,17.75356026,6.246696204,na,na,, +JOR,2773.578439,33.455456,89689.84024,93.665949,3.092410948,35.71784235,1.6,25,6,https://chm.cbd.int/database/record/E3AD5C2C-E18B-0515-2B13-B5906FB9C971 +JPN,109936.665,332694.3839,374092.7945,4040612.297,29.38753876,8.233761604,na,8.3,6,https://chm.cbd.int/database/record/134290A2-76E8-AF7A-E322-14E20399677D +KAZ,90083.03007,1249.454686,2719827.869,119085.0237,3.312085705,1.049212275,8.96,na,6,https://chm.cbd.int/database/record/104097C9-32D6-85B6-4630-6D69CC6DC2EF +KEN,72544.60101,903.902773,586770.0015,112400.4482,12.36337932,0.804180755,8,na,5,https://www.cbd.int/doc/world/ke/ke-nr-05-en.pdf +KGZ,13402.50539,0,199957.0236,0,6.702692985,0,7.38,na,6,https://chm.cbd.int/database/record/411B9A5E-1A4D-858E-3E40-643E17C4E9CC +KHM,47503.40661,89.107039,182510.8526,47966.8519,26.02771612,0.185767953,18,na,5,https://www.cbd.int/doc/world/kh/kh-nr-05-en.pdf +KIR,230.885727,408796.5464,1032.564654,3459130.413,22.36041357,11.81789923,na,na,, +KNA,62.014371,17.436922,270.825058,10262.9088,22.89831357,0.169902338,na,na,6,https://chm.cbd.int/database/record/C0A7116F-F642-2089-08C4-81605C16F1BC +KOR,11637.6153,5309.233026,99712.88376,324993.7978,11.671125,1.633641338,11.57,1.4,6,https://chm.cbd.int/database/record/37C38AFC-AF9F-168E-B555-2EBA21CF2DCD +KWT,3048.243171,175.974631,17417.87587,11895.81218,17.50065963,1.479299004,20,3,5,https://www.cbd.int/doc/world/kw/kw-nr-05-ar.pdf +LAO,38581.9612,0,231276.1399,0,16.68220562,0,18,na,, +LBN,268.277274,40.839545,10329.04876,19315.84107,2.597308622,0.211430322,na,na,, +LBR,3914.960978,256.049624,96634.42399,247767.6811,4.051310927,0.103342624,na,na,5,https://www.cbd.int/doc/world/lr/lr-nr-05-en.pdf +LBY,3437.476191,2277.750889,1622615.431,357895.3125,0.211847868,0.636429372,na,na,, +LCA,116.653527,34.007036,622.311137,15560.30791,18.7452096,0.218549891,na,na,, +LIE,70.47938,0,167.064349,0,42.18696593,0,12.3,0,5,https://www.cbd.int/doc/world/li/li-nr-05-en.pdf +LKA,19897.4988,398.564426,66631.50337,534085.0497,29.8619989,0.074625647,28,na,5,https://www.cbd.int/doc/world/lk/lk-nr-05-en.pdf +LSO,79.710462,0,30494.99377,0,0.261388681,0,na,na,, +LTU,11020.11574,1567.706297,64696.51583,6125.653875,17.03355367,25.59247272,na,na,, +LUX,1332.387111,0,2603.081524,0,51.18499358,0,27,na,6,https://chm.cbd.int/database/record/7C393CC4-D665-CE1D-B971-CD4271602FB8 +LVA,11720.8467,4631.301701,64501.94768,28879.55287,18.17130664,16.03661152,17,na,5,https://www.cbd.int/doc/world/lv/lv-nr-05-en.pdf +MAF,7.609068,1030.536085,59.578286,1068.741983,12.77154566,96.42515232,na,na,, +MAR,125351.1662,717.910689,407280.495,276136.4075,30.77760111,0.259984077,16.2,na,6,https://chm.cbd.int/database/record/650BA56F-8B7E-91A7-6622-56AEEEDD28CE +MCO,0.528888,283.522868,1.595194,284.22031,33.1550896,99.75461219,na,na,5,https://www.cbd.int/doc/world/mc/mc-nr-05-fr.pdf +MDA,1409.67766,0,33963.76161,0,4.15053455,0,5.8,0,6,https://chm.cbd.int/database/record/7320428F-D31E-FD33-F7FE-48CC53E2EB23 +MDG,33242.1381,8997.672125,594718.7259,1205824.849,5.589556314,0.746184003,na,na,5,https://www.cbd.int/doc/world/mg/mg-nr-05-en.pdf +MDV,3.683705,474.933082,304.666095,922109.9914,1.209095814,0.051505036,na,na,5,https://www.cbd.int/doc/world/mv/mv-nr-05-en.pdf +MEX,284178.223,707942.1699,1965284.828,3284659.67,14.45990011,21.5529839,12.9,21,6,https://www.cbd.int/doc/world/mx/mx-nr-05-es.pdf +MHL,33.593723,5388.396257,281.928035,2004587.264,11.91570856,0.268803277,16,18,5, +MKD,2686.96127,0,25443.14057,0,10.56065096,0,na,0,, +MLI,103445.3359,0,1256684.114,0,8.231610053,0,na,na,, +MLT,97.945322,3495.870104,324.970466,55696.65564,30.13976107,6.276624806,13,na,5,https://www.cbd.int/doc/world/mt/mt-nr-05-en.pdf +MMR,42878.48876,11964.44587,673078.5676,514147.2175,6.370502765,2.327046702,8.7,na,6,https://chm.cbd.int/database/record/F7636AF4-F0E7-CAAE-ED0A-CE0E9F3A7F9C +MNE,1456.773173,10.436511,13847.56188,7459.237226,10.52006978,0.139913917,9.05,na,5,https://www.cbd.int/doc/world/me/me-nr-05-en.pdf +MNG,277375.263,0,1565864.159,0,17.71387775,0,17.4,0,5,https://www.cbd.int/doc/world/mn/mn-nr-05-en.pdf +MNP,38.441128,257249.9205,501.224059,773667.8566,7.669449882,33.25069257,na,na,na, +MOZ,170662.332,12821.00808,791081.8731,574409.6185,21.5732831,2.232032276,26,na,5,https://www.cbd.int/doc/world/mz/mz-nr-05-en.pdf +MRT,6507.878451,6487.581027,1046302.522,156197.8626,0.621988222,4.153437775,na,na,5,https://www.cbd.int/doc/world/mr/mr-nr-05-fr.pdf +MSR,11.182345,0.000273,100.664381,7628.258983,11.10854196,0.00000358,na,na,na, +MTQ,1280.736358,47915.67266,1149.925062,47644.30608,100,100,na,na,na, +MUS,97.460291,49.64392,2062.481937,1280068.317,4.725388827,0.003878224,7.6,na,5,https://www.cbd.int/doc/world/mu/mu-nr-05-en.pdf +MWI,27190.40931,0,118859.7323,0,22.87604791,0,na,na,5,https://www.cbd.int/doc/world/mw/mw-nr-05-en.pdf +MYS,63418.88193,6977.70038,331700.5726,451741.5382,19.11931638,1.544622265,na,1.4,5,https://www.cbd.int/doc/world/my/my-nr-05-en.pdf +MYT,44.436011,68829.33301,396.377408,63362.33751,11.2105307,100,na,na,, +NAM,313534.3569,9646.27499,827465.4339,562727.6243,37.89093104,1.714199654,16.7,na,5,https://www.cbd.int/doc/world/na/na-nr-05-en.pdf +NCL,10413.51706,1325070.398,19141.03171,1371803.153,54.40415763,96.59333378,na,na,na, +NER,206090.4851,0,1190098.655,0,17.31709251,0,15.21,0,6,https://chm.cbd.int/database/record/AB3C2537-889F-115F-3B85-E42EA3C3B1EC +NFK,19.957518,189084.3131,42.778966,432638.0836,46.65264233,43.7049627,na,na,na, +NGA,127359.0343,30.555979,914306.1122,182868.1867,13.92958361,0.016709292,6,na,5,https://www.cbd.int/doc/world/ng/ng-nr-05-en.pdf +NIC,48104.12745,6660.345162,129222.3127,223935.2389,37.22586791,2.974228261,na,na,, +NIU,53.434436,36.900176,267.755527,318243.6931,19.95642689,0.011594943,23,na,5,https://www.cbd.int/doc/world/nu/nu-nr-05-en.pdf +NLD,3958.425269,17126.39853,35205.61182,64204.97933,11.24373378,26.67456435,21.7,19,5,https://www.cbd.int/doc/world/nl/nl-nr-05-en.pdf +NOR,55973.89254,7696.958098,325287.8156,926317.7348,17.20749744,0.830919868,17.2,3.1,6,https://chm.cbd.int/database/record/D874F120-974C-0CFE-32C4-6BCBE13146B5 +NPL,34897.91838,0,147709.5419,0,23.62604199,0,23.39,0,6,https://chm.cbd.int/database/record/A6B3AF62-55F8-F0D0-7106-76D42630A951 +NZL,88464.44129,1249447.107,269651.6705,4106953.859,32.80693242,30.42272082,36.73,7,5,https://www.cbd.int/doc/world/nz/nz-nr-05-en.pdf +OMN,7985.072834,663.989764,310373.1429,538980.1915,2.572733181,0.123193723,na,na,5,https://www.cbd.int/doc/world/om/om-nr-05-en.pdf +PAK,98288.08094,1707.397433,798143.6542,222743.9199,12.31458528,0.76652931,12,0,5,https://www.cbd.int/doc/world/pk/pk-nr-05-en.pdf +PAN,15773.05873,5593.115449,75497.94621,332643.4965,20.89203683,1.681414339,31.8,13.5,6,https://chm.cbd.int/database/record/05B386D2-5BCD-A52D-6097-F853803CC619 +PCN,37.035971,839648.6171,45.589943,839478.9503,81.23715136,100.020211,na,na,, +PER,279619.5731,4036.819355,1298537.038,838329.5928,21.53343069,0.481531296,17.3,0.3,6,https://chm.cbd.int/database/record/90F134F5-E726-C4E5-77FD-F2E103B0F872 +PHL,45762.33428,21269.12928,298774.9046,1835028.192,15.31665932,1.159062808,12.8,na,PBSAP 2015-2028,https://www.cbd.int/doc/world/ph/ph-nbsap-v3-en.pdf +PLW,140.309346,504690.9119,501.101386,608152.4889,28.00019116,82.98756005,na,na,,https://www.cbd.int/doc/world/pw/pw-nr-05-en.pdf +PNG,14330.32953,4585.469187,467405.9203,2407381.818,3.065928118,0.19047536,na,na,, +POL,123892.6648,7210.775928,311923.5191,31945.64308,39.71892379,22.57201682,19.6,24,6,https://chm.cbd.int/database/record/4ACD5165-ABFA-57D0-CAB0-4FC82FB386DD +PRI,657.215588,3077.928815,9041.14294,176163.0606,7.269164887,1.747204439,na,na,, +PRK,2975.649808,25.611911,122186.1412,115967.2688,2.435341504,0.022085465,7.2,na,5,https://www.cbd.int/doc/world/kp/kp-nr-05-en.pdf +PRT,21114.4737,285578.3431,92141.09473,1724156.15,22.91537099,16.56336887,22,na,5,https://www.cbd.int/doc/world/pt/pt-nr-05-pt.pdf +PRY,57473.37524,0,401498.4235,0,14.31472003,0,15,0,6,https://chm.cbd.int/database/record/4406F62E-6E7A-1826-E2B9-082208FCC685 +PSE,516.767863,0,6181.987004,0,8.35925185,0,9,0,5,https://www.cbd.int/doc/world/ps/ps-nr-05-en.pdf +PYF,73.831954,206.943116,3780.061341,4795468.095,1.9531946,0.004315389,na,na,, +QAT,1512.836196,538.143058,11435.55274,31987.65323,13.22923544,1.682346167,na,na,,https://www.cbd.int/doc/world/qa/qa-nr-05-ar.pdf +REU,1600.443036,40.854528,2536.304619,316498.9308,63.10137292,0.012908267,na,na,, +ROU,58224.53787,6865.607617,237452.8706,29726.44952,24.52046072,23.09595572,33,na,5,https://www.cbd.int/doc/world/ro/ro-nr-05-en.pdf +RUS,1641400.741,228247.3371,16874835.52,7673314.113,9.726914016,2.974560062,11.8,na,5,https://www.cbd.int/doc/world/ru/ru-nr-05-ru.pdf +RWA,2319.729895,0,25452.13068,0,9.114089205,0,10.3,0,5,https://www.cbd.int/doc/world/rw/rw-nr-05-en.pdf +SAU,92063.63578,5495.452494,1934058.339,220338.2086,4.760127134,2.494098744,na,na,,https://www.cbd.int/doc/world/sa/sa-nr-05-ar.pdf +SDN,42697.53551,10661.95429,1871251.813,66785.64454,2.281763214,15.9644402,5.8,10,6,https://chm.cbd.int/database/record/2748B1C1-31BC-F7AF-54E0-FC64E251AA3D +SEN,50179.21798,1766.175004,197923.9723,158426.4028,25.3527743,1.114823649,na,2.44,6,https://chm.cbd.int/database/record/58DAD993-C79B-6275-8330-99B6F44BA483 +SGP,33.585431,0.100552,604.646128,762.68502,5.55455984,0.013183948,4.7,na,5,https://www.cbd.int/doc/world/sg/sg-nr-05-en.pdf +SGS,3971.692688,1065900.045,3971.692688,1445886.657,100,73.71947451,na,na,, +SHN,157.137807,453612.5594,434.343214,1647745.112,36.17825764,27.52929177,na,na,, +SJM,40092.18364,82714.05977,61261.11552,1081582.098,65.44474957,7.647506364,na,na,, +SLB,514.977904,1879.382668,29191.64527,1609756.547,1.764127712,0.116749497,5,6,5,https://www.cbd.int/doc/world/sb/sb-nr-05-en.pdf +SLE,6824.701851,862.533185,72709.02892,160452.5672,9.386319626,0.53756272,4,na,5,https://www.cbd.int/doc/world/sl/sl-nr-05-en.pdf +SLV,1805.57217,664.798852,20573.30437,94238.04744,8.776286673,0.705446335,na,na,, +SOM,,,,,,,0.8,,5,https://www.cbd.int/doc/world/so/so-nr-05-en.pdf +SPM,7.163126,7.021851,237.589267,12367.3281,3.014919862,0.05677743,na,na,, +SRB,6687.228546,0,88509.11514,0,7.555412271,0,6,na,5,https://www.cbd.int/doc/world/rs/rs-nr-05-en.pdf +SSD,98214.48596,0,633580.4791,0,15.50150126,0,13,0,5,https://www.cbd.int/doc/world/ss/ss-nr-05-en.pdf +STP,289.416981,35.280222,989.259888,131709.1714,29.25590985,0.026786458,30,na,5,https://www.cbd.int/doc/world/st/st-nr-05-fr.pdf +SUR,21425.69157,1980.928256,147558.4488,128362.9877,14.52013879,1.543223862,na,na,, +SVK,18395.39989,0,48941.21743,0,37.58672313,0,23.3,0,5,https://www.cbd.int/doc/world/sk/sk-nr-05-en.pdf +SVN,10877.50335,396.970655,20308.54692,186.314047,53.56120946,100,13,0.4,5,https://www.cbd.int/doc/world/si/si-nr-05-en.pdf +SWE,64033.65777,23604.86049,449390.1761,154980.4918,14.24901148,15.23085919,14.5,10,6,https://chm.cbd.int/database/record/060FF276-745E-F718-DC53-A1A48915D17E +SWZ,738.20711,0,17335.867,0,4.258264729,0,3.9,,5,https://www.cbd.int/doc/world/sz/sz-nr-05-en.pdf +SXM,0.000136,43.282473,36.455424,497.533856,0.000373058,8.699402559,na,na,, +SYC,241.673419,209929.3831,486.864575,1340839.459,49.63873558,15.65656363,46.6,0.03,5,https://www.cbd.int/doc/world/sc/sc-nr-05-en.pdf +SYR,1292.567557,25.201794,188612.6151,10203.61673,0.685302813,0.246988834,na,na,, +TCA,451.737848,149.820284,1018.174578,154242.1775,44.36742556,0.097133149,na,na,, +TCD,259841.8709,0,1276585.969,0,20.35443575,0,12.3,na,5,https://www.cbd.int/doc/world/td/td-nr-05-fr.pdf +TGO,15876.86929,30.987414,57480.648,15520.93847,27.6212427,0.1996491,na,na,,https://chm.cbd.int/database/record/77EEB058-F6CE-9107-7EE8-1F96B95E6314 +THA,97391.37501,5773.799574,517786.6125,306890.539,18.80917209,1.881387283,na,20,6,https://chm.cbd.int/database/record/46D5C83F-588E-181B-D5F7-80C3E0A7552E +TJK,31690.1072,0,142244.2178,0,22.27866109,0,na,0,, +TKL,0.998313,9.510634,15.181307,321242.5226,6.575935787,0.002960578,na,na,, +TKM,15336.26559,2331.770078,472137.5437,77885.16348,3.248262248,2.993856562,4,na,5,https://www.cbd.int/doc/world/tm/tm-nr-05-ru.pdf +TLS,1959.473342,584.110567,15006.53549,42501.27223,13.05746648,1.374336664,na,na,, +TON,121.971897,10055.15988,766.502265,668054.6083,15.91279016,1.505140411,na,na,, +TTO,1594.834874,37.071977,5213.102096,75798.46305,30.59281872,0.048908613,32,0.1,5,https://chm.cbd.int/api/v2013/documents/C7EFE124-DEAA-B14C-3D98-D0B9E66D99DE/attachments/TT%20Fifth%20National%20Report%20to%20the%20CBD_FINAL.pdf +TUN,12286.01772,1042.360893,155230.8391,100660.5035,7.914675845,1.035521239,17,10,6,https://chm.cbd.int/database/record/5DAF5DAA-D4D2-F800-CA8C-9462C5D56858 +TUR,1709.103181,270.18272,782238.8742,255925.9584,0.218488653,0.105570659,na,na,5,https://www.cbd.int/doc/world/tr/tr-nr-05-en.pdf +TUV,0.815638,62.087748,41.785977,731900.0274,1.951941916,0.008483091,na,na,,No information in 5th national report +TWN,7145.881111,3846.48539,36245.33119,342996.9472,19.71531471,1.121434293,na,na,, +TZA,361593.899,7330.445298,947252.6908,243129.5958,38.17290808,3.015036189,54.6,6.5,6,https://chm.cbd.int/database/record/57914673-CF81-82CF-0808-C76D810BAB97 +UGA,39058.6568,0,243144.8535,0,16.06394552,0,18,0,5,https://www.cbd.int/doc/world/ug/ug-nr-05-en.pdf +UKR,23854.95209,4606.122845,598828.7966,134873.1664,3.983601361,3.41515141,6.05,na,5,https://www.cbd.int/doc/world/ua/ua-nr-05-en.pdf +UMI,363.497911,1278997.392,363.495,1964384.514,100,65.10931964,na,na,, +URY,6150.088211,931.553409,178459.889,130097.9744,3.44620197,0.716039902,8.6,na,6,https://chm.cbd.int/database/record/50CCF748-F428-8010-744B-D5B1BD5F3A66 +USA,1233174.536,3527444.441,9490391.294,8591493.148,12.9939272,41.05740853,,,, +UZB,15200.69725,0,450362.5106,0,3.37521372,0,5,0,5,https://www.cbd.int/doc/world/uz/uz-nr-05-en.pdf +VCT,91.899504,80.359651,409.906569,36510.93366,22.41962217,0.220097497,na,8.5,5,https://www.cbd.int/doc/world/vc/vc-nr-05-en.pdf +VEN,496700.9958,16499.94342,917367.6523,473325.0963,54.14415851,3.485964202,na,na,5,https://www.cbd.int/doc/world/ve/ve-nr-05-es.pdf +VGB,15.995538,3.314329,175.605042,80529.47601,9.108814769,0.004115672,na,na,na, +VIR,51.815838,306.278747,375.62477,36030.25521,13.7945743,0.850059888,na,na,na, +VNM,24994.31244,3630.264972,329880.371,647232.2216,7.576780747,0.560890643,7,na,5,https://www.cbd.int/doc/world/vn/vn-nr-05-en.pdf +VUT,528.222229,47.509867,12575.12729,622073.2227,4.200531866,0.007637343,na,na,na, +WLF,0.301679,0,180.605517,0,0.167037533,0,na,na,na, +WSM,212.692968,114.846969,2893.945283,132305.5976,7.349584985,0.086804316,na,na,5,https://www.cbd.int/doc/world/ws/ws-nr-05-en.pdf +YEM,3519.593039,2562.368242,455938.919,548013.9807,0.77194398,0.467573517,na,na,5,https://www.cbd.int/doc/world/ye/ye-nr-05-en.pdf +ZAF,101336.4951,186106.9994,1224384.577,1542559.897,8.276524958,12.0648151,12.96,10,6,https://chm.cbd.int/database/record/33303CBE-1BB9-9034-35F8-283CC0A1D63F +ZMB,286161.093,0,755640.3907,0,37.87001019,0,37.8,0,6,https://chm.cbd.int/database/record/AB99C119-FDF3-C589-9CBB-B0B2C39A58C8 +ZWE,106837.168,0,392573.2003,0,27.21458519,0,28,0,5,https://www.cbd.int/doc/world/zw/zw-nr-05-en.pdf From aab2cd78b7d6fb5e858fa489c7f3e953cbb05c6f Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Tue, 6 Aug 2019 11:16:27 +0100 Subject: [PATCH 17/27] nil is allowed for not applicable percentages --- app/presenters/statistic_presenter.rb | 13 ++++++++----- .../stats/facts/_coverage_stats_land.html.erb | 2 +- .../stats/facts/_coverage_stats_marine.html.erb | 2 +- lib/modules/stats/country_statistics_importer.rb | 2 ++ 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/app/presenters/statistic_presenter.rb b/app/presenters/statistic_presenter.rb index 41708765e..61ddf1b9b 100644 --- a/app/presenters/statistic_presenter.rb +++ b/app/presenters/statistic_presenter.rb @@ -36,11 +36,14 @@ def method_missing method end ["land", "marine"].each do |land_type| - ["pa", "nr"].each do |field_type| - stat = "percentage_#{field_type}_#{land_type}_cover".to_sym - define_method(stat) do - (@statistic.send(stat) && @statistic.send(stat) > 100.0) ? 100.0 : (@statistic.send(stat) || 0) rescue 0 - end + stat = "percentage_pa_#{land_type}_cover".to_sym + define_method(stat) do + (@statistic.send(stat) && @statistic.send(stat) > 100.0) ? 100.0 : (@statistic.send(stat) || 0) rescue 0 + end + + stat = "percentage_nr_#{land_type}_cover".to_sym + define_method(stat) do + (@statistic.send(stat) && @statistic.send(stat) > 100.0) ? 100.0 : @statistic.send(stat).round(0) rescue nil end end diff --git a/app/views/shared/stats/facts/_coverage_stats_land.html.erb b/app/views/shared/stats/facts/_coverage_stats_land.html.erb index 9788a3a97..8ad0527fa 100644 --- a/app/views/shared/stats/facts/_coverage_stats_land.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_land.html.erb @@ -36,7 +36,7 @@ <% unless is_regional_page(controller_name) %>

- <%= commaify @presenter.percentage_nr_land_cover.round(0) %>% + <%= commaify @presenter.percentage_nr_land_cover %>% <%= @presenter.nr_version %>th National Report Coverage

diff --git a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb index a1767bd69..85459d3b8 100644 --- a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb @@ -36,7 +36,7 @@ <% unless is_regional_page(controller_name) %>

- <%= commaify @presenter.percentage_nr_marine_cover.round(0) %>% + <%= commaify @presenter.percentage_nr_marine_cover %>% <%= @presenter.nr_version %>th National Report Coverage

diff --git a/lib/modules/stats/country_statistics_importer.rb b/lib/modules/stats/country_statistics_importer.rb index 3be54c162..01d433473 100644 --- a/lib/modules/stats/country_statistics_importer.rb +++ b/lib/modules/stats/country_statistics_importer.rb @@ -11,6 +11,8 @@ def self.import_stats path, model CSV.foreach(path, headers: true) do |row| country_iso3 = row.delete('iso3').last + # If the value is na (not applicable) use nil + row.each { |key, value| row[key] = nil if value && value.downcase == 'na' } attrs = {country_id: countries[country_iso3]}.merge(row) model.create(attrs) From 4d19154640d4c657666b9c5eee35b47b4cdb7842 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Tue, 6 Aug 2019 11:35:16 +0100 Subject: [PATCH 18/27] Hide stats if NA --- app/views/shared/stats/facts/_coverage_stats.html.erb | 8 +++++++- .../shared/stats/facts/_coverage_stats_land.html.erb | 2 +- .../shared/stats/facts/_coverage_stats_marine.html.erb | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/app/views/shared/stats/facts/_coverage_stats.html.erb b/app/views/shared/stats/facts/_coverage_stats.html.erb index 70d41b648..fa2955749 100644 --- a/app/views/shared/stats/facts/_coverage_stats.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats.html.erb @@ -14,7 +14,13 @@ Warning: These statistics might differ from those reported officially by countries due to difference in methodologies and datasets used to assess protected area coverage and differences in the base maps used to measure - terrestrial and marine area of a country or territory. <% unless @for_pdf || is_regional_page(controller_name) %> <%= link_to "Download the country's latest national report (pdf)", @presenter.nr_report_url, title: "Dowload the national report for #{@country.name}", class: 'link-with-icon bold' %><% end %> + terrestrial and marine area of a country or territory. + <% unless @for_pdf || is_regional_page(controller_name) %> + <% if @presenter.nr_report_url.present? %> + + <%= link_to "Download the country's latest national report (pdf)", @presenter.nr_report_url, title: "Dowload the national report for #{@country.name}", class: 'link-with-icon bold' %> + <% end %> + <% end %>

<% if has_restricted_sites? %> diff --git a/app/views/shared/stats/facts/_coverage_stats_land.html.erb b/app/views/shared/stats/facts/_coverage_stats_land.html.erb index 8ad0527fa..898b1620a 100644 --- a/app/views/shared/stats/facts/_coverage_stats_land.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_land.html.erb @@ -33,7 +33,7 @@ Total Land Area

- <% unless is_regional_page(controller_name) %> + <% if !is_regional_page(controller_name) && @presenter.percentage_nr_land_cover %>

<%= commaify @presenter.percentage_nr_land_cover %>% diff --git a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb index 85459d3b8..bd7e16274 100644 --- a/app/views/shared/stats/facts/_coverage_stats_marine.html.erb +++ b/app/views/shared/stats/facts/_coverage_stats_marine.html.erb @@ -33,7 +33,7 @@ Total Marine Area

- <% unless is_regional_page(controller_name) %> + <% if !is_regional_page(controller_name) && @presenter.percentage_nr_marine_cover %>

<%= commaify @presenter.percentage_nr_marine_cover %>% From 2168c769d1f08e2e9d34c600ec420b4de9311f28 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Tue, 6 Aug 2019 13:18:00 +0100 Subject: [PATCH 19/27] Rescue when data is not ready in the db --- app/presenters/statistic_presenter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/presenters/statistic_presenter.rb b/app/presenters/statistic_presenter.rb index 61ddf1b9b..ac04efe11 100644 --- a/app/presenters/statistic_presenter.rb +++ b/app/presenters/statistic_presenter.rb @@ -28,7 +28,7 @@ def percentage_total_pa_cover end def nr_report_url - @statistic.send(:nr_report_url) || '' + (@statistic.send(:nr_report_url) || '') rescue '' end def method_missing method From df8ee4e0ce369c9b545d94c0de91f4aeb2df8a8c Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Tue, 6 Aug 2019 15:14:15 +0100 Subject: [PATCH 20/27] Test on staging with a different db --- config/database.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.yml b/config/database.yml index 2bb6242cf..348fdb67b 100644 --- a/config/database.yml +++ b/config/database.yml @@ -20,4 +20,4 @@ production: staging: <<: *default - database: pp_staging + database: feature/nr-stats From 9e7ed83d1c8d2462f92c5fcf963c8a091d1cdd4d Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Mon, 12 Aug 2019 12:14:41 +0100 Subject: [PATCH 21/27] Change staging repo to point to develop branch db --- config/database.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.yml b/config/database.yml index 348fdb67b..5805f3737 100644 --- a/config/database.yml +++ b/config/database.yml @@ -20,4 +20,4 @@ production: staging: <<: *default - database: feature/nr-stats + database: develop From a92a0ec026d5270d9811eccce07790c4b7233c61 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Mon, 12 Aug 2019 14:37:29 +0100 Subject: [PATCH 22/27] Make sure to use correct method name --- app/presenters/statistic_presenter.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/presenters/statistic_presenter.rb b/app/presenters/statistic_presenter.rb index ac04efe11..899cd6482 100644 --- a/app/presenters/statistic_presenter.rb +++ b/app/presenters/statistic_presenter.rb @@ -41,9 +41,9 @@ def method_missing method (@statistic.send(stat) && @statistic.send(stat) > 100.0) ? 100.0 : (@statistic.send(stat) || 0) rescue 0 end - stat = "percentage_nr_#{land_type}_cover".to_sym - define_method(stat) do - (@statistic.send(stat) && @statistic.send(stat) > 100.0) ? 100.0 : @statistic.send(stat).round(0) rescue nil + nr_stat = "percentage_nr_#{land_type}_cover".to_sym + define_method(nr_stat) do + (@statistic.send(nr_stat) && @statistic.send(nr_stat) > 100.0) ? 100.0 : @statistic.send(nr_stat).round(0) rescue nil end end From 28c0be6f3da64d7af3f2c79146b70b8ba0182f40 Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Mon, 12 Aug 2019 16:50:13 +0100 Subject: [PATCH 23/27] Update stats for Germany --- lib/data/seeds/country_statistics.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/data/seeds/country_statistics.csv b/lib/data/seeds/country_statistics.csv index eee4a520d..043722e6f 100644 --- a/lib/data/seeds/country_statistics.csv +++ b/lib/data/seeds/country_statistics.csv @@ -60,7 +60,7 @@ CXR,87.649012,0.753516,142.416955,330035.5,61.54394468,0.000228314,na,na,na, CYM,31.133127,92.901287,289.266866,119605.4547,10.76276984,0.077673119,na,na,na, CYP,3386.076946,120.958963,9063.433945,98279.50173,37.35975753,0.123076492,na,na,5,https://www.cbd.int/doc/world/cy/cy-nr-05-en.pdf CZE,17265.28518,0,77916.89786,0,22.15858903,0,na,na,6,https://chm.cbd.int/database/record/C94184E8-C30E-C894-DD41-0F1C62E7AD6A -DEU,135401.4928,25562.51049,357584.3854,56357.93768,37.86560554,45.35742708,na,,5,https://www.cbd.int/doc/world/de/de-nr-05-en.pdf +DEU,135401.4928,25562.51049,357584.3854,56357.93768,37.86560554,45.35742708,4.2,na,5,https://www.cbd.int/doc/world/de/de-nr-05-en.pdf DJI,343.960179,11.802761,21843.65212,7031.12303,1.57464593,0.167864521,na,na,, DMA,168.469169,10.012306,766.22784,28749.1828,21.98682431,0.034826402,na,20,5,https://www.cbd.int/doc/world/dm/dm-nbsap-v2-en.pdf DNK,8318.121999,17932.88012,45314.39778,100469.7507,18.35646595,17.84903415,na,18,5,https://www.cbd.int/doc/world/dk/dk-nr-05-en.pdf From 39d8a333c17bdb75efe258a09583155d887a6d5d Mon Sep 17 00:00:00 2001 From: stacytalbot Date: Tue, 13 Aug 2019 08:34:35 +0100 Subject: [PATCH 24/27] Update ESP row in country stats CSV --- lib/data/seeds/country_statistics.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/data/seeds/country_statistics.csv b/lib/data/seeds/country_statistics.csv index 043722e6f..4dfab7765 100644 --- a/lib/data/seeds/country_statistics.csv +++ b/lib/data/seeds/country_statistics.csv @@ -70,7 +70,7 @@ ECU,55980.13776,144125.4431,258138.6687,1079901.071,21.68607208,13.34617096,19.6 EGY,129389.8156,11715.81678,984997.4881,236612.0565,13.13605538,4.951487659,14.6,na,, ERI,5936.248417,0,121834.4031,0,4.872390938,0,na,na,, ESH,15269.89945,3709.987384,268339.2162,252024.2549,5.690521001,1.472075529,na,na,, -ESP,142393.4623,84225.04305,507013.405,1005717.296,28.08475297,8.374624099,27.3,8,, +ESP,142393.4623,84225.04305,507013.405,1005717.296,28.08475297,8.374624099,27.3,8,6,https://chm.cbd.int/database/record?documentID=241911 EST,9211.085571,6767.85611,45416.48284,36346.36825,20.28137142,18.62044665,18.8,27,6,https://chm.cbd.int/database/record/E23CB1F7-405F-D3C8-C1A5-8D2912E49CCE ETH,200073.9753,0,1135429.227,0,17.62099923,0,14,na,6,https://chm.cbd.int/database/record/86A4EACE-5D8E-479D-CD33-319D77EA9032 FIN,44785.69749,8352.242381,337725.5344,79467.83379,13.26097464,10.51021776,13.8,17,6,https://chm.cbd.int/database/record/8BC90B3F-3587-ED1A-0BE5-FBA1287318A4 From 73f350bb7caaf590552dfa129d6a88c89a84f08f Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Tue, 13 Aug 2019 09:39:12 +0100 Subject: [PATCH 25/27] Submodule to point to develop branch --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index d5564d827..162f95637 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "db"] path = db url = https://github.com/unepwcmc/protectedplanet-db.git - branch = feature/nr-stats + branch = develop From 3fdd515de9c152fc712c368758625fedd5ce448c Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Tue, 13 Aug 2019 09:41:48 +0100 Subject: [PATCH 26/27] Update submodule --- .gitmodules | 2 +- db | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 162f95637..37ae0a64d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "db"] path = db url = https://github.com/unepwcmc/protectedplanet-db.git - branch = develop + branch = master diff --git a/db b/db index 4286a2fe6..f89580eb1 160000 --- a/db +++ b/db @@ -1 +1 @@ -Subproject commit 4286a2fe61ba9228fb4bdf27a884f075e612631c +Subproject commit f89580eb14f3e416472ea68996280e5ffc7e6444 From ece8921d17378f2e928eb5f198384c584f4dafcf Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Tue, 13 Aug 2019 09:42:00 +0100 Subject: [PATCH 27/27] Update CHANGELOG --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index efd85b42c..0fa57e723 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### 2.6.0 + +* Add National Report stats to countries +* Update country_statistics csv structure to include National Report stats + ### 2.5.3 * Add country, pame_country and marine stats (WDPA August 2019 release).

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ⅇ~}dCvJ9c!U<3El?%o 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